blob: cb15809b64ba75e3bea0bc6d7da1c14bc5ecee1d (
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
40
41
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/gMOO/gMOO-0.4.8-r1.ebuild,v 1.1 2003/09/10 19:03:12 vapier Exp $
IUSE="nls tcltk"
S=${WORKDIR}/${P}
DESCRIPTION="GTK+ Based MOO client"
SRC_URI="http://www.nowmoo.demon.nl/packages/${P}.tar.gz"
HOMEPAGE="http://www.nowmoo.demon.nl/"
KEYWORDS="x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND="virtual/glibc
>=x11-base/xfree-4.1.0
=x11-libs/gtk+-1.2*
tcltk? ( dev-lang/tcl )"
src_unpack() {
unpack ${A}
cd ${S}
use nls && patch -l -p0 <${FILESDIR}/gMOO.patch
}
src_compile() {
local myconf=""
use tcltk || myconf="${myconf} --disable-tcl"
use nls || myconf="${myconf} --disable-nls"
./configure --prefix=/usr --mandir=/usr/share/man --host=${CHOST} ${myconf} || die
make || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc README INSTALL COPYING VERSION NEWS TODO ChangeLog ABOUT-NLS
}
|