blob: ce131f9d68b82fcdd96bc276a8d74b15f120885d (
plain)
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
36
37
|
# New ports collection makefile for: howl
# Date created: 21 July 2003
# Whom: David Magda <dmagda+howl@ee.ryerson.ca>
# $FreeBSD$
#
PORTNAME= howl
PORTVERSION= 1.0.0
PORTREVISION= 1
CATEGORIES?= net devel
MASTER_SITES= http://www.porchdogsoft.com/download/
MAINTAINER= ports@FreeBSD.org
COMMENT= Zeroconf/Bonjour(tm) implementation
CONFLICTS= avahi-[0-9]*
USE_AUTOTOOLS= libtool
USE_GMAKE= yes
USE_GNOME= gnometarget pkgconfig
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
USE_RC_SUBR= mdnsresponder
PLIST_SUB= VERSION="${PORTVERSION}"
CPPFLAGS+= ${PTHREAD_CFLAGS}
LDFLAGS+= ${PTHREAD_LIBS}
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${PTHREAD_LIBS}"
MAN8= mDNSResponder.8
post-patch:
@${REINPLACE_CMD} -e 's|-pthread||g' ${WRKSRC}/configure
.include <bsd.port.mk>
|