Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libp11: ChangeLog libp11-0.2.8-r1.ebuild
Date: Mon, 02 Jan 2012 19:41:06
Message-Id: 20120102194031.A9BA72004B@flycatcher.gentoo.org
1 vapier 12/01/02 19:40:31
2
3 Modified: ChangeLog
4 Added: libp11-0.2.8-r1.ebuild
5 Log:
6 Add patch from upstream to drop libtool requirement #394717.
7
8 (Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.60 dev-libs/libp11/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libp11/ChangeLog?rev=1.60&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libp11/ChangeLog?rev=1.60&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libp11/ChangeLog?r1=1.59&r2=1.60
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libp11/ChangeLog,v
20 retrieving revision 1.59
21 retrieving revision 1.60
22 diff -u -r1.59 -r1.60
23 --- ChangeLog 1 Jan 2012 15:55:19 -0000 1.59
24 +++ ChangeLog 2 Jan 2012 19:40:31 -0000 1.60
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libp11
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libp11/ChangeLog,v 1.59 2012/01/01 15:55:19 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libp11/ChangeLog,v 1.60 2012/01/02 19:40:31 vapier Exp $
30 +
31 +*libp11-0.2.8-r1 (02 Jan 2012)
32 +
33 + 02 Jan 2012; Mike Frysinger <vapier@g.o> +libp11-0.2.8-r1.ebuild,
34 + +files/libp11-0.2.8-no-ltdl.patch:
35 + Add patch from upstream to drop libtool requirement #394717.
36
37 01 Jan 2012; Raúl Porcel <armin76@g.o> libp11-0.2.8.ebuild:
38 alpha/ia64/sparc stable wrt #393865
39
40
41
42 1.1 dev-libs/libp11/libp11-0.2.8-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libp11/libp11-0.2.8-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libp11/libp11-0.2.8-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libp11-0.2.8-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libp11/libp11-0.2.8-r1.ebuild,v 1.1 2012/01/02 19:40:31 vapier Exp $
52
53 EAPI="4"
54 inherit eutils autotools
55
56 DESCRIPTION="A library implementing a layer on top of PKCS#11 API to make using PKCS#11 implementations easier."
57 HOMEPAGE="http://www.opensc-project.org/libp11/"
58
59 if [[ "${PV}" = "9999" ]]; then
60 inherit autotools subversion
61 ESVN_REPO_URI="http://www.opensc-project.org/svn/${PN}/trunk"
62 else
63 SRC_URI="http://www.opensc-project.org/files/${PN}/${P}.tar.gz"
64 fi
65
66 LICENSE="LGPL-2.1"
67 SLOT="0"
68 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
69 IUSE="doc"
70
71 RDEPEND="dev-libs/openssl"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 doc? ( app-doc/doxygen )"
75
76 if [[ "${PV}" = "9999" ]]; then
77 DEPEND="${DEPEND}
78 app-text/docbook-xsl-stylesheets
79 dev-libs/libxslt"
80 fi
81
82 src_prepare() {
83 epatch "${FILESDIR}"/${P}-no-ltdl.patch
84 eautoreconf
85 }
86
87 src_configure() {
88 econf \
89 --docdir="/usr/share/doc/${PF}" \
90 --htmldir="/usr/share/doc/${PF}/html" \
91 --enable-shared --disable-static \
92 --enable-doc \
93 $(use_enable doc api-doc)
94 }
95
96 src_install() {
97 emake install DESTDIR="${D}" || die "emake install failed"
98 find "${D}" -name '*.la' -delete
99 }