blob: 0e3d69e89c1d6b812124af271a8ef2e3f7169859 (
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/openct/openct-0.6.11-r1.ebuild,v 1.6 2007/04/06 20:28:48 dertobi123 Exp $
inherit flag-o-matic eutils multilib
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? ( >=dev-libs/libusb-0.1.7
|| ( >=sys-fs/udev-096 >=sys-apps/hotplug-20040923 ) )"
pkg_setup() {
enewgroup openct
}
src_unpack() {
unpack "${A}"
cd "${S}"
epatch "${FILESDIR}/${PN}-0.6.11-ifdhandlerv2.patch"
rm "src/pcsc/ifdhandler.h"
}
src_compile() {
# eautoreconf did not went so great...
# adding additions here.
append-flags "-DIFDHANDLERv2"
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
sed -i 's|RUN+="/lib/udev/|RUN+="/etc/udev/scripts/|' etc/openct.udev
insinto /etc/udev/rules.d/
newins etc/openct.udev 70-openct.rules || die
exeinto /etc/udev/scripts/
newexe etc/openct_pcmcia openct_pcmcia || die
newexe etc/openct_serial openct_serial || die
newexe etc/openct_usb 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_preinst() {
preserve_old_lib "${ROOT}usr/$(get_libdir)/libopenct.so.0"
}
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
preserve_old_lib_notify "${ROOT}usr/$(get_libdir)/libopenct.so.0"
}
|