diff options
author | Renato Botelho <garga@FreeBSD.org> | 2008-01-22 15:47:59 +0000 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2008-01-22 15:47:59 +0000 |
commit | 0c154796cc3e2565c239a875ecd8716ed3202006 (patch) | |
tree | 2b7f27345e9a1211df736fc177dc1312dcda5e67 /x11/gmrun | |
parent | caeae2a8b47d96c24e752e1186b11a0b3ed96773 (diff) | |
download | ports-0c154796cc3e2565c239a875ecd8716ed3202006.tar.gz ports-0c154796cc3e2565c239a875ecd8716ed3202006.zip |
- Mark as BROKEN on amd64, it doesn't run, got a segfault whtn try to start.
Patches are welcome
Notes
Notes:
svn path=/head/; revision=206028
Diffstat (limited to 'x11/gmrun')
-rw-r--r-- | x11/gmrun/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11/gmrun/Makefile b/x11/gmrun/Makefile index fdcf3867cb99..c015589a58cb 100644 --- a/x11/gmrun/Makefile +++ b/x11/gmrun/Makefile @@ -30,10 +30,16 @@ PORTDOCS= README PLIST_FILES= bin/gmrun %%DATADIR%%/gmrunrc PLIST_DIRS= %%DATADIR%% +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= Doesn't run, segmentation fault +.endif + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |