27 lines
767 B
Makefile
27 lines
767 B
Makefile
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
||
|
|
||
|
PKG_NAME="debug"
|
||
|
PKG_VERSION=""
|
||
|
PKG_LICENSE="GPL"
|
||
|
PKG_SITE="http://www.openelec.tv"
|
||
|
PKG_URL=""
|
||
|
PKG_DEPENDS_TARGET="toolchain gdb apitrace valgrind strace edid-decode memtester"
|
||
|
PKG_SECTION="virtual"
|
||
|
PKG_LONGDESC="debug is a Metapackage for installing debugging tools"
|
||
|
|
||
|
# configure GPU drivers and dependencies:
|
||
|
get_graphicdrivers
|
||
|
|
||
|
if [ "$VDPAU_SUPPORT" = "yes" -a "$DISPLAYSERVER" = "x11" ]; then
|
||
|
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET vdpauinfo"
|
||
|
fi
|
||
|
|
||
|
if [ "$VAAPI_SUPPORT" = "yes" ]; then
|
||
|
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET libva-utils"
|
||
|
fi
|
||
|
|
||
|
if build_with_debug && [ "$VALGRIND" = "yes" ]; then
|
||
|
PKG_DEPENDS_TARGET="$PKG_DEPENDS_TARGET valgrind"
|
||
|
fi
|