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>
This commit is contained in:
Arthur Zamarin
2024-08-01 22:44:36 +03:00
parent 3ad0692210
commit ee45c67bf4
5 changed files with 0 additions and 84 deletions

View File

@@ -1 +0,0 @@
DIST seatris-0.0.14.tar.gz 53056 BLAKE2B 8efbc4531f98f06857815c86e2833ede03de3206bfc89efe387e2b388252c05d11b404e4a72fe6b33f215908cf03bc5687c627fa61943cb549c59bfb82455939 SHA512 105722ddbeaa8ae3863331126cf816e7d590ebe4ca244b32d3275071c2537c2865183a90f60f8dbf46cfacbcee4e811b653ff9cc6d2eae51c9ed6efa9263fac2

View File

@@ -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

View File

@@ -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>

View File

@@ -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}
}

View File

@@ -228,14 +228,6 @@ games-arcade/spacerider
games-arcade/tuxdash
games-arcade/xsfcave
# NHOrus <jy6x2b32pie9@yahoo.com> (2024-06-28)
# games-puzzle/seatris: last rites
# Twenty-year-old tetris clone with upstream that wasn't touched since,
# broken code and broken autoconf.
# Removed after 2024-08-01
# Bug: https://bugs.gentoo.org/935057
games-puzzle/seatris
# Sam James <sam@gentoo.org> (2024-06-25)
# Subvolume printing is broken: https://github.com/kdave/btrfs-progs/issues/829
=sys-fs/btrfs-progs-6.9.1