pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/wayland/xwayland
Module Name: pkgsrc
Committed By: kikadf
Date: Mon Apr 13 16:52:50 UTC 2026
Added Files:
pkgsrc/wayland/xwayland: DESCR Makefile PLIST buildlink3.mk distinfo
Log Message:
xwayland: move and rename x11/modular-xorg-xwayland package
update to 24.1.9
The modular-xorg-xwayland package is not used by any pkgsrc package,
and it is not usable on its own. Therefore, instead of following
the usual move and rename steps, it has been removed, and a new
xwayland package has been added.
This change is justified by the fact that xwayland can be built
against native X11, making it usable with Wayland compositors.
@kikadf
To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 pkgsrc/wayland/xwayland/DESCR \
pkgsrc/wayland/xwayland/Makefile pkgsrc/wayland/xwayland/PLIST \
pkgsrc/wayland/xwayland/buildlink3.mk pkgsrc/wayland/xwayland/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Added files:
Index: pkgsrc/wayland/xwayland/DESCR
diff -u /dev/null pkgsrc/wayland/xwayland/DESCR:1.1
--- /dev/null Mon Apr 13 16:52:50 2026
+++ pkgsrc/wayland/xwayland/DESCR Mon Apr 13 16:52:50 2026
@@ -0,0 +1,8 @@
+XWayland is a fully fledged X server implementation that acts as a proxy
+between X11 clients and a Wayland compositor.
+
+It runs as a specialized Wayland client, while optionally using a set of
+XWayland specific Wayland protocols for implementing certain functionality.
+
+The Wayland compositor acts both as the Wayland display server XWayland
+connects to, as well as the window manager.
Index: pkgsrc/wayland/xwayland/Makefile
diff -u /dev/null pkgsrc/wayland/xwayland/Makefile:1.1
--- /dev/null Mon Apr 13 16:52:50 2026
+++ pkgsrc/wayland/xwayland/Makefile Mon Apr 13 16:52:50 2026
@@ -0,0 +1,55 @@
+# $NetBSD: Makefile,v 1.1 2026/04/13 16:52:50 kikadf Exp $
+
+DISTNAME= xwayland-24.1.9
+CATEGORIES= wayland
+MASTER_SITES= ${MASTER_SITE_XORG:=xserver/}
+EXTRACT_SUFX= .tar.xz
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= https://xorg.freedesktop.org/
+COMMENT= Server for running X clients under Wayland from modular X.org
+LICENSE= mit AND modified-bsd AND x11 # with no-advertising clause
+
+USE_TOOLS+= pkg-config
+
+.include "../../mk/bsd.prefs.mk"
+
+.if ${OPSYS} == "NetBSD"
+MESON_ARGS+= -Dsecure-rpc=false
+. if ${OPSYS_VERSION} < 100000
+CPPFLAGS+= -D_OPENBSD_SOURCE # reallocarray
+. endif
+.endif
+
+.include "../../devel/wayland/platform.mk"
+
+.if empty(PLATFORM_SUPPORTS_WAYLAND:M[Yy][Ee][Ss])
+PKG_SKIP_REASON+= "Platform does not support Wayland"
+.endif
+
+post-install:
+ ${RM} ${DESTDIR}${PREFIX}/lib/xorg/protocol.txt
+ ${RM} ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/Xserver.1
+ if [ -f ${DESTDIR}${PREFIX}/share/doc/xorg-server/Xserver-DTrace.xml ]; then \
+ ${RM} ${DESTDIR}${PREFIX}/share/doc/xorg-server/Xserver-DTrace.xml; \
+ fi
+
+.include "../../devel/input-headers/buildlink3.mk"
+.include "../../devel/wayland/buildlink3.mk"
+.include "../../devel/wayland-protocols/buildlink3.mk"
+.include "../../x11/xorgproto/buildlink3.mk"
+.include "../../graphics/libepoxy/buildlink3.mk"
+.if ${X11_TYPE} == "modular"
+.include "../../x11/libXfont2/buildlink3.mk"
+.else
+.include "../../graphics/freetype2/buildlink3.mk"
+.endif
+.include "../../x11/libxcvt/buildlink3.mk"
+.include "../../x11/libdrm/buildlink3.mk"
+.include "../../x11/libei/buildlink3.mk"
+.include "../../x11/xkbcomp/buildlink3.mk"
+.include "../../x11/libxkbfile/buildlink3.mk"
+.include "../../x11/pixman/buildlink3.mk"
+.include "../../x11/xtrans/buildlink3.mk"
+.include "../../devel/meson/build.mk"
+.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/wayland/xwayland/PLIST
diff -u /dev/null pkgsrc/wayland/xwayland/PLIST:1.1
--- /dev/null Mon Apr 13 16:52:50 2026
+++ pkgsrc/wayland/xwayland/PLIST Mon Apr 13 16:52:50 2026
@@ -0,0 +1,5 @@
+@comment $NetBSD: PLIST,v 1.1 2026/04/13 16:52:50 kikadf Exp $
+bin/Xwayland
+lib/pkgconfig/xwayland.pc
+man/man1/Xwayland.1
+share/applications/org.freedesktop.Xwayland.desktop
Index: pkgsrc/wayland/xwayland/buildlink3.mk
diff -u /dev/null pkgsrc/wayland/xwayland/buildlink3.mk:1.1
--- /dev/null Mon Apr 13 16:52:50 2026
+++ pkgsrc/wayland/xwayland/buildlink3.mk Mon Apr 13 16:52:50 2026
@@ -0,0 +1,13 @@
+# $NetBSD: buildlink3.mk,v 1.1 2026/04/13 16:52:50 kikadf Exp $
+
+BUILDLINK_TREE+= xwayland
+
+.if !defined(XWAYLAND_BUILDLINK3_MK)
+XWAYLAND_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.xwayland+= xwayland>=24.1.9
+BUILDLINK_PKGSRCDIR.xwayland?= ../../wayland/xwayland
+
+.endif # XWAYLAND_BUILDLINK3_MK
+
+BUILDLINK_TREE+= -xwayland
Index: pkgsrc/wayland/xwayland/distinfo
diff -u /dev/null pkgsrc/wayland/xwayland/distinfo:1.1
--- /dev/null Mon Apr 13 16:52:50 2026
+++ pkgsrc/wayland/xwayland/distinfo Mon Apr 13 16:52:50 2026
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1 2026/04/13 16:52:50 kikadf Exp $
+
+BLAKE2s (xwayland-24.1.9.tar.xz) = 9ef10ae97beac77d8681f8d926c6d088fae122f3e4767604ddcb5bb85d816add
+SHA512 (xwayland-24.1.9.tar.xz) = 7438a572651dc77c1fd749879abccdc9a245c7b75143668d5561a8e99d41063f042a8eb3f9b931a2a12be1fc3cb9d197eee6794d0702a19e56c20f55acb35a26
+Size (xwayland-24.1.9.tar.xz) = 1304268 bytes
Home |
Main Index |
Thread Index |
Old Index