sysstat.mk 775 B

12345678910111213141516171819202122232425
  1. #############################################################
  2. #
  3. # sysstat
  4. #
  5. #############################################################
  6. SYSSTAT_VERSION = 9.1.7
  7. SYSSTAT_SOURCE = sysstat-$(SYSSTAT_VERSION).tar.bz2
  8. SYSSTAT_SITE = http://pagesperso-orange.fr/sebastien.godard/
  9. SYSSTAT_CONF_OPT = --disable-man-group --disable-sensors
  10. ifneq ($(BR2_HAVE_DOCUMENTATION),y)
  11. SYSSTAT_CONF_OPT += --disable-documentation
  12. endif
  13. ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y)
  14. SYSSTAT_DEPENDENCIES += gettext libintl
  15. SYSSTAT_MAKE_OPT += CFLAGS+=-lintl
  16. endif
  17. # The isag tool is a post processing script that depends on tcl/tk
  18. # among other things. So we don't install it.
  19. SYSSTAT_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) INSTALL_ISAG=n install
  20. $(eval $(call AUTOTARGETS,package,sysstat))