svn commit: r500318 - in head/games/0ad: . files

Guido Falsi madpilot at FreeBSD.org
Sun Apr 28 15:09:45 UTC 2019


Author: madpilot
Date: Sun Apr 28 15:09:43 2019
New Revision: 500318
URL: https://svnweb.freebsd.org/changeset/ports/500318

Log:
  - Modify patch to not implicitly depend on csh during build.
  - Add some missing USES
  
  PR:		237584
  Submitted by:	Lorenzo Salvadore <phascolarctos at protonmail.ch>

Modified:
  head/games/0ad/Makefile
  head/games/0ad/files/patch-libraries_source_fcollada_src_Makefile

Modified: head/games/0ad/Makefile
==============================================================================
--- head/games/0ad/Makefile	Sun Apr 28 15:00:03 2019	(r500317)
+++ head/games/0ad/Makefile	Sun Apr 28 15:09:43 2019	(r500318)
@@ -27,8 +27,8 @@ LIB_DEPENDS=	libboost_thread.so:devel/boost-libs \
 		libtiff.so:graphics/tiff \
 		libsodium.so:security/libsodium
 
-USES=		compiler:c++11-lib desktop-file-utils dos2unix gmake iconv jpeg openal:al \
-		pkgconfig python:2.7,build tar:xz
+USES=		compiler:c++11-lib desktop-file-utils dos2unix gl gmake gnome iconv \
+		jpeg openal:al pkgconfig python:2.7,build sdl tar:xz
 USE_GNOME=	libxml2
 USE_GL=		gl
 USE_SDL=	sdl2

Modified: head/games/0ad/files/patch-libraries_source_fcollada_src_Makefile
==============================================================================
--- head/games/0ad/files/patch-libraries_source_fcollada_src_Makefile	Sun Apr 28 15:00:03 2019	(r500317)
+++ head/games/0ad/files/patch-libraries_source_fcollada_src_Makefile	Sun Apr 28 15:09:43 2019	(r500318)
@@ -1,11 +1,11 @@
---- libraries/source/fcollada/src/Makefile.orig	2014-09-24 14:39:28 UTC
+--- libraries/source/fcollada/src/Makefile.orig	2019-04-26 13:27:39 UTC
 +++ libraries/source/fcollada/src/Makefile
 @@ -227,7 +227,7 @@ OBJECTS_ALL = $(OBJECTS_DEBUG) $(OBJECTS_RELEASE) $(OB
  all: output/libFColladaSD.a output/libFColladaSR.a install
  
  output_dirs:
 -	bash -c 'mkdir -p output/{debug,release,test}/{FCollada/{FCDocument,FMath,FUtils,FColladaTest/{FCTestAssetManagement,FCTestExportImport,FCTestXRef}},FColladaPlugins/FArchiveXML}'
-+	csh -c 'mkdir -p output/{debug,release,test}/{FCollada/{FCDocument,FMath,FUtils,FColladaTest/{FCTestAssetManagement,FCTestExportImport,FCTestXRef}},FColladaPlugins/FArchiveXML}'
++	for x in debug release test; do for y in FCDocument FMath FUtils FColladaTest; do for z in FCTestAssetManagement FCTestExportImport FCTestXRef; do mkdir -p output/$$x/FCollada/$$y/$$z; done; done; mkdir -p output/$$x/FColladaPlugins/FArchiveXML; done
  
  test: FCollada/FColladaTest/ output/FColladaTest
  	( cd FCollada/FColladaTest/ ; ../../output/FColladaTest )


More information about the svn-ports-head mailing list