diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2003-01-31 22:21:08 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2003-01-31 22:21:08 +0000 |
commit | 6adc8722702ee01eca01e47425ea7ec34aec68af (patch) | |
tree | 591c1e29ab03c37f66ad14de1622f55b8f953eeb /dev-php/phpsysinfo | |
parent | Change SRC_URI to use mirror://sourceforge. (diff) | |
download | historical-6adc8722702ee01eca01e47425ea7ec34aec68af.tar.gz historical-6adc8722702ee01eca01e47425ea7ec34aec68af.tar.bz2 historical-6adc8722702ee01eca01e47425ea7ec34aec68af.zip |
new package. x86 masked. fixes #12711
Diffstat (limited to 'dev-php/phpsysinfo')
-rw-r--r-- | dev-php/phpsysinfo/ChangeLog | 8 | ||||
-rw-r--r-- | dev-php/phpsysinfo/files/digest-phpsysinfo-2.1 | 1 | ||||
-rw-r--r-- | dev-php/phpsysinfo/phpsysinfo-2.1.ebuild | 29 |
3 files changed, 38 insertions, 0 deletions
diff --git a/dev-php/phpsysinfo/ChangeLog b/dev-php/phpsysinfo/ChangeLog new file mode 100644 index 000000000000..eb99eb9e1e80 --- /dev/null +++ b/dev-php/phpsysinfo/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-php/phpsysinfo +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/dev-php/phpsysinfo/ChangeLog,v 1.1 2003/01/31 22:21:08 rphillips Exp $ + +*phpsysinfo-1.2 (31 Jan 2003) + + 31 Jan 2003; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + New package. Submitted by Zack Gilburd. Fixes #12711 diff --git a/dev-php/phpsysinfo/files/digest-phpsysinfo-2.1 b/dev-php/phpsysinfo/files/digest-phpsysinfo-2.1 new file mode 100644 index 000000000000..6ff77ae43f09 --- /dev/null +++ b/dev-php/phpsysinfo/files/digest-phpsysinfo-2.1 @@ -0,0 +1 @@ +MD5 22d4d7977dfff237f8e0aa3e4ebaee75 phpSysInfo-2.1.tar.gz 104141 diff --git a/dev-php/phpsysinfo/phpsysinfo-2.1.ebuild b/dev-php/phpsysinfo/phpsysinfo-2.1.ebuild new file mode 100644 index 000000000000..766186ddd639 --- /dev/null +++ b/dev-php/phpsysinfo/phpsysinfo-2.1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-php/phpsysinfo/phpsysinfo-2.1.ebuild,v 1.1 2003/01/31 22:21:08 rphillips Exp $ + +DESCRIPTION="phpSysInfo is a nice package that will display your system stats via PHP." +HOMEPAGE="http://phpsysinfo.sourceforge.net/" +SRC_URI="mirror://sourceforge/phpsysinfo/phpSysInfo-${PV}.tar.gz" +LICENSE="GPL" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND=">=apache-1.3.27-r1 >=mod_php-4.2.3-r2" +S=${WORKDIR}/phpSysInfo-${PV} + +src_compile() { :; } + +src_install() { + insinto /home/httpd/htdocs/phpsysinfo + doins *.{php,dtd} + cp -pR templates ${D}/home/httpd/htdocs/phpsysinfo + cp -pR includes ${D}/home/httpd/htdocs/phpsysinfo + +} +pkg_postinst() { + einfo + einfo "Your stats are now availible at http://yoursever/phpsysinfo" + einfo +} + |