summaryrefslogtreecommitdiff
path: root/sysutils/bkpupsd/files/patch-aa
diff options
context:
space:
mode:
authorVanilla I. Shu <vanilla@FreeBSD.org>2013-11-08 15:06:28 +0000
committerVanilla I. Shu <vanilla@FreeBSD.org>2013-11-08 15:06:28 +0000
commitbc8595b19c8e1730b9a3dac40252fea5c6334569 (patch)
tree2b7ded4f3b997cac10a101625d2e9f71d52e08d9 /sysutils/bkpupsd/files/patch-aa
parent- Support STAGE (diff)
Support STAGEDIR.
Notes
Notes: svn path=/head/; revision=333238
Diffstat (limited to 'sysutils/bkpupsd/files/patch-aa')
-rw-r--r--sysutils/bkpupsd/files/patch-aa38
1 files changed, 0 insertions, 38 deletions
diff --git a/sysutils/bkpupsd/files/patch-aa b/sysutils/bkpupsd/files/patch-aa
deleted file mode 100644
index 88642dbb8306..000000000000
--- a/sysutils/bkpupsd/files/patch-aa
+++ /dev/null
@@ -1,38 +0,0 @@
---- Makefile.orig Sun Aug 3 13:02:37 1997
-+++ Makefile Wed Aug 4 13:43:37 1999
-@@ -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 ${SBINDIR}
-+ ${BSD_INSTALL_MAN} ./doc/bkpupsd.8 ${MANDIR}
-+ mkdir -p ${SCRIPTDIR}
-+ (cd scripts; for i in *; do ${BSD_INSTALL_SCRIPT} $$i ${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}