# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/pcsc-lite/pcsc-lite-1.2.0.ebuild,v 1.15 2007/06/30 11:28:26 alonbl Exp $ inherit eutils DESCRIPTION="PC/SC Architecture smartcard middleware library" HOMEPAGE="http://www.linuxnet.com/middle.html" SRC_URI="https://alioth.debian.org/download.php/419/pcsc-lite-${PV}.tar.gz" LICENSE="as-is" SLOT="0" KEYWORDS="amd64 arm hppa ia64 m68k ppc ppc64 s390 sh sparc x86" IUSE="static" RDEPEND="!static? ( dev-libs/libusb )" DEPEND="sys-devel/libtool sys-devel/flex sys-apps/gawk dev-libs/libusb dev-util/pkgconfig dev-libs/libusb" src_compile() { econf \ --enable-usbdropdir=/usr/lib/readers/usb \ --enable-muscledropdir=/usr/share/pcsc/services \ `use_enable static` || die "./configure failed" emake || die } src_install() { emake DESTDIR=${D} install || die dodoc AUTHORS COPYING ChangeLog DRIVERS HELP INSTALL NEWS README SECURITY dodoc doc/*.pdf doc/README.DAEMON docinto sample dodoc src/utils/README src/utils/sample.* rm -rf ${D}/usr/doc newinitd ${FILESDIR}/pcscd-init pcscd }