Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/kmymoney: ChangeLog kmymoney-4.5-r1.ebuild
Date: Thu, 04 Nov 2010 11:52:57
Message-Id: 20101104115253.89BF120051@flycatcher.gentoo.org
1 ssuominen 10/11/04 11:52:53
2
3 Modified: ChangeLog
4 Added: kmymoney-4.5-r1.ebuild
5 Log:
6 Initial patch to support AqBanking 5.x.
7
8 (Portage version: 2.2.0_alpha3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.13 app-office/kmymoney/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/kmymoney/ChangeLog?rev=1.13&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/kmymoney/ChangeLog?rev=1.13&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/kmymoney/ChangeLog?r1=1.12&r2=1.13
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v
20 retrieving revision 1.12
21 retrieving revision 1.13
22 diff -u -r1.12 -r1.13
23 --- ChangeLog 17 Oct 2010 02:21:11 -0000 1.12
24 +++ ChangeLog 4 Nov 2010 11:52:53 -0000 1.13
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-office/kmymoney
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v 1.12 2010/10/17 02:21:11 jmbsvicetto Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/ChangeLog,v 1.13 2010/11/04 11:52:53 ssuominen Exp $
30 +
31 +*kmymoney-4.5-r1 (04 Nov 2010)
32 +
33 + 04 Nov 2010; Samuli Suominen <ssuominen@g.o>
34 + +kmymoney-4.5-r1.ebuild:
35 + Initial patch to support AqBanking 5.x.
36
37 17 Oct 2010; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
38 kmymoney-4.5.ebuild:
39
40
41
42 1.1 app-office/kmymoney/kmymoney-4.5-r1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/kmymoney/kmymoney-4.5-r1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/kmymoney/kmymoney-4.5-r1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: kmymoney-4.5-r1.ebuild
48 ===================================================================
49 # Copyright 1999-2010 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-office/kmymoney/kmymoney-4.5-r1.ebuild,v 1.1 2010/11/04 11:52:53 ssuominen Exp $
52
53 EAPI=3
54
55 KMNAME="extragear/office"
56
57 if [[ ${PV} != *9999* ]]; then
58 KDE_LINGUAS="bg ca ca@valencia cs da de el en_GB eo es et fi fr ga gl hu it lt
59 ms nds nl pl pt pt_BR ro ru sk sv tr uk zh_CN zh_TW"
60 KDE_DOC_DIRS="doc doc-translations/%lingua_${PN}"
61 KDE_HANDBOOK="optional"
62 SRC_URI="mirror://sourceforge/kmymoney2/${P}.tar.bz2
63 http://dev.gentoo.org/~ssuominen/${P}-aqbanking-5_x.patch.bz2"
64 fi
65
66 inherit virtualx kde4-base
67
68 DESCRIPTION="A personal finance manager for KDE"
69 HOMEPAGE="http://kmymoney2.sourceforge.net/"
70
71 LICENSE="GPL-2"
72 KEYWORDS="~amd64 ~x86"
73 SLOT="4"
74 IUSE="debug calendar doc hbci ofx quotes test"
75
76 COMMON_DEPEND="
77 app-crypt/gpgme
78 >=dev-libs/boost-1.33.1
79 dev-libs/libgpg-error
80 dev-libs/libxml2
81 $(add_kdebase_dep kdepimlibs)
82 calendar? ( dev-libs/libical )
83 hbci? (
84 >=net-libs/aqbanking-5.0.1
85 >=sys-libs/gwenhywfar-4.0.1[qt4]
86 )
87 ofx? ( >=dev-libs/libofx-0.9.1 )
88 "
89 RDEPEND="${COMMON_DEPEND}
90 quotes? ( >=dev-perl/Finance-Quote-1.17 )
91 "
92 DEPEND="${COMMON_DEPEND}
93 doc? ( app-doc/doxygen )
94 test? ( >=dev-util/cppunit-1.12.1 )
95 "
96
97 PATCHES=( "${WORKDIR}"/${P}-aqbanking-5_x.patch )
98
99 src_configure() {
100 mycmakeargs=(
101 -DUSE_QT_DESIGNER=OFF
102 $(cmake-utils_use_enable calendar LIBICAL)
103 $(cmake-utils_use_use doc DEVELOPER_DOC)
104 $(cmake-utils_use_enable hbci KBANKING)
105 $(cmake-utils_use_enable ofx LIBOFX)
106 $(cmake-utils_use test KDE4_BUILD_TESTS)
107 )
108 kde4-base_src_configure
109 }
110
111 src_compile() {
112 kde4-base_src_compile
113 use doc && kde4-base_src_compile apidoc
114 }
115
116 src_install() {
117 use doc && HTML_DOCS=("${CMAKE_BUILD_DIR}/apidocs/html/")
118 kde4-base_src_install
119 }
120
121 src_test() {
122 export maketype="kde4-base_src_test"
123 virtualmake
124 }