diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-08-02 06:20:55 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-08-02 06:20:55 +0000 |
commit | cdcebd00f3dcf360d2a510fcdedcd64bbab5583c (patch) | |
tree | 56041096592c5addff30ab76f9b70a0b5ec3a57e /app-crypt/ccid | |
parent | Version bump. Set SUPPORT_PYTHON_ABIS. (diff) | |
download | gentoo-2-cdcebd00f3dcf360d2a510fcdedcd64bbab5583c.tar.gz gentoo-2-cdcebd00f3dcf360d2a510fcdedcd64bbab5583c.tar.bz2 gentoo-2-cdcebd00f3dcf360d2a510fcdedcd64bbab5583c.zip |
Version bump.
(Portage version: 13874-svn/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt/ccid')
-rw-r--r-- | app-crypt/ccid/ChangeLog | 9 | ||||
-rw-r--r-- | app-crypt/ccid/ccid-1.3.0.ebuild | 37 | ||||
-rw-r--r-- | app-crypt/ccid/ccid-1.3.1.ebuild | 37 | ||||
-rw-r--r-- | app-crypt/ccid/ccid-1.3.11.ebuild (renamed from app-crypt/ccid/ccid-1.3.8.ebuild) | 15 | ||||
-rw-r--r-- | app-crypt/ccid/ccid-1.3.5.ebuild | 34 |
5 files changed, 16 insertions, 116 deletions
diff --git a/app-crypt/ccid/ChangeLog b/app-crypt/ccid/ChangeLog index fd9458d2db0c..ccc06d77a213 100644 --- a/app-crypt/ccid/ChangeLog +++ b/app-crypt/ccid/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-crypt/ccid # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ChangeLog,v 1.40 2009/06/09 02:18:18 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ChangeLog,v 1.41 2009/08/02 06:20:55 arfrever Exp $ + +*ccid-1.3.11 (02 Aug 2009) + + 02 Aug 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> + -ccid-1.3.0.ebuild, -ccid-1.3.1.ebuild, -ccid-1.3.5.ebuild, + -ccid-1.3.8.ebuild, +ccid-1.3.11.ebuild: + Version bump. 09 Jun 2009; Jeroen Roovers <jer@gentoo.org> ccid-1.3.10.ebuild: Stable for HPPA (bug #268111). diff --git a/app-crypt/ccid/ccid-1.3.0.ebuild b/app-crypt/ccid/ccid-1.3.0.ebuild deleted file mode 100644 index 6283156edccb..000000000000 --- a/app-crypt/ccid/ccid-1.3.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ccid-1.3.0.ebuild,v 1.6 2009/05/16 07:36:40 robbat2 Exp $ - -inherit eutils autotools - -STUPID_NUM="1970" -DESCRIPTION="CCID free software driver" -HOMEPAGE="http://pcsclite.alioth.debian.org/ccid.html" -SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 hppa ~ppc ~ppc64 x86" -IUSE="twinserial nousb" -RDEPEND=">=sys-apps/pcsc-lite-1.3.3 - =virtual/libusb-0*" - -src_compile() { - local myconf - - use nousb && myconf="${myconf} --disable-pcsclite" - - econf \ - LEX=: \ - --docdir="/usr/share/doc/${PF}" \ - --enable-udev \ - ${myconf} \ - $(use_enable twinserial) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - make install DESTDIR="${D}" || die "Cannot install" - dodoc README AUTHORS - insinto /etc/udev/rules.d - newins src/pcscd_ccid.rules 60-pcscd_ccid.rules -} diff --git a/app-crypt/ccid/ccid-1.3.1.ebuild b/app-crypt/ccid/ccid-1.3.1.ebuild deleted file mode 100644 index 2c2118f6b7ef..000000000000 --- a/app-crypt/ccid/ccid-1.3.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ccid-1.3.1.ebuild,v 1.6 2009/05/16 07:36:40 robbat2 Exp $ - -inherit eutils autotools - -STUPID_NUM="2193" -DESCRIPTION="CCID free software driver" -HOMEPAGE="http://pcsclite.alioth.debian.org/ccid.html" -SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 hppa ~ppc ~ppc64 x86" -IUSE="twinserial nousb" -RDEPEND=">=sys-apps/pcsc-lite-1.3.3 - =virtual/libusb-0*" - -src_compile() { - local myconf - - use nousb && myconf="${myconf} --disable-pcsclite" - - econf \ - LEX=: \ - --docdir="/usr/share/doc/${PF}" \ - --enable-udev \ - ${myconf} \ - $(use_enable twinserial) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - make install DESTDIR="${D}" || die "Cannot install" - dodoc README AUTHORS - insinto /etc/udev/rules.d - newins src/pcscd_ccid.rules 60-pcscd_ccid.rules -} diff --git a/app-crypt/ccid/ccid-1.3.8.ebuild b/app-crypt/ccid/ccid-1.3.11.ebuild index 90723bd9467e..f2495d883bd7 100644 --- a/app-crypt/ccid/ccid-1.3.8.ebuild +++ b/app-crypt/ccid/ccid-1.3.11.ebuild @@ -1,8 +1,10 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ccid-1.3.8.ebuild,v 1.3 2009/05/16 07:36:40 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ccid-1.3.11.ebuild,v 1.1 2009/08/02 06:20:55 arfrever Exp $ -STUPID_NUM="2482" +EAPI="2" + +STUPID_NUM="3080" DESCRIPTION="CCID free software driver" HOMEPAGE="http://pcsclite.alioth.debian.org/ccid.html" SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${P}.tar.bz2" @@ -11,10 +13,10 @@ SLOT="0" KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" IUSE="twinserial nousb" -RDEPEND="!nousb? ( >=sys-apps/pcsc-lite-1.3.3 =virtual/libusb-0* )" +RDEPEND="!nousb? ( >=sys-apps/pcsc-lite-1.3.3 virtual/libusb:0 )" DEPEND="${RDEPEND}" -src_compile() { +src_configure() { local myconf use nousb && myconf="${myconf} --disable-pcsclite" @@ -24,12 +26,11 @@ src_compile() { --docdir="/usr/share/doc/${PF}" \ --enable-udev \ ${myconf} \ - $(use_enable twinserial) || die "econf failed" - emake || die "emake failed" + $(use_enable twinserial) } src_install() { - make install DESTDIR="${D}" || die "Cannot install" + emake DESTDIR="${D}" install || die "emake install failed" dodoc README AUTHORS insinto /etc/udev/rules.d newins src/pcscd_ccid.rules 60-pcscd_ccid.rules diff --git a/app-crypt/ccid/ccid-1.3.5.ebuild b/app-crypt/ccid/ccid-1.3.5.ebuild deleted file mode 100644 index c8bb8fac3c20..000000000000 --- a/app-crypt/ccid/ccid-1.3.5.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ccid-1.3.5.ebuild,v 1.4 2009/05/16 07:36:40 robbat2 Exp $ - -STUPID_NUM="2330" -DESCRIPTION="CCID free software driver" -HOMEPAGE="http://pcsclite.alioth.debian.org/ccid.html" -SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" -IUSE="twinserial nousb" -RDEPEND="!nousb? ( >=sys-apps/pcsc-lite-1.3.3 =virtual/libusb-0* )" - -src_compile() { - local myconf - - use nousb && myconf="${myconf} --disable-pcsclite" - - econf \ - LEX=: \ - --docdir="/usr/share/doc/${PF}" \ - --enable-udev \ - ${myconf} \ - $(use_enable twinserial) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - make install DESTDIR="${D}" || die "Cannot install" - dodoc README AUTHORS - insinto /etc/udev/rules.d - newins src/pcscd_ccid.rules 60-pcscd_ccid.rules -} |