Date: Wed, 20 Jan 2021 05:37:25 +0000 (UTC) From: Guangyuan Yang <ygy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r562110 - head/x11/sprop Message-ID: <202101200537.10K5bPaO004731@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ygy (doc committer) Date: Wed Jan 20 05:37:25 2021 New Revision: 562110 URL: https://svnweb.freebsd.org/changeset/ports/562110 Log: new port: x11/sprop: Simple X property utility Submitted by: kfv@irbug.org Approved by: lwhsu Differential Revision: https://reviews.freebsd.org/D28173 Added: head/x11/sprop/ head/x11/sprop/Makefile (contents, props changed) head/x11/sprop/distinfo (contents, props changed) head/x11/sprop/pkg-descr (contents, props changed) Added: head/x11/sprop/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sprop/Makefile Wed Jan 20 05:37:25 2021 (r562110) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= sprop +PORTVERSION= 0.1 +CATEGORIES= x11 +MASTER_SITES= https://dl.suckless.org/tools/ + +MAINTAINER= kfv@kfv.io +COMMENT= Simple X property utility + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= xorg +USE_XORG= x11 + +MAKE_ARGS= PREFIX="${PREFIX}" X11LIB="${LOCALBASE}/lib" \ + X11INC="${LOCALBASE}/include" CC="${CC}" +PLIST_FILES= bin/${PORTNAME} share/man/man1/${PORTNAME}.1.gz + +.include <bsd.port.mk> Added: head/x11/sprop/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sprop/distinfo Wed Jan 20 05:37:25 2021 (r562110) @@ -0,0 +1,3 @@ +TIMESTAMP = 1610693399 +SHA256 (sprop-0.1.tar.gz) = c1b786d9fbd81a57addd7e21a34c5a121543cbf9f38fe309e7b452ba94b69ab5 +SIZE (sprop-0.1.tar.gz) = 2750 Added: head/x11/sprop/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/sprop/pkg-descr Wed Jan 20 05:37:25 2021 (r562110) @@ -0,0 +1,8 @@ +sprop is a simple X property utility. Less is more. + +The sprop utility prints the value of the property atom of the window with the +given xid, or alternatively sets it to value if given. It doesn't have the same +arguments as xprop and can only interact with atoms which are strings. +An example of using this utility could be replacing xprop in surf's config.h. + +WWW: https://tools.suckless.org/x/sprop
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101200537.10K5bPaO004731>