blob: 9f3397e8f588251debba53d8a87c492d80f0db03 (
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
48
49
50
51
52
53
54
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney2/kmymoney2-0.8.9.ebuild,v 1.1 2008/09/17 22:58:15 deathwing00 Exp $
inherit kde
DESCRIPTION="Personal Finances Manager for KDE."
HOMEPAGE="http://kmymoney2.sourceforge.net"
SRC_URI="mirror://sourceforge/kmymoney2/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="crypt ofx hbci"
DEPEND="dev-libs/libxml2
hbci? ( >=net-libs/aqbanking-1.8.0_beta )
ofx? ( >=dev-libs/libofx-0.7 )"
RDEPEND="${DEPEND}
crypt? ( app-crypt/gnupg )"
#DEPEND="${DEPEND}
# dev-util/cppunit"
need-kde 3.5
# TODO: support maketest
# (needs cppunit in DEPEND)
pkg_setup() {
if use hbci && ! built_with_use net-libs/aqbanking kde; then
eerror "The HBCI plugin is shipped by net-libs/aqbanking,"
eerror "which has to be built with KDE support."
die "rebuild net-libs/aqbanking with USE=kde"
fi
}
src_compile() {
local myconf="$(use_enable ofx ofxplugin)
$(use_enable hbci kbanking)
--disable-cppunit"
# bug 132665
replace-flags "-Os" "-O2"
kde_src_compile
}
src_install() {
kde_src_install
# bug 139082
rm "${D}"/usr/bin/kmymoney
}
|