diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-04-30 11:06:34 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-04-30 11:06:34 +0000 |
commit | a411428b812df1c64fb016364784b3ba5e6335ba (patch) | |
tree | 6472d3900bc3b61f540c3de55d77853746a12d7b /sysutils/pdumpfs/Makefile | |
parent | Update master site. (diff) |
Add pdumpfs, a daily backup system similar to Plan9's dumpfs.
Diffstat (limited to 'sysutils/pdumpfs/Makefile')
-rw-r--r-- | sysutils/pdumpfs/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/sysutils/pdumpfs/Makefile b/sysutils/pdumpfs/Makefile new file mode 100644 index 000000000000..7ebe620307db --- /dev/null +++ b/sysutils/pdumpfs/Makefile @@ -0,0 +1,35 @@ +# Ports collection makefile for: pdumpfs +# Date created: 30 April 2001 +# Whom: Akinori MUSHA aka knu <knu@idaemons.org> +# +# $FreeBSD$ +# + +PORTNAME= pdumpfs +PORTVERSION= 0.3 +CATEGORIES= sysutils +MASTER_SITES= http://namazu.org/~satoru/pdumpfs/ + +MAINTAINER= knu@FreeBSD.org + +USE_RUBY= yes + +NO_BUILD= yes + +RUBY_SHEBANG_FILES= ${WRKSRC}/pdumpfs +DOCS_EN= ChangeLog pdumpfs-en.html +DOCS_JA= pdumpfs-ja.html + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/pdumpfs ${PREFIX}/sbin/ +.if !defined(NOPORTDOCS) + ${MKDIR} ${PREFIX}/share/doc/${PORTNAME}/ja +.for f in ${DOCS_EN} + ${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/${PORTNAME}/ +.endfor +.for f in ${DOCS_JA} + ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${PREFIX}/share/doc/${PORTNAME}/ja/ +.endfor +.endif + +.include <bsd.port.mk> |