diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-26 09:28:49 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-26 09:28:49 +0000 |
commit | 7729d0afa1144caf296f65e14b76f52e3992770a (patch) | |
tree | 0b5c13924181ce9c4197cf2d2e313cd9e08338dd /graphics | |
parent | BROKEN on alpha and amd64: Does not compile (diff) |
BROKEN on alpha: Does not compile
Notes
Notes:
svn path=/head/; revision=102172
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/gtkdps/Makefile | 8 | ||||
-rw-r--r-- | graphics/qiv/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/graphics/gtkdps/Makefile b/graphics/gtkdps/Makefile index 036e2aa953d5..c49fd1f4d487 100644 --- a/graphics/gtkdps/Makefile +++ b/graphics/gtkdps/Makefile @@ -24,4 +24,10 @@ INSTALLS_SHLIB= yes CONFIGURE_ARGS= --with-dps-includes=${X11BASE}/include \ --with-dps-libraries=${X11BASE}/lib -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" +BROKEN= "Does not compile on alpha" +.endif + +.include <bsd.port.post.mk> diff --git a/graphics/qiv/Makefile b/graphics/qiv/Makefile index 3b95e51d90d5..feec381aee3a 100644 --- a/graphics/qiv/Makefile +++ b/graphics/qiv/Makefile @@ -24,6 +24,12 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} MAN1= qiv.1 PLIST_FILES= bin/qiv +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" +BROKEN= "Does not compile on alpha" +.endif + do-configure: @ ${MV} ${WRKSRC}/qiv.1 ${WRKSRC}/qiv.1.pre_sed @ ${SED} -e 's#\/usr\/bin#${PREFIX}/bin#g' \ @@ -39,4 +45,4 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/qiv ${PREFIX}/bin/ ${INSTALL_MAN} ${WRKSRC}/qiv.1 ${PREFIX}/man/man1/ -.include <bsd.port.mk> +.include <bsd.port.post.mk> |