svn commit: r418335 - branches/2016Q3/devel/qbs

Raphael Kubo da Costa rakuco at FreeBSD.org
Sun Jul 10 17:48:58 UTC 2016


Author: rakuco
Date: Sun Jul 10 17:48:56 2016
New Revision: 418335
URL: https://svnweb.freebsd.org/changeset/ports/418335

Log:
  MFH: r418330
  
  Declare missing dependencies to pass `make stage-qa'.
  
  Error: /usr/local/bin/qbs is linked to /usr/local/lib/libQt5Core.so.5 from devel/qt5-core but it is not declared as a dependency
  Warning: you need USE_QT5+=core
  Error: /usr/local/bin/qbs-config-ui is linked to /usr/local/lib/.mesa/libGL.so from graphics/libGL but it is not declared as a dependency
  Warning: you need USE_GL+=gl
  Error: /usr/local/lib/libqbscore.so.1.5.2 is linked to /usr/local/lib/libQt5Network.so.5 from net/qt5-network but it is not declared as a dependency
  Warning: you need USE_QT5+=network
  
  Approved by:	ports-secteam (junovitch)

Modified:
  branches/2016Q3/devel/qbs/Makefile
Directory Properties:
  branches/2016Q3/   (props changed)

Modified: branches/2016Q3/devel/qbs/Makefile
==============================================================================
--- branches/2016Q3/devel/qbs/Makefile	Sun Jul 10 17:47:48 2016	(r418334)
+++ branches/2016Q3/devel/qbs/Makefile	Sun Jul 10 17:48:56 2016	(r418335)
@@ -3,6 +3,7 @@
 PORTNAME=	qbs
 PORTVERSION=	1.5.1
 DISTVERSIONPREFIX=	src-
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	QT/official_releases/${PORTNAME}/${PORTVERSION}
 DIST_SUBDIR=	KDE/Qt/qbs
@@ -14,8 +15,10 @@ LICENSE=	GPLv3 LGPL21
 LICENSE_COMB=	dual
 
 USES=		compiler:c++11-lib qmake:outsource
+USE_GL=		yes
 USE_LDCONFIG=	yes
-USE_QT5=	buildtools_build concurrent gui script testlib widgets xml
+USE_QT5=	buildtools_build core concurrent gui network script testlib \
+		widgets xml
 
 QMAKE_SOURCE_PATH=	${WRKSRC}/qbs.pro
 


More information about the svn-ports-all mailing list