diff options
author | stefan <stefan@FreeBSD.org> | 2010-05-22 17:54:43 +0800 |
---|---|---|
committer | stefan <stefan@FreeBSD.org> | 2010-05-22 17:54:43 +0800 |
commit | 76608d728a601f081e75331d762b0dcb5743e2fc (patch) | |
tree | 5f4443fd088ee6be8bae10bc0fdd67b2fee646d6 /net-mgmt/docsis | |
parent | 70d531edb2d3d4ad5bde233ee2ec82635725209e (diff) | |
download | freebsd-ports-gnome-76608d728a601f081e75331d762b0dcb5743e2fc.tar.gz freebsd-ports-gnome-76608d728a601f081e75331d762b0dcb5743e2fc.tar.zst freebsd-ports-gnome-76608d728a601f081e75331d762b0dcb5743e2fc.zip |
Use BROKEN instead of NOT_FOR_ARCHS.
Suggested by: linimon
Diffstat (limited to 'net-mgmt/docsis')
-rw-r--r-- | net-mgmt/docsis/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net-mgmt/docsis/Makefile b/net-mgmt/docsis/Makefile index 28d7a0b407d0..4a07d8b83c4b 100644 --- a/net-mgmt/docsis/Makefile +++ b/net-mgmt/docsis/Makefile @@ -23,10 +23,14 @@ USE_BISON= build PLIST_SUB= MIBS=share/snmp/mibs -NOT_FOR_ARCHS= amd64 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= Produces corrupt files on amd64 +.endif post-patch: @${REINPLACE_CMD} -e 's|^htmldocdir =.*|htmldocdir = ${DOCSDIR}|' ${WRKSRC}/doc/Makefile.in @${REINPLACE_CMD} -e 's|^examplesdir =.*|examplesdir = ${EXAMPLESDIR}|' ${WRKSRC}/examples/Makefile.in -.include <bsd.port.mk> +.include <bsd.port.post.mk> |