summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2009-03-09 10:49:15 +0000
committerHanno Böck <hanno@gentoo.org>2009-03-09 10:49:15 +0000
commit99ac9902c5a5a566377f7c3df72ee2a906b97362 (patch)
treeda25894302b34c69e6fa0d7fed490cc6da2bc6b9 /sys-libs
parentVersion bump (diff)
downloadgentoo-2-99ac9902c5a5a566377f7c3df72ee2a906b97362.tar.gz
gentoo-2-99ac9902c5a5a566377f7c3df72ee2a906b97362.tar.bz2
gentoo-2-99ac9902c5a5a566377f7c3df72ee2a906b97362.zip
libchipcard: remove old and broken version
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'sys-libs')
-rw-r--r--sys-libs/libchipcard/libchipcard-4.2.3.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/sys-libs/libchipcard/libchipcard-4.2.3.ebuild b/sys-libs/libchipcard/libchipcard-4.2.3.ebuild
deleted file mode 100644
index 8cc7427ec2b8..000000000000
--- a/sys-libs/libchipcard/libchipcard-4.2.3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/libchipcard/libchipcard-4.2.3.ebuild,v 1.1 2008/11/13 23:44:09 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="http://files.hboeck.de/aq/${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.4.1
- ssl? ( >=dev-libs/openssl-0.9.6b )
- usb? ( dev-libs/libusb )
- >=sys-fs/sysfsutils-1.2.0"
-
-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
-}