blob: e29ae5c6bff7dffe0ea271a19842eb55b7e2af64 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# 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.1 2003/10/01 00:45:54 mr_bones_ Exp $
inherit games
DESCRIPTION="A console MUD client scriptable in Perl and Python"
SRC_URI="http://www.andreasen.org/mcl/dist/${P}-src.tar.gz"
HOMEPAGE="http://www.andreasen.org/mcl/"
LICENSE="GPL-2"
KEYWORDS="x86"
SLOT="0"
IUSE="python perl"
RDEPEND="perl? ( dev-lang/perl )
python? ( dev-lang/python )"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e "/MCL_LIBRARY_PATH/ s:/usr/lib/mcl:${GAMES_LIBDIR}/${PN}:" \
h/mcl.h || die "sed h/mcl.h failed"
}
src_compile() {
egamesconf `use_enable perl` `use_enable python` || die
emake || die "emake failed"
}
src_install () {
make INSTALL_ROOT=${D} install || die "make install failed"
dodoc doc/* || die "dodoc failed"
prepgamesdirs
}
|