From owner-freebsd-ports-bugs Wed Feb 5 14: 0:32 2003 Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 560F337B401 for ; Wed, 5 Feb 2003 14:00:27 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1965943F79 for ; Wed, 5 Feb 2003 14:00:26 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h15M0PNS028442 for ; Wed, 5 Feb 2003 14:00:25 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h15M0P4H028441; Wed, 5 Feb 2003 14:00:25 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3ED6337B43D for ; Wed, 5 Feb 2003 13:52:27 -0800 (PST) Received: from postfix4-1.free.fr (postfix4-1.free.fr [213.228.0.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE4A343F43 for ; Wed, 5 Feb 2003 13:52:24 -0800 (PST) (envelope-from thierry@pompo.net) Received: from graf.pompo.net (lyon-2-a7-62-147-20-219.dial.proxad.net [62.147.20.219]) by postfix4-1.free.fr (Postfix) with ESMTP id 3BE7815D04 for ; Wed, 5 Feb 2003 22:52:21 +0100 (CET) Received: by graf.pompo.net (Postfix, from userid 1001) id C0B9B750F; Wed, 5 Feb 2003 22:50:13 +0100 (CET) Message-Id: <20030205215013.C0B9B750F@graf.pompo.net> Date: Wed, 5 Feb 2003 22:50:13 +0100 (CET) From: Thierry Thomas Reply-To: Thierry Thomas To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/47977: www/horde2: upgrading to 2.2.1. Sender: owner-freebsd-ports-bugs@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 47977 >Category: ports >Synopsis: www/horde2: upgrading to 2.2.1. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 05 14:00:25 PST 2003 >Closed-Date: >Last-Modified: >Originator: Thierry Thomas >Release: FreeBSD 4.7-STABLE i386 >Organization: Kabbale Eros >Environment: System: FreeBSD graf.pompo.net 4.7-STABLE FreeBSD 4.7-STABLE #0: Sun Dec 29 12:46:07 CET 2002 root@graf.pompo.net:/usr/obj/mntsrc/src/sys/GRAF020727 i386 >Description: This version fixes a few bugs introduced with Horde 2.2. This PR fixes pkg-deinstall where there is no sed_inplace. >How-To-Repeat: N/A. >Fix: Please apply the following patch: (warning, patch-po_translation.php and patch-scripts_db_README are two new files) diff -urN www/horde2.orig/Makefile www/horde2/Makefile --- www/horde2.orig/Makefile Thu Jan 30 14:42:37 2003 +++ www/horde2/Makefile Wed Feb 5 22:12:37 2003 @@ -6,7 +6,7 @@ # PORTNAME= horde -PORTVERSION= 2.2 +PORTVERSION= 2.2.1 CATEGORIES= www MASTER_SITES= ftp://ftp.horde.org/pub/horde/ \ ftp://ftp.au.horde.org/pub/horde/ \ @@ -30,9 +30,9 @@ .endif # Remark: pear-XML_sql2xml is included, but never used. RUN_DEPENDS= ${PHP_LIB}/Crypt/CBC.php:${PORTSDIR}/security/pear-Crypt_CBC \ - ${PHP_LIB}/Date.php:${PORTSDIR}/devel/pear-Date \ - ${PHP_LIB}/HTML/Select.php:${PORTSDIR}/devel/pear-HTML_Select \ - ${PHP_LIB}/Log.php:${PORTSDIR}/sysutils/pear-Log \ + ${PHP_LIB}/Date.php:${PORTSDIR}/devel/pear-Date \ + ${PHP_LIB}/HTML/Select.php:${PORTSDIR}/devel/pear-HTML_Select_Common \ + ${PHP_LIB}/Log.php:${PORTSDIR}/sysutils/pear-Log \ ${PHP_LIB}/Mail/mime.php:${PORTSDIR}/mail/pear-Mail_Mime NO_BUILD= yes @@ -42,7 +42,8 @@ REINPLACE_ARGS= -i.beforeHorde DOCS= COPYING README docs/CHANGES docs/CODING_STANDARDS \ - docs/CONTRIBUTING docs/CREDITS docs/HACKING docs/INSTALL + docs/CONTRIBUTING docs/CREDITS docs/HACKING docs/INSTALL \ + docs/TRANSLATIONS CONFFILE= html.php lang.php mime_drivers.php mime_mapping.php \ motd.php prefs.php registry.php SUB_DIRS= config graphics lib locale po scripts templates util @@ -76,6 +77,12 @@ @if [ -f ${HORDEDIR}/index.php3 ]; then \ ${ECHO_MSG} "" ; \ ${ECHO_MSG} "Please deinstall the port www/horde." ; \ + ${ECHO_MSG} "" ; \ + ${FALSE} ; \ + fi + @if ! ${LDD} ${PHPSO} | ${GREP} -q -e "libxml2.so"; then \ + ${ECHO_MSG} "" ; \ + ${ECHO_MSG} "Please configure PHP with DOM XML support." ; \ ${ECHO_MSG} "" ; \ ${FALSE} ; \ fi diff -urN www/horde2.orig/distinfo www/horde2/distinfo --- www/horde2.orig/distinfo Thu Jan 30 14:42:37 2003 +++ www/horde2/distinfo Wed Feb 5 22:07:57 2003 @@ -1 +1 @@ -MD5 (horde-2.2.tar.gz) = 3074fe5e4a284e74af37e608f9981401 +MD5 (horde-2.2.1.tar.gz) = 0a1e087f5017524a6b1b3d62204f49bb diff -urN www/horde2.orig/files/patch-po_translation.php www/horde2/files/patch-po_translation.php --- www/horde2.orig/files/patch-po_translation.php Thu Jan 1 01:00:00 1970 +++ www/horde2/files/patch-po_translation.php Wed Jan 29 23:01:29 2003 @@ -0,0 +1,8 @@ +--- po/translation.php.orig Tue Jan 21 16:05:36 2003 ++++ po/translation.php Wed Jan 29 23:00:27 2003 +@@ -1,4 +1,4 @@ +-#!/usr/bin/php -q ++#!/usr/local/bin/php -q + Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports-bugs" in the body of the message