aboutsummaryrefslogtreecommitdiff
path: root/sysutils/bkpupsd/files/patch-Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/bkpupsd/files/patch-Makefile')
-rw-r--r--sysutils/bkpupsd/files/patch-Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/sysutils/bkpupsd/files/patch-Makefile b/sysutils/bkpupsd/files/patch-Makefile
new file mode 100644
index 000000000000..f31f1e1f32dc
--- /dev/null
+++ b/sysutils/bkpupsd/files/patch-Makefile
@@ -0,0 +1,38 @@
+--- Makefile.orig 1997-08-04 01:02:37.000000000 +0800
++++ Makefile 2013-11-08 20:53:42.000000000 +0800
+@@ -5,24 +5,22 @@
+ # ver 1.0 A
+ #
+
+-CC= /usr/bin/cc
+-SBINDIR= /usr/local/sbin
+-MANDIR= /usr/local/man
+-SCRIPTDIR= /usr/local/libexec
++#CC= /usr/bin/cc
++SBINDIR= ${PREFIX}/sbin
++MANDIR= ${PREFIX}/man/man8
++SCRIPTDIR= ${PREFIX}/libexec/bkpupsd
+
+ all: ./src/bkpupsd.c
+- ${CC} -o ./bin/bkpupsd ./src/bkpupsd.c
++ ${CC} ${CFLAGS} -o ./bin/bkpupsd ./src/bkpupsd.c
+
+ install:
+- chown root.wheel ./bin/bkpupsd
+- chmod 700 ./bin/bkpupsd
+- cp ./bin/bkpupsd ${SBINDIR}/bkpupsd
+- cp ./doc/bkpupsd.8 ${MANDIR}/man8/bkpupsd.8
+- chown root.wheel ./scripts/*
+- cp -fR ./scripts ${SCRIPTDIR}/bkpupsd
++ ${BSD_INSTALL_PROGRAM} ./bin/bkpupsd ${DESTDIR}${SBINDIR}
++ ${BSD_INSTALL_MAN} ./doc/bkpupsd.8 ${DESTDIR}${MANDIR}
++ mkdir -p ${DESTDIR}${SCRIPTDIR}
++ (cd scripts; for i in *; do ${BSD_INSTALL_SCRIPT} $$i ${DESTDIR}${SCRIPTDIR}; done)
+
+ clean:
+ rm -f ./bin/bkpupsd
+ rm -f ${SBINDIR}/bkpupsd
+- rm -f ${MANDIR}/man8/bkpupsd.8
+- rm -rf ${SCRIPTDIR}/bkpupsd
++ rm -f ${MANDIR}/bkpupsd.8
++ rm -rf ${SCRIPTDIR}