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: ChangeLog homebank-4.0.1.ebuild
Date: Sat, 27 Dec 2008 19:11:20
Message-Id: E1LGeZB-0006la-P9@stork.gentoo.org
1 calchan 08/12/27 19:11:17
2
3 Modified: ChangeLog
4 Added: homebank-4.0.1.ebuild
5 Log:
6 Version bump, thanks to Viaken (bug #250304).
7 (Portage version: 2.1.6.3/cvs/Linux 2.6.28-gentoo i686)
8
9 Revision Changes Path
10 1.5 app-office/homebank/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/homebank/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/homebank/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/homebank/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-office/homebank/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 23 Apr 2008 08:22:37 -0000 1.4
23 +++ ChangeLog 27 Dec 2008 19:11:17 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-office/homebank
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-office/homebank/ChangeLog,v 1.4 2008/04/23 08:22:37 calchan Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-office/homebank/ChangeLog,v 1.5 2008/12/27 19:11:17 calchan Exp $
29 +
30 +*homebank-4.0.1 (27 Dec 2008)
31 +
32 + 27 Dec 2008; Denis Dupeyron <calchan@g.o> +homebank-4.0.1.ebuild:
33 + Version bump, thanks to Viaken (bug #250304).
34
35 *homebank-3.8 (23 Apr 2008)
36
37
38
39
40 1.1 app-office/homebank/homebank-4.0.1.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/homebank/homebank-4.0.1.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-office/homebank/homebank-4.0.1.ebuild?rev=1.1&content-type=text/plain
44
45 Index: homebank-4.0.1.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/homebank/homebank-4.0.1.ebuild,v 1.1 2008/12/27 19:11:17 calchan Exp $
50
51 inherit autotools fdo-mime
52
53 DESCRIPTION="Free, easy, personal accounting for everyone"
54 HOMEPAGE="http://homebank.free.fr/index.php"
55 SRC_URI="http://homebank.free.fr/public/${P}.tar.gz"
56 LICENSE="GPL-2"
57 SLOT="0"
58 IUSE="ofx"
59 KEYWORDS="~amd64 ~x86"
60
61 RDEPEND=">=x11-libs/gtk+-2.10
62 >=dev-libs/glib-2.12
63 sys-libs/zlib
64 ofx? ( >=dev-libs/libofx-0.7 )"
65 DEPEND="${RDEPEND}
66 dev-util/pkgconfig"
67 RDEPEND="${RDEPEND}
68 gnome-base/librsvg"
69
70 src_unpack() {
71 unpack ${A}
72 cd "${S}"
73
74 sed -i \
75 -e 's/-Werror//' configure.ac \
76 -e 's/LDFLAGS="${LDFLAGS} -lofx"/LIBS="${LIBS} -lofx"/' \
77 configure.ac || die "sed failed"
78
79 eautoconf
80 }
81
82 src_compile() {
83 econf $(use_with ofx) || die "Configuration failed"
84 emake || die "Compilation failed"
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die "Installation failed"
89 dodoc AUTHORS ChangeLog README
90 }
91
92 pkg_postinst() {
93 fdo-mime_desktop_database_update
94 fdo-mime_mime_database_update
95 }
96
97 pkg_postrm() {
98 fdo-mime_desktop_database_update
99 fdo-mime_mime_database_update
100 }