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>
This commit is contained in:
Jakov Smolic
2021-02-13 11:27:22 +01:00
committed by David Seifert
parent de1a03d456
commit bbb3ab2fdf
2 changed files with 0 additions and 63 deletions

View File

@@ -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

View File

@@ -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
}