The correct usage for this Makefile is to use NOT_FOR_ARCHS. This will prevent bento from wasting its time trying to build. How-To-Repeat: n/a
A more careful reading of bsd.port.mk suggests that BROKEN should be replaced by IGNORE, not NOT_FOR_ARCHS, in this particular case. This will still save time on bento builds, but not imply that the port will _never_ work on these archs. --- py-ctypes/Makefile.dist Sat Jun 14 00:25:06 2003 +++ py-ctypes/Makefile Wed Jun 18 15:03:44 2003 @@ -33,7 +33,7 @@ .include <bsd.port.pre.mk> .if ${ARCH} == "ia64" -BROKEN= "does not build" +IGNORE= "does not build on ${ARCH}" .endif post-patch:
Responsible Changed From-To: freebsd-ports-bugs->perky Over to maintainer.
State Changed From-To: open->closed Committed. I put ONLY_FOR_ARCHS instead. Thank you for reporting!