summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2010-12-26 17:39:40 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2010-12-26 17:39:40 +0000
commitb4a2d6ebde22b147ab17e92e6ca3e5ca49f655b1 (patch)
tree6acc3e6bc9f1cbedffba9aa566be1c8e572559f5 /app-crypt/asedriveiiie-serial
parentalpha/arm/ia64/s390/sparc stable wrt #348505 (diff)
downloadgentoo-2-b4a2d6ebde22b147ab17e92e6ca3e5ca49f655b1.tar.gz
gentoo-2-b4a2d6ebde22b147ab17e92e6ca3e5ca49f655b1.tar.bz2
gentoo-2-b4a2d6ebde22b147ab17e92e6ca3e5ca49f655b1.zip
Wishfully remove 3.4 version.
(Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt/asedriveiiie-serial')
-rw-r--r--app-crypt/asedriveiiie-serial/ChangeLog8
-rw-r--r--app-crypt/asedriveiiie-serial/asedriveiiie-serial-3.4.ebuild55
2 files changed, 6 insertions, 57 deletions
diff --git a/app-crypt/asedriveiiie-serial/ChangeLog b/app-crypt/asedriveiiie-serial/ChangeLog
index 953cb1ce866a..6e5c5fbb0bc4 100644
--- a/app-crypt/asedriveiiie-serial/ChangeLog
+++ b/app-crypt/asedriveiiie-serial/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-crypt/asedriveiiie-serial
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/asedriveiiie-serial/ChangeLog,v 1.8 2009/10/14 00:48:42 halcy0n Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/asedriveiiie-serial/ChangeLog,v 1.9 2010/12/26 17:39:40 flameeyes Exp $
+
+ 26 Dec 2010; Diego E. Pettenò <flameeyes@gentoo.org>
+ -asedriveiiie-serial-3.4.ebuild:
+ Wishfully remove 3.4 version.
14 Oct 2009; Mark Loeser <halcy0n@gentoo.org>
asedriveiiie-serial-3.4.ebuild:
diff --git a/app-crypt/asedriveiiie-serial/asedriveiiie-serial-3.4.ebuild b/app-crypt/asedriveiiie-serial/asedriveiiie-serial-3.4.ebuild
deleted file mode 100644
index eacb0c2f188c..000000000000
--- a/app-crypt/asedriveiiie-serial/asedriveiiie-serial-3.4.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/asedriveiiie-serial/asedriveiiie-serial-3.4.ebuild,v 1.8 2009/10/14 00:48:42 halcy0n Exp $
-
-DESCRIPTION="ASEDriveIIIe Serial 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="~x86"
-RDEPEND=">=sys-apps/pcsc-lite-1.3.0"
-DEPEND="dev-util/pkgconfig
- ${RDEPEND}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- rm ifdhandler.h
-}
-
-src_compile() {
- CFLAGS="${CFLAGS} -DIFDHANDLERv2" econf || die
- emake || die
-}
-
-src_install() {
- local conf="/etc/reader.conf.d/${PN}.conf"
-
- make install DESTDIR="${D}" || die
-
- dodoc README
-
- dodir "$(dirname "${conf}")"
- insinto "$(dirname "${conf}")"
- newins "etc/reader.conf" "$(basename "${conf}")"
-
- elog "NOTICE:"
- elog "1. update ${conf} file"
- elog "2. run update-reader.conf, yes this is a command..."
- elog "3. restart pcscd"
-}
-
-pkg_postrm() {
- #
- # Without this, pcscd will not start next time.
- #
- local conf="/etc/reader.conf.d/${PN}.conf"
- if ! [ -f "$(grep LIBPATH "${conf}" | sed 's/LIBPATH *//' | sed 's/ *$//g' | head -n 1)" ]; then
- rm "${conf}"
- update-reader.conf
- elog "NOTICE:"
- elog "You need to restart pcscd"
- fi
-}