forked from Lainports/freebsd-ports
rsnapshot makes it easy to make periodic snapshots of local machines, and remote machines over ssh. The code makes extensive use of hard links whenever possible, to greatly reduce the disk space required. It is written entirely in perl with no module dependencies, and has been tested with versions 5.004 through 5.8.1. WWW: http://www.rsnapshot.org PR: 60873 Submitted by: Ralf van Dooren <r.vdooren@snow.nl>
31 lines
679 B
Makefile
31 lines
679 B
Makefile
# New ports collection makefile for: rsnapshot
|
|
# Date created: 2004-01-03
|
|
# Whom: Ralf van Dooren <r.vdooren@snow.nl>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= rsnapshot
|
|
PORTVERSION= 1.0.9
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.rsnapshot.org/downloads/
|
|
|
|
MAINTAINER= r.vdooren@snow.nl
|
|
COMMENT= Filesystem snapshot utility based on rsync(1)
|
|
|
|
RUN_DEPENDS= rsync:${PORTSDIR}/net/rsync
|
|
|
|
USE_PERL5= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
MAN1= rsnapshot.1
|
|
DOCS= AUTHORS ChangeLog README TODO
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|