diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-03-13 15:01:43 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-03-13 15:01:43 +0000 |
commit | 3b044954f288df130180ecaff06fd2ba0592f42f (patch) | |
tree | 88b6fe2307bae63514a32e9c060313c59176e622 /misc | |
parent | af5b311303e272fd1bd61f1697cc525dec05e836 (diff) | |
download | ports-3b044954f288df130180ecaff06fd2ba0592f42f.tar.gz ports-3b044954f288df130180ecaff06fd2ba0592f42f.zip |
BROKEN on amd64 and ia64: Does not compile (missing -fPIC)
Notes
Notes:
svn path=/head/; revision=103883
Diffstat (limited to 'misc')
-rw-r--r-- | misc/gkrellm-reminder/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/misc/gkrellm-reminder/Makefile b/misc/gkrellm-reminder/Makefile index a66deb3074a4..586987fc1da0 100644 --- a/misc/gkrellm-reminder/Makefile +++ b/misc/gkrellm-reminder/Makefile @@ -25,8 +25,14 @@ PLIST_FILES= libexec/gkrellm/plugins/reminder.so USE_X_PREFIX= yes USE_GNOME= imlib +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +BROKEN= "Does not compile on amd64 or ia64 (needs -fPIC)" +.endif + do-install: @${INSTALL_DATA} ${WRKSRC}/reminder.so \ ${PREFIX}/libexec/gkrellm/plugins -.include <bsd.port.mk> +.include <bsd.port.post.mk> |