svn commit: r420663 - head/games/vegastrike

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Aug 23 11:19:06 UTC 2016


Author: amdmi3
Date: Tue Aug 23 11:19:05 2016
New Revision: 420663
URL: https://svnweb.freebsd.org/changeset/ports/420663

Log:
  - Fix LICENSE
  - Add LICENSE_FILE
  - Fix BROKEN condition: this still does not build on 10.1 (fine on 10.2+)

Modified:
  head/games/vegastrike/Makefile

Modified: head/games/vegastrike/Makefile
==============================================================================
--- head/games/vegastrike/Makefile	Tue Aug 23 11:14:37 2016	(r420662)
+++ head/games/vegastrike/Makefile	Tue Aug 23 11:19:05 2016	(r420663)
@@ -11,7 +11,8 @@ DISTNAME=	${PORTNAME}-src-${PORTVERSION}
 MAINTAINER=	ports at 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>


More information about the svn-ports-head mailing list