Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/libchipcard: ChangeLog libchipcard-4.1.3.ebuild
Date: Thu, 31 Jul 2008 15:05:25
Message-Id: E1KOZiT-0007ZZ-8h@stork.gentoo.org
1 hanno 08/07/31 15:05:21
2
3 Modified: ChangeLog
4 Added: libchipcard-4.1.3.ebuild
5 Log:
6 libchipcard bump
7 (Portage version: 2.2_rc5/cvs/Linux 2.6.26 i686)
8
9 Revision Changes Path
10 1.67 sys-libs/libchipcard/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libchipcard/ChangeLog?rev=1.67&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libchipcard/ChangeLog?rev=1.67&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libchipcard/ChangeLog?r1=1.66&r2=1.67
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/ChangeLog,v
19 retrieving revision 1.66
20 retrieving revision 1.67
21 diff -u -r1.66 -r1.67
22 --- ChangeLog 26 Jun 2008 12:11:19 -0000 1.66
23 +++ ChangeLog 31 Jul 2008 15:05:20 -0000 1.67
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sys-libs/libchipcard
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/ChangeLog,v 1.66 2008/06/26 12:11:19 hanno Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/ChangeLog,v 1.67 2008/07/31 15:05:20 hanno Exp $
29 +
30 +*libchipcard-4.1.3 (31 Jul 2008)
31 +
32 + 31 Jul 2008; Hanno Boeck <hanno@g.o> +libchipcard-4.1.3.ebuild:
33 + Version bump.
34
35 26 Jun 2008; Hanno Boeck <hanno@g.o>
36 -files/libchipcard-ccid-dir.diff, libchipcard-3.0.3.ebuild,
37
38
39
40 1.1 sys-libs/libchipcard/libchipcard-4.1.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libchipcard/libchipcard-4.1.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/libchipcard/libchipcard-4.1.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: libchipcard-4.1.3.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/sys-libs/libchipcard/libchipcard-4.1.3.ebuild,v 1.1 2008/07/31 15:05:20 hanno Exp $
50
51 DESCRIPTION="Libchipcard is a library for easy access to chip cards via chip card readers (terminals)."
52 HOMEPAGE="http://www.libchipcard.de"
53 SRC_URI="http://files.hboeck.de/aq/${P}.tar.gz"
54 LICENSE="GPL-2"
55 SLOT="2"
56 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
57
58 IUSE="debug doc ssl usb"
59
60 DEPEND=">=sys-libs/gwenhywfar-3.1.1
61 ssl? ( >=dev-libs/openssl-0.9.6b )
62 usb? ( dev-libs/libusb )
63 >=sys-fs/sysfsutils-1.2.0"
64
65 S="${WORKDIR}/${P}"
66
67 src_compile() {
68 econf \
69 `use_enable ssl` \
70 `use_enable debug` \
71 `use_enable usb libusb` \
72 --localstatedir=/var \
73 --enable-pcsc || die
74
75 emake || die
76 }
77
78 src_install() {
79 make DESTDIR="${D}" install || die
80
81 keepdir /var/log/chipcard \
82 /var/lib/chipcardd/newcerts \
83 /usr/lib/chipcardd/server/lowlevel
84
85 doinitd "${FILESDIR}/chipcardd4" || die
86
87 dodoc AUTHORS ChangeLog README doc/CERTIFICATES doc/CONFIG doc/IPCCOMMANDS || die
88 if use doc ; then
89 docinto tutorials
90 dodoc tutorials/*.{c,h,xml} tutorials/README || die
91 fi
92 }