blob: c48bb225012347838a6b7dbe85c79cbc12c92413 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/mergetrees/mergetrees-0.9.3.ebuild,v 1.12 2004/05/07 14:16:11 dholm Exp $
DESCRIPTION="A three-way directory merge tool"
SRC_URI="http://cvs.bofh.asn.au/mergetrees/${P}.tar.gz"
HOMEPAGE="http://cvs.bofh.asn.au/mergetrees/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc ~ppc"
DEPEND=">=dev-lang/perl-5
>=sys-apps/diffutils-2"
src_compile() {
econf || die
make clean || die
emake || die
}
src_install() {
einstall || die
dodoc AUTHORS COPYING Changelog NEWS README* TODO
}
|