blob: 94cba9e09bce4e7acfd1e8979cd9c9e397686d23 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/cyberjack/cyberjack-3.0.4.ebuild,v 1.2 2008/05/18 16:06:43 drac Exp $
inherit eutils flag-o-matic autotools
MY_P="ctapi-${P/_/}"
DESCRIPTION="REINER SCT cyberJack pinpad/e-com USB user space driver library"
HOMEPAGE="http://www.reiner-sct.de/ http://sourceforge.net/projects/libchipcard/"
SRC_URI="mirror://sourceforge/libchipcard/${MY_P}.tar.gz"
LICENSE="GPL-2 LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="noudev pcsc-lite"
RDEPEND="dev-libs/libusb
pcsc-lite? ( sys-apps/pcsc-lite )"
DEPEND="${RDEPEND}
pcsc-lite? ( dev-util/pkgconfig )"
S=${WORKDIR}/${MY_P}
pkg_setup() {
useq noudev || enewgroup "${PN}"
}
src_unpack() {
unpack ${A} || die "Unpacking failed."
cd "${S}" || die "Failed to change to source directory."
useq noudev || {
epatch "${FILESDIR}/${P}-udev.patch" || die "Applying udev patch failed."
cp ${FILESDIR}/cyberjack.sh etc/udev/ || die "Copying udev script failed."
cp ${FILESDIR}/cyberjack.rules etc/udev/rules.new || die "Copying udev rules failed."
}
AT_M4DIR="m4" eautoreconf || die "Adopting configurations failed."
}
src_compile() {
append-flags -fno-strict-aliasing
local with_usbdropdir=''
useq pcsc-lite && with_usbdropdir="--with-usbdropdir=$(pkg-config libpcsclite --variable=usbdropdir)"
./configure \
--prefix=/usr \
--docdir=/usr/share/doc/"${P}" \
--sysconfdir=/etc/"${PN}" \
$(use_enable pcsc-lite pcsc) \
${with_usbdropdir} \
$(use_enable !noudev udev) \
|| die "Configuration of package failed."
emake || die "Compilation of package failed."
}
src_install() {
emake install DESTDIR="${D}" || die "Installation of package failed."
dodoc ChangeLog NEWS doc/README.txt
}
pkg_postinst() {
local conf="/etc/${PN}/${PN}.conf"
elog
elog "To configure logging, key beep behaviour etc. you need to"
elog "copy ${conf}.default"
elog "to ${conf}"
elog "and modify the latter as needed."
elog
useq noudev || {
elog "Please run the following command as root to"
elog "make udevd read the cyberJack rules that were"
elog "just installed onto your system:"
elog
elog " udevcontrol reload_rules"
elog
elog "To be able to use the cyberJack device, you need to"
elog "be a member of the group 'cyberjack' which has just"
elog "been added to your system. You can add your user to"
elog "the group by running the following command as root:"
elog
elog " gpasswd -a youruser cyberjack"
elog
elog "Please be aware that you need to re-login to your"
elog "system for the group membership to take effect."
elog
}
}
|