multimedia/libnymphcast: repair build

My home system is apparently slow enough that the parallel
mkdir and compilation-with-output-in-that-dir work out safely.
On the cluster, this leads to build failures. Use gmake feature
to add order-only dependencies to all the object files.

(See https://www.gnu.org/software/make/manual/html_node/Prerequisite-Types.html)
This commit is contained in:
Adriaan de Groot 2024-12-03 21:50:42 +01:00
parent 1a437a6a8c
commit a79844a1e1
2 changed files with 23 additions and 0 deletions

View File

@ -1,5 +1,6 @@
PORTNAME= NymphCastLib
DISTVERSION= v0.2.1
PORTREVISION= 1
CATEGORIES= multimedia
MAINTAINER= adridg@FreeBSD.org

View File

@ -0,0 +1,22 @@
--- Makefile.orig 2024-12-03 20:49:22 UTC
+++ Makefile
@@ -148,10 +148,10 @@ all: lib
lib: makedir lib/$(ARCH)$(OUTPUT).a lib/$(ARCH)$(LIBNAME)
-obj/static/$(ARCH)%.o: %.cpp
+obj/static/$(ARCH)%.o: %.cpp | makedir
$(CXX) -c -o $@ $< $(CXXFLAGS)
-obj/shared/$(ARCH)%.o: %.cpp
+obj/shared/$(ARCH)%.o: %.cpp | makedir
$(CXX) -c -o $@ $< $(CXXFLAGS) $(SHARED_FLAGS) $(LIBS)
lib/$(ARCH)$(OUTPUT).a: $(OBJECTS)
@@ -226,4 +226,4 @@ ifndef OS
endif
package:
- tar -C lib/$(ARCH) -cvzf lib/$(OUTPUT)-$(VERSION)-$(USYS)-$(UMCH).tar.gz $(OUTPUT).a $(OUTPUT).so.$(VERSION)
\ No newline at end of file
+ tar -C lib/$(ARCH) -cvzf lib/$(OUTPUT)-$(VERSION)-$(USYS)-$(UMCH).tar.gz $(OUTPUT).a $(OUTPUT).so.$(VERSION)