mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
4fbe6a04e1
Changes: 0217cc6e0...6ad6517a7
69 lines
2.1 KiB
Makefile
69 lines
2.1 KiB
Makefile
PORTNAME= xwayland
|
|
DISTVERSIONPREFIX= xorg-server-
|
|
DISTVERSION= 21.0.99.1-171
|
|
DISTVERSIONSUFFIX= -g6ad6517a7
|
|
CATEGORIES= x11-servers
|
|
PKGNAMESUFFIX= -devel
|
|
|
|
PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
|
|
PATCHFILES+= 42e34498f87a.patch:-p1 # https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/432
|
|
PATCHFILES+= 0d56c27582a2.patch:-p1 # https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/432
|
|
PATCHFILES+= 1f7b28547011.patch:-p1 # https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/432
|
|
|
|
MAINTAINER= jbeich@FreeBSD.org
|
|
COMMENT= X11 server as Wayland client (development snapshot)
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= evdev-proto>0:devel/evdev-proto \
|
|
${LOCALBASE}/include/GL/internal/dri_interface.h:graphics/mesa-dri \
|
|
wayland-protocols>=1.18:graphics/wayland-protocols
|
|
LIB_DEPENDS= libdrm.so:graphics/libdrm \
|
|
libepoxy.so:graphics/libepoxy \
|
|
libwayland-client.so:graphics/wayland \
|
|
libxcvt.so:x11/libxcvt
|
|
RUN_DEPENDS= xkbcomp:x11/xkbcomp \
|
|
xkeyboard-config>0:x11/xkeyboard-config
|
|
|
|
CONFLICTS_INSTALL= ${PORTNAME}
|
|
|
|
USES= compiler:c11 gl meson pkgconfig xorg
|
|
USE_GITHUB= yes
|
|
USE_GL= gbm gl
|
|
USE_XORG= pixman xau xdmcp xfont2 xkbfile xshmfence xtrans
|
|
GH_ACCOUNT= freedesktop
|
|
GH_PROJECT= xorg-xserver
|
|
MESON_ARGS= -D${PORTNAME}=true \
|
|
-Dxorg=false \
|
|
-Dxnest=false \
|
|
-Dxvfb=false \
|
|
-Dudev=false \
|
|
-Dudev_kms=false \
|
|
-Ddefault_font_path="${DEFAULT_FONTPATH_LIST:ts,}"
|
|
PLIST_FILES= bin/Xwayland \
|
|
"@comment lib/xorg/protocol.txt" \
|
|
libdata/pkgconfig/xwayland.pc \
|
|
"@comment man/man1/Xserver.1.gz" \
|
|
man/man1/Xwayland.1.gz
|
|
|
|
# Keep in sync with xorg-server
|
|
FONTPATH_ROOT?= ${LOCALBASE}/share/fonts
|
|
FONTPATHD?= ${PREFIX}/etc/X11/fontpath.d
|
|
DEFAULT_FONTPATH_LIST= \
|
|
${FONTPATH_ROOT}/misc/ \
|
|
${FONTPATH_ROOT}/TTF/ \
|
|
${FONTPATH_ROOT}/OTF/ \
|
|
${FONTPATH_ROOT}/Type1/ \
|
|
${FONTPATH_ROOT}/100dpi/ \
|
|
${FONTPATH_ROOT}/75dpi/ \
|
|
catalogue:${FONTPATHD}
|
|
|
|
OPTIONS_DEFINE= NVIDIA
|
|
|
|
NVIDIA_DESC= EGLStream support for glamor on Xwayland
|
|
NVIDIA_BUILD_DEPENDS= egl-wayland>0:graphics/egl-wayland
|
|
NVIDIA_MESON_TRUE= xwayland_eglstream
|
|
|
|
.include <bsd.port.mk>
|