From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- core/zlib/PKGBUILD | 34 ++++++++++++++++++++++++++++++++++ core/zlib/zlib-1.2.5-lfs-decls.patch | 13 +++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 core/zlib/PKGBUILD create mode 100644 core/zlib/zlib-1.2.5-lfs-decls.patch (limited to 'core/zlib') diff --git a/core/zlib/PKGBUILD b/core/zlib/PKGBUILD new file mode 100644 index 000000000..ee91eff75 --- /dev/null +++ b/core/zlib/PKGBUILD @@ -0,0 +1,34 @@ +# $Id: PKGBUILD 100000 2010-11-19 17:40:38Z pierre $ +# Maintainer: Pierre Schmitz + +pkgname=zlib +pkgver=1.2.5 +pkgrel=3 +pkgdesc='Compression library implementing the deflate compression method found in gzip and PKZIP' +arch=('i686' 'x86_64') +license=('custom') +url="http://www.zlib.net/" +depends=('glibc') +options=('!makeflags') +source=("http://zlib.net/zlib-${pkgver}.tar.gz" + 'zlib-1.2.5-lfs-decls.patch') +md5sums=('c735eab2d659a96e5a594c9e8541ad63' + '4cb279ea3beab621f3526bf7b7ab99e5') + +build() { + cd ${srcdir}/zlib-$pkgver + # see http://bugs.archlinux.org/task/19280 + patch -p1 -i ${srcdir}/zlib-1.2.5-lfs-decls.patch || return 1 + # work around gcc bug; see https://bugs.archlinux.org/task/20647 + export CFLAGS="${CFLAGS/-O2/-O3} -fno-tree-vectorize -DUNALIGNED_OK" + ./configure --prefix=/usr + make + + grep -A 24 '^ Copyright' zlib.h > LICENSE +} + +package() { + cd ${srcdir}/zlib-$pkgver + make install DESTDIR=${pkgdir} + install -D -m644 LICENSE ${pkgdir}/usr/share/licenses/zlib/LICENSE +} diff --git a/core/zlib/zlib-1.2.5-lfs-decls.patch b/core/zlib/zlib-1.2.5-lfs-decls.patch new file mode 100644 index 000000000..36e26af03 --- /dev/null +++ b/core/zlib/zlib-1.2.5-lfs-decls.patch @@ -0,0 +1,13 @@ +Index: zlib-1.2.5/zlib.h +=================================================================== +--- zlib-1.2.5.orig/zlib.h ++++ zlib-1.2.5/zlib.h +@@ -1578,7 +1578,7 @@ ZEXTERN int ZEXPORT inflateBackInit_ OF( + # define gzoffset gzoffset64 + # define adler32_combine adler32_combine64 + # define crc32_combine crc32_combine64 +-# ifdef _LARGEFILE64_SOURCE ++# ifndef _LARGEFILE64_SOURCE + ZEXTERN gzFile ZEXPORT gzopen64 OF((const char *, const char *)); + ZEXTERN z_off_t ZEXPORT gzseek64 OF((gzFile, z_off_t, int)); + ZEXTERN z_off_t ZEXPORT gztell64 OF((gzFile)); -- cgit v1.2.3-54-g00ecf