e10cfb1e76
Now that it is handled globally (pkg-infra: pass --disable-doc if documentation is not enabled). Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
22 lines
665 B
Makefile
22 lines
665 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
|
|
|
|
ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
|
|
SYSSTAT_DEPENDENCIES += gettext
|
|
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))
|