Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Aug 2015 21:07:39 +0000 (UTC)
From:      Dmitry Marakasov <amdmi3@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r393445 - in head: games/freeminer games/springlobby games/supertuxkart games/wargus games/widelands lang/tolua++ x11-fm/wcmcommander
Message-ID:  <201508022107.t72L7dAp046956@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: amdmi3
Date: Sun Aug  2 21:07:38 2015
New Revision: 393445
URL: https://svnweb.freebsd.org/changeset/ports/393445

Log:
  - Drop 8.x-related conditions for my ports

Modified:
  head/games/freeminer/Makefile
  head/games/springlobby/Makefile
  head/games/supertuxkart/Makefile
  head/games/wargus/Makefile
  head/games/widelands/Makefile
  head/lang/tolua++/Makefile
  head/x11-fm/wcmcommander/Makefile

Modified: head/games/freeminer/Makefile
==============================================================================
--- head/games/freeminer/Makefile	Sun Aug  2 20:23:55 2015	(r393444)
+++ head/games/freeminer/Makefile	Sun Aug  2 21:07:38 2015	(r393445)
@@ -64,10 +64,6 @@ LUAJIT_LIB_DEPENDS=	libluajit-5.1.so:${P
 
 .include <bsd.port.options.mk>
 
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000
-BROKEN=		does not build on 8.x (lack of long long support)
-.endif
-
 .if ${PORT_OPTIONS:MCLIENT} && ${PORT_OPTIONS:MSOUND}
 USES+=		openal
 LIB_DEPENDS+=	libvorbis.so:${PORTSDIR}/audio/libvorbis

Modified: head/games/springlobby/Makefile
==============================================================================
--- head/games/springlobby/Makefile	Sun Aug  2 20:23:55 2015	(r393444)
+++ head/games/springlobby/Makefile	Sun Aug  2 21:07:38 2015	(r393445)
@@ -46,10 +46,4 @@ NOTIFY_CMAKE_ON=	-DOPTION_NOTIFY=ON
 NOTIFY_CMAKE_OFF=	-DOPTION_NOTIFY=OFF
 NOTIFY_LIB_DEPENDS=	libnotify.so:${PORTSDIR}/devel/libnotify
 
-.include <bsd.port.options.mk>
-
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 901000
-IGNORE=		does not build (no strtoll(3) support)
-.endif
-
 .include <bsd.port.mk>

Modified: head/games/supertuxkart/Makefile
==============================================================================
--- head/games/supertuxkart/Makefile	Sun Aug  2 20:23:55 2015	(r393444)
+++ head/games/supertuxkart/Makefile	Sun Aug  2 21:07:38 2015	(r393445)
@@ -18,10 +18,9 @@ LIB_DEPENDS=	libvorbisfile.so:${PORTSDIR
 		libcurl.so:${PORTSDIR}/ftp/curl \
 		libpng.so:${PORTSDIR}/graphics/png
 
-BROKEN_powerpc=		does not configure on powerpc
-BROKEN_FreeBSD_8=	does not build on 8.x
+BROKEN_powerpc=	does not configure on powerpc
 
-USES=           alias cmake compiler:c++11-lib dos2unix gettext \
+USES=		alias cmake compiler:c++11-lib dos2unix gettext \
 		gmake jpeg openal:al pkgconfig tar:xz
 USE_GL=		gl glu
 USE_SDL=	sdl

Modified: head/games/wargus/Makefile
==============================================================================
--- head/games/wargus/Makefile	Sun Aug  2 20:23:55 2015	(r393444)
+++ head/games/wargus/Makefile	Sun Aug  2 21:07:38 2015	(r393445)
@@ -30,15 +30,9 @@ PORTDOCS=	*
 
 OPTIONS_DEFINE=	DOCS
 
-.include <bsd.port.pre.mk>
-
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000
-BROKEN=		does not build
-.endif
-
 post-install:
 	cd ${WRKSRC}/doc && ${INSTALL_MAN} *.6 ${STAGEDIR}${MAN6PREFIX}/man/man6/
 	${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>

Modified: head/games/widelands/Makefile
==============================================================================
--- head/games/widelands/Makefile	Sun Aug  2 20:23:55 2015	(r393444)
+++ head/games/widelands/Makefile	Sun Aug  2 21:07:38 2015	(r393445)
@@ -40,12 +40,6 @@ DESKTOP_ENTRIES="Widelands" \
 		"Game;StrategyGame;" \
 		""
 
-.include <bsd.port.options.mk>
-
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000
-IGNORE=		doesn't build on 8.x
-.endif
-
 post-patch:
 	@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \
 		${WRKSRC}/cmake/Modules/*.cmake

Modified: head/lang/tolua++/Makefile
==============================================================================
--- head/lang/tolua++/Makefile	Sun Aug  2 20:23:55 2015	(r393444)
+++ head/lang/tolua++/Makefile	Sun Aug  2 21:07:38 2015	(r393445)
@@ -11,6 +11,8 @@ MASTER_SITES=	http://www.codenix.com/~to
 MAINTAINER=	amdmi3@FreeBSD.org
 COMMENT=	Extended version of tolua, a tool to integrate C/C++ code with Lua
 
+BROKEN_sparc64=		Does not install on sparc64
+
 USES=		scons lua:51 tar:bzip2
 MAKE_ARGS=	prefix=${PREFIX} SONAME="libtolua++-${LUA_VER}.so"
 
@@ -21,12 +23,6 @@ TGT_BINDIR=	${PREFIX}/bin
 TGT_INCDIR=	${LUA_INCDIR:C/^${LOCALBASE}/${PREFIX}/}
 TGT_LIBDIR=	${LUA_LIBDIR:C/^${LOCALBASE}/${PREFIX}/}
 
-.include <bsd.port.options.mk>
-
-.if ${ARCH} == "sparc64" && ${OSVERSION} > 900000
-BROKEN=		Does not install on sparc64-9
-.endif
-
 post-patch:
 	@${REINPLACE_CMD} -e "s|'lualib',||; s|lua|lua-${LUA_VER}|g" ${WRKSRC}/config_posix.py
 

Modified: head/x11-fm/wcmcommander/Makefile
==============================================================================
--- head/x11-fm/wcmcommander/Makefile	Sun Aug  2 20:23:55 2015	(r393444)
+++ head/x11-fm/wcmcommander/Makefile	Sun Aug  2 21:07:38 2015	(r393445)
@@ -38,10 +38,6 @@ SSH_CMAKE_OFF=		-DWITH_LIBSSH2=OFF
 
 .include <bsd.port.pre.mk>
 
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 900000
-BROKEN=		does not build on 8.x (lack of long long support)
-.endif
-
 .if ${COMPILER_TYPE} == gcc
 CXXFLAGS+=	-D_GLIBCXX_USE_C99 # gcc c++11 support is broken on FreeBSD
 .endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508022107.t72L7dAp046956>