From e4b7ac61ca59aa46de4a61f7114b1e8ec99ed691 Mon Sep 17 00:00:00 2001 From: Carlo Landmeter Date: Tue, 4 Sep 2012 11:57:37 +0200 Subject: testing/zfs-grsec: new aport --- testing/zfs-grsec/APKBUILD | 78 +++++++++++++++++++++++++++++++++++++++ testing/zfs-grsec/timestamp.patch | 16 ++++++++ 2 files changed, 94 insertions(+) create mode 100644 testing/zfs-grsec/APKBUILD create mode 100644 testing/zfs-grsec/timestamp.patch (limited to 'testing/zfs-grsec') diff --git a/testing/zfs-grsec/APKBUILD b/testing/zfs-grsec/APKBUILD new file mode 100644 index 000000000..9d0fa6d5c --- /dev/null +++ b/testing/zfs-grsec/APKBUILD @@ -0,0 +1,78 @@ +# Contributor: Carlo Landmeter +# Maintainer: + +_flavor=${FLAVOR:-grsec} +_realname=zfs +_name=$_realname-$_flavor + +_kver=3.4.10 +_kpkgrel=0 + +_realver=0.6.0-rc10 +_mypkgrel=0 + +# source the kernel version +if [ -f ../../main/linux-$_flavor/APKBUILD ]; then + . ../../main/linux-$_flavor/APKBUILD + [ "$_kver" != "$pkgver" ] && die "$_name: Please update _kver to $pkgver" + [ "$_kpkgrel" != "$pkgrel" ] && die "$_name: Please update _kpkgrel to $pkgrel" +fi + +_kernelver=$_kver-r$_kpkgrel +_abi_release=$_kver-${_flavor} + +pkgname=$_name +pkgver=$_kver +pkgrel=$(($_kpkgrel + $_mypkgrel)) +pkgdesc="ZFS for Linux" +url="http://zfsonlinux.org" +arch="all" +license="CDDL" +depends="spl-$_flavor" +depends_dev="glib-dev e2fsprogs-dev util-linux-dev + linux-$_flavor-dev spl-$_flavor-dev" +makedepends="$depends_dev automake autoconf libtool" +install="" +subpackages="$pkgname-dev" +source="https://github.com/downloads/zfsonlinux/zfs/zfs-$_realver.tar.gz + timestamp.patch" + +_builddir="$srcdir/$_realname-$_realver" + +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 "$_builddir" + ./autogen.sh || return 1 + export LIBS="$LIBS -lintl" + export GCC_SPECS=/usr/share/gcc/hardenednopie.specs + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --localstatedir=/var \ + --with-config=all \ + || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 + rm -f "$pkgdir"/usr/lib/*.la +} + +dev() { + default_dev +} + +md5sums="2d90a04c421e6897152cdccb76eb09ba zfs-0.6.0-rc10.tar.gz +9621735b802e34d792b03ef89727f6ea timestamp.patch" diff --git a/testing/zfs-grsec/timestamp.patch b/testing/zfs-grsec/timestamp.patch new file mode 100644 index 000000000..68a612faa --- /dev/null +++ b/testing/zfs-grsec/timestamp.patch @@ -0,0 +1,16 @@ +uclibc does not support _DATE_FMT, it seems to be a libc only thing +not sure this will work, will need to take a closer look. +http://pubs.opengroup.org/onlinepubs/007904975/basedefs/langinfo.h.html +http://sources.redhat.com/ml/libc-alpha/2000-10/msg00298.html + +--- ./lib/libspl/timestamp.c.orig ++++ ./lib/libspl/timestamp.c +@@ -40,7 +40,7 @@ + + /* We only need to retrieve this once per invocation */ + if (fmt == NULL) +- fmt = nl_langinfo(_DATE_FMT); ++ fmt = nl_langinfo(D_FMT); + + if (timestamp_fmt == UDATE) { + (void) printf("%ld\n", t); -- cgit v1.2.3