14b274834c
backup compression and encryption. Backup can be stored on local file system and on remote host stored over SSH or FTP. Some addition scripts allow backups SQL tables from PostgreSQL and MySQL (pgsql_backup.sh and mysql_backup.sh)), save system configuration files and list of installed packages (sysbackup.sh). PR: ports/79794 Submitted by: Alex Samorukov <samm@os2.kiev.ua>
32 lines
752 B
Makefile
32 lines
752 B
Makefile
# New ports collection makefile for: fsbackup
|
|
# Date created: 1 April 2005
|
|
# Whom: samm
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= fsbackup
|
|
PORTVERSION= 1.2.1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.opennet.ru/dev/fsbackup/src/
|
|
DISTNAME= fsbackup-1.2pl1
|
|
|
|
MAINTAINER= samm@os2.kiev.ua
|
|
COMMENT= File system backup and synchronization utility
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 \
|
|
${SITE_PERL}/Net/FTP.pm:${PORTSDIR}/net/p5-Net
|
|
|
|
USE_PERL5= yes
|
|
|
|
MAN1= fsbackup.1
|
|
MANCOMPRESSED= no
|
|
|
|
NO_BUILD= yes
|
|
NO_INSTALL_MANPAGES=yes
|
|
|
|
do-install:
|
|
@cd ${WRKSRC};./install.pl --prefix=${PREFIX}/fsbackup --prefix-man=${MANPREFIX}/man/man1
|
|
@${RM} ${PREFIX}/fsbackup/fsbackup.1
|
|
|
|
.include <bsd.port.mk>
|