From owner-svn-ports-branches@freebsd.org Thu Sep 29 19:53:07 2016 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B3FDC014C9; Thu, 29 Sep 2016 19:53:07 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 23E3D1F4B; Thu, 29 Sep 2016 19:53:07 +0000 (UTC) (envelope-from dbn@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8TJr68n058773; Thu, 29 Sep 2016 19:53:06 GMT (envelope-from dbn@FreeBSD.org) Received: (from dbn@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8TJr6OR058771; Thu, 29 Sep 2016 19:53:06 GMT (envelope-from dbn@FreeBSD.org) Message-Id: <201609291953.u8TJr6OR058771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbn set sender to dbn@FreeBSD.org using -f From: David Naylor Date: Thu, 29 Sep 2016 19:53:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r422943 - in branches/2016Q3/x11/kde4-workspace: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Sep 2016 19:53:07 -0000 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} ) +