summaryrefslogtreecommitdiff
blob: c5e76003cc76502d2d2ae6c9e2f1a0a81580ae00 (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

inherit webapp

DESCRIPTION="php-syslog-ng is a log monitor designed to easily manage logs from many hosts"
HOMEPAGE="https://php-syslog-ng.googlecode.com/"
SRC_URI="https://php-syslog-ng.googlecode.com/files/php-syslog-ng-${PV}.tar.gz"

LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE="mysql"

RDEPEND="virtual/httpd-php
		mysql? ( >=virtual/mysql-4.1 )"

src_install() {
	webapp_src_preinst

	dodoc html/README html/CHANGELOG \
		html/INSTALL-STEPS \
		html/TROUBLESHOOTING-INSTALL
	rm html/LICENSE html/README \
		html/CHANGELOG html/INSTALL-STEPS \
		html/TROUBLESHOOTING-INSTALL
	insinto /usr/share/doc/${PF}
	doins -r scripts/*

	insinto "${MY_HTDOCSDIR}"
	doins -r ./html/{.htaccess,*}

	webapp_configfile "${MY_HTDOCSDIR}/config/config.php"

	webapp_serverowned -R "${MY_HTDOCSDIR}/config/"
	webapp_serverowned -R "${MY_HTDOCSDIR}/jpcache/"

	webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt"

	webapp_src_install
}