diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2007-02-12 01:01:01 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2007-02-12 01:01:01 +0000 |
commit | 427341ab894fae4e41561d33bfc269af92fa5ae9 (patch) | |
tree | 2d81c6a39eac83eefba446d6bec7223ea2c9e6de /net-analyzer/zabbix-frontend | |
parent | fix SRC_URI due to vanished download servers (diff) | |
download | gentoo-2-427341ab894fae4e41561d33bfc269af92fa5ae9.tar.gz gentoo-2-427341ab894fae4e41561d33bfc269af92fa5ae9.tar.bz2 gentoo-2-427341ab894fae4e41561d33bfc269af92fa5ae9.zip |
version bump
(Portage version: 2.1.2)
Diffstat (limited to 'net-analyzer/zabbix-frontend')
5 files changed, 54 insertions, 2 deletions
diff --git a/net-analyzer/zabbix-frontend/ChangeLog b/net-analyzer/zabbix-frontend/ChangeLog index 76fcc4df10ca..69d527eb9ee3 100644 --- a/net-analyzer/zabbix-frontend/ChangeLog +++ b/net-analyzer/zabbix-frontend/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/zabbix-frontend -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix-frontend/ChangeLog,v 1.5 2006/06/19 23:41:17 wschlich Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/zabbix-frontend/ChangeLog,v 1.6 2007/02/12 01:01:01 wschlich Exp $ + +*zabbix-frontend-1.1.6 (12 Feb 2007) + + 12 Feb 2007; Wolfram Schlich <wschlich@gentoo.org> + +files/postinstall-en-1.1.6.txt, +zabbix-frontend-1.1.6.ebuild: + version bump 19 Jun 2006; Wolfram Schlich <wschlich@gentoo.org> files/postinstall-en-1.1.txt: diff --git a/net-analyzer/zabbix-frontend/files/digest-zabbix-frontend-1.1.6 b/net-analyzer/zabbix-frontend/files/digest-zabbix-frontend-1.1.6 new file mode 100644 index 000000000000..aede6b7cd4dd --- /dev/null +++ b/net-analyzer/zabbix-frontend/files/digest-zabbix-frontend-1.1.6 @@ -0,0 +1,3 @@ +MD5 baa6896c5f41ed286bca3c40e419e1cf zabbix-1.1.6.tar.gz 1541835 +RMD160 93694315a710811631591554807d571de25922c6 zabbix-1.1.6.tar.gz 1541835 +SHA256 348b395df68a808c25cb96287bbb0460e531e46049b6be1bd5be236365022281 zabbix-1.1.6.tar.gz 1541835 diff --git a/net-analyzer/zabbix-frontend/files/digest-zabbix-frontend-1.1_alpha7 b/net-analyzer/zabbix-frontend/files/digest-zabbix-frontend-1.1_alpha7 index bee9b9502bd8..712004c058ef 100644 --- a/net-analyzer/zabbix-frontend/files/digest-zabbix-frontend-1.1_alpha7 +++ b/net-analyzer/zabbix-frontend/files/digest-zabbix-frontend-1.1_alpha7 @@ -1 +1,3 @@ MD5 a900c9838075690a8d04849cda42c67c zabbix-1.1alpha7.tar.gz 654347 +RMD160 2d888d1b22c44d8acd0feb41b51fc14f1c5da357 zabbix-1.1alpha7.tar.gz 654347 +SHA256 31509e7106c2ff6f197a298b5c8256e24d9b0c9dd9d1d7fe1d81c49393ea471d zabbix-1.1alpha7.tar.gz 654347 diff --git a/net-analyzer/zabbix-frontend/files/postinstall-en-1.1.6.txt b/net-analyzer/zabbix-frontend/files/postinstall-en-1.1.6.txt new file mode 100644 index 000000000000..9d13a9f3dbce --- /dev/null +++ b/net-analyzer/zabbix-frontend/files/postinstall-en-1.1.6.txt @@ -0,0 +1,8 @@ +Please change the values of the following variables in +${MY_HTDOCSDIR}/include/db.inc.php: + + DB_TYPE + DB_SERVER + DB_DATABASE + DB_USER + DB_PASSWORD diff --git a/net-analyzer/zabbix-frontend/zabbix-frontend-1.1.6.ebuild b/net-analyzer/zabbix-frontend/zabbix-frontend-1.1.6.ebuild new file mode 100644 index 000000000000..5f0134f79077 --- /dev/null +++ b/net-analyzer/zabbix-frontend/zabbix-frontend-1.1.6.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2007 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.6.ebuild,v 1.1 2007/02/12 01:01:01 wschlich Exp $ + +inherit eutils webapp depend.php + +MY_P=${PN//-frontend/} +MY_PV=${PV//_/} +DESCRIPTION="Zabbix PHP web-frontend" + +HOMEPAGE="http://www.zabbix.com/" +SRC_URI="mirror://sourceforge/zabbix/${MY_P}-${MY_PV}.tar.gz" + +LICENSE="GPL-2" + +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +need_php_httpd + +S=${WORKDIR}/${MY_P}-${MY_PV}/frontends + +pkg_setup() { + webapp_pkg_setup + require_gd +} + +src_install() { + webapp_src_preinst + cp -R php/* "${D}/${MY_HTDOCSDIR}" + webapp_postinst_txt en ${FILESDIR}/postinstall-en-${MY_PV}.txt + webapp_configfile ${MY_HTDOCSDIR}/include/db.inc.php + webapp_src_install +} |