diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2007-12-14 23:14:53 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2007-12-14 23:14:53 +0000 |
commit | dab86ca1c092707944e8106e9e360a822b05a9e9 (patch) | |
tree | 2d6bfb364bb2680a6f3b62bce6f479c5f855248e /www/phpSysInfo | |
parent | 0c767f5b592a13c92130885019a270d1efd3248a (diff) | |
download | ports-dab86ca1c092707944e8106e9e360a822b05a9e9.tar.gz ports-dab86ca1c092707944e8106e9e360a822b05a9e9.zip |
- Update to 3.0-RC3
- Pass maintainership to submitter
PR: 118627
Submitted by: Philippe Audeoud <jadawin@tuxaco.net>
Notes
Notes:
svn path=/head/; revision=203678
Diffstat (limited to 'www/phpSysInfo')
-rw-r--r-- | www/phpSysInfo/Makefile | 9 | ||||
-rw-r--r-- | www/phpSysInfo/distinfo | 6 | ||||
-rw-r--r-- | www/phpSysInfo/files/patch-pre5.2.1-segfault.diff | 11 | ||||
-rw-r--r-- | www/phpSysInfo/files/patch-xss-fix.diff | 11 |
4 files changed, 6 insertions, 31 deletions
diff --git a/www/phpSysInfo/Makefile b/www/phpSysInfo/Makefile index 9e41fb5e05f6..8253bd557c3d 100644 --- a/www/phpSysInfo/Makefile +++ b/www/phpSysInfo/Makefile @@ -5,14 +5,11 @@ # $FreeBSD$ PORTNAME= phpSysInfo -PORTVERSION= 2.5.3 -PORTREVISION= 1 +DISTVERSION= 3.0-RC3 CATEGORIES= www -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME:L} -DISTNAME= ${PORTNAME:L}-${PORTVERSION} +MASTER_SITES= SF -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jadawin@tuxaco.net COMMENT= A php script that displays info about the host being accessed USE_PHP= pcre xml diff --git a/www/phpSysInfo/distinfo b/www/phpSysInfo/distinfo index 796055d79a7c..9605ed9cc085 100644 --- a/www/phpSysInfo/distinfo +++ b/www/phpSysInfo/distinfo @@ -1,3 +1,3 @@ -MD5 (phpsysinfo-2.5.3.tar.gz) = 61a398032b5bb15b0a242cf180a34411 -SHA256 (phpsysinfo-2.5.3.tar.gz) = 33768d2354f44dfbbb53711e6732785de27e96a1a19c2f97e5f59d3e37149400 -SIZE (phpsysinfo-2.5.3.tar.gz) = 267915 +MD5 (phpSysInfo-3.0-RC3.tar.gz) = 297ea14c25be5fb110f46951dca18025 +SHA256 (phpSysInfo-3.0-RC3.tar.gz) = c424dba3848b4b76fe8965c105fecb9396713c176b45dd131f3d340851d87d7d +SIZE (phpSysInfo-3.0-RC3.tar.gz) = 136373 diff --git a/www/phpSysInfo/files/patch-pre5.2.1-segfault.diff b/www/phpSysInfo/files/patch-pre5.2.1-segfault.diff deleted file mode 100644 index f3282fd26c3e..000000000000 --- a/www/phpSysInfo/files/patch-pre5.2.1-segfault.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- includes/xml/filesystems.php.orig -+++ includes/xml/filesystems.php -@@ -85,7 +85,7 @@ - . " <td align=\"" . $textdir['right'] . "\" valign=\"top\"><font size=\"-1\"><b>" . $text['size'] . "</b></font></td>\n </tr>\n"; - for( $i = 1, $max = sizeof( $XPath->getDataParts( "/phpsysinfo/FileSystem" ) ); $i < $max; $i++ ) { - if( $XPath->match( "/phpsysinfo/FileSystem/Mount[" . $i . "]/MountPointID" ) ) { -- if( ! $XPath->match( "/phpsysinfo/FileSystem/Mount[" . $i . "]/Options" ) || ! stristr( $XPath->getData( "/phpsysinfo/FileSystem/Mount[" . $i . "]/Options" ), "bind" ) ) { -+ if( ! $XPath->match( "/phpsysinfo/FileSystem/Mount[" . $i . "]/Options" ) ) { - if( ! in_array( $XPath->getData( "/phpsysinfo/FileSystem/Mount[" . $i . "]/Device/Name" ), $arrCounteddevlist ) ) { - $arrSum['size'] += $XPath->getData( "/phpsysinfo/FileSystem/Mount[" . $i . "]/Size" ); - $arrSum['used'] += $XPath->getData( "/phpsysinfo/FileSystem/Mount[" . $i . "]/Used" ); diff --git a/www/phpSysInfo/files/patch-xss-fix.diff b/www/phpSysInfo/files/patch-xss-fix.diff deleted file mode 100644 index 4f525c29253b..000000000000 --- a/www/phpSysInfo/files/patch-xss-fix.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- includes/system_footer.php.orig Tue Jul 31 10:35:50 2007 -+++ includes/system_footer.php Tue Jul 31 10:35:52 2007 -@@ -29,7 +29,7 @@ - - if( ! $hide_picklist ) { - echo "<center>\n"; -- $update_form = "<form method=\"POST\" action=\"" . $_SERVER['PHP_SELF'] . "\">\n" . "\t" . $text['template'] . ": \n" . "\t<select name=\"template\">\n"; -+ $update_form = "<form method=\"POST\" action=\"" . htmlentities(strip_tags($_SERVER['PHP_SELF'])) . "\">\n" . "\t" . $text['template'] . ": \n" . "\t<select name=\"template\">\n"; - - $resDir = opendir( APP_ROOT . '/templates/' ); - while( false !== ( $strFile = readdir( $resDir ) ) ) { |