diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2017-03-26 14:06:51 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2017-03-26 14:06:51 -0400 |
commit | 81465626d85729a5150b863f7aa733e63c3e0a8d (patch) | |
tree | a9ff4022595f725738bd183beaa7b9b4dc322f66 /www-apache/mod_nss | |
parent | www-apache/mod_rpaf: remove unused version 0.6. (diff) | |
download | gentoo-81465626d85729a5150b863f7aa733e63c3e0a8d.tar.gz gentoo-81465626d85729a5150b863f7aa733e63c3e0a8d.tar.bz2 gentoo-81465626d85729a5150b863f7aa733e63c3e0a8d.zip |
www-apache/mod_nss: remove unused version 1.0.12.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'www-apache/mod_nss')
-rw-r--r-- | www-apache/mod_nss/mod_nss-1.0.12.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/www-apache/mod_nss/mod_nss-1.0.12.ebuild b/www-apache/mod_nss/mod_nss-1.0.12.ebuild deleted file mode 100644 index c4e66b1de680..000000000000 --- a/www-apache/mod_nss/mod_nss-1.0.12.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit autotools apache-module eutils - -DESCRIPTION="SSL/TLS module for the Apache HTTP server" -HOMEPAGE="https://fedorahosted.org/mod_nss/" -SRC_URI="https://fedorahosted.org/released/mod_nss/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="+ecc" - -DEPEND=">=dev-libs/nss-3.11.4 - >=dev-libs/nspr-4.6.4 - virtual/pkgconfig - sys-apps/sed -" -RDEPEND=" - >=dev-libs/nss-3.11.4 - >=dev-libs/nspr-4.6.4 - net-dns/bind-tools -" - -APACHE2_MOD_CONF="47_${PN}" -APACHE2_MOD_DEFINE="NSS" - -DOCFILES="NOTICE README" - -need_apache2 - -src_prepare() { - # 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() { - emake -} - -src_install() { - # override broken build system - mv .libs/libmodnss.so .libs/"${PN}".so || die "cannot move lib" - dosbin gencert nss_pcache - dohtml docs/mod_nss.html - newbin migrate.pl nss_migrate - dodir /etc/apache2/nss - apache-module_src_install -} |