2019-10-07 15:28:25 +00:00
|
|
|
# $OpenBSD: Makefile,v 1.82 2019/10/07 15:28:25 jca Exp $
|
1998-11-26 18:22:06 +00:00
|
|
|
|
2008-04-10 15:06:45 +00:00
|
|
|
COMMENT = mirroring/synchronization over low bandwidth links
|
2002-01-14 23:07:49 +00:00
|
|
|
|
2018-02-13 19:20:06 +00:00
|
|
|
DISTNAME = rsync-3.1.3
|
2008-04-10 15:06:45 +00:00
|
|
|
CATEGORIES = net
|
2013-10-10 12:01:30 +00:00
|
|
|
HOMEPAGE = https://rsync.samba.org/
|
1998-11-26 18:22:06 +00:00
|
|
|
|
2008-04-10 15:06:45 +00:00
|
|
|
MAINTAINER = Marc Espie <espie@openbsd.org>
|
1999-02-21 04:26:09 +00:00
|
|
|
|
2011-09-03 13:06:01 +00:00
|
|
|
FLAVORS = iconv
|
|
|
|
FLAVOR ?=
|
|
|
|
|
2011-04-02 15:13:25 +00:00
|
|
|
# GPLv3
|
2019-07-12 20:48:23 +00:00
|
|
|
PERMIT_PACKAGE = Yes
|
2011-04-02 15:13:25 +00:00
|
|
|
|
2014-06-30 19:34:36 +00:00
|
|
|
WANTLIB = c
|
2000-02-12 08:02:07 +00:00
|
|
|
|
2019-10-07 15:28:25 +00:00
|
|
|
MASTER_SITES = https://filedump.se.rit.edu/pub/distfiles/ \
|
|
|
|
https://rsync.samba.org/ftp/rsync/src/ \
|
2013-10-10 12:01:30 +00:00
|
|
|
http://ftp.funet.fi/pub/mirrors/samba.org/pub/rsync/src/
|
2002-01-14 23:07:49 +00:00
|
|
|
|
2008-04-10 15:06:45 +00:00
|
|
|
CONFIGURE_STYLE =gnu
|
|
|
|
CONFIGURE_ARGS =--with-included-popt \
|
2014-06-30 19:34:36 +00:00
|
|
|
--with-included-zlib \
|
2005-10-14 19:31:39 +00:00
|
|
|
--with-rsyncd-conf="${SYSCONFDIR}/rsyncd.conf" \
|
2013-10-10 12:01:30 +00:00
|
|
|
--with-rsh=/usr/bin/ssh \
|
2011-04-02 15:13:25 +00:00
|
|
|
--with-nobody-group=_rsync
|
1998-11-26 18:22:06 +00:00
|
|
|
|
2013-02-09 14:49:50 +00:00
|
|
|
.if ${FLAVOR:Miconv}
|
2011-09-03 13:06:01 +00:00
|
|
|
CONFIGURE_ENV += CPPFLAGS='-I${LOCALBASE}/include' \
|
|
|
|
LDFLAGS='-L${LOCALBASE}/lib'
|
2016-04-05 19:05:37 +00:00
|
|
|
LIB_DEPENDS += converters/libiconv
|
|
|
|
WANTLIB += iconv
|
2011-09-03 13:06:01 +00:00
|
|
|
.endif
|
|
|
|
|
2008-04-10 15:06:45 +00:00
|
|
|
DOCDIR = ${PREFIX}/share/doc/rsync
|
1998-11-26 18:22:06 +00:00
|
|
|
|
2011-03-07 19:48:20 +00:00
|
|
|
pre-configure:
|
2012-09-18 11:28:23 +00:00
|
|
|
${SUBST_CMD} ${WRKSRC}/rsyncd.conf.5 \
|
|
|
|
${WRKSRC}/support/rrsync
|
2011-03-07 19:48:20 +00:00
|
|
|
|
2013-10-10 12:01:30 +00:00
|
|
|
post-install:
|
2000-03-04 08:17:37 +00:00
|
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
1998-11-26 18:22:06 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/tech_report.tex ${DOCDIR}
|
2013-10-10 12:01:30 +00:00
|
|
|
${INSTALL_SCRIPT} ${WRKSRC}/support/rrsync ${PREFIX}/bin
|
1998-11-26 18:22:06 +00:00
|
|
|
|
|
|
|
.include <bsd.port.mk>
|