changeset 140:cc9bce2a4451

translated package: gnutls
author Volker Grabsch <vog@notjusthosting.com>
date Sat, 08 Nov 2008 19:56:29 +0100
parents c37e2998b4a2
children 13f2668f37a8
files src/gnutls.mk
diffstat 1 files changed, 30 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/gnutls.mk	Sat Nov 08 19:56:29 2008 +0100
@@ -0,0 +1,30 @@
+# GnuTLS
+# http://www.gnu.org/software/gnutls/
+
+PKG            := gnutls
+$(PKG)_VERSION := 1.6.3
+$(PKG)_SUBDIR  := gnutls-$($(PKG)_VERSION)
+$(PKG)_FILE    := gnutls-$($(PKG)_VERSION).tar.bz2
+$(PKG)_URL     := ftp://ftp.gnutls.org/pub/gnutls/$($(PKG)_FILE)
+$(PKG)_DEPS    := gcc libgcrypt
+
+define $(PKG)_UPDATE
+    wget -q -O- 'http://www.gnu.org/software/gnutls/news.html' | \
+    $(SED) -n 's,.*GnuTLS \([0-9][^>]*\)</a>.*stable branch.*,\1,p' | \
+    head -1
+endef
+
+define $(PKG)_BUILD
+    echo '/* DEACTIVATED */' >'$(1)/gl/gai_strerror.c'
+    cd '$(1)' && ./configure \
+        --host='$(TARGET)' \
+        --disable-shared \
+        --prefix='$(PREFIX)/$(TARGET)' \
+        --with-libgcrypt-prefix='$(PREFIX)/$(TARGET)' \
+        --disable-nls \
+        --with-included-opencdk \
+        --with-included-libtasn1 \
+        --with-included-libcfg \
+        --with-included-lzo
+    $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= defexec_DATA=
+endef