# Michał Górny <mgorny@gentoo.org> (2019-09-17)
# Unmaintained EAPI 0 Apache modules + mod_access_dnsbl as a revdep.
# Removal in 30 days. Bug #694608.
-www-apache/mod_depends
www-apache/mod_dnsbl_lookup
www-apache/mod_flvx
www-apache/mod_geoip2
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils apache-module
-
-DESCRIPTION="An apache helper module for handling dependencies properly"
-SRC_URI="http://upstream.rm-rf.in/${PN}/${P}.tar.bz2"
-HOMEPAGE="http://www.outoforder.cc/projects/apache/mod_depends/"
-
-SLOT="0"
-LICENSE="Apache-2.0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE=""
-
-APACHE2_MOD_CONF="0.7/09_${PN}"
-APACHE2_MOD_DEFINE="DEPENDS"
-
-need_apache2
-
-src_compile() {
- econf --with-apxs="${APXS}" || die "configure failed"
- emake || die "make failed"
-}
-
-src_install() {
- AP_INCLUDEDIR=$(${APXS} -q INCLUDEDIR)
-
- insinto ${AP_INCLUDEDIR}
- doins include/mod_depends.h || die
-
- mv -v src/.libs/{lib,}mod_depends.so
-
- apache-module_src_install
-}
-
-# vim:ts=4