freebsd-ports/sysutils/rsyncbackup/Makefile
Edwin Groothuis 3fc75d2445 Chase change in bsd.sites.mk to support MASTER_SITES on googlecode.com
where the portname does not match the projects hostname.

PR:		ports/121453 (related)
Submitted by:	Edwin Groothuis <edwin@mavetju.org>
Reviewed by:	pav@
2008-03-13 11:27:29 +00:00

45 lines
934 B
Makefile

# New ports collection makefile for: rsyncbackup
# Date created: 8 October 2007
# Whom: Daniel Bond
#
# $FreeBSD$
#
PORTNAME= rsyncbackup
PORTVERSION= 1.0
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
DISTNAME= rsyncbackup
MAINTAINER= ports@danielbond.org
COMMENT= Rsync frontend written in Perl
RUN_DEPENDS= rsync:${PORTSDIR}/net/rsync
PROJECTHOST= rsync-backup
CONFIGSRC= ${WRKSRC}/config
CONFIGFILES= backupset.conf config.conf destinations.conf sources.conf
USE_ZIP= yes
USE_PERL= yes
NO_BUILD= yes
SUB_FILES= pkg-message
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
${MKDIR} ${ETCDIR}
.for configfile in ${CONFIGFILES}
${INSTALL_DATA} ${CONFIGSRC}/${configfile} ${ETCDIR}/${configfile}.example
.endfor
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${DOCSDIR})
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>