# Copyright 1999-2006 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.10 2006/01/05 03:44:51 vapier 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="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86" IUSE="static" RDEPEND="!static? ( virtual/libc ) !static? ( dev-libs/libusb )" DEPEND="sys-devel/make sys-devel/libtool sys-apps/sed sys-devel/flex sys-apps/gawk dev-libs/libusb dev-util/pkgconfig sys-devel/gcc virtual/libc 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 exeinto /etc/init.d newexe ${FILESDIR}/pcscd-init pcscd }