diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-08-23 11:19:05 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2016-08-23 11:19:05 +0000 |
commit | 5e3fe5acd3890d9708e7b2e7d520907dff344163 (patch) | |
tree | bf4fbc202a35a7bbd1f25f4132c8d3e22bfd2232 /games | |
parent | 30f674b096316777488d4b749a390cd0f88aa79a (diff) | |
download | ports-5e3fe5acd3890d9708e7b2e7d520907dff344163.tar.gz ports-5e3fe5acd3890d9708e7b2e7d520907dff344163.zip |
Notes
Diffstat (limited to 'games')
-rw-r--r-- | games/vegastrike/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/games/vegastrike/Makefile b/games/vegastrike/Makefile index c68b4464a164..efbdef0bf5ef 100644 --- a/games/vegastrike/Makefile +++ b/games/vegastrike/Makefile @@ -11,7 +11,8 @@ DISTNAME= ${PORTNAME}-src-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Open source 3D space simulator -LICENSE= GPLv2 +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${DATADIR}/vegastrike.ico:games/vegastrike-data LIB_DEPENDS= libboost_python.so:devel/boost-python-libs \ @@ -46,6 +47,12 @@ MESHER_PLIST_FILES= bin/mesher MESHER_LIB_DEPENDS= libOgreMain.so:graphics/ogre3d MESHER_CONFIGURE_ENABLE= ogre +.include <bsd.port.pre.mk> + +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000 && ${OSVERSION} < 1002000 +BROKEN= does not build on 10.1 +.endif + post-patch: @${REINPLACE_CMD} -E 's,/usr/(local|X11R6),${LOCALBASE},' \ ${WRKSRC}/configure @@ -56,4 +63,4 @@ do-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |