diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-02-13 09:02:19 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-02-13 09:02:19 +0000 |
commit | ce6c92a09ca8043288e3e98f853b4fd1ab7ae8fc (patch) | |
tree | 25156cd3e27675126bc3a9dc192239b692c4a060 /www-apps | |
parent | Version bump. (diff) | |
download | gentoo-2-ce6c92a09ca8043288e3e98f853b4fd1ab7ae8fc.tar.gz gentoo-2-ce6c92a09ca8043288e3e98f853b4fd1ab7ae8fc.tar.bz2 gentoo-2-ce6c92a09ca8043288e3e98f853b4fd1ab7ae8fc.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/phpsysinfo/ChangeLog | 9 | ||||
-rw-r--r-- | www-apps/phpsysinfo/phpsysinfo-3.1.9.ebuild | 33 |
2 files changed, 40 insertions, 2 deletions
diff --git a/www-apps/phpsysinfo/ChangeLog b/www-apps/phpsysinfo/ChangeLog index 91c810608858..4cadcecc1439 100644 --- a/www-apps/phpsysinfo/ChangeLog +++ b/www-apps/phpsysinfo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-apps/phpsysinfo -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/ChangeLog,v 1.83 2013/12/10 08:07:31 radhermit Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/ChangeLog,v 1.84 2014/02/13 09:02:19 radhermit Exp $ + +*phpsysinfo-3.1.9 (13 Feb 2014) + + 13 Feb 2014; Tim Harder <radhermit@gentoo.org> +phpsysinfo-3.1.9.ebuild: + Version bump. *phpsysinfo-3.1.8 (10 Dec 2013) diff --git a/www-apps/phpsysinfo/phpsysinfo-3.1.9.ebuild b/www-apps/phpsysinfo/phpsysinfo-3.1.9.ebuild new file mode 100644 index 000000000000..2acc6527982f --- /dev/null +++ b/www-apps/phpsysinfo/phpsysinfo-3.1.9.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/phpsysinfo-3.1.9.ebuild,v 1.1 2014/02/13 09:02:19 radhermit Exp $ + +EAPI=5 + +inherit webapp + +DESCRIPTION="phpSysInfo is a nice package that will display your system stats via PHP" +HOMEPAGE="http://rk4an.github.com/phpsysinfo/" +SRC_URI="https://github.com/rk4an/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd" + +RDEPEND="virtual/httpd-php + dev-lang/php[simplexml,xml,xsl(+),xslt(+),unicode]" + +need_httpd_cgi + +src_install() { + webapp_src_preinst + + dodoc CHANGELOG.md README* + rm CHANGELOG.md COPYING README* .gitignore .travis.yml || die + + insinto "${MY_HTDOCSDIR}" + doins -r . + newins phpsysinfo.ini{.new,} + + webapp_configfile "${MY_HTDOCSDIR}"/phpsysinfo.ini + webapp_src_install +} |