commit: f716edb5328be368ff494084d02f59c59b6f41c5 Author: Amy Liffey <amynka <AT> gentoo <DOT> org> AuthorDate: Tue Aug 4 18:36:58 2020 +0000 Commit: Amy Liffey <amynka <AT> gentoo <DOT> org> CommitDate: Tue Aug 4 18:36:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f716edb5
app-crypt/eid-mw: Update live ebuild to latest Bug: https://bugs.gentoo.org/732994 Submitted-by: Vincent Hardy <vincent.hardy.be <AT> gmail.com> Package-Manager: Portage-2.3.99, Repoman-2.3.20 Signed-off-by: Amy Liffey <amynka <AT> gentoo.org> app-crypt/eid-mw/eid-mw-9999.ebuild | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/app-crypt/eid-mw/eid-mw-9999.ebuild b/app-crypt/eid-mw/eid-mw-9999.ebuild index 023f52ee56b..2535311a44f 100644 --- a/app-crypt/eid-mw/eid-mw-9999.ebuild +++ b/app-crypt/eid-mw/eid-mw-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit autotools gnome2-utils git-r3 +inherit autotools desktop gnome2-utils xdg-utils git-r3 DESCRIPTION="Electronic Identity Card middleware supplied by the Belgian Federal Government" HOMEPAGE="https://eid.belgium.be" @@ -16,7 +16,7 @@ IUSE="+dialogs +gtk +p11v220 p11-kit" RDEPEND=">=sys-apps/pcsc-lite-1.2.9 gtk? ( x11-libs/gdk-pixbuf[jpeg] - x11-libs/gtk+:* + x11-libs/gtk+:3 dev-libs/libxml2 net-misc/curl[ssl] net-libs/libproxy @@ -46,6 +46,16 @@ src_prepare() { -e "s:get_lsb_info('c'):strdup(_(\"n/a\")):" \ plugins_tools/aboutmw/gtk/about-main.c || die + # Fix libdir for pkcs11_manifestdir + sed -i \ + -e "/pkcs11_manifestdir/ s:prefix)/lib:libdir):" \ + cardcomm/pkcs11/src/Makefile.am || die + + # See bug #732994 + sed -i \ + -e '/LDFLAGS="/ s:$CPPFLAGS:$LDFLAGS:' \ + configure.ac || die + eautoreconf } @@ -71,13 +81,15 @@ src_install() { pkg_postinst() { if use gtk; then gnome2_schemas_update - gnome2_icon_cache_update + xdg_desktop_database_update + xdg_icon_cache_update fi } pkg_postrm() { if use gtk; then gnome2_schemas_update - gnome2_icon_cache_update + xdg_desktop_database_update + xdg_icon_cache_update fi }