diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2017-02-04 02:32:59 +0200 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2017-02-04 03:30:52 +0200 |
commit | 505cee87fb75945d9cda75ddbdb3a14937e8e522 (patch) | |
tree | 0db4da91250c07ed85e40d1ade8aa5420c916a33 | |
parent | app-crypt/nwipe: eapi bump (diff) | |
download | gentoo-505cee87fb75945d9cda75ddbdb3a14937e8e522.tar.gz gentoo-505cee87fb75945d9cda75ddbdb3a14937e8e522.tar.bz2 gentoo-505cee87fb75945d9cda75ddbdb3a14937e8e522.zip |
app-crypt/scute: eapi bump
Package-Manager: portage-2.3.3
-rw-r--r-- | app-crypt/scute/scute-1.4.0.ebuild | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/app-crypt/scute/scute-1.4.0.ebuild b/app-crypt/scute/scute-1.4.0.ebuild index edaf92992717..85dd003777a2 100644 --- a/app-crypt/scute/scute-1.4.0.ebuild +++ b/app-crypt/scute/scute-1.4.0.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=4 +EAPI=6 -inherit autotools eutils libtool multilib +inherit autotools eutils libtool DESCRIPTION="A PKCS #11 module for OpenPGP smartcards" HOMEPAGE="http://www.scute.org/" @@ -26,14 +26,17 @@ DEPEND=" >=app-crypt/gnupg-2.0.17-r1[smartcard]" RDEPEND="${DEPEND}" -src_prepare() { +PATCHES=( # We need no ABI versioning, reduce the number of symlinks installed - epatch "${FILESDIR}"/scute-1.2.0-noversion.patch + "${FILESDIR}/scute-1.2.0-noversion.patch" + # Don't build tests during src_compile. - epatch "${FILESDIR}"/scute-1.4.0-tests.patch + "${FILESDIR}/scute-1.4.0-tests.patch" +) +src_prepare() { + default eautoreconf - elibtoolize } src_configure() { @@ -44,7 +47,6 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - find "${D}" -name '*.la' -delete - dodoc AUTHORS ChangeLog NEWS README TODO + default + prune_libtool_files --modules } |