blob: c99cc4a27c2bd17d1eee7a53b78c509db2b9e4b1 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcsc-lite/pcsc-lite-1.3.0.ebuild,v 1.2 2006/03/05 22:22:51 vapier Exp $
STUPID_NUM=1472
MY_P="${PN}-${PV/_/-}"
DESCRIPTION="PC/SC Architecture smartcard middleware library"
HOMEPAGE="http://www.linuxnet.com/middle.html"
SRC_URI="http://alioth.debian.org/download.php/${STUPID_NUM}/${MY_P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~x86"
IUSE="static debug"
RDEPEND="!static? ( dev-libs/libusb )"
DEPEND="dev-libs/libusb
dev-util/pkgconfig"
S=${WORKDIR}/${MY_P}
src_compile() {
econf \
--enable-extendedapdu \
--enable-usbdropdir=/usr/lib/readers/usb \
--enable-muscledropdir=/usr/share/pcsc/services \
$(use_enable debug) \
$(use_enable static) \
|| die "configure failed"
emake || die
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog DRIVERS HELP INSTALL NEWS README SECURITY
dodoc doc/*.pdf doc/README.DAEMON
docinto sample
dodoc src/utils/README src/utils/sample.*
rm -r "${D}"/usr/doc
newinitd "${FILESDIR}"/pcscd-init pcscd
newconfd "${FILESDIR}"/pcscd-confd pcscd
}
pkg_postinst() {
ewarn "You should run 'revdep-rebuild --soname libpcsclite.so.0'"
}
|