diff options
author | 2009-06-28 09:35:10 +0000 | |
---|---|---|
committer | 2009-06-28 09:35:10 +0000 | |
commit | 16d77e640885d436521ec26b1ae8143bdff75275 (patch) | |
tree | 9d57a13dfb59895b3505df48a0e333936d30d555 /app-text | |
parent | Bump to 0.9.9.8.2, fixes #275242 (diff) | |
download | gentoo-2-16d77e640885d436521ec26b1ae8143bdff75275.tar.gz gentoo-2-16d77e640885d436521ec26b1ae8143bdff75275.tar.bz2 gentoo-2-16d77e640885d436521ec26b1ae8143bdff75275.zip |
Bump to 1.14, fixes #272747
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/convmv/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/convmv/convmv-1.14.ebuild | 36 |
2 files changed, 43 insertions, 2 deletions
diff --git a/app-text/convmv/ChangeLog b/app-text/convmv/ChangeLog index 1d7fff94281a..8026eb1f509f 100644 --- a/app-text/convmv/ChangeLog +++ b/app-text/convmv/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/convmv -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/convmv/ChangeLog,v 1.35 2008/06/07 01:53:58 robbat2 Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/convmv/ChangeLog,v 1.36 2009/06/28 09:35:10 patrick Exp $ + +*convmv-1.14 (28 Jun 2009) + + 28 Jun 2009; Patrick Lauer <patrick@gentoo.org> +convmv-1.14.ebuild: + Bump to 1.14, fixes #272747 07 Jun 2008; Robin H. Johnson <robbat2@gentoo.org> -convmv-1.05.ebuild, -convmv-1.08.ebuild, -convmv-1.09.ebuild: diff --git a/app-text/convmv/convmv-1.14.ebuild b/app-text/convmv/convmv-1.14.ebuild new file mode 100644 index 000000000000..7c363460794c --- /dev/null +++ b/app-text/convmv/convmv-1.14.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/convmv/convmv-1.14.ebuild,v 1.1 2009/06/28 09:35:10 patrick Exp $ + +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_compile() { + emake || die "emake failed" +} + +src_install() { + einstall DESTDIR="${D}" PREFIX=/usr || die "einstall failed" + dodoc CREDITS Changes TODO VERSION +} + +src_test() { + unpack ./testsuite.tar + + # Patch merged by upstream + # Never make assumptions as to the ordering of files inside a directory! + #EPATCH_OPTS="-d ${S}/suite/" epatch "${FILESDIR}"/${PN}-1.10-testcase-cleanup.patch + + cd "${S}"/suite + ./dotests.sh || die "Tests failed" +} |