1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-14 23:46:10 +00:00
freebsd-ports/math/xgfe/files/patch-ab
Tim Vanderhoek 8830306820 Graphical front-end to gnuplot.
PR:		ports/6123
Submitted by:	Matthew Hunt <mph@pobox.com>
1998-04-10 05:00:51 +00:00

30 lines
709 B
Plaintext

--- Makefile.common.orig Mon Feb 23 17:31:22 1998
+++ Makefile.common Tue Mar 24 14:17:39 1998
@@ -2,8 +2,8 @@
# modify starting here
-INSTALL_BIN = /usr/local/bin
-INSTALL_DOC = /usr/local/doc/xgfe-$(VERSION)
+INSTALL_BIN = $(PREFIX)/bin
+INSTALL_DOC = $(PREFIX)/share/doc/xgfe
STATIC_TARGET = xgfe-static
# end modifications
@@ -15,10 +15,11 @@
strip $(STATIC_TARGET)
install:
- cp $(TARGET) $(INSTALL_BIN)
- mkdir $(INSTALL_DOC)
- cp ../doc/* $(INSTALL_DOC)/
- strip $(INSTALL_BIN)/$(TARGET)
+ $(BSD_INSTALL_PROGRAM) $(TARGET) $(INSTALL_BIN)
+.if !defined(NOPORTDOCS)
+ mkdir -p $(INSTALL_DOC)
+ $(BSD_INSTALL_DATA) ../doc/* $(INSTALL_DOC)/
+.endif
uninstall:
rm $(INSTALL_BIN)$(TARGET)