Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 480400 | Differences between
and this patch

Collapse All | Expand All

(-)libgcrypt-1.5.3.ebuild (-5 / +16 lines)
Lines 5-11 Link Here
5
EAPI=5
5
EAPI=5
6
AUTOTOOLS_AUTORECONF=1
6
AUTOTOOLS_AUTORECONF=1
7
7
8
inherit autotools-utils
8
inherit autotools-multilib
9
9
10
DESCRIPTION="General purpose crypto library based on the code used in GnuPG"
10
DESCRIPTION="General purpose crypto library based on the code used in GnuPG"
11
HOMEPAGE="http://www.gnupg.org/"
11
HOMEPAGE="http://www.gnupg.org/"
Lines 13-23 SRC_URI="mirror://gnupg/libgcrypt/${P}.t Link Here
13
	ftp://ftp.gnupg.org/gcrypt/${PN}/${P}.tar.bz2"
13
	ftp://ftp.gnupg.org/gcrypt/${PN}/${P}.tar.bz2"
14
14
15
LICENSE="LGPL-2.1 MIT"
15
LICENSE="LGPL-2.1 MIT"
16
SLOT="0/11" # subslot = soname major version
16
SLOT="11/11" # subslot = soname major version
17
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~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"
17
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~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"
18
IUSE="static-libs"
18
IUSE="static-libs"
19
19
20
RDEPEND=">=dev-libs/libgpg-error-1.8"
20
RDEPEND=">=dev-libs/libgpg-error-1.8
21
	!dev-libs/libgcrypt:0/11
22
	abi_x86_32? (
23
		!<=app-emulation/emul-linux-x86-baselibs-20131008-r19
24
		!app-emulation/emul-linux-x86-baselibs[-abi_x86_32]
25
	)"
21
DEPEND="${RDEPEND}"
26
DEPEND="${RDEPEND}"
22
27
23
DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
28
DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
Lines 44-48 src_configure() { Link Here
44
		$([[ ${CHOST} == *86*-darwin* ]] && echo "--disable-asm")
49
		$([[ ${CHOST} == *86*-darwin* ]] && echo "--disable-asm")
45
		$([[ ${CHOST} == sparcv9-*-solaris* ]] && echo "--disable-asm")
50
		$([[ ${CHOST} == sparcv9-*-solaris* ]] && echo "--disable-asm")
46
	)
51
	)
47
	autotools-utils_src_configure
52
	autotools-multilib_src_configure
53
}
54
55
src_install() {
56
	autotools-multilib_src_install
57
58
	rm -r "${ED%/}"/usr/{bin,include,lib*/*.so,share} || die
48
}
59
}

Return to bug 480400