diff options
author | imura <imura@FreeBSD.org> | 2000-02-13 02:03:30 +0000 |
---|---|---|
committer | imura <imura@FreeBSD.org> | 2000-02-13 02:03:30 +0000 |
commit | cf81bb36df14413040843dd87f202cdeda8bc37c (patch) | |
tree | 67a18892491415f82a23ae4e6c560cf8d70ff5e7 /games/tkmoo/files | |
parent | ef50cc78dfce8097a80426a482a82dcf41cf7e2c (diff) | |
download | FreeBSD-ports-cf81bb36df14413040843dd87f202cdeda8bc37c.zip FreeBSD-ports-cf81bb36df14413040843dd87f202cdeda8bc37c.tar.gz |
Initial import of tkmoo-0.3.23.
Tk-based MOO interface with scripting capability.
PR: 16527
Submitted by: Will Andrews <andrews@technologist.com>
Diffstat (limited to 'games/tkmoo/files')
-rw-r--r-- | games/tkmoo/files/patch-aa | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/games/tkmoo/files/patch-aa b/games/tkmoo/files/patch-aa new file mode 100644 index 0000000..dda43e0 --- /dev/null +++ b/games/tkmoo/files/patch-aa @@ -0,0 +1,25 @@ +--- Makefile Sat Jan 1 07:00:56 2000 ++++ Makefile.new Wed Feb 2 19:32:13 2000 +@@ -7,18 +7,18 @@ + # ... in the '.tkMOO-lite' directory under your home directory + # ** if you change this value then you'll need to set your TKMOO_LIB_DIR + # ** environment variable to the same value +-TKMOO_LIB_DIR = $$HOME/.tkMOO-lite ++TKMOO_LIB_DIR ?= $$HOME/.tkMOO-lite + + # where will the executable be installed? + # ... in the 'bin' directory under your home directory +-TKMOO_BIN_DIR = $$HOME/bin ++TKMOO_BIN_DIR ?= $$HOME/bin + + # which version of WISH will the client use? 'make' will warn you + # if WISH can't be found where you say it is. + WISH4.1 = /usr/local/bin/wish4.1 + WISH4.2 = /usr/local/bin/wish4.2 +-WISH8.0 = /usr/local/bin/wish8.0 +-WISH = $(WISH8.0) ++WISH8.2 ?= /usr/local/bin/wish8.2 ++WISH = $(WISH8.2) + + # ---------------- NO NEED TO CHANGE ANYTHING BELOW THIS LINE --------------- + |