From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 12 14:50:01 2008 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99863106566B for ; Fri, 12 Sep 2008 14:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 37DBC8FC25 for ; Fri, 12 Sep 2008 14:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m8CEo0R4075201 for ; Fri, 12 Sep 2008 14:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m8CEo0u6075200; Fri, 12 Sep 2008 14:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 12 Sep 2008 14:50:00 GMT Resent-Message-Id: <200809121450.m8CEo0u6075200@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Janos Mohacsi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE390106567C for ; Fri, 12 Sep 2008 14:44:38 +0000 (UTC) (envelope-from mohacsi@csoki.ki.iif.hu) Received: from csoki.ki.iif.hu (csoki.ki.iif.hu [IPv6:2001:738:0:401::3]) by mx1.freebsd.org (Postfix) with ESMTP id 4797A8FC2A for ; Fri, 12 Sep 2008 14:44:38 +0000 (UTC) (envelope-from mohacsi@csoki.ki.iif.hu) Received: from csoki.ki.iif.hu (localhost [127.0.0.1]) by csoki.ki.iif.hu (8.14.3/8.14.3) with ESMTP id m8CEiaZU071887; Fri, 12 Sep 2008 16:44:36 +0200 (CEST) (envelope-from mohacsi@csoki.ki.iif.hu) Received: (from root@localhost) by csoki.ki.iif.hu (8.14.3/8.14.3/Submit) id m8CEiZjZ071886; Fri, 12 Sep 2008 16:44:35 +0200 (CEST) (envelope-from mohacsi) Message-Id: <200809121444.m8CEiZjZ071886@csoki.ki.iif.hu> Date: Fri, 12 Sep 2008 16:44:35 +0200 (CEST) From: Janos Mohacsi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: tonymaher@optusnet.com.au Subject: ports/127324: [PATCH] security/apache-xml-security-c: update to 1.4.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 12 Sep 2008 14:50:01 -0000 >Number: 127324 >Category: ports >Synopsis: [PATCH] security/apache-xml-security-c: update to 1.4.0 >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: Fri Sep 12 14:50:00 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Janos Mohacsi >Release: FreeBSD 6.4-PRERELEASE i386 >Organization: NIIF/HUNGARNET >Environment: System: FreeBSD csoki.ki.iif.hu 6.4-PRERELEASE FreeBSD 6.4-PRERELEASE #7: Fri Sep 5 15:16:32 CEST >Description: - Update to 1.4.0 + enable using the xerces-c version 2.8 - which is required by shibboleth2. This patch is related to PR: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/119556 and http://www.freebsd.org/cgi/query-pr.cgi?pr=127322 Port maintainer (tonymaher@optusnet.com.au) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- apache-xml-security-c-1.4.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/security/apache-xml-security-c.orig/Makefile /usr/ports/security/apache-xml-security-c/Makefile --- /usr/ports/security/apache-xml-security-c.orig/Makefile 2007-02-15 00:10:27.000000000 +0100 +++ /usr/ports/security/apache-xml-security-c/Makefile 2008-09-12 16:36:14.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= xml-security-c -PORTVERSION= 1.3.1 +PORTVERSION= 1.4.0 CATEGORIES= security MASTER_SITES= http://xml.apache.org/security/dist/c-library/ PKGNAMEPREFIX= apache- @@ -14,7 +14,15 @@ MAINTAINER= tonymaher@optusnet.com.au COMMENT= Apache XML security libraries C version +OPTIONS= XERCES_DEVEL "With Xerces vesion 2.8 (shibboleth2 requires)" on + +.include + +.if defined(WITH_XERCES_DEVEL) +LIB_DEPENDS= xerces-c.28:${PORTSDIR}/textproc/xerces-c2-devel +.else LIB_DEPENDS= xerces-c.27:${PORTSDIR}/textproc/xerces-c2 +.endif GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-xerces=${LOCALBASE} @@ -22,4 +30,4 @@ USE_GMAKE= yes USE_LDCONFIG= yes -.include +.include diff -ruN --exclude=CVS /usr/ports/security/apache-xml-security-c.orig/distinfo /usr/ports/security/apache-xml-security-c/distinfo --- /usr/ports/security/apache-xml-security-c.orig/distinfo 2007-02-15 00:10:27.000000000 +0100 +++ /usr/ports/security/apache-xml-security-c/distinfo 2008-09-12 16:22:10.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (xml-security-c-1.3.1.tar.gz) = 1da072b76eaa69241b1e56da61e2e182 -SHA256 (xml-security-c-1.3.1.tar.gz) = c99f81bc18fbfa8043832abde09a9a750b2eefa7a3a9f1ed442952bde26bf7d5 -SIZE (xml-security-c-1.3.1.tar.gz) = 3170378 +MD5 (xml-security-c-1.4.0.tar.gz) = dd9accf6727eb008dbf1dd674d5d4dcc +SHA256 (xml-security-c-1.4.0.tar.gz) = 955c570a965ab58d021a797ad85ad052ec37d9b8739d9a926d1081fb96c6245f +SIZE (xml-security-c-1.4.0.tar.gz) = 934876 diff -ruN --exclude=CVS /usr/ports/security/apache-xml-security-c.orig/pkg-plist /usr/ports/security/apache-xml-security-c/pkg-plist --- /usr/ports/security/apache-xml-security-c.orig/pkg-plist 2007-02-15 00:10:27.000000000 +0100 +++ /usr/ports/security/apache-xml-security-c/pkg-plist 2008-09-12 16:27:59.000000000 +0200 @@ -155,7 +155,7 @@ lib/libxml-security-c.a lib/libxml-security-c.la lib/libxml-security-c.so -lib/libxml-security-c.so.13 +lib/libxml-security-c.so.14 @dirrm include/xsec/xkms @dirrm include/xsec/xenc @dirrm include/xsec/utils/unixutils --- apache-xml-security-c-1.4.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: