From owner-svn-ports-all@freebsd.org Wed Mar 28 18:47:52 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ADCC4F6FD27; Wed, 28 Mar 2018 18:47:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6190F7D129; Wed, 28 Mar 2018 18:47:52 +0000 (UTC) (envelope-from tobik@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5C8556D72; Wed, 28 Mar 2018 18:47:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2SIlq0b029952; Wed, 28 Mar 2018 18:47:52 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2SIlqKY029950; Wed, 28 Mar 2018 18:47:52 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201803281847.w2SIlqKY029950@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 28 Mar 2018 18:47:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465837 - in head/graphics/glfw: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/graphics/glfw: . files X-SVN-Commit-Revision: 465837 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Mar 2018 18:47:52 -0000 Author: tobik Date: Wed Mar 28 18:47:51 2018 New Revision: 465837 URL: https://svnweb.freebsd.org/changeset/ports/465837 Log: graphics/glfw: Add WAYLAND option - Reset maintainer after the third consecutive timeout PR: 226605 Submitted by: greg@unrelenting.technology (based on) Approved by: koalative@gmail.com (maintainer timeout, 2 weeks) Added: head/graphics/glfw/files/patch-src_wl__init.c (contents, props changed) Modified: head/graphics/glfw/Makefile Modified: head/graphics/glfw/Makefile ============================================================================== --- head/graphics/glfw/Makefile Wed Mar 28 18:42:53 2018 (r465836) +++ head/graphics/glfw/Makefile Wed Mar 28 18:47:51 2018 (r465837) @@ -7,13 +7,12 @@ PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF -MAINTAINER= koalative@gmail.com +MAINTAINER= ports@FreeBSD.org COMMENT= Portable framework for OpenGL development LICENSE= ZLIB USES= cmake localbase zip -USE_XORG= x11 xcursor xinerama xrandr xxf86vm USE_GL= glu USE_LDCONFIG= yes CMAKE_ARGS= -DBUILD_SHARED_LIBS:BOOL=ON @@ -42,7 +41,17 @@ EXAMPLES_FILES2= clipboard cursor empty events gamma g joysticks monitors msaa reopen sharing tearing threads \ title windows -OPTIONS_DEFINE= DOCS EXAMPLES +OPTIONS_DEFINE= DOCS EXAMPLES WAYLAND +OPTIONS_EXCLUDE_FreeBSD_10= WAYLAND # needs dev/evdev/input.h + +WAYLAND_BUILD_DEPENDS= wayland-protocols>=0:graphics/wayland-protocols +WAYLAND_CMAKE_BOOL= GLFW_USE_WAYLAND +WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland \ + libwayland-egl.so:graphics/mesa-libs \ + libxkbcommon.so:x11/libxkbcommon +WAYLAND_USES= kde:5 pkgconfig +WAYLAND_USE= KDE=ecm +WAYLAND_USE_OFF= XORG=x11,xcursor,xinerama,xrandr,xxf86vm post-patch: @${REINPLACE_CMD} -e 's|lib$${LIB_SUFFIX}/pkgconfig|libdata/pkgconfig|' \ Added: head/graphics/glfw/files/patch-src_wl__init.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/glfw/files/patch-src_wl__init.c Wed Mar 28 18:47:51 2018 (r465837) @@ -0,0 +1,11 @@ +--- src/wl_init.c.orig 2018-03-28 18:36:50 UTC ++++ src/wl_init.c +@@ -26,7 +26,7 @@ + + #include "internal.h" + +-#include ++#include + #include + #include + #include