summaryrefslogtreecommitdiff
blob: c80fa478d19f7c6952189a9018e0a6764253985b (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/dc-gui/dc-gui-0.74.ebuild,v 1.3 2003/07/13 20:28:39 aliz Exp $

IUSE="nls"

MY_P=${PN/-/_}2-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="GUI for dctc (GTK2 version)"
SRC_URI="http://ac2i.tzo.com/dctc/${MY_P}.tar.gz"
HOMEPAGE="http://ac2i.tzo.com/dctc/"

SLOT="2"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc"

DEPEND="=dev-libs/glib-2*
	=x11-libs/gtk+-2*
	=gnome-base/libgnomeui-2*
	>=sys-libs/db-3.2*
	>=net-p2p/dctc-0.85.1"
RDEPEND="nls? ( sys-devel/gettext )"

src_compile() {
	econf `use_enable nls` || die
	emake || die
}

src_install() {
	make DESTDIR=${D} install || die
	use nls || rm -rf ${D}/usr/share/locale
	dodoc AUTHORS ChangeLog NEWS README TODO
}