Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/gnucash: ChangeLog gnucash-2.2.4.ebuild
Date: Mon, 03 Mar 2008 09:20:05
Message-Id: E1JW6q1-00036l-An@stork.gentoo.org
1 tove 08/03/03 09:20:01
2
3 Modified: ChangeLog
4 Added: gnucash-2.2.4.ebuild
5 Log:
6 Version bump. Add +doc to make it possible to remove the dependency on yelp (bug #171080).
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.155 app-office/gnucash/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.155&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.155&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnucash/ChangeLog?r1=1.154&r2=1.155
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v
19 retrieving revision 1.154
20 retrieving revision 1.155
21 diff -u -r1.154 -r1.155
22 --- ChangeLog 20 Feb 2008 12:26:52 -0000 1.154
23 +++ ChangeLog 3 Mar 2008 09:20:00 -0000 1.155
24 @@ -1,6 +1,12 @@
25 # ChangeLog for app-office/gnucash
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.154 2008/02/20 12:26:52 tove Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.155 2008/03/03 09:20:00 tove Exp $
29 +
30 +*gnucash-2.2.4 (03 Mar 2008)
31 +
32 + 03 Mar 2008; Torsten Veller <tove@g.o> +gnucash-2.2.4.ebuild:
33 + Version bump. Add +doc to make it possible to remove the dependency on yelp
34 + (bug #171080).
35
36 20 Feb 2008; Torsten Veller <tove@g.o> -gnucash-2.0.5.ebuild,
37 -gnucash-2.2.2-r1.ebuild, gnucash-2.2.3.ebuild:
38
39
40
41 1.1 app-office/gnucash/gnucash-2.2.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnucash/gnucash-2.2.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnucash/gnucash-2.2.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gnucash-2.2.4.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.2.4.ebuild,v 1.1 2008/03/03 09:20:00 tove Exp $
51
52 EAPI=1
53
54 inherit eutils gnome2
55
56 DOC_VER="2.2.0"
57
58 DESCRIPTION="A personal finance manager."
59 HOMEPAGE="http://www.gnucash.org/"
60 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
61
62 SLOT="0"
63 LICENSE="GPL-2"
64 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
65
66 IUSE="+doc ofx hbci chipcard debug quotes"
67
68 RDEPEND=">=dev-libs/glib-2.6.3
69 >=dev-scheme/guile-1.8.3
70 >=dev-scheme/slib-3.1.4
71 >=sys-libs/zlib-1.1.4
72 >=dev-libs/popt-1.5
73 >=x11-libs/gtk+-2.10
74 >=gnome-base/libgnomeui-2.4
75 >=gnome-base/libgnomeprint-2.10
76 >=gnome-base/libgnomeprintui-2.10
77 >=gnome-base/libglade-2.4
78 >=gnome-extra/gtkhtml-3.14
79 >=dev-libs/libxml2-2.5.10
80 >=gnome-base/gconf-2
81 >=app-text/scrollkeeper-0.3
82 >=x11-libs/goffice-0.6
83 ofx? ( >=dev-libs/libofx-0.7.0 )
84 hbci? ( net-libs/aqbanking
85 chipcard? ( sys-libs/libchipcard )
86 )
87 quotes? ( dev-perl/DateManip
88 >=dev-perl/Finance-Quote-1.11
89 dev-perl/HTML-TableExtract )
90 dev-util/intltool
91 media-libs/libart_lgpl
92 x11-libs/pango"
93
94 DEPEND="${RDEPEND}
95 dev-util/pkgconfig
96 sys-devel/libtool"
97
98 PDEPEND="doc? ( >=app-doc/gnucash-docs-${DOC_VER} )"
99 ELTCONF="--patch-only"
100 DOC="AUTHORS ChangeLog* DOCUMENTERS HACKING NEWS TODO README* doc/README*"
101
102 pkg_setup() {
103 local will_die=false
104 local flags="deprecated regex"
105 if ! built_with_use --missing true dev-scheme/guile ${flags} ; then
106 eerror "dev-scheme/guile must be built with \"${flags}\" use flags"
107 will_die=true
108 fi
109 if ! built_with_use gnome-extra/libgsf gnome ; then
110 eerror "gnome-extra/libgsf must be built with gnome use flag"
111 will_die=true
112 fi
113 if ! built_with_use x11-libs/goffice gnome ; then
114 eerror "x11-libs/goffice must be built with gnome use flag"
115 will_die=true
116 fi
117
118 if ${will_die} ; then
119 die "Please rebuild the packages with the use flags above."
120 fi
121 }
122
123 src_compile() {
124 econf \
125 $(use_enable debug) \
126 $(use_enable ofx) \
127 $(use_enable hbci) \
128 --disable-doxygen \
129 --enable-locale-specific-tax \
130 --disable-error-on-warning \
131 || die "econf failed"
132 emake -j1 || die "emake failed"
133 }
134
135 src_test() {
136 GUILE_WARN_DEPRECATED=no \
137 emake -j1 check \
138 || die "Make check failed. See above for details."
139 }
140
141
142
143 --
144 gentoo-commits@l.g.o mailing list