diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2005-03-10 11:02:13 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2005-03-10 11:02:13 +0000 |
commit | a589fdb1246c45c0b6d29dbf429164daebbb1c2c (patch) | |
tree | 97e22a96596e8b90c12e7bf2e58b853bbc767344 /games/adonthell | |
parent | Fix build on amd64. (diff) |
BROKEN: Does not compile on FreeBSD >= 5.x
Notes
Notes:
svn path=/head/; revision=130789
Diffstat (limited to 'games/adonthell')
-rw-r--r-- | games/adonthell/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/adonthell/Makefile b/games/adonthell/Makefile index b710ef59d78d..7745fbf24a3b 100644 --- a/games/adonthell/Makefile +++ b/games/adonthell/Makefile @@ -28,6 +28,12 @@ CONFIGURE_ARGS+= --disable-py-debug CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= LDFLAGS=-L${LOCALBASE}/lib +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Does not compile on FreeBSD >= 5.x" +.endif + post-install: cd ${WRKDIR}/wastesedge-${PORTVERSION} && \ ${SETENV} ${CONFIGURE_ENV} ./configure ${CONFIGURE_ARGS} \ @@ -36,4 +42,4 @@ post-install: cd ${WRKDIR}/wastesedge-${PORTVERSION} && ${GMAKE} cd ${WRKDIR}/wastesedge-${PORTVERSION} && ${GMAKE} install -.include <bsd.port.mk> +.include <bsd.port.post.mk> |