summaryrefslogtreecommitdiff
path: root/games/redeclipse/files
diff options
context:
space:
mode:
Diffstat (limited to 'games/redeclipse/files')
-rw-r--r--games/redeclipse/files/bfclient.in18
-rw-r--r--games/redeclipse/files/bfserver.in18
-rw-r--r--games/redeclipse/files/patch-src_Makefile19
-rw-r--r--games/redeclipse/files/pkg-message.in11
4 files changed, 0 insertions, 66 deletions
diff --git a/games/redeclipse/files/bfclient.in b/games/redeclipse/files/bfclient.in
deleted file mode 100644
index 01d3b7ef4949..000000000000
--- a/games/redeclipse/files/bfclient.in
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-# The executable needs to be run from its data directory, and needs to store
-# configuration in it. We therefore mirror the data directory hierarchy in
-# ~/.bloodfrontier, and create symlinks to the data files.
-
-if [ -d ~/.bloodfrontier ]
-then
- echo "Using existing ~/.bloodfrontier directory."
-else
- echo "Creating ~/.bloodfrontier directory."
- cd %%DATADIR%% || exit 1
- find * -type d -exec mkdir -p ~/.bloodfrontier/{} \;
- find * -type f -exec ln -s %%DATADIR%%/{} ~/.bloodfrontier/{} \; 2>/dev/null
-fi
-
-cd ~/.bloodfrontier || exit 1
-exec %%PREFIX%%/libexec/bfclient "$@"
diff --git a/games/redeclipse/files/bfserver.in b/games/redeclipse/files/bfserver.in
deleted file mode 100644
index 6f15e12a2bd0..000000000000
--- a/games/redeclipse/files/bfserver.in
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-# The executable needs to be run from its data directory, and needs to store
-# configuration in it. We therefore mirror the data directory hierarchy in
-# ~/.bloodfrontier, and create symlinks to the data files.
-
-if [ -d ~/.bloodfrontier ]
-then
- echo "Using existing ~/.bloodfrontier directory."
-else
- echo "Creating ~/.bloodfrontier directory."
- cd %%DATADIR%% || exit 1
- find * -type d -exec mkdir -p ~/.bloodfrontier/{} \;
- find * -type f -exec ln -s %%DATADIR%%/{} ~/.bloodfrontier/{} \; 2>/dev/null
-fi
-
-cd ~/.bloodfrontier || exit 1
-exec %%PREFIX%%/libexec/bfserver "$@"
diff --git a/games/redeclipse/files/patch-src_Makefile b/games/redeclipse/files/patch-src_Makefile
deleted file mode 100644
index c7f5e89d57ac..000000000000
--- a/games/redeclipse/files/patch-src_Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
---- src/Makefile.orig 2009-11-25 14:52:58.000000000 +0300
-+++ src/Makefile 2009-12-17 00:09:47.000000000 +0300
-@@ -1,5 +1,4 @@
- #CXXFLAGS= -ggdb3
--CXXFLAGS= -O3 -fomit-frame-pointer
- override CXXFLAGS+= -Wall -fsigned-char
-
- PLATFORM= $(shell uname -s)
-@@ -21,8 +20,8 @@
- CLIENT_INCLUDES= -DINTERFACE -DIRC $(INCLUDES) -Iinclude
- CLIENT_LIBS= -mwindows -lmingw32 -Llib -lSDLmain -lSDL -lSDL_image -lSDL_mixer -lzdll -lopengl32 -lenet -lws2_32 -lwinmm
- else
--CLIENT_INCLUDES= -DINTERFACE -DIRC $(INCLUDES) -I/usr/X11R6/include `sdl-config --cflags`
--CLIENT_LIBS= -Lenet -lenet -L/usr/X11R6/lib `sdl-config --libs` -lSDL_image -lSDL_mixer -lz -lGL
-+CLIENT_INCLUDES= -DINTERFACE -DIRC $(INCLUDES) -I${LOCALBASE}/include `${SDL_CONFIG} --cflags`
-+CLIENT_LIBS= -Lenet -lenet -L${LOCALBASE}/lib `${SDL_CONFIG} --libs` -lSDL_image -lSDL_mixer -lz -lGL
- endif
- ifeq ($(PLATFORM),Linux)
- CLIENT_LIBS+= -lrt
diff --git a/games/redeclipse/files/pkg-message.in b/games/redeclipse/files/pkg-message.in
deleted file mode 100644
index 3bc3f84a8629..000000000000
--- a/games/redeclipse/files/pkg-message.in
+++ /dev/null
@@ -1,11 +0,0 @@
-###############################################################################
-
-1) First time, bloodfrontier creates a ~/.bloodfrontier directory with symlinks.
-2) Config files are in the ~/.bloodfrontier directory.
-3) If you want add new bindings into ~/.bloodfrontier/config.cfg, see
-
- %%DATADIR%%/data/keymap.cfg.
-
-4) Enjoy it ;)
-
-###############################################################################