1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Add pdumpfs, a daily backup system similar to Plan9's dumpfs.

This commit is contained in:
Akinori MUSHA 2001-04-30 11:06:34 +00:00
parent 18d8d74d74
commit a411428b81
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=42080
6 changed files with 62 additions and 0 deletions

View File

@ -99,6 +99,7 @@
SUBDIR += p5-Unix-ConfigFile
SUBDIR += p5-Unix-Syslog
SUBDIR += paicc
SUBDIR += pdumpfs
SUBDIR += perf
SUBDIR += personality
SUBDIR += pib

35
sysutils/pdumpfs/Makefile Normal file
View File

@ -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>

View File

@ -0,0 +1 @@
MD5 (pdumpfs-0.3.tar.gz) = 48ed459de1294b15b6d346ae0cfa68eb

View File

@ -0,0 +1 @@
A daily backup system similar to Plan9's dumpfs

View File

@ -0,0 +1,18 @@
pdumpfs: a daily backup system similar to Plan9's dumpfs
What's pdumpfs?
pdumpfs is a simple daily backup system similar to Plan9's dumpfs
which preserves every daily snapshot. pdumpfs is written in Ruby.
You can access the past snapshots at any time for retrieving a certain
day's file. Let's backup your home directory with pdumpfs!
pdumpfs constructs the snapshot YYYY/MM/DD in the destination
directory. All source files are copied to the snapshot directory for
the first time. On and after the second time, pdumpfs copies only
updated or newly created files and stores unchanged files as hard
links to the files of the previous day's snapshot for saving a disk
space.
WWW: http://namazu.org/~satoru/pdumpfs/
Author: Satoru Takabayashi <satoru@namazu.org>

View File

@ -0,0 +1,6 @@
sbin/pdumpfs
%%PORTDOCS%%share/doc/pdumpfs/ChangeLog
%%PORTDOCS%%share/doc/pdumpfs/pdumpfs-en.html
%%PORTDOCS%%share/doc/pdumpfs/ja/pdumpfs-ja.html
%%PORTDOCS%%@dirrm share/doc/pdumpfs/ja
%%PORTDOCS%%@dirrm share/doc/pdumpfs