summaryrefslogtreecommitdiff
blob: 3d2cca1f0de5e93e637bc91c31471e1ff7b16ad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Copyright 1999-2004 Gentoo Foundation
# 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.8 2004/09/16 02:22:22 pvdabeel Exp $

DESCRIPTION="Rename is a tool for renaming files. It supports extended regular expressions."
SRC_URI="http://rename.berlios.de/rename-1.3.tar.gz"
HOMEPAGE="http://rename.berlios.de/"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc macos ppc64 ppc-macos"
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
}