blob: 89a93bfa2198e513a44b4de3ad7de266bfe0f00a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_dnsbl_lookup/mod_dnsbl_lookup-0.91.ebuild,v 1.1 2007/09/10 10:03:52 hollow Exp $
inherit apache-module eutils
KEYWORDS="~amd64 ~x86"
DESCRIPTION="A helper module for Apache2 providing DNSBL lookup"
HOMEPAGE="http://www.sysdesign.ca"
SRC_URI="http://www.sysdesign.ca/archive/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
IUSE=""
DEPEND=""
RDEPEND=""
APACHE2_MOD_CONF="09_${PN}"
APACHE2_MOD_DEFINE="DNSBL"
need_apache2
src_install() {
apache-module_src_install
insinto $(${APXS2} -q INCLUDEDIR)
doins dnsbl_lookup.h
}
|