blob: 3d72cfac16e47919cbdfda2639f767c05abdf34d (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/mcl/mcl-0.53.00.ebuild,v 1.17 2008/01/22 05:35:50 nyhm Exp $
inherit eutils games
DESCRIPTION="A console MUD client scriptable in Perl and Python"
HOMEPAGE="http://www.andreasen.org/mcl/"
SRC_URI="http://www.andreasen.org/mcl/dist/${P}-src.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="python perl"
DEPEND="perl? ( dev-lang/perl )
python? ( dev-lang/python )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch \
"${FILESDIR}"/${P}-fPIC.patch \
"${FILESDIR}"/${PV}-vc.patch \
"${FILESDIR}"/${P}-gcc34.patch \
"${FILESDIR}"/${PV}-dynacomplete.patch \
"${FILESDIR}"/${P}-libdir.patch \
"${FILESDIR}"/${P}-inputlines.patch \
"${FILESDIR}"/${P}-gcc42.patch
sed -i \
-e "/MCL_LIBRARY_PATH/ s:/usr/lib/mcl:$(games_get_libdir)/${PN}:" \
h/mcl.h \
|| die "sed h/mcl.h failed"
# no strip for you
sed -i \
-e "/LDFLAGS=.*-s/s:-s::" \
configure \
|| die "sed failed"
}
src_compile() {
egamesconf \
$(use_enable perl) \
$(use_enable python) \
|| die
emake || die "emake failed"
}
src_install () {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc \
doc/{Changes,Chat,Embedded,Examples,Modules,Plugins,README,TODO} \
|| die "dodoc failed"
dohtml doc/*html || die "dohtml failed"
prepgamesdirs
}
|