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.7.ebuild opensc-0.11.3.ebuild opensc-0.11.4.ebuild
Date: Fri, 27 Feb 2009 21:57:19
Message-Id: E1LdAho-0000Mm-Nz@stork.gentoo.org
1 dragonheart 09/02/27 21:57:16
2
3 Modified: ChangeLog
4 Added: opensc-0.11.7.ebuild
5 Removed: opensc-0.11.3.ebuild opensc-0.11.4.ebuild
6 Log:
7 version bump ref security bug #260514. remove some older versions
8 (Portage version: 2.2_rc23/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.56 dev-libs/opensc/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/opensc/ChangeLog?rev=1.56&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/opensc/ChangeLog?rev=1.56&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/opensc/ChangeLog?r1=1.55&r2=1.56
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/opensc/ChangeLog,v
20 retrieving revision 1.55
21 retrieving revision 1.56
22 diff -u -r1.55 -r1.56
23 --- ChangeLog 31 Oct 2008 20:34:26 -0000 1.55
24 +++ ChangeLog 27 Feb 2009 21:57:16 -0000 1.56
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-libs/opensc
27 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/ChangeLog,v 1.55 2008/10/31 20:34:26 gmsoft Exp $
29 +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/ChangeLog,v 1.56 2009/02/27 21:57:16 dragonheart Exp $
31 +
32 +*opensc-0.11.7 (27 Feb 2009)
33 +
34 + 27 Feb 2009; Daniel Black <dragonheart@g.o> -opensc-0.11.3.ebuild,
35 + -opensc-0.11.4.ebuild, +opensc-0.11.7.ebuild:
36 + version bump ref security bug #260514. remove some older versions
37
38 31 Oct 2008; Guy Martin <gmsoft@g.o> opensc-0.11.6.ebuild:
39 hppa stable
40
41
42
43 1.1 dev-libs/opensc/opensc-0.11.7.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/opensc/opensc-0.11.7.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/opensc/opensc-0.11.7.ebuild?rev=1.1&content-type=text/plain
47
48 Index: opensc-0.11.7.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/opensc/opensc-0.11.7.ebuild,v 1.1 2009/02/27 21:57:16 dragonheart Exp $
53
54 DESCRIPTION="SmartCard library and applications"
55 HOMEPAGE="http://www.opensc-project.org/opensc/"
56
57 SRC_URI="http://www.opensc-project.org/files/${PN}/${P}.tar.gz"
58 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
59
60 LICENSE="LGPL-2.1"
61 SLOT="0"
62 IUSE="pcsc-lite openct nsplugin doc"
63
64 RDEPEND="dev-libs/openssl
65 sys-libs/zlib
66 openct? ( >=dev-libs/openct-0.5.0 )
67 pcsc-lite? ( >=sys-apps/pcsc-lite-1.3.0 )
68 nsplugin? (
69 app-crypt/pinentry
70 x11-libs/libXt
71 )"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 nsplugin? ( dev-libs/libassuan )"
75
76 src_compile() {
77 econf \
78 --docdir="/usr/share/doc/${PF}" \
79 --htmldir="/usr/share/doc/${PF}/html" \
80 $(use_enable openct) \
81 $(use_enable pcsc-lite pcsc) \
82 $(use_enable nsplugin) \
83 $(use_enable doc) \
84 --with-plugin-dir=/usr/lib/mozilla/plugins \
85 --with-pin-entry="/usr/bin/pinentry" \
86 || die
87 emake || die
88 }
89
90 src_install() {
91 emake install DESTDIR="${D}" || die
92 }
93
94 pkg_postinst() {
95 elog "This package is a security fix to CVE-2009-0368. If you have private keys on your"
96 elog "smart card by using this package they are stored with improper access restrictions."
97 elog "See advisory http://thread.gmane.org/gmane.comp.encryption.opensc.announce/22 for"
98 elog "full details and mitigation advice"
99 }