diff options
author | Hanno Böck <hanno@gentoo.org> | 2014-03-22 17:39:47 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2014-03-22 17:39:47 +0000 |
commit | 70762ed85ad9fc766b86fa31616ec6086cd70764 (patch) | |
tree | c9da33d23e2c8cdd8ecb4c13923708aa1d23b745 /app-misc | |
parent | Version bump. (diff) | |
download | gentoo-2-70762ed85ad9fc766b86fa31616ec6086cd70764.tar.gz gentoo-2-70762ed85ad9fc766b86fa31616ec6086cd70764.tar.bz2 gentoo-2-70762ed85ad9fc766b86fa31616ec6086cd70764.zip |
ktoblzcheck version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0xA5880072BBB51E42)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/ktoblzcheck/ChangeLog | 9 | ||||
-rw-r--r-- | app-misc/ktoblzcheck/ktoblzcheck-1.45.ebuild | 54 |
2 files changed, 61 insertions, 2 deletions
diff --git a/app-misc/ktoblzcheck/ChangeLog b/app-misc/ktoblzcheck/ChangeLog index 3aa93837c732..0b0adee329dc 100644 --- a/app-misc/ktoblzcheck/ChangeLog +++ b/app-misc/ktoblzcheck/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/ktoblzcheck -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/ktoblzcheck/ChangeLog,v 1.86 2013/02/28 16:16:22 ottxor Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/ktoblzcheck/ChangeLog,v 1.87 2014/03/22 17:39:46 hanno Exp $ + +*ktoblzcheck-1.45 (22 Mar 2014) + + 22 Mar 2014; Hanno Boeck <hanno@gentoo.org> +ktoblzcheck-1.45.ebuild: + Version bump. 28 Feb 2013; Christoph Junghans <ottxor@gentoo.org> ktoblzcheck-1.33.ebuild, ktoblzcheck-1.39.ebuild: diff --git a/app-misc/ktoblzcheck/ktoblzcheck-1.45.ebuild b/app-misc/ktoblzcheck/ktoblzcheck-1.45.ebuild new file mode 100644 index 000000000000..403e7cc489dc --- /dev/null +++ b/app-misc/ktoblzcheck/ktoblzcheck-1.45.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/ktoblzcheck/ktoblzcheck-1.45.ebuild,v 1.1 2014/03/22 17:39:47 hanno Exp $ + +EAPI=4 +PYTHON_DEPEND="python? 2:2.6" +inherit python + +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="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="python" + +RDEPEND="app-text/recode + virtual/awk + sys-apps/grep + sys-apps/sed + || ( net-misc/wget www-client/lynx )" +DEPEND="${RDEPEND} + >=sys-devel/libtool-2.2.6b" + +DOCS="AUTHORS ChangeLog NEWS README" + +pkg_setup() { + if use python; then + python_set_active_version 2 + python_pkg_setup + fi +} + +src_prepare() { + >py-compile +} + +src_configure() { + econf $(use_enable python) +} + +src_install() { + default + find "${ED}" -name '*.la' -exec rm -f {} + +} + +pkg_postinst() { + use python && python_mod_optimize ktoblzcheck.py +} + +pkg_postrm() { + use python && python_mod_cleanup ktoblzcheck.py +} |