2e1e281c82
to do. The maintainer gave the go ahead, but warned, that he did not test the change himself -- so any problems would be purely my fault. Approved by: maintainer
41 lines
973 B
Makefile
41 lines
973 B
Makefile
# New ports collection makefile for: neon
|
|
# Date created: 13 October 2000
|
|
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= neon
|
|
PORTVERSION= 0.19.3
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.webdav.org/neon/
|
|
|
|
MAINTAINER= rooneg@electricjellyfish.net
|
|
|
|
LIB_DEPENDS= xml.5:${PORTSDIR}/textproc/libxml
|
|
|
|
.ifndef WITHOUT_OPENSSL
|
|
USE_OPENSSL= yes
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-ssl=${OPENSSLBASE} \
|
|
--enable-xml \
|
|
--enable-shared \
|
|
--with-libxml1
|
|
CONFIGURE_TARGET= --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}
|
|
|
|
MAN1= neon-config.1
|
|
MAN3= ne_close_connection.3 ne_session_create.3 \
|
|
ne_session_decide_proxy.3 ne_session_destroy.3 ne_session_proxy.3
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${PREFIX}/man/man1
|
|
${INSTALL_MAN} ${WRKSRC}/doc/*.3 ${PREFIX}/man/man3
|
|
.ifndef NOPORTDOCS
|
|
${MKDIR} ${PREFIX}/share/doc/neon
|
|
${INSTALL_DATA} ${WRKSRC}/doc/using-neon.txt ${PREFIX}/share/doc/neon
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|