Portage is a package management system used by Gentoo Linux
# ChangeLog for games-mud/wxmud
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/wxmud/ChangeLog,v 1.3 2008/02/13 13:43:04 leio Exp $
13 Feb 2008; Mart Raudsepp
Add ~amd64
28 Dec 2007; Mart Raudsepp
Use games.eclass
*wxmud-9999 (28 Dec 2007)
28 Dec 2007; Mart Raudsepp
+wxmud-9999.ebuild:
Initial import of wxMUD as a live SVN version till first release is out - a
graphical MUD client with MXP support amongst other more usual features
EBUILD wxmud-9999.ebuild 1112 RMD160 a6a62e9e8a1388c9486f1595b4ce564ea699eb6d SHA1 9da9670e22d3bcf465747c84d0fb7554cc8a8e49 SHA256 2b76c59e7472eb0e0b3a74930ad7c629dc33da656f4434aa226424ab338a047c
MISC ChangeLog 631 RMD160 db0930cee4270d73c2cb7c77e19cee762166a787 SHA1 70e47bc62fec5561bb7f2a02fb6950756b8eacf7 SHA256 ca844d59d391b3e12077cecefacb76c5a0f15c41be91d738d6128880b5c2d96a
MISC metadata.xml 380 RMD160 c37e0cfe08a6239b93e15cf8ddc99aa21d4962b6 SHA1 35942f5914779eecb8e6f5beabf2f43d11ad60db SHA256 54fd4d961ab7ae8bdf10092dfb41c592f3af7ac9b3a2989b97dbe36d456a8c05
wxMUD is an open source cross-platform graphical MUD client featuring MCCP, MXP and MSP support, among other usual features.
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/wxmud/wxmud-9999.ebuild,v 1.3 2008/02/13 13:43:04 leio Exp $
WX_GTK_VER=2.8
inherit flag-o-matic subversion wxwidgets autotools 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="~amd64 ~x86"
IUSE="python"
RDEPEND="=x11-libs/wxGTK-2.8*
>=x11-libs/gtk+-2.4
python? ( >=dev-lang/python-2.4 )"
DEPEND="${RDEPEND}"
src_unpack() {
subversion_src_unpack
cd "${S}"
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 \
|| die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS README TODO docs/input.txt docs/scripting.txt
prepgamesdirs
}