diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2008-01-09 13:26:54 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2008-01-09 13:26:54 +0000 |
commit | 78b90c95acf917f5265c71fd7f8a918814cbe543 (patch) | |
tree | d29ead5f30fa7443188e2a075519b58f6e8c38f8 /sys-apps/pcsc-lite/pcsc-lite-1.4.99.ebuild | |
parent | Keyworded ~sparc-fbsd (diff) | |
download | gentoo-2-78b90c95acf917f5265c71fd7f8a918814cbe543.tar.gz gentoo-2-78b90c95acf917f5265c71fd7f8a918814cbe543.tar.bz2 gentoo-2-78b90c95acf917f5265c71fd7f8a918814cbe543.zip |
Version bump
(Portage version: 2.1.4_rc14)
Diffstat (limited to 'sys-apps/pcsc-lite/pcsc-lite-1.4.99.ebuild')
-rw-r--r-- | sys-apps/pcsc-lite/pcsc-lite-1.4.99.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/sys-apps/pcsc-lite/pcsc-lite-1.4.99.ebuild b/sys-apps/pcsc-lite/pcsc-lite-1.4.99.ebuild new file mode 100644 index 000000000000..9ef3173aa78d --- /dev/null +++ b/sys-apps/pcsc-lite/pcsc-lite-1.4.99.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2008 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.4.99.ebuild,v 1.1 2008/01/09 13:26:54 alonbl Exp $ + +inherit multilib + +STUPID_NUM="2257" +MY_P="${PN}-${PV/_/-}" +DESCRIPTION="PC/SC Architecture smartcard middleware library" +HOMEPAGE="http://www.linuxnet.com/middle.html" +SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${MY_P}.tar.gz" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="static debug" + +RDEPEND="!static? ( dev-libs/libusb )" +DEPEND="dev-libs/libusb + dev-util/pkgconfig" + +S="${WORKDIR}/${MY_P}" + +src_compile() { + econf \ + --docdir="/usr/share/doc/${PF}" \ + --enable-usbdropdir="/usr/$(get_libdir)/readers/usb" \ + --enable-muscledropdir="/usr/share/pcsc/services" \ + --enable-runpid="/var/run/pcscd.pid" \ + $(use_enable debug) \ + $(use_enable static) \ + || die "configure failed" + emake || die +} + +src_install() { + emake DESTDIR="${D}" install || die + + dodoc AUTHORS DRIVERS HELP README SECURITY ChangeLog + prepalldocs + + newinitd "${FILESDIR}/pcscd-init" pcscd + newconfd "${FILESDIR}/pcscd-confd" pcscd +} + +pkg_postinst() { + ewarn "You should run 'revdep-rebuild --library libpcsclite.so.0'" +} |