blob: 63d2c7b8dcc219c0473eb2b292f679127e02411c (
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
|
# Copyright 1999-2007 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.5 2007/04/09 18:41:29 nyhm 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="~amd64 ~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}
cd "${S}"
sed -i \
-e "/^BASE_DIR/ s:=.*:=/usr:" \
-e "/^BIN_DIR/ s:=.*:=${GAMES_BINDIR}:" \
-e "/^LIB_DIR/ s:=.*:=$(games_get_libdir)/${PN}:" \
Makefile \
|| die "sed Makefile failed"
}
src_install () {
dogamesbin mmucl2 || die "dogamesbin failed"
insinto "$(games_get_libdir)"/${PN}/lib
doins lib/*.tcl || die "doins failed (lib)"
insinto "$(games_get_libdir)"/${PN}/images
doins images/*.gif || die "doins failed (images)"
insinto "$(games_get_libdir)"/${PN}/interface
doins interface/*.tcl || die "doins failed (interface)"
insinto "$(games_get_libdir)"/${PN}/script
doins script/*.{tcl,rc} || die "doins failed (script)"
insinto "$(games_get_libdir)"/${PN}/script/contrib
doins script/contrib/* || die "doins failed (contrib)"
insinto "$(games_get_libdir)"/${PN}/test
doins test/*.test || die "doins failed (test)"
doinfo mmucl.info
dodoc CHANGES TODO README
dohtml mmucl.html
prepgamesdirs
}
pkg_postinst() {
games_pkg_postinst
echo
elog "The executable for this is mmucl2."
}
|