diff options
author | obrien <obrien@FreeBSD.org> | 1997-08-12 23:37:23 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-08-12 23:37:23 +0800 |
commit | f39192f8909e2a963efa1cc3364c533a0bab2c6e (patch) | |
tree | 1f9471d518a0114482b26103576932964d9efaba /misc/figlet/files | |
parent | b5d4eef148a5a16973973771aa8135da9f32d282 (diff) | |
download | freebsd-ports-gnome-f39192f8909e2a963efa1cc3364c533a0bab2c6e.tar.gz freebsd-ports-gnome-f39192f8909e2a963efa1cc3364c533a0bab2c6e.tar.zst freebsd-ports-gnome-f39192f8909e2a963efa1cc3364c533a0bab2c6e.zip |
Author changed Makefile w/o bumping the version.
Noticed by: Vince - vince@MCESTATE.COM - vince@GAIANET.NET
Diffstat (limited to 'misc/figlet/files')
-rw-r--r-- | misc/figlet/files/patch-aa | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/misc/figlet/files/patch-aa b/misc/figlet/files/patch-aa index ad7df20059c2..e313f6f25e8f 100644 --- a/misc/figlet/files/patch-aa +++ b/misc/figlet/files/patch-aa @@ -1,5 +1,5 @@ ---- Makefile.orig Tue Feb 18 22:46:29 1997 -+++ Makefile Fri Jun 20 14:34:48 1997 +--- 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 @@ -8,22 +8,24 @@ +#CFLAGS = -g # Where the executables should be put --DESTDIR = /home_c2/johnson/chai/figlet/bin +-DESTDIR = /usr/games +DESTDIR = $(PREFIX)/bin # Where the man page should be put --MANDIR = /home_c2/johnson/chai/man/man6 +-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 ++#DEFAULTFONTDIR = $(DESTDIR)/lib/figlet.dir # Use this definition if you can't put things in /usr/games --DEFAULTFONTDIR = /home_c2/johnson/chai/figlet/fonts +-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). -@@ -51,7 +51,9 @@ +@@ -50,8 +50,10 @@ + rm -f *.o figlet chkfont install: figlet chkfont - mkdir $(DEFAULTFONTDIR) |