1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00
freebsd-ports/www/cadaver/Makefile
Josh Paetzel a31f8f0d82 Change MAINTAINER to my @FreeBSD.org address.
Approved by:	ade (mentor)
2008-09-06 20:16:45 +00:00

60 lines
1.5 KiB
Makefile

# New ports collection makefile for: cadaver
# Date created: 13 January 2000
# Whom: Alex Povolotsky <tarkhil@over.ru>
#
# $FreeBSD$
#
PORTNAME= cadaver
PORTVERSION= 0.23.2
CATEGORIES= www
MASTER_SITES= http://www.webdav.org/cadaver/ \
http://www.tcbug.org/
MAINTAINER= jpaetzel@FreeBSD.org
COMMENT= Commandline client for DAV
LIB_DEPENDS= neon.28:${PORTSDIR}/www/neon28
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
CONFIGURE_ARGS= --enable-netrc
ALL_TARGET= cadaver
MAN1= cadaver.1
PLIST_FILES= bin/cadaver
# Neither expat nor libneon are needed at all, but the configure
# script breaks if it can not find the Makefile* in them. Exclude
# them to be sure, a stray .h is not included instead of what's
# found under PREFIX (installed by the neon port):
EXTRACT_AFTER_ARGS= | ${TAR} -xf - \
--exclude '${PORTNAME}-${PORTVERSION}/lib/expat/*.[ch]' \
--exclude '${PORTNAME}-${PORTVERSION}/lib/intl/*.[ch]' \
--exclude '${PORTNAME}-${PORTVERSION}/lib/neon/*.[ch]'
CPPFLAGS= -I${LOCALBASE}/include
LDFLAGS= -L${LOCALBASE}/lib
.if !defined(WITHOUT_OPENSSL)
USE_OPENSSL= yes
CONFIGURE_ARGS+= --with-ssl --with-force-ssl
.endif
.if !defined(WITHOUT_NLS)
USE_ICONV= yes
USE_GETTEXT= yes
CONFIGURE_ARGS+=--with-libiconv-prefix=${LOCALBASE} \
--with-libintl-prefix=${LOCALBASE}
LANGS=en@quot es it
.for lang in ${LANGS}
PLIST_FILES+= share/locale/${lang}/LC_MESSAGES/cadaver.mo
.endfor
.else
CONFIGURE_ARGS+=--disable-nls \
--without-libiconv-prefix \
--without-libintl-prefix
.endif
.include <bsd.port.mk>