mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
57 lines
1.5 KiB
Makefile
57 lines
1.5 KiB
Makefile
PORTNAME= wayvnc
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.6.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= net wayland
|
|
|
|
MAINTAINER= jbeich@FreeBSD.org
|
|
COMMENT= VNC server for wlroots-based compositors
|
|
WWW= https://github.com/any1/wayvnc
|
|
|
|
LICENSE= ISCL
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= evdev-proto>0:devel/evdev-proto
|
|
LIB_DEPENDS= libaml.so:devel/aml \
|
|
libjansson.so:devel/jansson \
|
|
libdrm.so:graphics/libdrm \
|
|
libwayland-client.so:graphics/wayland \
|
|
libneatvnc.so:net/neatvnc \
|
|
libxkbcommon.so:x11/libxkbcommon
|
|
|
|
USES= compiler:c11 meson pkgconfig xorg
|
|
USE_GITHUB= yes
|
|
USE_XORG= pixman
|
|
USE_LDCONFIG= yes
|
|
GH_ACCOUNT= any1
|
|
PLIST_FILES= bin/${PORTNAME} \
|
|
bin/${PORTNAME}ctl
|
|
MESON_ARGS= -Dtests=false
|
|
|
|
OPTIONS_DEFINE= MANPAGES OPENGL
|
|
OPTIONS_DEFAULT=MANPAGES OPENGL
|
|
|
|
MANPAGES_BUILD_DEPENDS= scdoc:textproc/scdoc
|
|
MANPAGES_MESON_ENABLED= man-pages
|
|
MANPAGES_PLIST_FILES= man/man1/${PORTNAME}.1.gz \
|
|
man/man1/${PORTNAME}ctl.1.gz
|
|
|
|
OPENGL_USES= gl
|
|
OPENGL_USE= GL=gbm
|
|
OPENGL_MESON_ENABLED= screencopy-dmabuf
|
|
|
|
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
|
|
|
|
pre-test:
|
|
@if [ ! -e ${WRKDIR}/.meson_build_tests ]; then \
|
|
${RM} ${CONFIGURE_COOKIE} ${BUILD_COOKIE}; \
|
|
${MAKE} -C${.CURDIR} build MESON_ARGS="${MESON_ARGS} --reconfigure -Dtests=true"; \
|
|
${TOUCH} ${WRKDIR}/.meson_build_tests; \
|
|
fi
|
|
|
|
.include <bsd.port.mk>
|