# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/openct/openct-0.6.14.ebuild,v 1.12 2009/05/16 09:19:58 robbat2 Exp $ inherit eutils DESCRIPTION="library for accessing smart card terminals" HOMEPAGE="http://www.opensc-project.org/openct/" SRC_URI="http://www.opensc-project.org/files/openct/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc x86" IUSE="usb" RDEPEND="usb? ( =virtual/libusb-0* || ( >=sys-fs/udev-096 >=sys-apps/hotplug-20040923 ) )" pkg_setup() { enewgroup openct } src_compile() { econf --localstatedir=/var || die emake || die } src_install() { emake DESTDIR="${D}" install || die if use usb ; then insinto /etc/hotplug/usb doins etc/openct.usermap || die exeinto /etc/hotplug/usb newexe etc/openct_usb openct || die fi insinto /etc/udev/rules.d/ newins etc/openct.udev 70-openct.rules || die exeinto /lib/udev doexe etc/openct_pcmcia || die doexe etc/openct_serial || die doexe etc/openct_usb || die insinto /etc doins etc/openct.conf || die newinitd "${FILESDIR}"/openct.rc openct diropts -m0750 -gopenct keepdir /var/run/openct dodoc NEWS TODO doc/README } pkg_postinst() { elog 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." 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." elog }