| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include ${TOPDIR}/rules.mkPKG_NAME:=		gnupgPKG_VERSION:=		1.4.10PKG_RELEASE:=		1PKG_MD5SUM:=		991faf66d3352ac1452acc393c430b23PKG_DESCR:=		Gnu Privacy GuardPKG_SECTION:=		cryptoPKG_DEPENDS:=		libreadline libiconvPKG_BUILDDEP:=		readline libiconvPKG_URL:=		http://www.gnupg.org/PKG_SITES:=		ftp://ftp.gnupg.org/gcrypt/gnupg/include ${TOPDIR}/mk/package.mk$(eval $(call PKG_template,GNUPG,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))CONFIGURE_ARGS+=	--disable-asm \			--disable-gnupg-iconv \			--disable-card-support \			--disable-agent-support \			--disable-bzip2 \			--disable-exec \			--disable-ldap \			--disable-hkp \			--disable-finger \			--disable-ftp \			--disable-dns-srv \			--disable-rpath \			--enable-fake-curl \			--disable-regexpost-install:	${INSTALL_DIR} ${IDIR_GNUPG}/usr/bin/	${INSTALL_DIR} ${IDIR_GNUPG}/usr/share/gnupg	${INSTALL_DATA} ${WRKINST}/usr/share/gnupg/options.skel \		${IDIR_GNUPG}/usr/share/gnupg	${INSTALL_BIN} ${WRKINST}/usr/bin/gpg ${IDIR_GNUPG}/usr/bin/# we need root privileges for secure memory (locked pages)	chmod u+s ${IDIR_GNUPG}/usr/bin/gpginclude ${TOPDIR}/mk/pkg-bottom.mk
 |