pkgsrc/www/ap-dav/Makefile
jlam 9c8768d43b Update www/ap-dav to 1.0.3. Major bugfixes and changes from
version 1.0.2 include:

  * ignore Depth: Infinity for non-collection resources in a PROPFIND;
    this prevents a bogus error when someone has not used the
    "DAVDepthInfinity On" directive
  * fix for Web Folders not recognizing the last-modified date in
    PROPFIND responses (Joe Orton)
  * tweak to also allow recognition of the creationdate
  * fix copying of collection properties during a Depth:0 operation
    (Keith Wannamaker)
  * return 507 (Insufficient Space) for quota errors (on Linux, at
    least) (Joe)
  * fix moving/copying of a collection over a non-collection (found by
    Joe's interop testing tool)
  * LOCK with a missing intermediate collection now returns a standard
    409 (Conflict) response rather than 500 (Internal Server Error)
    (Keith, reported by Dan Brotsky)
  * fix problems with empty URIs in xmlns attributes (fixes from Joe
    and Greg, reported by Julian Reschke)
2002-03-06 15:35:04 +00:00

34 lines
1.1 KiB
Makefile

# $NetBSD: Makefile,v 1.4 2002/03/06 15:35:04 jlam Exp $
DISTNAME= mod_dav-1.0.3-1.3.6
PKGNAME= ap-dav-1.0.3
CATEGORIES= www
MASTER_SITES= http://www.webdav.org/mod_dav/
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://www.webdav.org/mod_dav/
COMMENT= Apache WebDAV module
# Ugly mess that says apache>=1.3.9 and apache<=2.0.
BUILDLINK_DEPENDS.apache= {apache-1.3.9*,apache-1.3.[1-9][0-9]*,apache6-1.3.9*,apache6-1.3.[1-9][0-9]*}
DEPENDS+= ${BUILDLINK_DEPENDS.apache}:../../www/apache
USE_BUILDLINK_ONLY= YES
GNU_CONFIGURE= YES
CONFIGURE_ARGS+= --with-expat=${BUILDLINK_DIR}
AP_MODULE_DIR= ${PREFIX}/lib/httpd
DOCDIR= ${PREFIX}/share/doc/mod_dav
HTMLDIR= ${PREFIX}/share/doc/html/mod_dav
do-install:
${INSTALL_DATA} ${WRKSRC}/libdav.so ${AP_MODULE_DIR}/mod_dav.so
${INSTALL_DATA_DIR} ${DOCDIR} ${HTMLDIR}
${INSTALL_DATA} ${WRKSRC}/INSTALL ${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCDIR}
${INSTALL_DATA} ${WRKSRC}/LICENSE.html ${HTMLDIR}
.include "../../textproc/expat/buildlink.mk"
.include "../../www/apache/buildlink.mk"
.include "../../mk/bsd.pkg.mk"