aboutsummaryrefslogtreecommitdiffstats
path: root/net/rsync/Makefile
blob: 2a39feaf45f556a91c17b09117301047c12d58da (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Ports collection makefile for:  rsync
# Date created:           Sat Aug 3, 1996
# Whom:               David O'Brien (obrien@cs.ucdavis.edu)
#
# $FreeBSD$
#

PORTNAME=   rsync
PORTVERSION=    2.6.8
PORTREVISION=   2
CATEGORIES= net ipv6
MASTER_SITES=   http://rsync.samba.org/ftp/%SUBDIR%/ \
        ftp://ftp.samba.org//pub/%SUBDIR%/ \
        ftp://sunsite.auc.dk/pub/unix/%SUBDIR%/  \
        ftp://ftp.sunet.se/pub/unix/admin/%SUBDIR%/  \
        ftp://ftp.fu-berlin.de/pub/unix/network/%SUBDIR%/ \
        http://www.mirrorservice.org/sites/rsync.samba.org/
MASTER_SITE_SUBDIR= rsync

MAINTAINER= pav@FreeBSD.org
COMMENT=    A network file distribution/synchronization utility

USE_RC_SUBR=    rsyncd.sh
SUB_LIST=   NAME=rsyncd

GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --disable-debug --enable-ipv6 \
        --with-rsyncd-conf=${PREFIX}/etc/rsyncd.conf
CONFIGURE_TARGET=   --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
PATCH_STRIP=    -p1

.if !defined(NOPORTDOCS)
PORTDOCS=   NEWS README csprotocol.txt tech_report.tex
.endif

MAN1=       rsync.1
MAN5=       rsyncd.conf.5

OPTIONS=    POPT_PORT "Use popt from devel/popt instead of bundled one" off \
        TIMELIMIT "Time limit patch" on \
        FLAGS "File system flags support patch, adds --flags" on \
        ACLS "ACL support patch, adds --acls" on \
        SSH "Use SSH instead of RSH" on

.include <bsd.port.pre.mk>

.if defined(WITH_POPT_PORT)
LIB_DEPENDS+=   popt.0:${PORTSDIR}/devel/popt
CONFIGURE_ENV=  CFLAGS="-I${LOCALBASE}/include" \
        LIBS="-L${LOCALBASE}/lib"
.else
CONFIGURE_ARGS+=    --with-included-popt
.endif

.if !defined(WITHOUT_TIMELIMIT)
EXTRA_PATCHES+= ${WRKSRC}/patches/time-limit.diff
.endif

.if !defined(WITHOUT_FLAGS)
EXTRA_PATCHES+= ${WRKSRC}/patches/flags.diff
.endif

.if !defined(WITHOUT_ACLS)
.if ${OSVERSION} >= 500000
EXTRA_PATCHES+= ${WRKSRC}/patches/acls.diff
CONFIGURE_ARGS+=--enable-acl-support
.endif
.endif

.if defined(WITHOUT_SSH)
CONFIGURE_ARGS+=    --with-rsh=rsh
.endif

pre-configure:
    @${REINPLACE_CMD} -e 's:/etc/:${PREFIX}/etc/:g'  \
        ${WRKSRC}/rsync.h ${WRKSRC}/rsync.1 ${WRKSRC}/rsyncd.conf.5
    @${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|g' \
        ${WRKSRC}/rsync.h ${WRKSRC}/zlib/zutil.h

post-install:
    @${STRIP_CMD} ${DESTDIR}${PREFIX}/bin/rsync
    @${INSTALL_DATA} ${FILESDIR}/rsyncd.conf.sample ${DESTDIR}${PREFIX}/etc/
    @[ -f ${DESTDIR}${PREFIX}/etc/rsyncd.conf ] || \
        ${CP} ${DESTDIR}${PREFIX}/etc/rsyncd.conf.sample \
        ${DESTDIR}${PREFIX}/etc/rsyncd.conf
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DESTDIR}${DOCSDIR}
    @${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DESTDIR}${DOCSDIR}
.endif

test: build
    @cd ${WRKSRC} && ${MAKE} check

.include <bsd.port.post.mk>