blob: f0a682a248f165ecc28794e7e65650e8d29bd9d6 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/drraw/drraw-2.1.3.ebuild,v 1.4 2008/02/22 17:06:43 hollow Exp $
inherit webapp
DESCRIPTION="drraw is a simple web based presentation front-end for RRDtool"
HOMEPAGE="http://web.taranis.org/drraw"
SRC_URI="http://web.taranis.org/${PN}/dist/${P}.tgz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=dev-lang/perl-5.6
virtual/perl-CGI
>=net-analyzer/rrdtool-1.2.1"
need_httpd_cgi
src_unpack() {
unpack ${A}
cd "${S}"
sed -i -e "s|/usr/local/bin/perl|/usr/bin/perl|" drraw.cgi
sed -i \
-e "s|/somewhere/drraw/saved|/tmp|" \
-e "s|/somewhere/drraw/tmp|/tmp|" \
drraw.conf
}
src_install() {
webapp_src_preinst
dodoc CHANGES INSTALL README.EVENTS WISHLIST
rm CHANGES INSTALL README.EVENTS WISHLIST
insinto "${MY_CGIBINDIR}"
doins drraw.conf
exeinto "${MY_CGIBINDIR}"
doexe drraw.cgi
insinto "${MY_ICONSDIR}"
doins icons/*.gif
webapp_configfile "${MY_CGIBINDIR}"/drraw.conf
webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
webapp_src_install
}
|