Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Oct 2006 10:54:55 +0800
From:      chinsan <chinsan@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/104729: [PATCH] security/pear-Auth: update to 1.4.0, take maintainership
Message-ID:  <20061024025413.39FE22E9DF@smtp2.bc.hgc.com.tw>
Resent-Message-ID: <200610240300.k9O30YRq017988@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         104729
>Category:       ports
>Synopsis:       [PATCH] security/pear-Auth: update to 1.4.0, take maintainership
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Tue Oct 24 03:00:33 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     chinsan
>Release:        FreeBSD 6.2-PRERELEASE i386
>Organization:
Taiwan
>Environment:
System: FreeBSD BSD6.giga.hgc.com.tw 6.2-PRERELEASE FreeBSD 6.2-PRERELEASE #6: Thu Sep 14 09:46:10 CST 2006
>Description:
- Update to 1.4.0
- Take maintainership

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- pear-Auth-1.4.0.patch begins here ---
diff -ruN --exclude=CVS /usr/ports/security/pear-Auth/Makefile /usr/home/chinsan/project/pear-Auth/Makefile
--- /usr/ports/security/pear-Auth/Makefile	Sun Sep 24 05:20:14 2006
+++ /usr/home/chinsan/project/pear-Auth/Makefile	Tue Oct 24 10:53:55 2006
@@ -6,10 +6,10 @@
 #
 
 PORTNAME=	Auth
-PORTVERSION=	1.3.0
+PORTVERSION=	1.4.0
 CATEGORIES=	security pear
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	chinsan@FreeBSD.org
 COMMENT=	PEAR class for creating an authentication system
 
 BUILD_DEPENDS=	${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear
@@ -18,24 +18,29 @@
 LATEST_LINK=	pear-Auth
 OPTIONS=	PEAR_FILE_PASSWD "PEAR::File_Passwd support" off \
 		PEAR_NET_POP3 "PEAR::Net_POP3 support" off \
+		PEAR_CRYPT_CHAP "PEAR::CRYPT_CHAP support" off \
 		PEAR_DB "PEAR::DB support" off \
 		PEAR_MDB "PEAR::MDB support" off \
 		PEAR_MDB2 "PEAR::MDB2 support" off \
-		PEAR_FILE_SMBPASSWD "PEAR::File_SMBPasswd support" off
+		PEAR_AUTH_RADIUS "PEAR::AUTH_RADIUS support" off \
+		PEAR_FILE_SMBPASSWD "PEAR::File_SMBPasswd support" off \
+		PEAR_SOAP "PEAR::SOAP support" off
 
 CATEGORY=	Auth
-FILES=		Auth.php Auth/Auth.php Container.php Container/DB.php \
-		Container/DBLite.php Container/File.php Container/IMAP.php \
-		Container/POP3.php Container/LDAP.php Container/MDB.php \
-		Container/MDB2.php Container/RADIUS.php Container/SMBPasswd.php \
-		Container/SOAP.php Container/vpopmail.php
-TESTS=		auth_container_db_options.php DBContainer.php \
-		auth_container_file_options.php FileContainer.php \
-		auth_container_pop3_options.php POP3Container.php \
-		auth_container_mdb_options.php MDBContainer.php \
-		auth_container_mdb2_options.php MDB2Container.php \
-		POP3Container.php auth_container_pop3a_options.php \
-		POP3aContainer.php TestAuthContainer.php users tests.php
+FILES=		Auth.php Container.php Auth/Anonymous.php Auth/Auth.php \
+		Auth/Controller.php Container/DB.php Container/DBLite.php \
+		Container/File.php Container/IMAP.php Container/KADM5.php\
+		Container/LDAP.php Container/MDB.php Container/MDB2.php \
+		Container/PEAR.php Container/POP3.php Container/RADIUS.php \
+		Container/SMBPasswd.php Container/SOAP.php Container/SOAP5.php \
+		Container/vpopmail.php Frontend/Html.php Frontend/md5.js
+TESTS=		auth_container_db_options.php auth_container_file_options.php \
+		auth_container_mdb2_options.php auth_container_mdb_options.php \
+		auth_container_pop3a_options.php auth_container_pop3_options.php \
+		DBContainer.php FileContainer.php MDB2Container.php \
+		MDBContainer.php mysql_test_db.sql POP3aContainer.php \
+		POP3Container.php TestAuthContainer.php tests.php users \
+		bug8735.passwd bug8735.phpt
 DOCS=		README.Auth
 _DOCSDIR=	.
 
@@ -48,6 +53,10 @@
 RUN_DEPENDS+=	${PEARDIR}/File/Passwd.php:${PORTSDIR}/security/pear-File_Passwd
 .endif
 
+.if defined(WITH_PEAR_CRYPT_CHAP)
+RUN_DEPENDS+=	${PEARDIR}/Crypt/CHAP.php:${PORTSDIR}/security/pear-Crypt_CHAP
+.endif
+
 .if defined(WITH_PEAR_NET_POP3)
 RUN_DEPENDS+=	${PEARDIR}/Net/POP3.php:${PORTSDIR}/net/pear-Net_POP3
 .endif
@@ -70,6 +79,10 @@
 
 .if defined(WITH_PEAR_FILE_SMBPASSWD)
 RUN_DEPENDS+=	${PEARDIR}/File/SMBPasswd.php:${PORTSDIR}/security/pear-File_SMBPasswd
+.endif
+
+.if defined(WITH_PEAR_SOAP)
+RUN_DEPENDS+=	${PEARDIR}/SOAP/Base.php:${PORTSDIR}/net/pear-SOAP
 .endif
 
 .include "${PORTSDIR}/devel/pear/bsd.pear.mk"
diff -ruN --exclude=CVS /usr/ports/security/pear-Auth/distinfo /usr/home/chinsan/project/pear-Auth/distinfo
--- /usr/ports/security/pear-Auth/distinfo	Wed Sep 20 05:19:51 2006
+++ /usr/home/chinsan/project/pear-Auth/distinfo	Mon Oct 23 17:04:28 2006
@@ -1,3 +1,3 @@
-MD5 (PEAR/Auth-1.3.0.tgz) = bdeda8b053d87b948c2cea44378581b8
-SHA256 (PEAR/Auth-1.3.0.tgz) = e99158651c9a9b44096198653d2e5b4f845c41144b735fcb84ee21565196892a
-SIZE (PEAR/Auth-1.3.0.tgz) = 39759
+MD5 (PEAR/Auth-1.4.0.tgz) = 111c97d5f3ece28d57119526214e23ef
+SHA256 (PEAR/Auth-1.4.0.tgz) = c7a2e0647a40f29bfbecc30c4ec208c3ae5f4f6301172e6b022ba9cf8866cfb9
+SIZE (PEAR/Auth-1.4.0.tgz) = 52830
--- pear-Auth-1.4.0.patch ends here ---

>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20061024025413.39FE22E9DF>