blob: 3262bc311b3138b7c1ed240953b600f6df2fc1d4 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit apache-module
DESCRIPTION="Apache module which does AS and network prefix lookups"
HOMEPAGE="http://mirrorbrain.org/mod_asn"
LICENSE="Apache-2.0"
SRC_URI="http://mirrorbrain.org/files/releases/${P}.tar.gz"
KEYWORDS="~x86 ~amd64"
IUSE=""
SLOT="0"
# See apache-module.eclass for more information.
APACHE2_MOD_CONF="30_${PN}"
src_install() {
apache-module_src_install
newsbin asn_import.py asn_import
newsbin asn_get_routeviews.py asn_get_routeviews
dodoc README INSTALL asn.sql mod_asn.conf
}
need_apache2
|