mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Flexbackup is a flexible "wrapper" around dump, cpio, afio, or tar which helps
automate doing tape backups (local or remote). PR: 14108 Submitted by: John Reynolds <jreynold@primenet.com>
This commit is contained in:
parent
25abf4b4a7
commit
1b9c475a42
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=22218
6 changed files with 79 additions and 0 deletions
35
sysutils/flexbackup/Makefile
Normal file
35
sysutils/flexbackup/Makefile
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
# New ports collection makefile for: flexbackup
|
||||||
|
# Version required: 0.9.6
|
||||||
|
# Date created: Mon Sep 27 21:35:45 MST 1999
|
||||||
|
# Whom: John Reynolds <jreynold@primenet.com>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
DISTNAME= flexbackup-0.9.6
|
||||||
|
CATEGORIES= sysutils
|
||||||
|
MASTER_SITES= http://members.home.com/edwinh/flexbackup/tarball/ \
|
||||||
|
http://metalab.unc.edu/pub/linux/system/backup/
|
||||||
|
|
||||||
|
MAINTAINER= jreynold@primenet.com
|
||||||
|
|
||||||
|
RUN_DEPENDS= afio:${PORTSDIR}/sysutils/afio \
|
||||||
|
buffer:${PORTSDIR}/misc/buffer
|
||||||
|
|
||||||
|
NO_BUILD = yes
|
||||||
|
USE_PERL5 = yes
|
||||||
|
|
||||||
|
post-configure:
|
||||||
|
@${INSTALL_DATA} ${WRKSRC}/flexbackup.conf ${WRKSRC}/flexbackup.conf.sample
|
||||||
|
@${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/flexbackup.README
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
${INSTALL_SCRIPT} ${WRKSRC}/flexbackup ${PREFIX}/bin
|
||||||
|
${MKDIR} ${PREFIX}/share/flexbackup
|
||||||
|
${INSTALL_DATA} ${WRKSRC}/flexbackup.conf.sample ${PREFIX}/share/flexbackup
|
||||||
|
${INSTALL_DATA} ${WRKSRC}/flexbackup.README ${PREFIX}/share/flexbackup
|
||||||
|
|
||||||
|
post-install:
|
||||||
|
@${CAT} ${PKGDIR}/MESSAGE
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
1
sysutils/flexbackup/distinfo
Normal file
1
sysutils/flexbackup/distinfo
Normal file
|
@ -0,0 +1 @@
|
||||||
|
MD5 (flexbackup-0.9.6.tar.gz) = aba52f1c03f9bfeb44c6c81129461469
|
1
sysutils/flexbackup/pkg-comment
Normal file
1
sysutils/flexbackup/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
||||||
|
A perl-based, flexible tape backup system. Uses dump, cpio, or afio
|
17
sysutils/flexbackup/pkg-descr
Normal file
17
sysutils/flexbackup/pkg-descr
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
Flexible backup script.
|
||||||
|
|
||||||
|
Features:
|
||||||
|
o Easy to configure.
|
||||||
|
o Uses dump, afio, tar, or cpio with the flick of a switch.
|
||||||
|
o Backup, extract, compare, list modes.
|
||||||
|
o Compression and buffering options for all backup types.
|
||||||
|
o Full (0) and 1-9 levels of incremental backup (ala "dump").
|
||||||
|
o Filesystem-oriented (won't traverse devices).
|
||||||
|
o Does remote filesystems (over rsh/ssh; no special service).
|
||||||
|
o Works with IDE/SCSI tapes
|
||||||
|
or Linux ftape (allows table of contents support)
|
||||||
|
or archive to normal files rather than device
|
||||||
|
o Nice log files.
|
||||||
|
|
||||||
|
|
||||||
|
WWW: http://members.home.com/edwinh/flexbackup/
|
21
sysutils/flexbackup/pkg-message
Normal file
21
sysutils/flexbackup/pkg-message
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
|
||||||
|
------------------ Flexbackup Configuration Information -----------------
|
||||||
|
|
||||||
|
Flexbackup needs to have its configuration file placed in /etc. A template
|
||||||
|
copy of this configuration file has been installed into
|
||||||
|
|
||||||
|
${PREFIX}/share/flexbackup/flexbackup.conf.sample
|
||||||
|
|
||||||
|
(where PREFIX nominally is /usr/local). Please copy this file as
|
||||||
|
|
||||||
|
/etc/flexbackup.conf
|
||||||
|
|
||||||
|
and edit appropriately for your site.
|
||||||
|
|
||||||
|
** Changes have occurred in this file since previous versions **
|
||||||
|
|
||||||
|
Also see ${PREFIX}/share/flexbackup/flexbackup.README for more information on
|
||||||
|
how to use flexbackup (until the man pages are written :).
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
|
4
sysutils/flexbackup/pkg-plist
Normal file
4
sysutils/flexbackup/pkg-plist
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
bin/flexbackup
|
||||||
|
share/flexbackup/flexbackup.conf.sample
|
||||||
|
share/flexbackup/flexbackup.README
|
||||||
|
@dirrm share/flexbackup
|
Loading…
Add table
Reference in a new issue