mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-19 08:13:21 +00:00
59cefcc21c
Lightweight configurable overlay (volume/backlight/ progress/anything) bar for the X Window System (and Wayland compositors with XWayland). Each time a new value is read on the standard input, it is displayed as a tv-like bar over other windows. It then vanishes after a configurable amount of time. A value followed by a bang '!' is displayed using an alternate color to account for special states (e.g. muted audio). There is also support for overflows (when the value exceeds the maximum). WWW: https://github.com/florentc/xob PR: 248231 Submitted by: Lewis Cook <vulcan@wired.sh>
34 lines
666 B
Makefile
34 lines
666 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= xob
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.2
|
|
CATEGORIES= x11
|
|
|
|
MAINTAINER= vulcan@wired.sh
|
|
COMMENT= Lightweight overlay volume (or anything) bar for the X Window System
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libconfig.so:devel/libconfig
|
|
|
|
USES= compiler:c11 gmake pkgconfig xorg
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= florentc
|
|
USE_XORG= x11
|
|
|
|
PORTDOCS= CHANGELOG.md CONTRIBUTING.md README.md
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
PLIST_FILES= ${ETCDIR}/styles.cfg \
|
|
bin/xob \
|
|
share/man/man1/xob.1.gz
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|