1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-26 21:17:40 +00:00
freebsd-ports/x11-toolkits/tix/files/patch-ac

88 lines
3.3 KiB
Plaintext
Raw Normal View History

--- Makefile.in.orig Thu Feb 11 11:11:46 1999
+++ Makefile.in Wed Nov 3 14:25:19 1999
1997-02-21 14:55:05 +00:00
@@ -29,7 +29,7 @@
# Directory in which to install the library of Tix scripts and demos
# (note: you can set the TIX_LIBRARY environment variable at run-time to
# override the compiled-in location):
1997-01-02 07:12:38 +00:00
-TIX_LIBRARY = $(prefix)/lib/tix$(TIX_VERSION)
+TIX_LIBRARY = $(prefix)/share/tix$(TIX_VERSION)
# Directory in which to install the archive libtix.a:
LIB_DIR = $(exec_prefix)/lib
@@ -70,16 +70,16 @@
1997-02-21 14:55:05 +00:00
TK_GENERIC_DIR = $(TK_SRC_DIR)/generic
# Libraries to use when linking:
-LIBS = @ITK_BUILD_LIB_SPEC@ @ITCL_BUILD_LIB_SPEC@ \
- @TK_BUILD_LIB_SPEC@ @TCL_BUILD_LIB_SPEC@ @TK_LIBS@
+LIBS = @ITK_LIB_SPEC@ @ITCL_LIB_SPEC@ \
+ @TK_LIB_SPEC@ @TCL_LIB_SPEC@ @TK_LIBS@
# Libraries for building a stand-alone Tclsh.
#
-LIBS_TCLONLY = @TCL_BUILD_LIB_SPEC@ @TCL_LIBS@
+LIBS_TCLONLY = @TCL_LIB_SPEC@ @TCL_LIBS@
-RUN_TCLSH = TCL_LIBRARY=$(TCL_SRC_DIR)/library \
- TK_LIBRARY=$(TK_SRC_DIR)/library \
- $(TCL_SRC_DIR)/unix/tclsh
+RUN_TCLSH = TCL_LIBRARY=$(TCL_SRC_DIR)/../../lib/tcl8.2 \
+ TK_LIBRARY=$(TK_SRC_DIR)/../../lib/tk8.2 \
+ $(TCL_SRC_DIR)/../../bin/tclsh8.2
#----------------------------------------------------------------
@@ -210,30 +210,30 @@
# scripts of TK must be included in the fixed order.
#----------------------------------------------------------------------
-TCL_SCRIPTS = $(TCL_SRC_DIR)/library/*.tcl
+TCL_SCRIPTS = $(TCL_SRC_DIR)/../../lib/tcl8.2/*.tcl
TK_SCRIPTS = \
- $(TK_SRC_DIR)/library/bgerror.tcl \
- $(TK_SRC_DIR)/library/dialog.tcl \
- $(TK_SRC_DIR)/library/focus.tcl \
- $(TK_SRC_DIR)/library/obsolete.tcl \
- $(TK_SRC_DIR)/library/optMenu.tcl \
- $(TK_SRC_DIR)/library/palette.tcl \
- $(TK_SRC_DIR)/library/tearoff.tcl \
1997-08-20 12:12:17 +00:00
- $(TK_SRC_DIR)/library/clrpick.tcl \
- $(TK_SRC_DIR)/library/comdlg.tcl \
- $(TK_SRC_DIR)/library/msgbox.tcl \
- $(TK_SRC_DIR)/library/tkfbox.tcl \
- $(TK_SRC_DIR)/library/xmfbox.tcl \
1997-10-01 12:19:43 +00:00
- $(SRC_DIR)/generic/tk4.2/tk.tcl \
- $(TK_SRC_DIR)/library/button.tcl \
- $(TK_SRC_DIR)/library/entry.tcl \
- $(TK_SRC_DIR)/library/listbox.tcl \
- $(TK_SRC_DIR)/library/menu.tcl \
- $(TK_SRC_DIR)/library/scale.tcl \
- $(TK_SRC_DIR)/library/scrlbar.tcl \
- $(TK_SRC_DIR)/library/text.tcl \
- $(SRC_DIR)/generic/tk8.0/console.tcl
+ $(TK_SRC_DIR)/../../lib/tk8.2/bgerror.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/dialog.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/focus.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/obsolete.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/optMenu.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/palette.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/tearoff.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/clrpick.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/comdlg.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/msgbox.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/tkfbox.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/xmfbox.tcl \
+ $(SRC_DIR)/generic/tk8.2/tk.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/button.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/entry.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/listbox.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/menu.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/scale.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/scrlbar.tcl \
+ $(TK_SRC_DIR)/../../lib/tk8.2/text.tcl \
+ $(SRC_DIR)/generic/tk8.2/console.tcl
TIX_SCRIPTS = \
$(SRC_DIR)/library/pref/*.fsc \