diff options
author | Vadim Misbakh-Soloviov <mva@gentoo.org> | 2023-04-16 02:15:58 +0700 |
---|---|---|
committer | Vadim Misbakh-Soloviov <mva@gentoo.org> | 2023-04-16 02:15:58 +0700 |
commit | acb326cb2255bb316cc4800ba4f4b4fc621b9bd1 (patch) | |
tree | 41e94ae13cc6ea22614f2e4474bd0669b58b58cd /games-strategy | |
parent | games-arcade/VVVVVV: new version (diff) | |
download | gamerlay-acb326cb2255bb316cc4800ba4f4b4fc621b9bd1.tar.gz gamerlay-acb326cb2255bb316cc4800ba4f4b4fc621b9bd1.tar.bz2 gamerlay-acb326cb2255bb316cc4800ba4f4b4fc621b9bd1.zip |
games-strategy/glfrontier: use version from seden repo
Signed-off-by: Vadim Misbakh-Soloviov <mva@gentoo.org>
Diffstat (limited to 'games-strategy')
4 files changed, 0 insertions, 86 deletions
diff --git a/games-strategy/glfrontier/Manifest b/games-strategy/glfrontier/Manifest deleted file mode 100644 index 2cac04d..0000000 --- a/games-strategy/glfrontier/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST frontvm-audio-20060222.tar.bz2 4623648 SHA256 e759e587047abd6f041aea4ef339e404b3ca5a6407acf65084a2af79a75ceb87 SHA512 50fdd3e7ac5547a0ca2081ab0350a8b7f5ecbeed015d2f3b1947777921fd145cc4475e5fc36910898577d1c9c3fec87d11e0e18240c03490991441c2bd484f6a WHIRLPOOL 136d00022892b9c383c4d5180bc3820e18c06a276e2253a51932e583cbfc0d86f16dfc9f4006bc4116db4cc98dadcb737e7b16a0130a6a9419298d6340e32916 -DIST frontvm3-20060623.tar.bz2 426463 SHA256 9b6c04e8dad75bea11cce459515c7d5983276e23dba4a4764f1084d4810c0afb SHA512 45c4b5aaf4f7e2caac632c6af8936992684b048df87c183387283fbb627966e077ac4a50d5e4df0072f025e755a82e43bb9684cb81d1ac4080fc0042d2a36159 WHIRLPOOL 982a7735956e92f310ad732f03514cd700e3755b7dbbf004a957d19c0c929dfbed5621b1c8ea38a995fa019f463f029e613886049567bf99d033ca242d4ab7e8 diff --git a/games-strategy/glfrontier/files/glfrontier-20060623-fix_missing_math_lib.patch b/games-strategy/glfrontier/files/glfrontier-20060623-fix_missing_math_lib.patch deleted file mode 100644 index fa314f5..0000000 --- a/games-strategy/glfrontier/files/glfrontier-20060623-fix_missing_math_lib.patch +++ /dev/null @@ -1,24 +0,0 @@ ---- a/frontvm3-20060623/Makefile-C 2014-11-14 07:37:29.430146785 +0100 -+++ b/frontvm3-20060623/Makefile-C 2014-11-14 07:37:54.728146745 +0100 -@@ -1,5 +1,5 @@ --export CFLAGS = -O2 -g -Wall -DOGG_MUSIC --export LIBS = -lGL -lGLU -lvorbisfile -lvorbis -logg -+export CFLAGS = -march=native -pipe -O2 -Wall -DOGG_MUSIC -+export LIBS = -lGL -lGLU -lvorbisfile -lvorbis -logg -lm - export FE2OBJS = ../fe2.part1.o ../fe2.part2.o - - THIS=Makefile-C -@@ -24,11 +24,8 @@ - - fe2obj: - as68k/as68k --output-c fe2.s -- # this bit can be optimised because it is lots of small functions -- $(CC) -DPART1 -O1 -fomit-frame-pointer -Wall -Wno-unused -s `sdl-config --cflags` -c fe2.s.c -o fe2.part1.o -- # this can't unless you have shitloads of memory and a fuck meaty -- # machine, because it is a huge stinking function. -- $(CC) -DPART2 -O0 -fomit-frame-pointer -Wall -Wno-unused -s `sdl-config --cflags` -c fe2.s.c -o fe2.part2.o -+ $(CC) -DPART1 $(CFLAGS) -fomit-frame-pointer -Wall -Wno-unused -s `sdl-config --cflags` -c fe2.s.c -o fe2.part1.o -+ $(CC) -DPART2 $(CFLAGS) -fomit-frame-pointer -Wall -Wno-unused -s `sdl-config --cflags` -c fe2.s.c -o fe2.part2.o - - clean: - $(MAKE) -C src/ clean diff --git a/games-strategy/glfrontier/glfrontier-20060623-r4.ebuild b/games-strategy/glfrontier/glfrontier-20060623-r4.ebuild deleted file mode 100644 index ea13aef..0000000 --- a/games-strategy/glfrontier/glfrontier-20060623-r4.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit eutils - -MY_PN=glfrontier -MY_P=${MY_PN}-${PV} -DESCRIPTION="Frontier: Elite 2 with OpenGL support" -HOMEPAGE="http://tom.noflag.org.uk/glfrontier.html" - -SRC_URI="http://tom.noflag.org.uk/glfrontier/frontvm3-20060623.tar.bz2 - http://tom.noflag.org.uk/misc/frontvm-audio-20060222.tar.bz2" - -LICENSE="HPND" -KEYWORDS="~amd64 ~x86" -IUSE="" - -SLOT="0" - -RDEPEND=">=media-libs/freeglut-2.6 - media-libs/libsdl - media-libs/libogg" -DEPEND="${RDEPEND}" - -S=${WORKDIR} - -src_prepare() { - epatch "${FILESDIR}/${MY_P}-fix_missing_math_lib.patch" - eapply_user -} - -src_compile() { - cd "${S}/frontvm3-20060623" - make -f Makefile-C || die "make install failed" -} - -src_install() { - mv "${S}/frontvm3-20060623/frontier" "${S}/frontvm3-20060623/${MY_PN}" - - newbin "${S}/frontvm3-20060623/frontier" ${MY_PN} - insinto "/usr/share/${MY_PN}" - doins "${S}/frontvm3-20060623/fe2.s.bin" - doins -r "${S}/frontvm-audio-20060222/*" - - make_desktop_entry /usr/share/${MY_PN}/${MY_PN} GLFrontier ${MY_PN} Game Path=/usr/share/${MY_PN} -} diff --git a/games-strategy/glfrontier/metadata.xml b/games-strategy/glfrontier/metadata.xml deleted file mode 100644 index cc20dcf..0000000 --- a/games-strategy/glfrontier/metadata.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<maintainer type="person"> -<email>yamakuzure@gmx.net</email> -<description>The creator of this ebuild, but not the official maintainer</description> -</maintainer> -<longdescription> -Frontier: Elite 2 with OpenGL support -</longdescription> -<use /> -</pkgmetadata> |