From owner-svn-ports-all@freebsd.org Wed Aug 19 14:10:33 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F4CD9BE9C1; Wed, 19 Aug 2015 14:10:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.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 1DCE1102C; Wed, 19 Aug 2015 14:10:33 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7JEAW6I066825; Wed, 19 Aug 2015 14:10:32 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7JEAWH4066824; Wed, 19 Aug 2015 14:10:32 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508191410.t7JEAWH4066824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 19 Aug 2015 14:10:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r394784 - head/games/goonies 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, 19 Aug 2015 14:10:33 -0000 Author: amdmi3 Date: Wed Aug 19 14:10:32 2015 New Revision: 394784 URL: https://svnweb.freebsd.org/changeset/ports/394784 Log: - Remove unneeded conditions - Switch to BROKEN helpers Modified: head/games/goonies/Makefile Modified: head/games/goonies/Makefile ============================================================================== --- head/games/goonies/Makefile Wed Aug 19 14:09:29 2015 (r394783) +++ head/games/goonies/Makefile Wed Aug 19 14:10:32 2015 (r394784) @@ -12,6 +12,8 @@ DISTNAME= ${PORTNAME}_r${PORTVERSION:C/\ MAINTAINER= amdmi3@FreeBSD.org COMMENT= Remake of the 8 bit classic game 'The Goonies' +BROKEN_sparc64= does not compile on sparc64 + USES= gmake tar:tgz USE_SDL= sdl mixer image USE_GL= yes @@ -28,12 +30,6 @@ PORTDATA= * OPTIONS_DEFINE= DOCS -.include - -.if ${ARCH} == "sparc64" -BROKEN= Does not compile on sparc64 -.endif - post-patch: @${REINPLACE_CMD} -e 's|sound/|${DATADIR}/sound/|g' \ ${WRKSRC}/src/SFXManager.cpp @@ -47,9 +43,7 @@ do-install: ${MKDIR} ${STAGEDIR}${DATADIR} cd ${WRKSRC} && ${COPYTREE_SHARE} \ 'sound graphics maps' ${STAGEDIR}${DATADIR}/ -.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR}/ -.endif .include