| 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.9PKG_RELEASE:=		1PKG_MD5SUM:=		3537dedea45cc09e8d88d1ef4f774246PKG_DESCR:=		Gnu Privacy GuardPKG_SECTION:=		textPKG_DEPENDS:=		libreadlinePKG_URL:=		http://www.gnu.orgPKG_SITES:=		ftp://ftp.franken.de/pub/crypt/mirror/ftp.gnupg.org/gcrypt/gnupg/ \			ftp://ftp.gnupg.org/gcrypt/gnupg/include ${TOPDIR}/mk/package.mk$(eval $(call PKG_template,GPG,gpg,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))CONFIGURE_STYLE:=	gnuCONFIGURE_ENV+=		ac_cv_c_bigendian=no \			ac_cv_sizeof_off_t=8CONFIGURE_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 \			--enable-fake-curl \			--disable-regexBUILD_STYLE:=		autodo-install:	${INSTALL_DIR} ${IDIR_GPG}/usr/bin/	${INSTALL_BIN} ${WRKBUILD}/g10/gpg ${IDIR_GPG}/usr/bin/# we need root privileges for secure memory (locked pages)	chmod u+s ${IDIR_GPG}/usr/bin/gpginclude ${TOPDIR}/mk/pkg-bottom.mk
 |