mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
33 lines
844 B
Makefile
33 lines
844 B
Makefile
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mod_dnssd
|
|
PORTVERSION= 0.6
|
|
PORTREVISION= 8
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://0pointer.de/lennart/projects/mod_dnssd/
|
|
PKGNAMEPREFIX= ${APACHE_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= An Apache module that provides DNS-SD capabilities
|
|
|
|
LIB_DEPENDS= avahi-client.3:${PORTSDIR}/net/avahi-app
|
|
|
|
USES= gmake pkgconfig
|
|
USE_APACHE= 22
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= APR_CFLAGS="`${LOCALBASE}/bin/apr-1-config --cflags --cppflags --includes`" \
|
|
APR_LIBS="`${LOCALBASE}/bin/apr-1-config --ldflags`"
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS= --disable-lynx
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}/
|
|
${INSTALL_DATA} ${WRKSRC}/doc/README ${DOCSDIR}/README
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|