diff options
author | 2004-08-31 22:08:23 +0000 | |
---|---|---|
committer | 2004-08-31 22:08:23 +0000 | |
commit | ee128063c7bcfc44cc4e7c25e9adad1684500a8d (patch) | |
tree | d668e7256a4bf85038e9f95219e9d2a4924bb9dc /dev-libs/openct/openct-0.6.1.ebuild | |
parent | Stable on sparc (Manifest recommit) (diff) | |
download | gentoo-2-ee128063c7bcfc44cc4e7c25e9adad1684500a8d.tar.gz gentoo-2-ee128063c7bcfc44cc4e7c25e9adad1684500a8d.tar.bz2 gentoo-2-ee128063c7bcfc44cc4e7c25e9adad1684500a8d.zip |
ver bump
Diffstat (limited to 'dev-libs/openct/openct-0.6.1.ebuild')
-rw-r--r-- | dev-libs/openct/openct-0.6.1.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/dev-libs/openct/openct-0.6.1.ebuild b/dev-libs/openct/openct-0.6.1.ebuild new file mode 100644 index 000000000000..1c37d014f145 --- /dev/null +++ b/dev-libs/openct/openct-0.6.1.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/openct/openct-0.6.1.ebuild,v 1.1 2004/08/31 22:08:23 vapier Exp $ + +inherit eutils + +MY_P=${P/_/-} +DESCRIPTION="OpenCT is a library for accessing smart card terminals." +HOMEPAGE="http://opensc.org/" +SRC_URI="http://opensc.org/files/${MY_P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="-*" #~x86 ~ppc +IUSE="usb" + +RDEPEND="virtual/libc + usb? ( >=dev-libs/libusb-0.1.7 + >=sys-apps/hotplug-20030805-r1 )" + +S=${WORKDIR}/${MY_P} + +src_compile() { + econf --localstatedir=/var || die + emake || die +} + +pkg_preinst() { + enewgroup openct +} + +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 + + exeinto /etc/init.d + newexe ${FILESDIR}/openct.rc openct || die + + diropts -m0750 -gopenct + keepdir /var/run/openct + + dodoc ANNOUNCE AUTHORS NEWS README TODO + dohtml doc/openct.{html,css} +} + +pkg_postinst() { + einfo "You need to edit /etc/openct.conf to enable serial readers." + einfo + einfo "To use hotplugging (USB readers) your kernel has to be compiled" + einfo "with CONFIG_HOTPLUG enabled and sys-apps/hotplug must be emerged." + einfo + einfo "You should add \"openct\" to your default runlevel. To do so" + einfo "type \"rc-update add openct default\"." + einfo + einfo "You need to be a member of the (newly created) group openct to" + einfo "access smart card readers connected to this system. Set users'" + einfo "groups with usermod -G. root always has access." +} |