summaryrefslogtreecommitdiff
blob: 5d6d71bf90d2f0387f3317a64e99cbf00564e20a (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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI=5

WX_GTK_VER=2.8
PYTHON_COMPAT=( python2_7 )
inherit flag-o-matic subversion wxwidgets autotools python-single-r1 games

DESCRIPTION="Cross-platform MUD client"
HOMEPAGE="http://wxmud.sourceforge.net/"
SRC_URI=""
ESVN_REPO_URI="https://wxmud.svn.sourceforge.net/svnroot/wxmud/trunk"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="python"

RDEPEND="x11-libs/wxGTK:${WX_GTK_VER}
	>=x11-libs/gtk+-2.4:2
	python? ( ${PYTHON_DEPS} )"
DEPEND="${RDEPEND}"

pkg_setup() {
	games_pkg_setup
	use python && python-single-r1_pkg_setup
}

src_unpack() {
	subversion_src_unpack
	cd "${S}" || die
	AT_M4DIR="m4" eautoreconf
}

src_compile() {
	append-flags -fno-strict-aliasing
	# No audiere in portage yet, so useful MSP support is disabled for now
	egamesconf \
		--with-wx-config="${WX_CONFIG}" \
		$(use_enable python) \
		--disable-audiere
	emake
}

src_install() {
	default
	dodoc docs/input.txt docs/scripting.txt
	prepgamesdirs
}