diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2017-02-04 01:16:42 +0200 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2017-02-04 03:30:47 +0200 |
commit | 1ae6a3472a6d90d7763555a04f39e62fcb55c952 (patch) | |
tree | 8eeec787b1f8702cefbaca84064c8bfbfd208979 /app-crypt | |
parent | app-crypt/tpm-emulator: eapi bump (diff) | |
download | gentoo-1ae6a3472a6d90d7763555a04f39e62fcb55c952.tar.gz gentoo-1ae6a3472a6d90d7763555a04f39e62fcb55c952.tar.bz2 gentoo-1ae6a3472a6d90d7763555a04f39e62fcb55c952.zip |
app-crypt/hmaccalc: eapi bump
Package-Manager: portage-2.3.3
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/hmaccalc/hmaccalc-0.9.14.ebuild | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/app-crypt/hmaccalc/hmaccalc-0.9.14.ebuild b/app-crypt/hmaccalc/hmaccalc-0.9.14.ebuild index eafb33cf9d84..235709a5a90e 100644 --- a/app-crypt/hmaccalc/hmaccalc-0.9.14.ebuild +++ b/app-crypt/hmaccalc/hmaccalc-0.9.14.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 -inherit eutils multilib +EAPI=6 +inherit multilib-minimal DESCRIPTION="Tools for computing and checking HMAC values for files" HOMEPAGE="https://fedorahosted.org/hmaccalc/" @@ -18,14 +18,8 @@ DEPEND="dev-libs/nss sys-devel/prelink" RDEPEND="${DEPEND}" -src_configure() { - econf \ +multilib_src_configure() { + ECONF_SOURCE="${S}" econf \ --enable-sum-directory=/usr/$(get_libdir)/${PN}/ \ - $(use_enable !fips non-fips) \ - || die "econf failed" -} - -src_install() { - emake install DESTDIR="${D}" || die "emake install failed" - dodoc README + $(use_enable !fips non-fips) } |