changeset 139:c37e2998b4a2

translated package: libgcrypt
author Volker Grabsch <vog@notjusthosting.com>
date Sat, 08 Nov 2008 19:49:37 +0100
parents 78553e232e35
children cc9bce2a4451
files src/libgcrypt.mk
diffstat 1 files changed, 29 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/libgcrypt.mk	Sat Nov 08 19:49:37 2008 +0100
@@ -0,0 +1,29 @@
+# libgcrypt
+# ftp://ftp.gnupg.org/gcrypt/libgcrypt/
+
+PKG            := libgcrypt
+$(PKG)_VERSION := 1.4.0
+$(PKG)_SUBDIR  := libgcrypt-$($(PKG)_VERSION)
+$(PKG)_FILE    := libgcrypt-$($(PKG)_VERSION).tar.bz2
+$(PKG)_URL     := ftp://ftp.gnupg.org/gcrypt/libgcrypt/$($(PKG)_FILE)
+$(PKG)_DEPS    := gcc libgpg_error
+
+define $(PKG)_UPDATE
+    wget -q -O- 'ftp://ftp.gnupg.org/gcrypt/libgcrypt/' | \
+    $(SED) -n 's,.*libgcrypt-\([0-9][^>]*\)\.tar.*,\1,p' | \
+    tail -1
+endef
+
+define $(PKG)_BUILD
+    $(SED) '26i\#include <ws2tcpip.h>' -i '$(1)/src/gcrypt.h.in'
+    $(SED) '26i\#include <ws2tcpip.h>' -i '$(1)/src/ath.h'
+    $(SED) 's,sys/times.h,sys/time.h,' -i '$(1)/cipher/random.c'
+    # wine confuses the cross-compiling detection, so set it explicitly
+    $(SED) 's,cross_compiling=no,cross_compiling=yes,' -i '$(1)/configure'
+    cd '$(1)' && ./configure \
+        --host='$(TARGET)' \
+        --disable-shared \
+        --prefix='$(PREFIX)/$(TARGET)' \
+        --with-gpg-error-prefix='$(PREFIX)/$(TARGET)'
+    $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
+endef