blob: b348c0a1105488dc3c4bdd3da228a7439f3393de (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix-frontend/zabbix-frontend-1.1_alpha7.ebuild,v 1.3 2005/07/19 16:47:15 dholm Exp $
inherit eutils webapp
MY_P=${PN//-frontend/}
MY_PV=${PV//_/}
DESCRIPTION="Zabbix php frontend"
HOMEPAGE="http://zabbix.com/"
SRC_URI="mirror://sourceforge/zabbix/${MY_P}-${MY_PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
RDEPEND="virtual/php"
S=${WORKDIR}/${MY_P}-${MY_PV}/frontends
src_install() {
webapp_src_preinst
cp -R php/* "${D}/${MY_HTDOCSDIR}"
webapp_src_install
}
pkg_postinst(){
einfo
einfo "For setting the SQL server settings, see include/db.inc.php"
einfo
}
|