svn commit: r430123 - head/multimedia/shotcut

Alberto Villa avilla at FreeBSD.org
Sat Dec 31 14:28:38 UTC 2016


Author: avilla
Date: Sat Dec 31 14:28:37 2016
New Revision: 430123
URL: https://svnweb.freebsd.org/changeset/ports/430123

Log:
  - Fix build on FreeBSD 9
  
  FreeBSD 10+ has bmake(1) from NetBSD, which ignores stale .depend
  entries. To successfully build on older releases, we have to remove
  the incriminated file.

Modified:
  head/multimedia/shotcut/Makefile

Modified: head/multimedia/shotcut/Makefile
==============================================================================
--- head/multimedia/shotcut/Makefile	Sat Dec 31 14:14:13 2016	(r430122)
+++ head/multimedia/shotcut/Makefile	Sat Dec 31 14:28:37 2016	(r430123)
@@ -52,6 +52,9 @@ post-patch:
 	${REINPLACE_CMD} -e 's/"qmelt"/"melt"/' \
 		${WRKSRC}/src/jobs/meltjob.cpp
 
+pre-build:
+	@${FIND} ${WRKSRC} -name '.depend' -delete
+
 post-build-NLS-on:
 	${LRELEASE} ${WRKSRC}/src/src.pro
 


More information about the svn-ports-head mailing list