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-ab
Steve Price 23f2c1a9b2 Update to use Tcl/Tk version 8.2.
Submitted by:	Ade Lovett <ade@lovett.com>
1999-11-29 03:56:34 +00:00

44 lines
1.4 KiB
Plaintext

--- ../Makefile.in.orig Thu Mar 18 11:44:17 1999
+++ ../Makefile.in Wed Nov 3 14:35:27 1999
@@ -28,7 +28,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):
-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
@@ -115,7 +115,7 @@
fi; \
done;
@echo "installing the tixindex program for builing tclIndex for Tix scripts"
- @cd $(TOOLS_DIR); $(INSTALL_PROGRAM) tixindex $(BIN_DIR)/tixindex
+ -@cd $(TOOLS_DIR); $(INSTALL_PROGRAM) tixindex $(BIN_DIR)/tixindex
install-headers:
@for i in $(INCLUDE_DIR); \
@@ -219,12 +219,20 @@
else true; \
fi; \
done;
- @cd $(MANUAL_DIR); for i in *.n *.1; \
+ @cd $(MANUAL_DIR); for i in *.1; \
+ do \
+ echo "Installing doc/$$i"; \
+ rm -f $(MAN1_DIR)/$$i; \
+ sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \
+ $$i > $(MAN1_DIR)/$$i; \
+ chmod 444 $(MAN1_DIR)/$$i; \
+ done;
+ @cd $(MANUAL_DIR); for i in *.n; \
do \
echo "Installing doc/$$i"; \
rm -f $(MANN_DIR)/$$i; \
sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \
- $$i > $(MANN_DIR)/$$i; \
+ $$i > $(MANN_DIR)/$$i; \
chmod 444 $(MANN_DIR)/$$i; \
done;