app-office/grisbi: add 3.0.0

Signed-off-by: Guillaume Castagnino <casta@xwing.info>
Closes: https://github.com/gentoo/gentoo/pull/33889
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
This commit is contained in:
Guillaume Castagnino
2023-11-18 17:42:59 +01:00
committed by Pacho Ramos
parent 65d9423368
commit 29b5462689
2 changed files with 45 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST grisbi-2.0.5.tar.bz2 7465632 BLAKE2B c70fd313660d8fbc0d93d86d89f7470564a0865b8423ae0e8a2f40fc1f4dbe959ed37141963dbc5ab9e6154ff71af3120303bd4c6ccc5554d1da75200c6e8a84 SHA512 16535cbdf0647abc60878bc5a21b22d76090d6a5dab89a9e1ff4029eef25f284a627555ec0724977ba01313f33aee06489b908aaa6600a566f86a87b5f33b7f9
DIST grisbi-3.0.0.tar.bz2 12447582 BLAKE2B 7e1f2041898811c16eb05f603b7965bea32f6d16ad7b836c1cadfc305e8d794c5ccd82865ed25e3f741b9fad6734b7f9977fcfbf8c73ebd75e84538d3d075248 SHA512 08af544378317c5e4bf67b5dc8e796145587970a530cd9d9065532acab317f7c91e9159b299e7903ec4fa0d29a3004dfae58e17b2f4efe304d8fdd3c0fbe8e04

View File

@@ -0,0 +1,44 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit gnome2
DESCRIPTION="Grisbi is a personal accounting application for Linux"
HOMEPAGE="http://www.grisbi.org https://github.com/grisbi/grisbi"
SRC_URI="mirror://sourceforge/${PN}/grisbi%20stable/$(ver_cut 1-2).x/${P}.tar.bz2"
IUSE="goffice nls ofx ssl"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
RDEPEND="
dev-libs/glib:2
dev-libs/libxml2:2
gnome-extra/libgsf
sys-libs/zlib
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3
x11-libs/pango
x11-misc/xdg-utils
ssl? ( >=dev-libs/openssl-1.0.0:0= )
ofx? ( >=dev-libs/libofx-0.9.0:= )
goffice? ( >=x11-libs/goffice-0.10.0 )
"
DEPEND="${RDEPEND}"
BDEPEND="dev-util/intltool
virtual/pkgconfig"
src_configure() {
gnome2_src_configure \
--with-libxml2 \
--without-cunit \
--disable-static \
$(use_with ssl openssl) \
$(use_with ofx) \
$(use_with goffice) \
$(use_enable nls)
}