diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-09-26 10:43:13 +0800 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-09-26 10:43:13 +0800 |
commit | 149b3e7f85bc86a31808210183c66c09c64568cc (patch) | |
tree | ece1b8356b6310f89e911c9c391dd883685b8f0a /emulators/qemu-devel | |
parent | 66f8fe6c441c3647c4887165bdd6350ea4ca4203 (diff) | |
download | freebsd-ports-gnome-149b3e7f85bc86a31808210183c66c09c64568cc.tar.gz freebsd-ports-gnome-149b3e7f85bc86a31808210183c66c09c64568cc.tar.zst freebsd-ports-gnome-149b3e7f85bc86a31808210183c66c09c64568cc.zip |
BROKEN on 5.x: Does not compile
Approved by: portmgr (self)
Diffstat (limited to 'emulators/qemu-devel')
-rw-r--r-- | emulators/qemu-devel/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/emulators/qemu-devel/Makefile b/emulators/qemu-devel/Makefile index bbd69b04a05f..6dcbff214ee6 100644 --- a/emulators/qemu-devel/Makefile +++ b/emulators/qemu-devel/Makefile @@ -29,7 +29,13 @@ CONFIGURE_ARGS+= --prefix=${PREFIX} --cc=${CC}\ -I${PREFIX}/include MAN1= qemu.1 qemu-mkcow.1 ONLY_FOR_ARCHS= i386 amd64 powerpc +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + post-install: @${CAT} ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |