blob: 75c5a2b7bca17c6fb6c36f798fdfc7222c872090 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
$NetBSD: patch-aa,v 1.5 2003/06/08 09:55:29 abs Exp $
--- Makefile.orig Sat Jul 13 11:24:16 2002
+++ Makefile
@@ -11,19 +11,19 @@
# Don't change this even if your shell is different. The only reason
# for changing this is if sh is not in the same place.
SHELL = /bin/sh
-CC = gcc
-CFLAGS = -g
+CC ?= gcc
+CFLAGS ?= -g
# Where the executables should be put
-DESTDIR = /usr/local/bin
+DESTDIR = ${PREFIX}/bin
# Where the man page should be put
-MANDIR = /usr/local/man/man6
+MANDIR = ${PREFIX}/man/man6
# Where figlet will search first for fonts (the ".flf" files).
-DEFAULTFONTDIR = /usr/local/share/figlet
+DEFAULTFONTDIR = ${PREFIX}/share/figlet
# Use this definition if you can't put things in /usr/local/share/figlet
-DEFAULTFONTDIR = fonts
+#DEFAULTFONTDIR = fonts
# The filename of the font to be used if no other is specified
# (standard.flf is recommended, but any other can be used).
@@ -55,6 +55,7 @@ install: figlet chkfont
mkdir -p $(DEFAULTFONTDIR)
cp figlet $(DESTDIR)
cp chkfont $(DESTDIR)
+ chmod 555 figlist showfigfonts
cp figlist $(DESTDIR)
cp showfigfonts $(DESTDIR)
cp fonts/*.flf $(DEFAULTFONTDIR)
|