diff options
author | pav <pav@FreeBSD.org> | 2008-02-20 05:03:11 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2008-02-20 05:03:11 +0800 |
commit | 957faf0ae821d16fa92d773ef9d8b4c3dad12c3b (patch) | |
tree | 45d4a6f3faa6d67c8b886b18ca74757129d0f022 /graphics/ppmcaption | |
parent | 2d0e0189c5e2c6045b5c7e53f4833a857126edf5 (diff) | |
download | freebsd-ports-gnome-957faf0ae821d16fa92d773ef9d8b4c3dad12c3b.tar.gz freebsd-ports-gnome-957faf0ae821d16fa92d773ef9d8b4c3dad12c3b.tar.zst freebsd-ports-gnome-957faf0ae821d16fa92d773ef9d8b4c3dad12c3b.zip |
- This now fails over on amd64 5.x and 8.x too, so just flip the logic and
allow it on i386 only
Reported by: pointyhat
Diffstat (limited to 'graphics/ppmcaption')
-rw-r--r-- | graphics/ppmcaption/Makefile | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/graphics/ppmcaption/Makefile b/graphics/ppmcaption/Makefile index 1ca62c4d6bea..9c088979eb24 100644 --- a/graphics/ppmcaption/Makefile +++ b/graphics/ppmcaption/Makefile @@ -19,17 +19,10 @@ CONFIGURE_ARGS+= --with-builtin="ncenB24.bdf -scale 0.5 -blur 5" MAN1= ppmcaption.1 PLIST_FILES= bin/ppmcaption -.include <bsd.port.pre.mk> - -.if ${ARCH} == "ia64" -BROKEN= "Does not compile on ia64" -.endif - -.if ${ARCH} == "amd64" && ${OSVERSION} < 700000 -BROKEN= Does not compile on amd64 5.x/6.x -.endif +ONLY_FOR_ARCHS= i386 +ONLY_FOR_ARCHS_REASON= does not compile on ia64 or amd64 post-patch: ${REINPLACE_CMD} -e "s,-lang-c89,," ${WRKSRC}/configure -.include <bsd.port.post.mk> +.include <bsd.port.mk> |