From owner-svn-ports-all@FreeBSD.ORG Mon Jun 23 12:13:46 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D9B111CD; Mon, 23 Jun 2014 12:13:46 +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 AD00B2095; Mon, 23 Jun 2014 12:13:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5NCDkgU098465; Mon, 23 Jun 2014 12:13:46 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5NCDkMt098464; Mon, 23 Jun 2014 12:13:46 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201406231213.s5NCDkMt098464@svn.freebsd.org> From: Baptiste Daroussin Date: Mon, 23 Jun 2014 12:13:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358925 - head/games/vegastrike 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.18 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: Mon, 23 Jun 2014 12:13:46 -0000 Author: bapt Date: Mon Jun 23 12:13:46 2014 New Revision: 358925 URL: http://svnweb.freebsd.org/changeset/ports/358925 QAT: https://qat.redports.org/buildarchive/r358925/ Log: Mark as broken with any modern compiler Cleanup staging while here Convert to USES=dos2unix Modified: head/games/vegastrike/Makefile Modified: head/games/vegastrike/Makefile ============================================================================== --- head/games/vegastrike/Makefile Mon Jun 23 11:57:44 2014 (r358924) +++ head/games/vegastrike/Makefile Mon Jun 23 12:13:46 2014 (r358925) @@ -11,15 +11,16 @@ DISTNAME= vegastrike-src-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Opensource 3D space simulator +BROKEN= Does not build with any modern compiler + RUN_DEPENDS= ${DATADIR}/vegastrike.ico:${PORTSDIR}/games/vegastrike-data -LIB_DEPENDS= boost_python:${PORTSDIR}/devel/boost-python-libs \ - expat:${PORTSDIR}/textproc/expat2 \ - vorbis:${PORTSDIR}/audio/libvorbis \ - ogg:${PORTSDIR}/audio/libogg +LIB_DEPENDS= libboost_python.so:${PORTSDIR}/devel/boost-python-libs \ + libexpat.so:${PORTSDIR}/textproc/expat2 \ + libvorbis.so:${PORTSDIR}/audio/libvorbis \ + libogg.so:${PORTSDIR}/audio/libogg -USE_BZIP2= yes GNU_CONFIGURE= yes -USES= gmake openal:al +USES= dos2unix gmake openal:al tar:bzip2 USE_PYTHON= yes USE_SDL= sdl USE_XORG= sm ice xi x11 xext xrender xinerama xi xrandr xcursor \ @@ -28,7 +29,7 @@ USE_GL= gl glu glut USE_GNOME= gtk20 CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -USE_DOS2UNIX= *.cpp *.h +DOS2UNIX_GLOB= *.cpp *.h EXTRACT_AFTER_ARGS+=--exclude boost # cegui and ffmpeg are not used yet @@ -44,19 +45,9 @@ PORTDOCS= README OPTIONS_DEFINE= MESHER MESHER_DESC= Enable mesher modelling tool -.include - -.if ${OSVERSION} < 800000 -BROKEN= fails to build on 7.x -.endif - -.if ${PORT_OPTIONS:MMESHER} -PLIST_FILES+= bin/mesher -BUILD_DEPENDS+= ${LOCALBASE}/lib/libOgreMain.so:${PORTSDIR}/graphics/ogre3d -RUN_DEPENDS+= ${LOCALBASE}/lib/libOgreMain.so:${PORTSDIR}/graphics/ogre3d -.else -CONFIGURE_ARGS+= --disable-ogre -.endif +MESHER_PLIST_FILES= bin/mesher +MESHER_LIB_DEPENDS= libOgreMain.so:${PORTSDIR}/graphics/ogre3d +MESHER_CONFIGURE_ENABLE= ogre post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g; \ @@ -65,12 +56,7 @@ post-patch: do-install: ${INSTALL_PROGRAM} ${PLIST_FILES:S|bin|${WRKSRC}|} \ ${STAGEDIR}${PREFIX}/bin -.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} -.endif - -post-install: - @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} -.include +.include