diff options
author | jlam <jlam> | 2002-02-28 18:23:57 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-02-28 18:23:57 +0000 |
commit | 22455e582868adb0b6c81009265ab8eb1f552fea (patch) | |
tree | bc443fb293168082fc37e63d2b9ce82cc494ae9a /www/cadaver/Makefile | |
parent | 4853276349ffe2a55abca10435de72354c757f03 (diff) | |
download | pkgsrc-22455e582868adb0b6c81009265ab8eb1f552fea.tar.gz |
Update www/cadaver to 0.19.1. Pkgsrc changes include:
* Don't use the shared libneon as the neon API is just too unstable.
Revert back to using the included neon library.
* Remove dependency on gettext-lib as the NLS build is broken.
* Remove dependency on libgetopt as cadaver provides its own
getopt_long implementation if one doesn't exist on the system.
Changes from version 0.19.0 include:
* Fix permissions of local file downloaded using 'get' (Dan Mullen).
* Add man page (Jules <jules@jules.com>)
* lockdepth option is used for any non-collection resource.
* Add 'quiet' option; when set, connection status messages are
supressed.
Diffstat (limited to 'www/cadaver/Makefile')
-rw-r--r-- | www/cadaver/Makefile | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/www/cadaver/Makefile b/www/cadaver/Makefile index 1680495cf4d..2b2f9cb18da 100644 --- a/www/cadaver/Makefile +++ b/www/cadaver/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.12 2002/01/13 21:24:44 agc Exp $ +# $NetBSD: Makefile,v 1.13 2002/02/28 18:23:57 jlam Exp $ -DISTNAME= cadaver-0.19.0 +DISTNAME= cadaver-0.19.1 CATEGORIES= www MASTER_SITES= http://www.webdav.org/cadaver/ @@ -8,15 +8,15 @@ MAINTAINER= jlam@netbsd.org HOMEPAGE= http://www.webdav.org/cadaver/ COMMENT= command-line WebDAV client -USE_GMAKE= # defined -USE_BUILDLINK_ONLY= # defined +USE_GMAKE= YES +USE_BUILDLINK_ONLY= YES ALL_TARGET= cadaver -GNU_CONFIGURE= # defined -CONFIGURE_ARGS+= --with-neon=${BUILDLINK_DIR} +GNU_CONFIGURE= YES CONFIGURE_ARGS+= --enable-netrc - -LIBS+= ${LIBGETOPT} +CONFIGURE_ARGS+= --with-included-neon +CONFIGURE_ARGS+= --with-libxml1 +CONFIGURE_ARGS+= --with-ssl=${BUILDLINK_DIR} # We don't need curses, just termcap. CONFIGURE_ENV+= ac_cv_lib_curses_tputs=no @@ -35,8 +35,7 @@ pre-build: post-install: ${INSTALL_DATA} ${WRKSRC}/doc/cadaver.1 ${PREFIX}/man/man1 -.include "../../devel/gettext-lib/buildlink.mk" -.include "../../devel/libgetopt/buildlink.mk" .include "../../devel/readline/buildlink.mk" -.include "../../www/neon/buildlink.mk" +.include "../../security/openssl/buildlink.mk" +.include "../../textproc/libxml/buildlink.mk" .include "../../mk/bsd.pkg.mk" |