Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/ccid: ccid-1.4.14.ebuild ChangeLog ccid-1.4.13.ebuild ccid-1.4.11.ebuild
Date: Mon, 02 Dec 2013 21:43:36
Message-Id: 20131202214332.810762004B@flycatcher.gentoo.org
1 flameeyes 13/12/02 21:43:32
2
3 Modified: ChangeLog
4 Added: ccid-1.4.14.ebuild
5 Removed: ccid-1.4.13.ebuild ccid-1.4.11.ebuild
6 Log:
7 Version bump; remove old.
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key D4301342)
10
11 Revision Changes Path
12 1.100 app-crypt/ccid/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/ccid/ChangeLog?rev=1.100&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/ccid/ChangeLog?rev=1.100&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/ccid/ChangeLog?r1=1.99&r2=1.100
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-crypt/ccid/ChangeLog,v
21 retrieving revision 1.99
22 retrieving revision 1.100
23 diff -u -r1.99 -r1.100
24 --- ChangeLog 12 Oct 2013 20:13:11 -0000 1.99
25 +++ ChangeLog 2 Dec 2013 21:43:32 -0000 1.100
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-crypt/ccid
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ChangeLog,v 1.99 2013/10/12 20:13:11 flameeyes Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ChangeLog,v 1.100 2013/12/02 21:43:32 flameeyes Exp $
31 +
32 +*ccid-1.4.14 (02 Dec 2013)
33 +
34 + 02 Dec 2013; Diego E. Pettenò <flameeyes@g.o> +ccid-1.4.14.ebuild,
35 + -ccid-1.4.11.ebuild, -ccid-1.4.13.ebuild:
36 + Version bump; remove old.
37
38 *ccid-1.4.13 (12 Oct 2013)
39
40
41
42
43 1.1 app-crypt/ccid/ccid-1.4.14.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/ccid/ccid-1.4.14.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/ccid/ccid-1.4.14.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ccid-1.4.14.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ccid-1.4.14.ebuild,v 1.1 2013/12/02 21:43:32 flameeyes Exp $
53
54 EAPI=5
55
56 STUPID_NUM="3971"
57
58 inherit eutils toolchain-funcs udev autotools-utils
59
60 DESCRIPTION="CCID free software driver"
61 HOMEPAGE="http://pcsclite.alioth.debian.org/ccid.html"
62 SRC_URI="http://alioth.debian.org/frs/download.php/file/${STUPID_NUM}/${P}.tar.bz2"
63
64 LICENSE="GPL-2"
65 SLOT="0"
66 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
67 IUSE="twinserial +usb"
68
69 RDEPEND=">=sys-apps/pcsc-lite-1.8.3
70 usb? ( virtual/libusb:1 )"
71 DEPEND="${RDEPEND}
72 kernel_linux? ( virtual/pkgconfig )"
73
74 DOCS=( README AUTHORS )
75
76 src_configure() {
77 local myeconfargs=(
78 LEX=:
79 $(use_enable twinserial)
80 $(use_enable usb libusb)
81 )
82
83 autotools-utils_src_configure
84 }
85
86 src_install() {
87 autotools-utils_src_install
88
89 if use kernel_linux; then
90 # note: for eudev support, rules probably will always need to be
91 # installed to /usr
92
93 # ccid >=1.4.11 version changed the rules drastically in a minor
94 # release to nolonger use the pcscd group. Using the old ones in
95 # the mean time.
96 udev_newrules "${FILESDIR}"/92_pcscd_ccid.rules 92-pcsc-ccid.rules
97 fi
98 }