diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 05:35:26 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 05:35:26 -0500 |
| commit | f716a9fe6455d39eef01e718aae68dae61c19704 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /games-mud | |
| parent | 3f9cf298e89cd5037b982abba06091224ee76daf (diff) | |
| download | baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip | |
Adding metadata
Diffstat (limited to 'games-mud')
32 files changed, 0 insertions, 772 deletions
diff --git a/games-mud/circlemud/Manifest b/games-mud/circlemud/Manifest deleted file mode 100644 index 7a0c5a3ea836..000000000000 --- a/games-mud/circlemud/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST circle-3.1.tar.bz2 1176136 BLAKE2B f48a8feeb2cca17f23142f3456e09bc319aa26e2e295badc0e80b9d5f87f09f30f697ffba87c2edefdd6f77c8c56af68e395532c4a2232687c02ad869c19fb3f SHA512 161a0fd74aa248f6b357447be1de2d7c55e1fd281e9621d1cf7eb02d802ae06f362a318eeb3eb2425aad96620f71775245775a3aa42250e4374e8c82947df194 diff --git a/games-mud/circlemud/circlemud-3.1-r2.ebuild b/games-mud/circlemud/circlemud-3.1-r2.ebuild deleted file mode 100644 index 7edb7395187d..000000000000 --- a/games-mud/circlemud/circlemud-3.1-r2.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit toolchain-funcs - -DESCRIPTION="A multi-user dungeon game system server" -HOMEPAGE="https://www.circlemud.org/" -SRC_URI="https://www.circlemud.org/pub/CircleMUD/3.x/circle-${PV}.tar.bz2" -S="${WORKDIR}"/circle-${PV} - -LICENSE="circlemud" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND="dev-libs/openssl:0= - virtual/libcrypt:=" -RDEPEND=" - ${DEPEND} - acct-group/gamestat -" - -PATCHES=( - "${FILESDIR}"/${P}-clang16.patch -) - -src_prepare() { - default - - cd src || die - - touch .accepted || die - - sed -i \ - -e 's:^read.*::' licheck || die - - # Now let's rename binaries (too many are very generic) - sed -i \ - -e "s:\.\./bin/autowiz:${PN}-autowiz:" limits.c || die - - tc-export CC - eapply "${FILESDIR}"/${P}-ldflags.patch -} - -src_compile() { - emake -C src -} - -src_install() { - local bin - - for bin in autowiz delobjs listrent mudpasswd play2to3 purgeplay \ - shopconv showplay sign split wld2html ; do - newbin bin/${bin} ${PN}-${bin} - done - - dobin bin/circle - - insinto /var/lib/${PN} - doins -r lib/* - - insinto /etc/${PN} - doins lib/etc/* - - dodoc doc/{README.UNIX,*.pdf,*.txt} ChangeLog FAQ README release_notes.${PV}.txt -} diff --git a/games-mud/circlemud/files/circlemud-3.1-clang16.patch b/games-mud/circlemud/files/circlemud-3.1-clang16.patch deleted file mode 100644 index e0e233442572..000000000000 --- a/games-mud/circlemud/files/circlemud-3.1-clang16.patch +++ /dev/null @@ -1,10 +0,0 @@ -cnf/ files did not play well with eautoreconf - -https://bugs.gentoo.org/874453 ---- a/configure -+++ b/configure -@@ -698,3 +698,3 @@ - --main(){return(0);} -+int main(void){return(0);} - EOF diff --git a/games-mud/circlemud/files/circlemud-3.1-ldflags.patch b/games-mud/circlemud/files/circlemud-3.1-ldflags.patch deleted file mode 100644 index fc86e5e7056e..000000000000 --- a/games-mud/circlemud/files/circlemud-3.1-ldflags.patch +++ /dev/null @@ -1,65 +0,0 @@ ---- src/Makefile.in.old 2010-09-16 12:19:26.000000000 +0200 -+++ src/Makefile.in 2010-09-16 12:19:41.000000000 +0200 -@@ -54,7 +54,7 @@ - $(MAKE) $(BINDIR)/circle - - $(BINDIR)/circle : $(OBJFILES) -- $(CC) -o $(BINDIR)/circle $(PROFILE) $(OBJFILES) $(LIBS) -+ $(CC) $(LDFLAGS) -o $(BINDIR)/circle $(PROFILE) $(OBJFILES) $(LIBS) - - clean: - rm -f *.o ---- src/util/Makefile.in.old 2010-09-16 12:31:01.000000000 +0200 -+++ src/util/Makefile.in 2010-09-16 12:32:08.000000000 +0200 -@@ -52,40 +52,40 @@ - - $(BINDIR)/autowiz: autowiz.c $(INCDIR)/conf.h $(INCDIR)/sysdep.h \ - $(INCDIR)/structs.h $(INCDIR)/utils.h $(INCDIR)/db.h -- $(CC) $(CFLAGS) -o $(BINDIR)/autowiz autowiz.c -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $(BINDIR)/autowiz autowiz.c - - $(BINDIR)/delobjs: delobjs.c $(INCDIR)/conf.h $(INCDIR)/sysdep.h \ - $(INCDIR)/structs.h $(INCDIR)/utils.h -- $(CC) $(CFLAGS) -o $(BINDIR)/delobjs delobjs.c -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $(BINDIR)/delobjs delobjs.c - - $(BINDIR)/listrent: listrent.c $(INCDIR)/conf.h $(INCDIR)/sysdep.h \ - $(INCDIR)/structs.h -- $(CC) $(CFLAGS) -o $(BINDIR)/listrent listrent.c -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $(BINDIR)/listrent listrent.c - - $(BINDIR)/mudpasswd: mudpasswd.c $(INCDIR)/conf.h $(INCDIR)/sysdep.h \ - $(INCDIR)/structs.h $(INCDIR)/utils.h -- $(CC) $(CFLAGS) -o $(BINDIR)/mudpasswd mudpasswd.c @CRYPTLIB@ -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $(BINDIR)/mudpasswd mudpasswd.c @CRYPTLIB@ - - $(BINDIR)/play2to3: play2to3.c $(INCDIR)/conf.h $(INCDIR)/sysdep.h -- $(CC) $(CFLAGS) -o $(BINDIR)/play2to3 play2to3.c -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $(BINDIR)/play2to3 play2to3.c - - $(BINDIR)/purgeplay: purgeplay.c $(INCDIR)/conf.h $(INCDIR)/sysdep.h \ - $(INCDIR)/structs.h $(INCDIR)/utils.h -- $(CC) $(CFLAGS) -o $(BINDIR)/purgeplay purgeplay.c -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $(BINDIR)/purgeplay purgeplay.c - - $(BINDIR)/shopconv: shopconv.c $(INCDIR)/conf.h $(INCDIR)/sysdep.h \ - $(INCDIR)/structs.h $(INCDIR)/db.h $(INCDIR)/utils.h $(INCDIR)/shop.h -- $(CC) $(CFLAGS) -o $(BINDIR)/shopconv shopconv.c -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $(BINDIR)/shopconv shopconv.c - - $(BINDIR)/showplay: showplay.c $(INCDIR)/conf.h $(INCDIR)/sysdep.h \ - $(INCDIR)/structs.h -- $(CC) $(CFLAGS) -o $(BINDIR)/showplay showplay.c -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $(BINDIR)/showplay showplay.c - - $(BINDIR)/sign: sign.c $(INCDIR)/conf.h $(INCDIR)/sysdep.h -- $(CC) $(CFLAGS) -o $(BINDIR)/sign sign.c @NETLIB@ -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $(BINDIR)/sign sign.c @NETLIB@ - - $(BINDIR)/split: split.c $(INCDIR)/conf.h $(INCDIR)/sysdep.h -- $(CC) $(CFLAGS) -o $(BINDIR)/split split.c -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $(BINDIR)/split split.c - - $(BINDIR)/wld2html: wld2html.c $(INCDIR)/conf.h $(INCDIR)/sysdep.h -- $(CC) $(CFLAGS) -o $(BINDIR)/wld2html wld2html.c -+ $(CC) $(LDFLAGS) $(CFLAGS) -o $(BINDIR)/wld2html wld2html.c diff --git a/games-mud/circlemud/metadata.xml b/games-mud/circlemud/metadata.xml deleted file mode 100644 index 3b1e1de0cd5f..000000000000 --- a/games-mud/circlemud/metadata.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>games@gentoo.org</email> - <name>Gentoo Games Project</name> -</maintainer> -<longdescription> -CircleMUD is a multi-user dungeon game system (MUD) written by Jeremy Elson, originally at -Johns Hopkins University's Department of Computer Science (I graduated in May of 1996). -CircleMUD is a derivative of DikuMUD Gamma 0.0, which was written in 1990 at DIKU, the -Department of Computer Science at the University of Copenhagen, by Katja Nyboe, Tom -Madsen, Hans Henrik Staerfeldt, Michael Seifert, and Sebastian Hammer. -</longdescription> -</pkgmetadata> diff --git a/games-mud/metadata.xml b/games-mud/metadata.xml deleted file mode 100644 index 217d37b82a82..000000000000 --- a/games-mud/metadata.xml +++ /dev/null @@ -1,35 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE catmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<catmetadata> - <longdescription lang="en"> - The games-mud category contains multi-user dungeon games. - </longdescription> - <longdescription lang="de"> - Die Kategorie games-mud enthält Multi-User Dungeon (MUD) Clients und Spiele. - </longdescription> - <longdescription lang="es"> - La categoría games-mud contiene juegos de tipo MUD multijugador. - </longdescription> - <longdescription lang="ja"> - games-mudカテゴリーには多人数用のダンジョン・ゲームが含まれています。 - </longdescription> - <longdescription lang="nl"> - De games-mud categorie bevat MUD (Multi-User Dungeon) spellen. - </longdescription> - <longdescription lang="vi"> - Nhóm games-mud chứa các trò chơi dạng multi-user dungeon. - </longdescription> - <longdescription lang="sk"> - Kategória games-mud obsahuje klienty a servery MUD (Multi User Dungeon). - </longdescription> - <longdescription lang="it"> - La categoria games-mud contiene giochi di tipo MUD (Multi User Dungeon). - </longdescription> - <longdescription lang="pt"> - A categoria games-mud contém jogos do tipo MUD (Multi User - Dungeon). - </longdescription> - <longdescription lang="pl"> - Kategoria games-mud zawiera gry wieloosobowe typu MUD. - </longdescription> -</catmetadata> diff --git a/games-mud/mudix/Manifest b/games-mud/mudix/Manifest deleted file mode 100644 index 783448bddb1d..000000000000 --- a/games-mud/mudix/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST mudix-4.3.tar.gz 43003 BLAKE2B e7bc7a053de3987ae9903cda01b6d5cf3bcf7967bc25bc502d8968792638b890afadaf2e66f09890a83beb80e5e340ec4af8b8559f967020ed76a4954b925b0a SHA512 9f9c8ee43ded9b837eb50e463e67b666e0b2b34334d93e9a4471fa792da99350042cd8abbd9f8e97aa7ba114736b2d99c1b6595c76a5254270a514681130eb94 diff --git a/games-mud/mudix/files/mudix-4.3-as-needed.patch b/games-mud/mudix/files/mudix-4.3-as-needed.patch deleted file mode 100644 index 4230ac507763..000000000000 --- a/games-mud/mudix/files/mudix-4.3-as-needed.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- a/src/Makefile.in 2009-02-08 17:32:15.000000000 +0100 -+++ b/src/Makefile.in 2009-02-08 17:34:15.000000000 +0100 -@@ -23,7 +23,7 @@ - - $(EXEC): $(O_FILES) - rm -f $(EXEC) -- $(CC) -o $(EXEC) $(L_FLAGS) $(O_FILES) -+ $(CC) -o $(EXEC) $(LDFLAGS) $(O_FILES) $(L_FLAGS) - - .c.o: mudix.h conf.h - $(CC) -c $(C_FLAGS) $< diff --git a/games-mud/mudix/files/mudix-4.3-tinfo.patch b/games-mud/mudix/files/mudix-4.3-tinfo.patch deleted file mode 100644 index 0c11f235244e..000000000000 --- a/games-mud/mudix/files/mudix-4.3-tinfo.patch +++ /dev/null @@ -1,43 +0,0 @@ -https://bugs.gentoo.org/690072 - ---- mudix-4.3/configure.in -+++ mudix-4.3/configure.in -@@ -4,9 +4,12 @@ - - dnl Checks for programs. - AC_PROG_CC -+PKG_PROG_PKG_CONFIG - - dnl Checks for libraries. --AC_CHECK_LIB(ncurses, initscr) -+PKG_CHECK_MODULES(NCURSES, ncurses,, -+ [AC_MSG_ERROR([Cannot find ncurses libs])] -+ ) - AC_CHECK_LIB(panel, new_panel) - - dnl Checks for header files. ---- mudix-4.3/Makefile.in -+++ mudix-4.3/Makefile.in -@@ -1,5 +1,7 @@ -+export NCURSES_LIBS=@NCURSES_LIBS@ -+ - all: -- (cd src; make) -+ $(MAKE) -C src - - clean: -- (cd src; make $@) -+ $(MAKE) -C src $@ ---- mudix-4.3/src/Makefile.in -+++ mudix-4.3/src/Makefile.in -@@ -2,9 +2,8 @@ - #DEBUG = -DKEY_DEBUG - DEBUG = - EXEC = ../mudix --O_FLAGS = -O -g - C_FLAGS = $(O_FLAGS) $(DEBUG) -Wall -I../include --L_FLAGS = $(O_FLAGS) $(DEBUG) -lpanel -lncurses -+L_FLAGS = $(O_FLAGS) $(DEBUG) -lpanel $(NCURSES_LIBS) - - O_FILES = alias.o \ - commands.o \ diff --git a/games-mud/mudix/metadata.xml b/games-mud/mudix/metadata.xml deleted file mode 100644 index 1c3ba213c494..000000000000 --- a/games-mud/mudix/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>games@gentoo.org</email> - <name>Gentoo Games Project</name> -</maintainer> -</pkgmetadata> diff --git a/games-mud/mudix/mudix-4.3-r2.ebuild b/games-mud/mudix/mudix-4.3-r2.ebuild deleted file mode 100644 index 43a39d82d5cd..000000000000 --- a/games-mud/mudix/mudix-4.3-r2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="A small, stable MUD client for the console" -HOMEPAGE="http://dw.nl.eu.org/mudix.html" -SRC_URI="http://dw.nl.eu.org/mudix/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="sys-libs/ncurses:0=" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${P}-as-needed.patch - "${FILESDIR}"/${P}-tinfo.patch -) - -src_prepare() { - default - eautoreconf -} - -src_compile() { - emake O_FLAGS="${CFLAGS}" -} - -src_install() { - dobin mudix - dodoc README sample.usr -} diff --git a/games-mud/powwow/Manifest b/games-mud/powwow/Manifest deleted file mode 100644 index be011b1d1f81..000000000000 --- a/games-mud/powwow/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST powwow-1.2.23.tar.gz 338893 BLAKE2B 8abb23c0f7b8f09abddf66affcf4d985d1d31d36aed86469bf6c200fe487b5aacec67e6c6029a231f8afe3569a472c9dfb3e394f989b7d5fc2ba4f8df4d90755 SHA512 591ff9ca9dfc3bb624cfbb7f47785af977250cf9f6858b5149cf0fa30c6e1173f03f0cbabb8a55eb6ceb7622509f6c3fb11c36b154edc243824ecb8513c110a4 diff --git a/games-mud/powwow/files/powwow-1.2.22-linking.patch b/games-mud/powwow/files/powwow-1.2.22-linking.patch deleted file mode 100644 index e9dc39177bf4..000000000000 --- a/games-mud/powwow/files/powwow-1.2.22-linking.patch +++ /dev/null @@ -1,39 +0,0 @@ -* Fix ncurses/tinfo linking: https://bugs.gentoo.org/690452 - -* Fix underlinking (refresh of old patch by hasufell@): -From: Julian Ospald <hasufell@gentoo.org> -Date: Mon Feb 18 02:25:38 UTC 2013 -Subject: fix underlinking -https://bugs.gentoo.org/show_bug.cgi?id=454928 ---- a/configure.ac -+++ b/configure.ac -@@ -93,10 +93,7 @@ AC_PROG_LN_S - AC_CHECK_FUNC(lrand48,,AC_DEFINE(USE_RANDOM)) - - if test "x${enable_vt100}" != "xyes"; then -- AC_SEARCH_LIBS(initscr,[ncurses curses], [], [ -- if test "x${enable_vt100}" = "xno" ; then -- AC_MSG_ERROR([*** curses libraries not found]) -- fi]) -+ PKG_CHECK_MODULES([ncurses], [ncurses]) - fi - - # Dynamic modules ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -6,7 +6,8 @@ bin_PROGRAMS = powwow powwow-muc powwow-movieplay - powwow_SOURCES = beam.c cmd.c log.c edit.c cmd2.c eval.c \ - utils.c main.c tcp.c list.c map.c tty.c \ - ptr.c --powwow_LDFLAGS = @dl_ldflags@ -+powwow_LDADD = @dl_ldflags@ @ncurses_LIBS@ -+powwow_muc_LDADD = @ncurses_LIBS@ - powwowdir = $(pkgincludedir) - powwow_HEADERS = beam.h cmd.h log.h edit.h cmd2.h eval.h \ - utils.h main.h tcp.h list.h map.h tty.h \ -@@ -26,4 +26,4 @@ catrw_SOURCES = catrw.c - EXTRA_DIST = plugtest.c - - plugtest.so: plugtest.c -- gcc -shared -o plugtest.so plugtest.c -+ $(CC) $(CFLAGS) -shared -o plugtest.so plugtest.c diff --git a/games-mud/powwow/files/powwow-1.2.22-musl-termios.patch b/games-mud/powwow/files/powwow-1.2.22-musl-termios.patch deleted file mode 100644 index c8d9192279a6..000000000000 --- a/games-mud/powwow/files/powwow-1.2.22-musl-termios.patch +++ /dev/null @@ -1,21 +0,0 @@ -https://bugs.gentoo.org/716584 ---- a/src/follow.c -+++ b/src/follow.c -@@ -26,7 +26,6 @@ - * many warnings, but seems to be necessary at times. works anyway. - */ - # include <termios.h> --# include <termio.h> - # endif - /* #else USE_SGTTY */ - #endif ---- a/src/tty.c -+++ b/src/tty.c -@@ -44,7 +44,6 @@ - * many warnings, but seems to be necessary at times. works anyway. - */ - # include <termios.h> --# include <termio.h> - # endif - /* #else USE_SGTTY */ - #endif diff --git a/games-mud/powwow/metadata.xml b/games-mud/powwow/metadata.xml deleted file mode 100644 index 1c3ba213c494..000000000000 --- a/games-mud/powwow/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>games@gentoo.org</email> - <name>Gentoo Games Project</name> -</maintainer> -</pkgmetadata> diff --git a/games-mud/powwow/powwow-1.2.23.ebuild b/games-mud/powwow/powwow-1.2.23.ebuild deleted file mode 100644 index 0d39a6eab1b5..000000000000 --- a/games-mud/powwow/powwow-1.2.23.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit autotools flag-o-matic - -DESCRIPTION="PowWow Console MUD Client" -HOMEPAGE="https://www.hoopajoo.net/projects/powwow.html" -SRC_URI="https://www.hoopajoo.net/static/projects/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -BDEPEND="virtual/pkgconfig" -DEPEND="sys-libs/ncurses:0=" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}"/${PN}-1.2.22-linking.patch - "${FILESDIR}"/${PN}-1.2.22-musl-termios.patch -) - -src_prepare() { - default - - # note that that the extra, seemingly-redundant files installed are - # actually used by in-game help commands - sed -i \ - -e "s/pkgdata_DATA = powwow.doc/pkgdata_DATA = /" \ - Makefile.am || die - - eautoreconf -} - -src_configure() { - # https://bugs.gentoo.org/944372 - append-cflags -std=gnu17 - - econf --includedir="${EPREFIX}"/usr/include -} - -src_install() { - local DOCS=( Hacking powwow.doc powwow.help README.* TODO ) - # Prepend doc/ - DOCS=( ${DOCS[@]/#/doc\//} ) - # Add in the root items - DOCS+=( ChangeLog NEWS ) - - default -} diff --git a/games-mud/tf/Manifest b/games-mud/tf/Manifest deleted file mode 100644 index de8c02261010..000000000000 --- a/games-mud/tf/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -DIST tf-50b8-help.tar.gz 175591 BLAKE2B b4b5d2be336206fa00db870367369454d33a7e32c0aed83a3eed107feba9a5737ad6c7963b8c570cede6e3de80b211edb4ed6dd818b4ca90e23e8bab99a92725 SHA512 fd0fcf7e96772cbb61a97d24d0327c45b31b280bca329dfe6c680137cc25b7db5b4b79c0f608ad213cd24a0f2a67ee471ce7ee1c405b039f52033d7d87974b74 -DIST tf-50b8.tar.gz 719553 BLAKE2B 3218878cdc4a2049fd7f2a8e0426ec589bf304e0bb24ad557e5bea39cbaba76e6a1c52f064860e499623abb51bc9f14a0c8388b927fd15a66a7945fe5eaccf84 SHA512 3b99c039d7a9c6ab7ee7b1040ff7c99fe39cbe991f373333ea7c130d54383f102f14ae33303a415f5419cd43238caffc46114e842c6964329c0999e0f506e3d0 -DIST tf-allrootpatch.txt 3349 BLAKE2B ca57b7ddfdbaa377c69ad07427185a3952368d35231f4bca77c78a5ed7b5c1c362f4ef1512e23c248b96810739056e8f53c4d41320a1c1dc320b1fd22d965199 SHA512 3fe44e7291d133abd04040f0f8258da6a2b7f67cab79cb1628897a4a483a0998495b6cf97eaf29ee447a650fdb16a48c846599807e570f687a256bb58179495e -DIST tf-allsrcpatch.txt 10392 BLAKE2B 9a24f99d6bdaa835b4cc2588d87824ea07a12fee38d576ec63f48493f5b92c7155ad959fa80599edf28a39f76d85ba8a2a19e1ff2b03c7893fe4d7b4b7d9af97 SHA512 3ac2447e05911d156509bb44e8809c06c4b1a92cbc8067d196c7e5f688fccd5186a9073001958ca0e757c9db20e9f96889fe7a5b6255495539f23208f72ec613 -DIST tf5_5.0beta8-8.debian.tar.xz 12732 BLAKE2B f663283d571c272e0c159c7175967a206ab30e95fb64b935c73fa1952a3e7ba559af104bf7d4640218bf5748968059f0f9e180cd1d1191beef4d8b0c472eefac SHA512 dcc220d7bec11dd3760104502c51aba320e7b6701b7b295ed188fa32edec7d23ac287995da6d08d34a55f937ccc53b6f02186afe4bbde02e934d90a57c7f52b1 diff --git a/games-mud/tf/files/tf-5.0_beta8_p8-Fix-implicit-function-declarations.patch b/games-mud/tf/files/tf-5.0_beta8_p8-Fix-implicit-function-declarations.patch deleted file mode 100644 index a8ff73a84201..000000000000 --- a/games-mud/tf/files/tf-5.0_beta8_p8-Fix-implicit-function-declarations.patch +++ /dev/null @@ -1,26 +0,0 @@ -From f0cf80b3034c4cad66608ddcec0709b3761adbfc Mon Sep 17 00:00:00 2001 -From: Sam James <sam@gentoo.org> -Date: Sun, 2 Oct 2022 20:31:30 +0100 -Subject: [PATCH] Fix implicit function declarations - -Bug: https://bugs.gentoo.org/871084 ---- a/src/malloc.h -+++ b/src/malloc.h -@@ -34,6 +34,7 @@ extern int low_memory_warning; - # define realloc(ptr, size) mrealloc(NULL, ptr, size) - # define free(ptr) mfree(NULL, ptr) - #else -+# include <stdlib.h> - # define mmalloc(md, size) malloc(size) - # define mcalloc(md, size) calloc(size) - # define mrealloc(md, ptr, size) realloc(ptr, size) ---- a/src/tfio.c -+++ b/src/tfio.c -@@ -46,6 +46,7 @@ static const char RCSid[] = "$Id: tfio.c,v 35004.114 2007/01/13 23:12:39 kkeys E - #include "keyboard.h" /* keyboard_pos */ - #include "expand.h" /* current_command */ - #include "cmdlist.h" -+#include "socket.h" - - TFILE *loadfile = NULL; /* currently /load'ing file */ - int loadline = 0; /* line number in /load'ing file */ diff --git a/games-mud/tf/files/tf-50_beta8-pcre.patch b/games-mud/tf/files/tf-50_beta8-pcre.patch deleted file mode 100644 index 4ff5e44db91b..000000000000 --- a/games-mud/tf/files/tf-50_beta8-pcre.patch +++ /dev/null @@ -1,61 +0,0 @@ -From f61b5859d69c2d99264182f60f5ae1e430812b59 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Petr=20=C5=A0abata?= <contyk@redhat.com> -Date: Fri, 10 Feb 2012 13:55:46 +0100 -Subject: [PATCH] Fix build with PCRE-8.30+ -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -This patch fixes build with the latest PCRE release which removes some -obsolete code tinyfugue still uses, namely pcre_info(). - -Signed-off-by: Petr Šabata <contyk@redhat.com> ---- - src/macro.c | 3 ++- - src/pattern.c | 2 +- - src/pattern.h | 2 +- - 3 files changed, 4 insertions(+), 3 deletions(-) - -diff --git a/src/macro.c b/src/macro.c -index ac28fc9..b492717 100644 ---- a/src/macro.c -+++ b/src/macro.c -@@ -893,7 +893,8 @@ static int complete_macro(Macro *spec, unsigned int hash, int num, - } - spec->attr &= ~F_NONE; - if (spec->nsubattr) { -- int n = pcre_info(spec->trig.ri->re, NULL, NULL); -+ int n; -+ pcre_fullinfo(spec->trig.ri->re, NULL, PCRE_INFO_CAPTURECOUNT, &n); - for (i = 0; i < spec->nsubattr; i++) { - spec->subattr[i].attr &= ~F_NONE; - if (spec->subattr[i].subexp > n) { -diff --git a/src/pattern.c b/src/pattern.c -index 047a44a..a7228ff 100644 ---- a/src/pattern.c -+++ b/src/pattern.c -@@ -151,7 +151,7 @@ static RegInfo *tf_reg_compile_fl(const char *pattern, int optimize, - emsg ? emsg : "unknown error"); - goto tf_reg_compile_error; - } -- n = pcre_info(ri->re, NULL, NULL); -+ pcre_fullinfo(ri->re, NULL, PCRE_INFO_CAPTURECOUNT, &n); - if (n < 0) goto tf_reg_compile_error; - ri->ovecsize = 3 * (n + 1); - ri->ovector = dmalloc(NULL, sizeof(int) * ri->ovecsize, file, line); -diff --git a/src/pattern.h b/src/pattern.h -index 1eec0f9..cbe9af9 100644 ---- a/src/pattern.h -+++ b/src/pattern.h -@@ -10,7 +10,7 @@ - #ifndef PATTERN_H - #define PATTERN_H - --#include "pcre-2.08/pcre.h" -+#include <pcre.h> - - typedef struct RegInfo { - pcre *re; --- -1.7.7.6 - diff --git a/games-mud/tf/metadata.xml b/games-mud/tf/metadata.xml deleted file mode 100644 index cd0d29d8cbc1..000000000000 --- a/games-mud/tf/metadata.xml +++ /dev/null @@ -1,16 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>games@gentoo.org</email> - <name>Gentoo Games Project</name> - </maintainer> - <use> - <flag name="atcp">enable ATCP support.</flag> - <flag name="gmcp">enable GMCP support.</flag> - <flag name="option102">enable telnet option 102 support.</flag> - </use> - <upstream> - <remote-id type="sourceforge">tinyfugue</remote-id> - </upstream> -</pkgmetadata> diff --git a/games-mud/tf/tf-5.0_beta8_p8-r1.ebuild b/games-mud/tf/tf-5.0_beta8_p8-r1.ebuild deleted file mode 100644 index 3fb01e719f69..000000000000 --- a/games-mud/tf/tf-5.0_beta8_p8-r1.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PV="${PV/_beta/b}" -MY_PV="${MY_PV/_p*/}" -MY_PV="$(ver_rs 1 '' "${MY_PV}")" -# 5.0_beta8_p8 -> 5.0beta8-8 -MY_DEB_PV="$(ver_cut 1-2)$(ver_cut 3-4)-$(ver_cut 6)" - -DESCRIPTION="Small, flexible, screen-oriented MUD client (aka TinyFugue)" -HOMEPAGE="https://tinyfugue.sourceforge.net/" -SRC_URI=" - https://downloads.sourceforge.net/tinyfugue/tf-${MY_PV}.tar.gz - mirror://debian/pool/main/t/tf5/tf5_${MY_DEB_PV}.debian.tar.xz - http://homepage.mac.com/mikeride/abelinc/scripts/allrootpatch.txt -> tf-allrootpatch.txt - http://homepage.mac.com/mikeride/abelinc/scripts/allsrcpatch.txt -> tf-allsrcpatch.txt - doc? ( https://downloads.sourceforge.net/tinyfugue/tf-${MY_PV}-help.tar.gz )" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm64 ~x86" -IUSE="+atcp doc +gmcp ipv6 +option102 ssl" - -RDEPEND=" - dev-libs/libpcre - sys-libs/ncurses:= - ssl? ( dev-libs/openssl:0= ) -" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/tf-${MY_PV}" - -PATCHES=( - "${WORKDIR}"/debian/patches - "${DISTDIR}"/tf-allrootpatch.txt - "${DISTDIR}"/tf-allsrcpatch.txt - "${FILESDIR}"/tf-50_beta8-pcre.patch - "${FILESDIR}"/tf-5.0_beta8_p8-Fix-implicit-function-declarations.patch -) - -src_configure() { - STRIP=: econf \ - $(use_enable atcp) \ - $(use_enable gmcp) \ - $(use_enable option102) \ - $(use_enable ssl) \ - $(use_enable ipv6 inet6) \ - --enable-manpage \ - --enable-termcap=tinfo -} - -src_install() { - dobin src/tf - newman src/tf.1.nroffman tf.1 - - use doc && HTML_DOCS=( ../${MY_P}-help/{*.html,commands,topics} ) - einstalldocs - - insinto /usr/share/${PN}-lib - # the application looks for this file here if /changes is called. - # see comments on bug #23274 - doins CHANGES - insopts -m0755 - doins -r tf-lib/. -} - -pkg_postinst() { - if use ipv6; then - ewarn - 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"" - ewarn - fi -} diff --git a/games-mud/tintin/Manifest b/games-mud/tintin/Manifest deleted file mode 100644 index f35d3c33ba74..000000000000 --- a/games-mud/tintin/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST tintin-2.02.51.tar.gz 2296448 BLAKE2B 9c6e768549f96ff603dc6a243ac325279907a263479050b2cb52d016aafe74c8ea164df6bba35ab07c4878d348f1bd2d297f607b0b95cb341123d7cf170d1521 SHA512 b93cd98b93cbe16f26a6aa1eca76a7b6dec8a33745caaf8bae1894191d5b2e4646caefcae02578b2a0254a025b7626ea012b8891f4ebabc423fdda3a15a8bfc7 diff --git a/games-mud/tintin/metadata.xml b/games-mud/tintin/metadata.xml deleted file mode 100644 index 0b14f10299f5..000000000000 --- a/games-mud/tintin/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>games@gentoo.org</email> - <name>Gentoo Games Project</name> - </maintainer> - <upstream> - <remote-id type="github">scandum/tintin</remote-id> - </upstream> -</pkgmetadata> diff --git a/games-mud/tintin/tintin-2.02.51.ebuild b/games-mud/tintin/tintin-2.02.51.ebuild deleted file mode 100644 index 93138834e870..000000000000 --- a/games-mud/tintin/tintin-2.02.51.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="(T)he k(I)cki(N) (T)ickin d(I)kumud clie(N)t" -HOMEPAGE="https://tintin.mudhalla.net/" -SRC_URI="https://github.com/scandum/${PN}/releases/download/${PV}/${P}.tar.gz" -S="${WORKDIR}"/tt/src - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND=" - dev-libs/libpcre:3 - net-libs/gnutls:= - sys-libs/readline:= - virtual/zlib:= -" - -RDEPEND=" - ${DEPEND} -" - -src_install() { - dobin tt++ - dodoc ../{CREDITS,FAQ,README,SCRIPTS,TODO,docs/*} -} - -pkg_postinst() { - ewarn "**** OLD TINTIN SCRIPTS ARE NOT 100% COMPATIBLE WITH THIS VERSION ****" - ewarn "read the README for more details." -} diff --git a/games-mud/tkmoo/Manifest b/games-mud/tkmoo/Manifest deleted file mode 100644 index eb5f6bac124f..000000000000 --- a/games-mud/tkmoo/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST tkMOO-light-0.3.32.tar.gz 95332 BLAKE2B 44fd5c1476527c3b1c18e44df71b49007caeb78e1ca788c718a532c716746a9b8df3f42d616bc0384bff167a484c8585a0fe13f607810c74006810635ed1ae6c SHA512 59543692900613eae77b73f5f88a2380a77d1be38d486dc0461d0990ccb941497dd0d35aa109a5697dba3b92157d9943b540a73fe4fc0d519e144f65620443d2 diff --git a/games-mud/tkmoo/files/0.3.32-Makefile-noclean.patch b/games-mud/tkmoo/files/0.3.32-Makefile-noclean.patch deleted file mode 100644 index cebc1fecfc34..000000000000 --- a/games-mud/tkmoo/files/0.3.32-Makefile-noclean.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/Makefile 2003-07-12 03:04:24.000000000 -0400 -+++ b/Makefile 2003-07-12 03:04:32.000000000 -0400 -@@ -32,11 +32,8 @@ - - # some shells are set 'noclobber', so force overwriting of the - # executable and installation --clean: -- \rm -f $(EXECUTABLE) -- \rm -f $(TKMOO_BIN_DIR)/$(EXECUTABLE) - --executable: clean -+executable: - if [ ! -e $(WISH) ]; then \ - echo "***"; \ - echo "*** Can't find executable '$(WISH)', building anyway..."; \ diff --git a/games-mud/tkmoo/files/0.3.32-keys-workaround.patch b/games-mud/tkmoo/files/0.3.32-keys-workaround.patch deleted file mode 100644 index db8886ed4b61..000000000000 --- a/games-mud/tkmoo/files/0.3.32-keys-workaround.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- a/source.tcl 2004-12-28 23:36:47.000000000 -0800 -+++ b/source.tcl 2004-12-28 23:37:09.000000000 -0800 -@@ -51,6 +51,10 @@ - # - # - -+tk::unsupported::ExposePrivateCommand tkTextSetCursor -+tk::unsupported::ExposePrivateCommand tkTextScrollPages -+tk::unsupported::ExposePrivateCommand tkTextInsert -+ - proc db.set { id field val args } { - global db - if { $args == {} } { diff --git a/games-mud/tkmoo/metadata.xml b/games-mud/tkmoo/metadata.xml deleted file mode 100644 index 1c3ba213c494..000000000000 --- a/games-mud/tkmoo/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="project"> - <email>games@gentoo.org</email> - <name>Gentoo Games Project</name> -</maintainer> -</pkgmetadata> diff --git a/games-mud/tkmoo/tkmoo-0.3.32-r1.ebuild b/games-mud/tkmoo/tkmoo-0.3.32-r1.ebuild deleted file mode 100644 index 6da608115ae7..000000000000 --- a/games-mud/tkmoo/tkmoo-0.3.32-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit desktop - -MY_P="tkMOO-light-${PV}" - -DESCRIPTION="MOO Client written in Tcl/Tk" -HOMEPAGE="http://www.awns.com/tkMOO-light/" -SRC_URI="http://www.awns.com/tkMOO-light/Source/${MY_P}.tar.gz" -S="${WORKDIR}/${MY_P}" - -LICENSE="tkMOO" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND=" - dev-lang/tcl - dev-lang/tk -" -RDEPEND="${DEPEND}" - -PATCHES=( - "${FILESDIR}/${PV}-Makefile-noclean.patch" - "${FILESDIR}/${PV}-keys-workaround.patch" -) - -src_compile() { - local myemakeargs=( - WISH="$(type -P wish)" - TKMOO_LIB_DIR="${EPREFIX}/usr/share/${PN}" - TKMOO_BIN_DIR="${EPREFIX}/usr/bin" - ) - emake "${myemakeargs[@]}" -} - -src_install() { - local emakeargs=( - TKMOO_LIB_DIR="${ED}/usr/share/${PN}" - TKMOO_BIN_DIR="${ED}/usr/bin" - ) - emake "${emakeargs[@]}" install - - dodoc README dot.tkmoolightrc bugsmail.txt - dosym tkMOO-lite /usr/bin/tkmoo - make_desktop_entry tkmoo "tkMOO" applications-games -} diff --git a/games-mud/trebuchet/Manifest b/games-mud/trebuchet/Manifest deleted file mode 100644 index b7b7232495b3..000000000000 --- a/games-mud/trebuchet/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST trebuchet-1.082.tar.bz2 1197615 BLAKE2B 3d756c23cc9ee639841b2183a064d3694ae779c817e63ac1edbf1c3fcbe9d75c368404f58817d03d90fcad76ee6e3843048c05a1381edf0fa2b55f550a8d9fe2 SHA512 326d80a7622c2be163d9467ce8804efeb77992caad040e6b6b82102d40a222a5a014771628c4e8a492b8525a4fec147e982d5cfb38030cd38eb79ff26d769b44 diff --git a/games-mud/trebuchet/metadata.xml b/games-mud/trebuchet/metadata.xml deleted file mode 100644 index b2ae01efc80b..000000000000 --- a/games-mud/trebuchet/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="project"> - <email>games@gentoo.org</email> - <name>Gentoo Games Project</name> - </maintainer> - <upstream> - <remote-id type="sourceforge">trebuchet</remote-id> - </upstream> -</pkgmetadata> diff --git a/games-mud/trebuchet/trebuchet-1.082.ebuild b/games-mud/trebuchet/trebuchet-1.082.ebuild deleted file mode 100644 index 11f5771bafef..000000000000 --- a/games-mud/trebuchet/trebuchet-1.082.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DESCRIPTION="A cross-platform TCL/TK based MUD client" -HOMEPAGE="https://sourceforge.net/projects/trebuchet/" -SRC_URI="https://downloads.sourceforge.net/trebuchet/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -RESTRICT="test" - -RDEPEND=" - dev-lang/tcl - >=dev-lang/tk-8.3.3 -" - -src_install() { - emake install \ - prefix="${ED}/usr" \ - ROOT="${ED}/usr/share/${PN}" - - dosym ../share/${PN}/${PN^}.tcl /usr/bin/treb - dodoc changes.txt README.md trebtodo.txt -} |
