diff options
author | kris <kris@FreeBSD.org> | 2006-04-23 06:11:33 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2006-04-23 06:11:33 +0800 |
commit | 8329cd738334145030fe2232c0c15e7fecaad114 (patch) | |
tree | 34ad48b2aa884da4aefabc1a632efda8b9682a5b /www/wwwoffle | |
parent | e579c1ed9609790a22e2cec061f79ea09b231d75 (diff) | |
download | freebsd-ports-gnome-8329cd738334145030fe2232c0c15e7fecaad114.tar.gz freebsd-ports-gnome-8329cd738334145030fe2232c0c15e7fecaad114.tar.zst freebsd-ports-gnome-8329cd738334145030fe2232c0c15e7fecaad114.zip |
BROKEN on !i386 and on 4.x: Does not compile
Diffstat (limited to 'www/wwwoffle')
-rw-r--r-- | www/wwwoffle/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/www/wwwoffle/Makefile b/www/wwwoffle/Makefile index 0e494692ec38..d6c89b482e43 100644 --- a/www/wwwoffle/Makefile +++ b/www/wwwoffle/Makefile @@ -38,6 +38,16 @@ MAN1= wwwoffle.1 MAN5= wwwoffle.conf.5 MAN8= wwwoffled.8 +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" +BROKEN= Does not compile on ${ARCH} +.endif + +.if ${OSVERSION} < 500000 +BROKEN= Does not compile on 4.x +.endif + .if ${WWWOFFLE_SPOOL} != "/var/spool/wwwoffle" # If using a non-standard spool, change all the documentation (and anything # else) to reflect that. @@ -53,4 +63,4 @@ post-install: @${INSTALL_SCRIPT} ${WRKSRC}/conf/upgrade-config.pl ${WWWOFFLE_SPOOL} @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |