From owner-svn-ports-all@freebsd.org Thu Nov 19 05:16:27 2020 Return-Path: Delivered-To: svn-ports-all@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 F231C47FF02; Thu, 19 Nov 2020 05:16:27 +0000 (UTC) (envelope-from jbeich@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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4Cc7FR6VGhz3jm8; Thu, 19 Nov 2020 05:16:27 +0000 (UTC) (envelope-from jbeich@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 D1D071EC80; Thu, 19 Nov 2020 05:16:27 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AJ5GRmR061554; Thu, 19 Nov 2020 05:16:27 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AJ5GR3h061550; Thu, 19 Nov 2020 05:16:27 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202011190516.0AJ5GR3h061550@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 19 Nov 2020 05:16:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r555687 - in head/x11-clocks: . wlclock X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/x11-clocks: . wlclock X-SVN-Commit-Revision: 555687 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.34 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: Thu, 19 Nov 2020 05:16:28 -0000 Author: jbeich Date: Thu Nov 19 05:16:26 2020 New Revision: 555687 URL: https://svnweb.freebsd.org/changeset/ports/555687 Log: x11-clocks/wlclock: add new port wlclock is inspired by xclock and the default configuration has been chosen to mimic it. However unlike xclock, wlclock is not a regular window but a desktop-widget. A Wayland compositor must implement the Layer-Shell and XDG-Output for wlclock to work. https://git.sr.ht/~leon_plickat/wlclock Added: head/x11-clocks/wlclock/ head/x11-clocks/wlclock/Makefile (contents, props changed) head/x11-clocks/wlclock/distinfo (contents, props changed) head/x11-clocks/wlclock/pkg-descr (contents, props changed) Modified: head/x11-clocks/Makefile (contents, props changed) Modified: head/x11-clocks/Makefile ============================================================================== --- head/x11-clocks/Makefile Thu Nov 19 03:49:08 2020 (r555686) +++ head/x11-clocks/Makefile Thu Nov 19 05:16:26 2020 (r555687) @@ -30,6 +30,7 @@ SUBDIR += rclock SUBDIR += t3d SUBDIR += tclock + SUBDIR += wlclock SUBDIR += wmbday SUBDIR += wmbinclock SUBDIR += wmblueclock Added: head/x11-clocks/wlclock/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-clocks/wlclock/Makefile Thu Nov 19 05:16:26 2020 (r555687) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= wlclock +DISTVERSIONPREFIX= v +DISTVERSION= 1.0.0 +CATEGORIES= x11-clocks +MASTER_SITES= https://git.sr.ht/~leon_plickat/${PORTNAME}/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Digital analog clock for Wayland desktops + +LICENSE= GPLv3 + +BUILD_DEPENDS= wayland-protocols>0:graphics/wayland-protocols +LIB_DEPENDS= libwayland-client.so:graphics/wayland + +USES= compiler:c11 gnome meson pkgconfig +USE_GNOME= cairo +PLIST_FILES= bin/${PORTNAME} + +OPTIONS_DEFINE= EPOLL MANPAGES +OPTIONS_DEFAULT=EPOLL MANPAGES + +EPOLL_DESC= Handle signals via epoll-shim +EPOLL_LIB_DEPENDS= libepoll-shim.so:devel/libepoll-shim +EPOLL_MESON_ENABLED= handle-signals +EPOLL_BROKEN_OFF= https://lists.sr.ht/~leon_plickat/public-inbox/%3Cd00a-aqan-wny%40FreeBSD.org%3E + +MANPAGES_BUILD_DEPENDS= scdoc:textproc/scdoc +MANPAGES_MESON_ENABLED= man-pages +MANPAGES_PLIST_FILES= man/man1/${PORTNAME}.1.gz + +.include Added: head/x11-clocks/wlclock/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-clocks/wlclock/distinfo Thu Nov 19 05:16:26 2020 (r555687) @@ -0,0 +1,3 @@ +TIMESTAMP = 1601422027 +SHA256 (wlclock-v1.0.0.tar.gz) = cdbc32eb1f68614a09e430eaa24578e4d58475ed8988871fce20a669898a48db +SIZE (wlclock-v1.0.0.tar.gz) = 33738 Added: head/x11-clocks/wlclock/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-clocks/wlclock/pkg-descr Thu Nov 19 05:16:26 2020 (r555687) @@ -0,0 +1,8 @@ +wlclock is inspired by xclock and the default configuration has been +chosen to mimic it. However unlike xclock, wlclock is not a regular +window but a desktop-widget. + +A Wayland compositor must implement the Layer-Shell and XDG-Output for +wlclock to work. + +WWW: https://git.sr.ht/~leon_plickat/wlclock