# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libgcrypt/libgcrypt-1.5.3.ebuild,v 1.12 2013/08/08 12:37:17 ago Exp $ EAPI=5 AUTOTOOLS_AUTORECONF=1 inherit autotools-utils multilib-minimal DESCRIPTION="General purpose crypto library based on the code used in GnuPG" HOMEPAGE="http://www.gnupg.org/" SRC_URI="mirror://gnupg/libgcrypt/${P}.tar.bz2 ftp://ftp.gnupg.org/gcrypt/${PN}/${P}.tar.bz2" LICENSE="LGPL-2.1 MIT" SLOT="0/11" # subslot = soname major version KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="static-libs" RDEPEND=">=dev-libs/libgpg-error-1.8[${MULTILIB_USEDEP}]" DEPEND="${RDEPEND}" DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) PATCHES=( "${FILESDIR}"/${PN}-1.5.0-uscore.patch "${FILESDIR}"/${PN}-multilib-syspath.patch ) src_prepare() { default multilib_copy_sources } multilib_src_configure() { local myeconfargs=( --disable-padlock-support # bug 201917 --disable-dependency-tracking --enable-noexecstack --disable-O-flag-munging $(use_enable static-libs static) # disabled due to various applications requiring privileges # after libgcrypt drops them (bug #468616) --without-capabilities # http://trac.videolan.org/vlc/ticket/620 # causes bus-errors on sparc64-solaris $([[ ${CHOST} == *86*-darwin* ]] && echo "--disable-asm") $([[ ${CHOST} == sparcv9-*-solaris* ]] && echo "--disable-asm") ) autotools-utils_src_configure } multilib_src_install() { default if multilib_is_native_abi; then # Move files back. if path_exists -o "${ED}"/tmp/libgcrypt-config.*; then mv "${ED}"/tmp/libgcrypt-config.* "${ED}"/usr/bin || die fi else # Preserve ABI-variant of libgcrypt-config, # then drop all the executables mkdir -p "${ED}"/tmp || die mv "${ED}"/usr/bin/libgcrypt-config "${ED}"/tmp/libgcrypt-config.${ABI} || die rm -r "${ED}"/usr/bin || die fi }