diff options
author | Denis Dupeyron <calchan@gentoo.org> | 2015-07-30 17:23:35 +0000 |
---|---|---|
committer | Denis Dupeyron <calchan@gentoo.org> | 2015-07-30 17:23:35 +0000 |
commit | 37735212453666b683a846e4e1979a14f683e617 (patch) | |
tree | 031bf3a285fb9724a7aa19d8bd9ab6107f26c3a9 /app-office/homebank | |
parent | Version bump. Fixes bug 546158. (diff) | |
download | gentoo-2-37735212453666b683a846e4e1979a14f683e617.tar.gz gentoo-2-37735212453666b683a846e4e1979a14f683e617.tar.bz2 gentoo-2-37735212453666b683a846e4e1979a14f683e617.zip |
Version bump.
(Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-office/homebank')
-rw-r--r-- | app-office/homebank/ChangeLog | 7 | ||||
-rw-r--r-- | app-office/homebank/homebank-5.0.3.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/app-office/homebank/ChangeLog b/app-office/homebank/ChangeLog index 5c1ce8d91abd..b8779f369f06 100644 --- a/app-office/homebank/ChangeLog +++ b/app-office/homebank/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-office/homebank # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/homebank/ChangeLog,v 1.45 2015/07/30 17:20:08 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/homebank/ChangeLog,v 1.46 2015/07/30 17:23:35 calchan Exp $ + +*homebank-5.0.3 (30 Jul 2015) + + 30 Jul 2015; Denis Dupeyron <calchan@gentoo.org> +homebank-5.0.3.ebuild: + Version bump. 30 Jul 2015; Denis Dupeyron <calchan@gentoo.org> -homebank-4.5.ebuild, -homebank-4.5.6.ebuild: diff --git a/app-office/homebank/homebank-5.0.3.ebuild b/app-office/homebank/homebank-5.0.3.ebuild new file mode 100644 index 000000000000..7dc9c18e54a9 --- /dev/null +++ b/app-office/homebank/homebank-5.0.3.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/homebank/homebank-5.0.3.ebuild,v 1.1 2015/07/30 17:23:35 calchan Exp $ + +EAPI="5" + +inherit fdo-mime eutils + +DESCRIPTION="Free, easy, personal accounting for everyone" +HOMEPAGE="http://homebank.free.fr/index.php" +SRC_URI="http://homebank.free.fr/public/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +IUSE="+ofx" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND=">=dev-libs/glib-2.28 + x11-libs/cairo + x11-libs/gdk-pixbuf + >=x11-libs/gtk+-3.6.4:3 + x11-libs/pango + ofx? ( >=dev-libs/libofx-0.8.3 )" +DEPEND="${RDEPEND} + >=dev-lang/perl-5.8.1 + dev-perl/XML-Parser + >=dev-util/intltool-0.40.5 + sys-devel/gettext + virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog README ) + +src_configure() { + econf $(use_with ofx) +} + +pkg_postinst() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update +} |