This fixes a segfault because gnupg/g10/options.h struct opt is otherwise not shared between the different compilation units, resulting in opt.homedir being NULL when passed to make_filename. $ gpg1 -i gpg: signal 11 caught ... exiting Segmentation fault (gdb) bt #0 0x00007f17bb2185e2 in strlen (s=s@entry=0x0) at src/string/strlen.c:17 #1 0x0000000000460ea0 in make_filename (first_part=first_part@entry=0x0) at gnupg-1.4.23/util/fileutil.c:174 #2 0x000000000040ee42 in keydb_add_resource (url=url@entry=0x46bfe3 "secring.gpg", flags=flags@entry=4, secret=secret@entry=1) at gnupg-1.4.23/g10/keydb.c:238 #3 0x00000000004062ee in main (argc=<optimized out>, argv=<optimized out>) at gnupg-1.4.23/g10/gpg.c:3323 Signed-off-by: Tjeu Kayim <15987676+TjeuKayim@users.noreply.github.com>
112 lines
2.9 KiB
Makefile
112 lines
2.9 KiB
Makefile
#
|
|
# Copyright (C) 2006-2015 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=gnupg
|
|
PKG_VERSION:=1.4.23
|
|
PKG_RELEASE:=5
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://gnupg.org/ftp/gcrypt/gnupg
|
|
PKG_HASH:=c9462f17e651b6507848c08c430c791287cd75491f8b5a8b50c6ed46b12678ba
|
|
|
|
PKG_LICENSE:=GPL-3.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/gnupg/Default
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
SUBMENU:=Encryption
|
|
DEPENDS:=+zlib +libncurses +libreadline
|
|
TITLE:=GNU privacy guard - a free PGP replacement
|
|
URL:=http://www.gnupg.org/
|
|
endef
|
|
|
|
define Package/gnupg
|
|
$(call Package/gnupg/Default)
|
|
MENU:=1
|
|
ALTERNATIVES:=200:/usr/bin/gpg:/usr/bin/gpg1
|
|
endef
|
|
|
|
define Package/gpgv
|
|
$(call Package/gnupg/Default)
|
|
TITLE:=GnuPG signature verification only
|
|
ALTERNATIVES:=200:/usr/bin/gpgv:/usr/bin/gpgv1
|
|
endef
|
|
|
|
define Package/gnupg-utils
|
|
$(call Package/gnupg/Default)
|
|
DEPENDS:=gnupg +libcurl
|
|
TITLE:=Key management utilities for GnuPG
|
|
endef
|
|
|
|
define Package/gnupg/description
|
|
GnuPG is GNU's tool for secure communication and data storage.
|
|
It can be used to encrypt data and to create digital signatures.
|
|
It includes an advanced key management facility and is compliant
|
|
with the proposed OpenPGP Internet standard as described in RFC2440.
|
|
.
|
|
GnuPG does not use any patented algorithms so it cannot be compatible
|
|
with PGP2 because it uses IDEA (which is patented worldwide).
|
|
endef
|
|
|
|
define Package/gpgv/description
|
|
GPGv is a stripped down version of GnuPG that only checks signatures.
|
|
.
|
|
GnuPG does not use any patented algorithms so it cannot be compatible
|
|
with PGP2 because it uses IDEA (which is patented worldwide).
|
|
endef
|
|
|
|
define Package/gnupg-utils/description
|
|
Key management utilies for GnuPG.
|
|
This package is needed to import keys from a keyserver.
|
|
endef
|
|
|
|
CONFIGURE_ARGS += \
|
|
--disable-rpath \
|
|
--disable-asm \
|
|
--disable-gnupg-iconv \
|
|
--disable-card-support \
|
|
--disable-agent-support \
|
|
--disable-bzip2 \
|
|
--disable-ldap \
|
|
--disable-finger \
|
|
--disable-dns-srv \
|
|
--disable-regex
|
|
|
|
MAKE_FLAGS += \
|
|
SUBDIRS="m4 intl zlib util mpi cipher tools g10 keyserver ${checks}" \
|
|
|
|
TARGET_CFLAGS += -fcommon
|
|
|
|
define Package/gnupg/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gpg $(1)/usr/bin/gpg1
|
|
endef
|
|
|
|
define Package/gpgv/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/gpgv $(1)/usr/bin/gpgv1
|
|
endef
|
|
|
|
define Package/gnupg-utils/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/gnupg
|
|
for file in gpgkeys_curl gpgkeys_hkp; do \
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/lib/gnupg/$$$$file \
|
|
$(1)/usr/lib/gnupg/; \
|
|
done
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,gnupg))
|
|
$(eval $(call BuildPackage,gpgv))
|
|
$(eval $(call BuildPackage,gnupg-utils))
|