Portage is a package management system used by Gentoo Linux
# ChangeLog for games-mud/gMOO
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/gMOO/ChangeLog,v 1.14 2007/07/21 19:32:18 nyhm Exp $
21 Jul 2007; Tristan Heaven
HOMEPAGE update, bug #185459
05 Nov 2006; Tristan Heaven
gMOO-0.4.8-r1.ebuild:
Change "tcltk" USE flag to "tcl", bug #17808
29 Jan 2006; Joshua Baergen
gMOO-0.4.8-r1.ebuild:
Add modular X dependencies.
15 Jun 2005; Chris Gianelloni
Removed INSTALL file.
28 Dec 2004; Ciaran McCreesh
Change encoding to UTF-8 for GLEP 31 compliance
29 Dec 2004; Joseph Jezak
Marked ppc stable.
21 Dec 2004; Dylan Carlson
keywords ~amd64
05 Nov 2004; Joseph Jezak
Added ~ppc.
01 Jul 2004; Jeremy Huddleston
virtual/glibc -> virtual/libc
30 Mar 2004; Michael Sterrett
kludge tcl support; virtual/x11; use emake/econf/use_enable; use bz2 source
24 Jan 2004; Michael Sterrett
header fix; tidy
*gMOO-0.4.8-r1 (1 Feb 2002)
30 Jul 2002: Jose Alberto Suárez López
Fix problems with nls.
17 jul 2002; Jose Alberto Suárez López
Added LICENSE, KEYWORDS.
1 Feb 2002; G.Bevin
Added initial ChangeLog which should be updated whenever the package is
updated in any way. This changelog is targetted to users. This means that the
comments should well explained and written in clean English. The details about
writing correct changelogs are explained in the skel.ChangeLog file which you
can find in the root directory of the portage repository.
AUX gMOO.patch 565 RMD160 7f6543d6705e05efc26d1471642a2ea4c2be087d SHA1 76040e0ae5f0ea06a412beeb21a227d72a801e62 SHA256 1dcf8d2c45f8d6b4e6c0e3ac152b602d18e51c90ddc56dbdf0582cffe05181df
DIST gMOO-0.4.8.tar.bz2 221934 RMD160 9aa34df38acaac08ac26f2ea6c601ee58110f799 SHA1 9873b524967062435b51b6ca1d25c047b73dd22b SHA256 bced044a1a7c4ebacd6a3f564c5c964773d6621b206169953251698522eede34
EBUILD gMOO-0.4.8-r1.ebuild 994 RMD160 b44c9c69e198fba3120b401765a05bbc41595ba5 SHA1 efe937d3a4ac8087ad288d6a3b389f2dfbd23b99 SHA256 d9822166acb6b4397c3cdf34c55d265199b3bb4bfc687ae852b5b0266bebd2b8
MISC ChangeLog 2071 RMD160 a4637ffa7b83e069fb77cf74ee11f390d35b5bf9 SHA1 ba2b033f4624be878af8c27b2ddb8584b69de6dd SHA256 cf3b5fa847e4b6a452cc317ebef2e1539ed4410f254d3fa3691d99e4305df32b
MISC metadata.xml 158 RMD160 cbd9984bb6b426c8c9cee5022fe0a26261612fea SHA1 be5251fa1dacef5c41b74761bb1c8c54fb633b9e SHA256 1423a4fdd4a79b1728a2056d9e300f7e1074253095d82726218d9e9b953888a3
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-mud/gMOO/gMOO-0.4.8-r1.ebuild,v 1.13 2007/07/21 19:32:18 nyhm Exp $
inherit eutils
DESCRIPTION="GTK+ Based MOO client"
HOMEPAGE="http://www.gmoo.net/gmoo/"
SRC_URI="http://www.nowmoo.demon.nl/packages/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 x86 ppc"
IUSE="nls tcl"
RDEPEND="x11-libs/libXi
=x11-libs/gtk+-1.2*
nls? ( virtual/libintl )
tcl? ( dev-lang/tcl )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd "${S}"
use nls && epatch "${FILESDIR}"/gMOO.patch
sed -i \
-e "s/-ltcl8.0/-ltcl/" configure \
|| die "sed configure failed"
}
src_compile() {
econf \
$(use_enable nls) \
$(use_enable tcl) \
|| die
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README VERSION NEWS TODO ChangeLog || die "dodoc failed"
}