Date: Thu, 21 Dec 2017 18:12:11 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456936 - in head/sysutils: . twmn Message-ID: <201712211812.vBLICB7S070070@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Thu Dec 21 18:12:11 2017 New Revision: 456936 URL: https://svnweb.freebsd.org/changeset/ports/456936 Log: New port: sysutils/twmn: Notification system for tiling window managers There were some questions about the version. The source code has 1.2 in it, but it hasn't been tagged on github. So I left it as g20171216. PR: 224470 Submitted by: Dmitri Goutnik <dg@syrec.org> Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D13563 Added: head/sysutils/twmn/ head/sysutils/twmn/Makefile (contents, props changed) head/sysutils/twmn/distinfo (contents, props changed) head/sysutils/twmn/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Thu Dec 21 17:42:12 2017 (r456935) +++ head/sysutils/Makefile Thu Dec 21 18:12:11 2017 (r456936) @@ -1200,6 +1200,7 @@ SUBDIR += trueos-libqt5 SUBDIR += tuptime SUBDIR += tw_cli + SUBDIR += twmn SUBDIR += tzdialog SUBDIR += u-boot-a13-olinuxino SUBDIR += u-boot-a64-olinuxino Added: head/sysutils/twmn/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/twmn/Makefile Thu Dec 21 18:12:11 2017 (r456936) @@ -0,0 +1,40 @@ +# $FreeBSD$ + +PORTNAME= twmn +PORTVERSION= g20171216 +CATEGORIES= sysutils + +MAINTAINER= dg@syrec.org +COMMENT= Notification system for tiling window managers + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libboost_system.so:devel/boost-libs + +USES= qmake +USE_GITHUB= yes +GH_ACCOUNT= sboli +GH_TAGNAME= 5b92ac5 +USE_QT5= core dbus gui network widgets x11extras buildtools_build +LDFLAGS+= -Wl,--as-needed # see bug#224488 + +PORTDOCS= README.md +PORTEXAMPLES= * + +PLIST_FILES= bin/twmnc bin/twmnd + +OPTIONS_DEFINE= DOCS EXAMPLES + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/twmnc ${STAGEDIR}${PREFIX}/bin/twmnd + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_MAN} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +post-install-EXAMPLES-on: + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} + +.include <bsd.port.mk> Added: head/sysutils/twmn/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/twmn/distinfo Thu Dec 21 18:12:11 2017 (r456936) @@ -0,0 +1,3 @@ +TIMESTAMP = 1513803467 +SHA256 (sboli-twmn-g20171216-5b92ac5_GH0.tar.gz) = bd9793942919de021e2c88f69795a2fde11441c5e9153b89a1f96ad1009774cb +SIZE (sboli-twmn-g20171216-5b92ac5_GH0.tar.gz) = 75071 Added: head/sysutils/twmn/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/twmn/pkg-descr Thu Dec 21 18:12:11 2017 (r456936) @@ -0,0 +1,15 @@ +twmn is a notification system for tiling window managers. It consists of the +two programs: + +twmnc: command line tool to send notifications to twmnd. You can also use +notify-send for a similar purpose, but twmnc is more powerful. See +twmnc --help for more information. + +twmnd: daemon listening to notification requests and showing them one after +another. Configure it at ~/.config/twmn/twmn.conf. The file is generated the +first time twmnd is launched. + +Notifications are shown in a one-line bar called the notification slide. +They can be navigated through and activated with shortcuts. + +WWW: https://github.com/sboli/twmn
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712211812.vBLICB7S070070>