blob: cb9f5a1708d100e9e30751e9f7797cbc67893f34 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Library for accessing chip cards via chip card readers (terminals)"
HOMEPAGE="https://www.aquamaniac.de/aqbanking/"
SRC_URI="https://www.aquamaniac.de/sites/download/download.php?package=02&release=200&file=01&dummy=${P}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc x86"
IUSE="doc examples"
RDEPEND="
>=sys-apps/pcsc-lite-1.6.2
sys-libs/gwenhywfar:=
sys-libs/zlib:=
virtual/libintl"
DEPEND="${RDEPEND}
sys-devel/gettext
doc? ( app-doc/doxygen )"
DOCS=( AUTHORS ChangeLog NEWS README TODO doc/{CERTIFICATES,CONFIG,IPCCOMMANDS} )
src_configure() {
econf \
--disable-dependency-tracking \
--disable-static \
$(use_enable doc full-doc) \
--with-docpath=/usr/share/doc/${PF}/apidoc
}
src_install() {
emake DESTDIR="${D}" install
einstalldocs
if use examples; then
docinto tutorials
dodoc tutorials/*.{c,h,xml} tutorials/README
fi
find "${D}" -name '*.la' -exec rm -f {} +
}
|