blob: 58c69b168799b0739050738c9f080f776902fe2e (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/gtkdiff/gtkdiff-1.8.0-r2.ebuild,v 1.1 2004/01/02 19:08:05 port001 Exp $
DESCRIPTION="GNOME Frontend for diff"
SRC_URI="http://home.catv.ne.jp/pp/ginoue/software/gtkdiff/${P}.tar.gz"
HOMEPAGE="http://home.catv.ne.jp/pp/ginoue/software/gtkdiff/index-e.html"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"
IUSE="nls"
DEPEND=">=gnome-base/gnome-libs-1.4.1.2-r1
sys-apps/diffutils"
RDEPEND="nls? ( sys-devel/gettext
dev-util/intltool )"
src_compile() {
econf `use_enable nls`
emake || die
}
src_install() {
einstall
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
}
|