blob: 4bb9d8e73b41b7586ded5206600028c99e1be17d (
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
33
34
35
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/dirdiff/dirdiff-1.6.ebuild,v 1.1 2004/05/11 15:23:30 tgall Exp $
inherit eutils
S=${WORKDIR}/${P}
DESCRIPTION="Dirdiff is a graphical tool for displaying the differences between
directory trees and for merging changes from one tree into another."
SRC_URI="http://samba.org/ftp/paulus/${PN}-${PV}.tar.gz"
HOMEPAGE="http://samba.org/ftp/paulus/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ppc"
DEPEND="dev-lang/tk
dev-lang/tcl"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
}
src_compile() {
cd ${S}
make all
}
src_install() {
cd ${S}
make install
dodoc README
}
|