public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/gamerlay:master commit in: games-mud/tf/
@ 2011-04-18 23:56 Locke Shinseiko
  0 siblings, 0 replies; 3+ messages in thread
From: Locke Shinseiko @ 2011-04-18 23:56 UTC (permalink / raw
  To: gentoo-commits

commit:     70b31729bed68be47da8ca1bbb006d062694b499
Author:     Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
AuthorDate: Mon Apr 18 23:56:12 2011 +0000
Commit:     Locke Shinseiko <wizzleby <AT> gmail <DOT> com>
CommitDate: Mon Apr 18 23:56:12 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=70b31729

[games-mud/tf] Added tf-9999, incorporating unicode changes.

(Portage version: 2.2.0_alpha30/git/Linux x86_64, signed Manifest commit with key CE482794)

---
 games-mud/tf/metadata.xml   |    9 +++++
 games-mud/tf/tf-9999.ebuild |   73 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 82 insertions(+), 0 deletions(-)

diff --git a/games-mud/tf/metadata.xml b/games-mud/tf/metadata.xml
new file mode 100644
index 0000000..e6263c7
--- /dev/null
+++ b/games-mud/tf/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<herd>no-herd</herd>
+	<maintainer>
+		<email>wizzleby@gmail.com</email>
+		<name>Locke Shinseiko</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/games-mud/tf/tf-9999.ebuild b/games-mud/tf/tf-9999.ebuild
new file mode 100644
index 0000000..6b900be
--- /dev/null
+++ b/games-mud/tf/tf-9999.ebuild
@@ -0,0 +1,73 @@
+# 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.4 2009/12/30 00:26:03 mr_bones_ Exp $
+
+EAPI=2
+
+EGIT_BRANCH="widechar"
+inherit games git
+
+MY_P="tf-50b8"
+MY_PN="tinyfugue"
+DESCRIPTION="A small, flexible, screen-oriented MUD client (aka TinyFugue)"
+HOMEPAGE="http://tinyfugue.sourceforge.net/"
+EGIT_REPO_URI="git://github.com/kruton/tinyfugue.git"
+SRC_URI="doc? ( mirror://sourceforge/tinyfugue/${MY_P}-help.tar.gz )"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+IUSE="debug doc ipv6 ssl unicode"
+
+DEPEND="ssl? ( dev-libs/openssl )
+	dev-libs/libpcre"
+RDEPEND="${DEPEND}"
+
+S=${WORKDIR}/${MY_PN}
+
+src_unpack() {
+	use doc && unpack ${A}
+	git_src_unpack
+}
+
+src_configure() {
+	STRIP=: egamesconf \
+		$(use_enable unicode widechar) \
+		$(use_enable ssl) \
+		$(use_enable debug core) \
+		$(use_enable ipv6 inet6) \
+		--enable-manpage || die
+}
+
+src_compile() {
+	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
+	}
+}



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/gamerlay:master commit in: games-mud/tf/
@ 2013-10-14  9:54 Fabio Erculiani
  0 siblings, 0 replies; 3+ messages in thread
From: Fabio Erculiani @ 2013-10-14  9:54 UTC (permalink / raw
  To: gentoo-commits

commit:     b9c3339a98327f80a47034cc67fa901ccbbc53bc
Author:     Fabio Erculiani <lxnay <AT> sabayon <DOT> org>
AuthorDate: Mon Oct 14 09:51:09 2013 +0000
Commit:     Fabio Erculiani <lxnay <AT> gentoo <DOT> org>
CommitDate: Mon Oct 14 09:51:09 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=b9c3339a

[games-mud/tf] migrate to git-2 eclass

---
 games-mud/tf/tf-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-mud/tf/tf-9999.ebuild b/games-mud/tf/tf-9999.ebuild
index 6b900be..d6b81f9 100644
--- a/games-mud/tf/tf-9999.ebuild
+++ b/games-mud/tf/tf-9999.ebuild
@@ -5,7 +5,7 @@
 EAPI=2
 
 EGIT_BRANCH="widechar"
-inherit games git
+inherit games git-2
 
 MY_P="tf-50b8"
 MY_PN="tinyfugue"
@@ -27,7 +27,7 @@ S=${WORKDIR}/${MY_PN}
 
 src_unpack() {
 	use doc && unpack ${A}
-	git_src_unpack
+	git-2_src_unpack
 }
 
 src_configure() {


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/gamerlay:master commit in: games-mud/tf/
@ 2019-08-08 21:46 Azamat H. Hackimov
  0 siblings, 0 replies; 3+ messages in thread
From: Azamat H. Hackimov @ 2019-08-08 21:46 UTC (permalink / raw
  To: gentoo-commits

commit:     ccbb08f074fc2fb375b69c716cbada728e955713
Author:     Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
AuthorDate: Thu Aug  8 20:51:44 2019 +0000
Commit:     Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
CommitDate: Thu Aug  8 20:51:44 2019 +0000
URL:        https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=ccbb08f0

games-mud/tf: remove

Deprecated eclasses, in portage stable version

 games-mud/tf/metadata.xml   |  8 -----
 games-mud/tf/tf-9999.ebuild | 73 ---------------------------------------------
 2 files changed, 81 deletions(-)

diff --git a/games-mud/tf/metadata.xml b/games-mud/tf/metadata.xml
deleted file mode 100644
index 0326717..0000000
--- a/games-mud/tf/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer>
-		<email>wizzleby@gmail.com</email>
-		<name>Locke Shinseiko</name>
-	</maintainer>
-</pkgmetadata>

diff --git a/games-mud/tf/tf-9999.ebuild b/games-mud/tf/tf-9999.ebuild
deleted file mode 100644
index d6b81f9..0000000
--- a/games-mud/tf/tf-9999.ebuild
+++ /dev/null
@@ -1,73 +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.4 2009/12/30 00:26:03 mr_bones_ Exp $
-
-EAPI=2
-
-EGIT_BRANCH="widechar"
-inherit games git-2
-
-MY_P="tf-50b8"
-MY_PN="tinyfugue"
-DESCRIPTION="A small, flexible, screen-oriented MUD client (aka TinyFugue)"
-HOMEPAGE="http://tinyfugue.sourceforge.net/"
-EGIT_REPO_URI="git://github.com/kruton/tinyfugue.git"
-SRC_URI="doc? ( mirror://sourceforge/tinyfugue/${MY_P}-help.tar.gz )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="debug doc ipv6 ssl unicode"
-
-DEPEND="ssl? ( dev-libs/openssl )
-	dev-libs/libpcre"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${MY_PN}
-
-src_unpack() {
-	use doc && unpack ${A}
-	git-2_src_unpack
-}
-
-src_configure() {
-	STRIP=: egamesconf \
-		$(use_enable unicode widechar) \
-		$(use_enable ssl) \
-		$(use_enable debug core) \
-		$(use_enable ipv6 inet6) \
-		--enable-manpage || die
-}
-
-src_compile() {
-	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
-	}
-}


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-08-08 21:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-14  9:54 [gentoo-commits] proj/gamerlay:master commit in: games-mud/tf/ Fabio Erculiani
  -- strict thread matches above, loose matches on Subject: below --
2019-08-08 21:46 Azamat H. Hackimov
2011-04-18 23:56 Locke Shinseiko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox