blob: 9edd1e7df730ae6bb173284274aa2ec2c89072d3 (
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-2004 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.3 2004/03/31 03:58:18 mr_bones_ Exp $
DESCRIPTION="GTK+ Based MOO client"
HOMEPAGE="http://www.nowmoo.demon.nl/"
SRC_URI="http://www.nowmoo.demon.nl/packages/${P}.tar.bz2"
KEYWORDS="x86"
LICENSE="GPL-2"
SLOT="0"
IUSE="nls tcltk"
RDEPEND="virtual/glibc
virtual/x11
=x11-libs/gtk+-1.2*
tcltk? ( dev-lang/tcl )"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
use nls && patch -l -p0 <${FILESDIR}/gMOO.patch
sed -i \
-e "s/-ltcl8.0/-ltcl/" configure \
|| die "sed configure failed"
}
src_compile() {
econf \
`use_enable nls` \
`use_enable tcltk tcl` \
|| die "configure failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc README INSTALL VERSION NEWS TODO ChangeLog || die "dodoc failed"
}
|