Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/grisbi/
Date: Tue, 04 May 2021 01:01:07
Message-Id: 1620090036.0585df121d06641b9d4dd3002cb643e9b5872556.mattst88@gentoo
1 commit: 0585df121d06641b9d4dd3002cb643e9b5872556
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 4 00:54:25 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue May 4 01:00:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0585df12
7
8 app-office/grisbi: Version bump to 2.0.3
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 app-office/grisbi/Manifest | 1 +
13 app-office/grisbi/grisbi-2.0.3.ebuild | 40 +++++++++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/app-office/grisbi/Manifest b/app-office/grisbi/Manifest
17 index d2237baa7ef..7fa05f67dc5 100644
18 --- a/app-office/grisbi/Manifest
19 +++ b/app-office/grisbi/Manifest
20 @@ -1 +1,2 @@
21 DIST grisbi-1.2.2.tar.bz2 7325947 BLAKE2B 559ffc8c46edc629fd17aa38042a7d9a39dd9c1866bddc86560bae2750a53916a6e0a451dc6e482b9d21bc1d8d493701d656dfa85b131f5f9b5b3c014249dcd2 SHA512 7d627f9ae588c0d5a8235bb86f3ed160a572114ccfec1dce9c7137296e5525411600033ca4e42b242004edddc42f2160e95c18c0c0cd13516cf62486e081acdd
22 +DIST grisbi-2.0.3.tar.bz2 7504520 BLAKE2B 28f9fd2535d3d863a4b36237f5dbb0947631764738a45869ad9c15750235cd741043382041eb40189ccbf34901527b950378e086e6f87a1beeeccd1c64f6be7a SHA512 2fdc93051399be2e7818890a88078f0c18976efe703a4f1ca9177484eb30def0533f35c6b7362b62dc29872596d9bb28494045ca2c137eec192d8c9bdde0e8aa
23
24 diff --git a/app-office/grisbi/grisbi-2.0.3.ebuild b/app-office/grisbi/grisbi-2.0.3.ebuild
25 new file mode 100644
26 index 00000000000..5fc8d7898b3
27 --- /dev/null
28 +++ b/app-office/grisbi/grisbi-2.0.3.ebuild
29 @@ -0,0 +1,40 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit gnome2
36 +
37 +DESCRIPTION="Grisbi is a personal accounting application for Linux"
38 +HOMEPAGE="http://www.grisbi.org https://github.com/grisbi/grisbi"
39 +SRC_URI="mirror://sourceforge/${PN}/grisbi%20stable/2.0.x/${P}.tar.bz2"
40 +IUSE="goffice nls ofx ssl"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~ppc ~x86"
45 +
46 +RDEPEND="
47 + >=dev-libs/libxml2-2.5:2
48 + >=dev-libs/glib-2.44.0:2
49 + >=x11-libs/gtk+-3.20:3
50 + x11-misc/xdg-utils
51 + >=gnome-extra/libgsf-1.14
52 + ssl? ( >=dev-libs/openssl-1.0.0:0= )
53 + ofx? ( >=dev-libs/libofx-0.9.0:= )
54 + goffice? ( >=x11-libs/goffice-0.10.0 )
55 +"
56 +DEPEND="${RDEPEND}
57 + virtual/pkgconfig
58 +"
59 +
60 +src_configure() {
61 + gnome2_src_configure \
62 + --with-libxml2 \
63 + --without-cunit \
64 + --disable-static \
65 + $(use_with ssl openssl) \
66 + $(use_with ofx) \
67 + $(use_with goffice) \
68 + $(use_enable nls)
69 +}