svn commit: r418346 - head/devel/cmake-gui

Raphael Kubo da Costa rakuco at FreeBSD.org
Sun Jul 10 21:36:08 UTC 2016


Author: rakuco
Date: Sun Jul 10 21:36:07 2016
New Revision: 418346
URL: https://svnweb.freebsd.org/changeset/ports/418346

Log:
  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

Modified:
  head/devel/cmake-gui/Makefile

Modified: head/devel/cmake-gui/Makefile
==============================================================================
--- head/devel/cmake-gui/Makefile	Sun Jul 10 21:04:39 2016	(r418345)
+++ head/devel/cmake-gui/Makefile	Sun Jul 10 21:36:07 2016	(r418346)
@@ -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 \


More information about the svn-ports-all mailing list