diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-07-03 17:42:02 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-07-03 17:42:02 +0000 |
commit | 610dcf774c90068c5fb83b61b85553a0a8c0e21e (patch) | |
tree | 39b304a2f6616bc13cec5aee5a94496906b2672f /app-crypt | |
parent | revision bump to make vpnc work with Kernel >=2.6.39 (bug 372441 by maxb <max... (diff) | |
download | gentoo-2-610dcf774c90068c5fb83b61b85553a0a8c0e21e.tar.gz gentoo-2-610dcf774c90068c5fb83b61b85553a0a8c0e21e.tar.bz2 gentoo-2-610dcf774c90068c5fb83b61b85553a0a8c0e21e.zip |
Version bump.
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/ccid/ChangeLog | 7 | ||||
-rw-r--r-- | app-crypt/ccid/ccid-1.4.4.ebuild | 42 |
2 files changed, 48 insertions, 1 deletions
diff --git a/app-crypt/ccid/ChangeLog b/app-crypt/ccid/ChangeLog index 69aa06062ab4..b497b4a90d51 100644 --- a/app-crypt/ccid/ChangeLog +++ b/app-crypt/ccid/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-crypt/ccid # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ChangeLog,v 1.63 2011/05/11 08:42:52 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ChangeLog,v 1.64 2011/07/03 17:42:02 flameeyes Exp $ + +*ccid-1.4.4 (03 Jul 2011) + + 03 Jul 2011; Diego E. Pettenò <flameeyes@gentoo.org> +ccid-1.4.4.ebuild: + Version bump. 11 May 2011; Michael Weber <xmw@gentoo.org> ccid-1.4.2.ebuild: added ~arm keyword (bug 264983) diff --git a/app-crypt/ccid/ccid-1.4.4.ebuild b/app-crypt/ccid/ccid-1.4.4.ebuild new file mode 100644 index 000000000000..9182b7583f16 --- /dev/null +++ b/app-crypt/ccid/ccid-1.4.4.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-crypt/ccid/ccid-1.4.4.ebuild,v 1.1 2011/07/03 17:42:02 flameeyes Exp $ + +EAPI="3" + +STUPID_NUM="3579" + +inherit eutils + +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" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +IUSE="twinserial +usb" + +DEPEND=">=sys-apps/pcsc-lite-1.6.5 + usb? ( virtual/libusb:1 )" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -i -e 's:GROUP="pcscd":ENV{PCSCD}="1":' \ + src/92_pcscd_ccid.rules || die +} + +src_configure() { + econf \ + LEX=: \ + --docdir="/usr/share/doc/${PF}" \ + $(use_enable twinserial) \ + $(use_enable usb libusb) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc README AUTHORS || die + insinto /lib/udev/rules.d + doins src/92_pcscd_ccid.rules || die +} |