diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2018-09-28 15:58:34 +0300 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2018-09-28 15:59:56 +0300 |
commit | 16dfb2e561a24c126b620e9772f667af77108baa (patch) | |
tree | 3022e4c49e2db518aca7096a337ec314b18a3efe /dev-libs/libtasn1 | |
parent | sci-chemistry/votca-xtp: fix deps (diff) | |
download | gentoo-16dfb2e561a24c126b620e9772f667af77108baa.tar.gz gentoo-16dfb2e561a24c126b620e9772f667af77108baa.tar.bz2 gentoo-16dfb2e561a24c126b620e9772f667af77108baa.zip |
dev-libs/libtasn1: eapi bump
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Diffstat (limited to 'dev-libs/libtasn1')
-rw-r--r-- | dev-libs/libtasn1/libtasn1-4.13.ebuild | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/dev-libs/libtasn1/libtasn1-4.13.ebuild b/dev-libs/libtasn1/libtasn1-4.13.ebuild index 1b1de7e63a0f..4dd66c9586e0 100644 --- a/dev-libs/libtasn1/libtasn1-4.13.ebuild +++ b/dev-libs/libtasn1/libtasn1-4.13.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit multilib-minimal libtool ltprune +inherit multilib-minimal libtool DESCRIPTION="ASN.1 library" HOMEPAGE="https://www.gnu.org/software/libtasn1/" @@ -12,16 +12,19 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" LICENSE="GPL-3 LGPL-2.1" SLOT="0/6" # subslot = libtasn1 soname version KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="doc static-libs valgrind" +IUSE="doc static-libs test valgrind" -DEPEND=">=dev-lang/perl-5.6 - sys-apps/help2man - virtual/yacc" -RDEPEND=" - valgrind? ( dev-util/valgrind ) -" +BDEPEND="sys-apps/help2man + virtual/yacc + test? ( valgrind? ( dev-util/valgrind ) )" -DOCS=( AUTHORS ChangeLog NEWS README THANKS ) +DOCS=( + AUTHORS + ChangeLog + NEWS + README + THANKS +) pkg_setup() { if use doc; then @@ -43,5 +46,5 @@ multilib_src_configure() { multilib_src_install_all() { einstalldocs - prune_libtool_files + find "${D}" -name '*.la' -delete || die } |