summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-06-12 06:25:04 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-06-12 06:25:04 +0000
commit07a4e9b2a66f882b0c6befdf2a5b89202c2a622f (patch)
tree1dc8679d9c59495d8824fc6c0d87a5366c6de806 /games-mud
parentCleanups again, see Changelog for details. (Manifest recommit) (diff)
downloadgentoo-2-07a4e9b2a66f882b0c6befdf2a5b89202c2a622f.tar.gz
gentoo-2-07a4e9b2a66f882b0c6befdf2a5b89202c2a622f.tar.bz2
gentoo-2-07a4e9b2a66f882b0c6befdf2a5b89202c2a622f.zip
clean older ebuild
Diffstat (limited to 'games-mud')
-rw-r--r--games-mud/tf/files/digest-tf-50_alpha111
-rw-r--r--games-mud/tf/tf-50_alpha11.ebuild59
2 files changed, 0 insertions, 60 deletions
diff --git a/games-mud/tf/files/digest-tf-50_alpha11 b/games-mud/tf/files/digest-tf-50_alpha11
deleted file mode 100644
index 7d1610ae438d..000000000000
--- a/games-mud/tf/files/digest-tf-50_alpha11
+++ /dev/null
@@ -1 +0,0 @@
-MD5 47ebb580d0d10dc294e1c5bc52f157c9 tf-50a11.tar.gz 846552
diff --git a/games-mud/tf/tf-50_alpha11.ebuild b/games-mud/tf/tf-50_alpha11.ebuild
deleted file mode 100644
index 611e6dd83749..000000000000
--- a/games-mud/tf/tf-50_alpha11.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2004 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/games-mud/tf/tf-50_alpha11.ebuild,v 1.4 2004/05/12 01:13:12 mr_bones_ Exp $
-
-inherit games
-
-MY_P="${P/_alpha/a}"
-S="${WORKDIR}/${MY_P}"
-DESCRIPTION="A small, flexible, screen-oriented MUD client"
-HOMEPAGE="http://tf.tcp.com/~hawkeye/tf/"
-SRC_URI="http://ftp.tcp.com/pub/mud/Clients/tinyfugue/${MY_P}.tar.gz"
-
-KEYWORDS="~x86"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="ipv6 doc debug"
-
-DEPEND="sys-libs/zlib
- >=sys-libs/ncurses-5.2"
-
-src_compile() {
- local myconf
- use debug || myconf="--enable-strip"
- use ipv6 && myconf="${myconf} --enable-inet6"
-
- egamesconf ${myconf} --enable-manpage || die
- emake || die "emake failed"
-}
-
-src_install() {
- dogamesbin src/tf
- newman src/tf.1.catman tf.1
-
- insinto ${GAMES_LIBDIR}/${PN}-lib
- insopts -m0755
- doins tf-lib/*
- # the application looks for this file here # if /changes is called.
- # see comments on bug 23274
- doins CHANGES
-
- dodoc CHANGES CREDITS README
-
- use doc && dohtml -r help/*
- # the html expects to find the CHANGES file uncompressed so...
- use doc && gzip -d ${D}/usr/share/doc/${P}/CHANGES.gz
- prepgamesdirs
-}
-
-pkg_postinst() {
- games_pkg_postinst
- use ipv6 && {
- echo
- ewarn "You have merged TinyFugue with IPv6-support."
- ewarn "Support for IPv6 is still being experimental."
- ewarn "If you experience problems with connecting to hosts,"
- ewarn "try re-merging this package with USE="-ipv6""
- echo
- }
-}