blob: 044226362366225c477e94954210d8b188d75580 (
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
|
# 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-gui2/dc-gui2-0.70.ebuild,v 1.2 2003/02/28 06:52:14 vapier Exp $
S=${WORKDIR}/${P/-/_}
DESCRIPTION="GUI for dctc (GTK2 version)"
SRC_URI="http://ac2i.tzo.com/dctc/${P/-/_}.tar.gz"
HOMEPAGE="http://ac2i.tzo.com/dctc/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
IUSE="nls pic"
DEPEND="=dev-libs/glib-2*
=x11-libs/gtk+-2*
=gnome-base/libgnomeui-2*
>=sys-libs/db-3.2*
>=net-p2p/dctc-0.83.8"
RDEPEND="nls? ( sys-devel/gettext )"
src_compile() {
econf `use_enable nls` `use_with pic` || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
use nls || rm -rf ${D}/usr/share/locale
dodoc AUTHORS ChangeLog NEWS README TODO
}
|