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.5.ebuild
Date: Mon, 28 Apr 2008 11:04:35
Message-Id: E1JqR9s-0003i6-4i@stork.gentoo.org
1 tove 08/04/28 11:04:32
2
3 Modified: ChangeLog
4 Added: gnucash-2.2.5.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.1.5_rc6)
8
9 Revision Changes Path
10 1.161 app-office/gnucash/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.161&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnucash/ChangeLog?rev=1.161&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnucash/ChangeLog?r1=1.160&r2=1.161
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v
19 retrieving revision 1.160
20 retrieving revision 1.161
21 diff -u -r1.160 -r1.161
22 --- ChangeLog 18 Apr 2008 14:38:49 -0000 1.160
23 +++ ChangeLog 28 Apr 2008 11:04:31 -0000 1.161
24 @@ -1,6 +1,11 @@
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.160 2008/04/18 14:38:49 tove Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/ChangeLog,v 1.161 2008/04/28 11:04:31 tove Exp $
29 +
30 +*gnucash-2.2.5 (28 Apr 2008)
31 +
32 + 28 Apr 2008; Torsten Veller <tove@g.o> +gnucash-2.2.5.ebuild:
33 + Version bump. Set GNC_DOC_INSTALL_DIR as docdir doesn't work.
34
35 18 Apr 2008; Torsten Veller <tove@g.o> gnucash-2.2.3.ebuild,
36 gnucash-2.2.4.ebuild:
37
38
39
40 1.1 app-office/gnucash/gnucash-2.2.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnucash/gnucash-2.2.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/gnucash/gnucash-2.2.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: gnucash-2.2.5.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-office/gnucash/gnucash-2.2.5.ebuild,v 1.1 2008/04/28 11:04:31 tove Exp $
50
51 EAPI=1
52
53 inherit eutils gnome2
54
55 DOC_VER="2.2.0"
56
57 DESCRIPTION="A personal finance manager."
58 HOMEPAGE="http://www.gnucash.org/"
59 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
60
61 SLOT="0"
62 LICENSE="GPL-2"
63 KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
64
65 IUSE="+doc ofx hbci chipcard debug quotes"
66
67 # FIXME: rdepend on dev-libs/qof when upstream fix their mess (see configure.in)
68
69 RDEPEND=">=dev-libs/glib-2.6.3
70 >=dev-scheme/guile-1.8.3
71 >=dev-scheme/slib-3.1.4
72 >=sys-libs/zlib-1.1.4
73 >=dev-libs/popt-1.5
74 >=x11-libs/gtk+-2.10
75 >=gnome-base/libgnomeui-2.4
76 >=gnome-base/libglade-2.4
77 >=gnome-extra/gtkhtml-3.14
78 >=dev-libs/libxml2-2.5.10
79 >=gnome-base/gconf-2
80 >=x11-libs/goffice-0.6
81 ofx? ( >=dev-libs/libofx-0.7.0 )
82 hbci? ( net-libs/aqbanking
83 chipcard? ( sys-libs/libchipcard )
84 )
85 quotes? ( dev-perl/DateManip
86 >=dev-perl/Finance-Quote-1.11
87 dev-perl/HTML-TableExtract )
88 media-libs/libart_lgpl
89 x11-libs/pango"
90
91 DEPEND="${RDEPEND}
92 dev-util/pkgconfig
93 dev-util/intltool
94 sys-devel/libtool
95 >=app-text/scrollkeeper-0.3"
96
97 PDEPEND="doc? ( >=app-doc/gnucash-docs-${DOC_VER} )"
98 ELTCONF="--patch-only"
99 DOCS="doc/README.OFX doc/README.HBCI"
100
101 # FIXME: no the best thing to do but it'd be even better to fix autofoo
102 MAKEOPTS="${MAKEOPTS} -j1"
103
104 pkg_setup() {
105 local will_die=false
106 local flags="deprecated regex"
107 if ! built_with_use --missing true dev-scheme/guile ${flags} ; then
108 eerror "dev-scheme/guile must be built with \"${flags}\" use flags"
109 will_die=true
110 fi
111 if ! built_with_use gnome-extra/libgsf gnome ; then
112 eerror "gnome-extra/libgsf must be built with gnome use flag"
113 will_die=true
114 fi
115 if ! built_with_use x11-libs/goffice gnome ; then
116 eerror "x11-libs/goffice must be built with gnome use flag"
117 will_die=true
118 fi
119
120 if ${will_die} ; then
121 die "Please rebuild the packages with the use flags above."
122 fi
123
124 G2CONF="${G2CONF}
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 }
132
133 src_test() {
134 GUILE_WARN_DEPRECATED=no \
135 GNC_DOT_DIR="${T}"/.gnucash \
136 emake check \
137 || die "Make check failed. See above for details."
138 }
139
140 src_install() {
141 gnome2_src_install GNC_DOC_INSTALL_DIR=/usr/share/doc/${PF}
142
143 cd "${D}"/usr/share/doc/${PF} && \
144 rm -rf examples/ COPYING INSTALL *win32-bin.txt projects.html
145 prepalldocs
146 }
147
148
149
150 --
151 gentoo-commits@l.g.o mailing list