aboutsummaryrefslogtreecommitdiff
path: root/libs_network/neon
diff options
context:
space:
mode:
Diffstat (limited to 'libs_network/neon')
-rw-r--r--libs_network/neon/neon-0.29.6-gnutls3backport.patch.xzbin0 -> 1284 bytes
-rw-r--r--libs_network/neon/neon-0.29.6-gnutls3functions.patch.xzbin0 -> 1928 bytes
-rw-r--r--libs_network/neon/neon-0.29.6-gnutls3types.patch.xzbin0 -> 908 bytes
-rw-r--r--libs_network/neon/neon-0.29.6-htmldir.patch.xzbin0 -> 436 bytes
-rwxr-xr-xlibs_network/neon/neon.build67
5 files changed, 67 insertions, 0 deletions
diff --git a/libs_network/neon/neon-0.29.6-gnutls3backport.patch.xz b/libs_network/neon/neon-0.29.6-gnutls3backport.patch.xz
new file mode 100644
index 0000000..77f7276
--- /dev/null
+++ b/libs_network/neon/neon-0.29.6-gnutls3backport.patch.xz
Binary files differ
diff --git a/libs_network/neon/neon-0.29.6-gnutls3functions.patch.xz b/libs_network/neon/neon-0.29.6-gnutls3functions.patch.xz
new file mode 100644
index 0000000..2a23859
--- /dev/null
+++ b/libs_network/neon/neon-0.29.6-gnutls3functions.patch.xz
Binary files differ
diff --git a/libs_network/neon/neon-0.29.6-gnutls3types.patch.xz b/libs_network/neon/neon-0.29.6-gnutls3types.patch.xz
new file mode 100644
index 0000000..3d9d9fa
--- /dev/null
+++ b/libs_network/neon/neon-0.29.6-gnutls3types.patch.xz
Binary files differ
diff --git a/libs_network/neon/neon-0.29.6-htmldir.patch.xz b/libs_network/neon/neon-0.29.6-htmldir.patch.xz
new file mode 100644
index 0000000..ffb54f1
--- /dev/null
+++ b/libs_network/neon/neon-0.29.6-htmldir.patch.xz
Binary files differ
diff --git a/libs_network/neon/neon.build b/libs_network/neon/neon.build
new file mode 100755
index 0000000..c0924ce
--- /dev/null
+++ b/libs_network/neon/neon.build
@@ -0,0 +1,67 @@
+#!/bin/bash
+#
+# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd>
+
+source /usr/src/ports/Build/build.sh
+
+NAME=neon
+VERSION=0.29.6
+BUILD=2
+DEPENDS=('gnutls >= 3.1.6-1' 'libxml >= 2.9.0-1' 'libproxy >= 0.4.11-1')
+
+# Description
+
+cat > ${PKG}/install/slack-desc <<EOF
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+$(padd)|-----handy-ruler------------------------------------------------------|
+${NAME}: neon
+${NAME}:
+${NAME}: An HTTP and WebDAV client library.
+${NAME}:
+${NAME}: Homepage: http://www.webdav.org/neon
+${NAME}:
+${NAME}:
+${NAME}:
+${NAME}:
+${NAME}:
+${NAME}:
+EOF
+
+# Sources
+
+SRCNAME[0]=${NAME}
+SRCVERS[0]=${VERSION}
+SRCPACK[0]=http://www.webdav.org/${SRCNAME[0]}/${SRCNAME[0]}-${SRCVERS[0]}.tar.gz
+SRCCOPY[0]="LGPL2"
+
+build0()
+{
+sed -i 's|$(libdir)/pkgconfig|$(prefix)/share/pkgconfig|g' Makefile.in
+CFLAGS="${FLAGS}" CXXFLAGS="${FLAGS}" \
+./configure \
+ --build="${ARCH}-slackware-linux" \
+ --enable-static=no \
+ --enable-shared=yes \
+ --prefix="${SYS_DIR[usr]}" \
+ --mandir="${SYS_DIR[man]}" \
+ --docdir="${SYS_DIR[html]}" \
+ --sysconfdir="${SYS_DIR[etc]}" \
+ --libdir="${SYS_DIR[lib]}" \
+ --localstatedir="${SYS_DIR[var]}" \
+ --with-ssl=gnutls \
+ --with-libxml2 \
+ --with-ca-bundle="${SYS_DIR[etc]}/ssl/certs/ca-certificates.crt" \
+ --enable-threadsafe-ssl=posix
+make ${JOBS}
+make install DESTDIR="${PKG}"
+doc AUTHORS THANKS
+changelog NEWS
+# No development docs
+rm -rf ${PKG}${SYS_DIR[html]}
+}