diff options
author | edwin <edwin@FreeBSD.org> | 2003-03-29 01:23:56 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-03-29 01:23:56 +0000 |
commit | bb8e2f2f1407cdc847f9312cbf25115390b25609 (patch) | |
tree | ad8451ef4b6a9db0ad7f2296a05a5b4b81a48f73 /devel/ups-debug | |
parent | 066a7b34dbe89756d80d76ed011156061fecf8ad (diff) | |
download | FreeBSD-ports-bb8e2f2f1407cdc847f9312cbf25115390b25609.zip FreeBSD-ports-bb8e2f2f1407cdc847f9312cbf25115390b25609.tar.gz |
devel/ups only compiles under -STABLE on i386
PR: ports/50342
Submitted by: Sergei Kolobov <sergei@kolobov.com>
Diffstat (limited to 'devel/ups-debug')
-rw-r--r-- | devel/ups-debug/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/devel/ups-debug/Makefile b/devel/ups-debug/Makefile index 391a2e2..75dd185 100644 --- a/devel/ups-debug/Makefile +++ b/devel/ups-debug/Makefile @@ -24,6 +24,14 @@ ALL_TARGET= ups MAN1= ups.1 DOCS= CHANGES FAQ README +.include <bsd.port.pre.mk> + +.if ${ARCH} != i386 || ${OSVERSION} > 500000 +BROKEN= "compiles only under -STABLE on i386" +# Avoid building packages on bento for unsupported platforms +IGNORE= ${BROKEN} +.endif + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} @@ -33,4 +41,4 @@ post-install: .endif ${INSTALL_DATA} ${WRKSRC}/Ups ${X11BASE}/lib/X11/app-defaults -.include <bsd.port.mk> +.include <bsd.port.post.mk> |