1 | # $Id$ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name aqbanking |
---|
5 | version 2.2.0 |
---|
6 | revision 0 |
---|
7 | categories devel net |
---|
8 | maintainers mas@seligma.com |
---|
9 | description a generic online banking interface supporting HBCI |
---|
10 | long_description aqbanking is a generic online banking interface mainly \ |
---|
11 | supporting Home Banking Computer Interface, a standard \ |
---|
12 | used for German checking accounts. |
---|
13 | homepage http://www.aqbanking.de/ |
---|
14 | master_sites sourceforge |
---|
15 | checksums md5 0908d3de2b7bfa256a626ce8ab7c5e80 |
---|
16 | depends_lib port:gwenhywfar |
---|
17 | depends_build bin:glibtoolize:libtool |
---|
18 | |
---|
19 | configure.env CPPFLAGS="-L${prefix}/lib -I${prefix}/include" \ |
---|
20 | CFLAGS="-L${prefix}/lib -I${prefix}/include" \ |
---|
21 | LDFLAGS=-L${prefix}/lib |
---|
22 | configure.args --disable-qt3 \ |
---|
23 | --disable-kde3 \ |
---|
24 | --disable-dependency-tracking \ |
---|
25 | --with-frontends="cbanking" \ |
---|
26 | --with-backends="aqhbci aqdtaus" \ |
---|
27 | --disable-chipcard-client \ |
---|
28 | --disable-chipcard-client-test |
---|
29 | |
---|
30 | variant validate { |
---|
31 | depends_lib-append lib:ktoblzcheck:ktoblzcheck |
---|
32 | } |
---|
33 | |
---|
34 | variant ofx conflicts geldkarte { |
---|
35 | depends_lib-append lib:libofx:libofx |
---|
36 | configure.args-append --with-backends="aqhbci aqdtaus aqofxconnect" |
---|
37 | } |
---|
38 | |
---|
39 | variant geldkarte conflicts ofx { |
---|
40 | depends_lib-append lib:libchipcard:libchipcard |
---|
41 | configure.args-append --with-backends="aqhbci aqdtaus aqgeldkarte" \ |
---|
42 | --enable-chipcard-client \ |
---|
43 | --enable-chipcard-client-test |
---|
44 | } |
---|
45 | |
---|
46 | variant python { |
---|
47 | depends_build-append lib:ctypes:py-ctypes |
---|
48 | } |
---|