2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2010-04-01 12:10:12 +02:00
|
|
|
#
|
2013-07-22 07:30:22 +02:00
|
|
|
# matchbox-panel
|
2010-04-01 12:10:12 +02:00
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2013-06-06 01:53:25 +02:00
|
|
|
|
2012-11-30 11:38:23 +01:00
|
|
|
MATCHBOX_PANEL_VERSION_MAJOR = 0.9
|
|
|
|
MATCHBOX_PANEL_VERSION = $(MATCHBOX_PANEL_VERSION_MAJOR).3
|
2010-04-01 12:10:12 +02:00
|
|
|
MATCHBOX_PANEL_SOURCE = matchbox-panel-$(MATCHBOX_PANEL_VERSION).tar.bz2
|
2012-11-30 11:38:23 +01:00
|
|
|
MATCHBOX_PANEL_SITE = http://downloads.yoctoproject.org/releases/matchbox/matchbox-panel/$(MATCHBOX_PANEL_VERSION_MAJOR)
|
2012-11-30 12:46:35 +01:00
|
|
|
MATCHBOX_PANEL_LICENSE = GPLv2+
|
|
|
|
MATCHBOX_PANEL_LICENSE_FILES = COPYING
|
2010-04-01 12:10:12 +02:00
|
|
|
MATCHBOX_PANEL_DEPENDENCIES = matchbox-lib
|
2015-06-03 22:41:48 +02:00
|
|
|
MATCHBOX_PANEL_CONF_OPTS = --enable-expat --enable-dnotify
|
2010-04-01 12:10:12 +02:00
|
|
|
|
2015-06-03 22:41:26 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_MATCHBOX_STARTUP_MONITOR),y)
|
2014-10-24 07:57:37 +02:00
|
|
|
MATCHBOX_PANEL_CONF_OPTS += --enable-startup-notification
|
2015-06-03 22:41:26 +02:00
|
|
|
MATCHBOX_PANEL_DEPENDENCIES += matchbox-startup-monitor
|
2010-04-01 12:10:12 +02:00
|
|
|
else
|
2014-10-24 07:57:37 +02:00
|
|
|
MATCHBOX_PANEL_CONF_OPTS += --disable-startup-notification
|
2010-04-01 12:10:12 +02:00
|
|
|
endif
|
|
|
|
|
2015-06-03 22:41:47 +02:00
|
|
|
# Using ACPI is only possible on x86 (32- or 64-bit) or AArch64
|
|
|
|
ifeq ($(BR2_aarch64)$(BR2_i386)$(BR2_x86_64),y)
|
|
|
|
MATCHBOX_PANEL_CONF_OPTS += --enable-acpi-linux
|
|
|
|
else
|
|
|
|
MATCHBOX_PANEL_CONF_OPTS += --disable-acpi-linux
|
|
|
|
endif
|
|
|
|
|
2015-06-03 22:41:49 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_WIRELESS_TOOLS_LIB),y)
|
2015-02-02 15:38:57 +01:00
|
|
|
MATCHBOX_PANEL_DEPENDENCIES += wireless_tools
|
|
|
|
endif
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|