blob: 076c0f06d75f9571738dd6cc1c6e18bdec41c840 (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nagvis/nagvis-1.3.2.ebuild,v 1.2 2009/02/16 18:45:56 dertobi123 Exp $
inherit eutils confutils depend.php
DESCRIPTION="NagVis is a visualization addon for the well known network managment system Nagios."
HOMEPAGE="http://www.nagvis.org/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="automap"
DEPEND=""
RDEPEND=">=net-analyzer/ndoutils-1.4_beta4
automap? ( >=media-gfx/graphviz-2.14 )"
need_php_httpd
pkg_setup() {
confutils_require_built_with_all dev-lang/php gd mysql unicode
}
src_install() {
for docfile in README INSTALL
do
dodoc ${docfile}
rm ${docfile}
done
dodir /usr/share
grep -Rl "/usr/local" "${S}"/* | xargs sed -i s:/usr/local:/usr:g
mv "${S}" "${D}"/usr/share/nagvis
chmod 664 "${D}"/usr/share/nagvis/etc/nagvis.ini.php-sample
chmod 775 "${D}"/usr/share/nagvis/nagvis/images/maps
chmod 664 "${D}"/usr/share/nagvis/nagvis/images/maps/*
chmod 775 "${D}"/usr/share/nagvis/etc/maps
chmod 664 "${D}"/usr/share/nagvis/etc/maps/*
}
pkg_postinst() {
elog "Before running NagVis for the first time, you will need to set up"
elog "/usr/share/nagvis/nagvis/etc/nagvis.ini.php"
elog "A sample is in"
elog "/usr/share/nagvis/nagvis/etc/nagvis.ini.php-sample"
}
|