diff options
author | kris <kris@FreeBSD.org> | 2005-01-02 08:41:28 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2005-01-02 08:41:28 +0800 |
commit | ce65ec20b344ab865c3687e5cc6f756832d92339 (patch) | |
tree | d1f86d84c178ed523940a88d2058681bae3dd3e8 | |
parent | b75620fcdf315bef9d65ab8657e73120d36fdf99 (diff) | |
download | freebsd-ports-gnome-ce65ec20b344ab865c3687e5cc6f756832d92339.tar.gz freebsd-ports-gnome-ce65ec20b344ab865c3687e5cc6f756832d92339.tar.zst freebsd-ports-gnome-ce65ec20b344ab865c3687e5cc6f756832d92339.zip |
Does not build on alpha
Approved by: portmgr (self)
-rw-r--r-- | graphics/ale/Makefile | 4 | ||||
-rw-r--r-- | graphics/ayam/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/graphics/ale/Makefile b/graphics/ale/Makefile index 988963e4455a..49b71fa99317 100644 --- a/graphics/ale/Makefile +++ b/graphics/ale/Makefile @@ -27,6 +27,10 @@ OPTIONS= DOUBLE "64bit Data Precision Support" off \ .include <bsd.port.pre.mk> +.if ${ARCH} == "alpha" +BROKEN= "Does not build on alpha" +.endif + .if defined(WITH_DOUBLE) MAKE_ARGS+= COLORS=DOUBLE COORDINATES=DOUBLE .endif diff --git a/graphics/ayam/Makefile b/graphics/ayam/Makefile index d7680c06cec6..713b798d4ea8 100644 --- a/graphics/ayam/Makefile +++ b/graphics/ayam/Makefile @@ -32,6 +32,12 @@ MAKE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}" AYAM_PLUGINS= csphere mfio PLUGINS_DIR= ${PREFIX}/lib/${PORTNAME} +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" +BROKEN= "Does not build on alpha" +.endif + post-patch: @${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' ${WRKSRC}/tcl/ayam.tcl @${REINPLACE_CMD} -e 's|^MF3DCFLAGS =|MF3DCFLAGS = -fPIC|g' \ @@ -88,4 +94,4 @@ do-install: ${DOCSDIR}/html/pics .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |