pkgsrc/www/sitecopy/Makefile

42 lines
1.1 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.31 2005/05/22 20:08:46 jlam Exp $
Update to 0.13.4, provided by Hiramatsu Yoshifumi in PR 22895: Changes in release sitecopy 0.13.4, 29 July 2003 * Fix ~/.sitecopy directory permissions check on some platforms. * Fix included getopt build on some platforms. * Updated Italian translation (Cristian Rigamonti). * neon updates: - add support for Kerberos authentication over HTTP ("GSS-Negotiate"). - fix compatibility with OpenSSL 0.9.6. Changes in release sitecopy 0.13.3, 30 June 2003 * 'ls' parsing tweaks in FTP fetch mode. * Better error handling for corrupt site storage files. * Update to neon 0.24. Changes in release sitecopy 0.13.2, 17 June 2003 * Fixes for FTP synch mode (Paul J. Mantyla, David Madore and others). Changes in release sitecopy 0.13.1, 15 June 2003 * Fixes for FTP fetch mode: - corruption of downloaded files - handling of empty lines in responses * Drop support for non-XML storage files produced by sitecopy-0.7.0 and earlier. * Fixes for SSL certificate caching. * Fix build using included libintl. * Fix fn_escape() build with some compilers. Changes in release sitecopy 0.13.0, 10 May 2003 * Really fix use of non-ASCII filenames: - drop 'charset' config option - this should no longer be used - filenames should be preserved exactly regardless of character set * Support WebDAV over SSL again: user is prompted to verify the server certificate on first access. * Enable use of bundled expat. * Add Italian translation from Cristian Rigamonti. * Fix segfault if SSL is requested but not supported. * Fix build on AIX (Takeshi NISHIMATSU), FreeBSD. Changes in release sitecopy 0.12.1, 19 February 2003 * Fix corruption of uploaded files in FTP mode (Jonathan Paisley) * Fix build when included libintl is used (Nathan Hand). * Fix bogus "XML parser received non-8-bit data" error. * Fix make install (Juergen Daubert). * Disable use of bundled expat pending build fix.
2003-09-23 11:05:23 +02:00
DISTNAME= sitecopy-0.13.4
PKGREVISION= 5
CATEGORIES= www
MASTER_SITES= http://www.lyra.org/sitecopy/
MAINTAINER= tech-pkg@NetBSD.org
HOMEPAGE= http://www.lyra.org/sitecopy/
COMMENT= Utility for synchronizing remote and local web sites
2003-09-23 11:05:52 +02:00
BUILD_USES_MSGFMT= # defined
USE_TOOLS+= gmake
2003-01-10 08:49:51 +01:00
USE_PKGLOCALEDIR= # defined
GNU_CONFIGURE= # defined
CONFIGURE_ARGS+= --with-ssl
CONFIGURE_ARGS+= --with-included-neon
Update to 0.13.4, provided by Hiramatsu Yoshifumi in PR 22895: Changes in release sitecopy 0.13.4, 29 July 2003 * Fix ~/.sitecopy directory permissions check on some platforms. * Fix included getopt build on some platforms. * Updated Italian translation (Cristian Rigamonti). * neon updates: - add support for Kerberos authentication over HTTP ("GSS-Negotiate"). - fix compatibility with OpenSSL 0.9.6. Changes in release sitecopy 0.13.3, 30 June 2003 * 'ls' parsing tweaks in FTP fetch mode. * Better error handling for corrupt site storage files. * Update to neon 0.24. Changes in release sitecopy 0.13.2, 17 June 2003 * Fixes for FTP synch mode (Paul J. Mantyla, David Madore and others). Changes in release sitecopy 0.13.1, 15 June 2003 * Fixes for FTP fetch mode: - corruption of downloaded files - handling of empty lines in responses * Drop support for non-XML storage files produced by sitecopy-0.7.0 and earlier. * Fixes for SSL certificate caching. * Fix build using included libintl. * Fix fn_escape() build with some compilers. Changes in release sitecopy 0.13.0, 10 May 2003 * Really fix use of non-ASCII filenames: - drop 'charset' config option - this should no longer be used - filenames should be preserved exactly regardless of character set * Support WebDAV over SSL again: user is prompted to verify the server certificate on first access. * Enable use of bundled expat. * Add Italian translation from Cristian Rigamonti. * Fix segfault if SSL is requested but not supported. * Fix build on AIX (Takeshi NISHIMATSU), FreeBSD. Changes in release sitecopy 0.12.1, 19 February 2003 * Fix corruption of uploaded files in FTP mode (Jonathan Paisley) * Fix build when included libintl is used (Nathan Hand). * Fix bogus "XML parser received non-8-bit data" error. * Fix make install (Juergen Daubert). * Disable use of bundled expat pending build fix.
2003-09-23 11:05:23 +02:00
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}/fnmatch.h
${LN} -sf ${WRKSRC}/lib/fnmatch.h ${WRKSRC}/fnmatch.h
.if !exists(/usr/include/getopt.h)
2004-04-15 23:43:02 +02:00
. include "../../pkgtools/libnbcompat/buildlink3.mk"
.endif
2004-04-15 23:43:02 +02:00
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
.include "../../textproc/libxml2/buildlink3.mk"
2004-04-15 23:43:02 +02:00
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"