summaryrefslogtreecommitdiff
blob: b6bd98195dff6abde5f8a8e0b567f916e21e0d03 (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
60
61
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=2
inherit games

DESCRIPTION="A MMORPG based on the works of J.R.R. Tolkien"
HOMEPAGE="http://www.tomenet.net/"
SRC_URI="http://angband.oook.cz/${PN}-nightly/${PN}-cvs-snapshot-${PV}.tar.bz2"

LICENSE="Moria"
KEYWORDS="x86 amd64"
IUSE="X Xaw3d"

SLOT="0"

DEPEND="sys-libs/ncurses
	X? ( x11-libs/libX11 )
	Xaw3d? ( x11-libs/libXaw )"

S=${WORKDIR}/${PN}/src

src_prepare() {
	sed -i \
		-e '/^CC =/d' \
		makefile \
		|| die "sed failed"
}

src_compile() {
	local GENTOO_DEFINES="-DUSE_GCU "
	local GENTOO_LIBS="-lncurses -lcrypt -lm"

	if use Xaw3d; then
		GENTOO_DEFINES="${GENTOO_DEFINES} -DUSE_XAW"
	elif use X; then
		GENTOO_DEFINES="${GENTOO_DEFINES} -DUSE_X11"
	fi
	if use X; then
		GENTOO_LIBS="${GENTOO_LIBS} -lX11"
	fi
	if use Xaw3d; then
		GENTOO_LIBS="${GENTOO_LIBS} -lXaw"
	fi
	emake CFLAGS="${CFLAGS} ${GENTOO_DEFINES} -Iserver -Iserver/lua" \
		LIBS="${GENTOO_LIBS}" tomenet \
		|| die "emake failed"
}

src_install() {
	dogamesbin ${PN} || die "dogamesbin failed"
	dodoc ../{ChangeLog,TomeNET-Guide.txt,changes.txt}
	prepgamesdirs
}

pkg_postinst() {
	games_pkg_postinst
	elog "To start playing right away:"
	elog "$ tomenet totem.ielf.org"
}