# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="A simple utility that allows you to easily rename multiple files. There are options to add prefixes and/or extensions, delete or replace characters, and convert to upper or lowercase" HOMEPAGE="http://home.hccnet.nl/paul.schuurmans/" SRC_URI="http://home.hccnet.nl/paul.schuurmans/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" RDEPEND=">=sys-libs/ncurses-5.3" DEPEND="${RDEPEND} >=sys-apps/sed-4" src_unpack() { unpack ${A} cd ${S} # Replace the CFLAGS with our own custom CFLAGS sed -i -e "/^CFLAGS =/s:-g:${CFLAGS}:" \ Makefile || die "sed Makefile failed" } src_compile() { emake || die "emake failed" } src_install() { dodoc AUTHORS README TODO ChangeLog dobin cfnrename }