diff options
author | petef <petef@FreeBSD.org> | 2001-08-26 12:55:22 +0800 |
---|---|---|
committer | petef <petef@FreeBSD.org> | 2001-08-26 12:55:22 +0800 |
commit | 9b7d4de46385394a091916a810087cd1a40c01a4 (patch) | |
tree | bd4f40adf5313e0d32070d16a5916285b0681a0b /mail/sigit/files | |
parent | f606d6deada1f6fa369c6856a0909a84de3e2366 (diff) | |
download | freebsd-ports-gnome-9b7d4de46385394a091916a810087cd1a40c01a4.tar.gz freebsd-ports-gnome-9b7d4de46385394a091916a810087cd1a40c01a4.tar.zst freebsd-ports-gnome-9b7d4de46385394a091916a810087cd1a40c01a4.zip |
add sigit 0.0.4
A tool to create random signatures
PR: 29881
Diffstat (limited to 'mail/sigit/files')
-rw-r--r-- | mail/sigit/files/patch-Makefile | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/mail/sigit/files/patch-Makefile b/mail/sigit/files/patch-Makefile new file mode 100644 index 000000000000..f18132fdd54f --- /dev/null +++ b/mail/sigit/files/patch-Makefile @@ -0,0 +1,62 @@ +--- Makefile.orig Thu Mar 15 18:28:16 2001 ++++ Makefile Sat Aug 18 21:03:35 2001 +@@ -6,23 +6,22 @@ + OS=$(shell uname -s) + + # Compiler +-CC=gcc ++CC?=gcc + + # Install prefix Where the database and original file is placed.. + +-PREFIX=/usr/share/sigit + + # Installation directory -- where the binary will go + +-INSTALLDIR=/usr/bin ++INSTALLDIR=${PREFIX}/bin + + # Where the default sigit configuration will be + +-RCDIR=/etc ++RCDIR=${PREFIX}/etc + + # Where the systems man pages are placed.. + +-MANDIR=/usr/share/man ++MANDIR=${PREFIX}/man + + # if you want to test something.. + +@@ -47,11 +46,11 @@ + endif + + # Compiler flags +-CFLAGS= -Wall -O2 -D$(OS) $(FLAGS) ++CFLAGS+= -Wall -D$(OS) $(FLAGS) + + # This is needed for "make install" + OWNER = root +-GROUP = root ++GROUP = wheel + INSTALL = /usr/bin/install -o $(OWNER) -g $(GROUP) + + +@@ -98,14 +97,14 @@ + + + install: +- $(INSTALL) -d $(PREFIX) ++ $(INSTALL) -d $(PREFIX)/share/sigit + $(INSTALL) -d $(INSTALLDIR) + $(INSTALL) -d $(RCDIR) + $(INSTALL) -d $(MANDIR)/man1 + $(INSTALL) -m 555 $(EXE) $(INSTALLDIR) +- $(INSTALL) -m 664 sigit.data $(PREFIX) +- $(INSTALL) -m 664 sigit.sig $(PREFIX) +- $(INSTALL) -m 664 sigit.rc $(RCDIR) ++ $(INSTALL) -m 664 sigit.data $(PREFIX)/share/sigit ++ $(INSTALL) -m 664 sigit.sig $(PREFIX)/share/sigit ++ $(INSTALL) -m 664 sigit.rc $(RCDIR)/sigit.rc.dist + $(INSTALL) -m 444 sigit.1 $(MANDIR)/man1 + $(INSTALL) -m 444 sigit.rc.1 $(MANDIR)/man1 |