diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-07-24 08:01:31 +0000 |
commit | b70981b68efcce5256eb11c6cd26ae123b10b6ea (patch) | |
tree | a38be6efae5e2ba15c2e839504632f9b7bfd5f91 /main/zip | |
parent | 2b4df81538b8398442d5296650905c70341dd8d3 (diff) | |
download | aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.bz2 aports-b70981b68efcce5256eb11c6cd26ae123b10b6ea.tar.xz |
moved extra/* to main/
and fixed misc build issues
Diffstat (limited to 'main/zip')
-rw-r--r-- | main/zip/10-zip-3.0-build.patch | 36 | ||||
-rw-r--r-- | main/zip/20-zip-3.0-exec-stack.patch | 22 | ||||
-rw-r--r-- | main/zip/30-zip-3.0-pic.patch | 15 | ||||
-rw-r--r-- | main/zip/APKBUILD | 30 |
4 files changed, 103 insertions, 0 deletions
diff --git a/main/zip/10-zip-3.0-build.patch b/main/zip/10-zip-3.0-build.patch new file mode 100644 index 0000000000..5ddad23b95 --- /dev/null +++ b/main/zip/10-zip-3.0-build.patch @@ -0,0 +1,36 @@ +respect build environment settings + +--- unix/configure Wed Jan 28 22:22:13 2009 ++++ unix/configure Wed Jan 28 22:23:54 2009 +@@ -18,7 +18,7 @@ + + CC=${1-cc} + CFLAGS=${2-"-I. -DUNIX"} +-LFLAGS1='' ++LFLAGS1="${LDFLAGS}" + LFLAGS2='' + LN="ln -s" + +@@ -118,7 +118,7 @@ + fi + + # optimization flags +-if test -n "${CFLAGS_OPT}"; then ++if false; then + CFLAGS="${CFLAGS} ${CFLAGS_OPT}" + CFLAGS_BZ="${CFLAGS_BZ} ${CFLAGS_OPT}" + fi +@@ -220,13 +220,6 @@ + echo Check for the C preprocessor + # on SVR4, cc -E does not produce correct assembler files. Need /lib/cpp. + CPP="${CC} -E" +-# solaris as(1) needs -P, maybe others as well ? +-[ -f /usr/ccs/lib/cpp ] && CPP="/usr/ccs/lib/cpp -P" +-[ -f /usr/lib/cpp ] && CPP=/usr/lib/cpp +-[ -f /lib/cpp ] && CPP=/lib/cpp +-[ -f /usr/bin/cpp ] && CPP=/usr/bin/cpp +-[ -f /xenix ] && CPP="${CC} -E" +-[ -f /lynx.os ] && CPP="${CC} -E" + + echo "#include <stdio.h>" > conftest.c + $CPP conftest.c >/dev/null 2>/dev/null || CPP="${CC} -E" diff --git a/main/zip/20-zip-3.0-exec-stack.patch b/main/zip/20-zip-3.0-exec-stack.patch new file mode 100644 index 0000000000..d85fb117b0 --- /dev/null +++ b/main/zip/20-zip-3.0-exec-stack.patch @@ -0,0 +1,22 @@ +add proper GNU stack markings so we dont get the default: executable + +--- crc_i386.S Wed Jan 28 22:22:13 2009 ++++ crc_i386.S Wed Jan 28 22:27:04 2009 +@@ -302,3 +302,7 @@ + #endif /* i386 || _i386 || _I386 || __i386 */ + + #endif /* !USE_ZLIB && !CRC_TABLE_ONLY */ ++ ++#if defined __ELF__ && defined __linux__ ++.section .note.GNU-stack,"",@progbits ++#endif +--- match.S Wed Jan 28 22:22:13 2009 ++++ match.S Wed Jan 28 22:27:04 2009 +@@ -405,3 +405,7 @@ + #endif /* i386 || _I386 || _i386 || __i386 */ + + #endif /* !USE_ZLIB */ ++ ++#if defined __ELF__ && defined __linux__ ++.section .note.GNU-stack,"",@progbits ++#endif diff --git a/main/zip/30-zip-3.0-pic.patch b/main/zip/30-zip-3.0-pic.patch new file mode 100644 index 0000000000..14a8821b04 --- /dev/null +++ b/main/zip/30-zip-3.0-pic.patch @@ -0,0 +1,15 @@ +if our toolchain generates PIC by default, then do not use the hand written +assembly files as none of it is PIC friendly. + +--- unix/configure Wed Jan 28 22:23:54 2009 ++++ unix/configure Wed Jan 28 22:29:51 2009 +@@ -228,6 +228,9 @@ + echo Check if we can use asm code + OBJA="" + OCRCU8="" ++piclib="$(echo | $CPP -dM $CFLAGS - | grep -i __pic__)" ++echo "Checking if compiler wants to create pic code" ++[ "$piclib" == "" ] && \ + if eval "$CPP match.S > _match.s 2>/dev/null"; then + if test ! -s _match.s || grep error < _match.s > /dev/null; then + : diff --git a/main/zip/APKBUILD b/main/zip/APKBUILD new file mode 100644 index 0000000000..4998c35b76 --- /dev/null +++ b/main/zip/APKBUILD @@ -0,0 +1,30 @@ +# Maintainer: Carlo Landmeter <clandmeter at gmail.com> +pkgname=zip +pkgver=3.0 +pkgrel=0 +pkgdesc="Creates PKZIP-compatible .zip files" +url="http://www.info-zip.org/pub/infozip/Zip.html" +license="AS IS" +depends="uclibc" +makedepends="" +source="ftp://ftp.info-${pkgname}.org/pub/info${pkgname}/src/${pkgname}30.zip +10-zip-3.0-build.patch +20-zip-3.0-exec-stack.patch +30-zip-3.0-pic.patch" +subpackages="$pkgname-doc" + +build () +{ + cd "${srcdir}/${pkgname}30" + for i in ../*.patch; do + msg "Applying $i" + patch -p0 < $i || return 1 + done + make -f unix/Makefile LOCAL_ZIP="${CFLAGS} ${CPPFLAGS}" prefix=/usr generic || return 1 + make -f unix/Makefile prefix=${pkgdir}/usr MANDIR=${pkgdir}/usr/share/man install +} + +md5sums="e88492c8abd68fa9cfba72bc08757dba zip30.zip +c86c527b6ad487aef02954bb1607ff07 10-zip-3.0-build.patch +f6490facf87e501b5d0c7095949515a7 20-zip-3.0-exec-stack.patch +f0b90de421d370f1b40b0f681d3829d8 30-zip-3.0-pic.patch" |