diff --git a/www/Makefile b/www/Makefile index 70a9f98cd070..ba11069aa1e2 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1015,6 +1015,7 @@ SUBDIR += pear-HTTP_Request SUBDIR += pear-HTTP_Server SUBDIR += pear-HTTP_Session + SUBDIR += pear-HTTP_Session2 SUBDIR += pear-HTTP_Upload SUBDIR += pear-Services_Compete SUBDIR += pear-Services_Delicious diff --git a/www/pear-HTTP_Session2/Makefile b/www/pear-HTTP_Session2/Makefile index 0a4363561630..9fe59b3f188d 100644 --- a/www/pear-HTTP_Session2/Makefile +++ b/www/pear-HTTP_Session2/Makefile @@ -5,25 +5,29 @@ # $FreeBSD$ # -PORTNAME= HTTP_Session -PORTVERSION= 0.5.6 +PORTNAME= HTTP_Session2 +PORTVERSION= 0.7.2 CATEGORIES= www devel pear MAINTAINER= bg1tpt@gmail.com -COMMENT= PEAR Object-oriented interface to the session_* family functions +COMMENT= PHP5 Session Handler BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear RUN_DEPENDS= ${BUILD_DEPENDS} USE_DOS2UNIX= yes -FILES= Session.php Session/Container.php Session/Container/DB.php \ - Session/Container/MDB.php Session/Container/MDB2.php \ - Session/Container/Memcache.php -EXAMPLES= HTTP_Session_Example.php Container_Example.php sessiondata.sql +CATEGORY= HTTP +FILES= HTTP/Session2.php \ + HTTP/Session2/Container.php \ + HTTP/Session2/Exception.php \ + HTTP/Session2/Container/DB.php \ + HTTP/Session2/Container/Interface.php \ + HTTP/Session2/Container/MDB2.php \ + HTTP/Session2/Container/Memcache.php +EXAMPLES= HTTP_Session2_Example.php sessiondata.sql _EXAMPLESDIR= docs -TESTS= AllTests.bat AllTests.php HTTP_SessionTest.php \ - HTTP_Session_ContainerTest.php +TESTS= AllTests.php Session2Test.php .include .include "${PORTSDIR}/devel/pear/bsd.pear.mk" diff --git a/www/pear-HTTP_Session2/distinfo b/www/pear-HTTP_Session2/distinfo index 8f48eb7c229e..ea52260acfdd 100644 --- a/www/pear-HTTP_Session2/distinfo +++ b/www/pear-HTTP_Session2/distinfo @@ -1,3 +1,3 @@ -MD5 (PEAR/HTTP_Session-0.5.6.tgz) = 96a45274b2164f13c3b73e274453787d -SHA256 (PEAR/HTTP_Session-0.5.6.tgz) = 2aabce7400ad8f0deedd08f873f098e5ca76f2c4c56a2eac0abe69d251258b18 -SIZE (PEAR/HTTP_Session-0.5.6.tgz) = 15343 +MD5 (PEAR/HTTP_Session2-0.7.2.tgz) = 3cce2f2c35fc36f726e01df10e006a48 +SHA256 (PEAR/HTTP_Session2-0.7.2.tgz) = 716c8745c09090981c4544d6361018c86d2491ade66e8c0779579365c866de73 +SIZE (PEAR/HTTP_Session2-0.7.2.tgz) = 13636 diff --git a/www/pear-HTTP_Session2/pkg-descr b/www/pear-HTTP_Session2/pkg-descr index 91fd113c536f..5350119d5c31 100644 --- a/www/pear-HTTP_Session2/pkg-descr +++ b/www/pear-HTTP_Session2/pkg-descr @@ -1,7 +1,5 @@ -Object-oriented interface to the session_* family functions -it provides extra features such as database storage for -session data using DB package. It introduces new methods -like isNew(), useCookies(), setExpire(), setIdle(), -isExpired(), isIdled() and others. +PHP5 Object-oriented interface to the session_* family functions +it provides extra features such as database storage for session +data using DB/MDB2 packages. -WWW: http://pear.php.net/package/HTTP_Session/ +WWW: http://pear.php.net/package/HTTP_Session2/