Gentoo Archives: gentoo-commits

From: "Daniel Black (dragonheart)" <dragonheart@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/opensc: ChangeLog opensc-0.11.6.ebuild
Date: Sat, 30 Aug 2008 05:19:17
Message-Id: E1KZIri-0000S3-JQ@stork.gentoo.org
1 dragonheart 08/08/30 05:19:14
2
3 Modified: ChangeLog
4 Added: opensc-0.11.6.ebuild
5 Log:
6 version bump thanks to Alon - bug #233519
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.22-vs2.2.0.7-gentoo x86_64)
8
9 Revision Changes Path
10 1.50 dev-libs/opensc/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/opensc/ChangeLog?rev=1.50&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/opensc/ChangeLog?rev=1.50&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/opensc/ChangeLog?r1=1.49&r2=1.50
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/opensc/ChangeLog,v
19 retrieving revision 1.49
20 retrieving revision 1.50
21 diff -u -r1.49 -r1.50
22 --- ChangeLog 6 Aug 2008 11:00:11 -0000 1.49
23 +++ ChangeLog 30 Aug 2008 05:19:14 -0000 1.50
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/opensc
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/ChangeLog,v 1.49 2008/08/06 11:00:11 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/ChangeLog,v 1.50 2008/08/30 05:19:14 dragonheart Exp $
29 +
30 +*opensc-0.11.6 (30 Aug 2008)
31 +
32 + 30 Aug 2008; Daniel Black <dragonheart@g.o> +opensc-0.11.6.ebuild:
33 + version bump thanks to Alon - bug #233519
34
35 06 Aug 2008; Ulrich Mueller <ulm@g.o> metadata.xml:
36 Add USE flag description to metadata wrt GLEP 56.
37
38
39
40 1.1 dev-libs/opensc/opensc-0.11.6.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/opensc/opensc-0.11.6.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/opensc/opensc-0.11.6.ebuild?rev=1.1&content-type=text/plain
44
45 Index: opensc-0.11.6.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/opensc-0.11.6.ebuild,v 1.1 2008/08/30 05:19:14 dragonheart Exp $
50
51 DESCRIPTION="SmartCard library and applications"
52 HOMEPAGE="http://www.opensc-project.org/opensc/"
53
54 if [[ "${PV}" = "9999" ]]; then
55 inherit subversion autotools
56 ESVN_REPO_URI="http://www.opensc-project.org/svn/${PN}/trunk"
57 KEYWORDS=""
58 else
59 SRC_URI="http://www.opensc-project.org/files/${PN}/${P}.tar.gz"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
61 fi
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 IUSE="pcsc-lite openct nsplugin doc"
66
67 RDEPEND="dev-libs/openssl
68 sys-libs/zlib
69 openct? ( >=dev-libs/openct-0.5.0 )
70 pcsc-lite? ( >=sys-apps/pcsc-lite-1.3.0 )
71 nsplugin? (
72 app-crypt/pinentry
73 x11-libs/libXt
74 )"
75 DEPEND="${RDEPEND}
76 dev-util/pkgconfig
77 nsplugin? ( dev-libs/libassuan )"
78
79 [[ "${PV}" = "9999" ]] && DEPEND="${DEPEND}
80 app-text/docbook-xsl-stylesheets
81 dev-libs/libxslt"
82
83 src_unpack() {
84 if [ "${PV}" = "9999" ]; then
85 subversion_src_unpack
86 cd "${S}"
87 eautoreconf
88 else
89 unpack ${A}
90 cd "${S}"
91 fi
92 }
93
94 src_compile() {
95 econf \
96 --docdir="/usr/share/doc/${PF}" \
97 --htmldir="/usr/share/doc/${PF}/html" \
98 $(use_enable openct) \
99 $(use_enable pcsc-lite pcsc) \
100 $(use_enable nsplugin) \
101 $(use_enable doc) \
102 --with-plugin-dir=/usr/lib/mozilla/plugins \
103 --with-pin-entry="/usr/bin/pinentry" \
104 || die
105 emake || die
106 }
107
108 src_install() {
109 emake install DESTDIR="${D}" || die
110 }