Portage is a package management system used by Gentoo Linux
# ChangeLog for games-mud/xpertmud
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/xpertmud/ChangeLog,v 1.8 2006/05/31 15:53:47 flameeyes Exp $
31 May 2006; Diego Pettenò
xpertmud-3.1_pre1.ebuild:
Make sure aRTs is required. Thanks to Jakub Moc.
07 May 2006;
xpertmud-3.1_pre1.ebuild:
Fix fox gcc-4.1
30 Mar 2006;
xpertmud-3.1_pre1.ebuild:
Fix for gcc-3.4, bug #127446 reported by Alex Zorach
15 Mar 2005; Michael Sterrett
xpertmud-3.1_pre1.ebuild:
fix dep for bug #85421
03 Sep 2004; David Holm
Added to ~ppc.
04 Jul 2004; Carsten Lohrke
QA: need-kde after R/DEPEND
*xpertmud-3.1_pre1 (22 Feb 2004)
22 Feb 2004; Mike Frysinger
Initial import. Ebuild submitted by Jens Hoffrichter #37586.
AUX xpertmud-3.1_pre1-gcc34.patch 3711 RMD160 3fd48b92fe1b1275cd9bebbe9166d9d09986c785 SHA1 acd75c3dceead7c48c229539aac48aa2fd9df562 SHA256 97b1e07b99366b794cd6659213d7e15f77f23b2f1d4ad4e43ecdb65689377d6e
AUX xpertmud-3.1_pre1-gcc41.patch 285 RMD160 65b3c8b462b9c2b51b4d374a97138ddc8d0338cd SHA1 fdd6c9f7c03bbaad49632cacd42e78c136b96a6c SHA256 f44d35503efdf5827e4a1e19317ed076c50fbc18bbecd757754845f53f02c623
DIST xpertmud-3.1preview1.tar.bz2 773108 RMD160 ca34b46f599534e7a935de167712f21c2314b13b SHA1 fa9f26147208407fc2a3a9bdd4dc7a9bdc58fa21 SHA256 6ad2aa5c6cead8845c6f3cb5f73317c140ef465379a90bf3d42001c5d029d996
EBUILD xpertmud-3.1_pre1.ebuild 1050 RMD160 58a9db8841ae2761706d747eddfe26364a6c9753 SHA1 a2a33c84c5f27922e2a5fed587f34b8774ad25dd SHA256 fabb23e8fbc89d5940557190c824e270da0568b54583e1a0d1eed3ffbdab2fb5
MISC ChangeLog 1076 RMD160 0940ce2babf428858bdf916818608697e58974b5 SHA1 53b46cde14eabd9a46cda86cf201b219a4fb539d SHA256 d67d19f897e5960acf9ab27ebb96cb56500033730705a81f9e926d4797066ebe
MISC metadata.xml 782 RMD160 4e60f0ec432e1d5495464316549caa556de60787 SHA1 e4b9ee0ee812c9dc3828cd5467442b43c61ae6e4 SHA256 d20cc99f01ca6536111b2aa2406dde6404030b07ab0124a404338ee0f1459a8e
Xpertmud is an extensible perl and python scriptable MUD client. It is based on Qt and
KDE. There's a native Linux/KDE version as well as a native Windows/Win32 build. This
enables you to use the same script on your Linux box at home and on your Windows box at
work...
It supports multiple windows (which are scriptable), and you can use triggers, aliases or
whatever you want on every bit of text that comes from or goes to the server. There's a
stable and intuitive plugin API, so you can extend the client with Qt-based C++ code. A
sample plugin for the btech MUX is included.
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/xpertmud/xpertmud-3.1_pre1.ebuild,v 1.9 2006/05/31 15:53:47 flameeyes Exp $
ARTS_REQUIRED="yes"
inherit eutils kde
MY_PV="${PV/_pre/preview}"
DESCRIPTION="the eXtensible Python pErl Ruby scripTable MUD client"
HOMEPAGE="http://xpertmud.sourceforge.net/"
SRC_URI="mirror://sourceforge/xpertmud/xpertmud-${MY_PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE="python ruby"
DEPEND=">=sys-devel/libperl-5.6.1
python? ( >=dev-lang/python-2.2 )
ruby? ( >=dev-lang/ruby-1.8.0 )"
need-kde 3
S=${WORKDIR}/xpertmud-${MY_PV}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}"-gcc34.patch \
"${FILESDIR}/${P}"-gcc41.patch
}
src_compile() {
econf \
$(use_with python python) \
$(use_with ruby ruby) \
|| die
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog DESIGN NEWS README TODO
}