diff options
author | 2004-08-19 01:57:02 +0000 | |
---|---|---|
committer | 2004-08-19 01:57:02 +0000 | |
commit | d11f59239eb2a4e0a043f2a12e59e2b69534a6a7 (patch) | |
tree | 48f1b30398034401710b4494ac8ad18898c07fa3 /games-mud/powwow/powwow-1.2.5.ebuild | |
parent | macos stable (Manifest recommit) (diff) | |
download | gentoo-2-d11f59239eb2a4e0a043f2a12e59e2b69534a6a7.tar.gz gentoo-2-d11f59239eb2a4e0a043f2a12e59e2b69534a6a7.tar.bz2 gentoo-2-d11f59239eb2a4e0a043f2a12e59e2b69534a6a7.zip |
initial commit; ebuild based on the one submitted by Grzegorz Artur Daszuta via bug #57570
Diffstat (limited to 'games-mud/powwow/powwow-1.2.5.ebuild')
-rw-r--r-- | games-mud/powwow/powwow-1.2.5.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/games-mud/powwow/powwow-1.2.5.ebuild b/games-mud/powwow/powwow-1.2.5.ebuild new file mode 100644 index 000000000000..b0f415c38c03 --- /dev/null +++ b/games-mud/powwow/powwow-1.2.5.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-mud/powwow/powwow-1.2.5.ebuild,v 1.1 2004/08/19 01:57:02 mr_bones_ Exp $ + +inherit gcc eutils games + +DESCRIPTION="PowWow Console MUD Client" +HOMEPAGE="http://linuz.sns.it/~max/powwow/" +SRC_URI="http://linuz.sns.it/~max/powwow/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND=">=sys-libs/ncurses-5.2" + +POWWOWDIR="${GAMES_DATADIR}/${PN}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PV}-copyfile.patch" +} + +src_compile() { + emake \ + CC="$(gcc-getCC)" \ + CFLAGS="${CFLAGS} -DUSE_REGEXP -DPOWWOW_DIR=\"\\\"${POWWOWDIR}\\\"\"" \ + LDFLAGS="-lncurses" \ + powwow movie \ + || die "emake failed" +} + +src_install () { + dogamesbin powwow || die "dogamesbin failed" + newgamesbin movie movie_play + dosym movie_play "${GAMES_BINDIR}/movie2ascii" + insinto "${POWWOWDIR}" + doins powwow.help COPYING || die "doins failed" + dodoc README.* powwow.doc powwow-1.2.5.lsm Compile.how \ + Hacking Config.demo Changelog + prepgamesdirs +} |