Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtasn1/
Date: Sat, 24 Sep 2016 22:01:44
Message-Id: 1474754467.06f33e5de5cc74a3cc21b74ebeb92a1db6440556.alonbl@gentoo
1 commit: 06f33e5de5cc74a3cc21b74ebeb92a1db6440556
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 24 22:00:16 2016 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 24 22:01:07 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06f33e5d
7
8 dev-libs/libtasn1: eap6 cleanups + eautoreconf
9
10 Bug: 595062
11
12 Package-Manager: portage-2.2.28
13
14 ...{libtasn1-4.9.ebuild => libtasn1-4.9-r1.ebuild} | 22 +++++++++++++---------
15 1 file changed, 13 insertions(+), 9 deletions(-)
16
17 diff --git a/dev-libs/libtasn1/libtasn1-4.9.ebuild b/dev-libs/libtasn1/libtasn1-4.9-r1.ebuild
18 similarity index 85%
19 rename from dev-libs/libtasn1/libtasn1-4.9.ebuild
20 rename to dev-libs/libtasn1/libtasn1-4.9-r1.ebuild
21 index e227f89..eb4054f 100644
22 --- a/dev-libs/libtasn1/libtasn1-4.9.ebuild
23 +++ b/dev-libs/libtasn1/libtasn1-4.9-r1.ebuild
24 @@ -4,7 +4,7 @@
25
26 EAPI=6
27
28 -inherit multilib-minimal
29 +inherit autotools multilib-minimal
30
31 DESCRIPTION="ASN.1 library"
32 HOMEPAGE="https://www.gnu.org/software/libtasn1/"
33 @@ -29,16 +29,20 @@ PATCHES=(
34 )
35 DOCS=( AUTHORS ChangeLog NEWS README THANKS )
36
37 +pkg_setup() {
38 + if use doc; then
39 + DOCS+=( doc/libtasn1.pdf )
40 + HTML_DOCS=( doc/reference/html/. )
41 + fi
42 +}
43 +
44 +src_prepare() {
45 + default
46 + eautoreconf
47 +}
48 +
49 multilib_src_configure() {
50 local myeconfargs
51 [[ "${VALGRIND_TESTS}" == "0" ]] && myeconfargs+=( --disable-valgrind-tests )
52 ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
53 }
54 -
55 -multilib_src_install_all() {
56 - einstalldocs
57 - if use doc ; then
58 - dodoc doc/libtasn1.pdf
59 - dohtml doc/reference/html/*
60 - fi
61 -}