Gentoo Archives: gentoo-commits

From: "Alon Bar-Lev (alonbl)" <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libtasn1: libtasn1-3.6.ebuild ChangeLog
Date: Sat, 07 Jun 2014 18:40:19
Message-Id: 20140607184015.AD9E72004E@flycatcher.gentoo.org
1 alonbl 14/06/07 18:40:15
2
3 Modified: ChangeLog
4 Added: libtasn1-3.6.ebuild
5 Log:
6 Version bump, bug#511536
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
9
10 Revision Changes Path
11 1.200 dev-libs/libtasn1/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?rev=1.200&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?rev=1.200&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?r1=1.199&r2=1.200
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v
20 retrieving revision 1.199
21 retrieving revision 1.200
22 diff -u -r1.199 -r1.200
23 --- ChangeLog 28 May 2014 07:21:40 -0000 1.199
24 +++ ChangeLog 7 Jun 2014 18:40:15 -0000 1.200
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libtasn1
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.199 2014/05/28 07:21:40 pinkbyte Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.200 2014/06/07 18:40:15 alonbl Exp $
30 +
31 +*libtasn1-3.6 (07 Jun 2014)
32 +
33 + 07 Jun 2014; Alon Bar-Lev <alonbl@g.o> +files/libtasn1-3.6-build.patch,
34 + +libtasn1-3.6.ebuild:
35 + Version bump, bug#511536
36
37 28 May 2014; Sergey Popov <pinkbyte@g.o> libtasn1-3.4-r1.ebuild:
38 Add ~amd64-linux keyword
39
40
41
42 1.1 dev-libs/libtasn1/libtasn1-3.6.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libtasn1-3.6.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-3.6.ebuild,v 1.1 2014/06/07 18:40:15 alonbl Exp $
52
53 EAPI=5
54
55 inherit autotools autotools-multilib
56
57 DESCRIPTION="ASN.1 library"
58 HOMEPAGE="http://www.gnu.org/software/libtasn1/"
59 SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
60
61 LICENSE="GPL-3 LGPL-2.1"
62 SLOT="0/6" # subslot = libtasn1 soname version
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos"
64 IUSE="doc static-libs"
65
66 DEPEND=">=dev-lang/perl-5.6
67 virtual/yacc"
68 RDEPEND="
69 abi_x86_32? (
70 !<=app-emulation/emul-linux-x86-baselibs-20131008-r16
71 !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
72 )"
73
74 DOCS=( AUTHORS ChangeLog NEWS README THANKS )
75
76 src_prepare() {
77 epatch "${FILESDIR}/${P}-build.patch"
78 eautoreconf
79 }
80
81 src_configure() {
82 local myeconfargs
83 [[ "${VALGRIND_TESTS}" == "0" ]] && myeconfargs+=( --disable-valgrind-tests )
84 autotools-multilib_src_configure
85 }
86
87 src_install() {
88 autotools-multilib_src_install
89
90 if use doc ; then
91 dodoc doc/libtasn1.pdf
92 dohtml doc/reference/html/*
93 fi
94 }