1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-20 04:02:27 +00:00
freebsd-ports/net/openslp/Makefile
Palle Girgensohn f3136eab66 A change in openslp gets openldap into problems:
http://www.openldap.org/lists/openldap-bugs/201510/msg00045.html

Let openslp port add CPPFLAGS=-DHAVE_STRNCASECMP until
openldap fixes this.

Approved by: maintainer
2016-08-10 21:20:51 +00:00

44 lines
1.1 KiB
Makefile

# Created by: Joe Clarke
# $FreeBSD$
PORTNAME= openslp
PORTVERSION= 2.0.0
PORTREVISION= 1
CATEGORIES= net
MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}/${PORTVERSION}%20Release
MAINTAINER= marcus@FreeBSD.org
COMMENT= Open-source implementation of the Service Location Protocol
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
USES= alias libtool
USE_OPENSSL= yes
USE_LDCONFIG= yes
CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/openslp \
--localstatedir=/var
CPPFLAGS+= -DHAVE_STRNCASECMP
USE_RC_SUBR= slpd
OPTIONS_DEFINE= SLP_SECURITY ASYNC_API DOCS
SLP_SECURITY_DESC= Turn on SLPv2 security support
ASYNC_API_DESC= Enable asynchronous communication API
SLP_SECURITY_CONFIGURE_ENABLE= slpv2-security
ASYNC_API_CONFIGURE_ENABLE= async-api
post-extract:
@(cd ${WRKSRC}; \
${FIND} doc -type f -path '*/CVS/*' -delete; \
${FIND} doc -type d -name CVS -delete)
post-install:
.for FILE in slp.conf slp.reg slp.spi
${INSTALL_DATA} ${WRKSRC}/etc/${FILE} ${STAGEDIR}${PREFIX}/etc/openslp/${FILE}.sample
.endfor
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${INSTALL_WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>