|
Lines 6-29
Link Here
|
| 6 |
|
6 |
|
| 7 |
DESCRIPTION="A multi-platform helper library for other libraries" |
7 |
DESCRIPTION="A multi-platform helper library for other libraries" |
| 8 |
HOMEPAGE="http://www.aquamaniac.de/aqbanking/" |
8 |
HOMEPAGE="http://www.aquamaniac.de/aqbanking/" |
| 9 |
SRC_URI="http://www.aquamaniac.de/sites/download/download.php?package=01&release=31&file=01&dummy=${P}.tar.gz -> ${P}.tar.gz" |
9 |
SRC_URI="http://www.aquamaniac.de/sites/download/download.php?package=01&release=54&file=01&dummy=${P}.tar.gz -> ${P}.tar.gz" |
| 10 |
|
10 |
|
| 11 |
LICENSE="LGPL-2.1" |
11 |
LICENSE="LGPL-2.1" |
| 12 |
SLOT="0" |
12 |
SLOT="0" |
| 13 |
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" |
13 |
KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86" |
| 14 |
IUSE="debug doc" |
14 |
IUSE="debug doc gtk ssl qt4" |
| 15 |
|
15 |
|
| 16 |
RDEPEND="net-libs/gnutls" |
16 |
RDEPEND="net-libs/gnutls" |
| 17 |
DEPEND="${RDEPEND} |
17 |
DEPEND="${RDEPEND} |
| 18 |
doc? ( app-doc/doxygen )" |
18 |
doc? ( app-doc/doxygen ) |
|
|
19 |
gtk? ( x11-libs/gtk+ ) |
| 20 |
qt4? ( x11-libs/qt-gui:4 )" |
| 19 |
|
21 |
|
| 20 |
src_configure() { |
22 |
src_configure() { |
| 21 |
econf \ |
23 |
econf \ |
| 22 |
--disable-dependency-tracking \ |
24 |
--disable-dependency-tracking \ |
| 23 |
--enable-ssl \ |
25 |
$(use_enable ssl) \ |
| 24 |
--enable-visibility \ |
26 |
--enable-visibility \ |
| 25 |
$(use_enable debug) \ |
27 |
$(use_enable debug) \ |
| 26 |
$(use_enable doc full-doc) \ |
28 |
$(use_enable doc full-doc) \ |
|
|
29 |
$(use_enable qt4) \ |
| 30 |
$(use_enable gtk) \ |
| 27 |
--with-docpath=/usr/share/doc/${PF}/apidoc |
31 |
--with-docpath=/usr/share/doc/${PF}/apidoc |
| 28 |
} |
32 |
} |
| 29 |
|
33 |
|