diff options
author | lawrance <lawrance@FreeBSD.org> | 2005-05-01 20:57:30 +0800 |
---|---|---|
committer | lawrance <lawrance@FreeBSD.org> | 2005-05-01 20:57:30 +0800 |
commit | 7a73cc46a42d9b1b348c6d42b6caab649266cf64 (patch) | |
tree | e67ca896b1658281d5440827cd8cd92eb3ed53f1 /graphics/dataplot | |
parent | 3f6693041fe9c33baba65cefb833ace7a9042a34 (diff) | |
download | freebsd-ports-gnome-7a73cc46a42d9b1b348c6d42b6caab649266cf64.tar.gz freebsd-ports-gnome-7a73cc46a42d9b1b348c6d42b6caab649266cf64.tar.zst freebsd-ports-gnome-7a73cc46a42d9b1b348c6d42b6caab649266cf64.zip |
Mark broken on alpha (.got subsegment exceeds 64k)
Diffstat (limited to 'graphics/dataplot')
-rw-r--r-- | graphics/dataplot/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/dataplot/Makefile b/graphics/dataplot/Makefile index b7e8f5a0d5e6..77c37e576f2b 100644 --- a/graphics/dataplot/Makefile +++ b/graphics/dataplot/Makefile @@ -27,6 +27,12 @@ USE_REINPLACE= yes NO_WRKSUBDIR= yes MAXOBV?= 20000 # Make bigger if you need more observations/variable +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" +BROKEN= "Does not link on alpha (.got subsegment exceeds 64k)" +.endif + post-extract: @${INSTALL_DATA} ${FILESDIR}/Makefile.tmpl ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's;%%LOCALBASE%%;${LOCALBASE};g ; \ @@ -44,4 +50,4 @@ post-install: ${DOCSDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |