summaryrefslogtreecommitdiff
path: root/data/gnupg2
diff options
context:
space:
mode:
authorSam Bingner <sam@bingner.com>2018-08-15 08:47:41 -1000
committerSam Bingner <sam@bingner.com>2018-08-15 08:47:41 -1000
commit597e1a4044999195bcdbf5bc62bf8bcbdb31990b (patch)
treeb8081e42b432236da8b599051fb026e3599011c1 /data/gnupg2
parentdc95bec98f232970a41c9815636efa3b9135fcad (diff)
Update gnupg2 to 2.2.9
Diffstat (limited to 'data/gnupg2')
l---------data/gnupg2/_metadata/gnupth.dep1
l---------data/gnupg2/_metadata/gnutls.dep1
l---------data/gnupg2/_metadata/maintainer2
l---------data/gnupg2/_metadata/npth.dep1
-rw-r--r--data/gnupg2/_metadata/version2
-rw-r--r--data/gnupg2/extern.diff328
-rw-r--r--data/gnupg2/gnupg-2.0.8.tar.bz2bin3654523 -> 0 bytes
-rw-r--r--data/gnupg2/gnupg-2.2.9.tar.bz2bin0 -> 6659547 bytes
-rw-r--r--data/gnupg2/gnupth.diff28
-rw-r--r--data/gnupg2/make.sh5
10 files changed, 334 insertions, 34 deletions
diff --git a/data/gnupg2/_metadata/gnupth.dep b/data/gnupg2/_metadata/gnupth.dep
deleted file mode 120000
index cc4ec2bde..000000000
--- a/data/gnupg2/_metadata/gnupth.dep
+++ /dev/null
@@ -1 +0,0 @@
-../../gnupth \ No newline at end of file
diff --git a/data/gnupg2/_metadata/gnutls.dep b/data/gnupg2/_metadata/gnutls.dep
new file mode 120000
index 000000000..2dbb733a2
--- /dev/null
+++ b/data/gnupg2/_metadata/gnutls.dep
@@ -0,0 +1 @@
+../../gnutls \ No newline at end of file
diff --git a/data/gnupg2/_metadata/maintainer b/data/gnupg2/_metadata/maintainer
index 0fa66e077..573d7ebef 120000
--- a/data/gnupg2/_metadata/maintainer
+++ b/data/gnupg2/_metadata/maintainer
@@ -1 +1 @@
-../../../people/saurik \ No newline at end of file
+../../../people/sbingner \ No newline at end of file
diff --git a/data/gnupg2/_metadata/npth.dep b/data/gnupg2/_metadata/npth.dep
new file mode 120000
index 000000000..ba035bc31
--- /dev/null
+++ b/data/gnupg2/_metadata/npth.dep
@@ -0,0 +1 @@
+../../npth \ No newline at end of file
diff --git a/data/gnupg2/_metadata/version b/data/gnupg2/_metadata/version
index 815e68dd2..a6333e400 100644
--- a/data/gnupg2/_metadata/version
+++ b/data/gnupg2/_metadata/version
@@ -1 +1 @@
-2.0.8
+2.2.9
diff --git a/data/gnupg2/extern.diff b/data/gnupg2/extern.diff
new file mode 100644
index 000000000..883324693
--- /dev/null
+++ b/data/gnupg2/extern.diff
@@ -0,0 +1,328 @@
+diff -ur gnupg-2.2.9/agent/agent.h gnupg-2.2.9+iPhone/agent/agent.h
+--- gnupg-2.2.9/agent/agent.h 2018-06-12 01:25:39.000000000 -1000
++++ gnupg-2.2.9+iPhone/agent/agent.h 2018-08-15 08:34:08.000000000 -1000
+@@ -55,6 +55,7 @@
+
+
+ /* A large struct name "opt" to keep global flags */
++EXTERN_UNLESS_MAIN_MODULE
+ struct
+ {
+ unsigned int debug; /* Debug flags (DBG_foo_VALUE) */
+diff -ur gnupg-2.2.9/agent/gpg-agent.c gnupg-2.2.9+iPhone/agent/gpg-agent.c
+--- gnupg-2.2.9/agent/gpg-agent.c 2018-06-06 06:29:59.000000000 -1000
++++ gnupg-2.2.9+iPhone/agent/gpg-agent.c 2018-08-14 22:16:12.000000000 -1000
+@@ -50,9 +50,11 @@
+ #include <npth.h>
+
+ #define GNUPG_COMMON_NEED_AFLOCAL
++#define INCLUDED_BY_MAIN_MODULE 1
+ #include "agent.h"
+ #include <assuan.h> /* Malloc hooks and socket wrappers. */
+
++#include "../common/iobuf.h"
+ #include "../common/i18n.h"
+ #include "../common/sysutils.h"
+ #include "../common/gc-opt-flags.h"
+diff -ur gnupg-2.2.9/agent/preset-passphrase.c gnupg-2.2.9+iPhone/agent/preset-passphrase.c
+--- gnupg-2.2.9/agent/preset-passphrase.c 2017-08-28 00:22:54.000000000 -1000
++++ gnupg-2.2.9+iPhone/agent/preset-passphrase.c 2018-08-14 22:16:12.000000000 -1000
+@@ -44,6 +44,7 @@
+ # include <windows.h> /* To initialize the sockets. fixme */
+ #endif
+
++#define INCLUDED_BY_MAIN_MODULE 1
+ #include "agent.h"
+ #include "../common/simple-pwquery.h"
+ #include "../common/i18n.h"
+diff -ur gnupg-2.2.9/agent/protect-tool.c gnupg-2.2.9+iPhone/agent/protect-tool.c
+--- gnupg-2.2.9/agent/protect-tool.c 2018-03-26 20:13:47.000000000 -1000
++++ gnupg-2.2.9+iPhone/agent/protect-tool.c 2018-08-14 22:22:40.000000000 -1000
+@@ -38,7 +38,9 @@
+ #include <fcntl.h> /* for setmode() */
+ #endif
+
++#define INCLUDED_BY_MAIN_MODULE 1
+ #include "agent.h"
++#include "../common/iobuf.h"
+ #include "../common/i18n.h"
+ #include "../common/get-passphrase.h"
+ #include "../common/sysutils.h"
+diff -ur gnupg-2.2.9/agent/t-protect.c gnupg-2.2.9+iPhone/agent/t-protect.c
+--- gnupg-2.2.9/agent/t-protect.c 2017-12-07 20:40:06.000000000 -1000
++++ gnupg-2.2.9+iPhone/agent/t-protect.c 2018-08-14 22:16:12.000000000 -1000
+@@ -23,6 +23,7 @@
+ #include <stdlib.h>
+ #include <assert.h>
+
++#define INCLUDED_BY_MAIN_MODULE 1
+ #include "agent.h"
+
+
+diff -ur gnupg-2.2.9/common/iobuf.h gnupg-2.2.9+iPhone/common/iobuf.h
+--- gnupg-2.2.9/common/iobuf.h 2018-06-12 01:25:39.000000000 -1000
++++ gnupg-2.2.9+iPhone/common/iobuf.h 2018-08-14 22:16:12.000000000 -1000
+@@ -250,7 +250,7 @@
+ };
+
+ #ifndef EXTERN_UNLESS_MAIN_MODULE
+-#if defined (__riscos__) && !defined (INCLUDED_BY_MAIN_MODULE)
++#if (defined (__riscos__) || defined (__APPLE__)) && !defined (INCLUDED_BY_MAIN_MODULE)
+ #define EXTERN_UNLESS_MAIN_MODULE extern
+ #else
+ #define EXTERN_UNLESS_MAIN_MODULE
+diff -ur gnupg-2.2.9/common/t-iobuf.c gnupg-2.2.9+iPhone/common/t-iobuf.c
+--- gnupg-2.2.9/common/t-iobuf.c 2017-08-28 00:22:54.000000000 -1000
++++ gnupg-2.2.9+iPhone/common/t-iobuf.c 2018-08-14 22:16:12.000000000 -1000
+@@ -4,6 +4,7 @@
+ #include <assert.h>
+ #include <stdlib.h>
+
++#define INCLUDED_BY_MAIN_MODULE 1
+ #include "iobuf.h"
+ #include "stringhelp.h"
+
+diff -ur gnupg-2.2.9/common/t-name-value.c gnupg-2.2.9+iPhone/common/t-name-value.c
+--- gnupg-2.2.9/common/t-name-value.c 2017-08-28 00:22:54.000000000 -1000
++++ gnupg-2.2.9+iPhone/common/t-name-value.c 2018-08-14 22:16:12.000000000 -1000
+@@ -25,6 +25,8 @@
+ #include <unistd.h>
+ #include <sys/stat.h>
+
++#define INCLUDED_BY_MAIN_MODULE 1
++#include "iobuf.h"
+ #include "util.h"
+ #include "name-value.h"
+
+diff -ur gnupg-2.2.9/common/t-strlist.c gnupg-2.2.9+iPhone/common/t-strlist.c
+--- gnupg-2.2.9/common/t-strlist.c 2017-08-28 00:22:54.000000000 -1000
++++ gnupg-2.2.9+iPhone/common/t-strlist.c 2018-08-14 22:16:12.000000000 -1000
+@@ -31,6 +31,8 @@
+ #include <config.h>
+ #include <string.h>
+
++#define INCLUDED_BY_MAIN_MODULE 1
++#include "iobuf.h"
+ #include "strlist.h"
+
+ #include "t-support.h"
+diff -ur gnupg-2.2.9/common/util.h gnupg-2.2.9+iPhone/common/util.h
+--- gnupg-2.2.9/common/util.h 2018-06-12 01:25:39.000000000 -1000
++++ gnupg-2.2.9+iPhone/common/util.h 2018-08-15 08:24:16.000000000 -1000
+@@ -55,6 +55,13 @@
+ # define GPG_ERR_DNS_TIMEOUT 718
+ #endif
+
++#ifndef EXTERN_UNLESS_MAIN_MODULE
++#if (defined (__riscos__) || defined (__APPLE__)) && !defined (INCLUDED_BY_MAIN_MODULE)
++#define EXTERN_UNLESS_MAIN_MODULE extern
++#else
++#define EXTERN_UNLESS_MAIN_MODULE
++#endif
++#endif
+
+ /* Hash function used with libksba. */
+ #define HASH_FNC ((void (*)(void *, const void*,size_t))gcry_md_write)
+diff -ur gnupg-2.2.9/dirmngr/dirmngr.c gnupg-2.2.9+iPhone/dirmngr/dirmngr.c
+--- gnupg-2.2.9/dirmngr/dirmngr.c 2018-06-12 01:25:39.000000000 -1000
++++ gnupg-2.2.9+iPhone/dirmngr/dirmngr.c 2018-08-14 22:28:37.000000000 -1000
+@@ -56,10 +56,12 @@
+
+
+ #define GNUPG_COMMON_NEED_AFLOCAL
++#define INCLUDED_BY_MAIN_MODULE 1
+ #include "dirmngr.h"
+
+ #include <assuan.h>
+
++#include "../common/iobuf.h"
+ #include "certcache.h"
+ #include "crlcache.h"
+ #include "crlfetch.h"
+diff -ur gnupg-2.2.9/dirmngr/dirmngr.h gnupg-2.2.9+iPhone/dirmngr/dirmngr.h
+--- gnupg-2.2.9/dirmngr/dirmngr.h 2017-12-11 00:30:45.000000000 -1000
++++ gnupg-2.2.9+iPhone/dirmngr/dirmngr.h 2018-08-15 08:35:31.000000000 -1000
+@@ -75,6 +75,7 @@
+
+
+ /* A large struct named "opt" to keep global flags. */
++EXTERN_UNLESS_MAIN_MODULE
+ struct
+ {
+ unsigned int debug; /* debug flags (DBG_foo_VALUE) */
+diff -ur gnupg-2.2.9/g10/options.h gnupg-2.2.9+iPhone/g10/options.h
+--- gnupg-2.2.9/g10/options.h 2018-06-12 01:25:39.000000000 -1000
++++ gnupg-2.2.9+iPhone/g10/options.h 2018-08-15 08:31:23.000000000 -1000
+@@ -30,15 +30,6 @@
+ #include "../common/session-env.h"
+ #include "../common/compliance.h"
+
+-#ifndef EXTERN_UNLESS_MAIN_MODULE
+-/* Norcraft can't cope with common symbols */
+-#if defined (__riscos__) && !defined (INCLUDED_BY_MAIN_MODULE)
+-#define EXTERN_UNLESS_MAIN_MODULE extern
+-#else
+-#define EXTERN_UNLESS_MAIN_MODULE
+-#endif
+-#endif
+-
+ /* Declaration of a keyserver spec type. The definition is found in
+ ../common/keyserver.h. */
+ struct keyserver_spec;
+diff -ur gnupg-2.2.9/kbx/kbxutil.c gnupg-2.2.9+iPhone/kbx/kbxutil.c
+--- gnupg-2.2.9/kbx/kbxutil.c 2018-06-12 01:25:39.000000000 -1000
++++ gnupg-2.2.9+iPhone/kbx/kbxutil.c 2018-08-14 22:16:12.000000000 -1000
+@@ -29,6 +29,8 @@
+ #include <assert.h>
+
+ #include <gpg-error.h>
++#define INCLUDED_BY_MAIN_MODULE 1
++#include "../common/iobuf.h"
+ #include "../common/logging.h"
+ #include "../common/argparse.h"
+ #include "../common/stringhelp.h"
+diff -ur gnupg-2.2.9/scd/scdaemon.c gnupg-2.2.9+iPhone/scd/scdaemon.c
+--- gnupg-2.2.9/scd/scdaemon.c 2018-03-21 08:43:33.000000000 -1000
++++ gnupg-2.2.9+iPhone/scd/scdaemon.c 2018-08-14 22:25:31.000000000 -1000
+@@ -38,12 +38,14 @@
+ #include <npth.h>
+
+ #define GNUPG_COMMON_NEED_AFLOCAL
++#define INCLUDED_BY_MAIN_MODULE 1
+ #include "scdaemon.h"
+ #include <ksba.h>
+ #include <gcrypt.h>
+
+ #include <assuan.h> /* malloc hooks */
+
++#include "../common/iobuf.h"
+ #include "../common/i18n.h"
+ #include "../common/sysutils.h"
+ #include "app-common.h"
+diff -ur gnupg-2.2.9/scd/scdaemon.h gnupg-2.2.9+iPhone/scd/scdaemon.h
+--- gnupg-2.2.9/scd/scdaemon.h 2017-08-28 00:22:54.000000000 -1000
++++ gnupg-2.2.9+iPhone/scd/scdaemon.h 2018-08-15 08:35:05.000000000 -1000
+@@ -44,6 +44,7 @@
+
+
+ /* A large struct name "opt" to keep global flags. */
++EXTERN_UNLESS_MAIN_MODULE
+ struct
+ {
+ unsigned int debug; /* Debug flags (DBG_foo_VALUE). */
+diff -ur gnupg-2.2.9/sm/gpgsm.c gnupg-2.2.9+iPhone/sm/gpgsm.c
+--- gnupg-2.2.9/sm/gpgsm.c 2018-06-12 01:25:39.000000000 -1000
++++ gnupg-2.2.9+iPhone/sm/gpgsm.c 2018-08-14 22:16:12.000000000 -1000
+@@ -28,6 +28,7 @@
+ #include <fcntl.h>
+ /*#include <mcheck.h>*/
+
++#define INCLUDED_BY_MAIN_MODULE 1
+ #include "gpgsm.h"
+ #include <gcrypt.h>
+ #include <assuan.h> /* malloc hooks */
+diff -ur gnupg-2.2.9/sm/gpgsm.h gnupg-2.2.9+iPhone/sm/gpgsm.h
+--- gnupg-2.2.9/sm/gpgsm.h 2018-06-12 01:25:39.000000000 -1000
++++ gnupg-2.2.9+iPhone/sm/gpgsm.h 2018-08-15 08:36:03.000000000 -1000
+@@ -52,6 +52,7 @@
+
+
+ /* A large struct named "opt" to keep global flags. */
++EXTERN_UNLESS_MAIN_MODULE
+ struct
+ {
+ unsigned int debug; /* debug flags (DBG_foo_VALUE) */
+diff -ur gnupg-2.2.9/tools/gpg-check-pattern.c gnupg-2.2.9+iPhone/tools/gpg-check-pattern.c
+--- gnupg-2.2.9/tools/gpg-check-pattern.c 2017-08-28 00:22:54.000000000 -1000
++++ gnupg-2.2.9+iPhone/tools/gpg-check-pattern.c 2018-08-15 08:26:34.000000000 -1000
+@@ -40,6 +40,8 @@
+ #include <regex.h>
+ #include <ctype.h>
+
++#define INCLUDED_BY_MAIN_MODULE 1
++#include "../common/iobuf.h"
+ #include "../common/util.h"
+ #include "../common/i18n.h"
+ #include "../common/sysutils.h"
+diff -ur gnupg-2.2.9/tools/gpg-connect-agent.c gnupg-2.2.9+iPhone/tools/gpg-connect-agent.c
+--- gnupg-2.2.9/tools/gpg-connect-agent.c 2017-08-28 00:22:54.000000000 -1000
++++ gnupg-2.2.9+iPhone/tools/gpg-connect-agent.c 2018-08-15 08:22:21.000000000 -1000
+@@ -29,6 +29,8 @@
+ #include <unistd.h>
+ #include <assert.h>
+
++#define INCLUDED_BY_MAIN_MODULE 1
++#include "../common/iobuf.h"
+ #include "../common/i18n.h"
+ #include "../common/util.h"
+ #include "../common/asshelp.h"
+diff -ur gnupg-2.2.9/tools/gpg-wks-client.c gnupg-2.2.9+iPhone/tools/gpg-wks-client.c
+--- gnupg-2.2.9/tools/gpg-wks-client.c 2018-02-20 04:09:35.000000000 -1000
++++ gnupg-2.2.9+iPhone/tools/gpg-wks-client.c 2018-08-15 08:26:19.000000000 -1000
+@@ -23,6 +23,8 @@
+ #include <stdlib.h>
+ #include <string.h>
+
++#define INCLUDED_BY_MAIN_MODULE 1
++#include "../common/iobuf.h"
+ #include "../common/util.h"
+ #include "../common/status.h"
+ #include "../common/i18n.h"
+diff -ur gnupg-2.2.9/tools/gpg-wks.h gnupg-2.2.9+iPhone/tools/gpg-wks.h
+--- gnupg-2.2.9/tools/gpg-wks.h 2018-02-20 04:06:52.000000000 -1000
++++ gnupg-2.2.9+iPhone/tools/gpg-wks.h 2018-08-14 22:16:12.000000000 -1000
+@@ -30,6 +30,7 @@
+
+
+ /* We keep all global options in the structure OPT. */
++EXTERN_UNLESS_MAIN_MODULE
+ struct
+ {
+ int verbose;
+diff -ur gnupg-2.2.9/tools/gpgconf.c gnupg-2.2.9+iPhone/tools/gpgconf.c
+--- gnupg-2.2.9/tools/gpgconf.c 2018-04-09 02:40:19.000000000 -1000
++++ gnupg-2.2.9+iPhone/tools/gpgconf.c 2018-08-14 22:29:44.000000000 -1000
+@@ -25,7 +25,9 @@
+ #include <string.h>
+ #include <unistd.h>
+
++#define INCLUDED_BY_MAIN_MODULE 1
+ #include "gpgconf.h"
++#include "../common/iobuf.h"
+ #include "../common/i18n.h"
+ #include "../common/sysutils.h"
+ #include "../common/init.h"
+diff -ur gnupg-2.2.9/tools/gpgconf.h gnupg-2.2.9+iPhone/tools/gpgconf.h
+--- gnupg-2.2.9/tools/gpgconf.h 2017-12-18 06:07:27.000000000 -1000
++++ gnupg-2.2.9+iPhone/tools/gpgconf.h 2018-08-15 08:32:29.000000000 -1000
+@@ -23,6 +23,7 @@
+ #include "../common/util.h"
+
+ /* We keep all global options in the structure OPT. */
++EXTERN_UNLESS_MAIN_MODULE
+ struct
+ {
+ int verbose; /* Verbosity level. */
+diff -ur gnupg-2.2.9/tools/gpgtar.c gnupg-2.2.9+iPhone/tools/gpgtar.c
+--- gnupg-2.2.9/tools/gpgtar.c 2017-08-28 00:22:54.000000000 -1000
++++ gnupg-2.2.9+iPhone/tools/gpgtar.c 2018-08-15 08:25:45.000000000 -1000
+@@ -34,6 +34,8 @@
+ #include <string.h>
+ #include <assert.h>
+
++#define INCLUDED_BY_MAIN_MODULE 1
++#include "../common/iobuf.h"
+ #include "../common/util.h"
+ #include "../common/i18n.h"
+ #include "../common/sysutils.h"
+diff -ur gnupg-2.2.9/tools/gpgtar.h gnupg-2.2.9+iPhone/tools/gpgtar.h
+--- gnupg-2.2.9/tools/gpgtar.h 2017-08-28 00:22:54.000000000 -1000
++++ gnupg-2.2.9+iPhone/tools/gpgtar.h 2018-08-15 08:31:48.000000000 -1000
+@@ -24,6 +24,7 @@
+ #include "../common/strlist.h"
+
+ /* We keep all global options in the structure OPT. */
++EXTERN_UNLESS_MAIN_MODULE
+ struct
+ {
+ int verbose;
diff --git a/data/gnupg2/gnupg-2.0.8.tar.bz2 b/data/gnupg2/gnupg-2.0.8.tar.bz2
deleted file mode 100644
index aad5b3e71..000000000
--- a/data/gnupg2/gnupg-2.0.8.tar.bz2
+++ /dev/null
Binary files differ
diff --git a/data/gnupg2/gnupg-2.2.9.tar.bz2 b/data/gnupg2/gnupg-2.2.9.tar.bz2
new file mode 100644
index 000000000..26298670f
--- /dev/null
+++ b/data/gnupg2/gnupg-2.2.9.tar.bz2
Binary files differ
diff --git a/data/gnupg2/gnupth.diff b/data/gnupg2/gnupth.diff
deleted file mode 100644
index aa46248cb..000000000
--- a/data/gnupg2/gnupth.diff
+++ /dev/null
@@ -1,28 +0,0 @@
-diff -r -u gnupg-2.0.8/m4/gnupg-pth.m4 gnupg-2.0.8+iPhone/m4/gnupg-pth.m4
---- gnupg-2.0.8/m4/gnupg-pth.m4 2007-05-30 10:40:00.000000000 +0000
-+++ gnupg-2.0.8+iPhone/m4/gnupg-pth.m4 2008-01-01 11:49:03.000000000 +0000
-@@ -51,9 +51,9 @@
- _gnupg_pth_save_cflags=$CFLAGS
- _gnupg_pth_save_ldflags=$LDFLAGS
- _gnupg_pth_save_libs=$LIBS
-- CFLAGS="$CFLAGS `$PTH_CONFIG --cflags`"
-- LDFLAGS="$LDFLAGS `$PTH_CONFIG --ldflags`"
-- LIBS="$LIBS `$PTH_CONFIG --libs --all`"
-+ CFLAGS=
-+ LDFLAGS=
-+ LIBS=-lpth
- AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pth.h>
- ],
- [[ pth_init ();]])],
-@@ -92,9 +92,8 @@
- if test "$PTH_CONFIG" != "no"; then
- GNUPG_PTH_VERSION_CHECK($tmp)
- if test $have_pth = yes; then
-- PTH_CFLAGS=`$PTH_CONFIG --cflags`
-- PTH_LIBS=`$PTH_CONFIG --ldflags`
-- PTH_LIBS="$PTH_LIBS `$PTH_CONFIG --libs --all`"
-+ PTH_CFLAGS=
-+ PTH_LIBS=-lpth
- AC_DEFINE(HAVE_PTH, 1,
- [Defined if the GNU Pth is available])
- fi
diff --git a/data/gnupg2/make.sh b/data/gnupg2/make.sh
index 6c4c8cf74..e733d6568 100644
--- a/data/gnupg2/make.sh
+++ b/data/gnupg2/make.sh
@@ -1,5 +1,4 @@
pkg:setup
-autoconf
-pkg:configure --with-ksba-prefix="$(PKG_DEST_ libksba)/usr" --with-libassuan-prefix="$(PKG_DEST_ libassuan)/usr" --with-pth-prefix="$(PKG_DEST_ gnupth)/usr" --sysconfdir=/etc
-make
+pkg:configure --with-ksba-prefix="$(PKG_DEST_ libksba)/usr" --with-libassuan-prefix="$(PKG_DEST_ libassuan)/usr" --with-npth-prefix="$(PKG_DEST_ npth)/usr" --sysconfdir=/etc --with-gpg-error-prefix="$(PKG_DEST_ libgpg-error)/usr" --with-libgcrypt-prefix="$(PKG_DEST_ gcrypt)/usr"
+make -j8
pkg:install