diff options
author | pav <pav@FreeBSD.org> | 2006-03-20 05:48:01 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-03-20 05:48:01 +0800 |
commit | ef151a58bcb46024139d09a4a9e6b716ac1774bb (patch) | |
tree | ee124d2f2d41cbf2c0f166346737a4989874ea98 /x11-wm | |
parent | c2ad2093e28a2e82f127212a367ff14bff075d9b (diff) | |
download | freebsd-ports-gnome-ef151a58bcb46024139d09a4a9e6b716ac1774bb.tar.gz freebsd-ports-gnome-ef151a58bcb46024139d09a4a9e6b716ac1774bb.tar.zst freebsd-ports-gnome-ef151a58bcb46024139d09a4a9e6b716ac1774bb.zip |
- Does not compile on 4.X
Reported by: krismail
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/jwm/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/x11-wm/jwm/Makefile b/x11-wm/jwm/Makefile index 3049fcab7700..ee9c8ce756bb 100644 --- a/x11-wm/jwm/Makefile +++ b/x11-wm/jwm/Makefile @@ -26,6 +26,12 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \ MAN1= jwm.1 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= Does not compile +.endif + post-patch: @${REINPLACE_CMD} -e 's|-O2||' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' ${WRKSRC}/example.jwmrc @@ -38,4 +44,4 @@ do-install: fi ${INSTALL_MAN} ${WRKSRC}/jwm.1 ${MANPREFIX}/man/man1/ -.include <bsd.port.mk> +.include <bsd.port.post.mk> |