diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2013-01-05 21:15:12 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2013-01-05 21:15:12 +0000 |
commit | 7d09d47248c792dcbae8329243365e83b587d113 (patch) | |
tree | 3325e74504ed6b665a9dbe6234088ab6d895f485 /app-crypt/asekey | |
parent | Drop deprecated maintainer record by Andreis Vinogradovs request, wrt bug #45... (diff) | |
download | gentoo-2-7d09d47248c792dcbae8329243365e83b587d113.tar.gz gentoo-2-7d09d47248c792dcbae8329243365e83b587d113.tar.bz2 gentoo-2-7d09d47248c792dcbae8329243365e83b587d113.zip |
Remove non-working with current in-tree pcsc-lite ebuilds
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-crypt/asekey')
-rw-r--r-- | app-crypt/asekey/ChangeLog | 5 | ||||
-rw-r--r-- | app-crypt/asekey/asekey-3.4.ebuild | 46 |
2 files changed, 4 insertions, 47 deletions
diff --git a/app-crypt/asekey/ChangeLog b/app-crypt/asekey/ChangeLog index ebbed8648c17..2dc04b0babba 100644 --- a/app-crypt/asekey/ChangeLog +++ b/app-crypt/asekey/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/asekey # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/asekey/ChangeLog,v 1.12 2013/01/05 21:11:29 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/asekey/ChangeLog,v 1.13 2013/01/05 21:15:12 alonbl Exp $ + + 05 Jan 2013; Alon Bar-Lev <alonbl@gentoo.org> -asekey-3.4.ebuild: + Remove non-working with current in-tree pcsc-lite ebuilds *asekey-3.7 (05 Jan 2013) diff --git a/app-crypt/asekey/asekey-3.4.ebuild b/app-crypt/asekey/asekey-3.4.ebuild deleted file mode 100644 index eca4b810b46a..000000000000 --- a/app-crypt/asekey/asekey-3.4.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/asekey/asekey-3.4.ebuild,v 1.3 2012/05/03 18:16:40 jdhore Exp $ - -DESCRIPTION="ASEKey USB SIM Card Reader" -HOMEPAGE="http://www.athena-scs.com" -SRC_URI="http://www.athena-scs.com/downloads/${P}.tar.bz2" -LICENSE="BSD" -SLOT="0" -IUSE="" -KEYWORDS="~amd64 ~x86" -RDEPEND=">=sys-apps/pcsc-lite-1.3.0 - =virtual/libusb-0*" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_install() { - local conf="/etc/reader.conf.d/${PN}.conf" - - emake DESTDIR="${D}" install || die "emake install failed" - - dodoc ChangeLog README - - dodir "$(dirname "${conf}")" - insinto "$(dirname "${conf}")" - newins "etc/reader.conf" "$(basename "${conf}")" -} - -pkg_postinst() { - elog "NOTICE:" - elog "1. Run update-reader.conf, yes this is a command..." - elog "2. Restart pcscd" -} - -pkg_postrm() { - # - # Without this, pcscd will not start next time. - # - local conf="/etc/reader.conf.d/${PN}.conf" - if ! [[ -f "${conf}" && -f "$(grep LIBPATH "${conf}" | sed 's/LIBPATH *//' | sed 's/ *$//g' | head -n 1)" ]]; then - [[ -f "${conf}" ]] && rm "${conf}" - update-reader.conf - elog "NOTICE:" - elog "You need to restart pcscd" - fi -} |