1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/math/calctool/files/patch-ab

51 lines
1.7 KiB
Plaintext
Raw Normal View History

--- Makefile.orig Sat May 29 11:35:43 1993
1998-08-17 00:48:16 +00:00
+++ Makefile Sun Aug 16 10:37:31 1998
@@ -116,8 +116,8 @@
# library files are not in a standard place, then the following
# two lines should be uncommented, and set appropriately.
#
-#X11INCDIR = -I$(OPENWINHOME)/include
-#X11LIBDIR = -L$(OPENWINHOME)/lib
+X11INCDIR = -I/usr/X11R6/include
+X11LIBDIR = -L/usr/X11R6/lib
#-------------------------------------------------------------------------
# If you are compiling the XView version, then the following two lines
# should be uncommented.
@@ -130,10 +130,10 @@
# Default locations where calctool files will be installed.
# You might wish to alter these values.
#
-BINDIR = /usr/local/bin
-LIBDIR = /usr/local/lib
-MANDIR = /usr/man/man$(MANSECT)
-MANSECT = l
+BINDIR = ${PREFIX}/bin
+LIBDIR = ${PREFIX}/lib/X11
+MANDIR = ${PREFIX}/man/man$(MANSECT)
+MANSECT = 1
#
# Compilation flags and standard macro definitions.
#
@@ -144,8 +144,9 @@
#
#=========================================================================
-BINARIES = mgr_calctool ps_calctool sv_calctool \
- tty_calctool xcalctool xv_calctool
+#BINARIES = mgr_calctool ps_calctool sv_calctool \
+# tty_calctool xcalctool xv_calctool
+BINARIES = x11
CC = cc
1998-08-17 00:48:16 +00:00
@@ -233,8 +234,7 @@
ld -o libcalctool.so.1.1 -assert pure-text $?
install:
- install -c -m 644 $(LIBNAME) $(LIBDIR)
1998-08-17 00:48:16 +00:00
- install -s -m 751 calctool $(BINDIR)
+ install -c -s -m 751 calctool $(BINDIR)
install -c -m 644 calctool.help $(LIBDIR)
install -c -m 644 calctool.ps $(LIBDIR)
1998-08-17 00:48:16 +00:00
install -c -m 644 calctool.1 $(MANDIR)/calctool.$(MANSECT)