Gentoo Archives: gentoo-commits

From: "Denis Dupeyron (calchan)" <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-office/homebank: homebank-4.2.1.ebuild ChangeLog
Date: Wed, 17 Feb 2010 23:12:21
Message-Id: E1Nhsfm-0002S0-0n@stork.gentoo.org
1 calchan 10/02/17 22:47:10
2
3 Modified: ChangeLog
4 Added: homebank-4.2.1.ebuild
5 Log:
6 Bugfix bump, thanks to Fabio Correa (bug #304515).
7 (Portage version: 2.1.7.17/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.16 app-office/homebank/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/homebank/ChangeLog?rev=1.16&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/homebank/ChangeLog?rev=1.16&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/homebank/ChangeLog?r1=1.15&r2=1.16
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-office/homebank/ChangeLog,v
19 retrieving revision 1.15
20 retrieving revision 1.16
21 diff -u -r1.15 -r1.16
22 --- ChangeLog 11 Feb 2010 14:55:43 -0000 1.15
23 +++ ChangeLog 17 Feb 2010 22:47:09 -0000 1.16
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-office/homebank
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-office/homebank/ChangeLog,v 1.15 2010/02/11 14:55:43 calchan Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-office/homebank/ChangeLog,v 1.16 2010/02/17 22:47:09 calchan Exp $
29 +
30 +*homebank-4.2.1 (17 Feb 2010)
31 +
32 + 17 Feb 2010; <calchan@g.o> +homebank-4.2.1.ebuild:
33 + Bugfix bump, thanks to Fabio Correa (bug #304515).
34
35 *homebank-4.2 (11 Feb 2010)
36
37
38
39
40 1.1 app-office/homebank/homebank-4.2.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/homebank/homebank-4.2.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/homebank/homebank-4.2.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: homebank-4.2.1.ebuild
46 ===================================================================
47 # Copyright 1999-2010 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/app-office/homebank/homebank-4.2.1.ebuild,v 1.1 2010/02/17 22:47:09 calchan Exp $
50
51 EAPI="2"
52
53 inherit fdo-mime
54
55 DESCRIPTION="Free, easy, personal accounting for everyone"
56 HOMEPAGE="http://homebank.free.fr/index.php"
57 SRC_URI="http://homebank.free.fr/public/${P}.tar.gz"
58 LICENSE="GPL-2"
59 SLOT="0"
60 IUSE="ofx"
61 KEYWORDS="~amd64 ~ppc ~x86"
62
63 RDEPEND=">=x11-libs/gtk+-2.14
64 >=dev-libs/glib-2.17
65 sys-libs/zlib
66 ofx? ( >=dev-libs/libofx-0.7 )"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig
69 >=dev-util/intltool-0.40.5"
70 RDEPEND="${RDEPEND}
71 gnome-base/librsvg"
72
73 S="${WORKDIR}/${P/_/}"
74
75 src_prepare() {
76 sed -i -e 's/true/TRUE/' src/import.c || die "sed failed"
77 }
78
79 src_configure() {
80 econf $(use_with ofx)
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die "Installation failed"
85 dodoc AUTHORS ChangeLog README
86 }
87
88 pkg_postinst() {
89 fdo-mime_desktop_database_update
90 fdo-mime_mime_database_update
91 }
92
93 pkg_postrm() {
94 fdo-mime_desktop_database_update
95 fdo-mime_mime_database_update
96 }