diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2004-08-16 00:51:30 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2004-08-16 00:51:30 +0000 |
commit | 0613a3b64c450431d905e3e1a5f06be9e4a8a4b5 (patch) | |
tree | 827d00586be81a93847e2ac7a47c3e38cedcb018 | |
parent | 23fbe2aa8d2a9bf61aacba9aeff8d968f4e71436 (diff) | |
download | ports-0613a3b64c450431d905e3e1a5f06be9e4a8a4b5.tar.gz ports-0613a3b64c450431d905e3e1a5f06be9e4a8a4b5.zip |
Notes
-rw-r--r-- | emulators/raine/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/emulators/raine/Makefile b/emulators/raine/Makefile index ddb8962b0532..804d7767cb30 100644 --- a/emulators/raine/Makefile +++ b/emulators/raine/Makefile @@ -28,8 +28,14 @@ MAKE_ENV= PREFIX=${PREFIX} ONLY_FOR_ARCHS= i386 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "pengo.c doesn't compile on 4.10 (see ports/69509)" +.endif + post-patch: ${REINPLACE_CMD} -e "s, [$$]_mcpu,,g" ${WRKSRC}/detect-cpu ${REINPLACE_CMD} -e "s,sdl-config,${SDL_CONFIG},g" ${WRKSRC}/makefile -.include <bsd.port.mk> +.include <bsd.port.post.mk> |