mirror of
https://git.yoctoproject.org/poky
synced 2026-03-04 06:19:40 +01:00
This needs to use both virtual/libnl as well as gettext-native in order to build. So we switch to using inherit gettext. This is 4a022cf3fe3e39aab478bfc13332d358ed80348c from OE where it was tested with qemuarm+angstrom-2010.x+eglibc and qemuarm+minimal-uclibc. (From OE-Core rev: d7d9d5ec43a2f8c1f694432f004619e3e72ed5bf) Signed-off-by: Tom Rini <tom_rini@mentor.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
33 lines
876 B
PHP
33 lines
876 B
PHP
SUMMARY = "System performance tools"
|
|
DESCRIPTION = "The sysstat utilities are a collection of performance monitoring tools for Linux."
|
|
HOMEPAGE = "http://sebastien.godard.pagesperso-orange.fr/"
|
|
LICENSE = "GPLv2+"
|
|
SECTION = "console/utils"
|
|
|
|
SRC_URI = "http://pagesperso-orange.fr/sebastien.godard/sysstat-${PV}.tar.gz \
|
|
file://99_sysstat"
|
|
|
|
inherit autotools gettext
|
|
|
|
do_install() {
|
|
autotools_do_install
|
|
|
|
# don't install /var/log/sa when populating rootfs. Do it through volatile
|
|
|
|
rm -rf ${D}/var
|
|
install -d ${D}/etc/default/volatiles
|
|
install -m 0644 ${WORKDIR}/99_sysstat ${D}/etc/default/volatiles
|
|
}
|
|
|
|
pkg_postinst_${PN} () {
|
|
/etc/init.d/populate-volatile.sh update
|
|
}
|
|
|
|
|
|
FILES_${PN} += "${libdir}/sa"
|
|
|
|
TARGET_CC_ARCH += "${LDFLAGS}"
|
|
LDFLAGS_append_linux-uclibc = " -lintl"
|
|
LDFLAGS_append_linux-uclibceabi = " -lintl"
|
|
LDFLAGS_append_linux-uclibcspe = " -lintl"
|