summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2021-02-13 11:27:22 +0100
committerDavid Seifert <soap@gentoo.org>2021-02-13 11:27:22 +0100
commitbbb3ab2fdf57e89114f93d226713d68c37077172 (patch)
tree8a757f9c1c8e3d8d7c9c239c55c63b9b2cbb4848 /www-apache
parentwww-apache/mod_auth_xradius: Remove old (diff)
downloadgentoo-bbb3ab2fdf57e89114f93d226713d68c37077172.tar.gz
gentoo-bbb3ab2fdf57e89114f93d226713d68c37077172.tar.bz2
gentoo-bbb3ab2fdf57e89114f93d226713d68c37077172.zip
www-apache/mod_nss: Remove old
Closes: https://github.com/gentoo/gentoo/pull/19286 Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'www-apache')
-rw-r--r--www-apache/mod_nss/Manifest1
-rw-r--r--www-apache/mod_nss/mod_nss-1.0.12-r1.ebuild62
2 files changed, 0 insertions, 63 deletions
diff --git a/www-apache/mod_nss/Manifest b/www-apache/mod_nss/Manifest
index e13e9e188487..91f913e2b750 100644
--- a/www-apache/mod_nss/Manifest
+++ b/www-apache/mod_nss/Manifest
@@ -1,2 +1 @@
-DIST mod_nss-1.0.12.tar.gz 171657 BLAKE2B 75fbde10bb236536aeabc5c15d3d77d9ef4d6b0397dcab433cbfdffdfa2657a59ae2688f0904206897e7fd97e1282f50fe65df37a4cb3457c14c9647bb785fa3 SHA512 f3217f34a20818aea571e17529130290082933b32386a868c8c7f24eb3166bbace4f64d7d73a850c944e54f74342179fff6b9d8af824e0225feeb993aea1d99a
DIST mod_nss-1.0.18.tar.gz 184594 BLAKE2B a2c4b07199bb694b4e5a87ec6bf12bbf32862d44a478da3eb7f374f273786a8d66e3c238fea8e3512fa4986366d44fc8ef4ff77d8965afeee716bcc0685040d0 SHA512 68fe061b40acbe07823ba220a67b0646855b7643e472e757f23b38074fab95aa1b99a3f525748d5dd363b8e278e5521cbacae49c0159700e33f2e1b6b0a0bb77
diff --git a/www-apache/mod_nss/mod_nss-1.0.12-r1.ebuild b/www-apache/mod_nss/mod_nss-1.0.12-r1.ebuild
deleted file mode 100644
index bc7333c7cf65..000000000000
--- a/www-apache/mod_nss/mod_nss-1.0.12-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools apache-module eutils
-
-DESCRIPTION="SSL/TLS module for the Apache HTTP server"
-HOMEPAGE="https://pagure.io/mod_nss"
-SRC_URI="https://releases.pagure.org/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+ecc"
-
-DEPEND="
- >=dev-libs/nspr-4.6.4
- >=dev-libs/nss-3.11.4
- sys-apps/sed
- virtual/pkgconfig
-"
-RDEPEND="
- >=dev-libs/nspr-4.6.4
- >=dev-libs/nss-3.11.4
- net-dns/bind-tools
-"
-
-APACHE2_MOD_CONF="47_${PN}"
-APACHE2_MOD_DEFINE="NSS"
-
-DOCFILES="NOTICE README"
-
-need_apache2
-
-src_prepare() {
- default
-
- # setup proper exec name
- sed -i -e 's/certutil/nsscertutil/' gencert.in || die "sed failed"
- eautoreconf
-}
-
-src_configure() {
- econf $(use_enable ecc) --with-apxs=${APXS}
-}
-
-src_compile() {
- # default src_compile fails:
- # In file included from mod_nss.c:16:0:
- # mod_nss.h:51:18: fatal error: nspr.h: No such file or directory
- emake
-}
-
-src_install() {
- # override broken build system
- mv .libs/libmodnss.so .libs/"${PN}".so || die "cannot move lib"
- dosbin gencert nss_pcache
- dodoc docs/mod_nss.html
- newbin migrate.pl nss_migrate
- dodir /etc/apache2/nss
- apache-module_src_install
-}