e1502ebc0c
Also remove the redundant $(call ...). This is a purely mechanical change, performed with find package linux toolchain boot -name \*.mk | \ xargs sed -i -e 's/$(eval $(call GENTARGETS))/$(eval $(generic-package))/' \ -e 's/$(eval $(call AUTOTARGETS))/$(eval $(autotools-package))/' \ -e 's/$(eval $(call CMAKETARGETS))/$(eval $(cmake-package))/' Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
760 B
Makefile
26 lines
760 B
Makefile
#############################################################
|
|
#
|
|
# sysstat
|
|
#
|
|
#############################################################
|
|
|
|
SYSSTAT_VERSION = 10.0.3
|
|
SYSSTAT_SOURCE = sysstat-$(SYSSTAT_VERSION).tar.bz2
|
|
SYSSTAT_SITE = http://pagesperso-orange.fr/sebastien.godard
|
|
SYSSTAT_CONF_OPT = --disable-man-group --disable-sensors
|
|
|
|
ifneq ($(BR2_HAVE_DOCUMENTATION),y)
|
|
SYSSTAT_CONF_OPT += --disable-documentation
|
|
endif
|
|
|
|
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
|
SYSSTAT_DEPENDENCIES += gettext libintl
|
|
SYSSTAT_MAKE_OPT += CFLAGS+=-lintl
|
|
endif
|
|
|
|
# The isag tool is a post processing script that depends on tcl/tk
|
|
# among other things. So we don't install it.
|
|
SYSSTAT_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) INSTALL_ISAG=n install
|
|
|
|
$(eval $(autotools-package))
|