# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/rename/rename-1.3.ebuild,v 1.2 2003/09/09 23:19:26 port001 Exp $ DESCRIPTION=" Rename is a command-line rename tool. It can substitute, lowcase, upcase large numbers of file names, or change their ownerships. This is a quick and powerful tool written in C with extended regular expression support for searching and substituting pattern strings in filenames." SRC_URI="http://rename.berlios.de/rename-1.3.tar.gz" HOMEPAGE="http://rename.berlios.de/" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~ppc" IUSE="" src_compile() { econf --prefix=/usr || die "Failed to configure" emake || die "Failed to compile" } src_install() { dobin rename doman rename.1 dodoc README ChangeLog }