df2edf0d6c
download, on-screen display, namespace operations (move/copy), collection creation and deletion, and locking operations.
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2001/05/16 04:40:48 jlam Exp $
|
|
|
|
DISTNAME= cadaver-0.17.0
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.webdav.org/cadaver/
|
|
|
|
MAINTAINER= jlam@netbsd.org
|
|
HOMEPAGE= http://www.webdav.org/cadaver/
|
|
COMMENT= command-line WebDAV client
|
|
|
|
DEPENDS+= libxml>=1.8.11:../../textproc/libxml
|
|
|
|
USE_SSL= # defined
|
|
USE_LIBINTL= # defined
|
|
USE_GMAKE= # defined
|
|
|
|
ALL_TARGET= cadaver
|
|
GNU_CONFIGURE= # defined
|
|
CONFIGURE_ARGS+= --with-ssl=${SSLBASE}
|
|
CONFIGURE_ARGS+= --enable-libxml
|
|
|
|
.include "../../devel/libgetopt/Makefile.getopt"
|
|
.include "../../devel/readline/Makefile.readline"
|
|
|
|
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
|
|
CONFIGURE_ENV+= LIBS="${LIBS}"
|
|
CONFIGURE_ENV+= ac_cv_lib_curses_tputs=no
|
|
CONFIGURE_ENV+= ac_cv_lib_ncurses_tputs=no
|
|
|
|
.if defined(HAVE_LIBEDIT_READLINE)
|
|
CONFIGURE_ENV+= ac_cv_lib_readline_readline=yes
|
|
LIBS+= -ledit
|
|
.endif
|
|
|
|
CPPFLAGS+= -I${WRKINCDIR}
|
|
CFLAGS+= -I${WRKINCDIR}
|
|
LDFLAGS+= -L${WRKLIBDIR}
|
|
LIBS+= -ltermcap
|
|
|
|
pre-configure: link-getopt-headers link-readline-headers link-readline-libs
|
|
|
|
# The build process doesn't correctly find some headers for utility functions
|
|
# which are provided in ${WRKSRC}/lib. Help the compiler by linking the
|
|
# headers to ${WRKSRC} and explicitly passing -I. to the compiler.
|
|
#
|
|
CFLAGS+= -I.
|
|
|
|
pre-build:
|
|
${RM} -f ${WRKSRC}/glob.h
|
|
${LN} -sf ${WRKSRC}/lib/glob.h ${WRKSRC}/glob.h
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/cadaver.1 ${PREFIX}/man/man1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|