mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-02-07 17:29:52 +00:00
c16def7032
* Switch: it builds * Switch: Use udev to finalize usb gadget to save from systemd looping service restart until cable connected. * Switch: Update kernel stuff again * Switch: Downgrade Alsa packages to version in 4.x tree * Joycond: Update Switch version * Switch: Minor fixes * LibreELEC: Fix a few broken files from upstream pull * Switch: Fix LibreELEC build. * Switch: Update bootloader stuff * L4T: FFMPEG: Add support for nvv4l2 decoder/encoder * FFMPEG: Add back encoder support for game recording in retroarch * FFMPEG: revert a few changes, and add support for vulkan.
40 lines
974 B
Makefile
40 lines
974 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
|
|
PKG_NAME="x11"
|
|
PKG_VERSION=""
|
|
PKG_LICENSE="OSS"
|
|
PKG_SITE="http://www.X.org"
|
|
PKG_URL=""
|
|
PKG_DEPENDS_TARGET="toolchain xorg-server"
|
|
PKG_SECTION="virtual"
|
|
PKG_LONGDESC="X11 is the Windowing system"
|
|
|
|
# Additional packages we need for using xorg-server:
|
|
# Fonts
|
|
PKG_DEPENDS_TARGET+=" encodings font-xfree86-type1 font-bitstream-type1 font-misc-misc"
|
|
|
|
# Server
|
|
PKG_DEPENDS_TARGET+=" xkeyboard-config xkbcomp"
|
|
|
|
# Tools
|
|
PKG_DEPENDS_TARGET+=" xrandr setxkbmap"
|
|
|
|
if [ -n "${WINDOWMANAGER}" -a "${WINDOWMANAGER}" != "no" ]; then
|
|
PKG_DEPENDS_TARGET+=" ${WINDOWMANAGER}"
|
|
fi
|
|
|
|
get_graphicdrivers
|
|
|
|
# Drivers
|
|
if [ -n "${LIBINPUT}" ]; then
|
|
PKG_DEPENDS_TARGET+=" xf86-input-libinput"
|
|
else
|
|
PKG_DEPENDS_TARGET+=" xf86-input-evdev xf86-input-synaptics"
|
|
fi
|
|
if [ ! ${PROJECT} = "L4T" ]; then
|
|
for drv in ${XORG_DRIVERS}; do
|
|
PKG_DEPENDS_TARGET+=" xf86-video-${drv}"
|
|
done
|
|
fi
|