summaryrefslogtreecommitdiff
path: root/security/gpgme
diff options
context:
space:
mode:
authoruebayasi <uebayasi@pkgsrc.org>2002-03-17 13:33:40 +0000
committeruebayasi <uebayasi@pkgsrc.org>2002-03-17 13:33:40 +0000
commit15c7d990d04a7fc74e799b5ce04f36194e757cea (patch)
tree3f3ad0f9b4f7d9478b6b024814741340a84ff0bc /security/gpgme
parentd7696b5a9551d2736a54d826094b319af63ee20e (diff)
downloadpkgsrc-15c7d990d04a7fc74e799b5ce04f36194e757cea.tar.gz
Initial import of GPGME 0.3.0.
From DESCR: GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for applications. It provides a High-Level Crypto API for encryption, decryption, signing, signature verification and key management.
Diffstat (limited to 'security/gpgme')
-rw-r--r--security/gpgme/DESCR4
-rw-r--r--security/gpgme/Makefile15
-rw-r--r--security/gpgme/PLIST9
-rw-r--r--security/gpgme/distinfo6
-rw-r--r--security/gpgme/patches/patch-aa12
-rw-r--r--security/gpgme/patches/patch-ab14
6 files changed, 60 insertions, 0 deletions
diff --git a/security/gpgme/DESCR b/security/gpgme/DESCR
new file mode 100644
index 00000000000..26a3a6aa608
--- /dev/null
+++ b/security/gpgme/DESCR
@@ -0,0 +1,4 @@
+GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG
+easier for applications. It provides a High-Level Crypto API for
+encryption, decryption, signing, signature verification and key
+management.
diff --git a/security/gpgme/Makefile b/security/gpgme/Makefile
new file mode 100644
index 00000000000..40acce475e8
--- /dev/null
+++ b/security/gpgme/Makefile
@@ -0,0 +1,15 @@
+# $NetBSD: Makefile,v 1.1.1.1 2002/03/17 13:33:40 uebayasi Exp $
+
+DISTNAME= gpgme-0.3.0
+CATEGORIES= security
+MASTER_SITES= ftp://ftp.gnupg.org/gcrypt/alpha/gpgme/
+
+MAINTAINER= oishi@ims.ac.jp
+HOMEPAGE= http://www.gnupg.org/gpgme.html
+COMMENT= GnuPG Made Easy
+
+DEPENDS+= gnupg-1.0.6:../../security/gnupg
+
+GNU_CONFIGURE= yes
+
+.include "../../mk/bsd.pkg.mk"
diff --git a/security/gpgme/PLIST b/security/gpgme/PLIST
new file mode 100644
index 00000000000..0bad9a9a7dd
--- /dev/null
+++ b/security/gpgme/PLIST
@@ -0,0 +1,9 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2002/03/17 13:33:40 uebayasi Exp $
+bin/gpgme-config
+include/gpgme.h
+lib/libgpgme.a
+lib/libgpgme.la
+lib/libgpgme.so
+lib/libgpgme.so.5
+lib/libgpgme.so.5.0
+share/aclocal/gpgme.m4
diff --git a/security/gpgme/distinfo b/security/gpgme/distinfo
new file mode 100644
index 00000000000..05673d9b09a
--- /dev/null
+++ b/security/gpgme/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.1.1.1 2002/03/17 13:33:40 uebayasi Exp $
+
+SHA1 (gpgme-0.3.0.tar.gz) = 2eb0170d854d3277fa2211d507b2dca3527fbba3
+Size (gpgme-0.3.0.tar.gz) = 434635 bytes
+SHA1 (patch-aa) = bd140dbcfe9834ec4c80d5ede5dfb76f61fc04a8
+SHA1 (patch-ab) = d73b151c643d6ae5b2a321e58291a6b48892fd03
diff --git a/security/gpgme/patches/patch-aa b/security/gpgme/patches/patch-aa
new file mode 100644
index 00000000000..c977323dc67
--- /dev/null
+++ b/security/gpgme/patches/patch-aa
@@ -0,0 +1,12 @@
+$NetBSD: patch-aa,v 1.1.1.1 2002/03/17 13:33:40 uebayasi Exp $
+--- tests/gpg/t-decrypt-verify.c.orig Tue Jan 29 17:47:41 2002
++++ tests/gpg/t-decrypt-verify.c Tue Jan 29 17:48:00 2002
+@@ -24,7 +24,7 @@
+ #include <string.h>
+ #include <assert.h>
+ #include <errno.h>
+-#include <mcheck.h>
++/*#include <mcheck.h>*/
+
+ #include <gpgme.h>
+
diff --git a/security/gpgme/patches/patch-ab b/security/gpgme/patches/patch-ab
new file mode 100644
index 00000000000..c36fbed4479
--- /dev/null
+++ b/security/gpgme/patches/patch-ab
@@ -0,0 +1,14 @@
+$NetBSD: patch-ab,v 1.1.1.1 2002/03/17 13:33:40 uebayasi Exp $
+--- tests/gpg/mkdemodirs.orig Wed Oct 17 06:08:55 2001
++++ tests/gpg/mkdemodirs Wed Jan 30 14:17:56 2002
+@@ -25,7 +25,9 @@
+ echo -n "Creating:"
+ for name in $NAMES; do
+ echo -n " $name"
+- [ -d $name ] && rm -r $name
++ if [ -d $name ]; then
++ rm -r $name
++ fi
+ mkdir $name
+ $GPGDEMO --export-secret-key -o - $name > $name/Secret.gpg
+ $GPG --homedir $name --allow-secret-key-import --import $name/Secret.gpg