diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-08-31 04:35:17 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-08-31 04:35:17 +0000 |
commit | 7ca4e8ace3c8529d691a137c4fb1213c6b813cd7 (patch) | |
tree | 889431323152700d4cdf2e76cd732477e24079d4 /www-apps | |
parent | Remove old. (diff) | |
download | gentoo-2-7ca4e8ace3c8529d691a137c4fb1213c6b813cd7.tar.gz gentoo-2-7ca4e8ace3c8529d691a137c4fb1213c6b813cd7.tar.bz2 gentoo-2-7ca4e8ace3c8529d691a137c4fb1213c6b813cd7.zip |
Version bump.
(Portage version: 2.2.0_alpha51/cvs/Linux x86_64)
Diffstat (limited to 'www-apps')
-rw-r--r-- | www-apps/phpsysinfo/ChangeLog | 7 | ||||
-rw-r--r-- | www-apps/phpsysinfo/phpsysinfo-3.0.13.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/www-apps/phpsysinfo/ChangeLog b/www-apps/phpsysinfo/ChangeLog index a56b166bc567..34ff230d8a64 100644 --- a/www-apps/phpsysinfo/ChangeLog +++ b/www-apps/phpsysinfo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-apps/phpsysinfo # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/ChangeLog,v 1.49 2011/07/20 19:33:03 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/ChangeLog,v 1.50 2011/08/31 04:35:17 radhermit Exp $ + +*phpsysinfo-3.0.13 (31 Aug 2011) + + 31 Aug 2011; Tim Harder <radhermit@gentoo.org> +phpsysinfo-3.0.13.ebuild: + Version bump. *phpsysinfo-3.0.12 (20 Jul 2011) diff --git a/www-apps/phpsysinfo/phpsysinfo-3.0.13.ebuild b/www-apps/phpsysinfo/phpsysinfo-3.0.13.ebuild new file mode 100644 index 000000000000..2e1c0cb79e5d --- /dev/null +++ b/www-apps/phpsysinfo/phpsysinfo-3.0.13.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/phpsysinfo/phpsysinfo-3.0.13.ebuild,v 1.1 2011/08/31 04:35:17 radhermit Exp $ + +EAPI="4" + +inherit webapp depend.php + +DESCRIPTION="phpSysInfo is a nice package that will display your system stats via PHP." +HOMEPAGE="http://phpsysinfo.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="" + +RDEPEND="dev-lang/php[simplexml,xml,xsl,unicode] + || ( <dev-lang/php-5.3[pcre] >=dev-lang/php-5.3 )" + +S="${WORKDIR}"/${PN} + +need_httpd_cgi +need_php_httpd + +src_install() { + webapp_src_preinst + + dodoc ChangeLog README* + rm -f ChangeLog COPYING README* + + insinto "${MY_HTDOCSDIR}" + doins -r . + newins config.php{.new,} + + webapp_configfile "${MY_HTDOCSDIR}"/config.php + webapp_src_install +} |