blob: e24a6f27e5c84763c242fec56ce38bac604fa04c (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/gwenhywfar/gwenhywfar-3.11.3.ebuild,v 1.2 2010/01/08 19:20:52 ssuominen Exp $
EAPI=2
DESCRIPTION="A multi-platform helper library for other libraries"
HOMEPAGE="http://www.aquamaniac.de/aqbanking/"
SRC_URI="http://www.aquamaniac.de/sites/download/download.php?package=01&release=31&file=01&dummy=${P}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug doc"
RDEPEND="net-libs/gnutls"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
src_configure() {
econf \
--disable-dependency-tracking \
--enable-ssl \
--enable-visibility \
$(use_enable debug) \
$(use_enable doc full-doc) \
--with-docpath=/usr/share/doc/${PF}/apidoc
}
src_compile() {
emake || die
if use doc; then
emake srcdoc || die
fi
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog README TODO
if use doc; then
emake DESTDIR="${D}" install-srcdoc || die
fi
find "${D}" -name '*.la' -delete
}
|