diff options
Diffstat (limited to 'scripts/scan-pkgs.sh')
-rw-r--r-- | scripts/scan-pkgs.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/scan-pkgs.sh b/scripts/scan-pkgs.sh index 67703df58..2eeed09dd 100644 --- a/scripts/scan-pkgs.sh +++ b/scripts/scan-pkgs.sh @@ -149,6 +149,10 @@ if [[ -n $ADK_PACKAGE_GLIB ]]; then NEED_GETTEXT="$NEED_GETTEXT glib" fi +if [[ -n $ADK_PACKAGE_CONSOLEKIT ]]; then + NEED_DBUSGLIB="$NEED_DBUSGLIB consolekit" +fi + if [[ -n $ADK_PACKAGE_FONT_BITSTREAM_100DPI ]]; then NEED_MKFONTDIR="$NEED_MKFONTDIR font-bitstream-100dpi" fi @@ -393,6 +397,13 @@ if [[ -n $NEED_XSLTPROC ]]; then fi fi +if [[ -n $NEED_DBUSGLIB ]]; then + if ! which dbus-binding-tool >/dev/null 2>&1; then + echo >&2 You need dbus-binding-tool to build $NEED_DBUSGLIB + out=1 + fi +fi + if [[ -n $NEED_PYTHON ]]; then if ! which python >/dev/null 2>&1; then if ! test -x /usr/pkg/bin/python2.6 >/dev/null; then |