Gentoo Archives: gentoo-commits

From: "Azamat H. Hackimov" <winterheart@××××××.ru>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gamerlay:master commit in: games-mud/tf/
Date: Thu, 08 Aug 2019 21:47:02
Message-Id: 1565297504.ccbb08f074fc2fb375b69c716cbada728e955713.winterheart@gentoo
1 commit: ccbb08f074fc2fb375b69c716cbada728e955713
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Thu Aug 8 20:51:44 2019 +0000
4 Commit: Azamat H. Hackimov <winterheart <AT> gentoo <DOT> ru>
5 CommitDate: Thu Aug 8 20:51:44 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/gamerlay.git/commit/?id=ccbb08f0
7
8 games-mud/tf: remove
9
10 Deprecated eclasses, in portage stable version
11
12 games-mud/tf/metadata.xml | 8 -----
13 games-mud/tf/tf-9999.ebuild | 73 ---------------------------------------------
14 2 files changed, 81 deletions(-)
15
16 diff --git a/games-mud/tf/metadata.xml b/games-mud/tf/metadata.xml
17 deleted file mode 100644
18 index 0326717..0000000
19 --- a/games-mud/tf/metadata.xml
20 +++ /dev/null
21 @@ -1,8 +0,0 @@
22 -<?xml version="1.0" encoding="UTF-8"?>
23 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
24 -<pkgmetadata>
25 - <maintainer>
26 - <email>wizzleby@×××××.com</email>
27 - <name>Locke Shinseiko</name>
28 - </maintainer>
29 -</pkgmetadata>
30
31 diff --git a/games-mud/tf/tf-9999.ebuild b/games-mud/tf/tf-9999.ebuild
32 deleted file mode 100644
33 index d6b81f9..0000000
34 --- a/games-mud/tf/tf-9999.ebuild
35 +++ /dev/null
36 @@ -1,73 +0,0 @@
37 -# Copyright 1999-2011 Gentoo Foundation
38 -# Distributed under the terms of the GNU General Public License v2
39 -# $Header: /var/cvsroot/gentoo-x86/games-mud/tf/tf-50_beta8.ebuild,v 1.4 2009/12/30 00:26:03 mr_bones_ Exp $
40 -
41 -EAPI=2
42 -
43 -EGIT_BRANCH="widechar"
44 -inherit games git-2
45 -
46 -MY_P="tf-50b8"
47 -MY_PN="tinyfugue"
48 -DESCRIPTION="A small, flexible, screen-oriented MUD client (aka TinyFugue)"
49 -HOMEPAGE="http://tinyfugue.sourceforge.net/"
50 -EGIT_REPO_URI="git://github.com/kruton/tinyfugue.git"
51 -SRC_URI="doc? ( mirror://sourceforge/tinyfugue/${MY_P}-help.tar.gz )"
52 -
53 -LICENSE="GPL-2"
54 -SLOT="0"
55 -KEYWORDS=""
56 -IUSE="debug doc ipv6 ssl unicode"
57 -
58 -DEPEND="ssl? ( dev-libs/openssl )
59 - dev-libs/libpcre"
60 -RDEPEND="${DEPEND}"
61 -
62 -S=${WORKDIR}/${MY_PN}
63 -
64 -src_unpack() {
65 - use doc && unpack ${A}
66 - git-2_src_unpack
67 -}
68 -
69 -src_configure() {
70 - STRIP=: egamesconf \
71 - $(use_enable unicode widechar) \
72 - $(use_enable ssl) \
73 - $(use_enable debug core) \
74 - $(use_enable ipv6 inet6) \
75 - --enable-manpage || die
76 -}
77 -
78 -src_compile() {
79 - emake || die "emake failed"
80 -}
81 -
82 -src_install() {
83 - dogamesbin src/tf || die "dogamesbin failed"
84 - newman src/tf.1.nroffman tf.1
85 - dodoc CHANGES CREDITS README
86 -
87 - insinto "${GAMES_DATADIR}"/${PN}-lib
88 - # the application looks for this file here if /changes is called.
89 - # see comments on bug #23274
90 - doins CHANGES || die "doins failed"
91 - insopts -m0755
92 - doins tf-lib/* || die "doins failed"
93 - if use doc ; then
94 - dohtml -r *.html commands topics
95 - fi
96 - prepgamesdirs
97 -}
98 -
99 -pkg_postinst() {
100 - games_pkg_postinst
101 - use ipv6 && {
102 - echo
103 - ewarn "You have merged TinyFugue with IPv6-support."
104 - ewarn "Support for IPv6 is still being experimental."
105 - ewarn "If you experience problems with connecting to hosts,"
106 - ewarn "try re-merging this package with USE="-ipv6""
107 - echo
108 - }
109 -}