summaryrefslogtreecommitdiff
path: root/games-arcade/xjump
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 11:50:53 -0500
commit290aebdea65a02557706eaeda477fef0437b6a48 (patch)
treef87a939169a508a2e943570501b64cc16b411cda /games-arcade/xjump
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'games-arcade/xjump')
-rw-r--r--games-arcade/xjump/Manifest2
-rw-r--r--games-arcade/xjump/files/xjump-2.7.5-c99.patch16
-rw-r--r--games-arcade/xjump/files/xjump-2.7.5-ldflags.patch11
-rw-r--r--games-arcade/xjump/metadata.xml9
-rw-r--r--games-arcade/xjump/xjump-2.7.5-r3.ebuild64
5 files changed, 0 insertions, 102 deletions
diff --git a/games-arcade/xjump/Manifest b/games-arcade/xjump/Manifest
deleted file mode 100644
index d6070ee41b31..000000000000
--- a/games-arcade/xjump/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST xjump_2.7.5-6.1.debian.tar.gz 9803 BLAKE2B 0a51a579aec18c71561f32d1f6321c383c8137dbe3923f3afdf00100f1c47ec062e2200a04a3281f32124f5fe72094abb6a1fc6a86de00c4886d872a21fe9a79 SHA512 c4962acd25c4cabef37acd3b5d39867a955f2fa769cc203fb00edfe37f37ce25369099b589a282189847e7bffeb874b4eaf8deea9320a9083da7e95425625cf8
-DIST xjump_2.7.5.orig.tar.gz 15940 BLAKE2B 9a022f9c6f522d8977268cd00709cc7a8aed9cf6ead042d1c75c0c0e7c011a1898690fa74e957198c5916806da4cc3d80d7d235342e7e41a33c2086553b91075 SHA512 6ce846d6681bf8b084edc06f8415a57f66d1778ec9af8b9b170f4f37292a8172b3507a08c85032a5b8588b50a7f2eefe205add4c779edd7c7ef8fb6d818d9300
diff --git a/games-arcade/xjump/files/xjump-2.7.5-c99.patch b/games-arcade/xjump/files/xjump-2.7.5-c99.patch
deleted file mode 100644
index 1f2958faf686..000000000000
--- a/games-arcade/xjump/files/xjump-2.7.5-c99.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Polymorphism, C way
---- a/record.c 2024-04-04 11:22:00.801603415 +0000
-+++ b/record.c 2024-04-04 11:26:16.515731335 +0000
-@@ -198,8 +198,11 @@
-
- /* ソート比較関数 */
-
--static int sort_cmp( record_t *r1, record_t *r2 )
-+static int sort_cmp(const void *v1, const void *v2 )
- {
-+ const record_t *r1 = (const record_t *) v1;
-+ const record_t *r2 = (const record_t *) v2;
-+
- if( r1->score > r2->score )
- return -1;
- else if( r1->score < r2->score )
diff --git a/games-arcade/xjump/files/xjump-2.7.5-ldflags.patch b/games-arcade/xjump/files/xjump-2.7.5-ldflags.patch
deleted file mode 100644
index 7cff45c60653..000000000000
--- a/games-arcade/xjump/files/xjump-2.7.5-ldflags.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -28,7 +28,7 @@
- ##########################################################
-
- xjump : main.o game.o key.o misc.o record.o resource.o
-- $(CC) $(CFLAGS) -o xjump \
-+ $(CC) $(LDFLAGS) $(CFLAGS) -o xjump \
- main.o game.o key.o misc.o record.o resource.o\
- -lXaw -lXmu -lXt -lXpm -lXext -lX11 $(LDIR)
-
diff --git a/games-arcade/xjump/metadata.xml b/games-arcade/xjump/metadata.xml
deleted file mode 100644
index 183ecc5ceeeb..000000000000
--- a/games-arcade/xjump/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>games@gentoo.org</email>
- <name>Gentoo Games Project</name>
- </maintainer>
- <origin>baldeagleos-repo</origin>
-</pkgmetadata>
diff --git a/games-arcade/xjump/xjump-2.7.5-r3.ebuild b/games-arcade/xjump/xjump-2.7.5-r3.ebuild
deleted file mode 100644
index 65704b65f41a..000000000000
--- a/games-arcade/xjump/xjump-2.7.5-r3.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DEBIAN_PATCH="6.1"
-DESCRIPTION="An X game where one tries to jump up as many levels as possible"
-HOMEPAGE="http://packages.debian.org/stable/games/xjump"
-SRC_URI="mirror://debian/pool/main/x/${PN}/${PN}_${PV}.orig.tar.gz
- mirror://debian/pool/main/x/${PN}/${PN}_${PV}-${DEBIAN_PATCH}.debian.tar.gz"
-S="${WORKDIR}"/${P}.orig
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="x11-libs/libX11
- x11-libs/libXaw
- x11-libs/libXpm
- x11-libs/libXt"
-DEPEND="${RDEPEND}
- x11-base/xorg-proto"
-
-RDEPEND+=" acct-group/gamestat"
-
-PATCHES=(
- "${WORKDIR}"/debian/patches/01_overflow.patch
- "${WORKDIR}"/debian/patches/02_fix_repeat.patch
- "${WORKDIR}"/debian/patches/03_source_warnings.patch
- "${WORKDIR}"/debian/patches/04_makefile_respect_cflags.patch
- "${WORKDIR}"/debian/patches/05_unneded_deps.patch
- "${FILESDIR}"/${P}-ldflags.patch
- "${FILESDIR}"/${P}-c99.patch
-)
-
-src_prepare() {
- default
-
- # set up where we will keep the highscores file:
- sed -i \
- -e "/^CC/d" \
- -e "/^CFLAGS/d" \
- -e "s,/record,/xjump.hiscores," \
- Makefile || die
-}
-
-src_configure() {
- tc-export CC
-}
-
-src_install() {
- dobin xjump
- dodoc README.euc
-
- # Set up the hiscores file
- dodir /var/games/${PN}
- touch "${ED}"/var/games/${PN}/xjump.hiscores || die
-
- fperms -R 660 /var/games/${PN}
- fowners -R root:gamestat /var/games/${PN} /usr/bin/${PN}
- fperms g+s /usr/bin/${PN}
-}