summaryrefslogtreecommitdiff
path: root/sysutils/tob/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/tob/Makefile')
-rw-r--r--sysutils/tob/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/sysutils/tob/Makefile b/sysutils/tob/Makefile
new file mode 100644
index 00000000000..fae40ef6058
--- /dev/null
+++ b/sysutils/tob/Makefile
@@ -0,0 +1,37 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/06/27 12:01:12 agc Exp $
+
+DISTNAME= tob-0.25
+CATEGORIES= sysutils
+MASTER_SITES= http://tinyplanet.ca/projects/tob/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= tech-pkg@netbsd.org
+HOMEPAGE= http://tinyplanet.ca/projects/tob/
+COMMENT= general driver for making and maintaining backups
+
+USE_PKGINSTALL= yes
+
+EGDIR= ${PREFIX}/share/examples/tob
+CONF_FILES= ${EGDIR}/tob.rc ${PKG_SYSCONFDIR}/tob/tob.rc
+SUPPORT_FILES= ${EGDIR}/example.exclude ${PKG_SYSCONFDIR}/tob/volumes/example.exclude
+SUPPORT_FILES+= ${EGDIR}/example.startdir ${PKG_SYSCONFDIR}/tob/volumes/example.startdir
+
+do-build:
+ for f in tob tob.rc; do \
+ ${MV} ${WRKSRC}/$$f ${WRKSRC}/$$f-pre && \
+ ${SED} -e 's|@PKG_SYSCONFDIR@|${PKG_SYSCONFDIR}|g' \
+ ${WRKSRC}/$$f-pre > ${WRKSRC}/$$f; \
+ done
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/tob ${PREFIX}/sbin
+ ${INSTALL_MAN} ${WRKSRC}/tob.8 ${PREFIX}/man/man8/
+ ${INSTALL_DATA_DIR} ${PKG_SYSCONFDIR}/tob
+ ${INSTALL_DATA_DIR} ${PKG_SYSCONFDIR}/tob/volumes
+ ${INSTALL_DATA_DIR} /var/tob
+ ${INSTALL_DATA_DIR} ${EGDIR}
+ ${INSTALL_DATA} ${WRKSRC}/tob.rc ${EGDIR}/tob.rc
+ ${INSTALL_DATA} ${WRKSRC}/example.exclude ${EGDIR}
+ ${INSTALL_DATA} ${WRKSRC}/example.startdir ${EGDIR}
+
+.include "../../mk/bsd.pkg.mk"