sysstat: bump to 9.1.6, fix libintl problems

Closes #759

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Gustavo Zacarias 2010-11-16 10:14:45 -03:00 committed by Peter Korsgaard
parent 094b293803
commit 474166298e
3 changed files with 10 additions and 6 deletions

View File

@ -4,10 +4,11 @@
Updated/fixed packages: bash, bind, busybox, libglib2, libmad, Updated/fixed packages: bash, bind, busybox, libglib2, libmad,
midori, module-init-tools, mtd-utils, openssh, pciutils, qt, midori, module-init-tools, mtd-utils, openssh, pciutils, qt,
sqlite, webkit sqlite, sysstat, webkit
Issues resolved (http://bugs.uclibc.org): Issues resolved (http://bugs.uclibc.org):
#759: Sysstat build broken without libintl
#2479: host-module-init-tools 3.11 fails to build #2479: host-module-init-tools 3.11 fails to build
#2785: mtd-utils build fails due to missing libmtd #2785: mtd-utils build fails due to missing libmtd
#2797: pciutils dependencies on zlib not taken into account #2797: pciutils dependencies on zlib not taken into account

View File

@ -1,5 +1,7 @@
config BR2_PACKAGE_SYSSTAT config BR2_PACKAGE_SYSSTAT
bool "sysstat" bool "sysstat"
select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
select BR2_PACKAGE_LIBINTL if BR2_NEEDS_GETTEXT_IF_LOCALE
help help
The sysstat utilities are a collection of performance The sysstat utilities are a collection of performance
monitoring tools for Linux. These include sar, sadf, mpstat, monitoring tools for Linux. These include sar, sadf, mpstat,

View File

@ -4,19 +4,20 @@
# #
############################################################# #############################################################
SYSSTAT_VERSION = 9.1.5 SYSSTAT_VERSION = 9.1.6
SYSSTAT_SOURCE = sysstat-$(SYSSTAT_VERSION).tar.bz2 SYSSTAT_SOURCE = sysstat-$(SYSSTAT_VERSION).tar.bz2
SYSSTAT_SITE = http://pagesperso-orange.fr/sebastien.godard/ SYSSTAT_SITE = http://pagesperso-orange.fr/sebastien.godard/
SYSSTAT_AUTORECONF = NO
SYSSTAT_LIBTOOL_PATCH = NO
SYSSTAT_INSTALL_STAGING = NO
SYSSTAT_INSTALL_TARGET = YES
SYSSTAT_CONF_OPT = --disable-man-group SYSSTAT_CONF_OPT = --disable-man-group
ifneq ($(BR2_HAVE_DOCUMENTATION),y) ifneq ($(BR2_HAVE_DOCUMENTATION),y)
SYSSTAT_CONF_OPT += --disable-documentation SYSSTAT_CONF_OPT += --disable-documentation
endif 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 # The isag tool is a post processing script that depends on tcl/tk
# among other things. So we don't install it. # among other things. So we don't install it.
SYSSTAT_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) INSTALL_ISAG=n install SYSSTAT_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) INSTALL_ISAG=n install