Date: Sun, 28 Apr 2019 15:09:43 +0000 (UTC) From: Guido Falsi <madpilot@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r500318 - in head/games/0ad: . files Message-ID: <201904281509.x3SF9hMo072276@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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 )
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904281509.x3SF9hMo072276>