summaryrefslogtreecommitdiff
path: root/games-arcade/xjump/xjump-2.7.5-r2.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-04-06 00:30:33 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-04-06 00:30:33 +0100
commit9323524b4d44f4ec3dc923bd8e9ea04bdde8a067 (patch)
tree8ca7b8c58d4e70389d5d4672ebd86cb475cf9f80 /games-arcade/xjump/xjump-2.7.5-r2.ebuild
parent8c11cf748cc296d6338a189106a8cc9e3a1e0948 (diff)
gentoo auto-resync : 06:04:2024 - 00:30:33
Diffstat (limited to 'games-arcade/xjump/xjump-2.7.5-r2.ebuild')
-rw-r--r--games-arcade/xjump/xjump-2.7.5-r2.ebuild63
1 files changed, 0 insertions, 63 deletions
diff --git a/games-arcade/xjump/xjump-2.7.5-r2.ebuild b/games-arcade/xjump/xjump-2.7.5-r2.ebuild
deleted file mode 100644
index 7dacc1d1aa39..000000000000
--- a/games-arcade/xjump/xjump-2.7.5-r2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-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
-)
-
-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}
-}