svn commit: r495426 - head/security/openconnect-gui

Mark Linimon linimon at FreeBSD.org
Tue Mar 12 04:30:50 UTC 2019


Author: linimon
Date: Tue Mar 12 04:30:49 2019
New Revision: 495426
URL: https://svnweb.freebsd.org/changeset/ports/495426

Log:
  Fix build on gcc-based architectures:
  
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
  While here, pet portlint.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/security/openconnect-gui/Makefile

Modified: head/security/openconnect-gui/Makefile
==============================================================================
--- head/security/openconnect-gui/Makefile	Tue Mar 12 04:25:55 2019	(r495425)
+++ head/security/openconnect-gui/Makefile	Tue Mar 12 04:30:49 2019	(r495426)
@@ -3,8 +3,8 @@
 
 PORTNAME=	openconnect-gui
 PORTVERSION=	1.4.1
-PORTREVISION=	2
 DISTVERSIONPREFIX=v
+PORTREVISION=	2
 CATEGORIES=	security
 
 MAINTAINER=	pkubaj at anongoth.pl
@@ -18,10 +18,10 @@ LIB_DEPENDS=	libgnutls.so:security/gnutls
 RUN_DEPENDS=	openconnect:security/openconnect \
 		vpnc-scripts>=0:sysutils/vpnc-scripts
 
+USES=		cmake:insource compiler:c++11-lang pkgconfig qt:5
 USE_GITHUB=	yes
 GH_ACCOUNT=	${PORTNAME:C/-gui//}
 
-USES=		cmake:insource pkgconfig qt:5
 USE_QT=		buildtools_build concurrent core gui network qmake_build widgets
 CMAKE_ARGS+=	-DCMAKE_BUILD_TYPE=Release
 PLIST_FILES=	bin/openconnect-gui


More information about the svn-ports-all mailing list