From: "Amy Liffey" <amynka@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/eid-mw/
Date: Fri, 12 Jan 2018 16:53:51 +0000 (UTC) [thread overview]
Message-ID: <1515776023.4288d7493b56b3db54abd330c62b15fd69158eb8.amynka@gentoo> (raw)
commit: 4288d7493b56b3db54abd330c62b15fd69158eb8
Author: Amy Liffey <amynka <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 12 16:50:08 2018 +0000
Commit: Amy Liffey <amynka <AT> gentoo <DOT> org>
CommitDate: Fri Jan 12 16:53:43 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4288d749
app-crypt/eid-mw: update live ebuild
Vincent Hardy <vincent.hardy.be <AT> gmail.com>
Package-Manager: Portage-2.3.13, Repoman-2.3.3
app-crypt/eid-mw/eid-mw-9999.ebuild | 55 ++++++++++++++++++++++---------------
1 file changed, 33 insertions(+), 22 deletions(-)
diff --git a/app-crypt/eid-mw/eid-mw-9999.ebuild b/app-crypt/eid-mw/eid-mw-9999.ebuild
index 4b7c9eadb75..2b7c0eb2f88 100644
--- a/app-crypt/eid-mw/eid-mw-9999.ebuild
+++ b/app-crypt/eid-mw/eid-mw-9999.ebuild
@@ -1,32 +1,28 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit eutils autotools mozextension multilib
+inherit autotools mozextension gnome2-utils
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/Fedict/${PN}.git"
inherit git-r3
SRC_URI=""
else
- SRC_URI="https://codeload.github.com/fedict/${PN}/tar.gz/v${PV} ->
- ${P}.tar.gz"
+ SRC_URI="https://codeload.github.com/fedict/${PN}/tar.gz/v${PV} -> ${P}.tar.gz"
KEYWORDS="~x86 ~amd64 ~arm"
fi
-SLOT="0"
-LICENSE="LGPL-3"
DESCRIPTION="Electronic Identity Card middleware supplied by the Belgian Federal Government"
-
HOMEPAGE="https://eid.belgium.be"
+LICENSE="LGPL-3"
+SLOT="0"
IUSE="+dialogs +gtk p11-kit +xpi"
-REQUIRED_USE="
- dialogs? ( gtk )"
-
-RDEPEND="gtk? (
+RDEPEND=">=sys-apps/pcsc-lite-1.2.9
+ gtk? (
x11-libs/gdk-pixbuf[jpeg]
x11-libs/gtk+:*
dev-libs/libxml2
@@ -34,7 +30,6 @@ RDEPEND="gtk? (
net-libs/libproxy
!app-misc/eid-viewer-bin
)
- >=sys-apps/pcsc-lite-1.2.9
p11-kit? ( app-crypt/p11-kit )
xpi? ( || ( >=www-client/firefox-bin-3.6.24
>=www-client/firefox-3.6.20 ) )"
@@ -42,8 +37,10 @@ RDEPEND="gtk? (
DEPEND="${RDEPEND}
virtual/pkgconfig"
+REQUIRED_USE="dialogs? ( gtk )"
+
src_prepare() {
- eapply_user
+ default
sed -i -e 's:/beid/rsaref220:/rsaref220:' configure.ac || die
sed -i -e 's:/beid::' cardcomm/pkcs11/src/libbeidpkcs11.pc.in || die
@@ -62,31 +59,45 @@ src_configure() {
econf \
$(use_enable dialogs) \
$(use_enable p11-kit p11kit) \
- $(use_with gtk gtkvers)$(use gtk && echo =detect) \
+ $(use_with gtk gtkvers 'detect') \
--with-gnu-ld \
--disable-static \
--disable-signed
}
src_install() {
- emake DESTDIR="${D}" install
+ default
if use xpi; then
declare MOZILLA_FIVE_HOME
if has_version '>=www-client/firefox-3.6.20'; then
MOZILLA_FIVE_HOME="/usr/$(get_libdir)/firefox"
- xpi_install "${D}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/belgiumeid@eid.belgium.be"
+ xpi_install "${ED}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/belgiumeid@eid.belgium.be"
fi
if has_version '>=www-client/firefox-bin-3.6.24'; then
MOZILLA_FIVE_HOME="/opt/firefox"
- xpi_install "${D}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/belgiumeid@eid.belgium.be"
+ xpi_install "${ED}/usr/share/mozilla/extensions/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/{ec8030f7-c20a-464f-9b0e-13a3a9e97384}/belgiumeid@eid.belgium.be"
fi
+ else
+ rm -r "${ED}"/usr/$(get_libdir)/mozilla || die
+ fi
+ rm -r "${ED}/usr/share/mozilla" "${ED}"/usr/$(get_libdir)/*.la || die
+
+ if use gtk; then
+ rm -r "${ED}/usr/include/eid-util" || die
+ fi
+}
+
+pkg_postinst(){
+ if use gtk; then
+ gnome2_schemas_update
+ gnome2_icon_cache_update
fi
- rm -r "${D}/usr/share/mozilla" "${D}"/usr/$(get_libdir)/*.la || die
- use gtk || rm -r "${D}/usr/include/eid-util" || die
}
-pkg_postinst()
-{
- use gtk && glib-compile-schemas /usr/share/glib-2.0/schemas/
+pkg_postrm(){
+ if use gtk; then
+ gnome2_schemas_update
+ gnome2_icon_cache_update
+ fi
}
next reply other threads:[~2018-01-12 16:53 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-12 16:53 Amy Liffey [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-08-10 13:58 [gentoo-commits] repo/gentoo:master commit in: app-crypt/eid-mw/ Amy Liffey
2024-08-10 13:58 Amy Liffey
2024-05-18 16:46 Amy Liffey
2024-04-14 15:03 Amy Liffey
2024-02-12 11:48 Amy Liffey
2024-02-12 11:48 Amy Liffey
2024-01-02 19:56 Amy Liffey
2024-01-02 19:56 Amy Liffey
2023-09-21 17:01 Amy Liffey
2023-09-21 11:58 Amy Liffey
2023-06-30 15:52 Amy Liffey
2023-06-30 15:52 Amy Liffey
2023-03-15 12:18 Arthur Zamarin
2023-03-14 18:11 Amy Liffey
2023-03-14 18:11 Amy Liffey
2022-08-01 9:17 Amy Liffey
2022-08-01 9:17 Amy Liffey
2022-05-28 9:37 Amy Liffey
2021-09-09 20:30 Amy Liffey
2021-09-09 20:30 Amy Liffey
2021-06-25 21:05 Amy Liffey
2021-04-02 9:20 Amy Liffey
2021-04-01 19:16 Amy Liffey
2021-04-01 19:16 Amy Liffey
2021-04-01 19:16 Amy Liffey
2021-03-10 19:05 Amy Liffey
2021-01-03 20:56 Amy Liffey
2020-11-12 15:43 Amy Liffey
2020-11-12 15:43 Amy Liffey
2020-08-10 7:33 Amy Liffey
2020-08-04 18:39 Amy Liffey
2020-08-04 18:39 Amy Liffey
2020-08-04 18:39 Amy Liffey
2019-10-10 8:16 Amy Liffey
2019-08-15 19:20 Amy Liffey
2018-11-23 20:38 Amy Liffey
2018-10-12 16:06 Thomas Deutschmann
2018-05-16 21:07 Amy Liffey
2018-05-16 21:07 Amy Liffey
2018-01-19 13:50 Amy Liffey
2018-01-12 16:53 Amy Liffey
2018-01-12 16:53 Amy Liffey
2017-02-12 16:18 Amy Liffey
2016-09-11 10:17 Amy Winston
2016-07-01 17:15 Amy Winston
2016-04-18 8:13 Patrice Clement
2015-11-11 17:10 Ian Delaney
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1515776023.4288d7493b56b3db54abd330c62b15fd69158eb8.amynka@gentoo \
--to=amynka@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox