blob: 0e7676225aba1d16797f13f91d4a1d5749c4ab3d (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Jeffry Molanus <Gila@home.nl>
# Maintainer: Matthew Kennedy <mkennedy@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-misc/dc-gui/dc-gui-0.54.ebuild,v 1.1 2002/04/22 00:22:29 mkennedy Exp $
S=${WORKDIR}/${P/-/_}
DESCRIPTION="GUI for DCTC"
SRC_URI="http://ac2i.tzo.com/dctc/${P/-/_}.tar.gz"
HOMEPAGE="http://ac2i.tzo.com/dctc"
DEPEND="virtual/glibc
=dev-libs/glib-1.2*
=sys-libs/db-3.2*
=x11-libs/gtk+-1.2.*
>=net-misc/dctc-0.79.1
gnome? ( gnome-base/gnome )
nls? ( sys-devel/gettext )"
src_compile() {
local myconf
use gnome && myconf="--with-gnome" || myconf="--without-gnome"
use nls && myconf="${myconf} --enable-nls" || myconf="${myconf} --disable-nls"
./configure --prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--host=${CHOST} \
${myconf} || die
emake || die
}
src_install() {
make prefix=${D}/usr install || die
dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README TODO
}
|