blob: 1c4ad5dd5b6e4fd77eaa17b8d48e7b4fe94302f7 (
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: neon
# Date created: 13 October 2000
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
#
# $FreeBSD$
#
PORTNAME= neon
PORTVERSION= 0.9.1
CATEGORIES= www
MASTER_SITES= http://www.webdav.org/neon/
MAINTAINER= olgeni@FreeBSD.org
LIB_DEPENDS= expat:${PORTSDIR}/textproc/expat \
xml:${PORTSDIR}/textproc/libxml
.ifndef NO_OPENSSL
USE_OPENSSL= yes
.endif
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} --with-expat=${PREFIX}/include/xml \
--with-extra-libs=${PREFIX}/lib
ALL_TARGET= all
INSTALL_TARGET= install
.ifndef NOPORTDOCS
post-install:
${MKDIR} ${PREFIX}/share/doc/neon
${INSTALL_DATA} ${WRKSRC}/doc/using-neon.txt ${PREFIX}/share/doc/neon
.endif
.include <bsd.port.mk>
|