diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2012-02-21 08:35:47 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2012-02-21 08:35:47 +0000 |
commit | 67e2397605bdd3ff0e03201f916524d93062e977 (patch) | |
tree | 14a9bd010ffd10b77604d4176b1d651ce47cb374 /app-text/convmv | |
parent | Restricting jython (diff) | |
download | gentoo-2-67e2397605bdd3ff0e03201f916524d93062e977.tar.gz gentoo-2-67e2397605bdd3ff0e03201f916524d93062e977.tar.bz2 gentoo-2-67e2397605bdd3ff0e03201f916524d93062e977.zip |
Version bump.
(Portage version: 2.2.0_alpha87/cvs/Linux x86_64)
Diffstat (limited to 'app-text/convmv')
-rw-r--r-- | app-text/convmv/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/convmv/convmv-1.15.ebuild | 34 |
2 files changed, 41 insertions, 2 deletions
diff --git a/app-text/convmv/ChangeLog b/app-text/convmv/ChangeLog index 2153388a9244..8b00bcbd36bc 100644 --- a/app-text/convmv/ChangeLog +++ b/app-text/convmv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/convmv -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/convmv/ChangeLog,v 1.38 2011/02/06 05:44:18 leio Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/convmv/ChangeLog,v 1.39 2012/02/21 08:35:47 robbat2 Exp $ + +*convmv-1.15 (21 Feb 2012) + + 21 Feb 2012; Robin H. Johnson <robbat2@gentoo.org> +convmv-1.15.ebuild: + Version bump. 06 Feb 2011; Mart Raudsepp <leio@gentoo.org> convmv-1.10.ebuild: Drop to ~mips diff --git a/app-text/convmv/convmv-1.15.ebuild b/app-text/convmv/convmv-1.15.ebuild new file mode 100644 index 000000000000..bb7d97a4319e --- /dev/null +++ b/app-text/convmv/convmv-1.15.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/convmv/convmv-1.15.ebuild,v 1.1 2012/02/21 08:35:47 robbat2 Exp $ + +EAPI=3 + +inherit eutils + +DESCRIPTION="convert filenames to utf8 or any other charset" +HOMEPAGE="http://j3e.de/linux/convmv" +SRC_URI="http://j3e.de/linux/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="dev-lang/perl" + +src_prepare() { + sed -i -e "1s|#!/usr|#!${EPREFIX}/usr|" convmv || die +} + +src_install() { + einstall DESTDIR="${D}" PREFIX="${EPREFIX}"/usr || die "einstall failed" + dodoc CREDITS Changes TODO VERSION +} + +src_test() { + unpack ./testsuite.tar + + cd "${S}"/suite + ./dotests.sh || die "Tests failed" +} |