Install this version:
emerge -a =app-crypt/web-eid-9999
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =app-crypt/web-eid-9999
Or alternatively:
emerge --autounmask-write -a =app-crypt/web-eid-9999
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | 0 |
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake git-r3 readme.gentoo-r1 virtualx
DESCRIPTION="Digital signing and authentication operations with electronic ID"
HOMEPAGE="https://github.com/web-eid/web-eid-app"
EGIT_REPO_URI="https://github.com/web-eid/web-eid-app.git"
LICENSE="MIT"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="dev-libs/openssl:0=
dev-qt/qtbase:6=[network,widgets]
dev-qt/qtsvg:6=
sys-apps/pcsc-lite"
DEPEND="${RDEPEND}"
BDEPEND="dev-qt/qttools:6[linguist]
virtual/pkgconfig
test? ( dev-cpp/gtest:0= )"
DOC_CONTENTS="Firefox extension: https://addons.mozilla.org/firefox/addon/web-eid-webextension"
src_prepare() {
default
if ! use test ; then
sed -i '/enable_testing()/,$d' {,lib/libelectronic-id/,lib/libelectronic-id/lib/libpcsc-cpp/,lib/libelectronic-id/lib/libpcsc-cpp/tests/lib/libpcsc-mock/}CMakeLists.txt \
|| die "sed failed"
fi
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_SYSCONFDIR="${EPREFIX}/etc"
)
cmake_src_configure
}
src_test() {
virtx cmake_src_test
}
src_install() {
readme.gentoo_create_doc
cmake_src_install
}
pkg_postinst() {
readme.gentoo_print_elog
}
Manage flags for this package:
euse -i <flag> -p app-crypt/web-eid |
euse -E <flag> -p app-crypt/web-eid |
euse -D <flag> -p app-crypt/web-eid
dev-libs/openssl:0= dev-qt/qtbase:6=[network,widgets] dev-qt/qtsvg:6= sys-apps/pcsc-lite
dev-libs/openssl:0= dev-qt/qtbase:6=[network,widgets] dev-qt/qtsvg:6= sys-apps/pcsc-lite
dev-qt/qttools:6[linguist] virtual/pkgconfig test? ( dev-cpp/gtest:0= )