41676b6f17
As per PR/42962 provided by Ivan "Rambius" Ivanov. While here, update MASTER_SITES Changes since 0.16.2: Changes in release sitecopy 0.16.6, 16 July 2008 * DAV: Fix crash with progress bar enabled with neon 0.27/0.28. Changes in release sitecopy 0.16.5, 16 July 2008 * DAV: Fix SSL cert caching to avoid repeated prompts. * Update to neon 0.28.3 and support neon 0.24.x through 0.28.x. Changes in release sitecopy 0.16.3, 12 March 2006 * DAV: Add PKCS#12 client cert support; "client-cert /path/to/cert.p12" * Update to neon 0.26.0 (0.24.x and 0.25.x still supported).
37 lines
1.1 KiB
Makefile
37 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.43 2010/03/14 21:06:15 gls Exp $
|
|
|
|
DISTNAME= sitecopy-0.16.6
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.manyfish.co.uk/sitecopy/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.manyfish.co.uk/sitecopy/
|
|
COMMENT= Utility for synchronizing remote and local web sites
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_FEATURES= getopt_long
|
|
USE_TOOLS+= gmake msgfmt
|
|
USE_PKGLOCALEDIR= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --with-ssl
|
|
CONFIGURE_ARGS+= --with-included-neon
|
|
CONFIGURE_ARGS+= --with-libxml2
|
|
|
|
# The build process doesn't correctly find the header for GNU fnmatch, which
|
|
# is provided in ${WRKSRC}/lib. Help the compiler by linking the header
|
|
# to ${WRKSRC} and explicitly passing -I. to the compiler.
|
|
#
|
|
CFLAGS+= -I.
|
|
|
|
pre-build:
|
|
${RM} -f ${WRKSRC:Q}/fnmatch.h
|
|
${LN} -sf ${WRKSRC:Q}/lib/fnmatch.h ${WRKSRC:Q}/fnmatch.h
|
|
|
|
.include "../../devel/gettext-lib/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
|
|
.include "../../mk/pthread.buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|