From owner-svn-ports-head@freebsd.org Mon Sep 30 22:03:29 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E4C5D133757; Mon, 30 Sep 2019 22:03:29 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46hxHP5VGbz4Vb1; Mon, 30 Sep 2019 22:03:29 +0000 (UTC) (envelope-from kwm@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 9FE7694EE; Mon, 30 Sep 2019 22:03:29 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x8UM3TTa038086; Mon, 30 Sep 2019 22:03:29 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x8UM3SbA038081; Mon, 30 Sep 2019 22:03:28 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201909302203.x8UM3SbA038081@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Mon, 30 Sep 2019 22:03:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513423 - in head/www: . libwpe X-SVN-Group: ports-head X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: in head/www: . libwpe X-SVN-Commit-Revision: 513423 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Sep 2019 22:03:30 -0000 Author: kwm Date: Mon Sep 30 22:03:28 2019 New Revision: 513423 URL: https://svnweb.freebsd.org/changeset/ports/513423 Log: Add libwpe a general-purpose library for WPE WebKit A WebKit port optimized for embedded devices WPE WebKit allows embedders to create simple and performant systems based on Web platform technologies. It is designed with hardware acceleration in mind, leveraging common 3D graphics APIs for best performance. It is required by webkitgtk 2.6 which is currently being tested. Obtained from: gnome development repo Added: head/www/libwpe/ head/www/libwpe/Makefile (contents, props changed) head/www/libwpe/distinfo (contents, props changed) head/www/libwpe/pkg-descr (contents, props changed) head/www/libwpe/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Mon Sep 30 21:45:46 2019 (r513422) +++ head/www/Makefile Mon Sep 30 22:03:28 2019 (r513423) @@ -309,6 +309,7 @@ SUBDIR += libmicrohttpd SUBDIR += libnghttp2 SUBDIR += libresonic-standalone + SUBDIR += libwpe SUBDIR += libwww SUBDIR += lightsquid SUBDIR += lighttpd Added: head/www/libwpe/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/libwpe/Makefile Mon Sep 30 22:03:28 2019 (r513423) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= libwpe +PORTVERSION= 1.4.0 +CATEGORIES= www +MASTER_SITES= https://wpewebkit.org/releases/ + +MAINTAINER= gnome@FreeBSD.org +COMMENT= General-purpose library for WPE WebKit + +LICENSE= BSD2CLAUSE + +LIB_DEPENDS= libxkbcommon.so:x11/libxkbcommon + +USES= cmake pkgconfig localbase:ldflags gl tar:xz + +USE_GL= egl +USE_LDCONFIG= yes + +.include Added: head/www/libwpe/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/libwpe/distinfo Mon Sep 30 22:03:28 2019 (r513423) @@ -0,0 +1,3 @@ +TIMESTAMP = 1569880833 +SHA256 (libwpe-1.4.0.tar.xz) = e2d3494fc33fe946ad917fd6a3abd127462b91bba62ef8b35507e92f8ede4188 +SIZE (libwpe-1.4.0.tar.xz) = 49572 Added: head/www/libwpe/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/libwpe/pkg-descr Mon Sep 30 22:03:28 2019 (r513423) @@ -0,0 +1,7 @@ +A WebKit port optimized for embedded devices + +WPE WebKit allows embedders to create simple and performant systems based +on Web platform technologies. It is designed with hardware acceleration in +mind, leveraging common 3D graphics APIs for best performance. + +WWW: https://wpewebkit.org/releases Added: head/www/libwpe/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/libwpe/pkg-plist Mon Sep 30 22:03:28 2019 (r513423) @@ -0,0 +1,16 @@ +include/wpe-1.0/wpe/export.h +include/wpe-1.0/wpe/input.h +include/wpe-1.0/wpe/keysyms.h +include/wpe-1.0/wpe/loader.h +include/wpe-1.0/wpe/pasteboard.h +include/wpe-1.0/wpe/renderer-backend-egl.h +include/wpe-1.0/wpe/renderer-host.h +include/wpe-1.0/wpe/version-deprecated.h +include/wpe-1.0/wpe/version.h +include/wpe-1.0/wpe/view-backend.h +include/wpe-1.0/wpe/wpe-egl.h +include/wpe-1.0/wpe/wpe.h +lib/libwpe-1.0.so +lib/libwpe-1.0.so.1 +lib/libwpe-1.0.so.1.2.2 +libdata/pkgconfig/wpe-1.0.pc