diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2007-09-06 09:09:20 +0800 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2007-09-06 09:09:20 +0800 |
commit | d36ba0538a11fa418a0114314e2583afeb89193b (patch) | |
tree | 9fa0feb921676b61c7ec15061bb8b2fea81878e8 /games | |
parent | 87d5e5944ea487680733448093bd9cbaa2fa4df1 (diff) | |
download | freebsd-ports-gnome-d36ba0538a11fa418a0114314e2583afeb89193b.tar.gz freebsd-ports-gnome-d36ba0538a11fa418a0114314e2583afeb89193b.tar.zst freebsd-ports-gnome-d36ba0538a11fa418a0114314e2583afeb89193b.zip |
[MAINTAINER] games/fwp: mark BROKEN on amd64/CURRENT
Doesn't build on amd64 7.
Reported by: pointyhat via kris
PR: ports/116088
Submitted by: Dmitry Marakasov <amdmi3@amdmi3.ru>
Diffstat (limited to 'games')
-rw-r--r-- | games/fwp/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/fwp/Makefile b/games/fwp/Makefile index 4aec3b966663..1a1bed9cc1b0 100644 --- a/games/fwp/Makefile +++ b/games/fwp/Makefile @@ -32,6 +32,12 @@ CONFIGURE_ENV= LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" && ${OSVERSION} >= 700000 +BROKEN= Doesn't build +.endif + post-patch: @${REINPLACE_CMD} -e '/LDFLAGS=/ s|$$LIBS|$$LDFLAGS|' \ ${WRKSRC}/configure @@ -40,4 +46,4 @@ post-patch: post-install: @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |