diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2005-01-02 01:07:46 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2005-01-02 01:07:46 +0000 |
commit | 502f1247823608a69b3e3d367fbcb356d2aefcdd (patch) | |
tree | 9d77ecfa0b090d407f784bbd81baf4f49af13d7f /net/howl | |
parent | 501bb341c5868e185fd47403c912594a0e23b1b7 (diff) | |
download | ports-502f1247823608a69b3e3d367fbcb356d2aefcdd.tar.gz ports-502f1247823608a69b3e3d367fbcb356d2aefcdd.zip |
Notes
Diffstat (limited to 'net/howl')
-rw-r--r-- | net/howl/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/howl/Makefile b/net/howl/Makefile index 6ae69894b5c6..f85a031e551d 100644 --- a/net/howl/Makefile +++ b/net/howl/Makefile @@ -24,9 +24,15 @@ MAN8= mDNSResponder.8 PLIST_SUB= VERSION="${PORTVERSION}" +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" +BROKEN= "Does not compile on alpha" +.endif + post-patch: @${REINPLACE_CMD} -e 's|-pthread||g' ${WRKSRC}/configure @${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} \ -E -e '/^library_includedir[[:space:]]*=/s^\$$[(]includedir[)]/howl^$$(includedir)/howl-${PORTVERSION}^g' -.include <bsd.port.mk> +.include <bsd.port.post.mk> |