1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00
freebsd-ports/www/neon29/Makefile
Jeremy Messenger 113641e728 - Makes neon29 our default neon library. The neon 0.27.x to 0.29.x are API and
ABI backwards compatible. It is unnecessary to have more than one same
  libraries (ie: neon28 and neon29) as it creates issue in our ports tree such
  as CONFLICTS and made our Makefile complicate.
- Remove www/neonpp and www/neon28.
- Add USE_GNOME=ltverhack; it corrects the shared library version by change
  from libneon.so.29 to libneon.so.27. It won't get bump again with no reason
  unless ABI changes.
- Bump the PORTREVISION on all ports and chase the shared library change.
- Add info in the UPDATING for how to rebuild on all ports that depend on
  neon.

PR:		ports/148295
Approved by:	lev (maintainer timeout, no respone for months),
		portmgr
Tested by:	pointyhat-exp by pav
2010-07-30 22:14:49 +00:00

143 lines
4.5 KiB
Makefile

# New ports collection makefile for: neon
# Date created: 13 October 2000
# Whom: Mikhail Teterin <mi@aldan.algebra.com>
#
# $FreeBSD$
#
PORTNAME= neon29
PORTVERSION= 0.29.3
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://www.webdav.org/neon/
DISTNAME= neon-${PORTVERSION}
MAINTAINER= lev@FreeBSD.org
COMMENT= An HTTP and WebDAV client library for Unix systems
CONFLICTS= neon2[6|8]-[0-9]*
USE_AUTOTOOLS= libtool:22
USE_LDCONFIG= yes
USE_GNOME= gnomehack ltverhack
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-shared \
--with-libs=${LOCALBASE}:${PREFIX}
# expat is default unless WITH_XML is choosen
.if !defined(WITHOUT_EXPAT) && !defined(WITH_XML)
CONFIGURE_ARGS+= --with-expat
LIB_DEPENDS+= expat.6:${PORTSDIR}/textproc/expat2
.endif
.if defined(WITH_XML)
CONFIGURE_ARGS+=--with-libxml2
LIB_DEPENDS+= xml2.5:${PORTSDIR}/textproc/libxml2
.endif
.ifndef WITHOUT_OPENSSL
USE_OPENSSL= yes
CONFIGURE_ARGS+=--with-ssl
.endif
.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.else
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
.endif
.if defined(WITHOUT_GSSAPI)
CONFIGURE_ARGS+=--without-gssapi
.endif
MAN1= neon-config.1
MAN3= ne_add_request_header.3 ne_addr_resolve.3 ne_buffer.3 \
ne_buffer_append.3 ne_buffer_clear.3 ne_buffer_create.3 \
ne_buffer_destroy.3 ne_get_error.3 ne_get_response_header.3 \
ne_get_status.3 ne_i18n_init.3 ne_iaddr_make.3 ne_has_support.3 \
ne_malloc.3 ne_request_create.3 ne_session_create.3 \
ne_set_request_body_buffer.3 ne_get_request_flag.3 \
ne_get_session_flag.3 ne_set_request_flag.3 ne_set_session_flag.3 \
ne_set_server_auth.3 ne_set_useragent.3 ne_shave.3 ne_sock_init.3 \
ne_ssl_cert_cmp.3 ne_ssl_cert_identity.3 ne_ssl_cert_read.3 \
ne_ssl_clicert_read.3 ne_ssl_readable_dname.3 ne_ssl_set_verify.3 \
ne_ssl_trust_cert.3 ne_status.3 ne_token.3 ne_version_match.3 \
ne_xml_create.3 neon.3 ne_set_connect_timeout.3
MLINKS= ne_add_request_header.3 ne_print_request_header.3 \
ne_addr_resolve.3 ne_addr_destroy.3 \
ne_addr_resolve.3 ne_addr_error.3 \
ne_addr_resolve.3 ne_addr_first.3 \
ne_addr_resolve.3 ne_addr_next.3 \
ne_addr_resolve.3 ne_addr_result.3 \
ne_buffer_append.3 ne_buffer_concat.3 \
ne_buffer_append.3 ne_buffer_zappend.3 \
ne_buffer_clear.3 ne_buffer_altered.3 \
ne_buffer_clear.3 ne_buffer_grow.3 \
ne_buffer_create.3 ne_buffer_ncreate.3 \
ne_buffer_destroy.3 ne_buffer_finish.3 \
ne_get_error.3 ne_set_error.3 \
ne_get_response_header.3 ne_response_header_iterate.3 \
ne_iaddr_make.3 ne_iaddr_cmp.3 \
ne_iaddr_make.3 ne_iaddr_free.3 \
ne_iaddr_make.3 ne_iaddr_print.3 \
ne_iaddr_make.3 ne_iaddr_typeof.3 \
ne_malloc.3 ne_calloc.3 \
ne_malloc.3 ne_oom_callback.3 \
ne_malloc.3 ne_realloc.3 \
ne_malloc.3 ne_strdup.3 \
ne_malloc.3 ne_strndup.3 \
ne_request_create.3 ne_request_destroy.3 \
ne_request_create.3 ne_request_dispatch.3 \
ne_session_create.3 ne_close_connection.3 \
ne_session_create.3 ne_session_destroy.3 \
ne_session_create.3 ne_session_proxy.3 \
ne_set_request_body_buffer.3 ne_set_request_body_fd.3 \
ne_set_request_body_buffer.3 ne_set_request_body_fd64.3 \
ne_set_server_auth.3 ne_forget_auth.3 \
ne_set_server_auth.3 ne_set_proxy_auth.3 \
ne_set_useragent.3 ne_get_scheme.3 \
ne_set_useragent.3 ne_get_server_hostport.3 \
ne_set_useragent.3 ne_set_persist.3 \
ne_set_useragent.3 ne_set_read_timeout.3 \
ne_sock_init.3 ne_sock_exit.3 \
ne_ssl_cert_cmp.3 ne_ssl_cert_free.3 \
ne_ssl_cert_identity.3 ne_ssl_cert_issuer.3 \
ne_ssl_cert_identity.3 ne_ssl_cert_signedby.3 \
ne_ssl_cert_identity.3 ne_ssl_cert_subject.3 \
ne_ssl_cert_read.3 ne_ssl_cert_export.3 \
ne_ssl_cert_read.3 ne_ssl_cert_import.3 \
ne_ssl_cert_read.3 ne_ssl_cert_write.3 \
ne_ssl_clicert_read.3 ne_ssl_clicert_decrypt.3 \
ne_ssl_clicert_read.3 ne_ssl_clicert_encrypted.3 \
ne_ssl_clicert_read.3 ne_ssl_clicert_free.3 \
ne_ssl_clicert_read.3 ne_ssl_clicert_name.3 \
ne_ssl_clicert_read.3 ne_ssl_clicert_owner.3 \
ne_ssl_readable_dname.3 ne_ssl_dname_cmp.3 \
ne_ssl_trust_cert.3 ne_ssl_trust_default_ca.3 \
ne_token.3 ne_qtoken.3 \
ne_version_match.3 ne_version_string.3 \
ne_xml_create.3 ne_xml_destroy.3
PLIST_SUB+= PORTVERSION=${PORTVERSION}
DOCSDIR= ${PREFIX}/share/doc/neon
.include <bsd.port.pre.mk>
pre-everything::
.if defined(WITH_EXPAT) && defined(WITH_XML)
@${ECHO_CMD} "please choose between expat and libxml2 not both"
@${FALSE}
.endif
post-install:
${INSTALL_MAN} ${WRKSRC}/doc/man/*.1 ${MANPREFIX}/man/man1
${INSTALL_MAN} ${WRKSRC}/doc/man/*.3 ${MANPREFIX}/man/man3
.ifndef NOPORTDOCS
(cd ${WRKSRC} ; ${MAKE} install-html)
.endif
.include <bsd.port.post.mk>