svn commit: r515241 - head/math/rkward-kde

Piotr Kubaj pkubaj at FreeBSD.org
Wed Oct 23 09:31:49 UTC 2019


Author: pkubaj
Date: Wed Oct 23 09:31:48 2019
New Revision: 515241
URL: https://svnweb.freebsd.org/changeset/ports/515241

Log:
  math/rkward-kde: fix build on GCC architectures
  
  Needs C++11 compiler:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/math/rkward-kde/Makefile

Modified: head/math/rkward-kde/Makefile
==============================================================================
--- head/math/rkward-kde/Makefile	Wed Oct 23 08:28:08 2019	(r515240)
+++ head/math/rkward-kde/Makefile	Wed Oct 23 09:31:48 2019	(r515241)
@@ -15,7 +15,8 @@ LICENSE=	GPLv2
 
 LIB_DEPENDS=	libR.so:math/R
 
-USES=		cmake desktop-file-utils gettext fortran kde:5 php:cli qt:5 shared-mime-info
+USES=		cmake compiler:c++11-lang desktop-file-utils gettext fortran \
+		kde:5 php:cli qt:5 shared-mime-info
 USE_QT=		buildtools concurrent core dbus gui network printsupport qmake script webkit	\
 		widgets xml
 USE_XORG=	x11


More information about the svn-ports-head mailing list