From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QByJA-0004Sv-61 for garchives@archives.gentoo.org; Mon, 18 Apr 2011 23:56:44 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4A16D1C075; Mon, 18 Apr 2011 23:56:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0D1D21C075 for ; Mon, 18 Apr 2011 23:56:36 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6143C1B4078 for ; Mon, 18 Apr 2011 23:56:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id B78288006D for ; Mon, 18 Apr 2011 23:56:35 +0000 (UTC) From: "Locke Shinseiko" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Locke Shinseiko" Message-ID: <70b31729bed68be47da8ca1bbb006d062694b499.wizzleby@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: games-mud/tf/ X-VCS-Repository: proj/gamerlay X-VCS-Files: games-mud/tf/metadata.xml games-mud/tf/tf-9999.ebuild X-VCS-Directories: games-mud/tf/ X-VCS-Committer: wizzleby X-VCS-Committer-Name: Locke Shinseiko X-VCS-Revision: 70b31729bed68be47da8ca1bbb006d062694b499 Date: Mon, 18 Apr 2011 23:56:35 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: ea1b4160bcc33b98fda90309760be720 commit: 70b31729bed68be47da8ca1bbb006d062694b499 Author: Locke Shinseiko gmail com> AuthorDate: Mon Apr 18 23:56:12 2011 +0000 Commit: Locke Shinseiko gmail com> CommitDate: Mon Apr 18 23:56:12 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/gamerlay.git;= a=3Dcommit;h=3D70b31729 [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 @@ + + + + no-herd + + wizzleby@gmail.com + Locke Shinseiko + + 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=3D2 + +EGIT_BRANCH=3D"widechar" +inherit games git + +MY_P=3D"tf-50b8" +MY_PN=3D"tinyfugue" +DESCRIPTION=3D"A small, flexible, screen-oriented MUD client (aka TinyFu= gue)" +HOMEPAGE=3D"http://tinyfugue.sourceforge.net/" +EGIT_REPO_URI=3D"git://github.com/kruton/tinyfugue.git" +SRC_URI=3D"doc? ( mirror://sourceforge/tinyfugue/${MY_P}-help.tar.gz )" + +LICENSE=3D"GPL-2" +SLOT=3D"0" +KEYWORDS=3D"" +IUSE=3D"debug doc ipv6 ssl unicode" + +DEPEND=3D"ssl? ( dev-libs/openssl ) + dev-libs/libpcre" +RDEPEND=3D"${DEPEND}" + +S=3D${WORKDIR}/${MY_PN} + +src_unpack() { + use doc && unpack ${A} + git_src_unpack +} + +src_configure() { + STRIP=3D: 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=3D"-ipv6"" + echo + } +}