forked from Lainports/freebsd-ports
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight
36 lines
834 B
Makefile
36 lines
834 B
Makefile
# Created by: Daniel Bond
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rsyncbackup
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= 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
|
|
|
|
USES= perl5 zip
|
|
NO_BUILD= yes
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${ETCDIR}
|
|
.for configfile in ${CONFIGFILES}
|
|
${INSTALL_DATA} ${CONFIGSRC}/${configfile} \
|
|
${STAGEDIR}${ETCDIR}/${configfile}.example
|
|
.endfor
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|