blob: 5ebafc3a96f00800d777ee10726d6d8da16d776b (
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
36
37
38
39
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/imediff2/imediff2-1.1.1.1.ebuild,v 1.2 2007/03/01 22:13:19 dev-zero Exp $
inherit eutils versionator
KEYWORDS="~amd64 ~x86"
MY_P=${PN}_$(replace_version_separator 3 -)
DESCRIPTION="An interactive, user friendly 2-way merge tool in text mode."
HOMEPAGE="http://elonen.iki.fi/code/imediff/"
SRC_URI="http://alioth.debian.org/frs/download.php/1439/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
DEPEND=""
RDEPEND=">=dev-lang/python-2.3"
S=${WORKDIR}/${PN}
pkg_setup() {
if ! built_with_use --missing true dev-lang/python ncurses ; then
eerror "dev-lang/python has to be built with ncurses support"
die "Missing ncurses USE-flag for dev-lang/python"
fi
}
src_compile() {
# Otherwise the docs get regenerated :)
einfo "Nothing to compile..."
}
src_install() {
dobin imediff2
dodoc AUTHORS README
doman imediff2.1
}
|