Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-libs/aqbanking: ChangeLog aqbanking-4.2.4.ebuild
Date: Sat, 06 Feb 2010 19:42:32
Message-Id: E1NdqY2-0006tX-UP@stork.gentoo.org
1 ssuominen 10/02/06 19:42:30
2
3 Modified: ChangeLog
4 Added: aqbanking-4.2.4.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.83 net-libs/aqbanking/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/aqbanking/ChangeLog?rev=1.83&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/aqbanking/ChangeLog?rev=1.83&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/aqbanking/ChangeLog?r1=1.82&r2=1.83
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-libs/aqbanking/ChangeLog,v
19 retrieving revision 1.82
20 retrieving revision 1.83
21 diff -u -r1.82 -r1.83
22 --- ChangeLog 17 Jan 2010 19:11:34 -0000 1.82
23 +++ ChangeLog 6 Feb 2010 19:42:30 -0000 1.83
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-libs/aqbanking
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-libs/aqbanking/ChangeLog,v 1.82 2010/01/17 19:11:34 armin76 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-libs/aqbanking/ChangeLog,v 1.83 2010/02/06 19:42:30 ssuominen Exp $
29 +
30 +*aqbanking-4.2.4 (06 Feb 2010)
31 +
32 + 06 Feb 2010; Samuli Suominen <ssuominen@g.o>
33 + +aqbanking-4.2.4.ebuild, +files/aqbanking-4.2.4-gcc_detection.patch:
34 + Version bump.
35
36 17 Jan 2010; Raúl Porcel <armin76@g.o> aqbanking-4.2.0.ebuild:
37 sparc stable wrt #299125
38
39
40
41 1.1 net-libs/aqbanking/aqbanking-4.2.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/aqbanking/aqbanking-4.2.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-libs/aqbanking/aqbanking-4.2.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: aqbanking-4.2.4.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-libs/aqbanking/aqbanking-4.2.4.ebuild,v 1.1 2010/02/06 19:42:30 ssuominen Exp $
51
52 EAPI=2
53 inherit autotools eutils
54
55 DESCRIPTION="Generic Online Banking Interface"
56 HOMEPAGE="http://www.aquamaniac.de/aqbanking/"
57 SRC_URI="http://www.aquamaniac.de/sites/download/download.php?package=03&release=50&file=01&dummy=${P}.tar.gz -> ${P}.tar.gz"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
62 IUSE="chipcard debug ofx qt4"
63
64 RDEPEND=">=sys-libs/gwenhywfar-3.11.3
65 >=app-misc/ktoblzcheck-1.24
66 ofx? ( >=dev-libs/libofx-0.9.1 )
67 chipcard? ( >=sys-libs/libchipcard-4.2.9 )
68 qt4? ( x11-libs/qt-gui:4[qt3support] )"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig"
71
72 # no-go
73 MAKEOPTS="${MAKEOPTS} -j1"
74 RESTRICT="test"
75
76 src_prepare() {
77 sed -i \
78 -e 's/$(ADD_ACLOCAL_FLAGS)//' \
79 Makefile.am || die
80
81 epatch "${FILESDIR}"/${P}-gcc_detection.patch
82 eautoreconf
83 }
84
85 src_configure() {
86 local frontends=""
87 use qt4 && frontends="${frontends} qbanking q4banking"
88
89 local backends="aqhbci aqnone"
90 use ofx && backends="${backends} aqofxconnect"
91
92 local myconf qt3_libs qt3_includes
93 if use qt4; then
94 qt3_libs="$(pkg-config QtCore QtGui Qt3Support --libs)"
95 qt3_includes="$(pkg-config QtCore QtGui Qt3Support --cflags-only-I)"
96 myconf="--enable-qt3=yes --enable-qt4=yes --with-qt4-moc=/usr/bin/moc --with-qt4-uic=/usr/bin/uic"
97 else
98 myconf="--enable-qt3=no --enable-qt4=no"
99 fi
100
101 econf \
102 QTDIR="/usr/$(get_libdir)/qt4" \
103 QT3TO4="/usr/bin/qt3to4" \
104 qt3_libs="${qt3_libs}" \
105 qt3_includes="${qt3_includes}" \
106 --disable-dependency-tracking \
107 $(use_enable debug) \
108 --with-frontends="${frontends}" \
109 --with-backends="${backends}" \
110 --with-docpath=/usr/share/doc/${PF}/apidoc \
111 ${myconf}
112 }
113
114 src_compile() {
115 if use qt4; then
116 emake qt4-port || die
117 fi
118
119 emake || die
120 }
121
122 src_install() {
123 emake DESTDIR="${D}" install || die
124 rm -rf "${D}"/usr/share/doc/${PN}
125 find "${D}" -name '*.la' -delete
126 dodoc AUTHORS ChangeLog NEWS README TODO
127 }