mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
a8d9df7e30
Bump portrevision on everything with a build dependency on devel/evdev-proto, to chace the update of evdev-proto in r550442.
50 lines
1.3 KiB
Makefile
50 lines
1.3 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= cage
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.1.2.1
|
|
PORTREVISION= 1
|
|
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.11.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 (required for DRM session)
|
|
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>
|