diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-28 23:38:27 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-06-28 23:38:27 +0000 |
commit | 591461240abcae637a4187729d2be1136de58a6b (patch) | |
tree | 685051e3eb1838f4ce676077e0671c5df5725305 /sys-apps/pcsc-lite | |
parent | Revbump, change swt dependency to swt:3.5. Port to EAPI 3 (diff) | |
download | gentoo-2-591461240abcae637a4187729d2be1136de58a6b.tar.gz gentoo-2-591461240abcae637a4187729d2be1136de58a6b.tar.bz2 gentoo-2-591461240abcae637a4187729d2be1136de58a6b.zip |
Delete older ebuilds.
Diffstat (limited to 'sys-apps/pcsc-lite')
-rw-r--r-- | sys-apps/pcsc-lite/pcsc-lite-1.5.3.ebuild | 74 | ||||
-rw-r--r-- | sys-apps/pcsc-lite/pcsc-lite-1.5.4.ebuild | 71 |
2 files changed, 0 insertions, 145 deletions
diff --git a/sys-apps/pcsc-lite/pcsc-lite-1.5.3.ebuild b/sys-apps/pcsc-lite/pcsc-lite-1.5.3.ebuild deleted file mode 100644 index 10364d0603a1..000000000000 --- a/sys-apps/pcsc-lite/pcsc-lite-1.5.3.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2009 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.5.3.ebuild,v 1.8 2009/06/15 03:25:48 jer Exp $ - -inherit multilib - -DESCRIPTION="PC/SC Architecture smartcard middleware library" -HOMEPAGE="http://www.linuxnet.com/middle.html" - -if [[ "${PV}" = "9999" ]]; then - inherit subversion autotools - ESVN_REPO_URI="svn://svn.debian.org/pcsclite/trunk" - S="${WORKDIR}/trunk" -else - STUPID_NUM="3017" - MY_P="${PN}-${PV/_/-}" - SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${MY_P}.tar.bz2" - S="${WORKDIR}/${MY_P}" -fi - -LICENSE="as-is" -SLOT="0" -KEYWORDS="amd64 arm hppa ia64 m68k ppc ppc64 s390 sh sparc x86" -IUSE="hal static usb" - -RDEPEND="usb? ( =virtual/libusb-0* ) - hal? ( sys-apps/hal )" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -pkg_setup() { - if use hal && use usb; then - ewarn "The usb and hal USE flags cannot be enabled at the same time" - ewarn "Disabling the effect of USE=usb" - fi -} - -src_unpack() { - if [ "${PV}" != "9999" ]; then - unpack ${A} - cd "${S}" - else - subversion_src_unpack - S="${WORKDIR}/trunk/PCSC" - cd "${S}" - AT_M4DIR="m4" eautoreconf - fi -} - -src_compile() { - local myconf - if use hal; then - myconf="--enable-libhal --disable-libusb" - else - myconf="--disable-libhal $(use_enable usb libusb)" - fi - - econf \ - --docdir="/usr/share/doc/${PF}" \ - --enable-usbdropdir="/usr/$(get_libdir)/readers/usb" \ - ${myconf} \ - $(use_enable static) - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - prepalldocs - - dodoc AUTHORS DRIVERS HELP README SECURITY ChangeLog - - newinitd "${FILESDIR}/pcscd-init" pcscd - newconfd "${FILESDIR}/pcscd-confd" pcscd -} diff --git a/sys-apps/pcsc-lite/pcsc-lite-1.5.4.ebuild b/sys-apps/pcsc-lite/pcsc-lite-1.5.4.ebuild deleted file mode 100644 index c41e61d4d5c3..000000000000 --- a/sys-apps/pcsc-lite/pcsc-lite-1.5.4.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2009 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.5.4.ebuild,v 1.7 2009/09/23 17:14:25 jer Exp $ - -EAPI="2" - -inherit multilib - -DESCRIPTION="PC/SC Architecture smartcard middleware library" -HOMEPAGE="http://www.linuxnet.com/middle.html" - -if [[ "${PV}" = "9999" ]]; then - inherit subversion autotools - ESVN_REPO_URI="svn://svn.debian.org/pcsclite/trunk" - S="${WORKDIR}/trunk" -else - STUPID_NUM="3052" - MY_P="${PN}-${PV/_/-}" - SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${MY_P}.tar.bz2" - S="${WORKDIR}/${MY_P}" -fi - -LICENSE="as-is" -SLOT="0" -KEYWORDS="amd64 arm hppa ia64 m68k ppc ppc64 s390 sh sparc x86" -IUSE="hal static usb" - -RDEPEND="usb? ( =virtual/libusb-0* ) - hal? ( sys-apps/hal )" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -pkg_setup() { - if use hal && use usb; then - ewarn "The usb and hal USE flags cannot be enabled at the same time" - ewarn "Disabling the effect of USE=usb" - fi -} - -if [[ "${PV}" == "9999" ]]; then - src_prepare() { - S="${WORKDIR}/trunk/PCSC" - cd "${S}" - AT_M4DIR="m4" eautoreconf - } -fi - -src_configure() { - local myconf - if use hal; then - myconf="--enable-libhal --disable-libusb" - else - myconf="--disable-libhal $(use_enable usb libusb)" - fi - - econf \ - --docdir="/usr/share/doc/${PF}" \ - --enable-usbdropdir="/usr/$(get_libdir)/readers/usb" \ - ${myconf} \ - $(use_enable static) -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - prepalldocs - - dodoc AUTHORS DRIVERS HELP README SECURITY ChangeLog - - newinitd "${FILESDIR}/pcscd-init" pcscd - newconfd "${FILESDIR}/pcscd-confd" pcscd -} |