diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2007-02-15 19:33:02 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2007-02-15 19:33:02 +0000 |
commit | 779d421b8542375da9ea4c223cc239c9ae99f5d6 (patch) | |
tree | 5a004ae075448c5ddd28dc8f8931fb24618202ab /app-crypt/asekey | |
parent | Oops, it's use amd64 not amd64 (diff) | |
download | historical-779d421b8542375da9ea4c223cc239c9ae99f5d6.tar.gz historical-779d421b8542375da9ea4c223cc239c9ae99f5d6.tar.bz2 historical-779d421b8542375da9ea4c223cc239c9ae99f5d6.zip |
Fix postrm for multi libraries
Package-Manager: portage-2.1.2-r9
Diffstat (limited to 'app-crypt/asekey')
-rw-r--r-- | app-crypt/asekey/ChangeLog | 5 | ||||
-rw-r--r-- | app-crypt/asekey/asekey-3.3.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-crypt/asekey/ChangeLog b/app-crypt/asekey/ChangeLog index f3db8080a8f7..9aaaaf6598c0 100644 --- a/app-crypt/asekey/ChangeLog +++ b/app-crypt/asekey/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/asekey # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/asekey/ChangeLog,v 1.3 2007/02/14 20:55:46 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/asekey/ChangeLog,v 1.4 2007/02/15 19:31:29 alonbl Exp $ + + 15 Feb 2007; Alon Bar-Lev <alonbl@gentoo.org> asekey-3.3.ebuild: + Fix postrm for multi libraries 14 Feb 2007; Alon Bar-Lev <alonbl@gentoo.org> asekey-3.3.ebuild: Fixup for pcsc-lite-1.4 diff --git a/app-crypt/asekey/asekey-3.3.ebuild b/app-crypt/asekey/asekey-3.3.ebuild index 8ba2014a7d39..d1671b01f5e9 100644 --- a/app-crypt/asekey/asekey-3.3.ebuild +++ b/app-crypt/asekey/asekey-3.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/asekey/asekey-3.3.ebuild,v 1.3 2007/02/14 20:55:46 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/asekey/asekey-3.3.ebuild,v 1.4 2007/02/15 19:31:29 alonbl Exp $ DESCRIPTION="ASEKey USB SIM Card Reader" HOMEPAGE="http://www.athena-scs.com" @@ -46,7 +46,7 @@ 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')" ]; then + if ! [ -f "$(grep LIBPATH "${conf}" | sed 's/LIBPATH *//' | sed 's/ *$//g' | head -n 1)" ]; then rm "${conf}" update-reader.conf elog "NOTICE:" |