diff options
author | Alejandro Pulver <alepulver@FreeBSD.org> | 2006-09-11 18:20:12 +0000 |
---|---|---|
committer | Alejandro Pulver <alepulver@FreeBSD.org> | 2006-09-11 18:20:12 +0000 |
commit | 950f8f040d0a07546f3ee2d214fd070779814e55 (patch) | |
tree | b67d58ea75b291067bd76749d3ff6e5735be7085 /games/vavoom/files | |
parent | 9ad3555003b2ef8f2454b6706569c8655061680a (diff) |
Notes
Diffstat (limited to 'games/vavoom/files')
-rw-r--r-- | games/vavoom/files/patch-source__Makefile.in | 6 | ||||
-rw-r--r-- | games/vavoom/files/pkg-message.in | 4 | ||||
-rw-r--r-- | games/vavoom/files/vavoom.in | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/games/vavoom/files/patch-source__Makefile.in b/games/vavoom/files/patch-source__Makefile.in index 38750a30b8cf..8550629a996f 100644 --- a/games/vavoom/files/patch-source__Makefile.in +++ b/games/vavoom/files/patch-source__Makefile.in @@ -5,7 +5,7 @@ install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) - test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" -+ test -z "$(libexecdir)" || $(mkdir_p) "$(DESTDIR)$(libexecdir)" ++ test -z "$(libexecdir)/vavoom" || $(mkdir_p) "$(DESTDIR)$(libexecdir)/vavoom" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ @@ -13,8 +13,8 @@ f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ - $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ -+ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/$$f'"; \ -+ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/$$f" || exit 1; \ ++ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(libexecdir)/vavoom/$$f'"; \ ++ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(libexecdir)/vavoom/$$f" || exit 1; \ else :; fi; \ done diff --git a/games/vavoom/files/pkg-message.in b/games/vavoom/files/pkg-message.in index 9f635b38390e..19d46d7d8e96 100644 --- a/games/vavoom/files/pkg-message.in +++ b/games/vavoom/files/pkg-message.in @@ -5,8 +5,8 @@ Vavoom has been installed. The wrapper script is named "vavoom" and accepts a "-s" argument to run the dedicated server instead of the client. It creates/enters ~/.vavoom (if it does not exist creates symlinks) and runs the programs from there, looking for -additional IWAD files in %%DMDIR%%. +additional IWAD files in "%%DMDIR%%". -The real executables are in "%%PREFIX%%/libexec". +The real executables (and utils) are in "%%PREFIX%%/libexec/vavoom". ============================================================================== diff --git a/games/vavoom/files/vavoom.in b/games/vavoom/files/vavoom.in index 7b05faeb420c..d057d76ec579 100644 --- a/games/vavoom/files/vavoom.in +++ b/games/vavoom/files/vavoom.in @@ -17,9 +17,9 @@ then else echo "Creating ~/.vavoom directory." cd %%DATADIR%% || exit 1 - find . -type d -exec mkdir -p ~/.vavoom/{} \; - find . -type f -exec ln -sf %%DATADIR%%/{} ~/.vavoom/{} \; + find . -type d -exec mkdir -p ~/.vavoom/basev/{} \; + find . -type f -exec ln -sf %%DATADIR%%/basev/{} ~/.vavoom/basev/{} \; fi cd ~/.vavoom || exit 1 -exec %%PREFIX%%/libexec/${CMD} -iwaddir %%DMDIR%% "$@" +exec %%PREFIX%%/libexec/vavoom/${CMD} -iwaddir %%DMDIR%% "$@" |