diff options
author | tijl <tijl@FreeBSD.org> | 2014-03-25 21:20:54 +0800 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2014-03-25 21:20:54 +0800 |
commit | 2c6f1f7beb0cfe974eec9ebd6ad1f06ab31b0415 (patch) | |
tree | 74e82f775b6facce65b9829f971b5ff7b7d2beef /net/rsync | |
parent | 2633b67c47536edc7faa252702c6c08c340a93c7 (diff) | |
download | freebsd-ports-gnome-2c6f1f7beb0cfe974eec9ebd6ad1f06ab31b0415.tar.gz freebsd-ports-gnome-2c6f1f7beb0cfe974eec9ebd6ad1f06ab31b0415.tar.zst freebsd-ports-gnome-2c6f1f7beb0cfe974eec9ebd6ad1f06ab31b0415.zip |
- Bump PORTREVISION after the latest change to converters/libiconv because
rsync uses locale_charset when the ICONV option is enabled. [1]
- Replace CFLAGS+=-I... with CPPFLAGS+=-I... to fix warnings during
configure about headers being accepted by the compiler but not the
preprocessor.
- Replace CONFIGUREDCFLAGS (guard against CFLAGS damage by MAKE_ENV)
with CPPFLAGS. The dist makefile contains CFLAGS=@CFLAGS@ so CFLAGS
in MAKE_ENV isn't a problem.
- Replace ac_cv_header_iconv_h=no with --disable-iconv-open. The first
disables HAVE_ICONV_H while the latter disables USE_ICONV_OPEN but both
are checked in rsync.h:
#if defined USE_ICONV_OPEN && defined HAVE_ICONV_H
- Set ac_cv_search_libiconv_open=no when empty(ICONV_LIB). This prevents
detection of libiconv when the ICONV option is disabled, but it is also
needed on FreeBSD 10 with libiconv installed to prevent linking with
-liconv.
- New LIB_DEPENDS syntax.
- Move pre-configure to post-patch.
- Remove malloc.h patching.
- Replace MAKE with MAKE_CMD. MAKE is the currently running make and
MAKE_CMD is the make used to build the port.
- Unmute installation commands.
Reported by: "Kenta S." <kentas@hush.com> [1]
Approved by: ehaupt
Diffstat (limited to 'net/rsync')
-rw-r--r-- | net/rsync/Makefile | 41 |
1 files changed, 18 insertions, 23 deletions
diff --git a/net/rsync/Makefile b/net/rsync/Makefile index 87bbef943e1f..b3b4155ffcc5 100644 --- a/net/rsync/Makefile +++ b/net/rsync/Makefile @@ -3,7 +3,7 @@ PORTNAME= rsync PORTVERSION= 3.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net ipv6 MASTER_SITES= http://rsync.samba.org/ftp/%SUBDIR%/ \ ftp://ftp.samba.org/pub/%SUBDIR%/ \ @@ -71,18 +71,14 @@ EXTRA_PATCHES+= ${WRKSRC}/patches/atimes.diff .if ${PORT_OPTIONS:MICONV} || ${PORT_OPTIONS:MFLAGS} || ${PORT_OPTIONS:MACL} || make(makesum) || ${PORT_OPTIONS:MTIMELIMIT} || ${PORT_OPTIONS:MATIMES} || ${PORT_OPTIONS:MRENAMED} || ${PORT_OPTIONS:MRENFL} DISTFILES+= ${PORTNAME}-patches-${PORTVERSION}${EXTRACT_SUFX} -CFLAGS+= -I${LOCALBASE}/include .endif .if ${PORT_OPTIONS:MICONV} USES+= iconv -CONFIGUREDCFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ENV+= CONFIGUREDCFLAGS="${CONFIGUREDCFLAGS}" +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib .else -CONFIGURE_ARGS+= --disable-iconv -CONFIGURE_ENV+= ac_cv_search_libiconv_open=no -CONFIGURE_ENV+= ac_cv_header_iconv_h=no +CONFIGURE_ARGS+=--disable-iconv --disable-iconv-open .endif .if ${PORT_OPTIONS:MFLAGS} @@ -111,9 +107,9 @@ EXTRA_PATCHES+= ${WRKSRC}/patches/acls.diff .endif .if ${PORT_OPTIONS:MPOPT_PORT} -LIB_DEPENDS+= popt:${PORTSDIR}/devel/popt -CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib" -CFLAGS+= -I${LOCALBASE}/include +LIB_DEPENDS+= libpopt.so:${PORTSDIR}/devel/popt +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib .else CONFIGURE_ARGS+= --with-included-popt .endif @@ -124,25 +120,24 @@ CONFIGURE_ARGS+= --with-rsh=ssh CONFIGURE_ARGS+= --with-rsh=rsh .endif -# guard against CFLAGS damage by MAKE_ENV -post-patch: - @${REINPLACE_CMD} -e 's|CFLAGS|CONFIGUREDCFLAGS|' \ - -e 's|perl.*|${DO_NADA}|' \ - ${WRKSRC}/Makefile.in +.include <bsd.port.pre.mk> + +.if empty(ICONV_LIB) +CONFIGURE_ARGS+=ac_cv_search_libiconv_open=no +.endif -pre-configure: +post-patch: + @${REINPLACE_CMD} -e 's|perl.*|${DO_NADA}|' ${WRKSRC}/Makefile.in @${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} ${STAGEDIR}${PREFIX}/bin/rsync - @${INSTALL_DATA} ${FILESDIR}/rsyncd.conf.sample ${STAGEDIR}${PREFIX}/etc/ + ${INSTALL_DATA} ${FILESDIR}/rsyncd.conf.sample ${STAGEDIR}${PREFIX}/etc/ @${MKDIR} ${STAGEDIR}${DOCSDIR} - @${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} test: build - @cd ${WRKSRC} && ${MAKE} check + @(cd ${WRKSRC} && ${MAKE_CMD} check) -.include <bsd.port.mk> +.include <bsd.port.post.mk> |