diff options
author | Tiago Cunha <tcunha@gentoo.org> | 2009-12-01 18:31:23 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gentoo.org> | 2009-12-01 18:31:23 +0000 |
commit | f4269a1046169859f661f501152cefe1238edf64 (patch) | |
tree | c0cdf4e6f34099ec39489f2b45d9879135d7e505 /net-analyzer/syweb/syweb-0.59.ebuild | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-f4269a1046169859f661f501152cefe1238edf64.tar.gz gentoo-2-f4269a1046169859f661f501152cefe1238edf64.tar.bz2 gentoo-2-f4269a1046169859f661f501152cefe1238edf64.zip |
- Version bump.
- Remove old.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/syweb/syweb-0.59.ebuild')
-rw-r--r-- | net-analyzer/syweb/syweb-0.59.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/net-analyzer/syweb/syweb-0.59.ebuild b/net-analyzer/syweb/syweb-0.59.ebuild new file mode 100644 index 000000000000..0ee80309b166 --- /dev/null +++ b/net-analyzer/syweb/syweb-0.59.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/syweb/syweb-0.59.ebuild,v 1.1 2009/12/01 18:31:23 tcunha Exp $ + +WEBAPP_MANUAL_SLOT="yes" + +inherit depend.php webapp + +DESCRIPTION="Web frontend to symon" +HOMEPAGE="http://www.xs4all.nl/~wpd/symon/" +SRC_URI="http://www.xs4all.nl/~wpd/symon/philes/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" +IUSE="" + +DEPEND="" +RDEPEND="net-analyzer/rrdtool" + +need_httpd_cgi +need_php_httpd + +S=${WORKDIR}/${PN} + +src_install() { + webapp_src_preinst + + dodoc CHANGELOG README || die "dodoc failed" + docinto layouts + dodoc symon/*.layout || die "dodoc layouts failed" + + dodir "${MY_HOSTROOTDIR}"/syweb/cache + insinto "${MY_HOSTROOTDIR}"/syweb + doins symon/hifn_test.layout || die "doins hifn_test.layout failed" + webapp_serverowned "${MY_HOSTROOTDIR}"/syweb/cache + insinto "${MY_HTDOCSDIR}" + doins -r htdocs/syweb/* || die "doins htdocs failed" + webapp_configfile "${MY_HTDOCSDIR}"/setup.inc + webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt + webapp_hook_script "${FILESDIR}"/reconfig + + webapp_src_install +} |