forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: gentoo#29738 Signed-off-by: Daniel Brandt <[email protected]> Signed-off-by: Joonas Niilola <[email protected]>
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST homebank-5.5.4.tar.gz 3089097 BLAKE2B 3b73ca8a016a02c5050bed4d702cb2e71ed34182a2cc41a043e4af8053acc21df738bc91d564cb51b9e08aaa4b60156ea824a38ebd21eea00266f55951d23e59 SHA512 ae85fcc46ef8428a0dca865ec0b51532f4ada28a2515873f00802ac8894cc9ad1c93be64a587a5e119efe3c61436d7aabd1f90ee559af047ddf65c3b59bc066d | ||
DIST homebank-5.6.1.tar.gz 3357600 BLAKE2B 487ae9ea6c518a5cf53438a6095a29319dff9b1b77dd52fff6c9f1638eb9c86c34895697c6d9964493cbd62192eeba0220bd3d56a0cc64583d4eb2aa109bba1d SHA512 5d0b7c1a843e61d655cfe5dd3690cbe1f121baa695fd476c5322036458712faa038fcb8f6504378a856cd9181840f1cd1e485e2d8d26b729f93709a887b7b021 | ||
DIST homebank-5.6.2.tar.gz 3370041 BLAKE2B 0735535bf4366d2190448272aaa4b49ffff80f38d1b3086fa5f94753e14f0cfe9c88ded7986189fd949e30298e903b35649aaba23ef015682226213f1cb57e5a SHA512 6820e7d23af9097928edd17dd71a875fefa01f4ad9a5e1d9b27ae5080bc0e030c123c1ec2940eea58dc04cf04fb533207a062b87ca5ece7244ef56f9a3971f7d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI="8" | ||
|
||
inherit xdg | ||
|
||
DESCRIPTION="Free, easy, personal accounting for everyone" | ||
HOMEPAGE="http://homebank.free.fr/index.php" | ||
SRC_URI="http://homebank.free.fr/public/sources/${P}.tar.gz" | ||
|
||
LICENSE="GPL-2" | ||
SLOT="0" | ||
IUSE="+ofx" | ||
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" | ||
|
||
RDEPEND=">=dev-libs/glib-2.39:2 | ||
>=net-libs/libsoup-2.26:2.4 | ||
x11-libs/cairo | ||
x11-libs/gdk-pixbuf:2 | ||
>=x11-libs/gtk+-3.22:3 | ||
x11-libs/pango | ||
ofx? ( >=dev-libs/libofx-0.8.3:= )" | ||
DEPEND="${RDEPEND} | ||
x11-base/xorg-proto" | ||
BDEPEND=">=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) | ||
} |