summaryrefslogtreecommitdiff
path: root/games-action/xpilot
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-action/xpilot
parent6783ddcd4b73d9ce586a71770caed352bec93b16 (diff)
downloadbaldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.gz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.tar.xz
baldeagleos-repo-290aebdea65a02557706eaeda477fef0437b6a48.zip
Adding metadata
Diffstat (limited to 'games-action/xpilot')
-rw-r--r--games-action/xpilot/Manifest2
-rw-r--r--games-action/xpilot/metadata.xml9
-rw-r--r--games-action/xpilot/xpilot-4.5.5-r1.ebuild73
3 files changed, 0 insertions, 84 deletions
diff --git a/games-action/xpilot/Manifest b/games-action/xpilot/Manifest
deleted file mode 100644
index ac0b093502d3..000000000000
--- a/games-action/xpilot/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST xpilot-4.5.5.tar.bz2 1115502 BLAKE2B 9f7758dabc834f9ffad602e2ba215e1e08ff3f33b21480eae0176775d6c55df3e3238652e0cbbbc688acbab9e23395f46d853ee52fd55d177fdace5138621335 SHA512 002fbdbee3035e21f441d749d68ac41da2816a691e1c0d1cf9de9cddaa479c92da57eb36081884b9908a6ae83454f6f532c24c89280d27e2cbf9570442ef301c
-DIST xpilot.png 9682 BLAKE2B 689ac9d6efe54ee1d8c166543cd7c720ebd71c05818b074dffdcb1499d645c3cb9f9db00ce8c6f29d433255d0f58e2d30897f1438c0b41e13f5fd2043e5bac46 SHA512 5a59f01399b03852a795f5c475ce64cf2890e102b806c5e3540c635ad32d1a16f6a0e2c4dd8d0de0a33a9fbc907b68640f151905b71a54556b59a83602036f95
diff --git a/games-action/xpilot/metadata.xml b/games-action/xpilot/metadata.xml
deleted file mode 100644
index 183ecc5ceeeb..000000000000
--- a/games-action/xpilot/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-action/xpilot/xpilot-4.5.5-r1.ebuild b/games-action/xpilot/xpilot-4.5.5-r1.ebuild
deleted file mode 100644
index c8cdc30fce04..000000000000
--- a/games-action/xpilot/xpilot-4.5.5-r1.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2026 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop flag-o-matic toolchain-funcs
-
-DESCRIPTION="Multi-player 2D client/server space game"
-HOMEPAGE="http://www.xpilot.org/"
-SRC_URI="
- https://distfiles.gentoo.org/pub/dev/ionen@gentoo.org/${PN}.png
- https://downloads.sourceforge.net/xpilotgame/${P}.tar.bz2"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
- x11-libs/libX11
- x11-libs/libXext"
-DEPEND="
- ${RDEPEND}
- x11-base/xorg-proto"
-BDEPEND="
- app-text/rman
- sys-devel/gcc
- x11-misc/gccmakedep
- >=x11-misc/imake-1.0.8-r1"
-
-DOCS=(
- README.txt
- doc/{ChangeLog,CREDITS,FAQ,TODO}
- doc/README.{MAPS,MAPS2,SHIPS,sounds,talkmacros}
-)
-
-src_prepare() {
- default
-
- sed -i \
- -e "/^INSTMAN/s|=.*|=${EPREFIX}/usr/share/man/man6|" \
- -e "/^INSTLIB/s|=.*|=${EPREFIX}/usr/share/${PN}|" \
- -e "/^INSTBIN/s|=.*|=${EPREFIX}/usr/bin|" \
- Local.config || die
-
- # work with glibc-2.20
- sed -i \
- -e 's/getline/lgetline/' \
- src/client/textinterface.c || die
-}
-
-src_configure() {
- append-cflags -std=gnu89 # old codebase, incompatible with c2x
-
- CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \
- IMAKECPP="${IMAKECPP:-${CHOST}-gcc -E}" xmkmf -a || die
-}
-
-src_compile() {
- emake \
- AR="$(tc-getAR) cq" \
- CC="$(tc-getCC)" \
- RANLIB="$(tc-getRANLIB)" \
- CDEBUGFLAGS="${CFLAGS}" \
- LOCAL_LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
- default
- emake DESTDIR="${D}" install.man
-
- doicon "${DISTDIR}"/${PN}.png
- make_desktop_entry ${PN} XPilot
-}