From javier@aurora.diatel.upm.es  Fri Apr 27 18:30:22 2007
Return-Path: <javier@aurora.diatel.upm.es>
Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 538BC16A401
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 27 Apr 2007 18:30:22 +0000 (UTC)
	(envelope-from javier@aurora.diatel.upm.es)
Received: from aurora.diatel.upm.es (aurora.diatel.upm.es [138.100.49.70])
	by mx1.freebsd.org (Postfix) with ESMTP id CF10313C45A
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 27 Apr 2007 18:30:21 +0000 (UTC)
	(envelope-from javier@aurora.diatel.upm.es)
Received: from aurora.diatel.upm.es (localhost [127.0.0.1])
	by aurora.diatel.upm.es (8.13.8/8.13.8) with ESMTP id l3RIK7C9018953
	for <FreeBSD-gnats-submit@freebsd.org>; Fri, 27 Apr 2007 20:20:07 +0200 (CEST)
	(envelope-from javier@aurora.diatel.upm.es)
Received: (from javier@localhost)
	by aurora.diatel.upm.es (8.13.8/8.13.8/Submit) id l3RIK74l018952;
	Fri, 27 Apr 2007 20:20:07 +0200 (CEST)
	(envelope-from javier)
Message-Id: <200704271820.l3RIK74l018952@aurora.diatel.upm.es>
Date: Fri, 27 Apr 2007 20:20:07 +0200 (CEST)
From: Javier Martn Rueda <jmrueda@diatel.upm.es>
Reply-To: Javier Martn Rueda <jmrueda@diatel.upm.es>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [maintainer update] Upgrade of Moodle port to version 1.8
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         112187
>Category:       ports
>Synopsis:       [maintainer update] Upgrade of Moodle port to version 1.8
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Fri Apr 27 18:40:03 GMT 2007
>Closed-Date:    Sat Apr 28 12:33:37 GMT 2007
>Last-Modified:  Sat Apr 28 12:40:02 GMT 2007
>Originator:     Javier Martn Rueda
>Release:        FreeBSD 6.2-RELEASE i386
>Organization:
Dpto. DIATEL - Universidad Politcnica de Madrid
>Environment:
System: FreeBSD aurora.diatel.upm.es 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Thu Jan 25 14:43:13 CET 2007 root@aurora.diatel.upm.es:/usr/obj/usr/src/sys/AURORA i386


	
>Description:
	

This is an upgrade of the Moodle port from version 1.7.1 to version 1.8.

Main changes are:

- Addition of several PHP5 modules that Moodle recommends
- Addition of OPTIONS to select the database and a few other things

>How-To-Repeat:
	
>Fix:

	

I enclose diff between old and new port. There are no added files.

diff -ruN moodle17/Makefile moodle/Makefile
--- moodle17/Makefile	Thu Jan 25 02:19:12 2007
+++ moodle/Makefile	Fri Apr 27 19:20:53 2007
@@ -6,17 +6,40 @@
 #
 
 PORTNAME=	moodle
-PORTVERSION=	1.7.1
+PORTVERSION=	1.8
 CATEGORIES=	www
-MASTER_SITES=	http://download.moodle.org/stable17/
+MASTER_SITES=	http://download.moodle.org/stable18/
 EXTRACT_SUFX=	.tgz
 
 MAINTAINER=	jmrueda@diatel.upm.es
 COMMENT=	Course management system based on social constructionism
 
-USE_PHP=	session gd pcre
+USE_PHP=	session gd pcre mbstring iconv tokenizer curl xml
 WRKSRC=		${WRKDIR}/moodle
 
+OPTIONS=	MYSQL   "Add support for a MySQL database server" Off \
+			PGSQL   "Add support for a PostgreSQL database server" Off \
+			MSSQL   "Add support for a MS SQL Server" Off \
+			ZLIB    "Add zip/unzip functionality" On \
+			NETWORK "Add Moodle Network functionality" Off \
+			LDAP    "Add LDAP authentication functionality" Off
+
+.include <bsd.port.pre.mk>
+
+.if !defined(WITH_MYSQL) && !defined(WITH_PGSQL) && !defined(WITH_MSSQL)
+pre-fetch:
+	@${ECHO_MSG} "
+	@${ECHO_MSG} "You didn't activate support for any database server!"
+	@${ECHO_MSG} "
+	@${ECHO_MSG} "If you want to reconsider, press Ctrl-C now to cancel"
+	@${ECHO_MSG} "the installation and run 'make config'"
+	@${ECHO_MSG} "
+	@${ECHO_MSG} "You can also add the required PHP module later, if that's"
+	@${ECHO_MSG} "what you prefer."
+	@${ECHO_MSG} "
+	@sleep 5
+.endif
+
 .if defined(WITH_MYSQL)
 USE_PHP+=	mysql
 .endif
