summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-02-14 06:06:06 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-02-14 06:06:06 +0000
commitacaeeea8ce5c4e9bc527a34224df79cc2b023864 (patch)
tree4e778dd7e7d72252aeeb345509767ada1ad41b5d /graphics
parentSet WITHOUT_HERMES on sparc64, because that library has an endianness (diff)
Mark IGNORE on sparc64, because the library interchanges red and blue
colour channels in images, giving funky results.
Notes
Notes: svn path=/head/; revision=100897
Diffstat (limited to 'graphics')
-rw-r--r--graphics/Hermes/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/graphics/Hermes/Makefile b/graphics/Hermes/Makefile
index 767593dafe65..9aa08680d4ec 100644
--- a/graphics/Hermes/Makefile
+++ b/graphics/Hermes/Makefile
@@ -22,6 +22,12 @@ MAKE_ARGS= ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOMAKE="${TRUE}" \
AUTOHEADER="${TRUE}"
INSTALLS_SHLIB= yes
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == sparc64
+IGNORE= "is broken on sparc64: interchanges red and blue colour channels in images"
+.endif
+
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@@ -35,4 +41,4 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/docs/api/sgml/api.sgml ${DOCSDIR}/API
.endif
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>