pkgsrc/www/sitecopy/Makefile

38 lines
1.1 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.49 2014/02/12 23:18:47 tron Exp $
DISTNAME= sitecopy-0.16.6
PKGREVISION= 4
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
2007-09-08 23:57:57 +02:00
USE_FEATURES= getopt_long
USE_TOOLS+= gmake msgfmt
2005-09-28 14:26:54 +02:00
USE_PKGLOCALEDIR= yes
2005-09-28 14:26:54 +02:00
GNU_CONFIGURE= yes
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:
Updated to 0.16.2. Changes in release 0.16.2: * Fix over-eager move/rename algorithm when handling a delete of one of a set of identical files. * DAV: Fix ordering issues with --fetch. * FTP: Retry after response timeouts for STOR commands. * Update to neon 0.25.4. Changes in release 0.16.1: * FTP: Fix crash in FTP timeout handling. * Improve error messages from LIST parser failure. Changes in release 0.16.0: * Fetch mode now fetches a single directory at a time: - works with DAV servers which reject "Depth: infinity" PROPFIND - works with FTP servers which reject the -R flag to LIST - "exclude" and "ignore" patterns are now matched as expected against remote files. * In updates, delete files remotely before creating directories, to allow the "replace a file with a directory" case to work. * sftpdriver.c compile fix for older Unixes. * Fix for German translation (Jens Seidel) Changes in release 0.15.1: * Updated Italian translation (Cristian Rigamonti). * FTP: fix newline handling issues for ASCII file transfers. * sitecopy.1: explain use of "http secure" (Reed Snellenberger) * Update to neon 0.25.0: - fix regressions in WebDAV path-escaping Changes in release 0.15.0: * Add SFTP support from Nobuyuki Tsuchimura using "protocol sftp". * FTP: Ignore symlinks in fetch mode; fix some fetch mode error handling. * DAV: fix use of remote root path which needed path-escaping. * rsh/ssh: Filename quoting fixes (Nobuyuki Tsuchimura). * Apply tempupload option to new files as well as changed files. * In "sitecopy --flatlist" output, mark ignored items with "|ignored". * Correct sitecopy.1 documentation: symlinks in the local site are followed not ignored, by default. * Add French translation of man page, by Nicolas Girard.
2006-02-21 06:54:43 +01:00
${RM} -f ${WRKSRC:Q}/fnmatch.h
${LN} -sf ${WRKSRC:Q}/lib/fnmatch.h ${WRKSRC:Q}/fnmatch.h
2004-04-15 23:43:02 +02:00
.include "../../devel/gettext-lib/buildlink3.mk"
.include "../../security/openssl/buildlink3.mk"
2013-10-27 22:52:17 +01:00
.include "../../textproc/libxml2/buildlink3.mk"
.include "../../www/neon/buildlink3.mk"
2004-04-15 23:43:02 +02:00
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"