aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/rsyncbackup/Makefile
blob: 5b2cbcd80ec6b210dc3dbb6692b7359574a92181 (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
41
42
# Created by: 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
USES=       perl5
NO_BUILD=   yes

SUB_FILES=  pkg-message

NO_STAGE=   yes
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>