summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2011-12-10 06:34:45 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2011-12-10 06:34:45 +0000
commit65dda4491c16bcefeaccf5389fba1843e884daca (patch)
tree7315c8e8e9419c9f2c8a3ab16f13406ee4aae026 /games-mud
parentRemove glib and gdk-pixbuf deps as they aren't explicitly required and gtk pu... (diff)
downloadgentoo-2-65dda4491c16bcefeaccf5389fba1843e884daca.tar.gz
gentoo-2-65dda4491c16bcefeaccf5389fba1843e884daca.tar.bz2
gentoo-2-65dda4491c16bcefeaccf5389fba1843e884daca.zip
version bump with patch from Michael (kensington) (bug #394167)
(Portage version: 2.1.10.11/cvs/Linux i686)
Diffstat (limited to 'games-mud')
-rw-r--r--games-mud/powwow/ChangeLog9
-rw-r--r--games-mud/powwow/powwow-1.2.16.ebuild38
2 files changed, 45 insertions, 2 deletions
diff --git a/games-mud/powwow/ChangeLog b/games-mud/powwow/ChangeLog
index d4310102c6c0..82b44d4c6bfd 100644
--- a/games-mud/powwow/ChangeLog
+++ b/games-mud/powwow/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for games-mud/powwow
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/games-mud/powwow/ChangeLog,v 1.14 2009/06/30 21:24:30 fauli Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/games-mud/powwow/ChangeLog,v 1.15 2011/12/10 06:34:45 mr_bones_ Exp $
+
+*powwow-1.2.16 (10 Dec 2011)
+
+ 10 Dec 2011; Michael Sterrett <mr_bones_@gentoo.org> +powwow-1.2.16.ebuild:
+ version bump with patch from Michael (kensington) (bug #394167)
30 Jun 2009; Christian Faulhammer <fauli@gentoo.org> powwow-1.2.15.ebuild:
stable x86, bug 275895
diff --git a/games-mud/powwow/powwow-1.2.16.ebuild b/games-mud/powwow/powwow-1.2.16.ebuild
new file mode 100644
index 000000000000..024ed4f30f5c
--- /dev/null
+++ b/games-mud/powwow/powwow-1.2.16.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/games-mud/powwow/powwow-1.2.16.ebuild,v 1.1 2011/12/10 06:34:45 mr_bones_ Exp $
+
+EAPI=2
+inherit autotools games
+
+DESCRIPTION="PowWow Console MUD Client"
+HOMEPAGE="http://hoopajoo.net/projects/powwow.html"
+SRC_URI="http://hoopajoo.net/static/projects/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND="sys-libs/ncurses"
+
+src_prepare() {
+ # note that that the extra, seemingly-redundant files installed are
+ # actually used by in-game help commands
+ sed -i \
+ -e "s/pkgdata_DATA = powwow.doc/pkgdata_DATA = /" \
+ Makefile.am || die
+ eautoreconf
+}
+
+src_configure() {
+ egamesconf \
+ --disable-dependency-tracking \
+ --includedir=/usr/include
+}
+
+src_install () {
+ emake DESTDIR="${D}" install || die
+ dodoc ChangeLog Config.demo Hacking NEWS powwow.{doc,help} README.* TODO
+ prepgamesdirs
+}