diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2012-11-07 13:41:52 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2012-11-07 13:41:52 +0000 |
commit | 14413ac876d76c660ed73b9a86aac6ad5ff3273c (patch) | |
tree | f2d6fbf58c26d971937f46fb868409abf84177f2 /games/doomlegacy | |
parent | d63bc49b7d4cd3e3fa4f71d904207f1d842e7866 (diff) | |
download | ports-14413ac876d76c660ed73b9a86aac6ad5ff3273c.tar.gz ports-14413ac876d76c660ed73b9a86aac6ad5ff3273c.zip |
Notes
Diffstat (limited to 'games/doomlegacy')
-rw-r--r-- | games/doomlegacy/files/legacy.in | 20 |
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 "$@" |