diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-05-30 07:10:47 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-05-30 07:10:47 +0000 |
commit | 3c25539f3adffc26db172472d5a2cda51ea226c8 (patch) | |
tree | d76cb4e76656209be4a3ce5442f0c6a324dcdfb1 /graphics | |
parent | 004197b07a8a849821b15fb6efdb58467d79749c (diff) | |
download | ports-3c25539f3adffc26db172472d5a2cda51ea226c8.tar.gz ports-3c25539f3adffc26db172472d5a2cda51ea226c8.zip |
BROKEN on amd64: Does not compile (missing -fPIC)
Notes
Notes:
svn path=/head/; revision=110370
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ruby-tgif/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/ruby-tgif/Makefile b/graphics/ruby-tgif/Makefile index f94fde5d64a1..342b4755b001 100644 --- a/graphics/ruby-tgif/Makefile +++ b/graphics/ruby-tgif/Makefile @@ -34,6 +34,12 @@ INSTALL_TARGET= site-install DOCS_EN= README DOCS_JA= ChangeLog.ja README.ja +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Does not build on amd64 (missing -fPIC)" +.endif + post-extract: ${LN} -sf `cd ${PORTSDIR}/${TGIF_PORT}; ${MAKE} -V WRKSRC` ${WRKSRC}/tgif @@ -54,4 +60,4 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |