Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 280127 | Differences between
and this patch

Collapse All | Expand All

(-)net-libs/aqbanking/aqbanking-4.0.0.ebuild.orig (-5 / +14 lines)
Lines 12-24 SRC_URI="http://www2.aquamaniac.de/sites Link Here
12
LICENSE="GPL-2"
12
LICENSE="GPL-2"
13
SLOT="0"
13
SLOT="0"
14
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc x86"
14
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc x86"
15
IUSE="chipcard debug kde ofx python qt3"
15
IUSE="chipcard debug kde ofx python qt3 qt4"
16
DEPEND=">=sys-libs/gwenhywfar-3.8.1
16
DEPEND=">=sys-libs/gwenhywfar-3.8.1
17
	>=app-misc/ktoblzcheck-1.14
17
	>=app-misc/ktoblzcheck-1.14
18
	ofx? ( >=dev-libs/libofx-0.8.3 )
18
	ofx? ( >=dev-libs/libofx-0.8.3 )
19
	chipcard? ( >=sys-libs/libchipcard-4.2.8 )
19
	chipcard? ( >=sys-libs/libchipcard-4.2.8 )
20
	qt3? ( =x11-libs/qt-3* )
20
	qt3? ( =x11-libs/qt-3* )
21
	kde? ( >=kde-base/kdelibs-3.1.0 )"
21
	kde? ( >=kde-base/kdelibs-3.1.0 )
22
	qt4? ( x11-libs/qt-core
23
		  x11-libs/qt-qt3support
24
		  x11-libs/qt-gui )"
22
RDEPEND="${DEPEND}"
25
RDEPEND="${DEPEND}"
23
26
24
MAKEOPTS="${MAKEOPTS} -j1"
27
MAKEOPTS="${MAKEOPTS} -j1"
Lines 32-50 src_configure() { Link Here
32
	KDEMAJORVER="3" set-kdedir
35
	KDEMAJORVER="3" set-kdedir
33
36
34
	local FRONTENDS="cbanking"
37
	local FRONTENDS="cbanking"
35
	(use qt3 || use kde) && FRONTENDS="${FRONTENDS} qbanking"
38
	(use qt4 || use qt3 || use kde) && FRONTENDS="${FRONTENDS} qbanking"
36
	use kde && FRONTENDS="${FRONTENDS} kbanking"
39
	use kde && FRONTENDS="${FRONTENDS} kbanking"
37
40
38
	local BACKENDS="aqhbci"
41
	local BACKENDS="aqhbci"
39
	use ofx && BACKENDS="${BACKENDS} aqofxconnect"
42
	use ofx && BACKENDS="${BACKENDS} aqofxconnect"
40
43
41
	econf PATH="/usr/qt/3/bin:${PATH}" \
44
	if use qt4; then
45
		QT4_LIBS="$(pkg-config QtCore QtGui Qt3Support --libs)" 
46
		QT4_INC="$(pkg-config QtCore QtGui Qt3Support --cflags)"
47
	fi
48
	econf PATH="/usr/qt/3/bin:${PATH}" qt3_libs="${QT4_LIBS}" qt3_includes="${QT4_INC}" \
42
		$(use_enable debug) \
49
		$(use_enable debug) \
43
		$(use_enable kde kde3) \
50
		$(use_enable kde kde3) \
44
		$(use_enable python) \
51
		$(use_enable python) \
45
		--with-frontends="${FRONTENDS}" \
52
		--with-frontends="${FRONTENDS}" \
46
		--with-backends="${BACKENDS}" \
53
		--with-backends="${BACKENDS}" \
47
		--with-docpath="/usr/share/doc/${PF}/apidoc"|| die "configure failed"
54
		--with-docpath="/usr/share/doc/${PF}/apidoc"|| die "configure failed" \
55
		
56
	make qt4-port		
48
}
57
}
49
58
50
src_install() {
59
src_install() {

Return to bug 280127