mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
489d7badf5
Noticed by: Vince - vince@MCESTATE.COM - vince@GAIANET.NET
39 lines
1.0 KiB
Plaintext
39 lines
1.0 KiB
Plaintext
--- Makefile.orig Tue Feb 18 15:02:28 1997
|
|
+++ Makefile Tue Aug 12 08:34:46 1997
|
|
@@ -10,18 +10,18 @@
|
|
# for changing this is if sh is not in the same place.
|
|
SHELL = /bin/sh
|
|
CC = gcc
|
|
-CFLAGS = -g
|
|
+#CFLAGS = -g
|
|
|
|
# Where the executables should be put
|
|
-DESTDIR = /usr/games
|
|
+DESTDIR = $(PREFIX)/bin
|
|
|
|
# Where the man page should be put
|
|
-MANDIR = /usr/man/man6
|
|
+MANDIR = $(PREFIX)/man/man6
|
|
|
|
# Where figlet will search first for fonts (the ".flf" files).
|
|
-DEFAULTFONTDIR = $(DESTDIR)/lib/figlet.dir
|
|
+#DEFAULTFONTDIR = $(DESTDIR)/lib/figlet.dir
|
|
# Use this definition if you can't put things in /usr/games
|
|
-DEFAULTFONTDIR = fonts
|
|
+DEFAULTFONTDIR = $(PREFIX)/share/figlet
|
|
|
|
# The filename of the font to be used if no other is specified
|
|
# (standard.flf is recommended, but any other can be used).
|
|
@@ -50,8 +50,10 @@
|
|
rm -f *.o figlet chkfont
|
|
|
|
install: figlet chkfont
|
|
- mkdir $(DEFAULTFONTDIR)
|
|
+ mkdir -p $(DEFAULTFONTDIR)
|
|
+ strip figlet
|
|
cp figlet $(DESTDIR)
|
|
+ strip chkfont
|
|
cp chkfont $(DESTDIR)
|
|
cp figlist $(DESTDIR)
|
|
cp showfigfonts $(DESTDIR)
|