diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2005-04-09 22:52:32 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2005-04-09 22:52:32 +0000 |
commit | 9e5f3ca861ea13bbf1820802367705a91d24ac08 (patch) | |
tree | 4ec01b6d6a6950e665d563cdfc5ec8f619c1dfe7 /security | |
parent | A PECL extension to retrieve information from libstatgrab (diff) |
New port: security/pear-Auth_PrefManager PEAR preferences management class
Preference Manager is a class to handle user preferences in a web application,
looking them up in a table using a combination of their userid, and the
preference name to get a value, and (optionally) returning a default value for
the preference if no value could be found for that user.
It is designed to be used alongside the PEAR Auth class, but can be used with
anything that allows you to obtain the user's id - including your own code.
PR: ports/79556
Submitted by: Antonio Carlos Venancio Junior <antonio@php.net>
Notes
Notes:
svn path=/head/; revision=132841
Diffstat (limited to 'security')
-rw-r--r-- | security/Makefile | 1 | ||||
-rw-r--r-- | security/pear-Auth_PrefManager/Makefile | 24 | ||||
-rw-r--r-- | security/pear-Auth_PrefManager/distinfo | 2 | ||||
-rw-r--r-- | security/pear-Auth_PrefManager/pkg-descr | 9 |
4 files changed, 36 insertions, 0 deletions
diff --git a/security/Makefile b/security/Makefile index 88bbf92e2157..fe491feed3a7 100644 --- a/security/Makefile +++ b/security/Makefile @@ -334,6 +334,7 @@ SUBDIR += pam_smb SUBDIR += pear-Auth SUBDIR += pear-Auth_HTTP + SUBDIR += pear-Auth_PrefManager SUBDIR += pear-Auth_SASL SUBDIR += pear-Crypt_CBC SUBDIR += pear-Crypt_CHAP diff --git a/security/pear-Auth_PrefManager/Makefile b/security/pear-Auth_PrefManager/Makefile new file mode 100644 index 000000000000..32166c2399fe --- /dev/null +++ b/security/pear-Auth_PrefManager/Makefile @@ -0,0 +1,24 @@ +# Ports collection makefile for: pear-Auth_PrefManager +# Date created: 05 April 2005 +# Whom: Antonio Carlos Venancio Junior (<antonio@inf.ufsc.br>) +# +# $FreeBSD$ +# + +PORTNAME= Auth_PrefManager +PORTVERSION= 1.1.4 +CATEGORIES= security www pear + +MAINTAINER= antonio@php.net +COMMENT= PEAR preferences management class + +BUILD_DEPENDS= ${PEARDIR}/DB.php:${PORTSDIR}/databases/pear-DB +RUN_DEPENDS= ${BUILD_DEPENDS} + +CATEGORY= Auth +FILES= PrefManager.php +DOCS= PM_Example.php + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" +.include <bsd.port.post.mk> diff --git a/security/pear-Auth_PrefManager/distinfo b/security/pear-Auth_PrefManager/distinfo new file mode 100644 index 000000000000..50abd6c8a2fc --- /dev/null +++ b/security/pear-Auth_PrefManager/distinfo @@ -0,0 +1,2 @@ +MD5 (PEAR/Auth_PrefManager-1.1.4.tgz) = b29c2f95475fbc4970e2fa2d93715ae7 +SIZE (PEAR/Auth_PrefManager-1.1.4.tgz) = 4911 diff --git a/security/pear-Auth_PrefManager/pkg-descr b/security/pear-Auth_PrefManager/pkg-descr new file mode 100644 index 000000000000..d638805fa7e4 --- /dev/null +++ b/security/pear-Auth_PrefManager/pkg-descr @@ -0,0 +1,9 @@ +Preference Manager is a class to handle user preferences in a web application, +looking them up in a table using a combination of their userid, and the +preference name to get a value, and (optionally) returning a default value for +the preference if no value could be found for that user. + +It is designed to be used alongside the PEAR Auth class, but can be used with +anything that allows you to obtain the user's id - including your own code. + +WWW: http://pear.php.net/package/Auth_PrefManager/ |