diff options
author | 2003-09-10 19:03:12 +0000 | |
---|---|---|
committer | 2003-09-10 19:03:12 +0000 | |
commit | dadcbe068c35d74868010de7a74a50c5eef228c7 (patch) | |
tree | 71bf44569e2e5655fa0f404f5f2252964a7c7ae7 /games-mud/tf/tf-40-r2.ebuild | |
parent | umodpack is in games-util now (diff) | |
download | gentoo-2-dadcbe068c35d74868010de7a74a50c5eef228c7.tar.gz gentoo-2-dadcbe068c35d74868010de7a74a50c5eef228c7.tar.bz2 gentoo-2-dadcbe068c35d74868010de7a74a50c5eef228c7.zip |
welcome to games-mud
Diffstat (limited to 'games-mud/tf/tf-40-r2.ebuild')
-rw-r--r-- | games-mud/tf/tf-40-r2.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/games-mud/tf/tf-40-r2.ebuild b/games-mud/tf/tf-40-r2.ebuild new file mode 100644 index 000000000000..ae94e302d713 --- /dev/null +++ b/games-mud/tf/tf-40-r2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-mud/tf/tf-40-r2.ebuild,v 1.1 2003/09/10 19:03:12 vapier Exp $ + +MY_P=${P}s1 +S=${WORKDIR}/${MY_P} +DESCRIPTION="A small full-featured MUD client" +HOMEPAGE="http://tf.tcp.com/~hawkeye/tf/" +SRC_URI="mirror://tinyfugue/${MY_P}.tar.gz + doc? mirror://tinyfugue/${MY_P}-help.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" + +DEPEND=">=sys-libs/ncurses-5.2" + +src_unpack() { + unpack ${A} + cd ${S} + patch -p1 < ${FILESDIR}/${P}-gentoo.diff || die +} +src_compile() { + + dodir /usr/bin /usr/lib/${MY_P}-lib + dodir /usr/share/man/man1 + echo 'y' | ./unixmake config || die + ./unixmake all || die +} + +src_install () { + + dobin src/tf + newman src/tf.1.catman tf.1 + insinto /usr/lib/${MY_P}-lib + insopts -m0755 + doins tf-lib/* + doins CHANGES + dodoc CHANGES COPYING CREDITS README + use doc && dohtml -r ${WORKDIR}/${MY_P}-help +} |