diff options
author | 2008-08-30 14:37:01 +0000 | |
---|---|---|
committer | 2008-08-30 14:37:01 +0000 | |
commit | ae36f1fb580614a4596dff0fd63d655610f6063e (patch) | |
tree | dcd43641428927b7da9b0fd04073438056fdd800 /dev-libs | |
parent | stable ppc, bug 235886 (diff) | |
download | gentoo-2-ae36f1fb580614a4596dff0fd63d655610f6063e.tar.gz gentoo-2-ae36f1fb580614a4596dff0fd63d655610f6063e.tar.bz2 gentoo-2-ae36f1fb580614a4596dff0fd63d655610f6063e.zip |
punting version 0.5.0 as it does work https://bugs.gentoo.org/show_bug.cgi?id=162205#c14 thanks Alon
(Portage version: 2.2_rc8/cvs/Linux 2.6.22-vs2.2.0.7-gentoo x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/openct/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/openct/openct-0.5.0.ebuild | 64 |
2 files changed, 5 insertions, 65 deletions
diff --git a/dev-libs/openct/ChangeLog b/dev-libs/openct/ChangeLog index a7a227718aab..e54716831d97 100644 --- a/dev-libs/openct/ChangeLog +++ b/dev-libs/openct/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/openct # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/openct/ChangeLog,v 1.56 2008/08/30 04:47:45 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/openct/ChangeLog,v 1.57 2008/08/30 14:37:01 dragonheart Exp $ + + 30 Aug 2008; Daniel Black <dragonheart@gentoo.org> -openct-0.5.0.ebuild: + punting version 0.5.0 as it does work + https://bugs.gentoo.org/show_bug.cgi?id=162205#c14 thanks Alon *openct-0.6.15 (30 Aug 2008) diff --git a/dev-libs/openct/openct-0.5.0.ebuild b/dev-libs/openct/openct-0.5.0.ebuild deleted file mode 100644 index 9d315fa3141d..000000000000 --- a/dev-libs/openct/openct-0.5.0.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/openct/openct-0.5.0.ebuild,v 1.16 2008/08/30 04:47:45 dragonheart Exp $ - -inherit eutils - -DESCRIPTION="library for accessing smart card terminals" -HOMEPAGE="http://opensc.org/" -SRC_URI="http://opensc.org/files/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k mips ppc ppc64 s390 sh sparc x86" -IUSE="usb" - -RDEPEND=" - usb? ( >=dev-libs/libusb-0.1.7 - >=sys-apps/hotplug-20030805-r1 )" -DEPEND="${RDEPEND} - >=sys-apps/sed-4.0.7" - -pkg_setup() { - enewgroup openct -} - -src_compile() { - econf --localstatedir=/var || die - emake || die -} - -src_install() { - make DESTDIR="${D}" install || die - - insinto /etc - doins etc/openct.conf || die - if use usb ; then - insinto /etc/hotplug/usb - doins etc/openct.usermap || die - exeinto /etc/hotplug/usb - newexe etc/hotplug.openct openct || die - fi - - newinitd "${FILESDIR}"/openct.rc openct || die - - diropts -m0750 -gopenct - dodir /var/run/openct - - dodoc ANNOUNCE AUTHORS NEWS README TODO - dohtml doc/openct.{html,css} -} - -pkg_postinst() { - elog "You need to edit /etc/openct.conf to enable serial readers." - elog - elog "To use hotplugging (USB readers) your kernel has to be compiled" - elog "with CONFIG_HOTPLUG enabled and sys-apps/hotplug must be emerged." - elog - elog "You should add \"openct\" to your default runlevel. To do so" - elog "type \"rc-update add openct default\"." - elog - elog "You need to be a member of the (newly created) group openct to" - elog "access smart card readers connected to this system. Set users'" - elog "groups with usermod -G. root always has access." -} |