svn commit: r495428 - head/security/yubikey-manager-qt

Mark Linimon linimon at FreeBSD.org
Tue Mar 12 04:35:45 UTC 2019


Author: linimon
Date: Tue Mar 12 04:35:44 2019
New Revision: 495428
URL: https://svnweb.freebsd.org/changeset/ports/495428

Log:
  Fix build on gcc-based architectures:
  
    cc1plus: error: unrecognized command line option "-std=gnu++11"
  
  While here, pet portlint.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/security/yubikey-manager-qt/Makefile

Modified: head/security/yubikey-manager-qt/Makefile
==============================================================================
--- head/security/yubikey-manager-qt/Makefile	Tue Mar 12 04:33:48 2019	(r495427)
+++ head/security/yubikey-manager-qt/Makefile	Tue Mar 12 04:35:44 2019	(r495428)
@@ -14,11 +14,11 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}yubikey-manager>0:security/py-yubikey-manager@${PY_FLAVOR} \
 		pyotherside-qt5>0:devel/pyotherside-qt5
-
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}yubikey-manager>0:security/py-yubikey-manager@${PY_FLAVOR} \
 		pyotherside-qt5>0:devel/pyotherside-qt5
 
-USES=		gl pkgconfig python:3.5+ qt:5 qmake shebangfix
+USES=		compiler:c++11-lang gl pkgconfig python:3.5+ qt:5 qmake \
+		shebangfix
 USE_GL=		gl
 USE_QT=		core declarative graphicaleffects gui network quickcontrols \
 		quickcontrols2 svg widgets buildtools_build


More information about the svn-ports-all mailing list