diff options
Diffstat (limited to 'app-office/homebank/homebank-4.6.3.ebuild')
-rw-r--r-- | app-office/homebank/homebank-4.6.3.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/app-office/homebank/homebank-4.6.3.ebuild b/app-office/homebank/homebank-4.6.3.ebuild new file mode 100644 index 000000000000..78a98c32aaad --- /dev/null +++ b/app-office/homebank/homebank-4.6.3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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=">=x11-libs/gtk+-2.20:2 + >=dev-libs/glib-2.17 + ofx? ( >=dev-libs/libofx-0.7 )" +DEPEND="${RDEPEND} + virtual/pkgconfig + >=dev-util/intltool-0.40.5" + +src_configure() { + econf $(use_with ofx) +} + +src_install() { + emake DESTDIR="${D}" install || die "Installation failed" + dodoc AUTHORS ChangeLog README +} + +pkg_postinst() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update +} |