2018-07-16 20:45:36 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
2011-01-09 18:46:16 +01:00
|
|
|
|
2010-11-14 16:53:50 +01:00
|
|
|
PKG_NAME="debug"
|
|
|
|
|
PKG_VERSION=""
|
|
|
|
|
PKG_LICENSE="GPL"
|
|
|
|
|
PKG_SITE="http://www.openelec.tv"
|
|
|
|
|
PKG_URL=""
|
2023-01-28 13:52:53 +01:00
|
|
|
PKG_DEPENDS_TARGET="toolchain gdb edid-decode memtester strace kmsxx"
|
2013-07-21 22:15:09 +02:00
|
|
|
PKG_SECTION="virtual"
|
2010-11-14 16:53:50 +01:00
|
|
|
PKG_LONGDESC="debug is a Metapackage for installing debugging tools"
|
2012-01-28 17:18:23 +01:00
|
|
|
|
2014-11-09 14:50:40 +01:00
|
|
|
# configure GPU drivers and dependencies:
|
|
|
|
|
get_graphicdrivers
|
|
|
|
|
|
2021-01-19 19:34:20 +00:00
|
|
|
if [ "${VDPAU_SUPPORT}" = "yes" -a "${DISPLAYSERVER}" = "x11" ]; then
|
|
|
|
|
PKG_DEPENDS_TARGET+=" vdpauinfo"
|
2014-01-30 14:39:36 +01:00
|
|
|
fi
|
|
|
|
|
|
2021-01-19 19:34:20 +00:00
|
|
|
if [ "${VAAPI_SUPPORT}" = "yes" ]; then
|
|
|
|
|
PKG_DEPENDS_TARGET+=" libva-utils"
|
2017-05-18 09:12:30 -07:00
|
|
|
fi
|
|
|
|
|
|
2021-02-08 10:46:44 +01:00
|
|
|
if [ "${VALGRIND}" = "yes" ]; then
|
2021-01-19 19:34:20 +00:00
|
|
|
PKG_DEPENDS_TARGET+=" valgrind"
|
2016-10-25 13:17:02 -07:00
|
|
|
fi
|
2020-04-22 16:24:04 +02:00
|
|
|
|
2021-01-19 19:34:20 +00:00
|
|
|
if [ "${REMOTE_GDB}" = "yes" ]; then
|
|
|
|
|
PKG_DEPENDS_TARGET+=" gdb:host"
|
2020-04-22 16:24:04 +02:00
|
|
|
fi
|