blob: 53c9486a9b51d3aa6505fd4f701e1b3c8d6fbda3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
PORTNAME= rsyncbackup
PORTVERSION= 1.1
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= https://BSDforge.com/projects/source/sysutils/rsyncbackup/
MAINTAINER= portmaster@bsdforge.com
COMMENT= Rsync frontend written in Perl
WWW= https://BSDforge.com/projects/sysutils/rsync-backup/
LICENSE= GPLv2+
BROKEN= Unfetchable
RUN_DEPENDS= rsync:net/rsync
CONFIGSRC= ${WRKSRC}/config
CONFIGFILES= backupset.conf config.conf destinations.conf sources.conf
USES= perl5 tar:xz
NO_BUILD= yes
NO_ARCH= 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
do-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} \* ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>
|