diff options
author | Hanno Böck <hanno@gentoo.org> | 2009-04-26 21:12:46 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2009-04-26 21:12:46 +0000 |
commit | df49e2236934a4e0c3a73181b7b019a52a8ab988 (patch) | |
tree | e4d313248e9c8def84296f743c56bb0c49fd3341 /sys-libs/libchipcard | |
parent | Masked x11-plugins/desklet-wirelessmonitor for removal in 30 days - it doesn'... (diff) | |
download | gentoo-2-df49e2236934a4e0c3a73181b7b019a52a8ab988.tar.gz gentoo-2-df49e2236934a4e0c3a73181b7b019a52a8ab988.tar.bz2 gentoo-2-df49e2236934a4e0c3a73181b7b019a52a8ab988.zip |
libchipcard bump
(Portage version: 2.2_rc31/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs/libchipcard')
-rw-r--r-- | sys-libs/libchipcard/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/libchipcard/libchipcard-4.2.7.ebuild | 51 |
2 files changed, 57 insertions, 1 deletions
diff --git a/sys-libs/libchipcard/ChangeLog b/sys-libs/libchipcard/ChangeLog index 5e5587577cc5..c5bdc442038b 100644 --- a/sys-libs/libchipcard/ChangeLog +++ b/sys-libs/libchipcard/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-libs/libchipcard # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/ChangeLog,v 1.77 2009/04/05 16:33:39 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/ChangeLog,v 1.78 2009/04/26 21:12:46 hanno Exp $ + +*libchipcard-4.2.7 (26 Apr 2009) + + 26 Apr 2009; Hanno Boeck <hanno@gentoo.org> +libchipcard-4.2.7.ebuild: + Version bump. *libchipcard-4.2.5 (05 Apr 2009) diff --git a/sys-libs/libchipcard/libchipcard-4.2.7.ebuild b/sys-libs/libchipcard/libchipcard-4.2.7.ebuild new file mode 100644 index 000000000000..6a9137409d60 --- /dev/null +++ b/sys-libs/libchipcard/libchipcard-4.2.7.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/libchipcard-4.2.7.ebuild,v 1.1 2009/04/26 21:12:46 hanno Exp $ + +EAPI="2" + +DESCRIPTION="Libchipcard is a library for easy access to chip cards via chip card readers (terminals)." +HOMEPAGE="http://www.libchipcard.de" +SRC_URI="http://www2.aquamaniac.de/sites/download/download.php?package=02&release=13&file=01&dummy=${P}.tar.gz -> ${P}.tar.gz" +LICENSE="GPL-2" +SLOT="2" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" + +IUSE="debug doc ssl usb" + +DEPEND=">=sys-libs/gwenhywfar-3.8.0 + ssl? ( >=dev-libs/openssl-0.9.6b ) + usb? ( dev-libs/libusb ) + sys-apps/hal" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${P}" + +src_compile() { + econf \ + `use_enable ssl` \ + `use_enable debug` \ + `use_enable usb libusb` \ + --localstatedir=/var \ + --enable-pcsc || die + + emake || die +} + +src_install() { + make DESTDIR="${D}" install || die + + keepdir /var/log/chipcard \ + /var/lib/chipcardd/newcerts \ + /usr/lib/chipcardd/server/lowlevel + + doinitd "${FILESDIR}/chipcardd4" || die + + dodoc AUTHORS ChangeLog README doc/CERTIFICATES doc/CONFIG doc/IPCCOMMANDS || die + if use doc ; then + docinto tutorials + dodoc tutorials/*.{c,h,xml} tutorials/README || die + fi + + find "${D}" -name '*.la' -delete +} |