blob: ac5d4b97553161a94b0cffeaff64f0ffb02b8e76 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/mmucl/mmucl-1.5.2-r1.ebuild,v 1.1 2005/06/05 04:59:13 mr_bones_ Exp $
inherit games
DESCRIPTION="Marks MUd CLient - A mud client written completely in tcl/tk"
HOMEPAGE="http://mmucl.sourceforge.net/"
SRC_URI="mirror://sourceforge/mmucl/${P}.tar.gz"
KEYWORDS="~ppc ~x86"
LICENSE="GPL-2"
SLOT="0"
IUSE="readline mccp gtk"
DEPEND=">=dev-lang/tk-8.4
readline? ( dev-tcltk/tclreadline )
mccp? ( dev-tcltk/tcl-mccp )
gtk? ( dev-tcltk/tcl-gtk )"
src_unpack() {
unpack ${A}
sed -i \
-e "/^BASE_DIR/ s:=.*:=/usr:" \
-e "/^BIN_DIR/ s:=.*:=${GAMES_BINDIR}:" \
-e "/^LIB_DIR/ s:=.*:=${GAMES_LIBDIR}/${PN}:" \
-e "" "${S}/Makefile" \
|| die "sed Makefile failed"
}
src_install () {
local LIBDIR="${GAMES_LIBDIR}/${PN}"
dogamesbin mmucl2 || die "dogamesbin failed"
insinto ${LIBDIR}/lib
doins lib/*.tcl || die "doins failed (lib)"
insinto ${LIBDIR}/images
doins images/*.gif || die "doins failed (images)"
insinto ${LIBDIR}/interface
doins interface/*.tcl || die "doins failed (interface)"
insinto ${LIBDIR}/script
doins script/*.{tcl,rc} || die "doins failed (script)"
insinto ${LIBDIR}/script/contrib
doins script/contrib/* || die "doins failed (contrib)"
insinto ${LIBDIR}/test
doins test/*.test || die "doins failed (test)"
doinfo mmucl.info || die "doinfo failed"
dodoc CHANGES TODO INSTALL README || die "dodoc failed"
dohtml mmucl.html || die "dohtml failed"
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
echo
einfo "The executable for this is mmucl2."
}
|