svn commit: r551432 - head/audio/suil

Christoph Moench-Tegeder cmt at FreeBSD.org
Sun Oct 4 15:24:54 UTC 2020


Author: cmt
Date: Sun Oct  4 15:24:53 2020
New Revision: 551432
URL: https://svnweb.freebsd.org/changeset/ports/551432

Log:
  audio/suil: fix dependency (and packaging)
  
  libsuil_x11_in_qt5.so was not built as it now depends on qt5 x11extras
  (the condition for x11-in_qt5 changed from "HAVE_QT5" to "HAVE_QT5 and
  HAVE_QT5_X11" in wscript, and the configure stage reported
  'Qt5X11Extras >= 5.1.0' as missing).
  
  Approved by:	just-fix-it

Modified:
  head/audio/suil/Makefile

Modified: head/audio/suil/Makefile
==============================================================================
--- head/audio/suil/Makefile	Sun Oct  4 15:07:05 2020	(r551431)
+++ head/audio/suil/Makefile	Sun Oct  4 15:24:53 2020	(r551432)
@@ -20,7 +20,7 @@ RUN_DEPENDS=	lv2>=1.14.0:audio/lv2
 USES=		compiler:c++11-lang gnome pkgconfig python:build qt:5 \
 		tar:bzip2 waf xorg
 USE_GNOME=	atk cairo gdkpixbuf2 glib20 gtk20 gtk30 pango
-USE_QT=		core gui widgets
+USE_QT=		core gui widgets x11extras
 USE_XORG=	x11
 USE_LDCONFIG=	yes
 


More information about the svn-ports-all mailing list