From owner-svn-ports-all@FreeBSD.ORG Wed May 13 20:59:08 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF421AA9; Wed, 13 May 2015 20:59:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id AD952152B; Wed, 13 May 2015 20:59:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4DKx8BW009815; Wed, 13 May 2015 20:59:08 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4DKx8Ix009813; Wed, 13 May 2015 20:59:08 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201505132059.t4DKx8Ix009813@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 13 May 2015 20:59:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r386267 - head/games/spring X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 May 2015 20:59:08 -0000 Author: amdmi3 Date: Wed May 13 20:59:07 2015 New Revision: 386267 URL: https://svnweb.freebsd.org/changeset/ports/386267 Log: - Bring back ONLY_FOR_ARCHS which was lost in the last update - Mark BROKEN on pre-10.x Modified: head/games/spring/Makefile Modified: head/games/spring/Makefile ============================================================================== --- head/games/spring/Makefile Wed May 13 20:53:38 2015 (r386266) +++ head/games/spring/Makefile Wed May 13 20:59:07 2015 (r386267) @@ -20,6 +20,11 @@ LIB_DEPENDS= libfreetype.so:${PORTSDIR}/ libvorbis.so:${PORTSDIR}/audio/libvorbis BUILD_DEPENDS= 7z:${PORTSDIR}/archivers/p7zip +# XXX: it should be possible to build it on i386, investigate +# (currently link fails on undefined reference to __sync_fetch_and_add_8) +ONLY_FOR_ARCHS= amd64 +ONLY_FOR_ARCHS_REASON= relies on x86 floating-point math and amd64 atomic ops + USE_SDL= sdl2 USE_GL= gl glu glew USE_XORG= x11 xcursor @@ -74,7 +79,11 @@ PR_DOWNLOADER_LIB_DEPENDS=libcurl.so:${P check test xregression-test: build ${MAKE} -C ${WRKSRC} check -.include +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +BROKEN= does not build (lack of proper c++11 support) +.endif .if defined(WITH_SYNC_DEBUG) CFLAGS= # empty @@ -111,4 +120,4 @@ post-patch: pre-build: cd ${WRKSRC} && ${MAKE} generateVersionFiles -.include +.include