aboutsummaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
authordanfe <danfe@FreeBSD.org>2012-11-07 21:41:52 +0800
committerdanfe <danfe@FreeBSD.org>2012-11-07 21:41:52 +0800
commit5e4fa8ecc98d7290e33bde61fa55b70daea751fb (patch)
treef2d6fbf58c26d971937f46fb868409abf84177f2 /games
parentc572aa4eaf00e60c9edd7eec3ecc3ad80edab1ec (diff)
downloadfreebsd-ports-gnome-5e4fa8ecc98d7290e33bde61fa55b70daea751fb.tar.gz
freebsd-ports-gnome-5e4fa8ecc98d7290e33bde61fa55b70daea751fb.tar.zst
freebsd-ports-gnome-5e4fa8ecc98d7290e33bde61fa55b70daea751fb.zip
GC unused file (forgotten in r307068).
Feature safe: yes
Diffstat (limited to 'games')
-rw-r--r--games/doomlegacy/files/legacy.in20
1 files changed, 0 insertions, 20 deletions
diff --git a/games/doomlegacy/files/legacy.in b/games/doomlegacy/files/legacy.in
deleted file mode 100644
index 4c487da558da..000000000000
--- a/games/doomlegacy/files/legacy.in
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-# The executable needs to run from a directory with the Doom Legacy data
-# files, libraries and executables. So we mirror the Doom Legacy data
-# directory to ~/.doomlegacy, and create symlinks to the data files.
-
-DOOMWADDIR="%%DMDIR%%"; export DOOMWADDIR
-
-if [ -d ~/.doomlegacy ]
-then
- echo "Using existing ~/.doomlegacy directory."
-else
- echo "Creating ~/.doomlegacy directory."
- cd %%DATADIR%% || exit 1
- mkdir -p ~/.doomlegacy
- ln -s %%DATADIR%%/* ~/.doomlegacy
-fi
-
-cd ~/.doomlegacy || exit 1
-exec ./lsdldoom -nocheckwadversion "$@"