summaryrefslogtreecommitdiff
path: root/games/redeclipse/files
diff options
context:
space:
mode:
Diffstat (limited to 'games/redeclipse/files')
-rw-r--r--games/redeclipse/files/patch-src_Makefile17
-rw-r--r--games/redeclipse/files/pkg-message.in11
-rw-r--r--games/redeclipse/files/sauer_client.in18
-rw-r--r--games/redeclipse/files/sauer_server.in18
4 files changed, 0 insertions, 64 deletions
diff --git a/games/redeclipse/files/patch-src_Makefile b/games/redeclipse/files/patch-src_Makefile
deleted file mode 100644
index 3cf6fea958dc..000000000000
--- a/games/redeclipse/files/patch-src_Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
---- src/Makefile.orig 2008-05-03 20:17:49.000000000 +0400
-+++ src/Makefile 2008-06-24 21:03:00.239785215 +0400
-@@ -1,10 +1,9 @@
--CXXOPTFLAGS= -O3 -fomit-frame-pointer
--INCLUDES= -Ishared -Iengine -Ifpsgame -Irpggame -Ienet/include -I/usr/X11R6/include `sdl-config --cflags`
--CXXFLAGS= -Wall -fsigned-char $(CXXOPTFLAGS) $(INCLUDES)
-+INCLUDES= -Ishared -Iengine -Ifpsgame -Irpggame -Ienet/include -I$(LOCALBASE)/include `$(SDL_CONFIG) --cflags`
-+CXXFLAGS+= -Wall -fsigned-char $(INCLUDES)
-
--PLATFORM_PREFIX=native
-+PLATFORM_PREFIX=FreeBSD
-
--CLIENT_LIBS= -Lenet -lenet -L/usr/X11R6/lib `sdl-config --libs` -lSDL_image -lSDL_mixer -lz -lGL -lGLU
-+CLIENT_LIBS= -Lenet -lenet `$(SDL_CONFIG) --libs` -lSDL_image -lSDL_mixer -lz -L$(LOCALBASE)/lib -lGL -lGLU
- ifeq ($(shell uname -s),Linux)
- CLIENT_LIBS+= -lrt
- endif
diff --git a/games/redeclipse/files/pkg-message.in b/games/redeclipse/files/pkg-message.in
deleted file mode 100644
index 2020523db93a..000000000000
--- a/games/redeclipse/files/pkg-message.in
+++ /dev/null
@@ -1,11 +0,0 @@
-###############################################################################
-
-1) First time, sauerbraten creates a ~/.sauerbraten directory with symlinks.
-2) Config files are in the ~/.sauerbraten directory.
-3) If you want add new bindings into ~/.sauerbraten/config.cfg, see
-
- %%DATADIR%%/data/keymap.cfg.
-
-4) Enjoy it ;)
-
-###############################################################################
diff --git a/games/redeclipse/files/sauer_client.in b/games/redeclipse/files/sauer_client.in
deleted file mode 100644
index 0d0ad1503401..000000000000
--- a/games/redeclipse/files/sauer_client.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
-# ~/.sauerbraten, and create symlinks to the data files.
-
-if [ -d ~/.sauerbraten ]
-then
- echo "Using existing ~/.sauerbraten directory."
-else
- echo "Creating ~/.sauerbraten directory."
- cd %%DATADIR%% || exit 1
- find * -type d -exec mkdir -p ~/.sauerbraten/{} \;
- find * -type f -exec ln -s %%DATADIR%%/{} ~/.sauerbraten/{} \; 2>/dev/null
-fi
-
-cd ~/.sauerbraten || exit 1
-exec %%PREFIX%%/libexec/sauer_client "$@"
diff --git a/games/redeclipse/files/sauer_server.in b/games/redeclipse/files/sauer_server.in
deleted file mode 100644
index 672564b86865..000000000000
--- a/games/redeclipse/files/sauer_server.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
-# ~/.sauerbraten, and create symlinks to the data files.
-
-if [ -d ~/.sauerbraten ]
-then
- echo "Using existing ~/.sauerbraten directory."
-else
- echo "Creating ~/.sauerbraten directory."
- cd %%DATADIR%% || exit 1
- find * -type d -exec mkdir -p ~/.sauerbraten/{} \;
- find * -type f -exec ln -s %%DATADIR%%/{} ~/.sauerbraten/{} \; 2>/dev/null
-fi
-
-cd ~/.sauerbraten || exit 1
-exec %%PREFIX%%/libexec/sauer_server "$@"