blob: 031efa901e166c31cdcf6be120e5ff5bdf4a8710 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# 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.16 2005/04/24 02:59:36 hansmi 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 ~mips"
IUSE=""
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
}
|