diff options
author | pav <pav@FreeBSD.org> | 2005-09-15 04:25:18 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-09-15 04:25:18 +0800 |
commit | 8448cef2cf18bc26fca9c32439f5cabe63fd990a (patch) | |
tree | 0ceba5b049c131b259920102c592f36365a37007 /net/pear-Net_LDAP2 | |
parent | b817202db0f6727b18d6b9d0fdd41db55fe2c867 (diff) | |
download | freebsd-ports-gnome-8448cef2cf18bc26fca9c32439f5cabe63fd990a.tar.gz freebsd-ports-gnome-8448cef2cf18bc26fca9c32439f5cabe63fd990a.tar.zst freebsd-ports-gnome-8448cef2cf18bc26fca9c32439f5cabe63fd990a.zip |
Net Ldap is a clone of Perls Net::LDAP object interface to
ldapservers. It does not contain all of Net::LDAPs features,
but has:
* A simple OO-interface to connections, searches and entries.
* Support for tls and ldap v3.
* Simple modification, deletion and creation of ldapentries.
* Support for schema handling.
PR: ports/84642
Submitted by: Gerrit Beine <tux@pinguru.net>
Diffstat (limited to 'net/pear-Net_LDAP2')
-rw-r--r-- | net/pear-Net_LDAP2/Makefile | 29 | ||||
-rw-r--r-- | net/pear-Net_LDAP2/distinfo | 2 | ||||
-rw-r--r-- | net/pear-Net_LDAP2/pkg-descr | 9 |
3 files changed, 40 insertions, 0 deletions
diff --git a/net/pear-Net_LDAP2/Makefile b/net/pear-Net_LDAP2/Makefile new file mode 100644 index 000000000000..377b06743a15 --- /dev/null +++ b/net/pear-Net_LDAP2/Makefile @@ -0,0 +1,29 @@ +# Ports collection makefile for: pear-Net_LDAP +# Date created: 26 June 2004 +# Whom: Gerrit Beine (<tux@pinguru.net>) +# +# $FreeBSD$ +# + +PORTNAME= Net_LDAP +PORTVERSION= 0.6.6 +CATEGORIES= net pear + +MAINTAINER= tux@pinguru.net +COMMENT= OO interface for searching and manipulating LDAP-entries + +BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR +RUN_DEPENDS= ${BUILD_DEPENDS} + +USE_PHP= ldap +CATEGORY= Net +FILES= LDAP.php \ + LDAP/Entry.php LDAP/RootDSE.php LDAP/Schema.php \ + LDAP/Search.php LDAP/Util.php +DOCS= README.txt RootDSE.txt STATUS Schema.txt utf8.txt +_DOCSDIR= ./doc +TESTS= tests.php + +.include <bsd.port.pre.mk> +.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common" +.include <bsd.port.post.mk> diff --git a/net/pear-Net_LDAP2/distinfo b/net/pear-Net_LDAP2/distinfo new file mode 100644 index 000000000000..1d66d38c1048 --- /dev/null +++ b/net/pear-Net_LDAP2/distinfo @@ -0,0 +1,2 @@ +MD5 (PEAR/Net_LDAP-0.6.6.tgz) = d19f11c671122d0ff30928d86a868096 +SIZE (PEAR/Net_LDAP-0.6.6.tgz) = 32776 diff --git a/net/pear-Net_LDAP2/pkg-descr b/net/pear-Net_LDAP2/pkg-descr new file mode 100644 index 000000000000..92111429d672 --- /dev/null +++ b/net/pear-Net_LDAP2/pkg-descr @@ -0,0 +1,9 @@ +Net Ldap is a clone of Perls Net::LDAP object interface to +ldapservers. It does not contain all of Net::LDAPs features, +but has: +* A simple OO-interface to connections, searches and entries. +* Support for tls and ldap v3. +* Simple modification, deletion and creation of ldapentries. +* Support for schema handling. + +WWW: http://pear.php.net/package/Net_LDAP/ |