svn commit: r500647 - head/graphics/kamerka

Piotr Kubaj pkubaj at FreeBSD.org
Thu May 2 09:34:50 UTC 2019


Author: pkubaj
Date: Thu May  2 09:34:48 2019
New Revision: 500647
URL: https://svnweb.freebsd.org/changeset/ports/500647

Log:
  graphics/kamerka: fix build with GCC-based architectures
  
  Add USES=compiler:c++11-lang because of:
  CMake Error in src/CMakeLists.txt:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/graphics/kamerka/Makefile

Modified: head/graphics/kamerka/Makefile
==============================================================================
--- head/graphics/kamerka/Makefile	Thu May  2 09:33:16 2019	(r500646)
+++ head/graphics/kamerka/Makefile	Thu May  2 09:34:48 2019	(r500647)
@@ -16,7 +16,7 @@ LIB_DEPENDS=	libv4l2.so:multimedia/libv4l \
 		libphonon4qt5.so:multimedia/phonon \
 		libqimageblitz.so:x11/qimageblitz
 
-USES=		cmake kde:5 qt:5
+USES=		cmake compiler:c++11-lang kde:5 qt:5
 USE_GITHUB=	yes
 GH_ACCOUNT=	dos1
 USE_QT=		concurrent core dbus declarative gui network printsupport script xml widgets \


More information about the svn-ports-all mailing list