Gentoo Archives: gentoo-commits

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