diff options
author | Juergen Daubert <jue@jue.li> | 2010-07-24 10:36:52 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2010-07-24 10:39:21 +0200 |
commit | fbd44e0385753f2658e6af58ec582ef6e23b4e38 (patch) | |
tree | 3923f3187dc5d71824a5d737e693d00ef4c0a559 | |
parent | 8474df599fb6344d8f45ca90459953bfebad800a (diff) | |
download | opt-fbd44e0385753f2658e6af58ec582ef6e23b4e38.tar.gz opt-fbd44e0385753f2658e6af58ec582ef6e23b4e38.tar.xz |
sitecopy: fix build with neon 0.29
-rw-r--r-- | sitecopy/.md5sum | 1 | ||||
-rw-r--r-- | sitecopy/Pkgfile | 7 | ||||
-rw-r--r-- | sitecopy/sitecopy-0.16.6.patch | 12 |
3 files changed, 18 insertions, 2 deletions
diff --git a/sitecopy/.md5sum b/sitecopy/.md5sum index 898325324..cc8d15b31 100644 --- a/sitecopy/.md5sum +++ b/sitecopy/.md5sum @@ -1 +1,2 @@ +814282a82e98bd96bfe550759b39b982 sitecopy-0.16.6.patch b3aeb5a5f00af3db90b408e8c32a6c01 sitecopy-0.16.6.tar.gz diff --git a/sitecopy/Pkgfile b/sitecopy/Pkgfile index 444786b30..530d19695 100644 --- a/sitecopy/Pkgfile +++ b/sitecopy/Pkgfile @@ -5,11 +5,14 @@ name=sitecopy version=0.16.6 -release=1 -source=(http://www.manyfish.co.uk/sitecopy/$name-$version.tar.gz) +release=2 +source=(http://www.manyfish.co.uk/sitecopy/$name-$version.tar.gz + $name-$version.patch) build () { cd $name-$version + patch -p1 -i $SRC/$name-$version.patch + autoconf ./configure --prefix=/usr \ --mandir=/usr/man \ --with-neon=/usr \ diff --git a/sitecopy/sitecopy-0.16.6.patch b/sitecopy/sitecopy-0.16.6.patch new file mode 100644 index 000000000..c4d8c91d3 --- /dev/null +++ b/sitecopy/sitecopy-0.16.6.patch @@ -0,0 +1,12 @@ +diff -Nru sitecopy-0.16.6.orig/configure.in sitecopy-0.16.6/configure.in +--- sitecopy-0.16.6.orig/configure.in 2010-07-23 21:56:43.027136877 +0200 ++++ sitecopy-0.16.6/configure.in 2010-07-23 21:57:19.377136926 +0200 +@@ -113,7 +113,7 @@ + fi + + # Support neon 0.24 through 0.28 +-NE_REQUIRE_VERSIONS([0], [24 25 26 27 28]) ++NE_REQUIRE_VERSIONS([0], [24 25 26 27 28 29]) + + dnl But we don't use zlib or ACL support + NEON_WITHOUT_ZLIB |