mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 10:18:09 -04:00
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
$NetBSD: patch-aa,v 1.8 2016/03/30 08:45:12 jperkin Exp $
|
|
|
|
Use pkgsrc layout/flags.
|
|
|
|
--- Makefile.orig Wed Jul 14 11:59:17 1993
|
|
+++ Makefile Sun Sep 12 12:35:57 1999
|
|
@@ -4,13 +4,13 @@
|
|
# You should also add -DSYS5 for Ultrix, AIX, and Solarix.
|
|
# Add -DDEF_SHMEM=n if you can only have n bytes of shared memory
|
|
# (eg: -DDEF_SHMEM=524288 if you can only have half a meg.)
|
|
-CFLAGS=
|
|
+CFLAGS=-O
|
|
|
|
# Where to install buffer and its manual pages
|
|
-INSTBIN=/usr/local/bin
|
|
-INSTMAN=/usr/man/manl
|
|
+INSTBIN=${PREFIX}/bin
|
|
+INSTMAN=${PREFIX}/${PKGMANDIR}/man1
|
|
# The manual page section (normally l or 1)
|
|
-S=l
|
|
+S=1
|
|
|
|
RM=/bin/rm
|
|
ALL=README buffer.man Makefile buffer.c sem.c COPYING
|
|
@@ -18,18 +18,14 @@
|
|
all: buffer
|
|
|
|
buffer: buffer.o sem.o
|
|
- $(CC) -o buffer $(CFLAGS) buffer.o sem.o
|
|
+ $(CC) -o buffer buffer.o sem.o
|
|
|
|
clean:
|
|
$(RM) -f *.o core buffer .merrs
|
|
|
|
install: buffer
|
|
- rm -f $(INSTBIN)/buffer
|
|
- cp buffer $(INSTBIN)/buffer
|
|
- chmod 111 $(INSTBIN)/buffer
|
|
- rm -f $(INSTMAN)/buffer.$S
|
|
- cp buffer.man $(INSTMAN)/buffer.$S
|
|
- chmod 444 $(INSTMAN)/buffer.$S
|
|
+ ${BSD_INSTALL_PROGRAM} buffer ${DESTDIR}$(INSTBIN)/buffer
|
|
+ ${BSD_INSTALL_MAN} buffer.man ${DESTDIR}$(INSTMAN)/buffer.$S
|
|
|
|
buffer.tar: $(ALL)
|
|
$(RM) -f buffer.tar
|