Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Jul 2016 21:37:02 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r418347 - branches/2016Q3/devel/cmake-gui
Message-ID:  <201607102137.u6ALb2Lj047967@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco
Date: Sun Jul 10 21:37:02 2016
New Revision: 418347
URL: https://svnweb.freebsd.org/changeset/ports/418347

Log:
  MFH: r418346
  
  Add missing dependencies to pass `make stage-qa'.
  
  Error: /usr/local/bin/cmake-gui is linked to /usr/local/lib/libexecinfo.so.1 from devel/libexecinfo but it is not declared as a dependency
  Warning: you need USES+=execinfo
  Error: /usr/local/bin/cmake-gui is linked to /usr/local/lib/libjsoncpp.so.1 from devel/jsoncpp but it is not declared as a dependency
  Warning: you need LIB_DEPENDS+=libjsoncpp.so:devel/jsoncpp
  
  Approved by:	ports-secteam (junovitch, implicit)

Modified:
  branches/2016Q3/devel/cmake-gui/Makefile
Directory Properties:
  branches/2016Q3/   (props changed)

Modified: branches/2016Q3/devel/cmake-gui/Makefile
==============================================================================
--- branches/2016Q3/devel/cmake-gui/Makefile	Sun Jul 10 21:36:07 2016	(r418346)
+++ branches/2016Q3/devel/cmake-gui/Makefile	Sun Jul 10 21:37:02 2016	(r418347)
@@ -2,6 +2,7 @@
 
 PORTNAME=	cmake
 PORTVERSION=	3.5.2
+PORTREVISION=	1
 CATEGORIES=	devel
 MASTER_SITES=	https://www.cmake.org/files/v${PORTVERSION:R}/
 PKGNAMESUFFIX=	-gui
@@ -14,10 +15,12 @@ LICENSE_FILE=	${WRKSRC}/Copyright.txt
 
 BUILD_DEPENDS=	sphinx-build:textproc/py-sphinx
 LIB_DEPENDS=	libcurl.so:ftp/curl \
-		libexpat.so:textproc/expat2
+		libexpat.so:textproc/expat2 \
+		libjsoncpp.so:devel/jsoncpp
 
 USE_QT5=	core gui widgets buildtools_build qmake_build
-USES=		cmake:run desktop-file-utils libarchive shared-mime-info
+USES=		cmake:run desktop-file-utils execinfo libarchive \
+		shared-mime-info
 CMAKE_ARGS=	-DBUILD_QtDialog:bool=on \
 		-DBUILD_CursesDialog:BOOL=OFF \
 		-DSPHINX_MAN:BOOL=ON \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607102137.u6ALb2Lj047967>