@@ -25,12 +48,22 @@
 USE_PHP+=	pgsql
 .endif
 
+.if defined(WITH_MSSQL)
+USE_PHP+=	mssql
+.endif
+
+.if !defined(WITHOUT_ZLIB)
+USE_PHP+=	zlib
+.endif
+
+.if defined(WITH_NETWORK)
+USE_PHP+=	curl openssl
+.endif
+
 .if defined(WITH_LDAP)
 USE_PHP+=	ldap
 .endif
 
-.include <bsd.port.pre.mk>
-
 NO_BUILD=	yes
 PLIST=		${WRKDIR}/plist
 SUB_FILES=	pkg-message
@@ -39,14 +72,6 @@
 
 MOODLEDIR?=	www/moodle
 MOODLEDATADIR?=	www/moodledata
-
-pre-everything::
-	@${ECHO_CMD} "===> You can use the following options:"
-	@${ECHO_CMD} ""
-	@${ECHO_CMD} "o WITH_MYSQL - Use a MySQL database"
-	@${ECHO_CMD} "o WITH_PGSQL - Use a pgSQL database"
-	@${ECHO_CMD} "o WITH_LDAP  - Ensure your PHP has ldap extension"
-	@${ECHO_CMD} ""
 
 pre-install:
 	@${FIND} -s -d ${WRKSRC} -type f | ${SED} "s?${WRKSRC}?${MOODLEDIR}?g" >${PLIST}
diff -ruN moodle17/distinfo moodle/distinfo
--- moodle17/distinfo	Thu Jan 25 02:19:12 2007
+++ moodle/distinfo	Wed Apr 25 16:22:10 2007
@@ -1,3 +1,3 @@
-MD5 (moodle-1.7.1.tgz) = 80e69370d56815eef5c6f422f8fc5a44
-SHA256 (moodle-1.7.1.tgz) = f9b4a7ecf0cd6b5deaea3570ecde8f048b7e647fe915369a96cbf3d3b6fc11dc
-SIZE (moodle-1.7.1.tgz) = 9591469
+MD5 (moodle-1.8.tgz) = dc58848eb315fbf3173d6f2318c0a28d
+SHA256 (moodle-1.8.tgz) = 6ac3d3ca631e1fe2b315c1508e0d1e68224d652ce16d4387dc1877f847ab01ef
+SIZE (moodle-1.8.tgz) = 10104918
diff -ruN moodle17/files/pkg-message.in moodle/files/pkg-message.in
--- moodle17/files/pkg-message.in	Thu Nov 30 11:18:25 2006
+++ moodle/files/pkg-message.in	Wed Apr 25 16:21:00 2007
@@ -5,8 +5,8 @@
    its tables in (or choose an existing database).
    It doesn't matter what the database or user names are,
    as this will be configured in a later step.
-   NOTE: this package assumes that either the phpX-pgsql
-   or phpX-mysql packages are installed, as needed.
+   NOTE: this package assumes that either the phpX-pgsql,
+   phpX-mysql, or phpX-mssql packages are installed.
 
 2) Add the following to your Apache configuration, and
    restart the server:
@@ -47,10 +47,15 @@
 
    http://docs.moodle.org/en/Installing_Moodle
 
+It may be worth reading the installation docs even if Moodle seems
+to be working at first, to ensure your PHP settings and database
+configuration will allow Moodle to operate properly.
+
 If you are upgrading from an earlier version of Moodle, check out
 possible additional steps at:
 
-   http://docs.moodle.org/en/Upgrading_to_Moodle_1.7
+   http://docs.moodle.org/en/Upgrading
+   http://docs.moodle.org/en/Upgrading_to_Moodle_1.8
 
 If you have real trouble, please visit the Moodle course
 "Using Moodle" on moodle.org.
>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Fri Apr 27 19:08:12 UTC 2007 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=112187 
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Sat Apr 28 12:33:29 UTC 2007 
State-Changed-Why:  
Committed. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=112187 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/112187: commit references a PR
Date: Sat, 28 Apr 2007 12:33:26 +0000 (UTC)

 miwi        2007-04-28 12:33:22 UTC
 
   FreeBSD ports repository
 
   Modified files:
     www/moodle           Makefile distinfo 
     www/moodle/files     pkg-message.in 
   Log:
   - Update to 1.8
   - Addition of several PHP5 modules that Moodle recommends
   
   PR:             112187
   Submitted by:   Javier Martn Rueda <jmrueda@diatel.upm.es> (maintainer)
   
   Revision  Changes    Path
   1.9       +38 -13    ports/www/moodle/Makefile
   1.7       +3 -3      ports/www/moodle/distinfo
   1.3       +8 -3      ports/www/moodle/files/pkg-message.in
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
