2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2009-07-26 22:03:15 +02:00
|
|
|
#
|
|
|
|
# bmon
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2009-07-26 22:03:15 +02:00
|
|
|
|
|
|
|
BMON_VERSION = 2.1.0
|
|
|
|
BMON_SITE = http://distfiles.gentoo.org/distfiles
|
2011-06-17 09:15:42 +02:00
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
|
|
BMON_DEPENDENCIES += ncurses
|
|
|
|
else
|
|
|
|
BMON_CONF_OPT += --disable-curses
|
|
|
|
endif
|
2009-07-26 22:03:15 +02:00
|
|
|
|
2011-06-17 09:17:16 +02:00
|
|
|
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
|
|
|
|
BMON_DEPENDENCIES += alsa-lib
|
|
|
|
else
|
|
|
|
BMON_CONF_OPT += --disable-asound
|
|
|
|
endif
|
|
|
|
|
2011-06-17 09:10:29 +02:00
|
|
|
ifneq ($(BR2_PREFER_STATIC_LIB),y)
|
|
|
|
# link dynamically unless explicitly requested otherwise
|
|
|
|
BMON_CONF_OPT += --disable-static
|
|
|
|
endif
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|