main/sysstat: fix musl build

This commit is contained in:
Timo Teräs 2014-01-13 18:59:08 +00:00
parent 4b1862541f
commit 5f2f422fbe
2 changed files with 54 additions and 7 deletions

View File

@ -2,7 +2,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=sysstat
pkgver=10.2.0
pkgrel=0
pkgrel=1
pkgdesc="Performance monitoring tools for Linux"
url="http://pagesperso-orange.fr/sebastien.godard/"
arch="all"
@ -10,10 +10,24 @@ license="GPL"
depends=
makedepends=
subpackages="$pkgname-doc"
source="http://pagesperso-orange.fr/sebastien.godard/sysstat-$pkgver.tar.gz"
source="http://pagesperso-orange.fr/sebastien.godard/sysstat-$pkgver.tar.gz
musl-fix-includes.patch
"
_builddir="$srcdir/$pkgname-$pkgver"
prepare() {
local i
cd "$_builddir"
for i in $source; do
case $i in
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
esac
done
}
build() {
cd "$srcdir/$pkgname-$pkgver"
cd "$_builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
@ -27,11 +41,14 @@ build() {
}
package() {
cd "$srcdir/$pkgname-$pkgver"
cd "$_builddir"
make DESTDIR="$pkgdir" install
}
md5sums="7a6e3df08590385113a27a76ce64a6ff sysstat-10.2.0.tar.gz"
sha256sums="2e0fee87cec7f56ba121c320327843278e2bda30bacd54851628eab0ba09429a sysstat-10.2.0.tar.gz"
sha512sums="d6be7332e1f4c1b5f8da5fc95f1ce3fed9658caae59fe11c1fe4cc87baf798a96bf06c28a7248a8c237b439c0c04160b5ccf4a337b84f3ba0a4623f94f9fd22c sysstat-10.2.0.tar.gz"
md5sums="7a6e3df08590385113a27a76ce64a6ff sysstat-10.2.0.tar.gz
64b8fd8367562adc796aaa5d9b92bcc2 musl-fix-includes.patch"
sha256sums="2e0fee87cec7f56ba121c320327843278e2bda30bacd54851628eab0ba09429a sysstat-10.2.0.tar.gz
80ba68b5c1cbdeb4fb6e6cd07f1ae32043126602b3c2b0864aefeb5523a3d7d5 musl-fix-includes.patch"
sha512sums="d6be7332e1f4c1b5f8da5fc95f1ce3fed9658caae59fe11c1fe4cc87baf798a96bf06c28a7248a8c237b439c0c04160b5ccf4a337b84f3ba0a4623f94f9fd22c sysstat-10.2.0.tar.gz
183ff89a3a0c3923b436991a2653a133942525b5f45d842ee6ed3546166211cf12828e07dc4ded2d4af8451f049ae75a87fc903a6297791034d6b304c6ef0faf musl-fix-includes.patch"

View File

@ -0,0 +1,30 @@
--- sysstat-10.2.0.old/common.c
+++ sysstat-10.2.0/common.c
@@ -29,6 +29,7 @@
#include <sys/types.h>
#include <dirent.h>
#include <ctype.h>
+#include <limits.h>
#include <libgen.h>
#include "version.h"
--- sysstat-10.2.0.old/ioconf.c
+++ sysstat-10.2.0/ioconf.c
@@ -26,6 +26,7 @@
#include <string.h>
#include <errno.h>
#include <dirent.h>
+#include <sys/types.h>
#include <sys/stat.h>
#include "ioconf.h"
--- sysstat-10.2.0.old/sa_common.c
+++ sysstat-10.2.0/sa_common.c
@@ -27,6 +27,7 @@
#include <unistd.h> /* For STDOUT_FILENO, among others */
#include <dirent.h>
#include <fcntl.h>
+#include <limits.h>
#include <libgen.h>
#include <sys/types.h>
#include <sys/ioctl.h>