freebsd-ports/sysutils/rsyncbackup/Makefile

46 lines
1 KiB
Makefile
Raw Normal View History

# Created by: Daniel Bond
# $FreeBSD$
PORTNAME= rsyncbackup
PORTVERSION= 1.0
CATEGORIES= sysutils
MASTER_SITES= GOOGLE_CODE
PROJECTHOST= rsync-backup
DISTNAME= rsyncbackup
MAINTAINER= ports@FreeBSD.org
COMMENT= Rsync frontend written in Perl
LICENSE= GPLv2+
BROKEN= Unfetchable (google code has gone away)
DEPRECATED= Unfetchable for more than six months (google code has gone away)
EXPIRATION_DATE= 2017-04-30
RUN_DEPENDS= rsync:net/rsync
CONFIGSRC= ${WRKSRC}/config
CONFIGFILES= backupset.conf config.conf destinations.conf sources.conf
2014-03-10 18:01:36 +01:00
USES= perl5 zip
NO_BUILD= yes
NO_ARCH= yes
SUB_FILES= pkg-message
2014-03-14 14:45:41 +01:00
OPTIONS_DEFINE= DOCS
2014-03-14 14:45:41 +01:00
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
@${MKDIR} ${STAGEDIR}${ETCDIR}
.for configfile in ${CONFIGFILES}
2014-03-14 14:45:41 +01:00
${INSTALL_DATA} ${CONFIGSRC}/${configfile} \
${STAGEDIR}${ETCDIR}/${configfile}.example
.endfor
2015-11-14 04:56:01 +01:00
do-install-DOCS-on:
2014-03-14 14:45:41 +01:00
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>