diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2023-01-31 04:08:54 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2023-01-31 16:15:26 +0100 |
commit | 405a8cc8a5db79b97cf3e164a1094ac807d8a2d6 (patch) | |
tree | c626ed8630bc1f88bfceb88adcc2e7958e2e3ec6 /sys-auth/AusweisApp2/AusweisApp2-1.26.2.ebuild | |
parent | sys-auth/AusweisApp2: drop 1.24.4 (diff) | |
download | gentoo-405a8cc8a5db79b97cf3e164a1094ac807d8a2d6.tar.gz gentoo-405a8cc8a5db79b97cf3e164a1094ac807d8a2d6.tar.bz2 gentoo-405a8cc8a5db79b97cf3e164a1094ac807d8a2d6.zip |
sys-auth/AusweisApp2: add 1.26.2
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-auth/AusweisApp2/AusweisApp2-1.26.2.ebuild')
-rw-r--r-- | sys-auth/AusweisApp2/AusweisApp2-1.26.2.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/sys-auth/AusweisApp2/AusweisApp2-1.26.2.ebuild b/sys-auth/AusweisApp2/AusweisApp2-1.26.2.ebuild new file mode 100644 index 000000000000..e5e3ddda4634 --- /dev/null +++ b/sys-auth/AusweisApp2/AusweisApp2-1.26.2.ebuild @@ -0,0 +1,51 @@ +# Copyright 2020-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake xdg-utils + +DESCRIPTION="Official authentication app for German ID cards and residence permits" +HOMEPAGE="https://www.ausweisapp.bund.de/" +SRC_URI="https://github.com/Governikus/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="EUPL-1.2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +BDEPEND=" + dev-qt/linguist-tools:5 + virtual/pkgconfig" + +RDEPEND=" + dev-libs/openssl:0= + dev-qt/qtconcurrent:5 + dev-qt/qtcore:5 + dev-qt/qtdeclarative:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtquickcontrols2:5 + dev-qt/qtsvg:5 + dev-qt/qtwebsockets:5[qml] + dev-qt/qtwidgets:5 + net-libs/http-parser:0= + sys-apps/pcsc-lite + virtual/udev" + +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_SHARED_LIBS=OFF + -DQt=Qt5 + ) + cmake_src_configure +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |