diff options
author | kris <kris@FreeBSD.org> | 2004-02-25 18:18:17 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-25 18:18:17 +0800 |
commit | c2c0e44b28e07e66d3ba9197dbb23d7ed4f855eb (patch) | |
tree | d6795b22d6490c62980a71324f888fc1cebb3a27 /audio/replay | |
parent | 632ee7d46a50abbdde0a97b29fcb230558d2eb8a (diff) | |
download | freebsd-ports-gnome-c2c0e44b28e07e66d3ba9197dbb23d7ed4f855eb.tar.gz freebsd-ports-gnome-c2c0e44b28e07e66d3ba9197dbb23d7ed4f855eb.tar.zst freebsd-ports-gnome-c2c0e44b28e07e66d3ba9197dbb23d7ed4f855eb.zip |
BROKEN on alpha 5.x: Does not compile
Diffstat (limited to 'audio/replay')
-rw-r--r-- | audio/replay/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/replay/Makefile b/audio/replay/Makefile index 2b4c141e9c7d..0235ea0b5c8b 100644 --- a/audio/replay/Makefile +++ b/audio/replay/Makefile @@ -27,6 +27,12 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ CONFIGURE_ARGS+= --enable-i18n=JAPANESE .endif +.include <bsd.port.pre.mk> + +.if ${ARCH} == "alpha" && ${OSVERSION} >= 502102 +BROKEN= "Does not compile on alpha 5.x" +.endif + pre-configure: .if !defined(WITH_I18N) @${ECHO_MSG} @@ -43,4 +49,4 @@ pre-configure: do-install: ${INSTALL_PROGRAM} ${WRKSRC}/replay ${PREFIX}/bin -.include <bsd.port.mk> +.include <bsd.port.post.mk> |