diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2006-04-22 22:11:33 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2006-04-22 22:11:33 +0000 |
commit | 89053f4a8e4376f5c4bdd49d0598ae69dc44121d (patch) | |
tree | 638d72d5d622f664e2bae640e426cc571ec667b9 /www/wwwoffle | |
parent | 298c3e6f4e4b7d83deb252ec610b873b64870bd9 (diff) | |
download | ports-89053f4a8e4376f5c4bdd49d0598ae69dc44121d.tar.gz ports-89053f4a8e4376f5c4bdd49d0598ae69dc44121d.zip |
Notes
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> |