blob: 9d2056beba2af246bb3d36566b7ee63e19a52c07 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcsc-lite/pcsc-lite-1.1.1.ebuild,v 1.7 2004/03/22 08:33:20 dragonheart Exp $
inherit eutils
DESCRIPTION="PC/SC Architecture smartcard middleware library"
HOMEPAGE="http://www.linuxnet.com/middle.html"
SRC_URI="http://www.linuxnet.com/middleware/files/${P}.tar.gz"
LICENSE="as-is"
KEYWORDS="x86 amd64"
SLOT="0"
DEPEND="sys-devel/make
sys-devel/libtool"
src_unpack () {
unpack ${A}
cd ${WORKDIR}
epatch ${FILESDIR}/${P}-gentoo.patch
}
src_compile() {
./configure \
--enable-confdir=/etc \
--prefix=/usr || die "./configure failed"
emake || die
}
src_install() {
emake prefix=${D}/usr install || die
dodoc AUTHORS COPYING ChangeLog DRIVERS HELP INSTALL NEWS README SECURITY
insinto /usr/share/doc/${P}
doins doc/*.pdf doc/README.DAEMON
exeinto /etc/init.d
newexe ${FILESDIR}/pcscd-init pcscd
insinto /usr/share/pcsc-lite/utils
insopts -m755
doins src/utils/bundleTool src/utils/formaticc src/utils/installifd
insopts -m644
doins src/utils/README src/utils/sample.*
insinto /etc
doins etc/reader.conf
}
|