From owner-svn-ports-head@freebsd.org Sun Jul 10 16:52:10 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 59C80B84AD3; Sun, 10 Jul 2016 16:52:10 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2949E1528; Sun, 10 Jul 2016 16:52:10 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6AGq99C041885; Sun, 10 Jul 2016 16:52:09 GMT (envelope-from rakuco@FreeBSD.org) Received: (from rakuco@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6AGq9u5041884; Sun, 10 Jul 2016 16:52:09 GMT (envelope-from rakuco@FreeBSD.org) Message-Id: <201607101652.u6AGq9u5041884@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rakuco set sender to rakuco@FreeBSD.org using -f From: Raphael Kubo da Costa Date: Sun, 10 Jul 2016 16:52:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r418330 - head/devel/qbs X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2016 16:52:10 -0000 Author: rakuco Date: Sun Jul 10 16:52:09 2016 New Revision: 418330 URL: https://svnweb.freebsd.org/changeset/ports/418330 Log: 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 MFH: 2016Q3 Modified: head/devel/qbs/Makefile Modified: head/devel/qbs/Makefile ============================================================================== --- head/devel/qbs/Makefile Sun Jul 10 16:34:20 2016 (r418329) +++ head/devel/qbs/Makefile Sun Jul 10 16:52:09 2016 (r418330) @@ -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