Gentoo Archives: gentoo-commits

From: "Daniel Black (dragonheart)" <dragonheart@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/pcsc-lite: ChangeLog pcsc-lite-1.4.102.ebuild
Date: Sat, 30 Aug 2008 06:54:17
Message-Id: E1KZKLe-0000xz-2T@stork.gentoo.org
1 dragonheart 08/08/30 06:54:14
2
3 Modified: ChangeLog
4 Added: pcsc-lite-1.4.102.ebuild
5 Log:
6 version bump as per bug #231856 thanks to Francisco and Alon.
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.58 sys-apps/pcsc-lite/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pcsc-lite/ChangeLog?rev=1.58&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pcsc-lite/ChangeLog?rev=1.58&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pcsc-lite/ChangeLog?r1=1.57&r2=1.58
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-apps/pcsc-lite/ChangeLog,v
19 retrieving revision 1.57
20 retrieving revision 1.58
21 diff -u -r1.57 -r1.58
22 --- ChangeLog 9 Jan 2008 13:26:54 -0000 1.57
23 +++ ChangeLog 30 Aug 2008 06:54:13 -0000 1.58
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-apps/pcsc-lite
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcsc-lite/ChangeLog,v 1.57 2008/01/09 13:26:54 alonbl Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcsc-lite/ChangeLog,v 1.58 2008/08/30 06:54:13 dragonheart Exp $
29 +
30 +*pcsc-lite-1.4.102 (30 Aug 2008)
31 +
32 + 30 Aug 2008; Daniel Black <dragonheart@g.o>
33 + +pcsc-lite-1.4.102.ebuild:
34 + version bump as per bug #231856 thanks to Francisco and Alon.
35
36 *pcsc-lite-1.4.99 (09 Jan 2008)
37
38
39
40
41 1.1 sys-apps/pcsc-lite/pcsc-lite-1.4.102.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pcsc-lite/pcsc-lite-1.4.102.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/pcsc-lite/pcsc-lite-1.4.102.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pcsc-lite-1.4.102.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/pcsc-lite/pcsc-lite-1.4.102.ebuild,v 1.1 2008/08/30 06:54:13 dragonheart Exp $
51
52 inherit multilib
53
54 DESCRIPTION="PC/SC Architecture smartcard middleware library"
55 HOMEPAGE="http://www.linuxnet.com/middle.html"
56
57 if [[ "${PV}" = "9999" ]]; then
58 inherit subversion autotools
59 ESVN_REPO_URI="svn://svn.debian.org/pcsclite/trunk"
60 S="${WORKDIR}/trunk"
61 else
62 STUPID_NUM="2479"
63 MY_P="${PN}-${PV/_/-}"
64 SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${MY_P}.tar.bz2"
65 S="${WORKDIR}/${MY_P}"
66 fi
67
68 LICENSE="as-is"
69 SLOT="0"
70 KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
71 IUSE="static debug usb hal"
72
73 RDEPEND="usb? ( dev-libs/libusb )
74 hal? ( sys-apps/hal )"
75 DEPEND="${RDEPEND}
76 dev-util/pkgconfig"
77
78 src_unpack() {
79 if [ "${PV}" != "9999" ]; then
80 unpack ${A}
81 cd "${S}"
82 else
83 subversion_src_unpack
84 S="${WORKDIR}/trunk/PCSC"
85 cd "${S}"
86 AT_M4DIR="m4" eautoreconf
87 fi
88 }
89
90 src_compile() {
91 econf \
92 --docdir="/usr/share/doc/${PF}" \
93 --enable-usbdropdir="/usr/$(get_libdir)/readers/usb" \
94 --enable-muscledropdir="/usr/share/pcsc/services" \
95 --enable-runpid="/var/run/pcscd.pid" \
96 $(use_enable hal libhal) \
97 $(use_enable usb libusb) \
98 $(use_enable debug) \
99 $(use_enable static) \
100 || die "configure failed"
101 emake || die
102 }
103
104 src_install() {
105 emake DESTDIR="${D}" install || die
106 prepalldocs
107
108 dodoc AUTHORS DRIVERS HELP README SECURITY ChangeLog
109
110 newinitd "${FILESDIR}/pcscd-init" pcscd
111 newconfd "${FILESDIR}/pcscd-confd" pcscd
112 }