blob: 1933bd6a69b125f7fa8bca07986ab7a4b839415a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit gtk-doc autotools-multilib libtool eutils versionator
DESCRIPTION="A TLS 1.2 and SSL 3.0 implementation for the GNU project"
HOMEPAGE="http://www.gnutls.org/"
SRC_URI="ftp://ftp.gnutls.org/gcrypt/gnutls/v$(get_version_component_range 1-2)/${P}.tar.xz"
# LGPL-3 for libgnutls library and GPL-3 for libgnutls-extra library.
# soon to be relicensed as LGPL-2.1 unless heartbeat extension enabled.
LICENSE="GPL-3 LGPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE_LINGUAS=" en cs de fi fr it ms nl pl sv uk vi zh_CN"
IUSE="+cxx dane doc examples guile nls pkcs11 static-libs test zlib ${IUSE_LINGUAS// / linguas_}"
# heartbeat support is not disabled until re-licensing happens fullyf
# NOTICE: sys-devel/autogen is required at runtime as we
# use system libopts
RDEPEND=">=dev-libs/libtasn1-2.14[${MULTILIB_USEDEP}]
>=dev-libs/nettle-2.7[gmp,${MULTILIB_USEDEP}]
dev-libs/gmp[${MULTILIB_USEDEP}]
sys-devel/autogen[${MULTILIB_USEDEP}]
dane? ( net-dns/unbound[${MULTILIB_USEDEP}] )
guile? ( >=dev-scheme/guile-1.8[networking] )
nls? ( virtual/libintl[${MULTILIB_USEDEP}] )
pkcs11? ( >=app-crypt/p11-kit-0.11[${MULTILIB_USEDEP}] )
zlib? ( >=sys-libs/zlib-1.2.3.1[${MULTILIB_USEDEP}] )"
DEPEND="${RDEPEND}
>=sys-devel/automake-1.11.6
virtual/pkgconfig
doc? ( dev-util/gtk-doc )
nls? ( sys-devel/gettext[${MULTILIB_USEDEP}] )
test? ( app-misc/datefudge )
abi_x86_32? (
!<=app-emulation/emul-linux-x86-baselibs-20131008-r8
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
)"
DOCS=( AUTHORS ChangeLog NEWS README THANKS doc/TODO )
MULTILIB_PARALLEL_PHASES="src_configure src_compile"
AUTOTOOLS_AUTORECONF=yes
AUTOTOOLS_PRUNE_LIBTOOL_FILES=all
src_prepare() {
# tests/suite directory is not distributed
sed -i \
-e ':AC_CONFIG_FILES(\[tests/suite/Makefile\]):d' \
-e '/^AM_INIT_AUTOMAKE/s/-Werror//' \
configure.ac || die
sed -i \
-e 's/imagesdir = $(infodir)/imagesdir = $(htmldir)/' \
doc/Makefile.am || die
rm -f {m4,gl/m4}/{lt*,libtool.m4}
find . -name ltmain.sh -delete
# force regeneration of autogen-ed files
local file
for file in $(grep -l AutoGen-ed src/*.c) ; do
rm src/$(basename ${file} .c).{c,h} || die
done
epatch "${FILESDIR}/${P}-build.patch"
autotools-multilib_src_prepare
}
src_configure() {
LINGUAS="${LINGUAS//en/en@boldquot en@quot}"
# TPM needs to be tested before being enabled
# hardware-accell is disabled on OSX because the asm files force
# GNU-stack (as doesn't support that) and when that's removed ld
# complains about duplicate symbols
autotools-multilib_src_configure \
--htmldir="${EPREFIX}/usr/share/doc/${PF}/html" \
--disable-valgrind-tests \
--enable-heartbeat-support \
$(use_enable cxx) \
$(use_enable dane libdane) \
$(use_enable doc gtk-doc) \
$(use_enable doc gtk-doc-pdf) \
$(use_enable guile) \
$(use_enable nls) \
$(use_enable static-libs static) \
$(use_with pkcs11 p11-kit) \
$(use_with zlib) \
--without-tpm \
$([[ ${CHOST} == *-darwin* ]] && echo --disable-hardware-acceleration)
}
ehook autotools-multilib-per-abi-post_src_configure perabi_post_configure
perabi_post_configure() {
einfo "copying .def files"
cp -av "${S}"/src/*.def src/ || die copy def files fail
}
src_test() {
# parallel testing often fails
autotools-multilib_src_test -j1
}
src_install() {
autotools-multilib_src_install
find "${ED}" -name '*.la' -delete
dodoc doc/certtool.cfg
if use doc; then
dodoc doc/gnutls.pdf
dohtml doc/gnutls.html
fi
if use examples; then
docinto examples
dodoc doc/examples/*.c
fi
}
|