Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

24
sysutils/dirvish/DESCR Normal file
View File

@@ -0,0 +1,24 @@
dirvish is a backup system using rsync and link farms.
Each image is a directory containing transfer log, summary, tree
and if transfer errors were detected an rsync_error file. The
transfer log retains the the output of any pre and post processing
commands and the rsync log listing all files that were changed or
added with some statistical information. The summary file contains
all the information about how the image was created and meta-data
for managing the image in config file format. Tree is the copy of
the client tree.
The client directory tree is compared with an existing image to
create a new image. Unchanged files are shared between images.
For changed files only those parts that actually change are transfered
over the network. Unchanged portions of files are copied from the
reference image.
The resulting images contain complete copies of the original trees
preserving ownership and file permissions. In this way even though
the backups are made incrementally, each image can be used
independently for restores or to make removable-media off-site
copies or archives.
The removal of an image will have no effect on other images.

56
sysutils/dirvish/Makefile Normal file
View File

@@ -0,0 +1,56 @@
# $NetBSD: Makefile,v 1.9 2013/05/31 12:42:00 wiz Exp $
#
DISTNAME= dirvish-1.2.1
PKGREVISION= 3
CATEGORIES= sysutils
MASTER_SITES= http://www.dirvish.org/
EXTRACT_SUFX= .tgz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.dirvish.org/
COMMENT= Fast, disk based, rotating network backup system
DEPENDS+= rsync>=2.6.0:../../net/rsync
DEPENDS+= {perl>=5.8.8,p5-Getopt-Long>=2.35}:../../devel/p5-Getopt-Long
DEPENDS+= p5-Time-modules>=2003.0:../../time/p5-Time-modules
DEPENDS+= p5-Time-Period>=1.0:../../time/p5-Time-Period
PKG_SYSCONFSUBDIR= dirvish
EXECUTABLES= dirvish dirvish-runall dirvish-expire dirvish-locate
MAN5= dirvish.conf.5
MAN8= dirvish.8 dirvish-runall.8 dirvish-expire.8 \
dirvish-locate.8
DOCS= COPYING FAQ.html INSTALL RELEASE.html TODO.html
INSTALLATION_DIRS= ${PKGMANDIR}/man5 ${PKGMANDIR}/man8 sbin \
share/doc/dirvish
do-build:
cd ${WRKSRC}; \
for f in ${EXECUTABLES}; do \
${ECHO} "#!${PERL5}" > $$f; \
${ECHO} "\$$CONFDIR = \"${PKG_SYSCONFDIR}\";" >> $$f; \
${CAT} $$f.pl >>$$f; \
${CAT} loadconfig.pl >>$$f; \
done
do-install:
for f in ${EXECUTABLES}; do \
${INSTALL_SCRIPT} ${WRKSRC}/$$f ${DESTDIR}${PREFIX}/sbin; \
done
for f in ${MAN5}; do \
${INSTALL_MAN} ${WRKSRC}/$$f \
${DESTDIR}${PREFIX}/${PKGMANDIR}/man5; \
done
for f in ${MAN8}; do \
${INSTALL_MAN} ${WRKSRC}/$$f \
${DESTDIR}${PREFIX}/${PKGMANDIR}/man8; \
done
for f in ${DOCS}; do \
${INSTALL_DATA} ${WRKSRC}/$$f \
${DESTDIR}${PREFIX}/share/doc/dirvish; \
done
.include "../../mk/bsd.pkg.mk"

15
sysutils/dirvish/PLIST Normal file
View File

@@ -0,0 +1,15 @@
@comment $NetBSD: PLIST,v 1.2 2009/06/14 18:16:03 joerg Exp $
sbin/dirvish
sbin/dirvish-runall
sbin/dirvish-expire
sbin/dirvish-locate
man/man5/dirvish.conf.5
man/man8/dirvish.8
man/man8/dirvish-runall.8
man/man8/dirvish-expire.8
man/man8/dirvish-locate.8
share/doc/dirvish/COPYING
share/doc/dirvish/FAQ.html
share/doc/dirvish/INSTALL
share/doc/dirvish/RELEASE.html
share/doc/dirvish/TODO.html

View File

@@ -0,0 +1,5 @@
$NetBSD: distinfo,v 1.1.1.1 2006/07/24 18:29:23 wiz Exp $
SHA1 (dirvish-1.2.1.tgz) = 0923245c10702ae8015b5b54dcffb051be531d8d
RMD160 (dirvish-1.2.1.tgz) = 7839fa032bf43a55527c23dd934961d7a11cd5fc
Size (dirvish-1.2.1.tgz) = 49156 bytes