diff options
author | linimon <linimon@FreeBSD.org> | 2003-12-22 05:45:37 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2003-12-22 05:45:37 +0800 |
commit | 7f77d9b24b45d0b32f5747d0afb0c6c4be7322f0 (patch) | |
tree | 7ec969194356bc43c7e3e0bdf50f5eb8961b078d /net/pxe | |
parent | eee1127e5061497f1c640e923fd958e08b465621 (diff) | |
download | freebsd-ports-graphics-7f77d9b24b45d0b32f5747d0afb0c6c4be7322f0.tar.gz freebsd-ports-graphics-7f77d9b24b45d0b32f5747d0afb0c6c4be7322f0.tar.zst freebsd-ports-graphics-7f77d9b24b45d0b32f5747d0afb0c6c4be7322f0.zip |
Mark as broken on 5.x due to the usual gcc3.3 reasons. Informed
maintainer.
Diffstat (limited to 'net/pxe')
-rw-r--r-- | net/pxe/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/pxe/Makefile b/net/pxe/Makefile index 79994ef9887..d70fdd46157 100644 --- a/net/pxe/Makefile +++ b/net/pxe/Makefile @@ -21,6 +21,12 @@ CONFIGURE_ARGS+= --with-config=${PREFIX}/etc/pxe.conf \ DOCS= Changes INSTALL LICENCE README +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 500113 +BROKEN= "Does not compile on FreeBSD ${OSVERSION}" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/pxe ${PREFIX}/sbin/ ${INSTALL_DATA} ${WRKSRC}/pxe.conf ${PREFIX}/etc/pxe.conf.sample @@ -31,4 +37,4 @@ do-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |