diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-05-21 19:05:17 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-05-21 19:05:17 +0000 |
commit | 00a5e04aa6d17d5e44c476d2605143eb288cd288 (patch) | |
tree | bcd8f4be15fc71d3df9b9303f678046f2b55d291 /games/lianliankan | |
parent | 4e801d79e363bee21034d166d85232e8e070cc5e (diff) |
- Does not compile on FreeBSD 4.X
Reported by: krismail
Notes
Notes:
svn path=/head/; revision=162965
Diffstat (limited to 'games/lianliankan')
-rw-r--r-- | games/lianliankan/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/games/lianliankan/Makefile b/games/lianliankan/Makefile index 54eb149bcf76..d08932e2e2a2 100644 --- a/games/lianliankan/Makefile +++ b/games/lianliankan/Makefile @@ -23,8 +23,14 @@ USE_X_PREFIX= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= does not compile +.endif + post-install: ${MKDIR} ${PREFIX}/share/applications ${INSTALL_DATA} ${FILESDIR}/lianliankan.desktop ${PREFIX}/share/applications -.include <bsd.port.mk> +.include <bsd.port.post.mk> |