aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
816 B
Makefile
25 lines
816 B
Makefile
################################################################################
|
|
#
|
|
# sysstat
|
|
#
|
|
################################################################################
|
|
|
|
SYSSTAT_VERSION = 11.0.1
|
|
SYSSTAT_SOURCE = sysstat-$(SYSSTAT_VERSION).tar.xz
|
|
SYSSTAT_SITE = http://pagesperso-orange.fr/sebastien.godard
|
|
SYSSTAT_CONF_OPTS = --disable-man-group --disable-sensors
|
|
SYSSTAT_DEPENDENCIES = host-gettext
|
|
SYSSTAT_LICENSE = GPLv2+
|
|
SYSSTAT_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
|
SYSSTAT_DEPENDENCIES += gettext
|
|
SYSSTAT_MAKE_OPTS += CFLAGS="$(TARGET_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_OPTS = DESTDIR=$(TARGET_DIR) INSTALL_ISAG=n install
|
|
|
|
$(eval $(autotools-package))
|