summaryrefslogtreecommitdiff
path: root/games/amphetamine
diff options
context:
space:
mode:
Diffstat (limited to 'games/amphetamine')
-rw-r--r--games/amphetamine/Makefile33
-rw-r--r--games/amphetamine/distinfo4
-rw-r--r--games/amphetamine/files/patch-aa84
-rw-r--r--games/amphetamine/files/patch-ab31
-rw-r--r--games/amphetamine/files/patch-src_SoundList.hpp24
-rw-r--r--games/amphetamine/files/patch-src_System.hpp14
-rw-r--r--games/amphetamine/pkg-descr14
-rw-r--r--games/amphetamine/pkg-plist63
8 files changed, 0 insertions, 267 deletions
diff --git a/games/amphetamine/Makefile b/games/amphetamine/Makefile
deleted file mode 100644
index cfe9484af1ea..000000000000
--- a/games/amphetamine/Makefile
+++ /dev/null
@@ -1,33 +0,0 @@
-# New ports collection makefile for: amphetamine
-# Date created: 6 March 2000
-# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= amphetamine
-PORTVERSION= 0.8.10
-PORTREVISION= 7
-CATEGORIES= games
-MASTER_SITES= http://homepage.hispeed.ch/loehrer/amph/files/
-DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
- ${PORTNAME}-data-${DATAVERSION}${EXTRACT_SUFX}
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= A 2D - Jump'n'run shooter
-
-DEPRECATED= Looks like an abandonware, no more public distfile
-EXPIRATION_DATE= 2011-08-01
-
-USE_BZIP2= yes
-USE_XORG= xpm
-USE_SDL= sdl
-USE_GMAKE= yes
-
-DATAVERSION= 0.8.6
-
-post-install:
- @cd ${WRKDIR}/amph && ${FIND} . | \
- ${CPIO} -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/amph
-
-.include <bsd.port.mk>
diff --git a/games/amphetamine/distinfo b/games/amphetamine/distinfo
deleted file mode 100644
index 253ecd064d12..000000000000
--- a/games/amphetamine/distinfo
+++ /dev/null
@@ -1,4 +0,0 @@
-SHA256 (amphetamine-0.8.10.tar.bz2) = 6cf7542d7a6b1c3f3cc660164961aa3fecd90fc3ebd7f9b640bf73dfca6aa677
-SIZE (amphetamine-0.8.10.tar.bz2) = 72324
-SHA256 (amphetamine-data-0.8.6.tar.bz2) = b51a0edaf3271008a5e0b3061556898e3d0e27a554803d53caaaec14ecb730aa
-SIZE (amphetamine-data-0.8.6.tar.bz2) = 928775
diff --git a/games/amphetamine/files/patch-aa b/games/amphetamine/files/patch-aa
deleted file mode 100644
index 82c3d68e6ec8..000000000000
--- a/games/amphetamine/files/patch-aa
+++ /dev/null
@@ -1,84 +0,0 @@
-
-$FreeBSD$
-
---- Makefile.orig Tue Mar 26 04:11:27 2002
-+++ Makefile Sun Aug 3 22:14:39 2003
-@@ -3,13 +3,13 @@
- #===============
-
- # Install Paths
--PREFIX := /usr/local
--INSTALL_DIR := ${PREFIX}/games/amph
-+PREFIX ?= /usr/local
-+INSTALL_DIR := ${PREFIX}/share/amph
-
- # Libraries
- USE_LIB_XPM := TRUE
-
--SDL_CONFIG := sdl-config
-+SDL_CONFIG ?= sdl-config
- SDL_HEADERS := $(shell $(SDL_CONFIG) --cflags)
- SDL_LIBS := $(shell $(SDL_CONFIG) --libs)
-
-@@ -22,23 +22,23 @@
-
- # Directories to search for header files
-
--SEARCHDIRS := -I${MYCODEDIR} ${SDL_HEADERS}
-+SEARCHDIRS := -I${MYCODEDIR} ${SDL_HEADERS} -I ${LOCALBASE}/include
-
- # makemake variables
-
--LINKER := g++
--DEPENDFLAGS := -g ${SEARCHDIRS}
-+LINKER := ${CXX}
-+DEPENDFLAGS := ${SEARCHDIRS}
- TOUCHHEADERS := ${MYCODEDIR}/*.h
-
- # C
-
--CC := gcc
--CFLAGS = ${DEPENDFLAGS}
-+CC ?= gcc
-+CFLAGS += ${DEPENDFLAGS}
-
- # C++
-
--CXX := g++
--CXXFLAGS = ${DEPENDFLAGS} -O9 -funroll-loops -fomit-frame-pointer -ffast-math -Wcast-align
-+CXX ?= g++
-+CXXFLAGS += ${DEPENDFLAGS} -Wcast-align
-
- %.o : %.cpp
- ${CXX} ${CPPFLAGS} -c $< ${CXXFLAGS} -o $@
-@@ -66,7 +66,7 @@
- LOADLIBES := $(LOADLIBES) -lXpm -lXt
- endif
-
--LDFLAGS = -L/usr/lib -L/usr/local/lib -L/usr/X11R6/lib
-+LDFLAGS = -L$(LOCALBASE)/lib
-
- .PHONY : default
- default : amph
-@@ -74,9 +74,9 @@
- .PHONY : install
- install: amph
- @./mkinstalldirs ${INSTALL_DIR}
-- @install -c ./amph ${INSTALL_DIR}
-- @strip ${INSTALL_DIR}/amph
-- @ln -s ${INSTALL_DIR}/amph ${PREFIX}/bin/amph
-+ @${BSD_INSTALL_PROGRAM} ./amph ${PREFIX}/bin/amph
-+#${INSTALL_DIR}
-+# @ln -s ${INSTALL_DIR}/amph ${PREFIX}/bin/amph
-
- # This is what makemake added
-
-@@ -194,7 +194,7 @@
-
- ./src/Surface.o: ./src/AmpHead.hpp ./src/Clut.hpp ./src/ConstVal.hpp ./src/Graphfil.hpp ./src/Shape.hpp ./src/ShapeLd.hpp ./src/Surface.hpp ./src/System.hpp /usr/include/limits.h /usr/include/math.h /usr/include/stdio.h /usr/include/stdlib.h
-
--./src/System.o: ./src/AmpHead.hpp ./src/Graphfil.hpp ./src/System.hpp /usr/include/X11/xpm.h /usr/include/fcntl.h /usr/include/limits.h /usr/include/math.h /usr/include/stdio.h /usr/include/stdlib.h /usr/include/string.h /usr/include/sys/stat.h /usr/include/sys/time.h /usr/include/sys/types.h /usr/include/unistd.h
-+./src/System.o: ./src/AmpHead.hpp ./src/Graphfil.hpp ./src/System.hpp ${LOCALBASE}/include/X11/xpm.h /usr/include/fcntl.h /usr/include/limits.h /usr/include/math.h /usr/include/stdio.h /usr/include/stdlib.h /usr/include/string.h /usr/include/sys/stat.h /usr/include/sys/time.h /usr/include/sys/types.h /usr/include/unistd.h
-
- ./src/Thing.o: ./src/AmpHead.hpp ./src/Appl.hpp ./src/Bullet.hpp ./src/ConstVal.hpp ./src/Element.hpp ./src/File.hpp ./src/Graphfil.hpp ./src/Level.hpp ./src/ObjInfo.hpp ./src/Object.hpp ./src/Pltform.hpp ./src/Shape.hpp ./src/ShapeLd.hpp ./src/Surface.hpp ./src/System.hpp ./src/Thing.hpp /usr/include/limits.h /usr/include/math.h /usr/include/stdio.h /usr/include/stdlib.h
-
diff --git a/games/amphetamine/files/patch-ab b/games/amphetamine/files/patch-ab
deleted file mode 100644
index fe93a29098cc..000000000000
--- a/games/amphetamine/files/patch-ab
+++ /dev/null
@@ -1,31 +0,0 @@
---- src/Main.cpp.orig Sun Mar 24 17:49:09 2002
-+++ src/Main.cpp Mon Mar 1 19:51:09 2004
-@@ -1,3 +1,7 @@
-+#if defined(__FreeBSD__) && defined(__i386__)
-+#include <floatingpoint.h>
-+#endif
-+
- #include "System.hpp"
- #include "Appl.hpp"
- #include "Clut.hpp"
-@@ -75,6 +79,9 @@
- my_argv = argv;
- if (checkCommandLine()) return 0;
-
-+#if defined(__FreeBSD__) && defined(__i386__)
-+ fpsetmask(fpgetmask() & ~(FP_X_DZ|FP_X_INV));
-+#endif
- gApplication = new CApplication();
- gApplication->InitGraphics();
- gApplication->LoadData();
-@@ -83,5 +90,10 @@
- gApplication->Quit();
- delete gApplication;
-
-+#if defined(__FreeBSD__) && defined(__i386__)
-+ fpresetsticky(FP_X_DZ|FP_X_INV);
-+ fpsetmask(FP_X_DZ|FP_X_INV);
-+#endif
-+
- return 0;
- }
diff --git a/games/amphetamine/files/patch-src_SoundList.hpp b/games/amphetamine/files/patch-src_SoundList.hpp
deleted file mode 100644
index 6bbafc7a0773..000000000000
--- a/games/amphetamine/files/patch-src_SoundList.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
-
-$FreeBSD$
-
---- src/SoundList.hpp 2001/01/22 21:09:51 1.1
-+++ src/SoundList.hpp 2001/01/22 21:10:20
-@@ -6,9 +6,9 @@
- #define _AMPH_SOUND_LIST_
-
- extern "C" {
--#include <SDL/SDL.h>
--#include <SDL/SDL_audio.h>
--#include <SDL/SDL_types.h>
-+#include <SDL.h>
-+#include <SDL_audio.h>
-+#include <SDL_types.h>
- }
-
- class CSound;
-@@ -55,4 +55,4 @@
- SoundState *first, *prev, *current;
- };
-
--#endif
-+#endif
diff --git a/games/amphetamine/files/patch-src_System.hpp b/games/amphetamine/files/patch-src_System.hpp
deleted file mode 100644
index 7afa10225646..000000000000
--- a/games/amphetamine/files/patch-src_System.hpp
+++ /dev/null
@@ -1,14 +0,0 @@
-
-$FreeBSD$
-
---- src/System.hpp 2001/01/22 21:09:51 1.1
-+++ src/System.hpp 2001/01/22 21:10:27
-@@ -9,7 +9,7 @@
- #include "AmpHead.hpp"
-
- extern "C" {
--#include <SDL/SDL.h>
-+#include <SDL.h>
- }
-
- #ifndef INSTALL_DIR
diff --git a/games/amphetamine/pkg-descr b/games/amphetamine/pkg-descr
deleted file mode 100644
index 39c87cd990cd..000000000000
--- a/games/amphetamine/pkg-descr
+++ /dev/null
@@ -1,14 +0,0 @@
-Amphetamine is a 2D - Jump'n'run shooter in the tradition of Super Mario Bros
-and other classics. But it has unique features:
-
-Highlights:
-
- o Fast 256 colour graphics
- o Never seen graphics (in this genre) such as coronas (remember Unreal),
- dynamic coloured lightning, fogging, semitransparence and much more...
- o Seven weapons (like the seven deadly sins): Fight with arrow and bow, a
- scie, fire hands, etc. against monsters
- o Raging fights against 11 bloodsucking monsters which themselves have several
- killing powers.
-
-WWW: http://homepage.hispeed.ch/loehrer/amph/amph.html
diff --git a/games/amphetamine/pkg-plist b/games/amphetamine/pkg-plist
deleted file mode 100644
index 0790f8c000d1..000000000000
--- a/games/amphetamine/pkg-plist
+++ /dev/null
@@ -1,63 +0,0 @@
-bin/amph
-share/amph/amph.conf
-share/amph/amph.xpm
-share/amph/data.d0
-share/amph/data.d1
-share/amph/data.d2
-share/amph/data.d3
-share/amph/data.d4
-share/amph/data.g0
-share/amph/data.g1
-share/amph/data.g2
-share/amph/data.g3
-share/amph/data.g4
-share/amph/data.p0
-share/amph/data.p1
-share/amph/sounds/aimedh.wav
-share/amph/sounds/aimedl.wav
-share/amph/sounds/bombh.wav
-share/amph/sounds/bombl.wav
-share/amph/sounds/borkh.wav
-share/amph/sounds/borkl.wav
-share/amph/sounds/bowh.wav
-share/amph/sounds/bowl.wav
-share/amph/sounds/dive.wav
-share/amph/sounds/entrmenu.wav
-share/amph/sounds/guidedh.wav
-share/amph/sounds/guidedl.wav
-share/amph/sounds/handsh.wav
-share/amph/sounds/handsl.wav
-share/amph/sounds/jump.wav
-share/amph/sounds/lightoff.wav
-share/amph/sounds/lighton.wav
-share/amph/sounds/nazgulh.wav
-share/amph/sounds/nazgull.wav
-share/amph/sounds/openmenu.wav
-share/amph/sounds/otygh.wav
-share/amph/sounds/otygl.wav
-share/amph/sounds/phiolh.wav
-share/amph/sounds/phioll.wav
-share/amph/sounds/pickup.wav
-share/amph/sounds/platgo.wav
-share/amph/sounds/platstop.wav
-share/amph/sounds/scieh.wav
-share/amph/sounds/sciel.wav
-share/amph/sounds/selmenu.wav
-share/amph/sounds/sorceryh.wav
-share/amph/sounds/sorceryl.wav
-share/amph/sounds/staffh.wav
-share/amph/sounds/staffl.wav
-share/amph/sounds/step.wav
-share/amph/sounds/stonedam.wav
-share/amph/sounds/swordh.wav
-share/amph/sounds/swordl.wav
-share/amph/sounds/test.wav
-share/amph/sounds/trollh.wav
-share/amph/sounds/trolll.wav
-share/amph/sounds/warg1h.wav
-share/amph/sounds/warg1l.wav
-share/amph/sounds/warg2h.wav
-share/amph/sounds/warg2l.wav
-share/amph/user.conf
-@dirrm share/amph/sounds
-@dirrm share/amph