blob: a1f688d14561df314011a8ae9b812e0eac0ae58b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney2/kmymoney2-0.7.1-r1.ebuild,v 1.2 2005/06/21 08:46:15 greg_g Exp $
inherit kde eutils
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="~x86 ~ppc ~amd64 ~sparc"
IUSE="crypt ofx"
DEPEND="dev-libs/libxml2
ofx? ( >=dev-libs/libofx-0.7 )"
RDEPEND="${DEPEND}
crypt? ( app-crypt/gnupg )"
need-kde 3.2
# TODO: support maketest
# (needs cppunit in DEPEND)
src_unpack() {
kde_src_unpack
# See bug 1210755 on sourceforge.net. Fixed in next version.
epatch "${FILESDIR}/${P}-csv-export.patch"
}
src_compile() {
local myconf="$(use_enable ofx ofxplugin)
--disable-kbanking
--disable-cppunit"
kde_src_compile
}
|