From owner-svn-ports-all@freebsd.org Sun Mar 25 15:33: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 CA83EF50ADF; Sun, 25 Mar 2018 15:33: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 79D2169F83; Sun, 25 Mar 2018 15:33: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 74D781FF4F; Sun, 25 Mar 2018 15:33: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 w2PFXqGX021381; Sun, 25 Mar 2018 15:33:52 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2PFXp2F021376; Sun, 25 Mar 2018 15:33:51 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201803251533.w2PFXp2F021376@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 25 Mar 2018 15:33:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465523 - in head/graphics: . waylandpp X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/graphics: . waylandpp X-SVN-Commit-Revision: 465523 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: Sun, 25 Mar 2018 15:33:53 -0000 Author: tobik Date: Sun Mar 25 15:33:51 2018 New Revision: 465523 URL: https://svnweb.freebsd.org/changeset/ports/465523 Log: New port: graphics/waylandpp Wayland is an object oriented display protocol, which features request and events. Requests can be seen as method calls on certain objects, whereas events can be seen as signals of an object. This makes the Wayland protocol a perfect candidate for a C++ binding. The goal of this library is to create such a C++ binding for Wayland using the most modern C++ technology currently available, providing an easy to use C++ API to Wayland. WWW: https://github.com/NilsBrause/waylandpp This port is ignored by default because it requires a build of graphics/mesa-libs with WAYLAND=on which is off by default. Added: head/graphics/waylandpp/ head/graphics/waylandpp/Makefile (contents, props changed) head/graphics/waylandpp/distinfo (contents, props changed) head/graphics/waylandpp/pkg-descr (contents, props changed) head/graphics/waylandpp/pkg-plist (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Mar 25 15:28:36 2018 (r465522) +++ head/graphics/Makefile Sun Mar 25 15:33:51 2018 (r465523) @@ -1079,6 +1079,7 @@ SUBDIR += waffle SUBDIR += waifu2x-converter-cpp SUBDIR += wayland + SUBDIR += waylandpp SUBDIR += wayland-protocols SUBDIR += webp SUBDIR += wings Added: head/graphics/waylandpp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/waylandpp/Makefile Sun Mar 25 15:33:51 2018 (r465523) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= waylandpp +DISTVERSION= 0.2.2 +CATEGORIES= graphics + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Wayland C++ bindings + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake:outsource localbase pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= NilsBrause +USE_GL= egl + +CMAKE_OFF= BUILD_DOCUMENTATION BUILD_EXAMPLES + +OPTIONS_DEFINE= WAYLAND + +WAYLAND_DESC= Requires graphics/mesa-libs with WAYLAND on + +WAYLAND_IGNORE_OFF= Cannot be built without Wayland support +WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland \ + libwayland-egl.so:graphics/mesa-libs + +.include Added: head/graphics/waylandpp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/waylandpp/distinfo Sun Mar 25 15:33:51 2018 (r465523) @@ -0,0 +1,3 @@ +TIMESTAMP = 1516380478 +SHA256 (NilsBrause-waylandpp-0.2.2_GH0.tar.gz) = e0c9012f3a5fb69922d5ecabdfbef739f1e0db3e68048b3f63537468ad5c4acd +SIZE (NilsBrause-waylandpp-0.2.2_GH0.tar.gz) = 180313 Added: head/graphics/waylandpp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/waylandpp/pkg-descr Sun Mar 25 15:33:51 2018 (r465523) @@ -0,0 +1,10 @@ +Wayland is an object oriented display protocol, which features request +and events. Requests can be seen as method calls on certain objects, +whereas events can be seen as signals of an object. This makes the +Wayland protocol a perfect candidate for a C++ binding. + +The goal of this library is to create such a C++ binding for Wayland +using the most modern C++ technology currently available, providing an +easy to use C++ API to Wayland. + +WWW: https://github.com/NilsBrause/waylandpp Added: head/graphics/waylandpp/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/waylandpp/pkg-plist Sun Mar 25 15:33:51 2018 (r465523) @@ -0,0 +1,25 @@ +bin/wayland-scanner++ +include/wayland-client-protocol-extra.hpp +include/wayland-client-protocol.hpp +include/wayland-client.hpp +include/wayland-cursor.hpp +include/wayland-egl.hpp +include/wayland-util.hpp +include/wayland-version.hpp +lib/libwayland-client++.so +lib/libwayland-client++.so.0.2 +lib/libwayland-client-extra++.so +lib/libwayland-client-extra++.so.0.2 +lib/libwayland-cursor++.so +lib/libwayland-cursor++.so.0.2 +lib/libwayland-egl++.so +lib/libwayland-egl++.so.0.2 +libdata/pkgconfig/wayland-client++.pc +libdata/pkgconfig/wayland-client-extra++.pc +libdata/pkgconfig/wayland-cursor++.pc +libdata/pkgconfig/wayland-egl++.pc +libdata/pkgconfig/wayland-scanner++.pc +%%DATADIR%%/protocols/presentation-time.xml +%%DATADIR%%/protocols/viewporter.xml +%%DATADIR%%/protocols/wayland.xml +%%DATADIR%%/protocols/xdg-shell.xml