blob: bae7493a785aaada3de0ae0d9f2350ae65c8c176 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/rpl/rpl-1.4.0.ebuild,v 1.25 2011/01/06 16:21:26 jlec Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Intelligent recursive search/replace utility"
HOMEPAGE="http://rpl.sourceforge.net/"
SRC_URI="http://downloads.laffeycomputer.com/current_builds/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gcc4.patch
}
src_compile() {
tc-export CC
econf
emake || die
}
src_install () {
dobin src/rpl || die
doman man/rpl.1 || die
dodoc AUTHORS ChangeLog NEWS README || die
}
|