blob: ca68a9f86e88df7ce1fbd32556e3a4001fb76e9f (
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit depend.php eutils webapp
DESCRIPTION="A system monitor that can be used to obtain accurate and up to date information on the performance of a number of systems"
HOMEPAGE="http://www.xs4all.nl/~wpd/symon/"
SRC_URI="http://www.xs4all.nl/~wpd/symon/philes/${P}.tar.gz
syweb? ( http://www.xs4all.nl/~wpd/symon/philes/syweb-0.56.tar.gz )"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~sparc ~x86"
IUSE="syweb"
DEPEND="net-analyzer/rrdtool
sys-devel/pmake"
RDEPEND="net-analyzer/rrdtool
syweb? ( virtual/httpd-php )"
S=${WORKDIR}/${PN}
WEBAPP_MANUAL_SLOT="yes"
pkg_setup() {
require_php_with_use gd
webapp_pkg_setup
}
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${PN}-symon.conf.patch
epatch "${FILESDIR}"/${PN}-symux.conf.patch
# the default user will be symon, not _symon
# not really used atm, but probably will if chroot will ever be implemented
sed -i -e 's|_symon|symon|g' symon/symon/symon.8
if use syweb ; then
epatch "${FILESDIR}"/${PN}-syweb-class_lexer.inc.patch
epatch "${FILESDIR}"/${PN}-syweb-setup.inc.patch
epatch "${FILESDIR}"/${PN}-syweb-total_firewall.layout.patch
fi
}
src_compile() {
MAKE=pmake emake || die "emake failed."
}
src_install() {
insinto /etc
doins symon/symon.conf symux/symux.conf
newinitd "${FILESDIR}"/${PN}-init.d ${PN} || die "newinitd failed."
dodoc CHANGELOG HACKERS TODO
doman symon/symon.8 symux/symux.8
dosbin symon/symon
dosbin symux/symux
dodir /usr/share/symon
insinto /usr/share/symon
doins symon/c_config.sh symux/c_smrrds.sh
fperms a+x,u-w /usr/share/symon/c_config.sh
fperms u-w,u+x /usr/share/symon/c_smrrds.sh
dodir /var/lib/symon/rrds/localhost
if use syweb ; then
docinto /layouts
dodoc "${WORKDIR}"/syweb/symon/total_firewall.layout
webapp_src_preinst
dodir "${MY_HTDOCSDIR}"/cache
dodir "${MY_HTDOCSDIR}"/layouts
webapp_serverowned "${MY_HTDOCSDIR}"/cache
insinto "${MY_HTDOCSDIR}"
doins -r "${WORKDIR}"/syweb/htdocs/syweb/*
webapp_configfile "${MY_HTDOCSDIR}"/setup.inc
webapp_src_install
fi
}
pkg_postinst() {
if use syweb ; then
elog "Test your syweb configuration by pointing your browser at:"
elog "http://${VHOST_HOSTNAME}/${PN}/configtest.php"
webapp_pkg_postinst
fi
elog "You'll need to setup your ${ROOT}/etc/symon.conf and "
elog "${ROOT}/etc/symux.conf before running these daemons for "
elog "the first time."
elog "For an example configuration run ${ROOT}/usr/share/symon/c_config.sh"
elog "Then, you may run ${ROOT}/usr/share/symon/c_smrrds.sh all"
elog "To test the configuration run sym{on,ux} -t"
elog "For details, please see their manpages."
elog "NOTE that symon won't chroot by default."
}
|