diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-04-03 14:06:59 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-04-03 14:06:59 +0000 |
commit | 5db4b3843ee6183a3333743b41f709ac063951fe (patch) | |
tree | 9dc8a0f1fcd94679fb9f5a79a8149744cdd5cc7d | |
parent | 4aefe7bbe045fc426ef771d261da1bb785be1fb3 (diff) | |
download | ports-5db4b3843ee6183a3333743b41f709ac063951fe.tar.gz ports-5db4b3843ee6183a3333743b41f709ac063951fe.zip |
Notes
-rw-r--r-- | graphics/kallery/Makefile | 8 | ||||
-rw-r--r-- | sysutils/webjob/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/graphics/kallery/Makefile b/graphics/kallery/Makefile index 57ff68d47eb1..d5a68eb867af 100644 --- a/graphics/kallery/Makefile +++ b/graphics/kallery/Makefile @@ -25,6 +25,12 @@ USE_REINPLACE= yes CONFIGURE_TARGET= CONFIGURE_ARGS+= --prefix=${LOCALBASE} +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Configure fails on amd64" +.endif + post-patch: .if !defined(NOPORTDOCS) @${REINPLACE_CMD} -Ee \ @@ -34,4 +40,4 @@ post-patch: @${REINPLACE_CMD} -Ee 's|(kallery po) doc|\1|' ${WRKSRC}/Makefile.in .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> diff --git a/sysutils/webjob/Makefile b/sysutils/webjob/Makefile index 88d0aba57b03..6d018f6340fc 100644 --- a/sysutils/webjob/Makefile +++ b/sysutils/webjob/Makefile @@ -32,7 +32,13 @@ CFLAGS+= -static MAN1= webjob.1 +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +BROKEN= "Configure fails on amd64" +.endif + post-install: @${STRIP_CMD} ${PREFIX}/bin/webjob -.include <bsd.port.mk> +.include <bsd.port.post.mk> |