Gentoo Archives: gentoo-commits

From: "Remi Cardona (remi)" <remi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/grisbi: ChangeLog grisbi-0.8.0.ebuild
Date: Mon, 21 Feb 2011 20:19:44
Message-Id: 20110221201934.CAD8A20054@flycatcher.gentoo.org
1 remi 11/02/21 20:19:34
2
3 Modified: ChangeLog
4 Added: grisbi-0.8.0.ebuild
5 Log:
6 app-office/grisbi: Bump to 0.8.0, clean up ebuild
7
8 (Portage version: 2.2.0_alpha23/cvs/Linux i686)
9
10 Revision Changes Path
11 1.42 app-office/grisbi/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/grisbi/ChangeLog?rev=1.42&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/grisbi/ChangeLog?rev=1.42&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/grisbi/ChangeLog?r1=1.41&r2=1.42
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-office/grisbi/ChangeLog,v
20 retrieving revision 1.41
21 retrieving revision 1.42
22 diff -u -r1.41 -r1.42
23 --- ChangeLog 25 May 2010 20:38:47 -0000 1.41
24 +++ ChangeLog 21 Feb 2011 20:19:34 -0000 1.42
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-office/grisbi
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-office/grisbi/ChangeLog,v 1.41 2010/05/25 20:38:47 remi Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-office/grisbi/ChangeLog,v 1.42 2011/02/21 20:19:34 remi Exp $
31 +
32 +*grisbi-0.8.0 (21 Feb 2011)
33 +
34 + 21 Feb 2011; Rémi Cardona <remi@g.o> +grisbi-0.8.0.ebuild:
35 + Bump to 0.8.0, clean up ebuild
36
37 25 May 2010; Rémi Cardona <remi@g.o> grisbi-0.6.0.ebuild:
38 simplify bash syntax
39
40
41
42 1.1 app-office/grisbi/grisbi-0.8.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/grisbi/grisbi-0.8.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/grisbi/grisbi-0.8.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: grisbi-0.8.0.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-office/grisbi/grisbi-0.8.0.ebuild,v 1.1 2011/02/21 20:19:34 remi Exp $
52
53 EAPI="2"
54
55 inherit eutils gnome2
56
57 IUSE="nls ofx ssl"
58
59 DESCRIPTION="Grisbi is a personal accounting application for Linux"
60 HOMEPAGE="http://www.grisbi.org"
61 SRC_URI="mirror://sourceforge/grisbi/grisbi%20stable/0.8.x/${P}.tar.bz2"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
66
67 RDEPEND="dev-libs/libxml2
68 >=dev-libs/glib-2.18.0
69 >=x11-libs/gtk+-2.12.0
70 ssl? ( >=dev-libs/openssl-0.9.5 )
71 ofx? ( >=dev-libs/libofx-0.7.0 )"
72
73 DEPEND="${RDEPEND}
74 >=dev-util/pkgconfig-0.20"
75
76 pkg_setup() {
77 G2CONF="
78 --with-plugins
79 --with-libxml2
80 $(use_with ssl openssl)
81 $(use_with ofx)
82 $(use_enable nls)"
83 DOCS="AUTHORS NEWS README"
84 }
85
86 pkg_postinst() {
87 gnome2_pkg_postinst
88 elog "The first thing you should do is set up the browser command in"
89 elog "preferences after you start up grisbi. Otherwise you will not"
90 elog "be able to see the help and manuals."
91 }