Gentoo Archives: gentoo-commits

From: Tony Vroon <chainsaw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/grisbi/
Date: Wed, 11 Jul 2018 08:50:19
Message-Id: 1531299006.fca8065a2b1ec753969b261a3a4c53db3ca08414.chainsaw@gentoo
1 commit: fca8065a2b1ec753969b261a3a4c53db3ca08414
2 Author: Guillaume Castagnino <casta <AT> xwing <DOT> info>
3 AuthorDate: Sat Jul 7 14:29:55 2018 +0000
4 Commit: Tony Vroon <chainsaw <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 11 08:50:06 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fca8065a
7
8 app-office/grisbi: version bump
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11 Closes: https://github.com/gentoo/gentoo/pull/9083
12
13 app-office/grisbi/Manifest | 1 +
14 app-office/grisbi/grisbi-1.0.4.ebuild | 40 +++++++++++++++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/app-office/grisbi/Manifest b/app-office/grisbi/Manifest
18 index 34902de0ba7..992f32e3428 100644
19 --- a/app-office/grisbi/Manifest
20 +++ b/app-office/grisbi/Manifest
21 @@ -1 +1,2 @@
22 DIST grisbi-1.0.2.tar.bz2 6956892 BLAKE2B dde75fbae341fc03226083567ff4731457abc7079ace92956c9e8b35ba4140dba32dc67ebe3b2a4826750229dbcd09da0f2eaf1f18c8783238d3fee274c46be9 SHA512 5988d362db8e94f135af34de1acfd7222ceeca11d229ffca533ca75c75c8054dda121bc45979106ee8f4ed2ac0660ba7836dfd053478fdbe4a2984cb94be3cf8
23 +DIST grisbi-1.0.4.tar.bz2 6965398 BLAKE2B f53b5cd7f2e4b0cdcf14732ba7e03315ec7d419c7f6ab3a290fd30a9dc9f7c0dde69b473dca3873aeb90b793cd90287c516f2fe4b7a50d71368abc3e12ce16f6 SHA512 9761ed94db563c39cab793ee076b6a729470231e3111d7ce57d188a6f1681cbb715174f67c15741320f295d4efdf0784f6e3d4d4d58267759efbad56561c7064
24
25 diff --git a/app-office/grisbi/grisbi-1.0.4.ebuild b/app-office/grisbi/grisbi-1.0.4.ebuild
26 new file mode 100644
27 index 00000000000..392f5fbf64a
28 --- /dev/null
29 +++ b/app-office/grisbi/grisbi-1.0.4.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +GNOME2_LA_PUNT="yes"
36 +
37 +inherit gnome2
38 +
39 +DESCRIPTION="Grisbi is a personal accounting application for Linux"
40 +HOMEPAGE="http://www.grisbi.org"
41 +SRC_URI="mirror://sourceforge/grisbi/grisbi%20stable/1.0.x/${P}.tar.bz2"
42 +IUSE="libressl nls ofx ssl"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~ppc ~x86"
47 +
48 +RDEPEND="
49 + dev-libs/libxml2:2
50 + >=dev-libs/glib-2.18.0:2
51 + >=x11-libs/gtk+-2.12.0:2
52 + x11-misc/xdg-utils
53 + ssl? (
54 + libressl? ( dev-libs/libressl:0= )
55 + !libressl? ( >=dev-libs/openssl-0.9.5:0= ) )
56 + ofx? ( >=dev-libs/libofx-0.7.0 )
57 +"
58 +DEPEND="${RDEPEND}
59 + virtual/pkgconfig
60 +"
61 +
62 +src_configure() {
63 + gnome2_src_configure \
64 + --with-libxml2 \
65 + --without-cunit \
66 + --disable-static \
67 + $(use_with ssl openssl) \
68 + $(use_with ofx) \
69 + $(use_enable nls)
70 +}