diff options
Diffstat (limited to 'community/cadaver')
-rw-r--r-- | community/cadaver/APKBUILD | 41 | ||||
-rw-r--r-- | community/cadaver/disable-nls.patch | 17 | ||||
-rw-r--r-- | community/cadaver/neon.patch | 43 |
3 files changed, 101 insertions, 0 deletions
diff --git a/community/cadaver/APKBUILD b/community/cadaver/APKBUILD new file mode 100644 index 0000000000..decefb196a --- /dev/null +++ b/community/cadaver/APKBUILD @@ -0,0 +1,41 @@ +# Contributor: ScrumpyJack <scrumpyjack@st.ilet.to> +# Maintainer: ScrumpyJack <scrumpyjack@st.ilet.to> +pkgname=cadaver +pkgver=0.23.3 +pkgrel=4 +pkgdesc="Cadaver is a command line webDAV client for Linux" +options="!check" +url="http://webdav.org/cadaver/" +arch="all" +license="GPL-2.0-or-later" +makedepends="libproxy-dev neon-dev expat-dev" +subpackages="$pkgname-doc" +source="https://dev.alpinelinux.org/archive/cadaver/cadaver-$pkgver.tar.gz + neon.patch + disable-nls.patch + " + +prepare() { + update_config_sub + default_prepare +} + +build() { + ./configure \ + --build=$CBUILD \ + --host=$CHOST \ + --prefix=/usr \ + --with-ssl \ + --with-expat \ + --with-neon \ + --disable-nls + make +} + +package() { + make prefix=$pkgdir/usr install +} + +sha512sums="48fe0a266be0ca7239f325377e5e2a8dc57a5d60466c7160e36c060ad24c09a50727695b9fa931844b1e66e173ebbb838f390d6c60fd07b614bd3b636cd4dd41 cadaver-0.23.3.tar.gz +dba57c355afda9552a890d53b32343f4532c441d7d654ea09b8ee6533a4d3a455a02327b393cf98228c4989622962d92b929a4c674919434b72ac285e5ced68c neon.patch +58982830b63c9bf4c27455e2d0403489bfdda82e4d236841c877d49c7501865edb3438cdddfb77ef7e525c4a5edb34083d3af69824f0ba2dc7d5c3f7f69b50e5 disable-nls.patch" diff --git a/community/cadaver/disable-nls.patch b/community/cadaver/disable-nls.patch new file mode 100644 index 0000000000..41e723973c --- /dev/null +++ b/community/cadaver/disable-nls.patch @@ -0,0 +1,17 @@ +Fix building with --disable-nls. +--- a/src/cadaver.c.~1~ 2007-08-22 14:17:27.000000000 +0200 ++++ b/src/cadaver.c 2008-03-29 08:58:57.248793293 +0100 +@@ -838,11 +838,12 @@ + + progname = argv[0]; + ++#ifdef ENABLE_NLS ++ + #ifdef HAVE_SETLOCALE + setlocale(LC_ALL, ""); + #endif + +-#ifdef ENABLE_NLS + bindtextdomain(PACKAGE_NAME, LOCALEDIR); + textdomain(PACKAGE_NAME); + #endif /* ENABLE_NLS */ diff --git a/community/cadaver/neon.patch b/community/cadaver/neon.patch new file mode 100644 index 0000000000..10a581a574 --- /dev/null +++ b/community/cadaver/neon.patch @@ -0,0 +1,43 @@ +$OpenBSD: patch-configure,v 1.4 2014/09/08 06:51:48 ajacoutot Exp $ +--- a/configure.orig Mon Sep 8 08:49:16 2014 ++++ b/configure Mon Sep 8 08:49:47 2014 +@@ -9595,7 +9595,7 @@ fi + $as_echo "$ne_cv_lib_neon" >&6; } + if test "$ne_cv_lib_neon" = "yes"; then + ne_cv_lib_neonver=no +- for v in 27 28 29; do ++ for v in 27 28 29 30; do + case $ne_libver in + 0.$v.*) ne_cv_lib_neonver=yes ;; + esac +@@ -10242,8 +10242,8 @@ _ACEOF + fi + + else +- { $as_echo "$as_me:$LINENO: incompatible neon library version $ne_libver: wanted 0.27 28 29" >&5 +-$as_echo "$as_me: incompatible neon library version $ne_libver: wanted 0.27 28 29" >&6;} ++ { $as_echo "$as_me:$LINENO: incompatible neon library version $ne_libver: wanted 0.27 28 29 30" >&5 ++$as_echo "$as_me: incompatible neon library version $ne_libver: wanted 0.27 28 29 30" >&6;} + neon_got_library=no + fi + +@@ -10328,7 +10328,7 @@ fi + $as_echo "$ne_cv_lib_neon" >&6; } + if test "$ne_cv_lib_neon" = "yes"; then + ne_cv_lib_neonver=no +- for v in 27 28 29; do ++ for v in 27 28 29 30; do + case $ne_libver in + 0.$v.*) ne_cv_lib_neonver=yes ;; + esac +@@ -10975,8 +10975,8 @@ _ACEOF + fi + + else +- { $as_echo "$as_me:$LINENO: incompatible neon library version $ne_libver: wanted 0.27 28 29" >&5 +-$as_echo "$as_me: incompatible neon library version $ne_libver: wanted 0.27 28 29" >&6;} ++ { $as_echo "$as_me:$LINENO: incompatible neon library version $ne_libver: wanted 0.27 28 29 30" >&5 ++$as_echo "$as_me: incompatible neon library version $ne_libver: wanted 0.27 28 29 30" >&6;} + neon_got_library=no + fi + |