blob: 05df09e81402768a535db936621866d953929641 (
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
105
106
107
108
109
110
111
112
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/smokeping/smokeping-2.2.4.ebuild,v 1.1 2007/09/17 11:44:22 hansmi Exp $
inherit perl-module eutils
KEYWORDS="~amd64 ~sparc ~x86"
DESCRIPTION="A powerful latency measurement tool."
SRC_URI="http://oss.oetiker.ch/smokeping/pub/${P}.tar.gz"
HOMEPAGE="http://oss.oetiker.ch/smokeping/"
LICENSE="GPL-2"
SLOT="0"
IUSE="apache2"
DEPEND="dev-lang/perl
virtual/perl-libnet
>=net-analyzer/rrdtool-1.2
net-analyzer/fping
dev-perl/libwww-perl
dev-perl/Net-DNS
apache2? ( >=www-servers/apache-2.0.54-r30 >=www-apache/mod_perl-2.0.1 )"
RDEPEND="${DEPEND}"
pkg_setup() {
if ! built_with_use '>=net-analyzer/rrdtool-1.2' perl ; then
eerror "You must build net-analyzer/rrdtool with the"
eerror "'perl' USE flag turned on!"
die "net-analyzer/rrdtool installed with 'perl' USE flag disabled"
fi
enewgroup smokeping
enewuser smokeping -1 -1 /var/lib/smokeping smokeping
}
src_compile() {
# There is a makefile we don't want to run so leave this here
einfo "Skip compile."
}
src_install() {
# First move all the perl modules into the vendor lib area of Perl
perlinfo
insinto ${VENDOR_LIB}
doins lib/*.pm
### This one kind of concerns me, possible conflict with other software
insinto ${VENDOR_LIB}/Config
doins lib/Config/*.pm
insinto ${VENDOR_LIB}/Smokeping
doins lib/Smokeping/*.pm
insinto ${VENDOR_LIB}/Smokeping/matchers
doins lib/Smokeping/matchers/*.pm
insinto ${VENDOR_LIB}/Smokeping/probes
doins lib/Smokeping/probes/*.pm
insinto ${VENDOR_LIB}/Smokeping/sorters
doins lib/Smokeping/sorters/*.pm
# Create the files in var for rrd file storage and the cgi webserver script
keepdir /var/lib/${PN}/.simg
fowners smokeping:smokeping /var/lib/${PN}
if use apache2 ; then
fowners apache:apache /var/lib/${PN}/.simg
else
fowners smokeping:smokeping /var/lib/${PN}/.simg
fi
fperms 775 /var/lib/${PN} /var/lib/${PN}/.simg
exeinto /var/www/localhost/perl
newexe htdocs/${PN}.cgi.dist ${PN}.pl
dosed 's:^use lib:#use lib:g' /var/www/localhost/perl/${PN}.pl
dosed 's:sepp/bin/speedy:bin/perl:' /var/www/localhost/perl/${PN}.pl
dosed 's:/home/oetiker/data/projects/AADJ-smokeping/dist/etc/config:/etc/smokeping:' \
/var/www/localhost/perl/${PN}.pl
# Install AJAX scripts
insinto /var/www/localhost/perl
doins -r htdocs/cropper
# Create the binary
newbin bin/${PN}.dist ${PN}
dosed 's:/usr/sepp/bin/perl-5.8.4:/usr/bin/perl:g' /usr/bin/${PN}
dosed 's:^use lib:#use lib:g' /usr/bin/${PN}
# dosed 's:/sepp::' /usr/bin/${PN}
dosed 's:etc/config.dist:/etc/smokeping:' /usr/bin/${PN}
# Create the config files
insinto /etc
newins "${FILESDIR}/config.dist" ${PN}
newins etc/basepage.html.dist ${PN}.template
doins etc/smokemail.dist
newinitd "${FILESDIR}/${PN}.init" ${PN}
if use apache2 ; then
insinto /etc/apache2/modules.d
doins "${FILESDIR}/78_${PN}.conf"
fi
}
pkg_postinst() {
chown smokeping:smokeping "${ROOT}/var/lib/${PN}"
chmod 755 "${ROOT}/var/lib/${PN}"
elog
elog "Four more steps are needed to get ${PN} un&running:"
elog "1) You need to edit /etc/${PN}"
elog "2) You need to edit the template at /etc/${PN}.template"
elog "3) You need to make the fping binary setuid root:"
elog " # chmod 4755 /usr/sbin/fping"
if use apache2 ; then
elog "4) Make sure to add -D PERL to APACHE2_OPTS in /etc/conf.d/apache2"
elog " and to restart apache2."
fi
elog "You can now start ${PN} with '/etc/init.d/${PN} start'."
elog
}
|