# Copyright 1999-2008 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." HOMEPAGE="http://home.hccnet.nl/paul.schuurmans/linux/" SRC_URI="http://home.hccnet.nl/paul.schuurmans/linux/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND=">=x11-libs/gtk+-2.4" src_unpack() { unpack ${A} cd "${S}" } src_compile() { ./autogen.sh # econf || die emake || die "emake ${d} failed" } src_install() { emake install DESTDIR="${D}" || die "Install failed" dodoc AUTHORS README TODO ChangeLog dobin cfnrename }