blob: c16d30812d0d51498e6dc4e698ca679666e6f5ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# New ports collection makefile for: cadaver
# Date created: 13 January 2000
# Whom: Alex Povolotsky <tarkhil@over.ru>
#
# $FreeBSD$
#
PORTNAME= cadaver
PORTVERSION= 0.18.0
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://www.webdav.org/cadaver/
MAINTAINER= tarkhil@over.ru
LIB_DEPENDS= neon.18:${PORTSDIR}/www/neon \
intl.1:${PORTSDIR}/devel/gettext-old
.ifndef NO_OPENSSL
USE_OPENSSL= yes
.endif
GNU_CONFIGURE= yes
CONFIGURE_ENV= CC="${CC} -I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib -lintl"
CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} \
--enable-netrc \
--with-neon=${LOCALBASE}
ALL_TARGET= cadaver
post-install:
${INSTALL_MAN} ${WRKSRC}/doc/cadaver.1 ${PREFIX}/man/man1
MAN1= cadaver.1
.include <bsd.port.mk>
|