svn commit: r422943 - in branches/2016Q3/x11/kde4-workspace: . files

David Naylor dbn at FreeBSD.org
Thu Sep 29 19:53:07 UTC 2016


Author: dbn
Date: Thu Sep 29 19:53:06 2016
New Revision: 422943
URL: https://svnweb.freebsd.org/changeset/ports/422943

Log:
  MFH: r422903
  
  x11/kde4-workspace: fix OpenGL test for nvidia-driver.
  
  Restore patch introduced in r408463 and accidentially removed in r417328.
  
  Approved by:	ports-secteam (feld)

Added:
  branches/2016Q3/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt
     - copied unchanged from r422903, head/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt
Modified:
  branches/2016Q3/x11/kde4-workspace/Makefile
Directory Properties:
  branches/2016Q3/   (props changed)

Modified: branches/2016Q3/x11/kde4-workspace/Makefile
==============================================================================
--- branches/2016Q3/x11/kde4-workspace/Makefile	Thu Sep 29 19:41:25 2016	(r422942)
+++ branches/2016Q3/x11/kde4-workspace/Makefile	Thu Sep 29 19:53:06 2016	(r422943)
@@ -2,6 +2,7 @@
 
 PORTNAME=	kde-workspace
 PORTVERSION=	${KDE4_WORKSPACE_VERSION}
+PORTREVISION=	1
 CATEGORIES=	x11 kde
 MASTER_SITES=	KDE/${KDE4_APPLICATIONS_BRANCH}/applications/${KDE4_APPLICATIONS_VERSION}/src
 DIST_SUBDIR=	KDE/${PORTVERSION}

Copied: branches/2016Q3/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt (from r422903, head/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2016Q3/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt	Thu Sep 29 19:53:06 2016	(r422943, copy of r422903, head/x11/kde4-workspace/files/patch-kwin_opengltest_CMakeLists.txt)
@@ -0,0 +1,15 @@
+--- kwin/opengltest/CMakeLists.txt.orig	2014-11-06 22:36:58 UTC
++++ kwin/opengltest/CMakeLists.txt
+@@ -2,9 +2,11 @@
+ 
+ set(kwin_opengl_test_SRCS opengltest.cpp )
+ 
++find_package(Threads)
++
+ kde4_add_executable(kwin_opengl_test ${kwin_opengl_test_SRCS})
+ 
+-target_link_libraries(kwin_opengl_test ${X11_LIBRARIES} ${OPENGL_gl_LIBRARY})
++target_link_libraries(kwin_opengl_test ${X11_LIBRARIES} ${OPENGL_gl_LIBRARY} ${CMAKE_THREAD_LIBS_INIT})
+ 
+ install(TARGETS kwin_opengl_test DESTINATION ${LIBEXEC_INSTALL_DIR} )
+ 


More information about the svn-ports-all mailing list