summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanno Böck <hanno@gentoo.org>2008-04-20 20:21:36 +0000
committerHanno Böck <hanno@gentoo.org>2008-04-20 20:21:36 +0000
commit2f74f9527fd4b7a7c772e46f7f765c50a53b8fea (patch)
tree2e11bf914fa1c2ec4960f7881812ea781e6e2915 /app-misc/ktoblzcheck
parentFix build with autoconf 2.62, bug #218164 (diff)
downloadgentoo-2-2f74f9527fd4b7a7c772e46f7f765c50a53b8fea.tar.gz
gentoo-2-2f74f9527fd4b7a7c772e46f7f765c50a53b8fea.tar.bz2
gentoo-2-2f74f9527fd4b7a7c772e46f7f765c50a53b8fea.zip
ktoblzcheck version bump (fixes gcc43)
(Portage version: 2.1.5_rc5)
Diffstat (limited to 'app-misc/ktoblzcheck')
-rw-r--r--app-misc/ktoblzcheck/ChangeLog7
-rw-r--r--app-misc/ktoblzcheck/ktoblzcheck-1.17.ebuild26
2 files changed, 32 insertions, 1 deletions
diff --git a/app-misc/ktoblzcheck/ChangeLog b/app-misc/ktoblzcheck/ChangeLog
index d0fa6d8a7a5e..592d56daa536 100644
--- a/app-misc/ktoblzcheck/ChangeLog
+++ b/app-misc/ktoblzcheck/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-misc/ktoblzcheck
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/ktoblzcheck/ChangeLog,v 1.54 2008/02/05 16:36:37 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/ktoblzcheck/ChangeLog,v 1.55 2008/04/20 20:21:36 hanno Exp $
+
+*ktoblzcheck-1.17 (20 Apr 2008)
+
+ 20 Apr 2008; Hanno Boeck <hanno@gentoo.org> +ktoblzcheck-1.17.ebuild:
+ Version bump, fixes compile with gcc 4.3.
05 Feb 2008; Markus Rothe <corsair@gentoo.org> ktoblzcheck-1.16.ebuild:
Added ~ppc64; fix dependencies for app-office/kmymoney2
diff --git a/app-misc/ktoblzcheck/ktoblzcheck-1.17.ebuild b/app-misc/ktoblzcheck/ktoblzcheck-1.17.ebuild
new file mode 100644
index 000000000000..79ab885a4c24
--- /dev/null
+++ b/app-misc/ktoblzcheck/ktoblzcheck-1.17.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/ktoblzcheck/ktoblzcheck-1.17.ebuild,v 1.1 2008/04/20 20:21:36 hanno Exp $
+
+DESCRIPTION="Library to check account numbers and bank codes of German banks"
+HOMEPAGE="http://ktoblzcheck.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="python"
+
+DEPEND="sys-apps/gawk
+ sys-apps/grep
+ sys-devel/libtool
+ python? ( || ( dev-python/ctypes >=dev-lang/python-2.5 ) )"
+
+src_compile() {
+ econf `use_enable python` || die "configure failed"
+ emake || die "make failed"
+}
+
+src_install() {
+ einstall BANKDATA_PATH="${D}/usr/share/ktoblzcheck" || die "install failed"
+}