Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/libp11: ChangeLog libp11-0.2.5.ebuild libp11-0.2.2.ebuild libp11-0.2.3.ebuild
Date: Sat, 27 Jun 2009 20:28:32
Message-Id: E1MKeVh-0006Sm-92@stork.gentoo.org
1 arfrever 09/06/27 20:28:29
2
3 Modified: ChangeLog
4 Added: libp11-0.2.5.ebuild
5 Removed: libp11-0.2.2.ebuild libp11-0.2.3.ebuild
6 Log:
7 Version bump.
8 (Portage version: 13716-svn/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.33 dev-libs/libp11/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libp11/ChangeLog?rev=1.33&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libp11/ChangeLog?rev=1.33&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libp11/ChangeLog?r1=1.32&r2=1.33
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/libp11/ChangeLog,v
20 retrieving revision 1.32
21 retrieving revision 1.33
22 diff -u -r1.32 -r1.33
23 --- ChangeLog 25 May 2009 19:01:46 -0000 1.32
24 +++ ChangeLog 27 Jun 2009 20:28:29 -0000 1.33
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/libp11
27 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libp11/ChangeLog,v 1.32 2009/05/25 19:01:46 ranger Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libp11/ChangeLog,v 1.33 2009/06/27 20:28:29 arfrever Exp $
30 +
31 +*libp11-0.2.5 (27 Jun 2009)
32 +
33 + 27 Jun 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + -libp11-0.2.2.ebuild, -libp11-0.2.3.ebuild, +libp11-0.2.5.ebuild:
35 + Version bump.
36
37 25 May 2009; Brent Baude <ranger@g.o> libp11-0.2.4.ebuild:
38 Remarking ppc64 and ppc stable.
39
40
41
42 1.1 dev-libs/libp11/libp11-0.2.5.ebuild
43
44 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libp11/libp11-0.2.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/libp11/libp11-0.2.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libp11-0.2.5.ebuild
48 ===================================================================
49 # Copyright 1999-2009 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.5.ebuild,v 1.1 2009/06/27 20:28:29 arfrever Exp $
52
53 EAPI="2"
54
55 DESCRIPTION="Libp11 is a library implementing a small layer on top of PKCS#11 API to make using PKCS#11 implementations easier."
56 HOMEPAGE="http://www.opensc-project.org/libp11/"
57
58 if [[ "${PV}" = "9999" ]]; then
59 inherit autotools subversion
60 ESVN_REPO_URI="http://www.opensc-project.org/svn/${PN}/trunk"
61 else
62 SRC_URI="http://www.opensc-project.org/files/${PN}/${P}.tar.gz"
63 fi
64
65 LICENSE="LGPL-2.1"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
68 IUSE="doc"
69
70 RDEPEND=""
71 DEPEND="dev-util/pkgconfig
72 doc? ( app-doc/doxygen )"
73
74 if [[ "${PV}" = "9999" ]]; then
75 DEPEND="${DEPEND}
76 app-text/docbook-xsl-stylesheets
77 dev-libs/libxslt"
78
79 src_prepare() {
80 eautoreconf
81 }
82 fi
83
84 src_configure() {
85 econf \
86 --docdir="/usr/share/doc/${PF}" \
87 --htmldir="/usr/share/doc/${PF}/html" \
88 $(use_enable doc) \
89 $(use_enable doc api-doc)
90 }
91
92 src_install() {
93 emake install DESTDIR="${D}" || die "emake install failed"
94 }