diff options
author | kris <kris@FreeBSD.org> | 2004-05-30 15:10:47 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-05-30 15:10:47 +0800 |
commit | 38f306a186f4cf2f606a2c6aaaa893b1afded2e9 (patch) | |
tree | d182260767e267bc542f1117570c10d1c99de950 /graphics | |
parent | eb631d8983ae92387fb1cd7ef74e410fe696b151 (diff) | |
download | freebsd-ports-gnome-38f306a186f4cf2f606a2c6aaaa893b1afded2e9.tar.gz freebsd-ports-gnome-38f306a186f4cf2f606a2c6aaaa893b1afded2e9.tar.zst freebsd-ports-gnome-38f306a186f4cf2f606a2c6aaaa893b1afded2e9.zip |
BROKEN on amd64: Does not compile (missing -fPIC)
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> |