1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

- Modify patch to not implicitly depend on csh during build.

- Add some missing USES

PR:		237584
Submitted by:	Lorenzo Salvadore <phascolarctos@protonmail.ch>
This commit is contained in:
Guido Falsi 2019-04-28 15:09:43 +00:00
parent bf95cc9760
commit bbaddba030
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=500318
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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 )