diff options
author | kris <kris@FreeBSD.org> | 2004-11-19 06:05:37 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-11-19 06:05:37 +0800 |
commit | 6300760755c36d443b5894d0802b11d4d99860af (patch) | |
tree | e04d547890ab6d3a411cccb12f22647458860e56 /www | |
parent | b2f1287dd88f30bf2f23dcf97d8daf79026e8fb9 (diff) | |
download | freebsd-ports-gnome-6300760755c36d443b5894d0802b11d4d99860af.tar.gz freebsd-ports-gnome-6300760755c36d443b5894d0802b11d4d99860af.tar.zst freebsd-ports-gnome-6300760755c36d443b5894d0802b11d4d99860af.zip |
BROKEN on ia64 and amd64: Does not build
Diffstat (limited to 'www')
-rw-r--r-- | www/dummyflash/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/dummyflash/Makefile b/www/dummyflash/Makefile index abc8ac5f8838..176c28eee133 100644 --- a/www/dummyflash/Makefile +++ b/www/dummyflash/Makefile @@ -21,8 +21,14 @@ BUILD_WRKSRC= ${WRKSRC}/PluginSDK30b5/examples/UnixTemplate/Unix NO_WRKSUBDIR= yes MAKEFILE= makefile.freebsd +.include <bsd.port.pre.mk> + +.if ${ARCH} == "ia64" || ${ARCH} == "amd64" +BROKEN= "Does not build on ia64 or amd64" +.endif + do-install: @${MKDIR} ${PREFIX}/lib/browser_plugins ${INSTALL_DATA} ${BUILD_WRKSRC}/dummyflash.so ${PREFIX}/lib/browser_plugins -.include <bsd.port.mk> +.include <bsd.port.post.mk> |