diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2012-07-02 19:11:39 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2012-07-02 19:11:39 +0000 |
commit | c516ff73101d60a82437068d63f798ac0cf9651c (patch) | |
tree | b4a24d71c5e81c30f95b0074d469131f51cd6872 /games-mud | |
parent | old (diff) | |
download | gentoo-2-c516ff73101d60a82437068d63f798ac0cf9651c.tar.gz gentoo-2-c516ff73101d60a82437068d63f798ac0cf9651c.tar.bz2 gentoo-2-c516ff73101d60a82437068d63f798ac0cf9651c.zip |
old
(Portage version: 2.1.10.65/cvs/Linux x86_64)
Diffstat (limited to 'games-mud')
-rw-r--r-- | games-mud/tf/ChangeLog | 5 | ||||
-rw-r--r-- | games-mud/tf/tf-50_beta8.ebuild | 59 |
2 files changed, 4 insertions, 60 deletions
diff --git a/games-mud/tf/ChangeLog b/games-mud/tf/ChangeLog index 6e10f29ecdc5..f339b74bfa91 100644 --- a/games-mud/tf/ChangeLog +++ b/games-mud/tf/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for games-mud/tf # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-mud/tf/ChangeLog,v 1.24 2012/05/27 21:09:58 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-mud/tf/ChangeLog,v 1.25 2012/07/02 19:11:39 mr_bones_ Exp $ + + 02 Jul 2012; Michael Sterrett <mr_bones_@gentoo.org> -tf-50_beta8.ebuild: + old 27 May 2012; Michael Sterrett <mr_bones_@gentoo.org> tf-50_beta8-r1.ebuild, +files/tf-50_beta8-pcre.patch: diff --git a/games-mud/tf/tf-50_beta8.ebuild b/games-mud/tf/tf-50_beta8.ebuild deleted file mode 100644 index 2600c114f23b..000000000000 --- a/games-mud/tf/tf-50_beta8.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-mud/tf/tf-50_beta8.ebuild,v 1.5 2011/03/28 13:22:09 phajdan.jr Exp $ - -inherit games - -MY_P="${P/_beta/b}" -DESCRIPTION="A small, flexible, screen-oriented MUD client (aka TinyFugue)" -HOMEPAGE="http://tinyfugue.sourceforge.net/" -SRC_URI="mirror://sourceforge/tinyfugue/${MY_P}.tar.gz - doc? ( mirror://sourceforge/tinyfugue/${MY_P}-help.tar.gz )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc x86" -IUSE="debug doc ipv6 ssl" - -DEPEND="ssl? ( dev-libs/openssl ) - dev-libs/libpcre" - -S=${WORKDIR}/${MY_P} - -src_compile() { - STRIP=: egamesconf \ - $(use_enable ssl) \ - $(use_enable debug core) \ - $(use_enable ipv6 inet6) \ - --enable-manpage || die - emake || die "emake failed" -} - -src_install() { - dogamesbin src/tf || die "dogamesbin failed" - newman src/tf.1.nroffman tf.1 - dodoc CHANGES CREDITS README - - insinto "${GAMES_DATADIR}"/${PN}-lib - # the application looks for this file here if /changes is called. - # see comments on bug #23274 - doins CHANGES || die "doins failed" - insopts -m0755 - doins tf-lib/* || die "doins failed" - if use doc ; then - dohtml -r *.html commands topics - fi - 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 - } -} |