summaryrefslogtreecommitdiff
path: root/games/redeclipse/files
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-05-31 23:01:15 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-05-31 23:01:15 +0000
commita54fe1ca9c33931d7c4381a84ee11454f9831c08 (patch)
tree16cc7f849128603b27ba13f7bdb8ae11e1eadd30 /games/redeclipse/files
parentc7651500a041b224f401ba85fc192aac6ad83c1c (diff)
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 bbef9010a145..000000000000
--- a/games/redeclipse/files/patch-src_Makefile
+++ /dev/null
@@ -1,17 +0,0 @@
---- src/Makefile.orig 2007-12-21 21:40:21.000000000 +0300
-+++ src/Makefile 2008-01-19 06:22:47.000000000 +0300
-@@ -1,10 +1,9 @@
--CXXOPTFLAGS= -O3 -fomit-frame-pointer
--INCLUDES= -Ishared -Iengine -Ifpsgame -Irpggame -Ienet/include -I/usr/X11R6/include `sdl-config --cflags`
--CXXFLAGS= -w -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
- CLIENT_OBJS= \
- shared/tools.o \
- shared/geom.o \
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 "$@"