blob: 95f9dddcbeedbf48de221f68730d72cbb0216c71 (
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.3 2004/06/24 22:23:53 agriffis 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
}
|