mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
09e756e0ae
Changes: https://github.com/Hjdskes/cage/releases/tag/v0.1.3 Reported by: GitHub (watch releases)
47 lines
1.3 KiB
Makefile
47 lines
1.3 KiB
Makefile
PORTNAME= cage
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.1.3
|
|
CATEGORIES= x11-wm
|
|
|
|
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
|
|
PATCHFILES+= 70ecdcb02ea0.patch:-p1 # https://github.com/Hjdskes/cage/pull/148
|
|
|
|
MAINTAINER= jbeich@FreeBSD.org
|
|
COMMENT= Wayland kiosk
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= evdev-proto>0:devel/evdev-proto \
|
|
wayland-protocols>=1.14:graphics/wayland-protocols \
|
|
wlroots>=0.13.0:x11-toolkits/wlroots
|
|
LIB_DEPENDS= libwayland-server.so:graphics/wayland \
|
|
libwlroots.so:x11-toolkits/wlroots \
|
|
libxkbcommon.so:x11/libxkbcommon
|
|
|
|
USES= compiler:c11 meson pkgconfig xorg
|
|
USE_GITHUB= yes
|
|
USE_XORG= pixman
|
|
GH_ACCOUNT= Hjdskes
|
|
PLIST_FILES= "${MAYBE_SUID}bin/${PORTNAME}"
|
|
|
|
OPTIONS_DEFINE= MANPAGES SUID X11
|
|
OPTIONS_DEFAULT=MANPAGES SUID X11
|
|
|
|
MANPAGES_BUILD_DEPENDS= scdoc>=1.9.2:textproc/scdoc
|
|
MANPAGES_MESON_ENABLED= man-pages
|
|
MANPAGES_PLIST_FILES= man/man1/${PORTNAME}.1.gz
|
|
|
|
SUID_DESC= setuid bit on "${PORTNAME}" binary (to claim DRM without seatd/console-kit-daemon)
|
|
SUID_VARS= MAYBE_SUID="@(,,4755) "
|
|
|
|
X11_MESON_TRUE= xwayland
|
|
|
|
post-patch:
|
|
# Extract (snapshot) version from the port instead of meson.build
|
|
@${REINPLACE_CMD} -i .nogit -e 's/git.found()/false/' \
|
|
-e '/project_version/s/@0@/${DISTVERSIONFULL}/' \
|
|
${WRKSRC}/meson.build
|
|
|
|
.include <bsd.port.mk>
|