blob: f5fe0e246acd53a7810a88330fe4279b309252f6 (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
inherit autotools apache-module flag-o-matic python-any-r1
DESCRIPTION="mod_gnutls uses GnuTLS for SSL/TLS encryption in Apache2 (compare to mod_ssl)"
HOMEPAGE="https://mod.gnutls.org/"
SRC_URI="https://mod.gnutls.org/downloads/${P}.tar.bz2"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="test"
TEST_REQUIRED_APACHE_MODULES="apache2_modules_proxy,apache2_modules_proxy_http"
COMMON_DEPEND=">=net-libs/gnutls-3.3.0:=[pkcs11]"
DEPEND="${COMMON_DEPEND}
test? (
app-crypt/monkeysphere
>=net-libs/gnutls-3.3.0:=[tools]
net-misc/curl
|| (
www-servers/apache[apache2_mpms_worker,${TEST_REQUIRED_APACHE_MODULES}]
www-servers/apache[apache2_mpms_prefork,${TEST_REQUIRED_APACHE_MODULES}]
www-servers/apache[apache2_mpms_event,${TEST_REQUIRED_APACHE_MODULES}]
)
)"
RDEPEND="${COMMON_DEPEND}"
BDEPEND="
virtual/pkgconfig
$(python_gen_any_dep '
dev-python/pyyaml[${PYTHON_USEDEP}]
')
"
RESTRICT="!test? ( test )"
APACHE2_MOD_CONF="47_${PN}"
APACHE2_MOD_DEFINE="GNUTLS"
DOCFILES="CHANGELOG NOTICE README"
need_apache2_4
python_check_deps() {
python_has_version "dev-python/pyyaml[${PYTHON_USEDEP}]"
}
pkg_setup() {
# Calling depend.apache_pkg_setup fails because we do not have
# "apache2" in IUSE but the function expects this in order to call
# _init_apache2_late which sets the APACHE_MODULESDIR variable.
_init_apache2
_init_apache2_late
python-any-r1_pkg_setup
}
src_prepare() {
default
eautoreconf
}
src_configure() {
# Add LFS flags, enable x86 support. #856349
append-lfs-flags
local myeconfargs=(
--with-apxs="${APXS}"
--disable-strict
--disable-doxygen-dot
--disable-doxygen-doc
--disable-doxygen-html
--disable-doxygen-pdf
--disable-valgrind-test
ac_cv_path_UNSHARE=no
)
econf "${myeconfargs[@]}"
}
src_compile() {
emake
}
src_install() {
apache-module_src_install
}
|