blob: 304bcd32253336d3ac6fd22ae29a406de8f62b51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/openct/openct-0.6.2.ebuild,v 1.2 2005/01/23 10:59:56 corsair Exp $
inherit eutils
MY_P=${P/_/-}
DESCRIPTION="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="-*" #~amd64 ~ppc ~x86 ~ppc64
IUSE="usb"
RDEPEND="virtual/libc
usb? ( >=dev-libs/libusb-0.1.7
>=sys-apps/hotplug-20030805-r1 )"
S=${WORKDIR}/${MY_P}
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
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."
}
|