From 90383c0bdffc4b6bca6df5262b30e9f77b98b23f Mon Sep 17 00:00:00 2001 From: Lars Wendler Date: Tue, 16 Jan 2018 01:23:39 +0100 Subject: www-apache/mod_gnutls: Revbump to prevent installation of /mod_gnutls.so Downgraded ebuild to EAPI-5 until further debugging. Package-Manager: Portage-2.3.19, Repoman-2.3.6 --- www-apache/mod_gnutls/mod_gnutls-0.8.3-r1.ebuild | 57 ++++++++++++++++++++++++ www-apache/mod_gnutls/mod_gnutls-0.8.3.ebuild | 55 ----------------------- 2 files changed, 57 insertions(+), 55 deletions(-) create mode 100644 www-apache/mod_gnutls/mod_gnutls-0.8.3-r1.ebuild delete mode 100644 www-apache/mod_gnutls/mod_gnutls-0.8.3.ebuild (limited to 'www-apache') diff --git a/www-apache/mod_gnutls/mod_gnutls-0.8.3-r1.ebuild b/www-apache/mod_gnutls/mod_gnutls-0.8.3-r1.ebuild new file mode 100644 index 000000000000..1d6985d4f075 --- /dev/null +++ b/www-apache/mod_gnutls/mod_gnutls-0.8.3-r1.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +# WARNING! Don't switch to EAPI-6 without checking paths of installed files +# carefully. The .so file might get installed into / +EAPI=5 +inherit autotools apache-module + +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" + +CDEPEND=">=net-libs/gnutls-3.3.0:=" +DEPEND="${CDEPEND} + test? ( app-crypt/monkeysphere )" +RDEPEND="${CDEPEND}" + +# Fails because gpg-agent cannot be accessed +RESTRICT="test" + +APACHE2_MOD_CONF="47_${PN}" +APACHE2_MOD_DEFINE="GNUTLS" + +DOCFILES="CHANGELOG NOTICE README" + +need_apache2_4 + +src_prepare() { + default + eautoreconf +} + +src_configure() { + local myeconfargs=( + --with-apxs="${APXS}" + --disable-strict + --disable-doxygen-dot + --disable-doxygen-doc + --disable-doxygen-html + --disable-doxygen-pdf + ac_cv_path_UNSHARE=no + ) + econf "${myeconfargs[@]}" +} + +src_compile() { + emake +} + +src_install() { + apache-module_src_install +} diff --git a/www-apache/mod_gnutls/mod_gnutls-0.8.3.ebuild b/www-apache/mod_gnutls/mod_gnutls-0.8.3.ebuild deleted file mode 100644 index e92da3628303..000000000000 --- a/www-apache/mod_gnutls/mod_gnutls-0.8.3.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit autotools apache-module - -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" - -CDEPEND=">=net-libs/gnutls-3.3.0:=" -DEPEND="${CDEPEND} - test? ( app-crypt/monkeysphere )" -RDEPEND="${CDEPEND}" - -# Fails because gpg-agent cannot be accessed -RESTRICT="test" - -APACHE2_MOD_CONF="47_${PN}" -APACHE2_MOD_DEFINE="GNUTLS" - -DOCFILES="CHANGELOG NOTICE README" - -need_apache2_4 - -src_prepare() { - default - eautoreconf -} - -src_configure() { - local myeconfargs=( - --with-apxs="${APXS}" - --disable-strict - --disable-doxygen-dot - --disable-doxygen-doc - --disable-doxygen-html - --disable-doxygen-pdf - ac_cv_path_UNSHARE=no - ) - econf "${myeconfargs[@]}" -} - -src_compile() { - emake -} - -src_install() { - apache-module_src_install -} -- cgit v1.2.3-65-gdbad