The Xwayland package is an Xorg server running on top of the wayland server. It has been separated from the main Xorg server package. It allows running X clients inside a wayland session.
This package is known to build and work properly using an LFS-11.2 platform.
Download (HTTP): https://www.x.org/pub/individual/xserver/xwayland-22.1.3.tar.xz
Download (FTP): ftp://ftp.x.org/pub/individual/xserver/xwayland-22.1.3.tar.xz
Download MD5 sum: 83849961283e8cea32be6740914822e5
Download size: 1.2 MB
Estimated disk space required: 65 MB (add 355 MB for tests)
Estimated build time: 0.3 SBU (with parallelism=4; add 1.0 SBU for tests, not including clone time)
libxcvt-0.1.2, Pixman-0.40.0, wayland-protocols-1.26, and Xorg Fonts (only font-util)
libepoxy-1.5.10, libtirpc-1.3.3, and Mesa-22.1.7
git-2.37.2 (to download packages needed for the tests), libgcrypt-1.10.1, Nettle-3.8.1, xmlto-0.0.28, Xorg Legacy Fonts (only bdftopcf, for building fonts required for the tests), rendercheck (for tests), and weston (for tests)
User Notes: https://wiki.linuxfromscratch.org/blfs/wiki/xwayland
Install xwayland by running the following commands:
sed -i '/install_man/,$d' meson.build && mkdir build && cd build && meson --prefix=$XORG_PREFIX \ -Dxkb_output_dir=/var/lib/xkb \ .. && ninja
Building the test framework needs some work. First, weston brings in several dependencies, but the number can be reduced by disabling unneeded features. The meson command for a stripped down build of weston is shown in Upstream continuous integration build.
Running the tests involves downloading two other frameworks, in addition to the mentioned optional dependencies:
mkdir tools &&
pushd tools &&
git clone https://gitlab.freedesktop.org/mesa/piglit.git --depth 1 &&
cat > piglit/piglit.conf << EOF &&
[xts]
path=$(pwd)/xts
EOF
git clone https://gitlab.freedesktop.org/xorg/test/xts --depth 1 &&
export DISPLAY=:22 &&
../hw/vfb/Xvfb $DISPLAY &
VFB_PID=$! &&
cd xts &&
CFLAGS=-fcommon ./autogen.sh &&
make &&
kill $VFB_PID &&
unset DISPLAY VFB_PID &&
popd
Then the tests can be run with:
XTEST_DIR=$(pwd)/tools/xts PIGLIT_DIR=$(pwd)/tools/piglit ninja test
Now, as the root
user:
ninja install && mkdir -pv /etc/X11/xorg.conf.d
If Xorg-Server-21.1.4 is not installed and
you do not plan to install it later, you can install Xvfb from this package. As the
root
user:
install -vm755 hw/vfb/Xvfb /usr/bin
sed -i '/install_man/,$d' meson.build: Prevents installing a manual page for Xserver, which is not part of this package.
mkdir -pv /etc/X11/xorg.conf.d: This directory is needed to put configuration files for Xwayland. This command ensures that it exists, as some applications might use it without first creating it.