summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2024-08-01 22:44:36 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2024-08-01 22:44:36 +0300
commitee45c67bf40fda308de476d32d0daf6f722503ac (patch)
treeb011c6851454eb7b9ec1bdcffe0fc1101abf512b /games-puzzle
parentapp-arch/7zip: drop 23.01, 24.05, 24.06 (diff)
downloadgentoo-ee45c67bf40fda308de476d32d0daf6f722503ac.tar.gz
gentoo-ee45c67bf40fda308de476d32d0daf6f722503ac.tar.bz2
gentoo-ee45c67bf40fda308de476d32d0daf6f722503ac.zip
games-puzzle/seatris: treeclean
Closes: https://bugs.gentoo.org/935057 (pkgremoved) Closes: https://bugs.gentoo.org/875092 (pkgremoved) Closes: https://bugs.gentoo.org/899010 (pkgremoved) Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'games-puzzle')
-rw-r--r--games-puzzle/seatris/Manifest1
-rw-r--r--games-puzzle/seatris/files/seatris-0.0.14-as-needed.patch11
-rw-r--r--games-puzzle/seatris/metadata.xml8
-rw-r--r--games-puzzle/seatris/seatris-0.0.14-r2.ebuild56
4 files changed, 0 insertions, 76 deletions
diff --git a/games-puzzle/seatris/Manifest b/games-puzzle/seatris/Manifest
deleted file mode 100644
index bd8b8b944d6e..000000000000
--- a/games-puzzle/seatris/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST seatris-0.0.14.tar.gz 53056 BLAKE2B 8efbc4531f98f06857815c86e2833ede03de3206bfc89efe387e2b388252c05d11b404e4a72fe6b33f215908cf03bc5687c627fa61943cb549c59bfb82455939 SHA512 105722ddbeaa8ae3863331126cf816e7d590ebe4ca244b32d3275071c2537c2865183a90f60f8dbf46cfacbcee4e811b653ff9cc6d2eae51c9ed6efa9263fac2
diff --git a/games-puzzle/seatris/files/seatris-0.0.14-as-needed.patch b/games-puzzle/seatris/files/seatris-0.0.14-as-needed.patch
deleted file mode 100644
index e77c0dd75077..000000000000
--- a/games-puzzle/seatris/files/seatris-0.0.14-as-needed.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/Makefile.in
-+++ b/Makefile.in
-@@ -11,7 +11,7 @@
- parse.o readcfg.o
-
- seatris: $(OBJS)
-- $(CC) $(LFLAGS) $(LIBS) -o seatris $(OBJS)
-+ $(CC) $(LDFLAGS) -o seatris $(OBJS) $(LIBS)
-
- clean:
- rm -f *.o seatris
diff --git a/games-puzzle/seatris/metadata.xml b/games-puzzle/seatris/metadata.xml
deleted file mode 100644
index 1c3ba213c494..000000000000
--- a/games-puzzle/seatris/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-puzzle/seatris/seatris-0.0.14-r2.ebuild b/games-puzzle/seatris/seatris-0.0.14-r2.ebuild
deleted file mode 100644
index 2b208413feb3..000000000000
--- a/games-puzzle/seatris/seatris-0.0.14-r2.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="A color ncurses tetris clone"
-HOMEPAGE="http://www.earth.li/projectpurple/progs/seatris.html"
-SRC_URI="http://www.earth.li/projectpurple/files/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
-
-DEPEND="sys-libs/ncurses:="
-RDEPEND="
- ${DEPEND}
- acct-group/gamestat
-"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
- "${FILESDIR}"/${P}-as-needed.patch
-)
-
-src_prepare() {
- default
-
- sed -i \
- -e "s:/var/lib/games:/var/lib/${PN}:" \
- scoring.h seatris.6 || die
-}
-
-src_configure() {
- tc-export CC
- econf
-}
-
-src_compile() {
- emake LIBS="$( $(tc-getPKG_CONFIG) --libs ncurses )"
-}
-
-src_install() {
- dobin seatris
-
- doman seatris.6
- dodoc ACKNOWLEDGEMENTS HISTORY README TODO example.seatrisrc
-
- dodir /var/lib/${PN}
- touch "${ED}"/var/lib/${PN}/seatris.score || die
- fperms 660 /var/lib/${PN}/seatris.score
-
- fowners -R root:gamestat /var/lib/${PN} /usr/bin/${PN}
- fperms g+s /usr/bin/${PN}
-}