diff options
author | Rémi Cardona <remi@gentoo.org> | 2011-10-02 18:57:16 +0000 |
---|---|---|
committer | Rémi Cardona <remi@gentoo.org> | 2011-10-02 18:57:16 +0000 |
commit | 35efb2b714e7c1c1f9812273955d0fde90770644 (patch) | |
tree | 55a58e31260e2ef865eff6fc2bbfad28e9190eba /app-office/grisbi | |
parent | Version bump wrt #385367 by Johannes Huber (diff) | |
download | gentoo-2-35efb2b714e7c1c1f9812273955d0fde90770644.tar.gz gentoo-2-35efb2b714e7c1c1f9812273955d0fde90770644.tar.bz2 gentoo-2-35efb2b714e7c1c1f9812273955d0fde90770644.zip |
app-office/grisbi: Bump to 0.8.8
(Portage version: 2.2.0_alpha59/cvs/Linux i686)
Diffstat (limited to 'app-office/grisbi')
-rw-r--r-- | app-office/grisbi/ChangeLog | 7 | ||||
-rw-r--r-- | app-office/grisbi/grisbi-0.8.8.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/app-office/grisbi/ChangeLog b/app-office/grisbi/ChangeLog index c7017e7be0ec..529fc2e138e7 100644 --- a/app-office/grisbi/ChangeLog +++ b/app-office/grisbi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-office/grisbi # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/grisbi/ChangeLog,v 1.49 2011/07/24 11:03:24 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/grisbi/ChangeLog,v 1.50 2011/10/02 18:57:16 remi Exp $ + +*grisbi-0.8.8 (02 Oct 2011) + + 02 Oct 2011; Rémi Cardona <remi@gentoo.org> +grisbi-0.8.8.ebuild: + Bump to 0.8.8 24 Jul 2011; Raúl Porcel <armin76@gentoo.org> grisbi-0.6.0_rc2.ebuild, grisbi-0.6.0.ebuild, grisbi-0.8.1.ebuild, grisbi-0.8.2.ebuild: diff --git a/app-office/grisbi/grisbi-0.8.8.ebuild b/app-office/grisbi/grisbi-0.8.8.ebuild new file mode 100644 index 000000000000..1c0c2dba3690 --- /dev/null +++ b/app-office/grisbi/grisbi-0.8.8.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/grisbi/grisbi-0.8.8.ebuild,v 1.1 2011/10/02 18:57:16 remi Exp $ + +EAPI="3" + +inherit eutils gnome2 + +IUSE="nls ofx ssl" + +DESCRIPTION="Grisbi is a personal accounting application for Linux" +HOMEPAGE="http://www.grisbi.org" +SRC_URI="mirror://sourceforge/grisbi/grisbi%20stable/0.8.x/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND="dev-libs/libxml2 + >=dev-libs/glib-2.18.0 + >=x11-libs/gtk+-2.12.0:2 + ssl? ( >=dev-libs/openssl-0.9.5 ) + ofx? ( >=dev-libs/libofx-0.7.0 )" + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.20" + +pkg_setup() { + G2CONF=" + --with-plugins + --with-libxml2 + $(use_with ssl openssl) + $(use_with ofx) + $(use_enable nls)" + DOCS="AUTHORS NEWS README" +} + +pkg_postinst() { + gnome2_pkg_postinst + elog "The first thing you should do is set up the browser command in" + elog "preferences after you start up grisbi. Otherwise you will not" + elog "be able to see the help and manuals." +} |