blob: 94dfa0f8041d110ce0bb0c57c6a474a3c324b6a1 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/dirdiff/dirdiff-2.1.ebuild,v 1.4 2009/10/12 20:31:30 ssuominen Exp $
DESCRIPTION="A tool for differing and merging directories"
SRC_URI="http://samba.org/ftp/paulus/${P}.tar.gz"
HOMEPAGE="http://samba.org/ftp/paulus/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ppc x86"
IUSE=""
DEPEND="dev-lang/tk
dev-lang/tcl"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i "s:CFLAGS=-O3 \(.*\):CFLAGS=${CFLAGS} -fPIC \1:" Makefile
}
src_compile() {
emake || die
}
src_install() {
dobin dirdiff || die
dolib.so libfilecmp.so.0.0 || die
dodoc README
}
|