0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2025-03-01 01:01:24 +00:00
Ian Leonard e501e0c75a virtual: automated code cleanup
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
2021-01-19 19:34:20 +00:00

39 lines
934 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}" != "none" ]; 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
for drv in ${XORG_DRIVERS}; do
PKG_DEPENDS_TARGET+=" xf86-video-${drv}"
done