diff options
author | Hanno Böck <hanno@gentoo.org> | 2009-04-05 16:33:39 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2009-04-05 16:33:39 +0000 |
commit | 349487a1ae19d2f9f5ba259c46c24f6766e7ba4a (patch) | |
tree | 99f0418d2e941c4850b1fc5e2bbac8d3bf640945 /sys-libs | |
parent | Update metadata, bug #248403 (diff) | |
download | gentoo-2-349487a1ae19d2f9f5ba259c46c24f6766e7ba4a.tar.gz gentoo-2-349487a1ae19d2f9f5ba259c46c24f6766e7ba4a.tar.bz2 gentoo-2-349487a1ae19d2f9f5ba259c46c24f6766e7ba4a.zip |
libchipcard bump
(Portage version: 2.2_rc28/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/libchipcard/ChangeLog | 7 | ||||
-rw-r--r-- | sys-libs/libchipcard/libchipcard-4.2.5.ebuild | 49 |
2 files changed, 55 insertions, 1 deletions
diff --git a/sys-libs/libchipcard/ChangeLog b/sys-libs/libchipcard/ChangeLog index 400e128b6790..5e5587577cc5 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.76 2009/03/24 15:00:00 hanno Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/ChangeLog,v 1.77 2009/04/05 16:33:39 hanno Exp $ + +*libchipcard-4.2.5 (05 Apr 2009) + + 05 Apr 2009; Hanno Boeck <hanno@gentoo.org> +libchipcard-4.2.5.ebuild: + Version bump. 24 Mar 2009; Hanno Boeck <hanno@gentoo.org> libchipcard-4.2.4.ebuild: Raise gwenhywfar dep, fixes #263569. diff --git a/sys-libs/libchipcard/libchipcard-4.2.5.ebuild b/sys-libs/libchipcard/libchipcard-4.2.5.ebuild new file mode 100644 index 000000000000..6fcf1792b25d --- /dev/null +++ b/sys-libs/libchipcard/libchipcard-4.2.5.ebuild @@ -0,0 +1,49 @@ +# 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.5.ebuild,v 1.1 2009/04/05 16:33:39 hanno Exp $ + +DESCRIPTION="Libchipcard is a library for easy access to chip cards via chip card readers (terminals)." +HOMEPAGE="http://www.libchipcard.de" +SRC_URI="mirror://gentoo/${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.5.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 +} |