From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 00:30:13 2012 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 D9DC0106566B for ; Sun, 26 Feb 2012 00:30:13 +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 B46128FC0A for ; Sun, 26 Feb 2012 00:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1Q0UDvg000587 for ; Sun, 26 Feb 2012 00:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1Q0UDs1000586; Sun, 26 Feb 2012 00:30:13 GMT (envelope-from gnats) Resent-Date: Sun, 26 Feb 2012 00:30:13 GMT Resent-Message-Id: <201202260030.q1Q0UDs1000586@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, Howard Goldstein Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D433106566B for ; Sun, 26 Feb 2012 00:23:53 +0000 (UTC) (envelope-from hg@cally.queue.to) Received: from pickle.queue.to (pickle.queue.to [71.180.69.18]) by mx1.freebsd.org (Postfix) with ESMTP id D82BC8FC13 for ; Sun, 26 Feb 2012 00:23:52 +0000 (UTC) Received: (qmail 69861 invoked from network); 25 Feb 2012 18:57:10 -0500 Received: from cally.queue.to (172.16.0.6) by pickle.queue.to with ESMTP; 25 Feb 2012 18:57:10 -0500 Received: (qmail 90865 invoked by uid 1000); 25 Feb 2012 18:57:10 -0500 Message-Id: <20120225235710.90864.qmail@cally.queue.to> Date: 25 Feb 2012 18:57:10 -0500 From: Howard Goldstein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165481: [PATCH] audio/cpige broken on amd64 , patch attached X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Howard Goldstein List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Feb 2012 00:30:14 -0000 >Number: 165481 >Category: ports >Synopsis: [PATCH] audio/cpige broken on amd64 , patch attached >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 26 00:30:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Howard Goldstein >Release: FreeBSD 8.3-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD cally.queue.to 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Fri Feb 17 19:05:27 EST 2012 hg@cally.queue.to:/usr/obj/usr/src/sys/CALLY amd64 >Description: audio/cpige fails to look up host name addresses on amd64 and probably other 64 bit platforms. The underlying problem is that the upstream considers inet_addr() to have failed when it returns ( (long) -1 ) but our libc correctly returns something different, that is, (in_addr_t) INADDR_NONE, when the dotted quad conversion inet_addr tries to do fails. >How-To-Repeat: Attempt to capture a stream that has a hostname in the url on a 64 bit platform. Log inspection shows something like this [17:09:39] [DEBUG PRIO 3][File: mynet.c][Line: 104] Port: 80 [17:09:39] [DEBUG PRIO 3][File: mynet.c][Line: 131] Socket Creation Sucessful. [17:09:39] [DEBUG PRIO 3][File: mynet.c][Line: 132] Connection in progress... [17:09:39] [DEBUG PRIO 1][File: mynet.c][Line: 137] Remote host connection faile d. [17:09:39] [DEBUG PRIO 2][File: mynet.c][Line: 60] Reconnecting to http://example.com:80/stream [try 1] in 5 sec. because example.com is never sent through gethostbyname. Connection succeeds when specifying the url with a dotted quad... >Fix: Quick workaround is to specify the url to capture as a dotted quad in the config file, ex url="http://192.168.0.1:80/stream" FIX Going forward, please include this patch to audio/cpige The following .shar applied to ${PORTSDIR}/audio/cpige creates ./files/patch-myname-compat64 . This patch is tested on amd64 and i386 # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # files/patch-myname-compat64 # echo x - files/patch-myname-compat64 sed 's/^X//' >files/patch-myname-compat64 << '70e015748989102958d1a91fd866efa4' X--- ../../../cpige.orig/work/cpige-1.5/mynet.c 2006-08-20 10:51:17.000000000 -0400 X+++ ./mynet.c 2012-02-25 18:08:03.276113898 -0500 X@@ -86,7 +86,7 @@ X { X struct sockaddr_in serverSockAddr; X struct hostent *serverHostEnt; X- long hostAddr; X+ in_addr_t hostAddr; X X #if WIN32 X int res; X@@ -105,7 +105,7 @@ X hostAddr = inet_addr(servername); X X /* If it is an ip address */ X- if ((long) hostAddr != (long)-1) X+ if ( hostAddr != INADDR_NONE ) X memcpy(&serverSockAddr.sin_addr, &hostAddr, sizeof(hostAddr)); X else { X serverHostEnt = gethostbyname(servername); 70e015748989102958d1a91fd866efa4 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 00:30:27 2012 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 B249F1065673; Sun, 26 Feb 2012 00:30:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8215B8FC0A; Sun, 26 Feb 2012 00:30:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1Q0URF7001469; Sun, 26 Feb 2012 00:30:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1Q0URuh001459; Sun, 26 Feb 2012 00:30:27 GMT (envelope-from edwin) Date: Sun, 26 Feb 2012 00:30:27 GMT Message-Id: <201202260030.q1Q0URuh001459@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, itetcu@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165481: [PATCH] audio/cpige broken on amd64 , patch attached 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: Sun, 26 Feb 2012 00:30:27 -0000 Synopsis: [PATCH] audio/cpige broken on amd64 , patch attached Responsible-Changed-From-To: freebsd-ports-bugs->itetcu Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 26 00:30:26 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165481 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 01:00:27 2012 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 DCF9B106564A for ; Sun, 26 Feb 2012 01:00:27 +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 92CC58FC1D for ; Sun, 26 Feb 2012 01:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1Q10Rld029543 for ; Sun, 26 Feb 2012 01:00:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1Q10Rnq029542; Sun, 26 Feb 2012 01:00:27 GMT (envelope-from gnats) Resent-Date: Sun, 26 Feb 2012 01:00:27 GMT Resent-Message-Id: <201202260100.q1Q10Rnq029542@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, Damien Fleuriot Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AEE4D106566B for ; Sun, 26 Feb 2012 00:52:03 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9A5BD8FC13 for ; Sun, 26 Feb 2012 00:52:03 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1Q0q3xk058861 for ; Sun, 26 Feb 2012 00:52:03 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1Q0q3AR058860; Sun, 26 Feb 2012 00:52:03 GMT (envelope-from nobody) Message-Id: <201202260052.q1Q0q3AR058860@red.freebsd.org> Date: Sun, 26 Feb 2012 00:52:03 GMT From: Damien Fleuriot To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165482: lsof-4.86A,6 refuses to build on 8.3 prerelease/beta 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: Sun, 26 Feb 2012 01:00:27 -0000 >Number: 165482 >Category: ports >Synopsis: lsof-4.86A,6 refuses to build on 8.3 prerelease/beta >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: Sun Feb 26 01:00:26 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Damien Fleuriot >Release: 8.3-PRERELEASE >Organization: >Environment: FreeBSD [snip] 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Sat Feb 25 12:22:01 CET 2012 root@[snip]:/usr/obj/usr/src/sys/SF amd64 >Description: lsof-4.86A,6 refuses to build on 8.3* , see the output below: sf# make ===> Vulnerability check disabled, database not found ===> License check disabled, port has not defined LICENSE ===> Extracting for lsof-4.86A,6 => SHA256 Checksum OK for lsof_4.86A.freebsd.tar.bz2. ===> Patching for lsof-4.86A,6 ===> Configuring for lsof-4.86A,6 Unknown FreeBSD release: 8.3-PRERELEASE ===> Script "Configure" failed unexpectedly. Requires a simple addition to Configure, unified diff attached to the PR. >How-To-Repeat: cd /usr/ports/sysutils/lsof && make >Fix: Patch attached with submission follows: --- Configure 2012-02-26 01:46:13.000000000 +0100 +++ Configure 2012-02-26 01:47:48.000000000 +0100 @@ -1577,6 +1577,10 @@ LSOF_TSTBIGF=" " LSOF_VERS=8020 ;; + 8.3*) + LSOF_TSTBIGF=" " + LSOF_VERS=8030 + ;; 9*) LSOF_TSTBIGF=" " LSOF_VERS=9000 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 04:10:13 2012 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 665C81065673 for ; Sun, 26 Feb 2012 04:10:13 +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 3FCD98FC22 for ; Sun, 26 Feb 2012 04:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1Q4ADn6003867 for ; Sun, 26 Feb 2012 04:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1Q4ADRY003866; Sun, 26 Feb 2012 04:10:13 GMT (envelope-from gnats) Resent-Date: Sun, 26 Feb 2012 04:10:13 GMT Resent-Message-Id: <201202260410.q1Q4ADRY003866@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, Joel Ray Holveck Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B02D4106566B for ; Sun, 26 Feb 2012 04:01:59 +0000 (UTC) (envelope-from joelh@thor.piquan.org) Received: from thor.piquan.org (unknown [IPv6:2001:470:1f05:1741:201:2ff:fe8b:103e]) by mx1.freebsd.org (Postfix) with ESMTP id 7A1C08FC17 for ; Sun, 26 Feb 2012 04:01:59 +0000 (UTC) Received: from thor.piquan.org (localhost [127.0.0.1]) by thor.piquan.org (8.14.5/8.14.5) with ESMTP id q1Q41cB5010225 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sat, 25 Feb 2012 20:01:43 -0800 (PST) (envelope-from joelh@thor.piquan.org) Received: (from joelh@localhost) by thor.piquan.org (8.14.5/8.14.5/Submit) id q1Q41XoY010223; Sat, 25 Feb 2012 20:01:33 -0800 (PST) (envelope-from joelh) Message-Id: <201202260401.q1Q41XoY010223@thor.piquan.org> Date: Sat, 25 Feb 2012 20:01:33 -0800 (PST) From: Joel Ray Holveck To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165483: [patch] graphics/sane-backends creates a circular rcorder - can break system boot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Joel Ray Holveck List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Feb 2012 04:10:13 -0000 >Number: 165483 >Category: ports >Synopsis: [patch] graphics/sane-backends creates a circular rcorder - can break system boot >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 26 04:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Joel Ray Holveck >Release: FreeBSD 8.3-PRERELEASE i386 >Organization: >Environment: System: FreeBSD thor.piquan.org 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #2: Sat Feb 25 15:52:16 PST 2012 root@thor.piquan.org:/usr/obj/usr/src/sys/THOR i386 Port: graphics/sane-backends as of 2012/02/19 >Description: The saned rc script specifies: # REQUIRE: LOGIN netif routing mountcritlocal # BEFORE: NETWORKING Since NETWORKING is a prerequisite of LOGIN, this creates a circular dependency at boot time. rcorder(8) will behave unpredictably for anything between NETWORKING and LOGIN (which is almost half the base system). In my case, for example, this caused ldconfig to be run far too late, preventing many services (unrelated to saned) from starting correctly. This can break the startup order for many users, since sane-backends is (by default) a prerequisite for KDE. >How-To-Repeat: Install graphics/sane-backends. To verify the problem, run: $ rcorder /etc/rc.d/* /usr/local/etc/rc.d/* >/dev/null rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/accounting'. rcorder: Circular dependency on provision `ldconfig' in file `/etc/rc.d/amd'. rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/devfs'. rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/mdconfig2'. rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/newsyslog'. rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/syslogd'. rcorder: Circular dependency on provision `ldconfig' in file `/etc/rc.d/SERVERS'. rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/archdep'. rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/SERVERS'. rcorder: Circular dependency on provision `NETWORKING' in file `/etc/rc.d/ntpdate'. rcorder: Circular dependency on provision `NETWORKING' in file `/etc/rc.d/rpcbind'. rcorder: Circular dependency on provision `mountcritremote' in file `/etc/rc.d/nfsclient'. [snip] >Fix: A patch is attached. The REQUIRE: LOGIN was added recently and deliberately, whereas BEFORE: NETWORKING is two years old and may have been copied from a different rc script. The REQUIRE: LOGIN seems more likely to be necessary than the other, so that's what I preserve in this patch. The attached patch will: - Remove BEFORE: NETWORKING from rc.d script to break circularity - Bump PORTREVISION As a workaround, users can remove the "BEFORE: NETWORKING" line from /usr/local/etc/rc.d/saned. However, it may be difficult for users to identify why their systems are not loading some services properly, since saned is not necessarily going to be referred to in any errors. --- sane-backends.patch begins here --- diff -ur -x'*~' sane-backends.orig/Makefile sane-backends/Makefile --- sane-backends.orig/Makefile 2012-02-20 12:26:04.000000000 -0800 +++ sane-backends/Makefile 2012-02-25 19:21:29.000000000 -0800 @@ -7,7 +7,7 @@ PORTNAME= sane-backends PORTVERSION= 1.0.22 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= http://alioth.debian.org/frs/download.php/3503/ \ ftp://ftp2.sane-project.org/pub/sane/%SUBDIR%/ diff -ur -x'*~' sane-backends.orig/files/saned.in sane-backends/files/saned.in --- sane-backends.orig/files/saned.in 2012-02-20 12:26:04.000000000 -0800 +++ sane-backends/files/saned.in 2012-02-25 19:21:23.000000000 -0800 @@ -4,7 +4,6 @@ # # PROVIDE: saned # REQUIRE: LOGIN netif routing mountcritlocal -# BEFORE: NETWORKING # # A sample saned startup script. # --- sane-backends.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 10:40:02 2012 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 0ECEC106564A for ; Sun, 26 Feb 2012 10:40:02 +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 E01278FC12 for ; Sun, 26 Feb 2012 10:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QAe1IF096642 for ; Sun, 26 Feb 2012 10:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QAe1aH096641; Sun, 26 Feb 2012 10:40:01 GMT (envelope-from gnats) Resent-Date: Sun, 26 Feb 2012 10:40:01 GMT Resent-Message-Id: <201202261040.q1QAe1aH096641@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, Oliver Hartmann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66B00106564A for ; Sun, 26 Feb 2012 10:32:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id F39B48FC0A for ; Sun, 26 Feb 2012 10:32:09 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1QAW9Qr004272 for ; Sun, 26 Feb 2012 10:32:09 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1QAW9bZ004271; Sun, 26 Feb 2012 10:32:09 GMT (envelope-from nobody) Message-Id: <201202261032.q1QAW9bZ004271@red.freebsd.org> Date: Sun, 26 Feb 2012 10:32:09 GMT From: Oliver Hartmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165484: editors/codelite: 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: Sun, 26 Feb 2012 10:40:02 -0000 >Number: 165484 >Category: ports >Synopsis: editors/codelite: >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 26 10:40:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Hartmann >Release: FreeBSD 10.0-CURRENT/amd64 >Organization: FU Berline >Environment: >Description: CodeLite is supposed to be an IDE (as the wikie at www.codelite.org says). Unlike other IDEs in FreeBSD ports repository, like devel/anjuta, CodeLite is placed in the category "editors" and not in "devel". This should be changed in my opinion unless other striking reasons occur. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 10:40:02 2012 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 96782106566C for ; Sun, 26 Feb 2012 10:40:02 +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 58E758FC13 for ; Sun, 26 Feb 2012 10:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QAe2qB096651 for ; Sun, 26 Feb 2012 10:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QAe2TE096650; Sun, 26 Feb 2012 10:40:02 GMT (envelope-from gnats) Resent-Date: Sun, 26 Feb 2012 10:40:02 GMT Resent-Message-Id: <201202261040.q1QAe2TE096650@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, Oliver Hartmann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8478106566B for ; Sun, 26 Feb 2012 10:37:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B67B38FC14 for ; Sun, 26 Feb 2012 10:37:31 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1QAbVRC021457 for ; Sun, 26 Feb 2012 10:37:31 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1QAbVXh021456; Sun, 26 Feb 2012 10:37:31 GMT (envelope-from nobody) Message-Id: <201202261037.q1QAbVXh021456@red.freebsd.org> Date: Sun, 26 Feb 2012 10:37:31 GMT From: Oliver Hartmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165485: editors/codelite: outdated version 3.0.XXX in ports repository, new version 3.5.XX has much better LLVM/CLANG support 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: Sun, 26 Feb 2012 10:40:02 -0000 >Number: 165485 >Category: ports >Synopsis: editors/codelite: outdated version 3.0.XXX in ports repository, new version 3.5.XX has much better LLVM/CLANG support >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 26 10:40:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Hartmann >Release: FreeBSD 9.-STABLE/amd64 and FreeBSD 10-CURRENT/amd64 >Organization: FU Berlin >Environment: >Description: LLVM/CLANG support in editors/codelite (at version 3.0.XXX) is a bit poor and much better in new CodeLite 3.5. Since other IDEs do have their issues and also seem highly outdated (see devele/anjuta, for instance), CodeLite should be updated to a more recent version supporting also CLANG/LLVM. >How-To-Repeat: Use outdated port editors/codelite and CLANG/LLVM. >Fix: Try using integration steps as shown at www.codelite.org with FreeBSD's port and LLVM/CLANG and compare this to the most recent CodeLite 3.5 and its LLVM/CLANG support. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 10:40:12 2012 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 209A2106564A; Sun, 26 Feb 2012 10:40:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ED0BD8FC08; Sun, 26 Feb 2012 10:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QAeB7L096830; Sun, 26 Feb 2012 10:40:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QAeBtg096826; Sun, 26 Feb 2012 10:40:11 GMT (envelope-from edwin) Date: Sun, 26 Feb 2012 10:40:11 GMT Message-Id: <201202261040.q1QAeBtg096826@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gahr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165484: editors/codelite: 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: Sun, 26 Feb 2012 10:40:12 -0000 Synopsis: editors/codelite: Responsible-Changed-From-To: freebsd-ports-bugs->gahr Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 26 10:40:11 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165484 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 10:40:18 2012 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 A0A791065670; Sun, 26 Feb 2012 10:40:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 777828FC0A; Sun, 26 Feb 2012 10:40:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QAeINF097254; Sun, 26 Feb 2012 10:40:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QAeIP2097250; Sun, 26 Feb 2012 10:40:18 GMT (envelope-from edwin) Date: Sun, 26 Feb 2012 10:40:18 GMT Message-Id: <201202261040.q1QAeIP2097250@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gahr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165485: editors/codelite: outdated version 3.0.XXX in ports repository, new version 3.5.XX has much better LLVM/CLANG support 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: Sun, 26 Feb 2012 10:40:18 -0000 Synopsis: editors/codelite: outdated version 3.0.XXX in ports repository, new version 3.5.XX has much better LLVM/CLANG support Responsible-Changed-From-To: freebsd-ports-bugs->gahr Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 26 10:40:18 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165485 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 11:19:58 2012 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 34500106564A; Sun, 26 Feb 2012 11:19:58 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0C1728FC0A; Sun, 26 Feb 2012 11:19:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QBJvqG032834; Sun, 26 Feb 2012 11:19:57 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QBJvJZ032830; Sun, 26 Feb 2012 11:19:57 GMT (envelope-from crees) Date: Sun, 26 Feb 2012 11:19:57 GMT Message-Id: <201202261119.q1QBJvJZ032830@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, crees@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/165476: [MAINTAINER] irc/weechat-devel: restore missing DEBUG option 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: Sun, 26 Feb 2012 11:19:58 -0000 Synopsis: [MAINTAINER] irc/weechat-devel: restore missing DEBUG option Responsible-Changed-From-To: freebsd-ports-bugs->crees Responsible-Changed-By: crees Responsible-Changed-When: Sun Feb 26 11:19:57 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165476 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 11:30:02 2012 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 A86481065670 for ; Sun, 26 Feb 2012 11:30:02 +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 86C8B8FC1C for ; Sun, 26 Feb 2012 11:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QBU2Su041041 for ; Sun, 26 Feb 2012 11:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QBU2vJ041039; Sun, 26 Feb 2012 11:30:02 GMT (envelope-from gnats) Resent-Date: Sun, 26 Feb 2012 11:30:02 GMT Resent-Message-Id: <201202261130.q1QBU2vJ041039@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, Jase Thew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B09B61065670; Sun, 26 Feb 2012 11:20:39 +0000 (UTC) (envelope-from freebsd@beardz.net) Received: from beardz.net (beardz.net [IPv6:2a01:4f8:121:2403:1::]) by mx1.freebsd.org (Postfix) with ESMTP id 0DFDB8FC0C; Sun, 26 Feb 2012 11:20:38 +0000 (UTC) Received: from beardz.net (localhost [127.0.1.7]) by beardz.net (8.14.5/8.14.4) with ESMTP id q1QBKbsg011958; Sun, 26 Feb 2012 11:20:37 GMT (envelope-from freebsd@beardz.net) Received: (from root@localhost) by beardz.net (8.14.5/8.14.4/Submit) id q1QBKb6R011957; Sun, 26 Feb 2012 11:20:37 GMT (envelope-from freebsd@beardz.net) Message-Id: <201202261120.q1QBKb6R011957@beardz.net> Date: Sun, 26 Feb 2012 11:20:37 GMT From: Jase Thew To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: miwi@FreeBSD.org Subject: ports/165486: [PATCH] irc/weechat: update to 0.3.7 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: Sun, 26 Feb 2012 11:30:02 -0000 >Number: 165486 >Category: ports >Synopsis: [PATCH] irc/weechat: update to 0.3.7 >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: Sun Feb 26 11:30:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jase Thew >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD jail-ports.localdomain 8.2-STABLE FreeBSD 8.2-STABLE #0 r225827: Wed Sep 28 13:55:02 BST >Description: - Update to 0.3.7 Port maintainer (miwi@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- weechat-0.3.7.patch begins here --- diff -ruN --exclude=CVS /usr/ports/irc/weechat.orig/Makefile /usr/ports/irc/weechat/Makefile --- /usr/ports/irc/weechat.orig/Makefile 2011-11-14 03:26:42.000000000 +0000 +++ /usr/ports/irc/weechat/Makefile 2012-02-26 11:19:17.887280118 +0000 @@ -6,7 +6,7 @@ # PORTNAME= weechat -PORTVERSION= 0.3.6 +PORTVERSION= 0.3.7 CATEGORIES= irc MASTER_SITES= http://weechat.org/files/src/ @@ -25,6 +25,8 @@ CFLAGS+= -I${LOCALBASE}/include -L${LOCALBASE}/lib WANT_PERL= yes +LIB_DEPENDS+= curl.6:${PORTSDIR}/ftp/curl + OPTIONS= RUBY "Ruby scripting support" Off \ PYTHON "Python scripting support" Off \ PERL "Perl scripting support" Off \ @@ -122,7 +124,7 @@ .if defined(WITH_DOCUMENTATION) BUILD_DEPENDS+= asciidoc:${PORTSDIR}/textproc/asciidoc -BUILD_DEPENDS+= source-highlight:${PORTSDIR}/textproc/source-highlight +BUILD_DEPENDS+= source-highlight>=3.1.5:${PORTSDIR}/textproc/source-highlight PLIST_SUB+= DOCUMENTATION="" .else CMAKE_ARGS+= -DENABLE_DOC=no @@ -146,6 +148,6 @@ .endif post-install: - ${INSTALL_MAN} ${WRKSRC}/doc/weechat-curses.1 ${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/doc/weechat-curses.1 ${MAN1PREFIX}/man/man1 .include diff -ruN --exclude=CVS /usr/ports/irc/weechat.orig/distinfo /usr/ports/irc/weechat/distinfo --- /usr/ports/irc/weechat.orig/distinfo 2011-10-23 16:48:30.000000000 +0100 +++ /usr/ports/irc/weechat/distinfo 2012-02-26 11:19:17.887280118 +0000 @@ -1,2 +1,2 @@ -SHA256 (weechat-0.3.6.tar.gz) = ee3401e31d38e37bd03468655de03f78e60deaf7e71f317d5fc0fba1a8020581 -SIZE (weechat-0.3.6.tar.gz) = 3101349 +SHA256 (weechat-0.3.7.tar.gz) = d4cede0aeb8e3709cc0f2c3af788381d23c365a4e40b428b7a39da5c3af4f0ae +SIZE (weechat-0.3.7.tar.gz) = 3458650 diff -ruN --exclude=CVS /usr/ports/irc/weechat.orig/files/patch-cmake-FindRuby_cmake /usr/ports/irc/weechat/files/patch-cmake-FindRuby_cmake --- /usr/ports/irc/weechat.orig/files/patch-cmake-FindRuby_cmake 2011-01-28 04:55:55.000000000 +0000 +++ /usr/ports/irc/weechat/files/patch-cmake-FindRuby_cmake 2012-02-26 11:19:17.883229892 +0000 @@ -1,5 +1,5 @@ ---- cmake/FindRuby.cmake.orig 2011-01-18 19:54:43.825973597 +0000 -+++ cmake/FindRuby.cmake 2011-01-18 19:57:33.943672013 +0000 +--- cmake/FindRuby.cmake.orig 2011-11-21 17:12:47.000000000 +0000 ++++ cmake/FindRuby.cmake 2011-11-22 21:04:12.114830585 +0000 @@ -32,13 +32,12 @@ ENDIF(RUBY_FOUND) @@ -11,8 +11,8 @@ IF(RUBY_EXECUTABLE) EXECUTE_PROCESS( -- COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::CONFIG['rubyhdrdir'] || Config::CONFIG['archdir']" -+ COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::CONFIG['rubyhdrdir'] || Config::CONFIG['topdir']" +- COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts RbConfig::CONFIG['rubyhdrdir'] || RbConfig::CONFIG['archdir']" ++ COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts RbConfig::CONFIG['rubyhdrdir'] || RbConfig::CONFIG['topdir']" OUTPUT_VARIABLE RUBY_ARCH_DIR ) @@ -20,14 +20,14 @@ ) EXECUTE_PROCESS( -- COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::CONFIG['libdir']" -+ COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::TOPDIR + '/lib'" +- COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts RbConfig::CONFIG['libdir']" ++ COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts RbConfig::TOPDIR + '/lib'" OUTPUT_VARIABLE RUBY_POSSIBLE_LIB_PATH ) - + EXECUTE_PROCESS( -- COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::CONFIG['rubylibdir']" -+ COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts Config::TOPDIR + '/lib/ruby/' + Config::CONFIG['ruby_version']" +- COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts RbConfig::CONFIG['rubylibdir']" ++ COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "puts RbConfig::TOPDIR + '/lib/ruby/' + RbConfig::CONFIG['ruby_version']" OUTPUT_VARIABLE RUBY_RUBY_LIB_PATH ) diff -ruN --exclude=CVS /usr/ports/irc/weechat.orig/pkg-plist /usr/ports/irc/weechat/pkg-plist --- /usr/ports/irc/weechat.orig/pkg-plist 2011-10-23 16:48:30.000000000 +0100 +++ /usr/ports/irc/weechat/pkg-plist 2012-02-26 11:19:17.885253608 +0000 @@ -15,6 +15,7 @@ %%PYTHON%%lib/weechat/plugins/python.so %%RUBY%%lib/weechat/plugins/ruby.so %%TCL%%lib/weechat/plugins/tcl.so +%%DOCUMENTATION%%share/doc/weechat/weechat_dev.en.html %%DOCUMENTATION%%share/doc/weechat/weechat_faq.de.html %%DOCUMENTATION%%share/doc/weechat/weechat_faq.en.html %%DOCUMENTATION%%share/doc/weechat/weechat_faq.fr.html @@ -25,11 +26,13 @@ %%DOCUMENTATION%%share/doc/weechat/weechat_plugin_api.it.html %%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.de.html %%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.en.html +%%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.es.html %%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.fr.html %%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.ja.html %%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.it.html %%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.pl.html %%DOCUMENTATION%%share/doc/weechat/weechat_quickstart.ru.html +%%DOCUMENTATION%%share/doc/weechat/weechat_relay_protocol.en.html %%DOCUMENTATION%%share/doc/weechat/weechat_scripting.de.html %%DOCUMENTATION%%share/doc/weechat/weechat_scripting.en.html %%DOCUMENTATION%%share/doc/weechat/weechat_scripting.fr.html @@ -50,6 +53,7 @@ %%NLS%%share/locale/fr/LC_MESSAGES/weechat.mo %%NLS%%share/locale/hu/LC_MESSAGES/weechat.mo %%NLS%%share/locale/it/LC_MESSAGES/weechat.mo +%%NLS%%share/locale/ja/LC_MESSAGES/weechat.mo %%NLS%%share/locale/pl/LC_MESSAGES/weechat.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/weechat.mo %%NLS%%share/locale/ru/LC_MESSAGES/weechat.mo --- weechat-0.3.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 11:30:15 2012 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 66571106564A; Sun, 26 Feb 2012 11:30:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3DD5E8FC08; Sun, 26 Feb 2012 11:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QBUFvW041833; Sun, 26 Feb 2012 11:30:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QBUFao041823; Sun, 26 Feb 2012 11:30:15 GMT (envelope-from edwin) Date: Sun, 26 Feb 2012 11:30:15 GMT Message-Id: <201202261130.q1QBUFao041823@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165486: [PATCH] irc/weechat: update to 0.3.7 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: Sun, 26 Feb 2012 11:30:15 -0000 Synopsis: [PATCH] irc/weechat: update to 0.3.7 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 26 11:30:14 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165486 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 12:15:42 2012 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 24176106564A; Sun, 26 Feb 2012 12:15:42 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EFAE58FC13; Sun, 26 Feb 2012 12:15:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QCFf4C090546; Sun, 26 Feb 2012 12:15:41 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QCFf0R090542; Sun, 26 Feb 2012 12:15:41 GMT (envelope-from scheidell) Date: Sun, 26 Feb 2012 12:15:41 GMT Message-Id: <201202261215.q1QCFf0R090542@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165478: [PATCH] deskutils/myitcrm: update to 0.2.9.3 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: Sun, 26 Feb 2012 12:15:42 -0000 Synopsis: [PATCH] deskutils/myitcrm: update to 0.2.9.3 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Sun Feb 26 12:15:41 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165478 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 12:50:04 2012 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 DD102106566B for ; Sun, 26 Feb 2012 12:50:03 +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 BAD1C8FC13 for ; Sun, 26 Feb 2012 12:50:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QCo3hU019556 for ; Sun, 26 Feb 2012 12:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QCo3CI019555; Sun, 26 Feb 2012 12:50:03 GMT (envelope-from gnats) Resent-Date: Sun, 26 Feb 2012 12:50:03 GMT Resent-Message-Id: <201202261250.q1QCo3CI019555@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, Shin-ya Murakami Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5737F1065674 for ; Sun, 26 Feb 2012 12:40:32 +0000 (UTC) (envelope-from murashin@gfd-dennou.org) Received: from dennou-k.gfd-dennou.org (studenno.kugi.kyoto-u.ac.jp [130.54.59.159]) by mx1.freebsd.org (Postfix) with SMTP id C18158FC13 for ; Sun, 26 Feb 2012 12:40:31 +0000 (UTC) Received: (qmail 2032 invoked by uid 0); 26 Feb 2012 21:40:26 +0900 Received: from unknown (HELO localhost) (114.188.96.148) by studenno.kugi.kyoto-u.ac.jp with (RC4-SHA encrypted) SMTP; Sun, 26 Feb 2012 21:40:25 +0900 Message-Id: <20120226.214013.59130612.murashin@gfd-dennou.org> Date: Sun, 26 Feb 2012 21:40:13 +0900 (JST) From: Shin-ya Murakami To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/165487: [maintainer-update] science/ruby-gphys: update to 1.2.1 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: Sun, 26 Feb 2012 12:50:04 -0000 >Number: 165487 >Category: ports >Synopsis: [maintainer-update] science/ruby-gphys: update to 1.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 26 12:50:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Shin-ya Murakami >Release: FreeBSD 10.0-CURRENT amd64 >Organization: GFD-Dennou Club >Environment: System: FreeBSD phase 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sun Jan 29 22:06:28 JST 2012 murashin@phase:/usr/obj/usr/src/sys/PHASE amd64 >Description: - update to 1.2.1 - update URLs of MASTER_SITES - add lines related to LICENSE file - add math/ruby-gsl to RUN_DEPENDS - use PORTDOCS and PORTEXAMPLES >How-To-Repeat: N/A >Fix: --- ruby-gphys.diff begins here --- diff -urN /usr/ports/science/ruby-gphys/Makefile ruby-gphys/Makefile --- /usr/ports/science/ruby-gphys/Makefile 2010-04-28 15:00:33.000000000 +0900 +++ ruby-gphys/Makefile 2012-02-26 21:32:05.858368411 +0900 @@ -6,59 +6,56 @@ # PORTNAME= gphys -PORTVERSION= 1.0.0 +PORTVERSION= 1.2.1 CATEGORIES= science ruby -MASTER_SITES= http://ruby.gfd-dennou.org/products/gphys/ \ - http://dennou-h.gfd-dennou.org/library/ruby/products/gphys/ \ - http://dennou-q.gfd-dennou.org/library/ruby/products/gphys/ +MASTER_SITES= http://ruby.gfd-dennou.org/products/gphys/release/ \ + http://dennou-h.gfd-dennou.org/library/ruby/products/gphys/release/ \ + http://dennou-q.gfd-dennou.org/library/ruby/products/gphys/release/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DIST_SUBDIR= ruby MAINTAINER= murashin@gfd-dennou.org COMMENT= A multi-purpose class to handle gridded physical quantities +LICENSE= BSD +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray \ ${RUBY_SITELIBDIR}/narray_miss.rb:${PORTSDIR}/math/ruby-narray_miss \ ${RUBY_SITEARCHLIBDIR}/numru/dcl_raw.so:${PORTSDIR}/science/ruby-dcl \ ${RUBY_SITEARCHLIBDIR}/numru/netcdfraw.so:${PORTSDIR}/math/ruby-netcdf \ ${RUBY_SITEARCHLIBDIR}/numru/fftw3.so:${PORTSDIR}/math/ruby-fftw3 \ ${RUBY_SITELIBDIR}/numru/misc.rb:${PORTSDIR}/math/ruby-numru_misc \ - ${RUBY_SITELIBDIR}/numru/units.rb:${PORTSDIR}/math/ruby-numru_units + ${RUBY_SITELIBDIR}/numru/units.rb:${PORTSDIR}/math/ruby-numru_units \ + ${RUBY_SITEARCHLIBDIR}/rb_gsl.so:${PORTSDIR}/math/ruby-gsl BUILD_DEPENDS= ${RUBY_SITEARCHLIBDIR}/narray.so:${PORTSDIR}/math/ruby-narray USE_RUBY= yes -USE_RUBY_EXTCONF= yes +USE_RUBY_EXTCONF= yes -DOCS= ChangeLog README TODO_ep_flux doc/*.html -DOCS_DR= doc/derivative/*.html doc/derivative/math-doc/document.pdf -DOCS_EP= doc/ep_flux/*.html doc/ep_flux/math-doc/document.pdf +EXAMPLESDIR= ${RUBY_MODEXAMPLESDIR} +DOCSDIR= ${RUBY_MODDOCDIR} +PORTEXAMPLES= sample* test* +PORTDOCS= ChangeLog LICENSE.txt README TODO_ep_flux doc* + +do-install: + cd ${WRKSRC} && ${MAKE} install + cd ${WRKSRC} && ${RUBY} install.rb post-install: - ${INSTALL_SCRIPT} ${WRKSRC}/bin/* ${PREFIX}/bin .if !defined(NOPORTEXAMPLES) - ${MKDIR} ${RUBY_MODEXAMPLESDIR} - ${MKDIR} ${RUBY_MODEXAMPLESDIR}/test - ${MKDIR} ${RUBY_MODEXAMPLESDIR}/testdata - ${MKDIR} ${RUBY_MODEXAMPLESDIR}/sample - ${MKDIR} ${RUBY_MODEXAMPLESDIR}/sample/ep_flux - ${INSTALL_DATA} ${WRKSRC}/test/* ${RUBY_MODEXAMPLESDIR}/test - ${INSTALL_DATA} ${WRKSRC}/testdata/* ${RUBY_MODEXAMPLESDIR}/testdata - ${INSTALL_DATA} ${WRKSRC}/sample/*.rb ${RUBY_MODEXAMPLESDIR}/sample - ${INSTALL_DATA} ${WRKSRC}/sample/ep_flux/* ${RUBY_MODEXAMPLESDIR}/sample/ep_flux + @${MKDIR} ${EXAMPLESDIR} +.for i in ${PORTEXAMPLES} + (cd ${WRKSRC} && ${COPYTREE_SHARE} "${i}" ${EXAMPLESDIR}) +.endfor .endif .if !defined(NOPORTDOCS) - ${MKDIR} ${RUBY_MODDOCDIR} - ${MKDIR} ${RUBY_MODDOCDIR}/derivative - ${MKDIR} ${RUBY_MODDOCDIR}/ep_flux -.for f in ${DOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR} + @${MKDIR} ${DOCSDIR} +.for i in ${PORTDOCS} + (cd ${WRKSRC} && ${COPYTREE_SHARE} "${i}" ${DOCSDIR}) .endfor -.for f in ${DOCS_DR} - ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/derivative -.endfor -.for f in ${DOCS_EP} - ${INSTALL_DATA} ${WRKSRC}/${f} ${RUBY_MODDOCDIR}/ep_flux +.for i in ${DOCS} + ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} .endfor .endif - .include diff -urN /usr/ports/science/ruby-gphys/distinfo ruby-gphys/distinfo --- /usr/ports/science/ruby-gphys/distinfo 2011-07-03 22:22:22.000000000 +0900 +++ ruby-gphys/distinfo 2012-02-26 17:33:54.472362858 +0900 @@ -1,2 +1,2 @@ -SHA256 (ruby/gphys-1.0.0.tar.gz) = 3486b99c7bacb744e77e86104c2f618b8b94db58724796bdf4255891f2c8dc1a -SIZE (ruby/gphys-1.0.0.tar.gz) = 1218863 +SHA256 (ruby/gphys-1.2.1.tar.gz) = 4bf23027c91049a26ddce5781642320fbd841c7e92c5977d8d6df3f5410e5a40 +SIZE (ruby/gphys-1.2.1.tar.gz) = 1272044 diff -urN /usr/ports/science/ruby-gphys/pkg-plist ruby-gphys/pkg-plist --- /usr/ports/science/ruby-gphys/pkg-plist 2010-04-28 15:00:33.000000000 +0900 +++ ruby-gphys/pkg-plist 2012-02-26 21:25:49.232398491 +0900 @@ -12,8 +12,9 @@ bin/gpview bin/grads2nc_with_gphys %%RUBY_SITEARCHLIBDIR%%/numru/gphys_ext.so -%%RUBY_SITELIBDIR%%/numru/dclext_datetime_ax.rb %%RUBY_SITELIBDIR%%/numru/dcl_mouse.rb +%%RUBY_SITELIBDIR%%/numru/dclext.rb +%%RUBY_SITELIBDIR%%/numru/dclext_datetime_ax.rb %%RUBY_SITELIBDIR%%/numru/derivative.rb %%RUBY_SITELIBDIR%%/numru/ganalysis.rb %%RUBY_SITELIBDIR%%/numru/gdir.rb @@ -25,6 +26,8 @@ %%RUBY_SITELIBDIR%%/numru/ganalysis/covariance.rb %%RUBY_SITELIBDIR%%/numru/ganalysis/eof.rb %%RUBY_SITELIBDIR%%/numru/ganalysis/histogram.rb +%%RUBY_SITELIBDIR%%/numru/ganalysis/met.rb +%%RUBY_SITELIBDIR%%/numru/ganalysis/planet.rb %%RUBY_SITELIBDIR%%/numru/gphys/assoccoords.rb %%RUBY_SITELIBDIR%%/numru/gphys/attribute.rb %%RUBY_SITELIBDIR%%/numru/gphys/attributenetcdf.rb @@ -66,77 +69,3 @@ @dirrm %%RUBY_SITELIBDIR%%/numru/ganalysis @dirrm %%RUBY_SITELIBDIR%%/numru/gphys @dirrmtry %%RUBY_SITELIBDIR%%/numru -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/cira86_to_nc.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/druby_cli1.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/druby_cli2.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/druby_serv1.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/druby_serv2.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/ggraph_mapfit-axes_dr002687.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/ggraph_latlon_labelling_dr002690.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/map_projection.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/ncep_theta_coord.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/ep_flux/demo_NCEP_1.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/ep_flux/demo_NCEP_2.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/sample/ep_flux/demo_NCEP_3.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/test/test_ep_flux.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/test/eof_slp.rb -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/T.jan.ctl -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/T.jan.dat -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/T.jan.grib -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/T.jan.nc -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/T.jan.packed.withmiss.nc -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/UV.jan.nc -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/assoc_crds.nc -%%PORTEXAMPLES%%%%RUBY_MODEXAMPLESDIR%%/testdata/cira86.dat -%%PORTEXAMPLES%%@dirrm %%RUBY_MODEXAMPLESDIR%%/sample/ep_flux -%%PORTEXAMPLES%%@dirrm %%RUBY_MODEXAMPLESDIR%%/sample -%%PORTEXAMPLES%%@dirrm %%RUBY_MODEXAMPLESDIR%%/test -%%PORTEXAMPLES%%@dirrm %%RUBY_MODEXAMPLESDIR%%/testdata -%%PORTEXAMPLES%%@dirrm %%RUBY_MODEXAMPLESDIR%% -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ChangeLog -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/README -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/TODO_ep_flux -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/attribute.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/attributenetcdf.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/axis.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/coordmapping.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/coordtransform.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gdir.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gdir_client.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gdir_connect_ftp-like.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gdir_server.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ggraph.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gpcat.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gpcut.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gphys.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gphys_fft.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gphys_grads_io.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gphys_grib_io.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gphys_io.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gphys_io_common.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gphys_netcdf_io.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gplist.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gpmath.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gpmaxmin.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gpprint.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/gpview.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/grads2nc_with_gphys.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/grads_gridded.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/grib.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/grid.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/index.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/netcdf_convention.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/unumeric.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/varray.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/varraycomposite.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/derivative/gphys-derivative.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/derivative/index.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/derivative/numru-derivative.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/derivative/document.pdf -%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%%/derivative -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ep_flux/ep_flux.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ep_flux/index.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ep_flux/ggraph_on_merdional_section.html -%%PORTDOCS%%%%RUBY_MODDOCDIR%%/ep_flux/document.pdf -%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%%/ep_flux -%%PORTDOCS%%@dirrm %%RUBY_MODDOCDIR%% --- ruby-gphys.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 12:50:14 2012 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 1AC961065672; Sun, 26 Feb 2012 12:50:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E672A8FC0A; Sun, 26 Feb 2012 12:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QCoDus019729; Sun, 26 Feb 2012 12:50:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QCoDt7019721; Sun, 26 Feb 2012 12:50:13 GMT (envelope-from edwin) Date: Sun, 26 Feb 2012 12:50:13 GMT Message-Id: <201202261250.q1QCoDt7019721@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165487: [maintainer-update] science/ruby-gphys: update to 1.2.1 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: Sun, 26 Feb 2012 12:50:14 -0000 Synopsis: [maintainer-update] science/ruby-gphys: update to 1.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 26 12:50:13 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165487 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 17:20:10 2012 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 1A73210656A4 for ; Sun, 26 Feb 2012 17:20:10 +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 1A62D8FC17 for ; Sun, 26 Feb 2012 17:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QHK0KU066335 for ; Sun, 26 Feb 2012 17:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QHK0ld066334; Sun, 26 Feb 2012 17:20:00 GMT (envelope-from gnats) Resent-Date: Sun, 26 Feb 2012 17:20:00 GMT Resent-Message-Id: <201202261720.q1QHK0ld066334@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, Adam Weinberger Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A4051065670 for ; Sun, 26 Feb 2012 17:17:33 +0000 (UTC) (envelope-from adamw@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DF51D8FC14 for ; Sun, 26 Feb 2012 17:17:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QHHWjt066000 for ; Sun, 26 Feb 2012 17:17:32 GMT (envelope-from adamw@freefall.freebsd.org) Received: (from adamw@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QHHWcU065998; Sun, 26 Feb 2012 17:17:32 GMT (envelope-from adamw) Message-Id: <201202261717.q1QHHWcU065998@freefall.freebsd.org> Date: Sun, 26 Feb 2012 17:17:32 GMT From: Adam Weinberger To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165489: Upgrade irc/ircII to 20111115 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Adam Weinberger List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Feb 2012 17:20:10 -0000 >Number: 165489 >Category: ports >Synopsis: Upgrade irc/ircII to 20111115 >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: Sun Feb 26 17:20:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Adam Weinberger >Release: FreeBSD 8.2-STABLE i386 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 8.2-STABLE FreeBSD 8.2-STABLE #5 r227907: Wed Nov 23 21:55:50 UTC 2011 simon@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386 >Description: The tarball for the version in the ports tree no longer exists on the MASTER_SITES. Attached patch updates ircii to the current version. >How-To-Repeat: >Fix: --- ircii.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/irc/ircII/Makefile,v retrieving revision 1.53 diff -u -d -p -r1.53 Makefile --- Makefile 27 Jul 2011 20:21:34 -0000 1.53 +++ Makefile 26 Feb 2012 17:14:29 -0000 @@ -6,7 +6,7 @@ # PORTNAME= ircii -PORTVERSION= 20110228 +PORTVERSION= 20111115 CATEGORIES= irc ipv6 MASTER_SITES= ftp://ircii.warped.com/pub/ircII/ \ ftp://ftp.irc.org/irc/clients/unix/ircII/ Index: distinfo =================================================================== RCS file: /home/pcvs/ports/irc/ircII/distinfo,v retrieving revision 1.27 diff -u -d -p -r1.27 distinfo --- distinfo 27 Jul 2011 20:21:34 -0000 1.27 +++ distinfo 26 Feb 2012 17:14:29 -0000 @@ -1,2 +1,2 @@ -SHA256 (ircii-20110228.tar.bz2) = 4fc77ddaf473e35817f55945e6275b1501b7d95585b49a44e0fe998382d72fb2 -SIZE (ircii-20110228.tar.bz2) = 558483 +SHA256 (ircii-20111115.tar.bz2) = 5c6b4390b8ed04cf3b08a3ba72f41eba9b125d0fc09c637f7c7f81eb6bdd91e6 +SIZE (ircii-20111115.tar.bz2) = 555731 Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/irc/ircII/pkg-plist,v retrieving revision 1.27 diff -u -d -p -r1.27 pkg-plist --- pkg-plist 11 Mar 2009 16:46:11 -0000 1.27 +++ pkg-plist 26 Feb 2012 17:14:29 -0000 @@ -2,8 +2,8 @@ bin/irc bin/irc-%%VERSION%% bin/ircbug bin/ircflush -bin/ircio -bin/wserv +libexec/ircio +libexec/wserv share/irc/help/! share/irc/help/.date share/irc/help/: @@ -234,6 +234,7 @@ share/irc/help/note/wall share/irc/help/note/wallops share/irc/help/notice share/irc/help/notify +share/irc/help/nuser share/irc/help/on/action share/irc/help/on/channel_nick share/irc/help/on/channel_signoff --- ircii.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 17:20:20 2012 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 D0C991065673; Sun, 26 Feb 2012 17:20:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A44D78FC2C; Sun, 26 Feb 2012 17:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QHKKFH067457; Sun, 26 Feb 2012 17:20:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QHKKY6067448; Sun, 26 Feb 2012 17:20:20 GMT (envelope-from edwin) Date: Sun, 26 Feb 2012 17:20:20 GMT Message-Id: <201202261720.q1QHKKY6067448@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sylvio@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165489: Upgrade irc/ircII to 20111115 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: Sun, 26 Feb 2012 17:20:20 -0000 Synopsis: Upgrade irc/ircII to 20111115 Responsible-Changed-From-To: freebsd-ports-bugs->sylvio Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 26 17:20:20 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165489 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 19:20:02 2012 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 1E3DF106566C for ; Sun, 26 Feb 2012 19:20:02 +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 D22FB8FC0C for ; Sun, 26 Feb 2012 19:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QJK1SA075872 for ; Sun, 26 Feb 2012 19:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QJK1Xu075871; Sun, 26 Feb 2012 19:20:01 GMT (envelope-from gnats) Resent-Date: Sun, 26 Feb 2012 19:20:01 GMT Resent-Message-Id: <201202261920.q1QJK1Xu075871@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, Muhammad Moinur Rahman <5u623l20@gmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90599106564A for ; Sun, 26 Feb 2012 19:12:26 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 7B5E38FC08 for ; Sun, 26 Feb 2012 19:12:26 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1QJCQMi094602 for ; Sun, 26 Feb 2012 19:12:26 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1QJCQnd094601; Sun, 26 Feb 2012 19:12:26 GMT (envelope-from nobody) Message-Id: <201202261912.q1QJCQnd094601@red.freebsd.org> Date: Sun, 26 Feb 2012 19:12:26 GMT From: Muhammad Moinur Rahman <5u623l20@gmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165490: [UPDATE] devel/srecord to 1.5.9 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: Sun, 26 Feb 2012 19:20:02 -0000 >Number: 165490 >Category: ports >Synopsis: [UPDATE] devel/srecord to 1.5.9 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 26 19:20:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Muhammad Moinur Rahman >Release: 9.0-STABLE >Organization: >Environment: FreeBSD bofh.telnet.net.bd 9.0-STABLE FreeBSD 9.0-STABLE #0: Mon Feb 13 18:00:40 BDT 2012 bofh@bofh.telnet.net.bd:/usr/obj/usr/src/sys/BOFH amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/srecord/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- Makefile 13 Dec 2011 14:02:49 -0000 1.9 +++ Makefile 26 Feb 2012 18:59:24 -0000 @@ -7,7 +7,7 @@ # PORTNAME= srecord -PORTVERSION= 1.57 +PORTVERSION= 1.59 CATEGORIES= devel MASTER_SITES= SF Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/srecord/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- distinfo 13 Dec 2011 14:02:49 -0000 1.6 +++ distinfo 26 Feb 2012 18:59:24 -0000 @@ -1,2 +1,2 @@ -SHA256 (srecord-1.57.tar.gz) = bd6031b5463b77fd15062452fc5fd582a1d4efea2f42275653b3989c4b642feb -SIZE (srecord-1.57.tar.gz) = 860771 +SHA256 (srecord-1.59.tar.gz) = 97d441ee62b948a47935adfab8b8fb01a7a654b1656b32b299a4a041e36bd351 +SIZE (srecord-1.59.tar.gz) = 889036 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 19:20:14 2012 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 C420A1065676; Sun, 26 Feb 2012 19:20:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 983E48FC18; Sun, 26 Feb 2012 19:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QJKEFZ076346; Sun, 26 Feb 2012 19:20:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QJKEMN076342; Sun, 26 Feb 2012 19:20:14 GMT (envelope-from edwin) Date: Sun, 26 Feb 2012 19:20:14 GMT Message-Id: <201202261920.q1QJKEMN076342@freefall.freebsd.org> To: 5u623l20@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165490: [UPDATE] devel/srecord to 1.5.9 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: Sun, 26 Feb 2012 19:20:14 -0000 Synopsis: [UPDATE] devel/srecord to 1.5.9 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Feb 26 19:20:14 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165490 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 19:27:03 2012 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 8C0AC106566B; Sun, 26 Feb 2012 19:27:03 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5F47E8FC1A; Sun, 26 Feb 2012 19:27:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QJR3tB084221; Sun, 26 Feb 2012 19:27:03 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QJR3lh084217; Sun, 26 Feb 2012 19:27:03 GMT (envelope-from edwin) Date: Sun, 26 Feb 2012 19:27:03 GMT Message-Id: <201202261927.q1QJR3lh084217@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165482: sysutils/lsof: lsof-4.86A, 6 refuses to build on 8.3 prerelease/beta 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: Sun, 26 Feb 2012 19:27:03 -0000 Synopsis: sysutils/lsof: lsof-4.86A,6 refuses to build on 8.3 prerelease/beta Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Sun Feb 26 19:27:03 UTC 2012 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165482 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 19:27:09 2012 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 2055A106566C; Sun, 26 Feb 2012 19:27:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E70028FC17; Sun, 26 Feb 2012 19:27:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QJR8uo084296; Sun, 26 Feb 2012 19:27:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QJR8OM084292; Sun, 26 Feb 2012 19:27:08 GMT (envelope-from edwin) Date: Sun, 26 Feb 2012 19:27:08 GMT Message-Id: <201202261927.q1QJR8OM084292@freefall.freebsd.org> To: dam@my.gd, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165482: sysutils/lsof: lsof-4.86A, 6 refuses to build on 8.3 prerelease/beta 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: Sun, 26 Feb 2012 19:27:09 -0000 Synopsis: sysutils/lsof: lsof-4.86A,6 refuses to build on 8.3 prerelease/beta State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Feb 26 19:27:08 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165482 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 19:30:05 2012 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 C4331106566C for ; Sun, 26 Feb 2012 19:30:05 +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 AF0F88FC14 for ; Sun, 26 Feb 2012 19:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QJU5R9084690 for ; Sun, 26 Feb 2012 19:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QJU534084687; Sun, 26 Feb 2012 19:30:05 GMT (envelope-from gnats) Date: Sun, 26 Feb 2012 19:30:05 GMT Message-Id: <201202261930.q1QJU534084687@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/165490: [UPDATE] devel/srecord to 1.5.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Feb 2012 19:30:05 -0000 The following reply was made to PR ports/165490; it has been noted by GNATS. From: Edwin Groothuis To: abwang@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/165490: [UPDATE] devel/srecord to 1.5.9 Date: Sun, 26 Feb 2012 19:20:11 UT Maintainer of devel/srecord, Please note that PR ports/165490 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165490 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 19:30:08 2012 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 A8B24106566B for ; Sun, 26 Feb 2012 19:30:08 +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 935958FC15 for ; Sun, 26 Feb 2012 19:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QJU84u084801 for ; Sun, 26 Feb 2012 19:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QJU8gl084798; Sun, 26 Feb 2012 19:30:08 GMT (envelope-from gnats) Date: Sun, 26 Feb 2012 19:30:08 GMT Message-Id: <201202261930.q1QJU8gl084798@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/165482: sysutils/lsof: lsof-4.86A, 6 refuses to build on 8.3 prerelease/beta X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Feb 2012 19:30:08 -0000 The following reply was made to PR ports/165482; it has been noted by GNATS. From: Edwin Groothuis To: ler@lerctr.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/165482: sysutils/lsof: lsof-4.86A,6 refuses to build on 8.3 prerelease/beta Date: Sun, 26 Feb 2012 19:27:04 UT Maintainer of sysutils/lsof, Please note that PR ports/165482 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165482 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 20:20:04 2012 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 2A16C106564A for ; Sun, 26 Feb 2012 20:20:04 +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 14D3C8FC17 for ; Sun, 26 Feb 2012 20:20:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QKK3Gg031174 for ; Sun, 26 Feb 2012 20:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QKK3nN031173; Sun, 26 Feb 2012 20:20:03 GMT (envelope-from gnats) Date: Sun, 26 Feb 2012 20:20:03 GMT Message-Id: <201202262020.q1QKK3nN031173@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Larry Rosenman Cc: Subject: Re: ports/165482: sysutils/lsof: lsof-4.86A,6 refuses to build on 8.3 prerelease/beta X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Larry Rosenman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Feb 2012 20:20:04 -0000 The following reply was made to PR ports/165482; it has been noted by GNATS. From: Larry Rosenman To: bug-followup@FreeBSD.org Cc: Edwin Groothuis Subject: Re: ports/165482: sysutils/lsof: lsof-4.86A,6 refuses to build on 8.3 prerelease/beta Date: Sun, 26 Feb 2012 14:16:51 -0600 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 2/26/2012 1:27 PM, Edwin Groothuis wrote: > Maintainer of sysutils/lsof, > > Please note that PR ports/165482 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the > patch and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165482 > I'm in contact with the Author, and am updating my 8.x system. Should have an update in a few days. Thanks! - -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 512-248-2683 E-Mail: ler@lerctr.org US Mail: 430 Valona Loop, Round Rock, TX 78681-3893 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.17 (MingW32) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQEcBAEBAgAGBQJPSpMzAAoJENC8dtAvA1zmzFcIAK9JTbWlqx8UgFASIQtMDxM6 inmxHoKDuVp4rekRLfexFkJXCMJKc5j5Gx+mRWi2WMWnY64ze3PyVkUARJm51Zfg A2qTkCHmhg4b7cdh7jCjzTkcwU/FrjBbNl4JGkP2WLF65sfZVP54vNsMzPoNL2hT Psqj+RVworNClZuDgcE0Y3I+KofEaLUawG8NFezLwB5Zi7A0ZeFI3ta9k+qAuOU8 Sop28LRg6M6ldS+ifKecSZKcjGyDnY64dxfyn1uLRiqyRmNBipkwFkPdoPRVPCNX RkuqMh9DDX1R02lJtqAXUWb3pP/Ik+Vi6HQB7ZyDqbATUhqNDwav4IfDniFpyOw= =wmUz -----END PGP SIGNATURE----- From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 22:00:09 2012 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 F09B1106566C for ; Sun, 26 Feb 2012 22:00:09 +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 DB8EC8FC12 for ; Sun, 26 Feb 2012 22:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QM095K023943 for ; Sun, 26 Feb 2012 22:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QM09Ri023942; Sun, 26 Feb 2012 22:00:09 GMT (envelope-from gnats) Date: Sun, 26 Feb 2012 22:00:09 GMT Message-Id: <201202262200.q1QM09Ri023942@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/165460: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Feb 2012 22:00:10 -0000 The following reply was made to PR ports/165460; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/165460: commit references a PR Date: Sun, 26 Feb 2012 21:50:54 +0000 (UTC) tota 2012-02-26 21:50:44 UTC FreeBSD ports repository Modified files: Mk bsd.cran.mk Log: - Set MAKE_ENV variable before "R_INS PORTNAME" in bsd.cran.mk to be able to set options CFLAGS, CPPFLAGS, LDFLAGS, etc. PR: ports/165460 Submitted by: tota (myself) Approved by: wen (maintainer) Revision Changes Path 1.11 +2 -2 ports/Mk/bsd.cran.mk _______________________________________________ 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" From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 22:23:47 2012 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 5F529106566B; Sun, 26 Feb 2012 22:23:47 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 32F098FC15; Sun, 26 Feb 2012 22:23:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QMNlB4050890; Sun, 26 Feb 2012 22:23:47 GMT (envelope-from tota@freefall.freebsd.org) Received: (from tota@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QMNlWZ050886; Sun, 26 Feb 2012 22:23:47 GMT (envelope-from tota) Date: Sun, 26 Feb 2012 22:23:47 GMT Message-Id: <201202262223.q1QMNlWZ050886@freefall.freebsd.org> To: tota@freebsd.org, tota@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: tota@FreeBSD.org Cc: Subject: Re: ports/165460: [bsd.cran.mk] [patch] Set MAKE_ENV before R_INS PORTNAME 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: Sun, 26 Feb 2012 22:23:47 -0000 Synopsis: [bsd.cran.mk] [patch] Set MAKE_ENV before R_INS PORTNAME State-Changed-From-To: open->closed State-Changed-By: tota State-Changed-When: Sun Feb 26 22:23:24 UTC 2012 State-Changed-Why: Committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=165460 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 22:30:02 2012 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 538E31065673 for ; Sun, 26 Feb 2012 22:30:02 +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 2A8088FC1E for ; Sun, 26 Feb 2012 22:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QMU2re051129 for ; Sun, 26 Feb 2012 22:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QMU2pr051121; Sun, 26 Feb 2012 22:30:02 GMT (envelope-from gnats) Resent-Date: Sun, 26 Feb 2012 22:30:02 GMT Resent-Message-Id: <201202262230.q1QMU2pr051121@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, Marco Trentini Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF598106564A for ; Sun, 26 Feb 2012 22:25:16 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A8DF08FC13 for ; Sun, 26 Feb 2012 22:25:16 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1QMPGnW046545 for ; Sun, 26 Feb 2012 22:25:16 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1QMPGK2046544; Sun, 26 Feb 2012 22:25:16 GMT (envelope-from nobody) Message-Id: <201202262225.q1QMPGK2046544@red.freebsd.org> Date: Sun, 26 Feb 2012 22:25:16 GMT From: Marco Trentini To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165494: [UPDATE] devel/geany-plugins: update to 0.21 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: Sun, 26 Feb 2012 22:30:02 -0000 >Number: 165494 >Category: ports >Synopsis: [UPDATE] devel/geany-plugins: update to 0.21 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 26 22:30:01 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Marco Trentini >Release: FreeBSD 9.0-RELEASE i386 >Organization: >Environment: System: FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:15:25 UTC 2012 root@obrian.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC >Description: Update to 0.21: - change build system from pyton to configure - add new patches - add pkg-message >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/geany-plugins/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- Makefile 29 Oct 2011 21:57:15 -0000 1.6 +++ Makefile 26 Feb 2012 21:35:28 -0000 @@ -6,7 +6,7 @@ # PORTNAME= geany-plugins -PORTVERSION= 0.19 +PORTVERSION= 0.21 CATEGORIES= devel MASTER_SITES= http://plugins.geany.org/geany-plugins/ @@ -14,200 +14,335 @@ COMMENT= Plugins for lightweight editor - geany BUILD_DEPENDS= geany:${PORTSDIR}/devel/geany +BUILD_DEPENDS+= bash:${PORTSDIR}/shells/bash RUN_DEPENDS= geany:${PORTSDIR}/devel/geany -BROKEN= does not compile - +GNU_CONFIGURE= yes USE_GMAKE= yes USE_GNOME= gtk20 USE_BZIP2= yes -USE_PYTHON_BUILD= 2.6+ -OPTIONS= GEANY_ADDONS "ADDONS" on \ - GEANY_GEANYDOC "GEANYDOC" on \ - GEANY_GEANYGDB "GDB support (broken)" off \ - GEANY_GEANYLATEX "Improve work with LaTeX" on \ - GEANY_GEANYLIPSUM "GEANYLIPSUM" on \ - GEANY_GEANYLUA "LUA support (broken)" off \ - GEANY_GEANYPRJ "Alternative project management" on \ - GEANY_GEANYSENDMAIL "Sending mail from geany" on \ - GEANY_GEANYVC "Version-control systems support" on \ - GEANY_SHIFTCOLUMN "SHIFTCOLUMN" on \ - GEANY_SPELLCHECK "Spellchecker support" on \ - GEANY_CODENAV "Siwtch between header and source" on \ - GEANY_INSERTNUM "geanyinsertnum" on \ - GEANY_GEANYEXTRASEL "geanyextrasel" on \ - GEANY_TREEBROWSER "Tree Browser" on \ - GEANY_PRETTYPRINTER "Pretty-printer" on +OPTIONS= ADDONS "Various small addons" on \ + CODENAV "Switch between header and source" on \ + DEBUGGER "Various debuggers integration" on \ + DEVHELP "Support for devhelp and other tools" on \ + GEANYDOC "Documentation viewer" on \ + GEANYEXTRASEL "Column mode and other extra selection" on \ + GEANYGDB "GDB support" on \ + GEANYGENDOC "Generate doc from source (broken)" on \ + GEANYINSERTNUM "Insert columns with numbers" on \ + GEANYLATEX "Improve work with LaTeX" on \ + GEANYLIPSUM "Insert Lorem Ipsum" on \ + GEANYLUA "LUA support" on \ + GEANYMACRO "Record and use your own macros" on \ + GEANYNUMBEREDBOOKMARKS "Numbered bookmarks" on \ + GEANYPG "Gpg encryption" on \ + GEANYPRJ "Alternative project management" on \ + GEANYSENDMAIL "Sending mail from geany" on \ + GEANYVC "Version-control systems support" on \ + GPROJECT "Project management extensions" on \ + PRETTYPRINTXML "Make XML human-readable" on \ + SHIFTCOLUMN "Move block of text horizontally" on \ + SPELLCHECK "Spellchecker support" on \ + TREEBROWSER "Browse files in a tree view" on \ + TABLECONVERT "Convert list in an table" on \ + UPDATECHECKER "Checking updates for Geany" on \ + WEBHELPER "Web development facilities " on \ + XMLSNIPPETS "XML/HTML tag autocompletion" on .include -PLUGINS= -.if !defined(WITHOUT_GEANY_TREEBROWSER) -BUILD_PLUGINS+= ,treebrowser -PLUGINS+= treebrowser.so -.endif - -.if !defined(WITHOUT_GEANY_CODENAV) -BUILD_PLUGINS+= ,codenav -PLUGINS+= codenav.so -.endif - -.if !defined(WITHOUT_GEANY_INSERTNUM) -BUILD_PLUGINS+= ,geanyinsertnum -PLUGINS+= geanyinsertnum.so -.endif - -.if !defined(WITHOUT_GEANY_GEANYEXTRASEL) -BUILD_PLUGINS+= ,geanyextrasel -PLUGINS+= geanyextrasel.so -.endif - -.if !defined(WITHOUT_GEANY_PRETTYPRINTER) -BUILD_PLUGINS+= ,pretty-printer -PLUGINS+= pretty-printer.so -.endif - -.if !defined(WITHOUT_GEANY_GEANYDOC) -BUILD_PLUGINS+= ,geanydoc -PLUGINS+= geanydoc.so -.endif - -.if !defined(WITHOUT_GEANY_ADDONS) -BUILD_PLUGINS+= ,addons -PLUGINS+= addons.so -.endif - -.if !defined(WITHOUT_GEANY_GEANYGDB) -# handle geanygdb manually -BROKEN= geanygdb plugins doesn't work -BUILD_PLUGINS+= ,geanygdb -PLIST_FILES+= lib/geany/geanygdb.so \ - libexec/geany-plugins/geanygdb/ttyhelper -.endif - -.if !defined(WITHOUT_GEANY_GEANYLATEX) -BUILD_PLUGINS+= ,geanylatex -PLUGINS+= geanylatex.so -.endif - -.if !defined(WITHOUT_GEANY_GEANYLIPSUM) -BUILD_PLUGINS+= ,geanylipsum -PLUGINS+= geanylipsum.so -.endif - -.if !defined(WITHOUT_GEANY_GEANYLUA) -# I will handle geanulua manually -BUILD_PLUGINS+= ,geanylua -USE_LUA= 5.1 -PLIST_FILES+= lib/geany/geanylua.so \ - lib/geany-plugins/geanylua/libgeanylua.so \ - share/doc/geany-plugins/geanylua/geanylua-input.html \ - share/doc/geany-plugins/geanylua/geanylua-ref.html \ - share/doc/geany-plugins/geanylua/geanylua-index.html \ - share/doc/geany-plugins/geanylua/geanylua-intro.html \ - share/doc/geany-plugins/geanylua/geanylua-keys.html \ - share/doc/geany-plugins/geanylua/geanylua-keyfile.html \ - share/doc/geany-plugins/geanylua/luarefv51.html \ - share/geany-plugins/geanylua/dialogs/complex-dialog.lua \ - share/geany-plugins/geanylua/dialogs/basic-dialogs.lua \ - share/geany-plugins/geanylua/edit/select-block.lua \ - share/geany-plugins/geanylua/edit/proper-case.lua \ - share/geany-plugins/geanylua/edit/right-trim.lua \ - share/geany-plugins/geanylua/edit/calculator.lua \ - share/geany-plugins/geanylua/edit/lua-replace.lua \ - share/geany-plugins/geanylua/edit/reverse.lua \ - share/geany-plugins/geanylua/info/show-filename.lua \ - share/geany-plugins/geanylua/info/about.lua \ - share/geany-plugins/geanylua/info/list-open-files.lua \ - share/geany-plugins/geanylua/info/file-informa\tion.lua \ - share/geany-plugins/geanylua/info/app-information.lua \ - share/geany-plugins/geanylua/scripting/show-examples.lua \ - share/geany-plugins/geanylua/scripting/open-script.lua \ - share/geany-plugins/geanylua/scripting/help.lua \ - share/geany-plugins/geanylua/scripting/rebuild-menu.lua \ - share/geany-plugins/geanylua/work/03.install-test-script.lua \ - share/geany-plugins/geanylua/work/02.run-test-script.lua \ - share/geany-plugins/geanylua/work/01.edit-test-script.lua -PLIST_DIRS+= lib/geany-plugins/geanylua \ - lib/geany-plugins \ - share/doc/geany-plugins/geanylua \ - share/doc/geany-plugins \ - share/geany-plugins/geanylua/dialogs \ - share/geany-plugins/geanylua/edit \ - share/geany-plugins/geanylua/info \ - share/geany-plugins/geanylua/scripting \ - share/geany-plugins/geanylua/work \ - share/geany-plugins/geanylua \ - share/geany-plugins -.endif - -.if !defined(WITHOUT_GEANY_GEANYPRJ) -BUILD_PLUGINS+= ,geanyprj -PLUGINS+= geanyprj.so -.endif - -.if !defined(WITHOUT_GEANY_GEANYVC) -BUILD_PLUGINS+= ,geanyvc -LIB_DEPENDS+= gtkspell:${PORTSDIR}/textproc/gtkspell -PLUGINS+= geanyvc.so -.endif - -.if !defined(WITHOUT_GEANY_GEANYSENDMAIL) -BUILD_PLUGINS+= ,geanysendmail -PLUGINS+= geanysendmail.so -.endif - -.if !defined(WITHOUT_GEANY_SHIFTCOLUMN) -BUILD_PLUGINS+= ,shiftcolumn -PLUGINS+= shiftcolumn.so +.if !defined(WITHOUT_ADDONS) +CONFIGURE_ARGS+=--enable-addons +PLUGINS+= addons +.else +CONFIGURE_ARGS+=--disable-addons +.endif + +.if !defined(WITHOUT_CODENAV) +CONFIGURE_ARGS+=--enable-codenav +PLUGINS+= codenav +.else +CONFIGURE_ARGS+=--disable-codenav +.endif + +.if !defined(WITHOUT_DEBUGGER) +CONFIGURE_ARGS+=--enable-debugger +PLUGINS+= debugger +DEBUGGER_DIR= share/geany-plugins/debugger +PLIST_DIRS+= ${DEBUGGER_DIR} +PLIST_FILES+= ${DEBUGGER_DIR}/continue.png \ + ${DEBUGGER_DIR}/restart.gif \ + ${DEBUGGER_DIR}/run.gif \ + ${DEBUGGER_DIR}/run_to_cursor.gif \ + ${DEBUGGER_DIR}/step_in.png \ + ${DEBUGGER_DIR}/step_out.gif \ + ${DEBUGGER_DIR}/step_over.gif \ + ${DEBUGGER_DIR}/stop.gif \ + ${DEBUGGER_DIR}/tabs.gif +.else +CONFIGURE_ARGS+=--disable-debugger +.endif + +.if !defined(WITHOUT_DEVHELP) +CONFIGURE_ARGS+=--enable-devhelp +PLUGINS+= devhelp +RUN_DEPENDS+= ${LOCALBASE}/include/webkit-1.0:${PORTSDIR}/www/webkit-gtk2 +RUN_DEPENDS+= devhelp:${PORTSDIR}/devel/devhelp +.else +CONFIGURE_ARGS+=--disable-devhelp +.endif + +.if !defined(WITHOUT_GEANYDOC) +CONFIGURE_ARGS+=--enable-geanydoc +PLUGINS+= geanydoc +.else +CONFIGURE_ARGS+=--disable-geanydoc +.endif + +.if !defined(WITHOUT_GEANYEXTRASEL) +CONFIGURE_ARGS+=--enable-geanyextrasel +PLUGINS+= geanyextrasel +.else +CONFIGURE_ARGS+=--disable-geanyextrasel +.endif + +.if !defined(WITHOUT_GEANYGDB) +CONFIGURE_ARGS+=--enable-geanygdb +PLUGINS+= geanygdb +GDB_DIR= libexec/geany-plugins/geanygdb +PLIST_DIRS+= ${GDB_DIR} +PLIST_FILES+= ${GDB_DIR}/ttyhelper +.else +CONFIGURE_ARGS+=--disable-geanygdb +.endif + +.if !defined(WITHOUT_GEANYGENDOC) +BROKEN= sorry, geanygendoc plugins doesn't compile +# TODO: import new ctpl port and fix gio lib_depends +CONFIGURE_ARGS+=--enable-geanygendoc +PLUGINS+= geanygendoc +LIB_DEPENDS+= glib:${PORTSDIR}/devel/glib20 +RUN_DEPENDS+= rst2html:${PORTSDIR}/textproc/py-docutils +.else +CONFIGURE_ARGS+=--disable-geanygendoc +.endif + +.if !defined(WITHOUT_GEANYINSERTNUM) +CONFIGURE_ARGS+=--enable-geanyinsertnum +PLUGINS+= geanyinsertnum +.else +CONFIGURE_ARGS+=--disable-geanyinsertnum +.endif + +.if !defined(WITHOUT_GEANYLATEX) +CONFIGURE_ARGS+=--enable-geanylatex +PLUGINS+= geanylatex +.else +CONFIGURE_ARGS+=--disable-geanylatex +.endif + +.if !defined(WITHOUT_GEANYLIPSUM) +CONFIGURE_ARGS+=--enable-geanylipsum +PLUGINS+= geanylipsum +.else +CONFIGURE_ARGS+=--disable-geanylipsum +.endif + +.if !defined(WITHOUT_GEANYLUA) +CONFIGURE_ARGS+=--enable-geanylua +RUN_DEPENDS= lua-5.1:${PORTSDIR}/lang/lua +PLUGINS+= geanylua +LUA_DIR= share/geany-plugins/geanylua +LUADOC_DIR= share/doc/geany-plugins/geanylua +PLIST_FILES+= ${LUADOC_DIR}/geanylua-index.html +PLIST_FILES+= ${LUADOC_DIR}/geanylua-input.html +PLIST_FILES+= ${LUADOC_DIR}/geanylua-intro.html +PLIST_FILES+= ${LUADOC_DIR}/geanylua-keyfile.html +PLIST_FILES+= ${LUADOC_DIR}/geanylua-keys.html +PLIST_FILES+= ${LUADOC_DIR}/geanylua-ref.html +PLIST_FILES+= ${LUADOC_DIR}/luarefv51.html +PLIST_DIRS+= ${LUA_DIR}/dialogs +PLIST_FILES+= ${LUA_DIR}/dialogs/basic-dialogs.lua +PLIST_FILES+= ${LUA_DIR}/dialogs/complex-dialog.lua +PLIST_DIRS+= ${LUA_DIR}/edit +PLIST_FILES+= ${LUA_DIR}/edit/calculator.lua +PLIST_FILES+= ${LUA_DIR}/edit/lua-replace.lua +PLIST_FILES+= ${LUA_DIR}/edit/proper-case.lua +PLIST_FILES+= ${LUA_DIR}/edit/reverse.lua +PLIST_FILES+= ${LUA_DIR}/edit/right-trim.lua +PLIST_FILES+= ${LUA_DIR}/edit/select-block.lua +PLIST_DIRS+= ${LUA_DIR}/info +PLIST_FILES+= ${LUA_DIR}/info/about.lua +PLIST_FILES+= ${LUA_DIR}/info/app-information.lua +PLIST_FILES+= ${LUA_DIR}/info/file-information.lua +PLIST_FILES+= ${LUA_DIR}/info/list-open-files.lua +PLIST_FILES+= ${LUA_DIR}/info/show-filename.lua +PLIST_DIRS+= ${LUA_DIR}/scripting +PLIST_FILES+= ${LUA_DIR}/scripting/help.lua +PLIST_FILES+= ${LUA_DIR}/scripting/open-script.lua +PLIST_FILES+= ${LUA_DIR}/scripting/rebuild-menu.lua +PLIST_FILES+= ${LUA_DIR}/scripting/show-examples.lua +PLIST_DIRS+= ${LUA_DIR}/work +PLIST_FILES+= ${LUA_DIR}/work/01.edit-test-script.lua +PLIST_FILES+= ${LUA_DIR}/work/02.run-test-script.lua +PLIST_FILES+= ${LUA_DIR}/work/03.install-test-script.lua + +.else +CONFIGURE_ARGS+=--disable-geanylua +.endif + +.if !defined(WITHOUT_GEANYMACRO) +CONFIGURE_ARGS+=--enable-geanymacro +PLUGINS+= geanymacro +.else +CONFIGURE_ARGS+=--disable-geanymacro +.endif + +.if !defined(WITHOUT_GEANYNUMBEREDBOOKMARKS) +CONFIGURE_ARGS+=--enable-geanynumberedbookmarks +PLUGINS+= geanynumberedbookmarks +.else +CONFIGURE_ARGS+=--disable-geanynumberedbookmarks +.endif + +.if !defined(WITHOUT_GEANYPG) +LIB_DEPENDS+= gpgme:${PORTSDIR}/security/gpgme +RUN_DEPENDS+= gpg2:${PORTSDIR}/security/gnupg +CONFIGURE_ARGS+=--enable-geanypg +PLUGINS+= geanypg +.else +CONFIGURE_ARGS+=--disable-geanypg +.endif + +.if !defined(WITHOUT_GEANYPRJ) +CONFIGURE_ARGS+=--enable-geanyprj +PLUGINS+= geanyprj +.else +CONFIGURE_ARGS+=--disable-geanyprj +.endif + +.if !defined(WITHOUT_GEANYSENDMAIL) +CONFIGURE_ARGS+=--enable-geanysendmail +PLUGINS+= geanysendmail +.else +CONFIGURE_ARGS+=--disable-geanysendmail +.endif + +.if !defined(WITHOUT_GEANYVC) +CONFIGURE_ARGS+=--enable-geanyvc +PLUGINS+= geanyvc +.else +CONFIGURE_ARGS+=--disable-geanyvc +.endif + +.if !defined(WITHOUT_GPROJECT) +CONFIGURE_ARGS+=--enable-gproject +PLUGINS+= gproject +GPROJECT_DIR= share/icons/hicolor/16x16/apps +PLIST_FILES+= ${GPROJECT_DIR}/gproject-collapse.png +PLIST_FILES+= ${GPROJECT_DIR}/gproject-expand.png +PLIST_FILES+= ${GPROJECT_DIR}/gproject-file.png +PLIST_FILES+= ${GPROJECT_DIR}/gproject-follow.png +PLIST_FILES+= ${GPROJECT_DIR}/gproject-header.png +PLIST_FILES+= ${GPROJECT_DIR}/gproject-refresh.png +PLIST_FILES+= ${GPROJECT_DIR}/gproject-source.png +.else +CONFIGURE_ARGS+=--disable-gproject +.endif + +.if !defined(WITHOUT_PRETTYPRINTXML) +CONFIGURE_ARGS+=--enable-pretty_printer +PLUGINS+= pretty-print +.else +CONFIGURE_ARGS+=--disable-pretty_printer +.endif + +.if !defined(WITHOUT_SHIFTCOLUMN) +CONFIGURE_ARGS+=--enable-shiftcolumn +PLUGINS+= shiftcolumn +.else +CONFIGURE_ARGS+=--disable-shiftcolumn .endif -.if !defined(WITHOUT_GEANY_SPELLCHECK) -BUILD_PLUGINS+= ,spellcheck +.if !defined(WITHOUT_SPELLCHECK) +CONFIGURE_ARGS+=--enable-spellcheck LIBDEPENS+= enchant:${PORTSDIR}/textproc/enchant -PLUGINS+= spellcheck.so +PLUGINS+= spellcheck +.else +CONFIGURE_ARGS+=--disable-spellcheck .endif -.if !defined(BUILD_PLUGINS) -IGNORE= no plugins selected +.if !defined(WITHOUT_TREEBROWSER) +CONFIGURE_ARGS+=--enable-treebrowser +PLUGINS+= treebrowser +.else +CONFIGURE_ARGS+=--disable-treebrowser .endif -.if !defined(WITHOUT_NLS) -PO_FILES= be ca da de es fr gl ja pt pt_BR ru tr zh_CN -.for i in ${PO_FILES} -PLIST_FILES+= share/locale/${i}/LC_MESSAGES/geany-plugins.mo -.endfor +.if !defined(WITHOUT_TABLECONVERT) +CONFIGURE_ARGS+=--enable-tableconvert +PLUGINS+= tableconvert +.else +CONFIGURE_ARGS+=--disable-tableconvert .endif -.for i in ${PLUGINS} -PLIST_FILES+= lib/geany/${i} -.endfor +.if !defined(WITHOUT_UPDATECHECKER) +CONFIGURE_ARGS+=--enable-updatechecker +.else +CONFIGURE_ARGS+=--disable-updatechecker +.endif -do-configure: - BUILD_PLUGINS=$(${ECHO} ${BUILD_PLUGINS} | ${SED} -e 's/^,//') - @${WRKSRC}/waf configure --enable-plugins="${BUILD_PLUGINS}" -b ${WRKSRC}/_build_ +.if !defined(WITHOUT_WEBHELPER) +CONFIGURE_ARGS+=--enable-webhelper +PLUGINS+= webhelper +LIB_DEPENDS+= glib:${PORTSDIR}/devel/glib20 +LIB_DEPENDS+= gdk_pixbuf:${PORTSDIR}/graphics/gdk-pixbuf2 +RUN_DEPENDS+= ${LOCALBASE}/include/webkit-1.0:${PORTSDIR}/www/webkit-gtk2 +.else +CONFIGURE_ARGS+=--disable-webhelper +.endif -do-install: -.for i in ${PLUGINS} - @${INSTALL_PROGRAM} ${WRKSRC}/_build_/default/${i} ${PREFIX}/lib/geany/ -.endfor -.if !defined(WITHOUT_GEANY_GEANYGDB) - @${MKDIR} ${PREFIX}/libexec/geany-plugins/geanygdb - @${INSTALL_PROGRAM} ${WRKSRC}/_build_/default/geanygdb.so ${PREFIX}/lib/geany/ - @${INSTALL_PROGRAM} ${WRKSRC}/_build_/default/ttyhelper ${PREFIX}/libexec/geany-plugins/geanygdb/ -.endif -.if !defined(WITHOUT_GEANY_GEANYLUA) - @${MKDIR} ${PREFIX}/lib/geany-plugins/geanylua - @${INSTALL_PROGRAM} ${WRKSRC}/_build_/default/libgeanylua.so ${PREFIX}/lib/geany-plugins/geanylua/ - @${INSTALL_PROGRAM} ${WRKSRC}/_build_/default/geanylua.so ${PREFIX}/lib/geany/ - @(cd ${WRKSRC}/geanylua/examples/ && ${COPYTREE_SHARE} \* ${PREFIX}/share/geany-plugins/geanylua/ "! -name Makefile.in -and ! -name Makefile.am") - @(cd ${WRKSRC}/geanylua/docs/ && ${COPYTREE_SHARE} \* ${PREFIX}/share/doc/geany-plugins/geanylua/ "! -name Makefile.in -and ! -name Makefile.am") +.if !defined(WITHOUT_XMLSNIPPETS) +CONFIGURE_ARGS+=--enable-xmlsnippets +PLUGINS+= xmlsnippets +.else +CONFIGURE_ARGS+=--disable-xmlsnippets .endif + +.if !defined(PLUGINS) +IGNORE= no plugins selected +.endif + .if !defined(WITHOUT_NLS) +PO_FILES= be ca da de es fr gl ja nl pt pt_BR ru tr zh_CN .for i in ${PO_FILES} - @${INSTALL_DATA} ${WRKSRC}/_build_/default/po/${i}.mo ${PREFIX}/share/locale/${i}/LC_MESSAGES/geany-plugins.mo +PLIST_FILES+= lib/locale/${i}/LC_MESSAGES/geany-plugins.mo .endfor .endif +pretty_print= pretty-print +.for i in ${PLUGINS} +PLIST_FILES+= lib/geany/${i}.so +PLIST_FILES+= lib/geany/${i}.la +.if ${pretty_print} != ${i} +PLIST_FILES+= share/doc/geany-plugins/${i}/AUTHORS +PLIST_FILES+= share/doc/geany-plugins/${i}/COPYING +PLIST_FILES+= share/doc/geany-plugins/${i}/ChangeLog +PLIST_FILES+= share/doc/geany-plugins/${i}/NEWS +PLIST_FILES+= share/doc/geany-plugins/${i}/README +.endif +.endfor + +post-install: + @${ECHO_MSG} "" + @${ECHO_MSG} "#######################################################" + @${ECHO_MSG} "Please see http://plugins.geany.org/ for more details." + @${ECHO_MSG} "#######################################################" + @${ECHO_MSG} "" + +# without this, autoconf re-create configure script +# using sh shell and this breaks build stage (bashims) +SH=${PREFIX}/bin/bash + .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/geany-plugins/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- distinfo 15 Feb 2011 17:32:11 -0000 1.3 +++ distinfo 26 Feb 2012 21:35:28 -0000 @@ -1,2 +1,2 @@ -SHA256 (geany-plugins-0.19.tar.bz2) = 41a6ab69ede801d660761c799b64c8d0027d76a1dda584777f4d40e1ba064324 -SIZE (geany-plugins-0.19.tar.bz2) = 842017 +SHA256 (geany-plugins-0.21.tar.bz2) = 4d4ef30fe77087a8c4325041120ef4f74f07ce9ca6f3e99a8feb92bb587db657 +SIZE (geany-plugins-0.21.tar.bz2) = 1271337 Index: pkg-message =================================================================== RCS file: pkg-message diff -N pkg-message --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ pkg-message 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,3 @@ +####################################################### +Please see http://plugins.geany.org/ for more details. +####################################################### Index: files/patch-config.guess =================================================================== RCS file: files/patch-config.guess diff -N files/patch-config.guess --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-config.guess 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,17 @@ +--- config.guess.orig 2012-02-21 23:04:39.000000000 +0100 ++++ config.guess 2012-02-21 23:04:52.000000000 +0100 +@@ -1,4 +1,4 @@ +-#! /bin/sh ++#! /usr/local/bin/bash + # Attempt to guess a canonical system name. + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, + # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, +@@ -871,7 +871,7 @@ + EV67) UNAME_MACHINE=alphaev67 ;; + EV68*) UNAME_MACHINE=alphaev68 ;; + esac +- objdump --private-headers /bin/sh | grep -q ld.so.1 ++ objdump --private-headers /usr/local/bin/bash | grep -q ld.so.1 + if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi + echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} + exit ;; Index: files/patch-config.sub =================================================================== RCS file: files/patch-config.sub diff -N files/patch-config.sub --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-config.sub 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,8 @@ +--- config.sub.orig 2012-02-21 23:05:52.000000000 +0100 ++++ config.sub 2012-02-21 23:06:19.000000000 +0100 +@@ -1,4 +1,4 @@ +-#! /bin/sh ++#! /usr/local/bin/bash + # Configuration validation subroutine script. + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, + # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, Index: files/patch-configure =================================================================== RCS file: files/patch-configure diff -N files/patch-configure --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-configure 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,53 @@ +--- configure.orig 2012-02-21 23:06:53.000000000 +0100 ++++ configure 2012-02-21 23:07:06.000000000 +0100 +@@ -1,4 +1,4 @@ +-#! /bin/sh ++#! /usr/local/bin/bash + # Guess values for system-dependent variables and create Makefiles. + # Generated by GNU Autoconf 2.68 for geany-plugins 0.21. + # +@@ -253,7 +253,7 @@ + fi + fi + fi +-SHELL=${CONFIG_SHELL-/bin/sh} ++SHELL=${CONFIG_SHELL-/usr/local/bin/bash} + export SHELL + # Unset more variables known to interfere with behavior of common tools. + CLICOLOR_FORCE= GREP_OPTIONS= +@@ -541,7 +541,7 @@ + # Sed expression to map a string onto a valid variable name. + as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" + +-SHELL=${CONFIG_SHELL-/bin/sh} ++SHELL=${CONFIG_SHELL-/usr/local/bin/bash} + + + test -n "$DJDIR" || exec 7<&0 &6 + else + cat >conftest.make <<\_ACEOF +-SHELL = /bin/sh ++SHELL = /usr/local/bin/bash + all: + @echo '@@@%%%=$(MAKE)=@@@%%%' + _ACEOF +@@ -3967,7 +3967,7 @@ + for i in 1 2 3 4 5 6; do + echo '#include "conftst'$i'.h"' >> sub/conftest.c + # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with +- # Solaris 8's {/usr,}/bin/sh. ++ # Solaris 8's {/usr,}/usr/local/bin/bash. + touch sub/conftst$i.h + done + echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf +@@ -4967,7 +4967,7 @@ + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done +- SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} ++ SHELL=${SHELL-${CONFIG_SHELL-/usr/local/bin/bash}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. Index: files/patch-debugger_dconfig.c =================================================================== RCS file: files/patch-debugger_dconfig.c diff -N files/patch-debugger_dconfig.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-debugger_dconfig.c 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,29 @@ +--- debugger/src/dconfig.c.orig 2012-02-22 22:00:04.000000000 +0100 ++++ debugger/src/dconfig.c 2012-02-22 22:08:49.000000000 +0100 +@@ -273,8 +273,9 @@ + */ + static gpointer saving_thread_func(gpointer data) + { +- GTimeVal interval; ++ //GTimeVal interval; + GMutex *m = g_mutex_new(); ++ guint timeout = 0; + do + { + g_mutex_lock(change_config_mutex); +@@ -312,10 +313,12 @@ + + g_mutex_unlock(change_config_mutex); + +- g_get_current_time(&interval); +- g_time_val_add(&interval, SAVING_INTERVAL); ++ //g_get_current_time(&interval); ++ //g_time_val_add(&interval, SAVING_INTERVAL); ++ usleep(1000); + } +- while (!g_cond_timed_wait(cond, m, &interval)); ++ //while (!g_cond_timed_wait(cond, m, &interval)); ++ while (timeout++ == 10000); + g_mutex_free(m); + + return NULL; Index: files/patch-debugger_debug.c =================================================================== RCS file: files/patch-debugger_debug.c diff -N files/patch-debugger_debug.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-debugger_debug.c 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,10 @@ +--- debugger/src/debug.c.orig 2012-02-22 21:20:27.000000000 +0100 ++++ debugger/src/debug.c 2012-02-22 21:20:36.000000000 +0100 +@@ -37,7 +37,6 @@ + + #include + #include +-#include + #include + #include + #include Index: files/patch-depcomp =================================================================== RCS file: files/patch-depcomp diff -N files/patch-depcomp --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-depcomp 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,8 @@ +--- depcomp.orig 2012-02-21 23:07:34.000000000 +0100 ++++ depcomp 2012-02-21 23:07:53.000000000 +0100 +@@ -1,4 +1,4 @@ +-#! /bin/sh ++#! /usr/local/bin/bash + # depcomp - compile a program generating dependencies as side-effects + + scriptversion=2009-04-28.21; # UTC Index: files/patch-geanylua-install.sh =================================================================== RCS file: files/patch-geanylua-install.sh diff -N files/patch-geanylua-install.sh --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-geanylua-install.sh 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,8 @@ +--- geanylua/util/install.sh.orig 2012-02-21 23:13:48.000000000 +0100 ++++ geanylua/util/install.sh 2012-02-21 23:14:01.000000000 +0100 +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/usr/local/bin/bash + + # Script to install GeanyLua in the user's local Geany config directory + Index: files/patch-install-sh =================================================================== RCS file: files/patch-install-sh diff -N files/patch-install-sh --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-install-sh 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,8 @@ +--- install-sh.orig 2012-02-21 23:09:33.000000000 +0100 ++++ install-sh 2012-02-21 23:09:45.000000000 +0100 +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/usr/local/bin/bash + # install - install a program, script, or datafile + + scriptversion=2009-04-28.21; # UTC Index: files/patch-libtool.m4 =================================================================== RCS file: files/patch-libtool.m4 diff -N files/patch-libtool.m4 --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-libtool.m4 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,20 @@ +--- build/cache/libtool.m4.orig 2012-02-21 23:01:08.000000000 +0100 ++++ build/cache/libtool.m4 2012-02-21 23:03:04.000000000 +0100 +@@ -85,7 +85,7 @@ + AC_REQUIRE([LTOBSOLETE_VERSION])dnl + m4_require([_LT_PROG_LTMAIN])dnl + +-_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) ++_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/usr/local/bin/bash}]) + + dnl Parse OPTIONS + _LT_SET_OPTIONS([$0], [$1]) +@@ -1635,7 +1635,7 @@ + for i in 1 2 3 4 5 6 7 8 ; do + teststring=$teststring$teststring + done +- SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} ++ SHELL=${SHELL-${CONFIG_SHELL-/usr/local/bin/bash}} + # If test is not a shell built-in, we'll probably end up computing a + # maximum length that is only half of the actual maximum length, but + # we can't tell. Index: files/patch-ltmain.sh =================================================================== RCS file: files/patch-ltmain.sh diff -N files/patch-ltmain.sh --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-ltmain.sh 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,20 @@ +--- ltmain.sh.orig 2012-02-21 23:10:19.000000000 +0100 ++++ ltmain.sh 2012-02-21 23:10:43.000000000 +0100 +@@ -145,7 +145,7 @@ + : ${MV="mv -f"} + : ${RM="rm -f"} + : ${SED="/bin/sed"} +-: ${SHELL="${CONFIG_SHELL-/bin/sh}"} ++: ${SHELL="${CONFIG_SHELL-/usr/local/bin/bash}"} + : ${Xsed="$SED -e 1s/^X//"} + + # Global variables: +@@ -2770,7 +2770,7 @@ + $opt_debug + # There may be an optional sh(1) argument at the beginning of + # install_prog (especially on Windows NT). +- if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || ++ if test "$nonopt" = "$SHELL" || test "$nonopt" = /usr/local/bin/bash || + # Allow the use of GNU shtool's install command. + case $nonopt in *shtool*) :;; *) false;; esac; then + # Aesthetically quote it. Index: files/patch-missing =================================================================== RCS file: files/patch-missing diff -N files/patch-missing --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-missing 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,17 @@ +--- missing.orig 2012-02-21 23:10:25.000000000 +0100 ++++ missing 2012-02-21 23:11:25.000000000 +0100 +@@ -1,4 +1,4 @@ +-#! /bin/sh ++#! /usr/local/bin/bash + # Common stub for a few missing GNU programs while installing. + + scriptversion=2009-04-28.21; # UTC +@@ -209,7 +209,7 @@ + touch $file + else + test -z "$file" || exec >$file +- echo "#! /bin/sh" ++ echo "#! /usr/local/bin/bash" + echo "# Created by GNU Automake missing as a replacement of" + echo "# $ $@" + echo "exit 0" Index: files/patch-mk-dialog-so.sh =================================================================== RCS file: files/patch-mk-dialog-so.sh diff -N files/patch-mk-dialog-so.sh --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-mk-dialog-so.sh 26 Feb 2012 21:35:28 -0000 @@ -0,0 +1,8 @@ +--- geanylua/util/mk-dialog-so.sh.orig 2012-02-21 23:08:36.000000000 +0100 ++++ geanylua/util/mk-dialog-so.sh 2012-02-21 23:08:50.000000000 +0100 +@@ -1,4 +1,4 @@ +-#!/bin/sh ++#!/usr/local/bin/bash + + # This will create a separate dynamic shared library from the dialogs module + # that can be used with the Lua standalone interptreter. Index: files/patch-wscript =================================================================== RCS file: files/patch-wscript diff -N files/patch-wscript --- files/patch-wscript 9 Oct 2010 20:44:25 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- ./wscript.orig 2010-06-10 19:46:27.000000000 +0300 -+++ ./wscript 2010-09-21 08:36:25.926749379 +0300 -@@ -99,7 +99,7 @@ - [ 'geanylua/geanylua.c' ], # the other source files are listed in build_lua() - [ 'geanylua' ], - # maybe you need to modify the package name of Lua, try one of these: lua5.1 lua51 lua-5.1 -- [ [ 'lua', '5.1', True ] ]), -+ [ [ 'lua-5.1', '5.1', True ] ]), - Plugin('GeanyPrj', None, [ 'geanyprj/src' ]), - Plugin('Pretty-Printer', None, [ 'pretty-printer/src' ], [ [ 'libxml-2.0', '2.6.27', True ] ]), - Plugin('TreeBrowser', None, [ 'treebrowser/src' ], [ [ 'gio-2.0', '2.16', False ] ]) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 22:30:15 2012 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 5D05C106566C; Sun, 26 Feb 2012 22:30:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 30B918FC1C; Sun, 26 Feb 2012 22:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QMUFX0051966; Sun, 26 Feb 2012 22:30:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QMUFOh051959; Sun, 26 Feb 2012 22:30:15 GMT (envelope-from edwin) Date: Sun, 26 Feb 2012 22:30:15 GMT Message-Id: <201202262230.q1QMUFOh051959@freefall.freebsd.org> To: marco@datasked.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165494: [UPDATE] devel/geany-plugins: update to 0.21 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: Sun, 26 Feb 2012 22:30:15 -0000 Synopsis: [UPDATE] devel/geany-plugins: update to 0.21 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sun Feb 26 22:30:14 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165494 From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 22:40:03 2012 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 1197F1065670 for ; Sun, 26 Feb 2012 22:40:03 +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 F0B0F8FC14 for ; Sun, 26 Feb 2012 22:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QMe2To062064 for ; Sun, 26 Feb 2012 22:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QMe25x062059; Sun, 26 Feb 2012 22:40:02 GMT (envelope-from gnats) Date: Sun, 26 Feb 2012 22:40:02 GMT Message-Id: <201202262240.q1QMe25x062059@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/165494: [UPDATE] devel/geany-plugins: update to 0.21 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Feb 2012 22:40:03 -0000 The following reply was made to PR ports/165494; it has been noted by GNATS. From: Edwin Groothuis To: ar@null.lv Cc: bug-followup@FreeBSD.org Subject: Re: ports/165494: [UPDATE] devel/geany-plugins: update to 0.21 Date: Sun, 26 Feb 2012 22:30:11 UT Maintainer of devel/geany-plugins, Please note that PR ports/165494 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165494 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 23:50:06 2012 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 691171065670 for ; Sun, 26 Feb 2012 23:50:06 +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 297648FC13 for ; Sun, 26 Feb 2012 23:50:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QNo6jl025508 for ; Sun, 26 Feb 2012 23:50:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QNo5sT025507; Sun, 26 Feb 2012 23:50:05 GMT (envelope-from gnats) Resent-Date: Sun, 26 Feb 2012 23:50:05 GMT Resent-Message-Id: <201202262350.q1QNo5sT025507@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, Barney Wolff Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0839C106564A for ; Sun, 26 Feb 2012 23:48:57 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E6DB08FC0C for ; Sun, 26 Feb 2012 23:48:56 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1QNmuqD087489 for ; Sun, 26 Feb 2012 23:48:56 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1QNmupn087488; Sun, 26 Feb 2012 23:48:56 GMT (envelope-from nobody) Message-Id: <201202262348.q1QNmupn087488@red.freebsd.org> Date: Sun, 26 Feb 2012 23:48:56 GMT From: Barney Wolff To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165495: over-agressive patchfile in port www/chromium 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: Sun, 26 Feb 2012 23:50:06 -0000 >Number: 165495 >Category: ports >Synopsis: over-agressive patchfile in port www/chromium >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 26 23:50:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Barney Wolff >Release: RELENG7 >Organization: retired >Environment: FreeBSD pit.databus.com 7.4-STABLE FreeBSD 7.4-STABLE #0: Sun Feb 26 00:44:57 EST 2012 toor@pit.databus.com:/usr/obj/usr/src/sys/PIT i386 >Description: Port www/chromium has patchfile patch-third_party__WebKit__Source__WebCore__config.h which has the test: #if __FreeBSD_version < 802502 to #define log2(x) and log2f(x). But on my 7-stable system, /usr/include/math.h has tagline: $FreeBSD: src/lib/msun/src/math.h,v 1.62.2.2 2011/10/17 05:38:22 das Exp $ which includes these functions. The result is a compiler error with both the system gcc and llvm. >How-To-Repeat: cd /usr/ports/www/chromium make all >Fix: Removed offending patchfile. But if there are really systems where it's needed, a finer-grained test should be substituted. If chromium won't run on a pre-8 system, that test belongs in the top-level Makefile. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Feb 26 23:50:17 2012 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 22D67106564A; Sun, 26 Feb 2012 23:50:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EACE68FC15; Sun, 26 Feb 2012 23:50:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1QNoG0W025786; Sun, 26 Feb 2012 23:50:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1QNoGEO025780; Sun, 26 Feb 2012 23:50:16 GMT (envelope-from edwin) Date: Sun, 26 Feb 2012 23:50:16 GMT Message-Id: <201202262350.q1QNoGEO025780@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-chromium@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165495: over-agressive patchfile in port www/chromium 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: Sun, 26 Feb 2012 23:50:17 -0000 Synopsis: over-agressive patchfile in port www/chromium Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-chromium Responsible-Changed-By: edwin Responsible-Changed-When: Sun Feb 26 23:50:16 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165495 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 00:40:10 2012 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 4E1871065672 for ; Mon, 27 Feb 2012 00:40:10 +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 25ED68FC16 for ; Mon, 27 Feb 2012 00:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1R0eA1T077227 for ; Mon, 27 Feb 2012 00:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1R0eAWT077225; Mon, 27 Feb 2012 00:40:10 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 00:40:10 GMT Resent-Message-Id: <201202270040.q1R0eAWT077225@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, Leo Vandewoestijne Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A4AD3106564A for ; Mon, 27 Feb 2012 00:37:42 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 76BF08FC0A for ; Mon, 27 Feb 2012 00:37:42 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1R0bgK4075621 for ; Mon, 27 Feb 2012 00:37:42 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1R0bfDc075620; Mon, 27 Feb 2012 00:37:41 GMT (envelope-from nobody) Message-Id: <201202270037.q1R0bfDc075620@red.freebsd.org> Date: Mon, 27 Feb 2012 00:37:41 GMT From: Leo Vandewoestijne To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165496: New port: misc/userspace-rcu userspace RCU (read-copy-update) library 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: Mon, 27 Feb 2012 00:40:10 -0000 >Number: 165496 >Category: ports >Synopsis: New port: misc/userspace-rcu userspace RCU (read-copy-update) library >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 00:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Leo Vandewoestijne >Release: 8.2-STABLE i386 >Organization: DNS-Lab >Environment: FreeBSD tst1.dns-lab.com 8.2-STABLE FreeBSD 8.2-STABLE #0: Thu Dec 8 01:53:27 UTC 2011 root@tst1.dns-lab.com:/usr/obj/usr/src/sys/UNIXCYCLE i386 >Description: I'd like to create a new port for a new authoritive nameserver, KNOT, of NIC-CZ. It has two dependencies. One is already in the ports collection. The other (this library) is not (yet): liburcu is a LGPLv2.1 userspace RCU (read-copy-update) library. This data synchronization library provides read-side access which scales linearly with the number of cores. It does so by allowing multiples copies of a given data structure to live at the same time, and by monitoring the data structure accesses to detect grace periods after which memory reclamation is possible. >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # userspace-rcu # userspace-rcu/Makefile # userspace-rcu/pkg-descr # userspace-rcu/distinfo # echo c - userspace-rcu mkdir -p userspace-rcu > /dev/null 2>&1 echo x - userspace-rcu/Makefile sed 's/^X//' >userspace-rcu/Makefile << '206db590e1c51b9a64f7287f1fbb24ec' X# New ports collection makefile for: userspace-rcu X# Date created: 29 February 2012 X# Whom: Leo Vandewoestijne X# X# $FreeBSD$ X# X XPORTNAME= userspace-rcu XPORTVERSION= 0.6.4 XCATEGORIES= misc XMASTER_SITES= http://lttng.org/files/urcu/ X XMAINTAINER= freebsd@dns-lab.com XCOMMENT= A read-copy-update data synchronization library X XLICENSE= LGPL21 X XUSE_BZIP2= yes XHAS_CONFIGURE= yes XUSE_LDCONFIG= yes X X.include 206db590e1c51b9a64f7287f1fbb24ec echo x - userspace-rcu/pkg-descr sed 's/^X//' >userspace-rcu/pkg-descr << '6cabe9952420ad813adcab554be0167b' Xliburcu is a LGPLv2.1 userspace RCU (read-copy-update) Xlibrary. This data synchronization library provides Xread-side access which scales linearly with the number Xof cores. It does so by allowing multiples copies of a Xgiven data structure to live at the same time, and by Xmonitoring the data structure accesses to detect grace Xperiods after which memory reclamation is possible. X XWWW: http://lttng.org/content/userspace-rcu 6cabe9952420ad813adcab554be0167b echo x - userspace-rcu/distinfo sed 's/^X//' >userspace-rcu/distinfo << 'd92341e2860b8ca03b9acc2198a4c32f' XSHA256 (userspace-rcu-0.6.4.tar.bz2) = 2914637c60027ea52974aa7fa8ee7f2a3a0067502bbaebe01de14d6988aa8882 XSIZE (userspace-rcu-0.6.4.tar.bz2) = 325414 d92341e2860b8ca03b9acc2198a4c32f exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 00:40:19 2012 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 77D771065689; Mon, 27 Feb 2012 00:40:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4C4608FC16; Mon, 27 Feb 2012 00:40:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1R0eJOf077401; Mon, 27 Feb 2012 00:40:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1R0eJJH077397; Mon, 27 Feb 2012 00:40:19 GMT (envelope-from edwin) Date: Mon, 27 Feb 2012 00:40:19 GMT Message-Id: <201202270040.q1R0eJJH077397@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, crees@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165496: New port: misc/userspace-rcu userspace RCU (read-copy-update) library 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: Mon, 27 Feb 2012 00:40:19 -0000 Synopsis: New port: misc/userspace-rcu userspace RCU (read-copy-update) library Responsible-Changed-From-To: freebsd-ports-bugs->crees Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 27 00:40:18 UTC 2012 Responsible-Changed-Why: crees@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165496 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 01:25:14 2012 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 D13821065672; Mon, 27 Feb 2012 01:25:14 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A45518FC08; Mon, 27 Feb 2012 01:25:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1R1PEZM022181; Mon, 27 Feb 2012 01:25:14 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1R1PEbl022177; Mon, 27 Feb 2012 01:25:14 GMT (envelope-from linimon) Date: Mon, 27 Feb 2012 01:25:14 GMT Message-Id: <201202270125.q1R1PEbl022177@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mono@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/164309: New port: graphics/pinta Simple drawing/painting program 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: Mon, 27 Feb 2012 01:25:14 -0000 Synopsis: New port: graphics/pinta Simple drawing/painting program Responsible-Changed-From-To: freebsd-ports-bugs->mono Responsible-Changed-By: linimon Responsible-Changed-When: Mon Feb 27 01:25:02 UTC 2012 Responsible-Changed-Why: by request of submitter. http://www.freebsd.org/cgi/query-pr.cgi?pr=164309 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 04:40:08 2012 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 9FCEF106566B for ; Mon, 27 Feb 2012 04:40:08 +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 616F48FC13 for ; Mon, 27 Feb 2012 04:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1R4e86X097523 for ; Mon, 27 Feb 2012 04:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1R4e87O097522; Mon, 27 Feb 2012 04:40:08 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 04:40:08 GMT Resent-Message-Id: <201202270440.q1R4e87O097522@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, Larry Rosenman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D62B106567A for ; Mon, 27 Feb 2012 04:30:53 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (lrosenman-1-pt.tunnel.tserv8.dal1.ipv6.he.net [IPv6:2001:470:1f0e:3ad::2]) by mx1.freebsd.org (Postfix) with ESMTP id 583328FC0A for ; Mon, 27 Feb 2012 04:30:53 +0000 (UTC) Received: from ler by thebighonker.lerctr.org with local (Exim 4.77 (FreeBSD)) (envelope-from ) id 1S1sEe-0002tF-MZ for FreeBSD-gnats-submit@freebsd.org; Sun, 26 Feb 2012 22:30:52 -0600 Message-Id: Date: Sun, 26 Feb 2012 22:30:52 -0600 From: Larry Rosenman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165497: [MAINTAINER] sysutils/lsof: update to 4.86B 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: Mon, 27 Feb 2012 04:40:08 -0000 >Number: 165497 >Category: ports >Synopsis: [MAINTAINER] sysutils/lsof: update to 4.86B >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 04:40:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 8.3-PRERELEASE amd64 >Organization: LERCTR Consulting >Environment: System: FreeBSD thebighonker.lerctr.org 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #49 r232195: Sun Feb 26 16:43:08 CST >Description: - Update to 4.86B Support 8.3 Closes ports/165482 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- lsof-4.86B,6.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/lsof/Makefile /home/ler/ports/sysutils/lsof/Makefile --- /usr/ports/sysutils/lsof/Makefile 2011-11-11 09:46:52.103286902 -0600 +++ /home/ler/ports/sysutils/lsof/Makefile 2012-02-26 22:28:21.969291192 -0600 @@ -7,7 +7,7 @@ # PORTNAME= lsof -PORTVERSION= 4.86A +PORTVERSION= 4.86B PORTEPOCH= 6 CATEGORIES= sysutils MASTER_SITES= http://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/ \ diff -ruN --exclude=CVS /usr/ports/sysutils/lsof/distinfo /home/ler/ports/sysutils/lsof/distinfo --- /usr/ports/sysutils/lsof/distinfo 2011-11-11 09:46:52.104292920 -0600 +++ /home/ler/ports/sysutils/lsof/distinfo 2012-02-26 22:28:34.244729674 -0600 @@ -1,2 +1,2 @@ -SHA256 (lsof_4.86A.freebsd.tar.bz2) = 84216d5a3ab449bdf9f6a0a43747ab0c8d57b73817ecc10c1cc1314f31462f5a -SIZE (lsof_4.86A.freebsd.tar.bz2) = 479709 +SHA256 (lsof_4.86B.freebsd.tar.bz2) = a38f15f8d5d14c15e106a9c2338421fd77bd87537f3361dbe29081af3c3f9bce +SIZE (lsof_4.86B.freebsd.tar.bz2) = 479684 --- lsof-4.86B,6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 07:50:06 2012 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 3B3FA106566B for ; Mon, 27 Feb 2012 07:50:06 +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 17A8E8FC0A for ; Mon, 27 Feb 2012 07:50:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1R7o5hD098283 for ; Mon, 27 Feb 2012 07:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1R7o5qN098280; Mon, 27 Feb 2012 07:50:05 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 07:50:05 GMT Resent-Message-Id: <201202270750.q1R7o5qN098280@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, Kan Sasaki Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78E11106564A for ; Mon, 27 Feb 2012 07:44:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5EBA18FC0C for ; Mon, 27 Feb 2012 07:44:35 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1R7iZ6l062855 for ; Mon, 27 Feb 2012 07:44:35 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1R7iYia062854; Mon, 27 Feb 2012 07:44:34 GMT (envelope-from nobody) Message-Id: <201202270744.q1R7iYia062854@red.freebsd.org> Date: Mon, 27 Feb 2012 07:44:34 GMT From: Kan Sasaki To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165498: [NEW PORT] devel/p5-Getopt-Compact-WithCmd: sub-command friendly, like Getopt::Compact 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: Mon, 27 Feb 2012 07:50:06 -0000 >Number: 165498 >Category: ports >Synopsis: [NEW PORT] devel/p5-Getopt-Compact-WithCmd: sub-command friendly, like Getopt::Compact >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 07:50:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kan Sasaki >Release: FreeBSD 9.0-STABLE i386 >Organization: >Environment: >Description: Getopt::Compact::WithCmd is yet another Getopt::* module. This module is respected Getopt::Compact. This module is you can define of git-like option. In addition, usage can be set at the same time. WWW: http://search.cpan.org/dist/Getopt-Compact-WithCmd/ >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Getopt-Compact-WithCmd # p5-Getopt-Compact-WithCmd/Makefile # p5-Getopt-Compact-WithCmd/distinfo # p5-Getopt-Compact-WithCmd/pkg-descr # p5-Getopt-Compact-WithCmd/pkg-plist # echo c - p5-Getopt-Compact-WithCmd mkdir -p p5-Getopt-Compact-WithCmd > /dev/null 2>&1 echo x - p5-Getopt-Compact-WithCmd/Makefile sed 's/^X//' >p5-Getopt-Compact-WithCmd/Makefile << '2e0f9a6ca3343063a28bb643d26d1dda' X# New ports collection makefile for: p5-Getopt-Compact-WithCmd X# Date created: 27 Feb 2012 X# Whom: Kan Sasaki X# X# $FreeBSD$ X# X XPORTNAME= Getopt-Compact-WithCmd XPORTVERSION= 0.19 XCATEGORIES= devel perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- X XMAINTAINER= perl@FreeBSD.org XCOMMENT= Sub-command friendly, like Getopt::Compact X XPERL_CONFIGURE= yes X XMAN3= Getopt::Compact::WithCmd.3 X X.include 2e0f9a6ca3343063a28bb643d26d1dda echo x - p5-Getopt-Compact-WithCmd/distinfo sed 's/^X//' >p5-Getopt-Compact-WithCmd/distinfo << '4c73469e9b9b33193711dc028e1abb41' XSHA256 (Getopt-Compact-WithCmd-0.19.tar.gz) = a419510a488510c8a6c482383f9bee03306b53aa6143682b801ee5eeca5c8031 XSIZE (Getopt-Compact-WithCmd-0.19.tar.gz) = 37296 4c73469e9b9b33193711dc028e1abb41 echo x - p5-Getopt-Compact-WithCmd/pkg-descr sed 's/^X//' >p5-Getopt-Compact-WithCmd/pkg-descr << '4c42207303ce9bf27a67dd957b30b0a9' XGetopt::Compact::WithCmd is yet another Getopt::* module. This module Xis respected Getopt::Compact. This module is you can define of Xgit-like option. In addition, usage can be set at the same time. X XWWW: http://search.cpan.org/dist/Getopt-Compact-WithCmd/ 4c42207303ce9bf27a67dd957b30b0a9 echo x - p5-Getopt-Compact-WithCmd/pkg-plist sed 's/^X//' >p5-Getopt-Compact-WithCmd/pkg-plist << 'a0b6a606015880c0055d37606f203fb8' X%%SITE_PERL%%/Getopt/Compact/WithCmd.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Getopt/Compact/WithCmd/.packlist X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Getopt/Compact/WithCmd X@dirrmtry %%SITE_PERL%%/Getopt/Compact X@dirrmtry %%SITE_PERL%%/Getopt X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Getopt/Compact X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Getopt a0b6a606015880c0055d37606f203fb8 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 07:50:20 2012 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 C92B7106564A; Mon, 27 Feb 2012 07:50:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A08CF8FC16; Mon, 27 Feb 2012 07:50:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1R7oKVe098615; Mon, 27 Feb 2012 07:50:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1R7oKC9098608; Mon, 27 Feb 2012 07:50:20 GMT (envelope-from edwin) Date: Mon, 27 Feb 2012 07:50:20 GMT Message-Id: <201202270750.q1R7oKC9098608@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165498: [NEW PORT] devel/p5-Getopt-Compact-WithCmd: sub-command friendly, like Getopt::Compact 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: Mon, 27 Feb 2012 07:50:20 -0000 Synopsis: [NEW PORT] devel/p5-Getopt-Compact-WithCmd: sub-command friendly, like Getopt::Compact Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 27 07:50:20 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165498 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 08:50:10 2012 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 D4763106564A for ; Mon, 27 Feb 2012 08:50:10 +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 AEA388FC17 for ; Mon, 27 Feb 2012 08:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1R8oAQn059906 for ; Mon, 27 Feb 2012 08:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1R8oAXh059905; Mon, 27 Feb 2012 08:50:10 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 08:50:10 GMT Resent-Message-Id: <201202270850.q1R8oAXh059905@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, Hans Fredrik Nordhaug Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E05D6106564A for ; Mon, 27 Feb 2012 08:42:04 +0000 (UTC) (envelope-from root@nordhaug.priv.no) Received: from nordhaug.priv.no (static243-173-78.mimer.net [83.243.173.78]) by mx1.freebsd.org (Postfix) with ESMTP id 5A4878FC14 for ; Mon, 27 Feb 2012 08:42:03 +0000 (UTC) Received: from nordhaug.priv.no (localhost [127.0.0.1]) by nordhaug.priv.no (Postfix) with ESMTP id 91F218A8BC for ; Mon, 27 Feb 2012 09:42:25 +0100 (CET) Received: from nordhaug.priv.no ([127.0.0.1]) by nordhaug.priv.no (nordhaug.priv.no [127.0.0.1]) (amavisd-new, port 10024) with LMTP id REfN1lWaB16q for ; Mon, 27 Feb 2012 09:42:19 +0100 (CET) Received: by nordhaug.priv.no (Postfix, from userid 0) id C765C8A87E; Mon, 27 Feb 2012 09:42:19 +0100 (CET) Message-Id: <20120227084219.C765C8A87E@nordhaug.priv.no> Date: Mon, 27 Feb 2012 09:42:19 +0100 (CET) From: Hans Fredrik Nordhaug To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165499: [MAINTAINER] www/piwik: update to 1.7.1 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: Mon, 27 Feb 2012 08:50:10 -0000 >Number: 165499 >Category: ports >Synopsis: [MAINTAINER] www/piwik: update to 1.7.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 08:50:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Hans Fredrik Nordhaug >Release: FreeBSD 8.2-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD nordhaug.priv.no 8.2-RELEASE-p3 FreeBSD 8.2-RELEASE-p3 #0: Tue Sep 27 18:07:27 UTC 2011 >Description: - Update to 1.7.1 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- piwik-1.7.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/piwik.orig/Makefile /usr/ports/www/piwik/Makefile --- /usr/ports/www/piwik.orig/Makefile 2012-02-27 09:32:34.000000000 +0100 +++ /usr/ports/www/piwik/Makefile 2012-02-27 09:32:44.000000000 +0100 @@ -6,7 +6,7 @@ # PORTNAME= piwik -PORTVERSION= 1.7 +PORTVERSION= 1.7.1 CATEGORIES= www MASTER_SITES= http://builds.piwik.org/ diff -ruN --exclude=CVS /usr/ports/www/piwik.orig/distinfo /usr/ports/www/piwik/distinfo --- /usr/ports/www/piwik.orig/distinfo 2012-02-27 09:32:34.000000000 +0100 +++ /usr/ports/www/piwik/distinfo 2012-02-27 09:32:59.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (piwik-1.7.tar.gz) = 221e04df4d26bf0881b06242ba179d7ce01b91bbc5f75b2b48d87388e9dfcb93 -SIZE (piwik-1.7.tar.gz) = 4598025 +SHA256 (piwik-1.7.1.tar.gz) = 5c921116b9f1e90105952e6cd9254f37cb42a100675917705e4f611dc0d6d555 +SIZE (piwik-1.7.1.tar.gz) = 4609362 diff -ruN --exclude=CVS /usr/ports/www/piwik.orig/pkg-plist /usr/ports/www/piwik/pkg-plist --- /usr/ports/www/piwik.orig/pkg-plist 2012-02-27 09:32:34.000000000 +0100 +++ /usr/ports/www/piwik/pkg-plist 2012-02-27 09:39:47.000000000 +0100 @@ -1022,6 +1022,8 @@ %%WWWDIR%%/plugins/CoreAdminHome/templates/styles.css %%WWWDIR%%/plugins/CoreHome/Controller.php %%WWWDIR%%/plugins/CoreHome/CoreHome.php +%%WWWDIR%%/plugins/CoreHome/DataTableAction/MultiRowEvolution.php +%%WWWDIR%%/plugins/CoreHome/DataTableAction/RowEvolution.php %%WWWDIR%%/plugins/CoreHome/templates/autocomplete.js %%WWWDIR%%/plugins/CoreHome/templates/broadcast.js %%WWWDIR%%/plugins/CoreHome/templates/calendar.js @@ -1757,6 +1759,7 @@ %%WWWDIR%%/plugins/UserCountry/flags/sn.png %%WWWDIR%%/plugins/UserCountry/flags/so.png %%WWWDIR%%/plugins/UserCountry/flags/sr.png +%%WWWDIR%%/plugins/UserCountry/flags/ss.png %%WWWDIR%%/plugins/UserCountry/flags/st.png %%WWWDIR%%/plugins/UserCountry/flags/su.png %%WWWDIR%%/plugins/UserCountry/flags/sv.png @@ -2027,6 +2030,7 @@ %%WWWDIR%%/themes/default/images/sites_selection.png %%WWWDIR%%/themes/default/images/sort_subtable_asc.png %%WWWDIR%%/themes/default/images/sort_subtable_desc.png +%%WWWDIR%%/themes/default/images/sort_subtable_desc_light.png %%WWWDIR%%/themes/default/images/sortasc.png %%WWWDIR%%/themes/default/images/sortdesc.png %%WWWDIR%%/themes/default/images/success_medium.png @@ -2144,6 +2148,7 @@ @dirrm %%WWWDIR%%/plugins/CoreUpdater @dirrm %%WWWDIR%%/plugins/CorePluginsAdmin/templates @dirrm %%WWWDIR%%/plugins/CorePluginsAdmin +@dirrm %%WWWDIR%%/plugins/CoreHome/DataTableAction @dirrm %%WWWDIR%%/plugins/CoreHome/templates/images @dirrm %%WWWDIR%%/plugins/CoreHome/templates @dirrm %%WWWDIR%%/plugins/CoreHome --- piwik-1.7.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 09:50:09 2012 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 B35F51065674 for ; Mon, 27 Feb 2012 09:50:09 +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 77BB98FC14 for ; Mon, 27 Feb 2012 09:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1R9o9nL015150 for ; Mon, 27 Feb 2012 09:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1R9o9Fg015149; Mon, 27 Feb 2012 09:50:09 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 09:50:09 GMT Resent-Message-Id: <201202270950.q1R9o9Fg015149@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, Matthieu BOUTHORS Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31BDC1065686 for ; Mon, 27 Feb 2012 09:42:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 08B528FC18 for ; Mon, 27 Feb 2012 09:42:39 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1R9gcoD070061 for ; Mon, 27 Feb 2012 09:42:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1R9gcYW070050; Mon, 27 Feb 2012 09:42:38 GMT (envelope-from nobody) Message-Id: <201202270942.q1R9gcYW070050@red.freebsd.org> Date: Mon, 27 Feb 2012 09:42:38 GMT From: Matthieu BOUTHORS To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165500: Weechat port broken on 9.0-RELEASE 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: Mon, 27 Feb 2012 09:50:09 -0000 >Number: 165500 >Category: ports >Synopsis: Weechat port broken on 9.0-RELEASE >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 09:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthieu BOUTHORS >Release: 9.0-RELEASE >Organization: labs.fr >Environment: FreeBSD majinbox.labs.fr 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The port irc/weechat is broken at least on FreeBSD 9.0 : it seems that nurses from base system is no longer usable by weechat. >How-To-Repeat: cd /usr/ports/irc/weechat make clean make >Fix: Remove the following line from Makefile : WITH_NCURSES_BASE= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 11:12:34 2012 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 AB4501065700; Mon, 27 Feb 2012 11:12:34 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 81D678FC16; Mon, 27 Feb 2012 11:12:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RBCYdv098173; Mon, 27 Feb 2012 11:12:34 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RBCXXY098139; Mon, 27 Feb 2012 11:12:33 GMT (envelope-from scheidell) Date: Mon, 27 Feb 2012 11:12:33 GMT Message-Id: <201202271112.q1RBCXXY098139@freefall.freebsd.org> To: ler@lerctr.org, dam@my.gd, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165482: sysutils/lsof: lsof-4.86A, 6 refuses to build on 8.3 prerelease/beta 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: Mon, 27 Feb 2012 11:12:34 -0000 Synopsis: sysutils/lsof: lsof-4.86A,6 refuses to build on 8.3 prerelease/beta State-Changed-From-To: feedback->closed State-Changed-By: scheidell State-Changed-When: Mon Feb 27 11:12:32 UTC 2012 State-Changed-Why: superseded by 165497 http://www.freebsd.org/cgi/query-pr.cgi?pr=165482 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 11:12:50 2012 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 B829910656E0; Mon, 27 Feb 2012 11:12:50 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8FDC38FC16; Mon, 27 Feb 2012 11:12:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RBCo8v098775; Mon, 27 Feb 2012 11:12:50 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RBCo1F098768; Mon, 27 Feb 2012 11:12:50 GMT (envelope-from scheidell) Date: Mon, 27 Feb 2012 11:12:50 GMT Message-Id: <201202271112.q1RBCo1F098768@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165497: [MAINTAINER] sysutils/lsof: update to 4.86B 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: Mon, 27 Feb 2012 11:12:50 -0000 Synopsis: [MAINTAINER] sysutils/lsof: update to 4.86B Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Mon Feb 27 11:12:49 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165497 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 11:20:04 2012 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 D42D31065672 for ; Mon, 27 Feb 2012 11:20:04 +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 B045F8FC1B for ; Mon, 27 Feb 2012 11:20:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RBK4l7002770 for ; Mon, 27 Feb 2012 11:20:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RBK41O002769; Mon, 27 Feb 2012 11:20:04 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 11:20:04 GMT Resent-Message-Id: <201202271120.q1RBK41O002769@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, Olivier Cochard-Labbe Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C73AE106566B for ; Mon, 27 Feb 2012 11:17:28 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B678C8FC16 for ; Mon, 27 Feb 2012 11:17:28 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1RBHSHj057152 for ; Mon, 27 Feb 2012 11:17:28 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1RBHSN2057151; Mon, 27 Feb 2012 11:17:28 GMT (envelope-from nobody) Message-Id: <201202271117.q1RBHSN2057151@red.freebsd.org> Date: Mon, 27 Feb 2012 11:17:28 GMT From: Olivier Cochard-Labbe To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165502: bsd.port.mk : Proposal patch for fixing TARGET_ARCH uses with somes ports 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: Mon, 27 Feb 2012 11:20:04 -0000 >Number: 165502 >Category: ports >Synopsis: bsd.port.mk : Proposal patch for fixing TARGET_ARCH uses with somes ports >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 11:20:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Olivier Cochard-Labbe >Release: 9.0 >Organization: BSD Router Project >Environment: FreeBSD bigdev.bsdrp.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Sat Jan 7 19:32:30 CET 2012 root@bigdev.bsdrp.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Hi, I found multiple same problem in different ports: PR/165480, PR/147853, PR/151224. For theses ports, setting TARGET_ARCH for build the port generate an error, here is one example: cc -O2 -pipe -fno-strict-aliasing -D_FILE_OFFSET_BITS=64 -I/usr/local/include/fuse -DFUSE_USE_VERSION=26 -std=gnu99 -g3 -Wall -Wextra -I/usr/local/include -L/usr/local/lib amd64 -c -o extents.o extents.c cc: amd64: No such file or directory The patch was the same for all ports by adding this line on the Makefile: MAKE_ENV+= TARGET_ARCH= Why not patching bsd.port.mk for fixing the problem for all ports ? I didn't know how many ports are affected by this problem. >How-To-Repeat: >Fix: Applying the patch attached to Mk/bsd.port.mk. Patch attached with submission follows: --- Mk/bsd.port.mk.orig 2012-02-27 11:46:48.000000000 +0100 +++ Mk/bsd.port.mk 2012-02-27 11:47:38.000000000 +0100 @@ -2205,6 +2205,7 @@ LDFLAGS="${LDFLAGS}" \ CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" \ MANPREFIX="${MANPREFIX}" +MAKE_ENV+= TARGET_ARCH= # Add -fno-strict-aliasing to CFLAGS with optimization level -O2 or higher. # gcc 4.x enable strict aliasing optimization with -O2 which is known to break >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 11:20:17 2012 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 A9CCD106566C; Mon, 27 Feb 2012 11:20:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 810048FC0C; Mon, 27 Feb 2012 11:20:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RBKHjE003020; Mon, 27 Feb 2012 11:20:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RBKHut003004; Mon, 27 Feb 2012 11:20:17 GMT (envelope-from edwin) Date: Mon, 27 Feb 2012 11:20:17 GMT Message-Id: <201202271120.q1RBKHut003004@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165502: bsd.port.mk : Proposal patch for fixing TARGET_ARCH uses with somes ports 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: Mon, 27 Feb 2012 11:20:17 -0000 Synopsis: bsd.port.mk : Proposal patch for fixing TARGET_ARCH uses with somes ports Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 27 11:20:16 UTC 2012 Responsible-Changed-Why: bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165502 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 11:40:08 2012 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 6CA641065670 for ; Mon, 27 Feb 2012 11:40:08 +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 5BC558FC17 for ; Mon, 27 Feb 2012 11:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RBe8wq025698 for ; Mon, 27 Feb 2012 11:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RBe87X025697; Mon, 27 Feb 2012 11:40:08 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 11:40:08 GMT Message-Id: <201202271140.q1RBe87X025697@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/164306: update mail/mailagent to 3.1.77 and utmpx fix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 11:40:08 -0000 The following reply was made to PR ports/164306; it has been noted by GNATS. From: Michael Scheidell To: , Cc: Subject: Re: ports/164306: update mail/mailagent to 3.1.77 and utmpx fix Date: Mon, 27 Feb 2012 06:36:01 -0500 Thank you for your efforts in keeping FreeBSD and ports tree updated. It is greatly appreciated. have you looked at ports/165380 ? This looks like the cleanest way to support utmpx on 9.x http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165380 Can you give that a try, and submit a new patch if that works? -- Michael Scheidell, CTO >*| * SECNAP Network Security Corporation d: +1.561.948.2259 w: http://people.freebsd.org/~scheidell From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 11:50:05 2012 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 415FA106564A for ; Mon, 27 Feb 2012 11:50:05 +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 148448FC0C for ; Mon, 27 Feb 2012 11:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RBo42m034506 for ; Mon, 27 Feb 2012 11:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RBo4Qj034504; Mon, 27 Feb 2012 11:50:04 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 11:50:04 GMT Message-Id: <201202271150.q1RBo4Qj034504@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/165409: [UPDATE] www/MT: update to 5.13 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 11:50:05 -0000 The following reply was made to PR ports/165409; it has been noted by GNATS. From: Michael Scheidell To: , Cc: Subject: Re: ports/165409: [UPDATE] www/MT: update to 5.13 Date: Mon, 27 Feb 2012 06:49:21 -0500 --------------040904040803070206060303 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Patch got corrupted during upload. Can you try to resend your patch to GNATS?, the patch as it shows up now is not usable. -- Michael Scheidell, CTO >*| * SECNAP Network Security Corporation d: +1.561.948.2259 w: http://people.freebsd.org/~scheidell --------------040904040803070206060303 Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Patch got corrupted during upload.
Can you try to resend your patch to GNATS?, the patch as it shows up now is not usable.
--
Michael Scheidell, CTO
> | SECNAP Network Security Corporation
d: +1.561.948.2259
w: http://people.freebsd.org/~scheidell
--------------040904040803070206060303-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 12:00:26 2012 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 7EBA8106566C for ; Mon, 27 Feb 2012 12:00:26 +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 54C7A8FC14 for ; Mon, 27 Feb 2012 12:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RC0PfB042755 for ; Mon, 27 Feb 2012 12:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RC0PUN042752; Mon, 27 Feb 2012 12:00:25 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 12:00:25 GMT Message-Id: <201202271200.q1RC0PUN042752@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jase Thew Cc: Subject: Re: ports/165500: Weechat port broken on 9.0-RELEASE X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jase Thew List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 12:00:26 -0000 The following reply was made to PR ports/165500; it has been noted by GNATS. From: Jase Thew To: bug-followup@FreeBSD.org, matthieu@labs.fr Cc: Subject: Re: ports/165500: Weechat port broken on 9.0-RELEASE Date: Mon, 27 Feb 2012 11:39:17 +0000 Hi, Can you please elaborate on what you mean by broken? Does it fail to compile, or does it fail to run correctly? Exactly what behaviour are you seeing? Regards, Jase Thew. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 12:16:04 2012 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 522F3106566C; Mon, 27 Feb 2012 12:16:04 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2A5D38FC12; Mon, 27 Feb 2012 12:16:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RCG4Ux061063; Mon, 27 Feb 2012 12:16:04 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RCG4l6061059; Mon, 27 Feb 2012 12:16:04 GMT (envelope-from culot) Date: Mon, 27 Feb 2012 12:16:04 GMT Message-Id: <201202271216.q1RCG4l6061059@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/165499: [MAINTAINER] www/piwik: update to 1.7.1 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: Mon, 27 Feb 2012 12:16:04 -0000 Synopsis: [MAINTAINER] www/piwik: update to 1.7.1 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Mon Feb 27 12:16:03 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165499 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 12:20:08 2012 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 08367106564A for ; Mon, 27 Feb 2012 12:20:08 +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 D95A48FC15 for ; Mon, 27 Feb 2012 12:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RCK7FY061645 for ; Mon, 27 Feb 2012 12:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RCK74p061644; Mon, 27 Feb 2012 12:20:07 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 12:20:07 GMT Resent-Message-Id: <201202271220.q1RCK74p061644@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, Kuan-Chung Chiu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 353411065670 for ; Mon, 27 Feb 2012 12:14:58 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 0B7EF8FC12 for ; Mon, 27 Feb 2012 12:14:58 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1RCEvw6065177 for ; Mon, 27 Feb 2012 12:14:57 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1RCEvBp065176; Mon, 27 Feb 2012 12:14:57 GMT (envelope-from nobody) Message-Id: <201202271214.q1RCEvBp065176@red.freebsd.org> Date: Mon, 27 Feb 2012 12:14:57 GMT From: Kuan-Chung Chiu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165503: [patch] fix crash for editors/madedit 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: Mon, 27 Feb 2012 12:20:08 -0000 >Number: 165503 >Category: ports >Synopsis: [patch] fix crash for editors/madedit >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 12:20:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kuan-Chung Chiu >Release: 10-CURRENT >Organization: N/A >Environment: FreeBSD Bohemia.twbbs.org 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r231997: Thu Feb 23 01:35:20 CST 2012 root@Bohemia.twbbs.org:/usr/obj/usr/src/sys/BOHEMIA amd64 >Description: madedit crash when opening multiple files in an instance. >How-To-Repeat: >Fix: apply https://github.com/dol/madedit/commit/80b09fb0b0b457cd2a94c46c1185db22f6d302be Patch attached with submission follows: diff -ruN madedit.orig/Makefile madedit/Makefile --- madedit.orig/Makefile 2012-02-27 20:08:23.000000000 +0800 +++ madedit/Makefile 2012-02-27 20:08:32.000000000 +0800 @@ -7,7 +7,7 @@ PORTNAME= madedit PORTVERSION= 0.2.9 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= editors MASTER_SITES= SF/${PORTNAME}/MadEdit/MadEdit-${PORTVERSION} diff -ruN madedit.orig/files/patch-src-MadEdit-MadEdit.cpp madedit/files/patch-src-MadEdit-MadEdit.cpp --- madedit.orig/files/patch-src-MadEdit-MadEdit.cpp 1970-01-01 08:00:00.000000000 +0800 +++ madedit/files/patch-src-MadEdit-MadEdit.cpp 2012-02-27 20:08:06.000000000 +0800 @@ -0,0 +1,24 @@ +--- src/MadEdit/MadEdit.cpp.orig 2012-02-27 20:06:18.000000000 +0800 ++++ src/MadEdit/MadEdit.cpp 2012-02-27 20:07:26.000000000 +0800 +@@ -9739,7 +9739,9 @@ + { + if(m_EditMode!=emHexMode) + { +- memdc.SelectObject(*m_ClientBitmap); ++ if(m_ClientBitmap!=NULL) { ++ memdc.SelectObject(*m_ClientBitmap); ++ } + memdc.SetFont(*m_TextFont); + + // calculate rows to paint +@@ -9917,7 +9919,9 @@ + + if(bPaintMark==false) + { +- markdc.SelectObject(*m_MarkBitmap); ++ if(m_MarkBitmap!=NULL) { ++ markdc.SelectObject(*m_MarkBitmap); ++ } + markdc.Blit(0,0,m_ClientWidth,m_ClientHeight, &memdc, 0, 0); + bPaintMark=true; + } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 12:20:18 2012 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 D5E36106564A; Mon, 27 Feb 2012 12:20:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ADEDA8FC08; Mon, 27 Feb 2012 12:20:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RCKIf2061910; Mon, 27 Feb 2012 12:20:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RCKIYQ061906; Mon, 27 Feb 2012 12:20:18 GMT (envelope-from edwin) Date: Mon, 27 Feb 2012 12:20:18 GMT Message-Id: <201202271220.q1RCKIYQ061906@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, delphij@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165503: [patch] fix crash for editors/madedit 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: Mon, 27 Feb 2012 12:20:18 -0000 Synopsis: [patch] fix crash for editors/madedit Responsible-Changed-From-To: freebsd-ports-bugs->delphij Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 27 12:20:18 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165503 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 13:29:06 2012 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 A6D9E106564A; Mon, 27 Feb 2012 13:29:06 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7E4A38FC0A; Mon, 27 Feb 2012 13:29:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RDT61i026709; Mon, 27 Feb 2012 13:29:06 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RDT6bZ026705; Mon, 27 Feb 2012 13:29:06 GMT (envelope-from arved) Date: Mon, 27 Feb 2012 13:29:06 GMT Message-Id: <201202271329.q1RDT6bZ026705@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/165462: graphics/kphotoalbum should depend on marblewidget.12 instead of .11 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: Mon, 27 Feb 2012 13:29:06 -0000 Synopsis: graphics/kphotoalbum should depend on marblewidget.12 instead of .11 Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 27 13:28:28 UTC 2012 Responsible-Changed-Why: Over to maintainergroup. This PR is actually about kphotoalbum-kde4. Patch looks correct http://www.freebsd.org/cgi/query-pr.cgi?pr=165462 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 13:30:09 2012 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 A0403106566B for ; Mon, 27 Feb 2012 13:30:09 +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 77FD38FC0A for ; Mon, 27 Feb 2012 13:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RDU9vr026770 for ; Mon, 27 Feb 2012 13:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RDU9i1026769; Mon, 27 Feb 2012 13:30:09 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 13:30:09 GMT Resent-Message-Id: <201202271330.q1RDU9i1026769@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, Eric F Crist Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA8DB1065674 for ; Mon, 27 Feb 2012 13:28:59 +0000 (UTC) (envelope-from ecrist@secure-computing.net) Received: from kenny.secure-computing.net (kenny.secure-computing.net [173.8.118.210]) by mx1.freebsd.org (Postfix) with ESMTP id A684E8FC14 for ; Mon, 27 Feb 2012 13:28:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by kenny.secure-computing.net (Postfix) with SMTP id 09E9C261C3B for ; Mon, 27 Feb 2012 03:22:44 -0600 (CST) Received: from cartman.secure-computing.net (cartman.secure-computing.net [173.8.118.211]) by kenny.secure-computing.net (Postfix) with ESMTP id 61120261C21; Mon, 27 Feb 2012 03:22:12 -0600 (CST) Received: by cartman.secure-computing.net (Postfix, from userid 1001) id 9AEA53D763F; Mon, 27 Feb 2012 07:26:49 -0600 (CST) Message-Id: <20120227132649.9AEA53D763F@cartman.secure-computing.net> Date: Mon, 27 Feb 2012 07:26:49 -0600 (CST) From: Eric F Crist To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Josh Paetzel Subject: ports/165504: security/openvpn-devel: update to snapshot 2012-08 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eric F Crist List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 13:30:09 -0000 >Number: 165504 >Category: ports >Synopsis: security/openvpn-devel: update to snapshot 2012-08 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 13:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eric F Crist >Release: FreeBSD 9.0-CURRENT amd64 >Organization: Secure Computing Networks & ClaimLynx, Inc >Environment: FreeBSD cartman.secure-computing.net 9.0-CURRENT FreeBSD 9.0-CURRENT #5: Fri Jan 21 12:06:32 CST 2011 root@cartman.secure-computing.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This updates the security/openvpn-devel port to the latest snapshot. >How-To-Repeat: >Fix: --- ovpnd.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/openvpn-devel/Makefile,v retrieving revision 1.75 diff -u -r1.75 Makefile --- Makefile 23 Jan 2012 20:47:46 -0000 1.75 +++ Makefile 27 Feb 2012 13:24:12 -0000 @@ -6,7 +6,7 @@ # PORTNAME= openvpn -DISTVERSION= 201204 +DISTVERSION= 201208 CATEGORIES= security net MASTER_SITES= ftp://ftp.secure-computing.net/pub/FreeBSD/ports/openvpn-devel/ \ ftp://ftp2.secure-computing.net/pub/FreeBSD/ports/openvpn-devel/ Index: distinfo =================================================================== RCS file: /home/ncvs/ports/security/openvpn-devel/distinfo,v retrieving revision 1.54 diff -u -r1.54 distinfo --- distinfo 23 Jan 2012 20:47:46 -0000 1.54 +++ distinfo 27 Feb 2012 13:24:12 -0000 @@ -1,2 +1,2 @@ -SHA256 (openvpn-201204.tar.gz) = a425f3662b68fe8e025809f9131bf174663b31264690a083891bf31ae2119331 -SIZE (openvpn-201204.tar.gz) = 1084384 +SHA256 (openvpn-201208.tar.gz) = b49e92d1b060a1e9fc740cfc34445057d9c4d841ccee80c627eeb9468d4cdd1a +SIZE (openvpn-201208.tar.gz) = 1105648 --- ovpnd.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 13:39:15 2012 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 483811065678; Mon, 27 Feb 2012 13:39:15 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1FAA28FC16; Mon, 27 Feb 2012 13:39:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RDdF3B037829; Mon, 27 Feb 2012 13:39:15 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RDdEHM037825; Mon, 27 Feb 2012 13:39:14 GMT (envelope-from arved) Date: Mon, 27 Feb 2012 13:39:14 GMT Message-Id: <201202271339.q1RDdEHM037825@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/165227: [UPDATE] libgsf-1.14.22, goffice-0.9.1, gnumeric-1.11.1... 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: Mon, 27 Feb 2012 13:39:15 -0000 Synopsis: [UPDATE] libgsf-1.14.22, goffice-0.9.1, gnumeric-1.11.1... Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 27 13:38:51 UTC 2012 Responsible-Changed-Why: Most of the affected ports are maintained by gnome http://www.freebsd.org/cgi/query-pr.cgi?pr=165227 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 13:43:03 2012 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 7693B106568A; Mon, 27 Feb 2012 13:43:03 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4E7B88FC21; Mon, 27 Feb 2012 13:43:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RDh3YE045911; Mon, 27 Feb 2012 13:43:03 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RDh36R045907; Mon, 27 Feb 2012 13:43:03 GMT (envelope-from arved) Date: Mon, 27 Feb 2012 13:43:03 GMT Message-Id: <201202271343.q1RDh36R045907@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dougb@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/165304: x11-fm//FSViewer doesn't compile 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: Mon, 27 Feb 2012 13:43:03 -0000 Synopsis: x11-fm//FSViewer doesn't compile Responsible-Changed-From-To: freebsd-ports-bugs->dougb Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 27 13:41:39 UTC 2012 Responsible-Changed-Why: It seems the root of the problem is, that the pkg-config for the windowmaker libraries should include -libintl. Over to windowmaker maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=165304 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 13:55:25 2012 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 9F6721065673; Mon, 27 Feb 2012 13:55:25 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 77A7A8FC22; Mon, 27 Feb 2012 13:55:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RDtPtw054967; Mon, 27 Feb 2012 13:55:25 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RDtPbX054963; Mon, 27 Feb 2012 13:55:25 GMT (envelope-from miwi) Date: Mon, 27 Feb 2012 13:55:25 GMT Message-Id: <201202271355.q1RDtPbX054963@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/165500: Weechat port broken on 9.0-RELEASE 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: Mon, 27 Feb 2012 13:55:25 -0000 Synopsis: Weechat port broken on 9.0-RELEASE Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon Feb 27 13:55:25 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165500 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 13:55:31 2012 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 CE55C106568A; Mon, 27 Feb 2012 13:55:31 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A54148FC12; Mon, 27 Feb 2012 13:55:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RDtVwa054989; Mon, 27 Feb 2012 13:55:31 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RDtVSq054985; Mon, 27 Feb 2012 13:55:31 GMT (envelope-from arved) Date: Mon, 27 Feb 2012 13:55:31 GMT Message-Id: <201202271355.q1RDtVSq054985@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/165003: [patch] audio/icecast 2.3.2 may leak memory and take extra CPU time 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: Mon, 27 Feb 2012 13:55:31 -0000 Synopsis: [patch] audio/icecast 2.3.2 may leak memory and take extra CPU time Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 27 13:55:08 UTC 2012 Responsible-Changed-Why: This is actually about icecast2, over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=165003 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 13:56:17 2012 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 69D1D106566B; Mon, 27 Feb 2012 13:56:17 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 41B1F8FC1A; Mon, 27 Feb 2012 13:56:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RDuHrO055097; Mon, 27 Feb 2012 13:56:17 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RDuHL2055093; Mon, 27 Feb 2012 13:56:17 GMT (envelope-from miwi) Date: Mon, 27 Feb 2012 13:56:17 GMT Message-Id: <201202271356.q1RDuHL2055093@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/165474: [MAINTAINER] databases/pecl-mysqlnd_qc: [SUMMARIZE CHANGES] 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: Mon, 27 Feb 2012 13:56:17 -0000 Synopsis: [MAINTAINER] databases/pecl-mysqlnd_qc: [SUMMARIZE CHANGES] Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon Feb 27 13:56:16 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165474 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 14:14:38 2012 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 B1FAA1065705; Mon, 27 Feb 2012 14:14:38 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 893DC8FC15; Mon, 27 Feb 2012 14:14:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1REEcSX073745; Mon, 27 Feb 2012 14:14:38 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1REEbkI073740; Mon, 27 Feb 2012 14:14:37 GMT (envelope-from arved) Date: Mon, 27 Feb 2012 14:14:37 GMT Message-Id: <201202271414.q1REEbkI073740@freefall.freebsd.org> To: syncer@gmail.com, loox@e-shell.net, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/165008: net-im/kmess-kde4 fails to connect 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: Mon, 27 Feb 2012 14:14:38 -0000 Synopsis: net-im/kmess-kde4 fails to connect State-Changed-From-To: feedback->closed State-Changed-By: arved State-Changed-When: Mon Feb 27 14:14:33 UTC 2012 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=165008 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 14:20:08 2012 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 8421B1065672 for ; Mon, 27 Feb 2012 14:20:08 +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 5830F8FC08 for ; Mon, 27 Feb 2012 14:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1REK8j1074527 for ; Mon, 27 Feb 2012 14:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1REK8pK074526; Mon, 27 Feb 2012 14:20:08 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 14:20:08 GMT Message-Id: <201202271420.q1REK8pK074526@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: =?ISO-8859-1?Q?Peter_Ankerst=E5l?= Cc: Subject: Re: ports/164055: sysutils/zfs-periodic: Test if scrubbing is in process fails when using volume describtors instead of pools X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?ISO-8859-1?Q?Peter_Ankerst=E5l?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 14:20:08 -0000 The following reply was made to PR ports/164055; it has been noted by GNATS. From: =?ISO-8859-1?Q?Peter_Ankerst=E5l?= To: bug-followup@FreeBSD.org, marc.werner@seemoo.tu-darmstadt.de Cc: Subject: Re: ports/164055: sysutils/zfs-periodic: Test if scrubbing is in process fails when using volume describtors instead of pools Date: Mon, 27 Feb 2012 14:55:53 +0100 Since scrubs no longer are aborted when making a snapshot I think someone should remove the part that checks for scrubbing. From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 14:20:10 2012 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 77947106564A for ; Mon, 27 Feb 2012 14:20:10 +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 672948FC0C for ; Mon, 27 Feb 2012 14:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1REKAOg074545 for ; Mon, 27 Feb 2012 14:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1REKAMR074544; Mon, 27 Feb 2012 14:20:10 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 14:20:10 GMT Message-Id: <201202271420.q1REKAMR074544@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/165008: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 14:20:10 -0000 The following reply was made to PR ports/165008; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/165008: commit references a PR Date: Mon, 27 Feb 2012 14:14:29 +0000 (UTC) arved 2012-02-27 14:14:20 UTC FreeBSD ports repository Modified files: net-im/kmess-kde4 Makefile Added files: net-im/kmess-kde4/files patch-soap Log: Remove conflicting dependency on libungif, giflib is already pulled in as a dependency Fix receiving of the Contact list by following Location redirects PR: 165008 Submitted by: Axel Gonzales Approved by: maintainer Revision Changes Path 1.47 +2 -3 ports/net-im/kmess-kde4/Makefile 1.1 +33 -0 ports/net-im/kmess-kde4/files/patch-soap (new) _______________________________________________ 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" From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 15:00:28 2012 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 18464106566C for ; Mon, 27 Feb 2012 15:00:28 +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 E12C48FC08 for ; Mon, 27 Feb 2012 15:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RF0RWk010984 for ; Mon, 27 Feb 2012 15:00:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RF0Rqd010982; Mon, 27 Feb 2012 15:00:27 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 15:00:27 GMT Message-Id: <201202271500.q1RF0Rqd010982@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: =?UTF-8?B?VGlsbWFuIEtlc2tpbsO2eg==?= Cc: Subject: Re: ports/165139: [PATCH] astro/gpstk: update to 1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?UTF-8?B?VGlsbWFuIEtlc2tpbsO2eg==?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 15:00:28 -0000 The following reply was made to PR ports/165139; it has been noted by GNATS. From: =?UTF-8?B?VGlsbWFuIEtlc2tpbsO2eg==?= To: bug-followup@FreeBSD.org, jhein@symmetricom.com Cc: Subject: Re: ports/165139: [PATCH] astro/gpstk: update to 1.7 Date: Mon, 27 Feb 2012 15:54:17 +0100 I managed to extract the patch, but it does not apply, even after i removed the windows line endings. Can you resend it? From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 15:06:41 2012 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 DC0C01065704; Mon, 27 Feb 2012 15:06:41 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7BB2D8FC17; Mon, 27 Feb 2012 15:06:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RF6fsS019664; Mon, 27 Feb 2012 15:06:41 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RF6fVK019660; Mon, 27 Feb 2012 15:06:41 GMT (envelope-from arved) Date: Mon, 27 Feb 2012 15:06:41 GMT Message-Id: <201202271506.q1RF6fVK019660@freefall.freebsd.org> To: glocke@bsdstammtisch.at, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/164979: [maintainer update] net-p2p/retroshare: update to 0.5.3a 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: Mon, 27 Feb 2012 15:06:41 -0000 Synopsis: [maintainer update] net-p2p/retroshare: update to 0.5.3a State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Mon Feb 27 15:06:34 UTC 2012 State-Changed-Why: Committed, danke! http://www.freebsd.org/cgi/query-pr.cgi?pr=164979 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 15:10:06 2012 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 B6E60106564A for ; Mon, 27 Feb 2012 15:10:06 +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 9B7B78FC13 for ; Mon, 27 Feb 2012 15:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RFA6KM019804 for ; Mon, 27 Feb 2012 15:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RFA6ap019803; Mon, 27 Feb 2012 15:10:06 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 15:10:06 GMT Message-Id: <201202271510.q1RFA6ap019803@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/164979: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 15:10:06 -0000 The following reply was made to PR ports/164979; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/164979: commit references a PR Date: Mon, 27 Feb 2012 15:06:39 +0000 (UTC) arved 2012-02-27 15:06:26 UTC FreeBSD ports repository Modified files: net-p2p/retroshare Makefile distinfo pkg-plist Removed files: net-p2p/retroshare/files patch-libbitdht-src-util-bdrandom.cc patch-libretroshare-src-dbase-findex.h patch-libretroshare-src-ft-ftfilecreator.h patch-libretroshare-src-ft-ftfileprovider.h patch-libretroshare-src-libretroshare.pro patch-libretroshare-src-rsserver-rsinit.cc patch-libretroshare-src-rsserver-rsloginhandler.cc patch-libretroshare-src-upnp-upnphandler.cc patch-libretroshare-src-upnp-upnphandler.h patch-libretroshare-src-util-rsdir.h patch-libretroshare-src-util-rsdiscspace.cc patch-libretroshare-src-util-rsrandom.cc patch-retroshare-gui-src-RetroShare.pro rsinit.h Log: Update to 0.5.3a PR: 164979 Submitted by: maintainer Revision Changes Path 1.2 +33 -15 ports/net-p2p/retroshare/Makefile 1.2 +2 -2 ports/net-p2p/retroshare/distinfo 1.2 +0 -11 ports/net-p2p/retroshare/files/patch-libbitdht-src-util-bdrandom.cc (dead) 1.2 +0 -17 ports/net-p2p/retroshare/files/patch-libretroshare-src-dbase-findex.h (dead) 1.2 +0 -10 ports/net-p2p/retroshare/files/patch-libretroshare-src-ft-ftfilecreator.h (dead) 1.2 +0 -10 ports/net-p2p/retroshare/files/patch-libretroshare-src-ft-ftfileprovider.h (dead) 1.2 +0 -10 ports/net-p2p/retroshare/files/patch-libretroshare-src-libretroshare.pro (dead) 1.2 +0 -88 ports/net-p2p/retroshare/files/patch-libretroshare-src-rsserver-rsinit.cc (dead) 1.2 +0 -28 ports/net-p2p/retroshare/files/patch-libretroshare-src-rsserver-rsloginhandler.cc (dead) 1.2 +0 -10 ports/net-p2p/retroshare/files/patch-libretroshare-src-upnp-upnphandler.cc (dead) 1.2 +0 -14 ports/net-p2p/retroshare/files/patch-libretroshare-src-upnp-upnphandler.h (dead) 1.2 +0 -20 ports/net-p2p/retroshare/files/patch-libretroshare-src-util-rsdir.h (dead) 1.2 +0 -10 ports/net-p2p/retroshare/files/patch-libretroshare-src-util-rsdiscspace.cc (dead) 1.2 +0 -11 ports/net-p2p/retroshare/files/patch-libretroshare-src-util-rsrandom.cc (dead) 1.2 +0 -17 ports/net-p2p/retroshare/files/patch-retroshare-gui-src-RetroShare.pro (dead) 1.2 +0 -78 ports/net-p2p/retroshare/files/rsinit.h (dead) 1.2 +1 -0 ports/net-p2p/retroshare/pkg-plist _______________________________________________ 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" From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 15:16:28 2012 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 86DBF1065674; Mon, 27 Feb 2012 15:16:28 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5DE108FC14; Mon, 27 Feb 2012 15:16:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RFGSYs029301; Mon, 27 Feb 2012 15:16:28 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RFGSZg029297; Mon, 27 Feb 2012 15:16:28 GMT (envelope-from arved) Date: Mon, 27 Feb 2012 15:16:28 GMT Message-Id: <201202271516.q1RFGSZg029297@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/163467: Ports using python 2.7 and "waf" intermittently hang on build/installation 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: Mon, 27 Feb 2012 15:16:28 -0000 Synopsis: Ports using python 2.7 and "waf" intermittently hang on build/installation Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: arved Responsible-Changed-When: Mon Feb 27 15:15:45 UTC 2012 Responsible-Changed-Why: Assign to python maintainers like the reerenced PR http://www.freebsd.org/cgi/query-pr.cgi?pr=163467 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 15:25:21 2012 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 73C25106564A; Mon, 27 Feb 2012 15:25:21 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4AF158FC12; Mon, 27 Feb 2012 15:25:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RFPLNX037950; Mon, 27 Feb 2012 15:25:21 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RFPKrn037946; Mon, 27 Feb 2012 15:25:20 GMT (envelope-from arved) Date: Mon, 27 Feb 2012 15:25:20 GMT Message-Id: <201202271525.q1RFPKrn037946@freefall.freebsd.org> To: yasu@utahime.org, turutani@scphys.kyoto-u.ac.jp, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/164653: installation trouble of japanese/ebnetd 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: Mon, 27 Feb 2012 15:25:21 -0000 Synopsis: installation trouble of japanese/ebnetd State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Mon Feb 27 15:25:15 UTC 2012 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=164653 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 15:30:12 2012 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 7DE42106566B for ; Mon, 27 Feb 2012 15:30:12 +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 6D2538FC0A for ; Mon, 27 Feb 2012 15:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RFUCt1038221 for ; Mon, 27 Feb 2012 15:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RFUCGh038218; Mon, 27 Feb 2012 15:30:12 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 15:30:12 GMT Message-Id: <201202271530.q1RFUCGh038218@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/164653: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 15:30:12 -0000 The following reply was made to PR ports/164653; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/164653: commit references a PR Date: Mon, 27 Feb 2012 15:22:27 +0000 (UTC) arved 2012-02-27 15:22:14 UTC FreeBSD ports repository Added files: japanese/ebnetd/files patch-configure Log: Fix a build problem on machines with gsed and ja_JP.eucJP locale PR: 164653 Submitted by: Tsurutani Naoki Approved by: maintainer Revision Changes Path 1.1 +20 -0 ports/japanese/ebnetd/files/patch-configure (new) _______________________________________________ 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" From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 15:50:10 2012 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 262921065672 for ; Mon, 27 Feb 2012 15:50:10 +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 154688FC08 for ; Mon, 27 Feb 2012 15:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RFo9Px057972 for ; Mon, 27 Feb 2012 15:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RFo9wh057971; Mon, 27 Feb 2012 15:50:09 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 15:50:09 GMT Message-Id: <201202271550.q1RFo9wh057971@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Jan Henrik Sylvester Cc: Subject: Re: ports/164029: [PATCH] graphics/bmeps fix build with databases/gdbm X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jan Henrik Sylvester List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 15:50:10 -0000 The following reply was made to PR ports/164029; it has been noted by GNATS. From: Jan Henrik Sylvester To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/164029: [PATCH] graphics/bmeps fix build with databases/gdbm Date: Mon, 27 Feb 2012 16:34:27 +0100 I just wondered why this bug is still in the feedback state. I thought it was awaiting maintainer feedback, which it got 1.5 month ago. Or is it waiting for another submitter feedback as the maintainer suggested a larger patch? For the record: The port still fails for me without any patch. Rob Farmer's patch works for me. (In my setting, it produces exactly the same package as with my patch.) Rob Farmer's patch should be committed and as he is the maintainer, no more feedback should be needed for that. Thanks, Jan Henrik From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 16:30:10 2012 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 C96AA106564A for ; Mon, 27 Feb 2012 16:30:10 +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 B7EDC8FC16 for ; Mon, 27 Feb 2012 16:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RGUAA3093354 for ; Mon, 27 Feb 2012 16:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RGUAwe093349; Mon, 27 Feb 2012 16:30:10 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 16:30:10 GMT Message-Id: <201202271630.q1RGUAwe093349@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: John Hein Cc: Subject: Re: ports/165139: [PATCH] astro/gpstk: update to 1.7 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Hein List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 16:30:10 -0000 The following reply was made to PR ports/165139; it has been noted by GNATS. From: John Hein To: Tilman =?iso-8859-1?Q?Keskin=F6z?= Cc: Subject: Re: ports/165139: [PATCH] astro/gpstk: update to 1.7 Date: Mon, 27 Feb 2012 09:23:50 -0700 --XjFns327qK Content-Type: text/plain; charset=iso-8859-1 Content-Description: message body text Content-Transfer-Encoding: quoted-printable Tilman Keskin=F6z wrote at 15:54 +0100 on Feb 27, 2012: > I managed to extract the patch, but it does not apply, even after i > removed the windows line endings. >=20 > Can you resend it=3F Unfortunately, you can't strip all CR line endings. The original Jamrules has a mix of CR & non-CR line endings. Another approach might be to use "tr -d '\r'" for Jamrules in pre-patch, then the files/patch-Jamrules need not have CRs. I haven't tried it or checked to see if there are CRs not at line endings that should not be removed (I doubt it, but I haven't checked). But here is the patch again as a text/x-patch attachment. --XjFns327qK Content-Type: text/x-patch; name="patch-1.7" Content-Description: update astro/gpstk to 1.7 Content-Disposition: inline; filename="patch-1.7" Content-Transfer-Encoding: base64 SW5kZXg6IE1ha2VmaWxlDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09DQpSQ1MgZmlsZTogL2Jhc2UvRnJlZUJTRC1DVlMv cG9ydHMvYXN0cm8vZ3BzdGsvTWFrZWZpbGUsdg0KcmV0cmlldmluZyByZXZpc2lvbiAxLjEzDQpk aWZmIC11IC1wIC1yMS4xMyBNYWtlZmlsZQ0KLS0tIE1ha2VmaWxlCTE0IFNlcCAyMDEwIDE2OjIw OjIzIC0wMDAwCTEuMTMNCisrKyBNYWtlZmlsZQkxNCBGZWIgMjAxMiAwNjo1NjozNCAtMDAwMA0K QEAgLTYsNDcgKzYsNDMgQEANCiAjDQogDQogUE9SVE5BTUU9CWdwc3RrDQotUE9SVFZFUlNJT049 CTEuNQ0KLVBPUlRSRVZJU0lPTj0JMQ0KK1BPUlRWRVJTSU9OPQkxLjcNCiBDQVRFR09SSUVTPQlh c3RybyBkZXZlbA0KIE1BU1RFUl9TSVRFUz0JU0YNCi1ESVNUTkFNRT0JJHtQT1JUTkFNRX0ke1BP UlRWRVJTSU9OfS5zcmMNCitESVNUTkFNRT0JJHtQT1JUTkFNRX0tJHtQT1JUVkVSU0lPTn0uc3Jj DQogDQotTUFJTlRBSU5FUj0JcG9ydHNARnJlZUJTRC5vcmcNCitNQUlOVEFJTkVSPQlqaGVpbkBz eW1tZXRyaWNvbS5jb20NCiBDT01NRU5UPQlUb29sa2l0IGZvciBkZXZlbG9waW5nIEdQUyBhcHBs aWNhdGlvbnMNCiANCi1CVUlMRF9ERVBFTkRTPQkke0xPQ0FMQkFTRX0vYmluL2phbToke1BPUlRT RElSfS9kZXZlbC9qYW0NCitCVUlMRF9ERVBFTkRTPQlqYW06JHtQT1JUU0RJUn0vZGV2ZWwvamFt DQogDQotV1JLU1JDPQkJJHtXUktESVJ9LyR7UE9SVE5BTUV9JHtQT1JUVkVSU0lPTn0NCitXUktT UkM9CQkke1dSS0RJUn0vJHtQT1JUTkFNRX0NCiANCiBVU0VfUFlUSE9OX1JVTj0JeWVzDQogVVNF X0xEQ09ORklHPQl5ZXMNCiANCi1KQU09CQkke0xPQ0FMQkFTRX0vYmluL2phbQ0KK0pBTT0JCWph bQ0KIEpBTV9FTlY9CVBSRUZJWD0iJHtQUkVGSVh9IiBcDQogCQlCSU5ESVI9IiR7UFJFRklYfS9i aW4iIFwNCi0JCUlOQ0RJUj0iJHtQUkVGSVh9L2luY2x1ZGUvJChQT1JUTkFNRSkiIFwNCisJCUlO Q0RJUj0iJHtQUkVGSVh9L2luY2x1ZGUvJHtQT1JUTkFNRX0iIFwNCiAJCUxJQkRJUj0iJHtQUkVG SVh9L2xpYiIgXA0KIAkJQ0M9IiR7Q0N9IiBDQ0ZMQUdTPSIke0NGTEFHU30iIFwNCi0JCUMrKz0i JHtDWFh9IiBDKytGTEFHUz0iJHtDWFhGTEFHU30iIFwNCi0JCU9QVElNPSItREhBVkVfVUlOVFBU Ul9UIg0KLQ0KLXBvc3QtcGF0Y2g6DQotCUAke1JFSU5QTEFDRV9DTUR9IC1lIFwNCi0JCSdzfHB5 dGhvbjIuNXxweXRob258ZycgJHtXUktTUkN9L2FwcHMvcmVzemlsbGEvb3JkUGxvdA0KKwkJQysr PSIke0NYWH0iIEMrK0ZMQUdTPSIke0NYWEZMQUdTfSINCiANCiBkby1idWlsZDoNCiAJY2QgJHtX UktTUkN9ICYmICR7U0VURU5WfSAke0pBTV9FTlZ9ICR7SkFNfQ0KIA0KK05PU1RSSVBGSUxFUz0J ZGRQbG90fG9yZFBsb3QgICMgZG9uJ3Qgc3RyaXAgc2NyaXB0cw0KK1NITElCUz0JCWdlb2R5biBn ZW9tYXRpY3MgZ3BzdGsgcHJvY2ZyYW1lIHJ4aW8gdmRyYXcgdnBsb3QNCitTSExJQlZFUj0JJHtQ T1JUVkVSU0lPTjpDLy4vL2d9DQogZG8taW5zdGFsbDoNCiAJQCR7TUtESVJ9ICR7UFJFRklYfS9p bmNsdWRlLyR7UE9SVE5BTUV9DQogCWNkICR7V1JLU1JDfSAmJiAke1NFVEVOVn0gJHtKQU1fRU5W fSAke0pBTX0gaW5zdGFsbA0KLS5mb3Igc2hsaWIgaW4gZ2VvbWF0aWNzIGdwc3RrIHByb2NmcmFt ZSByeGlvIHZwbG90DQotCUAke0xOfSAtc2YgbGliJHtzaGxpYn0uc28uMTUgJHtQUkVGSVh9L2xp Yi9saWIke3NobGlifS5zbw0KKy5mb3Igc2hsaWIgaW4gJHtTSExJQlN9DQorCUAke0xOfSAtc2Yg bGliJHtzaGxpYn0uc28uJHtTSExJQlZFUn0gJHtQUkVGSVh9L2xpYi9saWIke3NobGlifS5zbw0K IC5lbmRmb3INCi0JQCR7U1RSSVBfQ01EfSBgJHtDQVR9ICR7UExJU1R9IHwgXA0KLSAJCSAke0dS RVB9ICdeYmluLycgfCBcDQotCQkgJHtHUkVQfSAtRSAtdiAnZGRQbG90JCR8bWRwc2NyZWVuJCR8 b3JkUGxvdCQkJyB8IFwNCi0JCSAke1NFRH0gJ3M6XmJpbi86JHtQUkVGSVh9L2Jpbi86ZydgDQor CUAke1NUUklQX0NNRH0gYCR7R1JFUH0gJ15iaW4vJyAke1BMSVNUfSB8IFwNCisJCSAke0dSRVB9 IC1FIC12ICdeYmluLygke05PU1RSSVBGSUxFU30pJCQnIHwgXA0KKwkJICR7U0VEfSAnczpeOiR7 UFJFRklYfS86ZydgDQogDQogLmluY2x1ZGUgPGJzZC5wb3J0Lm1rPg0KSW5kZXg6IGRpc3RpbmZv DQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09DQpSQ1MgZmlsZTogL2Jhc2UvRnJlZUJTRC1DVlMvcG9ydHMvYXN0cm8vZ3Bz dGsvZGlzdGluZm8sdg0KcmV0cmlldmluZyByZXZpc2lvbiAxLjQNCmRpZmYgLXUgLXAgLXIxLjQg ZGlzdGluZm8NCi0tLSBkaXN0aW5mbwkxOSBNYXIgMjAxMSAxMjoyNzozMiAtMDAwMAkxLjQNCisr KyBkaXN0aW5mbwk5IEZlYiAyMDEyIDIzOjAyOjQyIC0wMDAwDQpAQCAtMSwyICsxLDIgQEANCi1T SEEyNTYgKGdwc3RrMS41LnNyYy50YXIuZ3opID0gMmJjNjk5ZDllYjhkOTc3NGZhNmE2MzVlMGY3 NWRhMmYzOGMwMGUxYjcwMDk3NGZlOTE5N2I4YmE3Yzg2NzI3Nw0KLVNJWkUgKGdwc3RrMS41LnNy Yy50YXIuZ3opID0gNzA1MDU5Mg0KK1NIQTI1NiAoZ3BzdGstMS43LnNyYy50YXIuZ3opID0gNTZm MjM0ZDMzYjY3MDExNzk0NjEyYTEzMmU4NGMyMDQwNzhhZTUwZGIyMjNkZmVjYWRiZjQ1MzAxYmNl MDM3Mw0KK1NJWkUgKGdwc3RrLTEuNy5zcmMudGFyLmd6KSA9IDIyODM3MDUzDQpJbmRleDogcGtn LXBsaXN0DQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09DQpSQ1MgZmlsZTogL2Jhc2UvRnJlZUJTRC1DVlMvcG9ydHMvYXN0 cm8vZ3BzdGsvcGtnLXBsaXN0LHYNCnJldHJpZXZpbmcgcmV2aXNpb24gMS40DQpkaWZmIC11IC1w IC1yMS40IHBrZy1wbGlzdA0KLS0tIHBrZy1wbGlzdAkyMyBNYXkgMjAwOSAxNDoyMzozMiAtMDAw MAkxLjQNCisrKyBwa2ctcGxpc3QJMTAgRmViIDIwMTIgMDM6NTU6MTQgLTAwMDANCkBAIC0xLDEz ICsxLDE5IEBADQorQGNvbW1lbnQgJEZyZWVCU0QkDQorYmluL0NhbGNET1BzDQorYmluL0NvbnN0 ZWxsYXRpb25MaXN0DQogYmluL0REQmFzZQ0KK2Jpbi9ET1BjYWxjDQogYmluL0Rpc2NGaXgNCiBi aW4vRWRpdFJpbmV4DQogYmluL0lvbm9CaWFzDQogYmluL05hdk1lcmdlDQorYmluL09SRFBoYXNl UGFyc2VyDQogYmluL1BSU29sdmUNCiBiaW4vUmVzQ29yDQogYmluL1JpblN1bQ0KIGJpbi9SaW5l eER1bXANCiBiaW4vVEVDTWFwcw0KK2Jpbi9USUFQaGFzZVBhcnNlcg0KIGJpbi9hc2gybWRwDQog YmluL2FzaDJ4eXoNCiBiaW4vYXRzMm1kcA0KQEAgLTE1LDExICsyMSwxNSBAQCBiaW4vYmMyc3Az DQogYmluL2NhbGdwcw0KIGJpbi9jb21wU2F0VmlzDQogYmluL2NvbXBTdGFWaXMNCitiaW4vY29u dmVydFNTRXBoDQogYmluL2RhYQ0KK2Jpbi9kYWxsYW5kZXYNCiBiaW4vZGRHZW4NCiBiaW4vZGRQ bG90DQogYmluL2RkbWVyZ2UNCiBiaW4vZXBoZGlmZg0KK2Jpbi9lcGhzdW0NCitiaW4vZmZwDQog YmluL2ZpYzJyaW4NCiBiaW4vZmljYWNoZWNrDQogYmluL2ZpY2FmaWMNCkBAIC0yNywxMCArMzcs MTAgQEAgYmluL2ZpY2NoZWNrDQogYmluL2ZpY2RpZmYNCiBiaW4vZmljZmljYQ0KIGJpbi9maW5k TW9yZVRoYW4xMg0KK2Jpbi9sc2ZpbHQNCitiaW4vbWFsbGFuZGV2DQogYmluL21kcDJyaW5leA0K IGJpbi9tZHBFZGl0DQotYmluL21kcHNjcmVlbg0KLWJpbi9tZHBzY3JlZW54DQogYmluL21kcHRv b2wNCiBiaW4vbWVyZ2VGSUMNCiBiaW4vbWVyZ2VSaW5NZXQNCkBAIC0zOCwyMCArNDgsMjUgQEAg YmluL21lcmdlUmluTmF2DQogYmluL21lcmdlUmluT2JzDQogYmluL21lcmdlU1JJDQogYmluL21w c29sdmUNCitiaW4vbmFsbGFuZGV2DQogYmluL25hdmRtcA0KIGJpbi9uYXZzdW0NCiBiaW4vbm92 YVJpbmV4DQorYmluL29hbGxhbmRldg0KK2Jpbi9vaGFkYW1hcmRkZXYNCiBiaW4vb3JkQ2xvY2sN CiBiaW4vb3JkRWRpdA0KIGJpbi9vcmRHZW4NCiBiaW4vb3JkTGluRXN0DQogYmluL29yZFBsb3QN CiBiaW4vb3JkU3RhdHMNCitiaW4vcGZmDQogYmluL3Bvc0ludGVycA0KIGJpbi9wb3NjdnQNCiBi aW4vcmZ3DQogYmluL3JpbmV4cHZ0DQogYmluL3JpbmV4dGhpbg0KK2Jpbi9ybW91dGxpZXINCiBi aW4vcm13Y2hlY2sNCiBiaW4vcm13ZGlmZg0KIGJpbi9ybndjaGVjaw0KQEAgLTU5LDE1ICs3NCwy OCBAQCBiaW4vcm53ZGlmZg0KIGJpbi9yb3djaGVjaw0KIGJpbi9yb3dkaWZmDQogYmluL3JzdGF0 cw0KK2Jpbi9zY2FsZQ0KIGJpbi9zcDN2ZXJzaW9uDQogYmluL3N2dmlzDQorYmluL3RhbGxhbmRl dg0KK2Jpbi90ZXN0U1NFcGgNCiBiaW4vdGltZWNvbnZlcnQNCitiaW4vdHJ1bmMNCiBiaW4vdmVj c29sDQogYmluL3doZXJlc2F0DQogaW5jbHVkZS9ncHN0ay9BTlNJVGltZS5ocHANCitpbmNsdWRl L2dwc3RrL0FTQ29uc3RhbnQuaHBwDQogaW5jbHVkZS9ncHN0ay9BVFNEYXRhLmhwcA0KIGluY2x1 ZGUvZ3BzdGsvQVRTU3RyZWFtLmhwcA0KK2luY2x1ZGUvZ3BzdGsvQWRsZXIzMi5ocHANCitpbmNs dWRlL2dwc3RrL0FsbGFuRGV2aWF0aW9uLmhwcA0KIGluY2x1ZGUvZ3BzdGsvQWxtT3JiaXQuaHBw DQoraW5jbHVkZS9ncHN0ay9BbnRlbm5hLmhwcA0KK2luY2x1ZGUvZ3BzdGsvQW50ZXhCYXNlLmhw cA0KK2luY2x1ZGUvZ3BzdGsvQW50ZXhEYXRhLmhwcA0KK2luY2x1ZGUvZ3BzdGsvQW50ZXhIZWFk ZXIuaHBwDQoraW5jbHVkZS9ncHN0ay9BbnRleFJlYWRlci5ocHANCitpbmNsdWRlL2dwc3RrL0Fu dGV4U3RyZWFtLmhwcA0KIGluY2x1ZGUvZ3BzdGsvQXNodGVjaEFMQi5ocHANCiBpbmNsdWRlL2dw c3RrL0FzaHRlY2hEYXRhLmhwcA0KIGluY2x1ZGUvZ3BzdGsvQXNodGVjaEVQQi5ocHANCkBAIC03 NSw4ICsxMDMsMTMgQEAgaW5jbHVkZS9ncHN0ay9Bc2h0ZWNoTUJFTi5ocHANCiBpbmNsdWRlL2dw c3RrL0FzaHRlY2hQQkVOLmhwcA0KIGluY2x1ZGUvZ3BzdGsvQXNodGVjaFN0cmVhbS5ocHANCiBp bmNsdWRlL2dwc3RrL0FzdHJvbm9taWNhbEZ1bmN0aW9ucy5ocHANCitpbmNsdWRlL2dwc3RrL0F0 bW9zcGhlcmljRHJhZy5ocHANCitpbmNsdWRlL2dwc3RrL0F4aXMuaHBwDQoraW5jbHVkZS9ncHN0 ay9BeGlzU3R5bGUuaHBwDQogaW5jbHVkZS9ncHN0ay9CTFFEYXRhUmVhZGVyLmhwcA0KIGluY2x1 ZGUvZ3BzdGsvQmFuY3JvZnQuaHBwDQoraW5jbHVkZS9ncHN0ay9CYXNlNjRFbmNvZGVyLmhwcA0K K2luY2x1ZGUvZ3BzdGsvQmFzZURpc3RyaWJ1dGlvbi5ocHANCiBpbmNsdWRlL2dwc3RrL0Jhc2lj RnJhbWV3b3JrLmhwcA0KIGluY2x1ZGUvZ3BzdGsvQmFzaWNNb2RlbC5ocHANCiBpbmNsdWRlL2dw c3RrL0Jhc2ljU2hhcGUuaHBwDQpAQCAtODQsMTUgKzExNywyMiBAQCBpbmNsdWRlL2dwc3RrL0Jp blV0aWxzLmhwcA0KIGluY2x1ZGUvZ3BzdGsvQmluZXhEYXRhLmhwcA0KIGluY2x1ZGUvZ3BzdGsv QmluZXhGaWx0ZXJPcGVyYXRvcnMuaHBwDQogaW5jbHVkZS9ncHN0ay9CaW5leFN0cmVhbS5ocHAN CitpbmNsdWRlL2dwc3RrL0JpdG1hcC5ocHANCiBpbmNsdWRlL2dwc3RrL0JpdmFyU3RhdHMuaHBw DQogaW5jbHVkZS9ncHN0ay9Cb3JkZXJMYXlvdXQuaHBwDQoraW5jbHVkZS9ncHN0ay9DUkMzMi5o cHANCitpbmNsdWRlL2dwc3RrL0NhbnZhcy5ocHANCiBpbmNsdWRlL2dwc3RrL0NoZWNrUFJEYXRh LmhwcA0KK2luY2x1ZGUvZ3BzdGsvQ2hpMkRpc3RyaWJ1dGlvbi5ocHANCitpbmNsdWRlL2dwc3Rr L0NpcmFFeHBvbmVudGlhbERyYWcuaHBwDQogaW5jbHVkZS9ncHN0ay9DaXJjbGUuaHBwDQogaW5j bHVkZS9ncHN0ay9DaXZpbFRpbWUuaHBwDQogaW5jbHVkZS9ncHN0ay9DbG9ja01vZGVsLmhwcA0K IGluY2x1ZGUvZ3BzdGsvQ29kZUJ1ZmZlci5ocHANCitpbmNsdWRlL2dwc3RrL0NvZGVLYWxtYW5T b2x2ZXIuaHBwDQogaW5jbHVkZS9ncHN0ay9Db2RlU21vb3RoZXIuaHBwDQogaW5jbHVkZS9ncHN0 ay9Db2xvci5ocHANCitpbmNsdWRlL2dwc3RrL0NvbG9yTWFwLmhwcA0KIGluY2x1ZGUvZ3BzdGsv Q29tbWFuZE9wdGlvbi5ocHANCiBpbmNsdWRlL2dwc3RrL0NvbW1hbmRPcHRpb25QYXJzZXIuaHBw DQogaW5jbHVkZS9ncHN0ay9Db21tYW5kT3B0aW9uV2l0aENvbW1vblRpbWVBcmcuaHBwDQpAQCAt MTAxLDcgKzE0MSw5IEBAIGluY2x1ZGUvZ3BzdGsvQ29tbWFuZE9wdGlvbldpdGhUaW1lQXJnLmgN CiBpbmNsdWRlL2dwc3RrL0NvbW1lbnQuaHBwDQogaW5jbHVkZS9ncHN0ay9Db21tb25UaW1lLmhw cA0KIGluY2x1ZGUvZ3BzdGsvQ29tcHV0ZUNvbWJpbmF0aW9uLmhwcA0KK2luY2x1ZGUvZ3BzdGsv Q29tcHV0ZURPUC5ocHANCiBpbmNsdWRlL2dwc3RrL0NvbXB1dGVJVVJBV2VpZ2h0cy5ocHANCitp bmNsdWRlL2dwc3RrL0NvbXB1dGVJb25vTW9kZWwuaHBwDQogaW5jbHVkZS9ncHN0ay9Db21wdXRl TEMuaHBwDQogaW5jbHVkZS9ncHN0ay9Db21wdXRlTEkuaHBwDQogaW5jbHVkZS9ncHN0ay9Db21w dXRlTGRlbHRhLmhwcA0KQEAgLTExMSwyOSArMTUzLDQ3IEBAIGluY2x1ZGUvZ3BzdGsvQ29tcHV0 ZU1lbGJvdXJuZVd1YmJlbmEuaHANCiBpbmNsdWRlL2dwc3RrL0NvbXB1dGVQQy5ocHANCiBpbmNs dWRlL2dwc3RrL0NvbXB1dGVQSS5ocHANCiBpbmNsdWRlL2dwc3RrL0NvbXB1dGVQZGVsdGEuaHBw DQoraW5jbHVkZS9ncHN0ay9Db21wdXRlU2F0UENlbnRlci5ocHANCiBpbmNsdWRlL2dwc3RrL0Nv bXB1dGVUcm9wTW9kZWwuaHBwDQogaW5jbHVkZS9ncHN0ay9Db21wdXRlV2luZFVwLmhwcA0KK2lu Y2x1ZGUvZ3BzdGsvQ29uZkRhdGFSZWFkZXIuaHBwDQoraW5jbHVkZS9ncHN0ay9Db25mRGF0YVdy aXRlci5ocHANCitpbmNsdWRlL2dwc3RrL0NvcnJlY3RDb2RlQmlhc2VzLmhwcA0KIGluY2x1ZGUv Z3BzdGsvQ29ycmVjdE9ic2VydmFibGVzLmhwcA0KLWluY2x1ZGUvZ3BzdGsvRENpbnRlcm5hbHMu aHBwDQoraW5jbHVkZS9ncHN0ay9EQ0JEYXRhUmVhZGVyLmhwcA0KIGluY2x1ZGUvZ3BzdGsvRERp ZC5ocHANCiBpbmNsdWRlL2dwc3RrL0RPUC5ocHANCiBpbmNsdWRlL2dwc3RrL0RhdGFIZWFkZXJz LmhwcA0KIGluY2x1ZGUvZ3BzdGsvRGF0YVN0YXR1cy5ocHANCiBpbmNsdWRlL2dwc3RrL0RhdGFT dHJ1Y3R1cmVzLmhwcA0KIGluY2x1ZGUvZ3BzdGsvRGF5VGltZS5ocHANCitpbmNsdWRlL2dwc3Rr L0RlY2ltYXRlLmhwcA0KIGluY2x1ZGUvZ3BzdGsvRGVsdGFPcC5ocHANCiBpbmNsdWRlL2dwc3Rr L0Rpc2NDb3JyLmhwcA0KK2luY2x1ZGUvZ3BzdGsvRG91YmxlT3AuaHBwDQoraW5jbHVkZS9ncHN0 ay9EdW1wZXIuaHBwDQogaW5jbHVkZS9ncHN0ay9FQ0VGLmhwcA0KK2luY2x1ZGUvZ3BzdGsvRUdN OTZHcmF2aXR5TW9kZWwuaHBwDQogaW5jbHVkZS9ncHN0ay9FTlVVdGlsLmhwcA0KIGluY2x1ZGUv Z3BzdGsvRVBTSW1hZ2UuaHBwDQoraW5jbHVkZS9ncHN0ay9FYXJ0aEJvZHkuaHBwDQoraW5jbHVk ZS9ncHN0ay9FYXJ0aE9jZWFuVGlkZS5ocHANCiBpbmNsdWRlL2dwc3RrL0VhcnRoT3JpZW50YXRp b24uaHBwDQoraW5jbHVkZS9ncHN0ay9FYXJ0aFBvbGVUaWRlLmhwcA0KK2luY2x1ZGUvZ3BzdGsv RWFydGhTb2xpZFRpZGUuaHBwDQoraW5jbHVkZS9ncHN0ay9FY2xpcHNlZFNhdEZpbHRlci5ocHAN CitpbmNsdWRlL2dwc3RrL0VsbGlwc29pZE1vZGVsLmhwcA0KIGluY2x1ZGUvZ3BzdGsvRW5nQWxt YW5hYy5ocHANCiBpbmNsdWRlL2dwc3RrL0VuZ0VwaGVtZXJpcy5ocHANCiBpbmNsdWRlL2dwc3Rr L0VuZ05hdi5ocHANCiBpbmNsdWRlL2dwc3RrL0VwaFJlYWRlci5ocHANCiBpbmNsdWRlL2dwc3Rr L0VwaGVtZXJpc1JhbmdlLmhwcA0KK2luY2x1ZGUvZ3BzdGsvRXBvY2guaHBwDQogaW5jbHVkZS9n cHN0ay9FcG9jaENsb2NrTW9kZWwuaHBwDQoraW5jbHVkZS9ncHN0ay9FcG9jaERhdGFTdG9yZS5o cHANCiBpbmNsdWRlL2dwc3RrL0VxdWF0aW9uLmhwcA0KK2luY2x1ZGUvZ3BzdGsvRXF1YXRpb25P Zk1vdGlvbi5ocHANCitpbmNsdWRlL2dwc3RrL0VxdWF0aW9uU3lzdGVtLmhwcA0KIGluY2x1ZGUv Z3BzdGsvRXhjZXB0aW9uLmhwcA0KIGluY2x1ZGUvZ3BzdGsvRXhwcmVzc2lvbi5ocHANCiBpbmNs dWRlL2dwc3RrL0V4dHJhY3RDMS5ocHANCkBAIC0xNzIsMzMgKzIzMiw1MSBAQCBpbmNsdWRlL2dw c3RrL0ZpbGVTcGVjLmhwcA0KIGluY2x1ZGUvZ3BzdGsvRmlsZVN0b3JlLmhwcA0KIGluY2x1ZGUv Z3BzdGsvRmlsZVV0aWxzLmhwcA0KIGluY2x1ZGUvZ3BzdGsvRmlsbGFibGUuaHBwDQoraW5jbHVk ZS9ncHN0ay9Gb3JjZU1vZGVsLmhwcA0KK2luY2x1ZGUvZ3BzdGsvRm9yY2VNb2RlbExpc3QuaHBw DQogaW5jbHVkZS9ncHN0ay9GcmFtZS5ocHANCi1pbmNsdWRlL2dwc3RrL0dEQ2NvbmZpZ3VyYXRp b24uaHBwDQogaW5jbHVkZS9ncHN0ay9HUFNBbG1hbmFjU3RvcmUuaHBwDQoraW5jbHVkZS9ncHN0 ay9HUFNFbGxpcHNvaWQuaHBwDQogaW5jbHVkZS9ncHN0ay9HUFNFcGhlbWVyaXNTdG9yZS5ocHAN Ci1pbmNsdWRlL2dwc3RrL0dQU0Vwb2NoV2Vla1NlY29uZC5ocHANCiBpbmNsdWRlL2dwc3RrL0dQ U0dlb2lkLmhwcA0KK2luY2x1ZGUvZ3BzdGsvR1BTV2Vlay5ocHANCiBpbmNsdWRlL2dwc3RrL0dQ U1dlZWtTZWNvbmQuaHBwDQogaW5jbHVkZS9ncHN0ay9HUFNXZWVrWmNvdW50LmhwcA0KIGluY2x1 ZGUvZ3BzdGsvR1BTWmNvdW50LmhwcA0KLWluY2x1ZGUvZ3BzdGsvR1BTWmNvdW50MjkuaHBwDQot aW5jbHVkZS9ncHN0ay9HUFNaY291bnQzMi5ocHANCiBpbmNsdWRlL2dwc3RrL0dTYXRJRC5ocHAN CitpbmNsdWRlL2dwc3RrL0dhdXNzaWFuRGlzdHJpYnV0aW9uLmhwcA0KIGluY2x1ZGUvZ3BzdGsv R2VuWFNlcXVlbmNlLmhwcA0KIGluY2x1ZGUvZ3BzdGsvR2VvZGV0aWMuaHBwDQogaW5jbHVkZS9n cHN0ay9HZW9kZXRpY0ZyYW1lcy5ocHANCiBpbmNsdWRlL2dwc3RrL0dlb2lkTW9kZWwuaHBwDQog aW5jbHVkZS9ncHN0ay9HcmFwaGljc0NvbnN0YW50cy5ocHANCitpbmNsdWRlL2dwc3RrL0dyYXZp dGF0aW9uYWxEZWxheS5ocHANCiBpbmNsdWRlL2dwc3RrL0dyaWRMYXlvdXQuaHBwDQogaW5jbHVk ZS9ncHN0ay9ITGF5b3V0LmhwcA0KK2luY2x1ZGUvZ3BzdGsvSGFycmlzUHJpZXN0ZXJEcmFnLmhw cA0KIGluY2x1ZGUvZ3BzdGsvSGVscGVyLmhwcA0KK2luY2x1ZGUvZ3BzdGsvSUVSUy5ocHANCiBp bmNsdWRlL2dwc3RrL0luT3V0RnJhbWV3b3JrLmhwcA0KK2luY2x1ZGUvZ3BzdGsvSW50ZWdyYXRv ci5ocHANCitpbmNsdWRlL2dwc3RrL0ludGVycG9sYXRlZENvbG9yTWFwLmhwcA0KK2luY2x1ZGUv Z3BzdGsvSW9uZXhCYXNlLmhwcA0KK2luY2x1ZGUvZ3BzdGsvSW9uZXhEYXRhLmhwcA0KK2luY2x1 ZGUvZ3BzdGsvSW9uZXhIZWFkZXIuaHBwDQoraW5jbHVkZS9ncHN0ay9Jb25leE1vZGVsLmhwcA0K K2luY2x1ZGUvZ3BzdGsvSW9uZXhTdG9yZS5ocHANCitpbmNsdWRlL2dwc3RrL0lvbmV4U3RyZWFt LmhwcA0KIGluY2x1ZGUvZ3BzdGsvSW9ub01vZGVsLmhwcA0KIGluY2x1ZGUvZ3BzdGsvSW9ub01v ZGVsU3RvcmUuaHBwDQoraW5jbHVkZS9ncHN0ay9KR00zR3Jhdml0eU1vZGVsLmhwcA0KIGluY2x1 ZGUvZ3BzdGsvSnVsaWFuRGF0ZS5ocHANCitpbmNsdWRlL2dwc3RrL0tlZXBlci5ocHANCitpbmNs dWRlL2dwc3RrL0tlcGxlck9yYml0LmhwcA0KK2luY2x1ZGUvZ3BzdGsvTEVPU2F0T3JiaXQuaHBw DQogaW5jbHVkZS9ncHN0ay9MSUNTRGV0ZWN0b3IuaHBwDQoraW5jbHVkZS9ncHN0ay9MSUNTRGV0 ZWN0b3IyLmhwcA0KIGluY2x1ZGUvZ3BzdGsvTGF5b3V0LmhwcA0KIGluY2x1ZGUvZ3BzdGsvTGlu ZS5ocHANCitpbmNsdWRlL2dwc3RrL0xpbmVQbG90LmhwcA0KIGluY2x1ZGUvZ3BzdGsvTGluZWFy Q2xvY2tNb2RlbC5ocHANCiBpbmNsdWRlL2dwc3RrL0xpbmVhckNvbWJpbmF0aW9ucy5ocHANCiBp bmNsdWRlL2dwc3RrL0xvb3BlZEZyYW1ld29yay5ocHANCkBAIC0yMzIsMTQgKzMxMCwxOSBAQCBp bmNsdWRlL2dwc3RrL01vZGVsT2JzRml4ZWRTdGF0aW9uLmhwcA0KIGluY2x1ZGUvZ3BzdGsvTW9k ZWxlZFBSLmhwcA0KIGluY2x1ZGUvZ3BzdGsvTW9kZWxlZFBzZXVkb3JhbmdlQmFzZS5ocHANCiBp bmNsdWRlL2dwc3RrL01vZGVsZWRSZWZlcmVuY2VQUi5ocHANCitpbmNsdWRlL2dwc3RrL01vb25G b3JjZS5ocHANCiBpbmNsdWRlL2dwc3RrL01vb25Qb3NpdGlvbi5ocHANCitpbmNsdWRlL2dwc3Rr L01zaXNlMDBEcmFnLmhwcA0KIGluY2x1ZGUvZ3BzdGsvTkVEVXRpbC5ocHANCiBpbmNsdWRlL2dw c3RrL05hYmxhT3AuaHBwDQogaW5jbHVkZS9ncHN0ay9OYW1lbGlzdC5ocHANCitpbmNsdWRlL2dw c3RrL05hdlNhdE9yYml0LmhwcA0KK2luY2x1ZGUvZ3BzdGsvTmV0d29ya09ic1N0cmVhbXMuaHBw DQogaW5jbHVkZS9ncHN0ay9Ob3ZhdGVsRGF0YS5ocHANCiBpbmNsdWRlL2dwc3RrL05vdmF0ZWxT dHJlYW0uaHBwDQogaW5jbHVkZS9ncHN0ay9PUkRFcG9jaC5ocHANCiBpbmNsdWRlL2dwc3RrL09i c0Nsb2NrTW9kZWwuaHBwDQoraW5jbHVkZS9ncHN0ay9PYnNFcGhSZWFkZXJGcmFtZXdvcmsuaHBw DQogaW5jbHVkZS9ncHN0ay9PYnNFcG9jaE1hcC5ocHANCiBpbmNsdWRlL2dwc3RrL09ic0lELmhw cA0KIGluY2x1ZGUvZ3BzdGsvT2JzUmVhZGVyLmhwcA0KQEAgLTI0OSwyMSArMzMyLDMyIEBAIGlu Y2x1ZGUvZ3BzdGsvT2NlYW5Mb2FkaW5nLmhwcA0KIGluY2x1ZGUvZ3BzdGsvT25lRnJlcUNTRGV0 ZWN0b3IuaHBwDQogaW5jbHVkZS9ncHN0ay9QQ1Ntb290aGVyLmhwcA0KIGluY2x1ZGUvZ3BzdGsv UENvZGVDb25zdC5ocHANCitpbmNsdWRlL2dwc3RrL1BORy5ocHANCiBpbmNsdWRlL2dwc3RrL1BS U29sdXRpb24uaHBwDQogaW5jbHVkZS9ncHN0ay9QU0ltYWdlLmhwcA0KIGluY2x1ZGUvZ3BzdGsv UFNJbWFnZUJhc2UuaHBwDQoraW5jbHVkZS9ncHN0ay9QYWxldHRlLmhwcA0KIGluY2x1ZGUvZ3Bz dGsvUGF0aC5ocHANCitpbmNsdWRlL2dwc3RrL1BoYXNlQ29kZUFsaWdubWVudC5ocHANCiBpbmNs dWRlL2dwc3RrL1BoYXNlV2luZHVwLmhwcA0KK2luY2x1ZGUvZ3BzdGsvUGxvdC5ocHANCiBpbmNs dWRlL2dwc3RrL1BvbGVUaWRlcy5ocHANCiBpbmNsdWRlL2dwc3RrL1BvbHlGaXQuaHBwDQogaW5j bHVkZS9ncHN0ay9Qb2x5Z29uLmhwcA0KIGluY2x1ZGUvZ3BzdGsvUG9zaXRpb24uaHBwDQoraW5j bHVkZS9ncHN0ay9Qb3dlclN1bS5ocHANCiBpbmNsdWRlL2dwc3RrL1ByZWNpc2VSYW5nZS5ocHAN CiBpbmNsdWRlL2dwc3RrL1Byb2Nlc3NpbmdDbGFzcy5ocHANCitpbmNsdWRlL2dwc3RrL1Byb2Nl c3NpbmdMaXN0LmhwcA0KIGluY2x1ZGUvZ3BzdGsvUHJvY2Vzc2luZ1ZlY3Rvci5ocHANCitpbmNs dWRlL2dwc3RrL1BydW5lci5ocHANCitpbmNsdWRlL2dwc3RrL1B2dFN0b3JlLmhwcA0KIGluY2x1 ZGUvZ3BzdGsvUkFDUm90YXRpb24uaHBwDQogaW5jbHVkZS9ncHN0ay9SVEZpbGVGcmFtZS5ocHAN CiBpbmNsdWRlL2dwc3RrL1JlY3RhbmdsZS5ocHANCitpbmNsdWRlL2dwc3RrL1JlZmVyZW5jZUZy YW1lcy5ocHANCitpbmNsdWRlL2dwc3RrL1JlbGF0aXZpdHlFZmZlY3QuaHBwDQoraW5jbHVkZS9n cHN0ay9SZXF1aXJlT2JzZXJ2YWJsZXMuaHBwDQogaW5jbHVkZS9ncHN0ay9SaW5leENvbnZlcnRl cnMuaHBwDQogaW5jbHVkZS9ncHN0ay9SaW5leEVwaGVtZXJpc1N0b3JlLmhwcA0KIGluY2x1ZGUv Z3BzdGsvUmluZXhNZXRCYXNlLmhwcA0KQEAgLTI4Niw2ICszODAsNyBAQCBpbmNsdWRlL2dwc3Rr L1JpbmV4U2F0SUQuaHBwDQogaW5jbHVkZS9ncHN0ay9SaW5leFV0aWxpdGllcy5ocHANCiBpbmNs dWRlL2dwc3RrL1JvYnVzdFN0YXRzLmhwcA0KIGluY2x1ZGUvZ3BzdGsvUnVuZ2VLdXR0YTQuaHBw DQoraW5jbHVkZS9ncHN0ay9SdW5nZUt1dHRhRmVobGJlcmcuaHBwDQogaW5jbHVkZS9ncHN0ay9T RU1BbG1hbmFjU3RvcmUuaHBwDQogaW5jbHVkZS9ncHN0ay9TRU1CYXNlLmhwcA0KIGluY2x1ZGUv Z3BzdGsvU0VNRGF0YS5ocHANCkBAIC0zMDEsMjYgKzM5Niw1MCBAQCBpbmNsdWRlL2dwc3RrL1NQ M1NhdElELmhwcA0KIGluY2x1ZGUvZ3BzdGsvU1AzU3RyZWFtLmhwcA0KIGluY2x1ZGUvZ3BzdGsv U1JJLmhwcA0KIGluY2x1ZGUvZ3BzdGsvU1JJRmlsdGVyLmhwcA0KK2luY2x1ZGUvZ3BzdGsvU1JJ TWF0cml4LmhwcA0KK2luY2x1ZGUvZ3BzdGsvU1JJbGVhc3RTcXVhcmVzLmhwcA0KIGluY2x1ZGUv Z3BzdGsvU1ZFeGNsdXNpb25MaXN0LmhwcA0KIGluY2x1ZGUvZ3BzdGsvU1ZHSW1hZ2UuaHBwDQog aW5jbHVkZS9ncHN0ay9TVk51bVhSZWYuaHBwDQogaW5jbHVkZS9ncHN0ay9TVlBDb2RlR2VuLmhw cA0KK2luY2x1ZGUvZ3BzdGsvU2F0QXJjTWFya2VyLmhwcA0KIGluY2x1ZGUvZ3BzdGsvU2F0RGF0 YVJlYWRlci5ocHANCiBpbmNsdWRlL2dwc3RrL1NhdElELmhwcA0KK2luY2x1ZGUvZ3BzdGsvU2F0 T3JiaXQuaHBwDQoraW5jbHVkZS9ncHN0ay9TYXRPcmJpdFByb3BhZ2F0b3IuaHBwDQoraW5jbHVk ZS9ncHN0ay9TYXRPcmJpdFN0b3JlLmhwcA0KIGluY2x1ZGUvZ3BzdGsvU2F0UGFzcy5ocHANCitp bmNsdWRlL2dwc3RrL1NjYXR0ZXJQbG90LmhwcA0KK2luY2x1ZGUvZ3BzdGsvU2VyaWVzTGlzdC5o cHANCiBpbmNsdWRlL2dwc3RrL1NpbXBsZUZpbHRlci5ocHANCiBpbmNsdWRlL2dwc3RrL1NpbXBs ZUlVUkFXZWlnaHQuaHBwDQogaW5jbHVkZS9ncHN0ay9TaW1wbGVLYWxtYW5GaWx0ZXIuaHBwDQor aW5jbHVkZS9ncHN0ay9Tb2xhclBvc2l0aW9uLmhwcA0KK2luY2x1ZGUvZ3BzdGsvU29sYXJSYWRp YXRpb25QcmVzc3VyZS5ocHANCitpbmNsdWRlL2dwc3RrL1NvbGFyU3lzdGVtLmhwcA0KIGluY2x1 ZGUvZ3BzdGsvU29saWRUaWRlcy5ocHANCiBpbmNsdWRlL2dwc3RrL1NvbHZlckJhc2UuaHBwDQor aW5jbHVkZS9ncHN0ay9Tb2x2ZXJHZW5lcmFsLmhwcA0KIGluY2x1ZGUvZ3BzdGsvU29sdmVyTE1T LmhwcA0KK2luY2x1ZGUvZ3BzdGsvU29sdmVyUFBQLmhwcA0KK2luY2x1ZGUvZ3BzdGsvU29sdmVy UFBQRkIuaHBwDQogaW5jbHVkZS9ncHN0ay9Tb2x2ZXJXTVMuaHBwDQogaW5jbHVkZS9ncHN0ay9T b3VyY2VJRC5ocHANCitpbmNsdWRlL2dwc3RrL1NwYWNlY3JhZnQuaHBwDQoraW5jbHVkZS9ncHN0 ay9TcGVjaWFsRnVuY3Rpb25zLmhwcA0KK2luY2x1ZGUvZ3BzdGsvU3BoZXJpY2FsSGFybW9uaWNH cmF2aXR5LmhwcA0KK2luY2x1ZGUvZ3BzdGsvU3BsaXR0ZXIuaHBwDQogaW5jbHVkZS9ncHN0ay9T dGF0cy5ocHANCiBpbmNsdWRlL2dwc3RrL1N0b2NoYXN0aWNNb2RlbC5ocHANCiBpbmNsdWRlL2dw c3RrL1N0cmluZ1V0aWxzLmhwcA0KIGluY2x1ZGUvZ3BzdGsvU3Ryb2tlU3R5bGUuaHBwDQoraW5j bHVkZS9ncHN0ay9TdHVkZW50RGlzdHJpYnV0aW9uLmhwcA0KK2luY2x1ZGUvZ3BzdGsvU3VuRWFy dGhTYXRHZW9tZXRyeS5ocHANCitpbmNsdWRlL2dwc3RrL1N1bkZvcmNlLmhwcA0KIGluY2x1ZGUv Z3BzdGsvU3VuUG9zaXRpb24uaHBwDQoraW5jbHVkZS9ncHN0ay9TdXBlckthbG1hbkZpbHRlci5o cHANCitpbmNsdWRlL2dwc3RrL1N1cmZhY2VQbG90LmhwcA0KK2luY2x1ZGUvZ3BzdGsvU3luY2hy b25pemUuaHBwDQogaW5jbHVkZS9ncHN0ay9TeXN0ZW1UaW1lLmhwcA0KIGluY2x1ZGUvZ3BzdGsv VGFidWxhckVwaGVtZXJpc1N0b3JlLmhwcA0KIGluY2x1ZGUvZ3BzdGsvVGV4dC5ocHANCkBAIC0z MzMsMTAgKzQ1MiwxMiBAQCBpbmNsdWRlL2dwc3RrL1RpbWVUYWcuaHBwDQogaW5jbHVkZS9ncHN0 ay9UcmlwbGUuaHBwDQogaW5jbHVkZS9ncHN0ay9Ucm9wTW9kZWwuaHBwDQogaW5jbHVkZS9ncHN0 ay9UeXBlSUQuaHBwDQoraW5jbHVkZS9ncHN0ay9VVENUaW1lLmhwcA0KIGluY2x1ZGUvZ3BzdGsv VW5peFRpbWUuaHBwDQoraW5jbHVkZS9ncHN0ay9WRHJhd0V4Y2VwdGlvbi5ocHANCiBpbmNsdWRl L2dwc3RrL1ZHSW1hZ2UuaHBwDQoraW5jbHVkZS9ncHN0ay9WR1N0YXRlLmhwcA0KIGluY2x1ZGUv Z3BzdGsvVkxheW91dC5ocHANCi1pbmNsdWRlL2dwc3RrL1ZQbG90RXhjZXB0aW9uLmhwcA0KIGlu Y2x1ZGUvZ3BzdGsvVmFsaWRUeXBlLmhwcA0KIGluY2x1ZGUvZ3BzdGsvVmFyaWFibGUuaHBwDQog aW5jbHVkZS9ncHN0ay9WZWN0b3IuaHBwDQpAQCAtMzQ0LDYgKzQ2NSw3IEBAIGluY2x1ZGUvZ3Bz dGsvVmVjdG9yQmFzZS5ocHANCiBpbmNsdWRlL2dwc3RrL1ZlY3RvckJhc2VPcGVyYXRvcnMuaHBw DQogaW5jbHVkZS9ncHN0ay9WZWN0b3JPcGVyYXRvcnMuaHBwDQogaW5jbHVkZS9ncHN0ay9WaWV3 ZXJNYW5hZ2VyLmhwcA0KK2luY2x1ZGUvZ3BzdGsvV0dTODRFbGxpcHNvaWQuaHBwDQogaW5jbHVk ZS9ncHN0ay9XR1M4NEdlb2lkLmhwcA0KIGluY2x1ZGUvZ3BzdGsvV2VpZ2h0QmFzZS5ocHANCiBp bmNsdWRlL2dwc3RrL1d4T2JzTWFwLmhwcA0KQEAgLTM2NiwyNiArNDg4LDMyIEBAIGluY2x1ZGUv Z3BzdGsvZ3BzX2NvbnN0YW50cy5ocHANCiBpbmNsdWRlL2dwc3RrL2dwc3RrcGxhdGZvcm0uaA0K IGluY2x1ZGUvZ3BzdGsvaWNkXzIwMF9jb25zdGFudHMuaHBwDQogaW5jbHVkZS9ncHN0ay9pbmRl eC5ocHANCitpbmNsdWRlL2dwc3RrL2xvZ3N0cmVhbS5ocHANCiBpbmNsdWRlL2dwc3RrL21lcmdl UENvZGVXb3Jkcy5oDQogaW5jbHVkZS9ncHN0ay9taXNjZGVmcy5ocHANCiBpbmNsdWRlL2dwc3Rr L21pc2NlbnVtLmhwcA0KK2luY2x1ZGUvZ3BzdGsvcGxvdHR5cGVzLmhwcA0KIGluY2x1ZGUvZ3Bz dGsvcmFuZG9tLmhwcA0KLWluY2x1ZGUvZ3BzdGsvcmVnZXguaA0KIGluY2x1ZGUvZ3BzdGsvc3Rs X2hlbHBlcnMuaHBwDQotaW5jbHVkZS9ncHN0ay94cmVnZXgyLmgNCitsaWIvbGliZ2VvZHluLmEN CitsaWIvbGliZ2VvZHluLnNvDQorbGliL2xpYmdlb2R5bi5zby4xNw0KIGxpYi9saWJnZW9tYXRp Y3MuYQ0KIGxpYi9saWJnZW9tYXRpY3Muc28NCi1saWIvbGliZ2VvbWF0aWNzLnNvLjE1DQorbGli L2xpYmdlb21hdGljcy5zby4xNw0KIGxpYi9saWJncHN0ay5hDQogbGliL2xpYmdwc3RrLnNvDQot bGliL2xpYmdwc3RrLnNvLjE1DQorbGliL2xpYmdwc3RrLnNvLjE3DQogbGliL2xpYnByb2NmcmFt ZS5hDQogbGliL2xpYnByb2NmcmFtZS5zbw0KLWxpYi9saWJwcm9jZnJhbWUuc28uMTUNCitsaWIv bGlicHJvY2ZyYW1lLnNvLjE3DQogbGliL2xpYnJ4aW8uYQ0KIGxpYi9saWJyeGlvLnNvDQotbGli L2xpYnJ4aW8uc28uMTUNCitsaWIvbGlicnhpby5zby4xNw0KK2xpYi9saWJ2ZHJhdy5hDQorbGli L2xpYnZkcmF3LnNvDQorbGliL2xpYnZkcmF3LnNvLjE3DQogbGliL2xpYnZwbG90LmENCiBsaWIv bGlidnBsb3Quc28NCi1saWIvbGlidnBsb3Quc28uMTUNCitsaWIvbGlidnBsb3Quc28uMTcNCiBA ZGlycm0gaW5jbHVkZS9ncHN0aw0KSW5kZXg6IGZpbGVzL3BhdGNoLUphbXJ1bGVzDQo9PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09DQpSQ1MgZmlsZTogL2Jhc2UvRnJlZUJTRC1DVlMvcG9ydHMvYXN0cm8vZ3BzdGsvZmlsZXMv cGF0Y2gtSmFtcnVsZXMsdg0KcmV0cmlldmluZyByZXZpc2lvbiAxLjQNCmRpZmYgLXUgLXAgLXIx LjQgcGF0Y2gtSmFtcnVsZXMNCi0tLSBmaWxlcy9wYXRjaC1KYW1ydWxlcwkyMyBNYXkgMjAwOSAx NDoyMzozMiAtMDAwMAkxLjQNCisrKyBmaWxlcy9wYXRjaC1KYW1ydWxlcwkxMCBGZWIgMjAxMiAw Mzo0NTowNiAtMDAwMA0KQEAgLTEsMzEgKzEsMzYgQEANCi0tLS0gSmFtcnVsZXMub3JpZwkyMDA4 LTAzLTEyIDAwOjQ4OjIxLjAwMDAwMDAwMCArMDkwMA0KLSsrKyBKYW1ydWxlcwkyMDA5LTA1LTA4 IDIzOjU3OjA1LjAwMDAwMDAwMCArMDkwMA0KKyRGcmVlQlNEJA0KKw0KKy0gbWFrZSBzdXJlIGxp bmsgcHVsbHMgaW4gbGlic3RkYysrIChqYW0gbGluayBpbnZva2VkIGFzIGNjIGluc3RlYWQgb2Yg YysrKQ0KKy0gZG9uJ3QgbmFtZSBzaGxpYiBmaWxlcyB3aXRoIGV4dHJhIHRyYWlsaW5nIC4wDQor DQorLS0tIEphbXJ1bGVzLm9yaWcJMjAxMS0wMi0yMiAwOToxMDozMC4wMDAwMDAwMDAgLTA3MDAN CisrKysgSmFtcnVsZXMJMjAxMi0wMi0wOSAxNzoxNDo0OC4wMDAwMDAwMDAgLTA3MDANCiBAQCAt MzMsNiArMzMsMTAgQEANCi0gICAgICAgY2FzZSBDWUdXSU4gOg0KLSAgICAgICAgICBMSU5LTElC UyArPSAtbHN0ZGMrKyA7DQotIA0KLSsgICAgICBjYXNlIEZSRUVCU0QgOg0KLSsgICAgICAgICBM SU5LTElCUyArPSAtbHN0ZGMrKyA7DQotKyAgICAgICAgIENDU0hBUkVfRkxBR1MgPSAtZlBJQyA7 DQotKw0KLSAgICAgICBjYXNlIExJTlVYIDoNCi0gICAgICAgICAgTElOS0xJQlMgKz0gLWxzdGRj KysgOw0KLSAgICAgICAgICBDQ1NIQVJFX0ZMQUdTID0gLWZQSUMgOw0KLUBAIC0xMTUsNyArMTE5 LDcgQEANCi0gIyBjb21waWxlciBzcGVjaWZpYyBzdHVmZiAtIHRoaXMgaXMgcHJvYmFibHkgYWN0 dWFsbHkgcHJldHR5IGNsdW1zeQ0KLSBpZiAoICQoQ0MpICE9IGdjYyApDQotIHsNCi0tICAgTkVF RF9HRVRPUFQgPSB0cnVlIDsNCi0rICAgI05FRURfR0VUT1BUID0gdHJ1ZSA7DQotIH0NCi0gDQot IGlmICQoUFJFRklYKQ0KLUBAIC0yMTUsNyArMjE5LDcgQEANCi0gICAgaWYgJChVTklYKSAmJiAk KE9TKSAhPSBDWUdXSU4gJiYgJChPUykgIT0gTUFDT1NYDQotICAgIHsNCi0gICAgICAgc29uYW1l ID0gJChMSUJQUkVGSVgpJCg8OlM9JChTVUZMSUJTSFIpKS4kKEdQU1RLX1NPX1ZFUlNJT04pIDsN Ci0tICAgICAgc2hsaWIgPSAkKExJQlBSRUZJWCkkKDw6Uz0kKFNVRkxJQlNIUikuJChHUFNUS19T T19WRVJTSU9OKS4wKSA7DQotKyAgICAgIHNobGliID0gJChMSUJQUkVGSVgpJCg8OlM9JChTVUZM SUJTSFIpKS4kKEdQU1RLX1NPX1ZFUlNJT04pIDsNCi0gICAgICAgc2hyb2JqcyA9ICQoPjpTPSQo U1VGT0JKMikpIDsNCi0gICAgICAgT2JqZWN0Q2NGbGFncyAkKHNocm9ianMpIDogJChDQ1NIQVJF X0ZMQUdTKSA7DQotICAgICAgIE9iamVjdEMrK0ZsYWdzICQoc2hyb2JqcykgOiAkKENDU0hBUkVf RkxBR1MpIDsNCisgICAgICAgY2FzZSBDWUdXSU4gOg0NCisgICAgICAgICAgTElOS0xJQlMgKz0g LWxzdGRjKysgOw0NCisgDQ0KKysgICAgICBjYXNlIEZSRUVCU0QgOg0NCisrICAgICAgICAgTElO S0xJQlMgKz0gLWxzdGRjKysgOw0NCisrICAgICAgICAgQ0NTSEFSRV9GTEFHUyA9IC1mUElDIDsN DQorKw0NCisgICAgICAgY2FzZSBMSU5VWCA6DQ0KKyAgICAgICAgICBMSU5LTElCUyArPSAtbHN0 ZGMrKyA7DQ0KKyAgICAgICAgICBDQ1NIQVJFX0ZMQUdTID0gLWZQSUMgOw0NCitAQCAtMTMzLDcg KzEzNyw3IEBADQorICMgY29tcGlsZXIgc3BlY2lmaWMgc3R1ZmYgLSB0aGlzIGlzIHByb2JhYmx5 IGFjdHVhbGx5IHByZXR0eSBjbHVtc3kNDQorIGlmICggJChDQykgIT0gZ2NjICkNDQorIHsNDQor LSAgIE5FRURfR0VUT1BUID0gdHJ1ZSA7DQ0KKysgICAjTkVFRF9HRVRPUFQgPSB0cnVlIDsNDQor IH0NDQorIA0NCisgaWYgJChQUkVGSVgpDQ0KK0BAIC0yMzgsNyArMjQyLDcgQEANCisgICAgaWYg JChVTklYKSAmJiAkKE9TKSAhPSBDWUdXSU4NDQorICAgIHsNDQorICAgICAgc29uYW1lID0gJChM SUJQUkVGSVgpJCg8OlM9JChTVUZMSUJTSFIpKS4kKEdQU1RLX1NPX1ZFUlNJT04pIDsNCistICAg ICBzaGxpYiA9ICQoTElCUFJFRklYKSQoPDpTPSQoU1VGTElCU0hSKS4kKEdQU1RLX1NPX1ZFUlNJ T04pLjApIDsNDQorKyAgICAgc2hsaWIgPSAkKExJQlBSRUZJWCkkKDw6Uz0kKFNVRkxJQlNIUikp LiQoR1BTVEtfU09fVkVSU0lPTikgOw0NCisgICAgICBzaHJvYmpzID0gJCg+OlM9JChTVUZPQkoy KSkgOw0NCisgICAgICBPYmplY3RDY0ZsYWdzICQoc2hyb2JqcykgOiAkKENDU0hBUkVfRkxBR1Mp IDsNDQorICAgICAgT2JqZWN0QysrRmxhZ3MgJChzaHJvYmpzKSA6ICQoQ0NTSEFSRV9GTEFHUykg Ow0NCkluZGV4OiBmaWxlcy9wYXRjaC1hcHBzOjpjaGVja3Rvb2xzOjpmaWNhY2hlY2suY3BwDQo9 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09DQpSQ1MgZmlsZTogZmlsZXMvcGF0Y2gtYXBwczo6Y2hlY2t0b29sczo6ZmljYWNo ZWNrLmNwcA0KZGlmZiAtTiBmaWxlcy9wYXRjaC1hcHBzOjpjaGVja3Rvb2xzOjpmaWNhY2hlY2su Y3BwDQotLS0gZmlsZXMvcGF0Y2gtYXBwczo6Y2hlY2t0b29sczo6ZmljYWNoZWNrLmNwcAkyIE5v diAyMDA2IDEzOjEzOjE3IC0wMDAwCTEuMQ0KKysrIC9kZXYvbnVsbAkxIEphbiAxOTcwIDAwOjAw OjAwIC0wMDAwDQpAQCAtMSwxOCArMCwwIEBADQotLS0tIGFwcHMvY2hlY2t0b29scy9maWNhY2hl Y2suY3BwLm9yaWcJV2VkIEphbiAxOSAxOTozNjozMCAyMDA1DQotKysrIGFwcHMvY2hlY2t0b29s cy9maWNhY2hlY2suY3BwCVRodSBNYXkgMTIgMTU6MTI6MjYgMjAwNQ0KLUBAIC0xLDExICsxLDE0 IEBADQotICNwcmFnbWEgaWRlbnQgIiRJZDogLy9kZXBvdC9zZ2wvZ3BzdGsvZGV2L2FwcHMvY2hl Y2t0b29scy9maWNhY2hlY2suY3BwIzEgJCINCi0gDQotK3VzaW5nIG5hbWVzcGFjZSBzdGQ7DQot Kw0KLSsjaW5jbHVkZSA8b3N0cmVhbT4NCi0rDQotICNpbmNsdWRlICJDaGVja0ZyYW1lLmhwcCIN Ci0gDQotICNpbmNsdWRlICJGSUNBU3RyZWFtLmhwcCINCi0gI2luY2x1ZGUgIkZJQ0RhdGEuaHBw Ig0KLSANCi0tdXNpbmcgbmFtZXNwYWNlIHN0ZDsNCi0gdXNpbmcgbmFtZXNwYWNlIGdwc3RrOw0K LSANCi0gaW50IG1haW4oaW50IGFyZ2MsIGNoYXIqIGFyZ3ZbXSkNCkluZGV4OiBmaWxlcy9wYXRj aC1hcHBzOjpjaGVja3Rvb2xzOjpmaWNjaGVjay5jcHANCj09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NClJDUyBmaWxlOiBm aWxlcy9wYXRjaC1hcHBzOjpjaGVja3Rvb2xzOjpmaWNjaGVjay5jcHANCmRpZmYgLU4gZmlsZXMv cGF0Y2gtYXBwczo6Y2hlY2t0b29sczo6ZmljY2hlY2suY3BwDQotLS0gZmlsZXMvcGF0Y2gtYXBw czo6Y2hlY2t0b29sczo6ZmljY2hlY2suY3BwCTIgTm92IDIwMDYgMTM6MTM6MTcgLTAwMDAJMS4x DQorKysgL2Rldi9udWxsCTEgSmFuIDE5NzAgMDA6MDA6MDAgLTAwMDANCkBAIC0xLDE3ICswLDAg QEANCi0tLS0gYXBwcy9jaGVja3Rvb2xzL2ZpY2NoZWNrLmNwcC5vcmlnCVdlZCBKYW4gMTkgMTk6 MzY6MzAgMjAwNQ0KLSsrKyBhcHBzL2NoZWNrdG9vbHMvZmljY2hlY2suY3BwCVRodSBNYXkgMTIg MTU6MTI6MjYgMjAwNQ0KLUBAIC0xLDExICsxLDEzIEBADQotICNwcmFnbWEgaWRlbnQgIiRJZDog Ly9kZXBvdC9zZ2wvZ3BzdGsvZGV2L2FwcHMvY2hlY2t0b29scy9maWNjaGVjay5jcHAjMSAkIg0K LSANCi0rdXNpbmcgbmFtZXNwYWNlIHN0ZDsNCi0rI2luY2x1ZGUgPG9zdHJlYW0+DQotKw0KLSAj aW5jbHVkZSAiQ2hlY2tGcmFtZS5ocHAiDQotIA0KLSAjaW5jbHVkZSAiRklDU3RyZWFtLmhwcCIN Ci0gI2luY2x1ZGUgIkZJQ0RhdGEuaHBwIg0KLSANCi0tdXNpbmcgbmFtZXNwYWNlIHN0ZDsNCi0g dXNpbmcgbmFtZXNwYWNlIGdwc3RrOw0KLSANCi0gaW50IG1haW4oaW50IGFyZ2MsIGNoYXIqIGFy Z3ZbXSkNCkluZGV4OiBmaWxlcy9wYXRjaC1hcHBzOjpjaGVja3Rvb2xzOjpybXdjaGVjay5jcHAN Cj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT0NClJDUyBmaWxlOiBmaWxlcy9wYXRjaC1hcHBzOjpjaGVja3Rvb2xzOjpybXdj aGVjay5jcHANCmRpZmYgLU4gZmlsZXMvcGF0Y2gtYXBwczo6Y2hlY2t0b29sczo6cm13Y2hlY2su Y3BwDQotLS0gZmlsZXMvcGF0Y2gtYXBwczo6Y2hlY2t0b29sczo6cm13Y2hlY2suY3BwCTIgTm92 IDIwMDYgMTM6MTM6MTcgLTAwMDAJMS4xDQorKysgL2Rldi9udWxsCTEgSmFuIDE5NzAgMDA6MDA6 MDAgLTAwMDANCkBAIC0xLDE4ICswLDAgQEANCi0tLS0gYXBwcy9jaGVja3Rvb2xzL3Jtd2NoZWNr LmNwcC5vcmlnCVdlZCBKYW4gMTkgMTk6MzY6MzAgMjAwNQ0KLSsrKyBhcHBzL2NoZWNrdG9vbHMv cm13Y2hlY2suY3BwCVRodSBNYXkgMTIgMTU6MTI6MjYgMjAwNQ0KLUBAIC0xLDEyICsxLDE0IEBA DQotICNwcmFnbWEgaWRlbnQgIiRJZDogLy9kZXBvdC9zZ2wvZ3BzdGsvZGV2L2FwcHMvY2hlY2t0 b29scy9ybXdjaGVjay5jcHAjMSAkIg0KLSANCi0rdXNpbmcgbmFtZXNwYWNlIHN0ZDsNCi0rI2lu Y2x1ZGUgPG9zdHJlYW0+DQotKw0KLSAjaW5jbHVkZSAiQ2hlY2tGcmFtZS5ocHAiDQotIA0KLSAj aW5jbHVkZSAiUmluZXhNZXRTdHJlYW0uaHBwIg0KLSAjaW5jbHVkZSAiUmluZXhNZXREYXRhLmhw cCINCi0gI2luY2x1ZGUgIlJpbmV4TWV0RmlsdGVyT3BlcmF0b3JzLmhwcCINCi0gDQotLXVzaW5n IG5hbWVzcGFjZSBzdGQ7DQotIHVzaW5nIG5hbWVzcGFjZSBncHN0azsNCi0gDQotIGludCBtYWlu KGludCBhcmdjLCBjaGFyKiBhcmd2W10pDQpJbmRleDogZmlsZXMvcGF0Y2gtYXBwczo6Y2hlY2t0 b29sczo6cm53Y2hlY2suY3BwDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQpSQ1MgZmlsZTogZmlsZXMvcGF0Y2gtYXBw czo6Y2hlY2t0b29sczo6cm53Y2hlY2suY3BwDQpkaWZmIC1OIGZpbGVzL3BhdGNoLWFwcHM6OmNo ZWNrdG9vbHM6OnJud2NoZWNrLmNwcA0KLS0tIGZpbGVzL3BhdGNoLWFwcHM6OmNoZWNrdG9vbHM6 OnJud2NoZWNrLmNwcAkyIE5vdiAyMDA2IDEzOjEzOjE3IC0wMDAwCTEuMQ0KKysrIC9kZXYvbnVs bAkxIEphbiAxOTcwIDAwOjAwOjAwIC0wMDAwDQpAQCAtMSwxNyArMCwwIEBADQotLS0tIGFwcHMv Y2hlY2t0b29scy9ybndjaGVjay5jcHAub3JpZwlXZWQgSmFuIDE5IDE5OjM2OjMwIDIwMDUNCi0r KysgYXBwcy9jaGVja3Rvb2xzL3Jud2NoZWNrLmNwcAlUaHUgTWF5IDEyIDE1OjEyOjI2IDIwMDUN Ci1AQCAtMSwxMSArMSwxMyBAQA0KLSAjcHJhZ21hIGlkZW50ICIkSWQ6IC8vZGVwb3Qvc2dsL2dw c3RrL2Rldi9hcHBzL2NoZWNrdG9vbHMvcm53Y2hlY2suY3BwIzEgJCINCi0gDQotK3VzaW5nIG5h bWVzcGFjZSBzdGQ7DQotKyNpbmNsdWRlIDxvc3RyZWFtPg0KLSsNCi0gI2luY2x1ZGUgIkNoZWNr RnJhbWUuaHBwIg0KLSANCi0gI2luY2x1ZGUgIlJpbmV4TmF2U3RyZWFtLmhwcCINCi0gI2luY2x1 ZGUgIlJpbmV4TmF2RGF0YS5ocHAiDQotIA0KLS11c2luZyBuYW1lc3BhY2Ugc3RkOw0KLSB1c2lu ZyBuYW1lc3BhY2UgZ3BzdGs7DQotIA0KLSBpbnQgbWFpbihpbnQgYXJnYywgY2hhciogYXJndltd KQ0KSW5kZXg6IGZpbGVzL3BhdGNoLWFwcHM6OmNoZWNrdG9vbHM6OnJvd2NoZWNrLmNwcA0KPT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PQ0KUkNTIGZpbGU6IGZpbGVzL3BhdGNoLWFwcHM6OmNoZWNrdG9vbHM6OnJvd2NoZWNr LmNwcA0KZGlmZiAtTiBmaWxlcy9wYXRjaC1hcHBzOjpjaGVja3Rvb2xzOjpyb3djaGVjay5jcHAN Ci0tLSBmaWxlcy9wYXRjaC1hcHBzOjpjaGVja3Rvb2xzOjpyb3djaGVjay5jcHAJMiBOb3YgMjAw NiAxMzoxMzoxNyAtMDAwMAkxLjENCisrKyAvZGV2L251bGwJMSBKYW4gMTk3MCAwMDowMDowMCAt MDAwMA0KQEAgLTEsMTcgKzAsMCBAQA0KLS0tLSBhcHBzL2NoZWNrdG9vbHMvcm93Y2hlY2suY3Bw Lm9yaWcJV2VkIEphbiAxOSAxOTozNjozMCAyMDA1DQotKysrIGFwcHMvY2hlY2t0b29scy9yb3dj aGVjay5jcHAJVGh1IE1heSAxMiAxNToxMjoyNiAyMDA1DQotQEAgLTEsMTEgKzEsMTMgQEANCi0g I3ByYWdtYSBpZGVudCAiJElkOiAvL2RlcG90L3NnbC9ncHN0ay9kZXYvYXBwcy9jaGVja3Rvb2xz L3Jvd2NoZWNrLmNwcCMxICQiDQotIA0KLSt1c2luZyBuYW1lc3BhY2Ugc3RkOw0KLSsjaW5jbHVk ZSA8b3N0cmVhbT4NCi0rDQotICNpbmNsdWRlICJDaGVja0ZyYW1lLmhwcCINCi0gDQotICNpbmNs dWRlICJSaW5leE9ic1N0cmVhbS5ocHAiDQotICNpbmNsdWRlICJSaW5leE9ic0RhdGEuaHBwIg0K LSANCi0tdXNpbmcgbmFtZXNwYWNlIHN0ZDsNCi0gdXNpbmcgbmFtZXNwYWNlIGdwc3RrOw0KLSAN Ci0gaW50IG1haW4oaW50IGFyZ2MsIGNoYXIqIGFyZ3ZbXSkNCkluZGV4OiBmaWxlcy9wYXRjaC1s aWItcnhpby1Ob3ZhdGVsRGF0YS5jcHANCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NClJDUyBmaWxlOiBmaWxlcy9wYXRj aC1saWItcnhpby1Ob3ZhdGVsRGF0YS5jcHANCmRpZmYgLU4gZmlsZXMvcGF0Y2gtbGliLXJ4aW8t Tm92YXRlbERhdGEuY3BwDQotLS0gZmlsZXMvcGF0Y2gtbGliLXJ4aW8tTm92YXRlbERhdGEuY3Bw CTI4IE5vdiAyMDA5IDE1OjE0OjQ3IC0wMDAwCTEuMQ0KKysrIC9kZXYvbnVsbAkxIEphbiAxOTcw IDAwOjAwOjAwIC0wMDAwDQpAQCAtMSwyMyArMCwwIEBADQotLS0tIGxpYi9yeGlvL05vdmF0ZWxE YXRhLmNwcC5GQ1MJMjAwOS0xMS0yNCAwOTowODo0Ni4wMDAwMDAwMDAgKzExMDANCi0rKysgbGli L3J4aW8vTm92YXRlbERhdGEuY3BwCTIwMDktMTEtMjQgMDk6NDA6MzEuMDAwMDAwMDAwICsxMTAw DQotQEAgLTMwNCw3ICszMDQsOSBAQA0KLSAgICAgICAgICAgICAgICAgICAgICBjb3V0IDw8ICJk YXRhc2l6ZToiIDw8IGRhdGFzaXplIDw8IGVuZGw7DQotIA0KLSAgICAgICAgICAgICAgICAgICAg ICAvLyByZWFkIHRoZSByZXN0IG9mIHRoZSByZWNvcmQNCi0tICAgICAgICAgICAgICAgICAgaWYo ZGF0YXNpemUtMTIgPj0gMTAyNCkgew0KLSsJCSAgICAgLy8gTm90ZTogT0VNMiBUaGUgTWVzc2Fn ZSBieXRlIGNvdW50IGVxdWFscyB0aGUgdG90YWwgDQotKwkJICAgICAvLyBsZW5ndGggb2YgdGhl IGRhdGEgYmxvY2sgaW5jbHVkaW5nIHRoZSBoZWFkZXIuDQotKyAgICAgICAgICAgICAgICAgIGlm KGRhdGFzaXplID49IHNpemVvZihidWZmZXIpKSB7DQotICAgICAgICAgICAgICAgICAgICAgIC8v RkZTdHJlYW1FcnJvciBmZSgiUmVhZCBlcnJvciAtIGJ1ZmZlciBvdmVyZmxvdyIpOw0KLSAgICAg ICAgICAgICAgICAgICAgICAvL0dQU1RLX1RIUk9XKGZlKTsNCi0gICAgICAgICAgICAgICAgICAg ICAgZmFpbHVyZSA9IDE7DQotQEAgLTQ0MCw3ICs0NDIsOCBAQA0KLSAgICAgICAgICAgICAgICAg ICAgICAvLyAtLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0NCi0gICAgICAg ICAgICAgICAgICAgICAgLy8gcmVhZCB0aGUgZGF0YSBtZXNzYWdlLCBidXQgZG9uJ3Qgb3Zlcndy aXRlIHRoZSBoZWFkZXINCi0gICAgICAgICAgICAgICAgICAgICAgLy8gZmlyc3QgY2hlY2sgYWdh aW5zdCBidWZmZXIgb3ZlcmZsb3cNCi0tICAgICAgICAgICAgICAgICAgaWYoZGF0YXNpemUtMjgg Pj0gMTAyNCB8fCBkYXRhc2l6ZS0yOCA8IDApIHsNCi0rCQkgICAgIC8vIE9FTTQgdG90YWwgYnVm ZmVyIHVzYWdlID0gaGVhZGVyK2RhdGENCi0rICAgICAgICAgICAgICAgICAgaWYoZGF0YXNpemUr MjggPj0gc2l6ZW9mKGJ1ZmZlcikpIHsNCi0gICAgICAgICAgICAgICAgICAgICAgLy9GRlN0cmVh bUVycm9yIGZlKCJSZWFkIGVycm9yIC0gYnVmZmVyIG92ZXJmbG93Iik7DQotICAgICAgICAgICAg ICAgICAgICAgIC8vR1BTVEtfVEhST1coZmUpOw0KLSAgICAgICAgICAgICAgICAgICAgICBmYWls dXJlID0gMTsNCkluZGV4OiBmaWxlcy9wYXRjaC1saWItcnhpby1Ob3ZhdGVsRGF0YS5ocHANCj09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT0NClJDUyBmaWxlOiBmaWxlcy9wYXRjaC1saWItcnhpby1Ob3ZhdGVsRGF0YS5ocHAN CmRpZmYgLU4gZmlsZXMvcGF0Y2gtbGliLXJ4aW8tTm92YXRlbERhdGEuaHBwDQotLS0gZmlsZXMv cGF0Y2gtbGliLXJ4aW8tTm92YXRlbERhdGEuaHBwCTI4IE5vdiAyMDA5IDE1OjE0OjQ3IC0wMDAw CTEuMQ0KKysrIC9kZXYvbnVsbAkxIEphbiAxOTcwIDAwOjAwOjAwIC0wMDAwDQpAQCAtMSwxMSAr MCwwIEBADQotLS0tIGxpYi9yeGlvL05vdmF0ZWxEYXRhLmhwcC5GQ1MJMjAwOS0xMS0yNCAwOTow ODo1OC4wMDAwMDAwMDAgKzExMDANCi0rKysgbGliL3J4aW8vTm92YXRlbERhdGEuaHBwCTIwMDkt MTEtMjQgMDk6MDk6MzQuMDAwMDAwMDAwICsxMTAwDQotQEAgLTE2NSw3ICsxNjUsNyBAQA0KLSAN Ci0gICAgcHJpdmF0ZToNCi0gICAgICAgICAgLy8vIHByaXZhdGUgZGF0YSBtZW1iZXJzDQotLSAg ICAgIHVuc2lnbmVkIGNoYXIgYnVmZmVyWzEwMjRdOyAgIC8vLzwgYnVmZmVyIGZvciByYXcgZGF0 YQ0KLSsgICAgICB1bnNpZ25lZCBjaGFyIGJ1ZmZlclsyMDQ4XTsgICAvLy88IGJ1ZmZlciBmb3Ig cmF3IGRhdGENCi0gDQotICAgICAgICAgIC8vLyBSZWZlcmVuY2UgR1BTIHdlZWssIGZvciBPRU0y LCB3aGVyZSB0aGUgbmF2IHJlY29yZHMgcmVxdWlyZSBhIEdQUyB3ZWVrLA0KLSAgICAgICAgICAv Ly8gYnV0IG9ubHkgdGhlIG9icyByZWNvcmRzIGhhdmUgb25lLCBhbmQgdGhlbiBpdCBpcyAxMC1i aXQuDQpJbmRleDogZmlsZXMvcGF0Y2gtc3JjLU1pc2NNYXRoLmhwcA0KPT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQ0KUkNT IGZpbGU6IGZpbGVzL3BhdGNoLXNyYy1NaXNjTWF0aC5ocHANCmRpZmYgLU4gZmlsZXMvcGF0Y2gt c3JjLU1pc2NNYXRoLmhwcA0KLS0tIGZpbGVzL3BhdGNoLXNyYy1NaXNjTWF0aC5ocHAJMTEgSmFu IDIwMDcgMTg6MTY6MjcgLTAwMDAJMS4xDQorKysgL2Rldi9udWxsCTEgSmFuIDE5NzAgMDA6MDA6 MDAgLTAwMDANCkBAIC0xLDEyICswLDAgQEANCi0tLS0gc3JjL01pc2NNYXRoLmhwcC5vcmlnCVRo dSBKYW4gMTEgMjE6Mjk6NDkgMjAwNw0KLSsrKyBzcmMvTWlzY01hdGguaHBwCVRodSBKYW4gMTEg MjE6MzA6MzcgMjAwNw0KLUBAIC0xNDUsNiArMTQ1LDkgQEANCi0gICAgICAgfQ0KLSAgICB9ICAv LyBlbmQgdm9pZCBMYWdyYW5nZUludGVycG9sYXRpb24odmVjdG9yLCB2ZWN0b3IsIGNvbnN0IFQs IFQmLCBUJikNCi0gDQotKyAgIHRlbXBsYXRlIDxjbGFzcyBUPg0KLSsgICBUIFJTUyAoVCBhYSwg VCBiYiwgVCBjYyk7DQotKw0KLSAgICAvLy8gUGVyZm9ybSB0aGUgcm9vdCBzdW0gc3F1YXJlIG9m IGFhLCBiYg0KLSAgICB0ZW1wbGF0ZSA8Y2xhc3MgVD4NCi0gICAgVCBSU1MgKFQgYWEsIFQgYmIp DQpJbmRleDogZmlsZXMvcGF0Y2gtc3JjLWdldG9wdC5jDQo9PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQpSQ1MgZmlsZTog ZmlsZXMvcGF0Y2gtc3JjLWdldG9wdC5jDQpkaWZmIC1OIGZpbGVzL3BhdGNoLXNyYy1nZXRvcHQu Yw0KLS0tIGZpbGVzL3BhdGNoLXNyYy1nZXRvcHQuYwkxMSBKYW4gMjAwNyAxODoxNjoyNyAtMDAw MAkxLjENCisrKyAvZGV2L251bGwJMSBKYW4gMTk3MCAwMDowMDowMCAtMDAwMA0KQEAgLTEsMTEg KzAsMCBAQA0KLS0tLSBzcmMvZ2V0b3B0LmMub3JpZwlUaHUgSmFuIDExIDIxOjM0OjUwIDIwMDcN Ci0rKysgc3JjL2dldG9wdC5jCVRodSBKYW4gMTEgMjE6MzY6MjQgMjAwNw0KLUBAIC0zMSw3ICsz MSw3IEBADQotICMgaW5jbHVkZSA8Y29uZmlnLmg+DQotICNlbmRpZg0KLSANCi0tI2lmIGRlZmlu ZWQoV0lOMzIpIHx8IGRlZmluZWQoX1dJTjMyKQ0KLSsjaWYgZGVmaW5lZChXSU4zMikgfHwgZGVm aW5lZChfV0lOMzIpIHx8IGRlZmluZWQoX19GcmVlQlNEX18pDQotICNkZWZpbmUgSEFWRV9TVFJJ TkdfSCAxDQotICNlbmRpZg0KLSA= --XjFns327qK-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 16:56:15 2012 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 8D797106564A; Mon, 27 Feb 2012 16:56:15 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 650EE8FC15; Mon, 27 Feb 2012 16:56:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RGuFPs022625; Mon, 27 Feb 2012 16:56:15 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RGuFvb022621; Mon, 27 Feb 2012 16:56:15 GMT (envelope-from linimon) Date: Mon, 27 Feb 2012 16:56:15 GMT Message-Id: <201202271656.q1RGuFvb022621@freefall.freebsd.org> To: rfarmer@predatorlabs.net, me@janh.de, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/164029: [PATCH] graphics/bmeps fix build with databases/gdbm 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: Mon, 27 Feb 2012 16:56:15 -0000 Synopsis: [PATCH] graphics/bmeps fix build with databases/gdbm State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Mon Feb 27 16:54:47 UTC 2012 State-Changed-Why: new patch received as feedback. http://www.freebsd.org/cgi/query-pr.cgi?pr=164029 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 17:19:14 2012 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 EFDFB1065676; Mon, 27 Feb 2012 17:19:14 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C825D8FC1C; Mon, 27 Feb 2012 17:19:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RHJEYq041869; Mon, 27 Feb 2012 17:19:14 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RHJESq041865; Mon, 27 Feb 2012 17:19:14 GMT (envelope-from jgh) Date: Mon, 27 Feb 2012 17:19:14 GMT Message-Id: <201202271719.q1RHJESq041865@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165504: security/openvpn-devel: update to snapshot 2012-08 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: Mon, 27 Feb 2012 17:19:15 -0000 Synopsis: security/openvpn-devel: update to snapshot 2012-08 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Mon Feb 27 17:19:14 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165504 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 17:39:53 2012 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 93A3A10656DC; Mon, 27 Feb 2012 17:39:53 +0000 (UTC) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4CF828FC0C; Mon, 27 Feb 2012 17:39:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RHdrvY061855; Mon, 27 Feb 2012 17:39:53 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RHdrej061851; Mon, 27 Feb 2012 17:39:53 GMT (envelope-from arved) Date: Mon, 27 Feb 2012 17:39:53 GMT Message-Id: <201202271739.q1RHdrej061851@freefall.freebsd.org> To: jhein@symmetricom.com, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: arved@FreeBSD.org Cc: Subject: Re: ports/165139: [PATCH] astro/gpstk: update to 1.7 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: Mon, 27 Feb 2012 17:39:53 -0000 Synopsis: [PATCH] astro/gpstk: update to 1.7 State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Mon Feb 27 17:39:48 UTC 2012 State-Changed-Why: Committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=165139 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 17:50:08 2012 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 79AA3106564A for ; Mon, 27 Feb 2012 17:50:08 +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 4FAC08FC14 for ; Mon, 27 Feb 2012 17:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RHo8VF070842 for ; Mon, 27 Feb 2012 17:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RHo8vM070838; Mon, 27 Feb 2012 17:50:08 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 17:50:08 GMT Message-Id: <201202271750.q1RHo8vM070838@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/165139: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 17:50:08 -0000 The following reply was made to PR ports/165139; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/165139: commit references a PR Date: Mon, 27 Feb 2012 17:40:51 +0000 (UTC) arved 2012-02-27 17:39:39 UTC FreeBSD ports repository Modified files: astro/gpstk Makefile distinfo pkg-plist astro/gpstk/files patch-Jamrules Removed files: astro/gpstk/files patch-apps::checktools::ficacheck.cpp patch-apps::checktools::ficcheck.cpp patch-apps::checktools::rmwcheck.cpp patch-apps::checktools::rnwcheck.cpp patch-apps::checktools::rowcheck.cpp patch-lib-rxio-NovatelData.cpp patch-lib-rxio-NovatelData.hpp patch-src-MiscMath.hpp patch-src-getopt.c Log: Update to 1.7 Pass maintainership to submitter PR: 165139 Submitted by: John Hein Revision Changes Path 1.14 +17 -20 ports/astro/gpstk/Makefile 1.5 +2 -2 ports/astro/gpstk/distinfo 1.5 +16 -11 ports/astro/gpstk/files/patch-Jamrules 1.2 +0 -18 ports/astro/gpstk/files/patch-apps::checktools::ficacheck.cpp (dead) 1.2 +0 -17 ports/astro/gpstk/files/patch-apps::checktools::ficcheck.cpp (dead) 1.2 +0 -18 ports/astro/gpstk/files/patch-apps::checktools::rmwcheck.cpp (dead) 1.2 +0 -17 ports/astro/gpstk/files/patch-apps::checktools::rnwcheck.cpp (dead) 1.2 +0 -17 ports/astro/gpstk/files/patch-apps::checktools::rowcheck.cpp (dead) 1.2 +0 -23 ports/astro/gpstk/files/patch-lib-rxio-NovatelData.cpp (dead) 1.2 +0 -11 ports/astro/gpstk/files/patch-lib-rxio-NovatelData.hpp (dead) 1.2 +0 -12 ports/astro/gpstk/files/patch-src-MiscMath.hpp (dead) 1.2 +0 -11 ports/astro/gpstk/files/patch-src-getopt.c (dead) 1.5 +143 -15 ports/astro/gpstk/pkg-plist _______________________________________________ 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" From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 19:30:11 2012 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 3B1711065675 for ; Mon, 27 Feb 2012 19:30:11 +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 F0DE88FC22 for ; Mon, 27 Feb 2012 19:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RJUAH6061642 for ; Mon, 27 Feb 2012 19:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RJUAJJ061638; Mon, 27 Feb 2012 19:30:10 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 19:30:10 GMT Resent-Message-Id: <201202271930.q1RJUAJJ061638@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, Beñat Gonzalez Etxepare Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03F871065674 for ; Mon, 27 Feb 2012 19:22:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E755B8FC27 for ; Mon, 27 Feb 2012 19:22:29 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1RJMTSe066039 for ; Mon, 27 Feb 2012 19:22:29 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1RJMT6B066010; Mon, 27 Feb 2012 19:22:29 GMT (envelope-from nobody) Message-Id: <201202271922.q1RJMT6B066010@red.freebsd.org> Date: Mon, 27 Feb 2012 19:22:29 GMT From: Beñat Gonzalez Etxepare To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165507: [patch] editors/lazarus: hide options menu for coming slave ports 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: Mon, 27 Feb 2012 19:30:11 -0000 >Number: 165507 >Category: ports >Synopsis: [patch] editors/lazarus: hide options menu for coming slave ports >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 19:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Beñat Gonzalez Etxepare >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD servidor.saindua.dyndns.org 9.0-RELEASE FreeBSD 9.0-RELEASE #9: Fri Jan 13 01:32:32 CET 2012 root@servidor.saindua.dyndns.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This change will allow the new lazarus-gtk2 and lazarus-qt4 slave ports to use lazarus master port without showing the options dialog. >How-To-Repeat: >Fix: Patch attached with submission follows: --- /usr/ports/editors/lazarus/Makefile.old 2011-06-23 07:45:05.000000000 +0200 +++ /usr/ports/editors/lazarus/Makefile 2012-01-16 01:05:29.476436000 +0100 @@ -36,8 +36,10 @@ SUB_LIST+= PORTSDIR="${PORTSDIR}" WRKSRC= ${WRKDIR}/${PORTNAME} +.if !defined(WITHOUT_LAZARUS_OPTIONS) OPTIONS= GTK2 "Use gtk20 interface instead of gtk12" on \ QT4 "Use qt4 interface" off +.endif .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 19:30:23 2012 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 5C1BA10656B8; Mon, 27 Feb 2012 19:30:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 318438FC18; Mon, 27 Feb 2012 19:30:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RJUNtN062505; Mon, 27 Feb 2012 19:30:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RJUN6e062495; Mon, 27 Feb 2012 19:30:23 GMT (envelope-from edwin) Date: Mon, 27 Feb 2012 19:30:23 GMT Message-Id: <201202271930.q1RJUN6e062495@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, acm@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165507: [patch] editors/lazarus: hide options menu for coming slave ports 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: Mon, 27 Feb 2012 19:30:23 -0000 Synopsis: [patch] editors/lazarus: hide options menu for coming slave ports Responsible-Changed-From-To: freebsd-ports-bugs->acm Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 27 19:30:22 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165507 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 19:50:08 2012 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 8C523106566B for ; Mon, 27 Feb 2012 19:50:08 +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 68BC68FC12 for ; Mon, 27 Feb 2012 19:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RJo83t081157 for ; Mon, 27 Feb 2012 19:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RJo8cG081156; Mon, 27 Feb 2012 19:50:08 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 19:50:08 GMT Resent-Message-Id: <201202271950.q1RJo8cG081156@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, Jonathan Chen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3F9E1065674 for ; Mon, 27 Feb 2012 19:44:45 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B2D5E8FC16 for ; Mon, 27 Feb 2012 19:44:45 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1RJijiq021673 for ; Mon, 27 Feb 2012 19:44:45 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1RJijIl021672; Mon, 27 Feb 2012 19:44:45 GMT (envelope-from nobody) Message-Id: <201202271944.q1RJijIl021672@red.freebsd.org> Date: Mon, 27 Feb 2012 19:44:45 GMT From: Jonathan Chen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165508: update databases/squirrel-sql to 3.3.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: Mon, 27 Feb 2012 19:50:08 -0000 >Number: 165508 >Category: ports >Synopsis: update databases/squirrel-sql to 3.3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 19:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jonathan Chen >Release: STABLE-9/amd64 >Organization: >Environment: FreeBSD jonathan.chen 9.0-STABLE FreeBSD 9.0-STABLE #0: Fri Jan 20 16:31:18 NZDT 2012 root@jonathan.chen:/usr/obj/usr/src/sys/TAO amd64 >Description: Update databases/squirrel-sql from 3.2.1 to 3.3.0 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/databases/squirrel-sql/Makefile ./Makefile --- /usr/ports/databases/squirrel-sql/Makefile 2011-10-03 08:03:33.000000000 +1300 +++ ./Makefile 2012-02-28 08:30:28.000000000 +1300 @@ -6,7 +6,7 @@ # PORTNAME= squirrel-sql -PORTVERSION= 3.2.1 +PORTVERSION= 3.3.0 CATEGORIES= databases java MASTER_SITES= SF/${PORTNAME}/1-stable/${PORTVERSION}-plainzip DISTNAME= ${PORTNAME}-${PORTVERSION}-optional diff -ruN /usr/ports/databases/squirrel-sql/distinfo ./distinfo --- /usr/ports/databases/squirrel-sql/distinfo 2011-10-03 08:03:33.000000000 +1300 +++ ./distinfo 2012-02-28 08:33:20.000000000 +1300 @@ -1,2 +1,2 @@ -SHA256 (squirrel-sql-3.2.1-optional.tar.gz) = 6e03bea82c25588f2bfb08d5283fae5d2c9c317be2b6288512def062b40a6a54 -SIZE (squirrel-sql-3.2.1-optional.tar.gz) = 32990331 +SHA256 (squirrel-sql-3.3.0-optional.tar.gz) = da42ecc259732e5227160f523123b0549981971fe987ab6e934b179a81d5eb96 +SIZE (squirrel-sql-3.3.0-optional.tar.gz) = 41739319 diff -ruN /usr/ports/databases/squirrel-sql/pkg-plist ./pkg-plist --- /usr/ports/databases/squirrel-sql/pkg-plist 2011-10-03 08:03:33.000000000 +1300 +++ ./pkg-plist 2012-02-28 08:40:02.000000000 +1300 @@ -108,30 +108,34 @@ share/java/squirrel-sql/lib/asm.jar share/java/squirrel-sql/lib/autocomplete.jar share/java/squirrel-sql/lib/axis-jaxrpc.jar +share/java/squirrel-sql/lib/axis-saaj.jar +share/java/squirrel-sql/lib/axis-wsdl4j.jar share/java/squirrel-sql/lib/axis.jar share/java/squirrel-sql/lib/cglib.jar share/java/squirrel-sql/lib/common.jar share/java/squirrel-sql/lib/commons-cli.jar share/java/squirrel-sql/lib/commons-codec.jar share/java/squirrel-sql/lib/commons-collections.jar +share/java/squirrel-sql/lib/commons-discovery.jar share/java/squirrel-sql/lib/commons-httpclient.jar +share/java/squirrel-sql/lib/commons-lang.jar share/java/squirrel-sql/lib/commons-logging.jar +share/java/squirrel-sql/lib/core.jar share/java/squirrel-sql/lib/forms.jar share/java/squirrel-sql/lib/fw.jar share/java/squirrel-sql/lib/hibernate-annotations.jar share/java/squirrel-sql/lib/hibernate-commons-annotations.jar share/java/squirrel-sql/lib/hibernate-entitymanager.jar share/java/squirrel-sql/lib/hibernate.jar +share/java/squirrel-sql/lib/icu4j.jar +share/java/squirrel-sql/lib/javahelp.jar +share/java/squirrel-sql/lib/jide-oss.jar +share/java/squirrel-sql/lib/jmeld.jar share/java/squirrel-sql/lib/jxl.jar share/java/squirrel-sql/lib/log4j.jar share/java/squirrel-sql/lib/nanoxml.jar -share/java/squirrel-sql/lib/openide-loaders.jar -share/java/squirrel-sql/lib/openide.jar -share/java/squirrel-sql/lib/org-netbeans-modules-editor-fold.jar -share/java/squirrel-sql/lib/org-netbeans-modules-editor-lib.jar -share/java/squirrel-sql/lib/org-netbeans-modules-editor-util.jar -share/java/squirrel-sql/lib/org-netbeans-modules-editor.jar -share/java/squirrel-sql/lib/ostermiller-syntax.jar +share/java/squirrel-sql/lib/org.eclipse.equinox.common.jar +share/java/squirrel-sql/lib/osgi.jar share/java/squirrel-sql/lib/rsyntaxtextarea.jar share/java/squirrel-sql/lib/rtext.jar share/java/squirrel-sql/lib/spring-beans.jar @@ -151,8 +155,11 @@ share/java/squirrel-sql/lib/squirrel-sql_ru.jar share/java/squirrel-sql/lib/squirrel-sql_zh_CN.jar share/java/squirrel-sql/lib/stringtemplate.jar +share/java/squirrel-sql/lib/swing-worker.jar share/java/squirrel-sql/lib/treetable.jar share/java/squirrel-sql/lib/versioncheck.jar +share/java/squirrel-sql/lib/x86.jar +share/java/squirrel-sql/lib/xml-apis.jar share/java/squirrel-sql/log4j.properties share/java/squirrel-sql/plugins/codecompletion.jar share/java/squirrel-sql/plugins/codecompletion/changes.txt @@ -187,6 +194,7 @@ share/java/squirrel-sql/plugins/dbcopy/RemainingTimeCalculator.txt share/java/squirrel-sql/plugins/dbcopy/TODO.txt share/java/squirrel-sql/plugins/dbcopy/changes.txt +share/java/squirrel-sql/plugins/dbcopy/command-line.html share/java/squirrel-sql/plugins/dbcopy/copy_small.JPG share/java/squirrel-sql/plugins/dbcopy/database_jdbc_properties/axion.html share/java/squirrel-sql/plugins/dbcopy/database_jdbc_properties/daffodil.html @@ -278,6 +286,10 @@ share/java/squirrel-sql/plugins/graph/readme.html share/java/squirrel-sql/plugins/graph/readme.txt share/java/squirrel-sql/plugins/graph/zoomprint.png +share/java/squirrel-sql/plugins/greenplum.jar +share/java/squirrel-sql/plugins/greenplum/changes.txt +share/java/squirrel-sql/plugins/greenplum/greenplum-sources.jar +share/java/squirrel-sql/plugins/greenplum/licence.txt share/java/squirrel-sql/plugins/h2.jar share/java/squirrel-sql/plugins/h2/changes.txt share/java/squirrel-sql/plugins/h2/h2-sources.jar @@ -489,6 +501,9 @@ share/java/squirrel-sql/plugins/sqlscript/licence.txt share/java/squirrel-sql/plugins/sqlscript/readme.html share/java/squirrel-sql/plugins/sqlscript/readme.txt +share/java/squirrel-sql/plugins/sqlscript/sql2file.jpg +share/java/squirrel-sql/plugins/sqlscript/sql2file_exportController.jpg +share/java/squirrel-sql/plugins/sqlscript/sql2file_progress.jpg share/java/squirrel-sql/plugins/sqlscript/sqlscript-sources.jar share/java/squirrel-sql/plugins/sqlscript/toolspopup.jpg share/java/squirrel-sql/plugins/sqlval.jar @@ -512,10 +527,13 @@ share/java/squirrel-sql/plugins/syntax/standard-nbm-license.txt share/java/squirrel-sql/plugins/syntax/syntax-sources.jar share/java/squirrel-sql/plugins/syntax/toolspopup.jpg +share/java/squirrel-sql/plugins/wikiTableConfigurations.jar +share/java/squirrel-sql/plugins/wikiTableConfigurations/wikiTableConfigurations-sources.jar share/java/squirrel-sql/squirrel-sql.jar share/java/squirrel-sql/update-log4j.properties share/java/squirrel-sql/update/release.xml @dirrm share/java/squirrel-sql/update +@dirrm share/java/squirrel-sql/plugins/wikiTableConfigurations @dirrm share/java/squirrel-sql/plugins/syntax @dirrm share/java/squirrel-sql/plugins/sybase @dirrm share/java/squirrel-sql/plugins/sqlval @@ -561,6 +579,7 @@ @dirrm share/java/squirrel-sql/plugins/hibernate @dirrm share/java/squirrel-sql/plugins/h2/images @dirrm share/java/squirrel-sql/plugins/h2 +@dirrm share/java/squirrel-sql/plugins/greenplum @dirrm share/java/squirrel-sql/plugins/graph @dirrm share/java/squirrel-sql/plugins/firebirdmanager/images @dirrm share/java/squirrel-sql/plugins/firebirdmanager >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 19:54:51 2012 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 764CA106564A; Mon, 27 Feb 2012 19:54:51 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4EC908FC08; Mon, 27 Feb 2012 19:54:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RJspwc089402; Mon, 27 Feb 2012 19:54:51 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RJspbH089398; Mon, 27 Feb 2012 19:54:51 GMT (envelope-from jgh) Date: Mon, 27 Feb 2012 19:54:51 GMT Message-Id: <201202271954.q1RJspbH089398@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165508: update databases/squirrel-sql to 3.3.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: Mon, 27 Feb 2012 19:54:51 -0000 Synopsis: update databases/squirrel-sql to 3.3.0 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Mon Feb 27 19:54:50 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165508 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 21:40:09 2012 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 2040D106566B for ; Mon, 27 Feb 2012 21:40:09 +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 0AEE68FC14 for ; Mon, 27 Feb 2012 21:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RLe8mf084458 for ; Mon, 27 Feb 2012 21:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RLe811084457; Mon, 27 Feb 2012 21:40:08 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 21:40:08 GMT Message-Id: <201202272140.q1RLe811084457@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/165380: [patch] Unbreak net/msend on 9.0 + add rc script X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 21:40:09 -0000 The following reply was made to PR ports/165380; it has been noted by GNATS. From: Michael Scheidell To: , Cc: Subject: Re: ports/165380: [patch] Unbreak net/msend on 9.0 + add rc script Date: Mon, 27 Feb 2012 16:30:40 -0500 Denis: Nice patch! (I have forwarded your fix to a couple others who had a messier 'fix'). I like yours best. this is a port without a maintainer, would you consider taking over as maintainer? Any pr's you send get applied a lot faster. Not too much to do, just send updates (like you do now), and if someone beats you to it, just test their patches before approving them. -- Michael Scheidell, CTO o: 561-999-5000 d: 561-948-2259 >*| *SECNAP Network Security Corporation * Best Mobile Solutions Product of 2011 * Best Intrusion Prevention Product * Hot Company Finalist 2011 * Best Email Security Product * Certified SNORT Integrator From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 21:40:10 2012 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 D12FF106564A for ; Mon, 27 Feb 2012 21:40:10 +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 B22CD8FC15 for ; Mon, 27 Feb 2012 21:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RLeAtF084466 for ; Mon, 27 Feb 2012 21:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RLeAED084465; Mon, 27 Feb 2012 21:40:10 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 21:40:10 GMT Message-Id: <201202272140.q1RLeAED084465@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/165430: [maintainer update] port sysutils/modules upgrade X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 21:40:11 -0000 The following reply was made to PR ports/165430; it has been noted by GNATS. From: Michael Scheidell To: , Cc: Subject: Re: ports/165430: [maintainer update] port sysutils/modules upgrade Date: Mon, 27 Feb 2012 16:38:28 -0500 --------------040401020409030909080604 Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit Thank you for your work in keeping freebsd ports tree updates, and your work on your port, sysutils/modules. This patch was not sent as an attachment, and got mangled. (see the web site url below) is there anyway you can try to upload the patch, as an attachment, back to GNATS via this pr? If you use 'send-pr', you could have used the '-a' (attachment) option. the problem with it now, it there is no easy way to distinguish white space from tabs from whitespace. The committer would need to 'copy' and paste the portion on the web site, and try to edit them by hand, and that can give rise to errors. -- Michael Scheidell, CTO o: 561-999-5000 d: 561-948-2259 >*| *SECNAP Network Security Corporation * Best Mobile Solutions Product of 2011 * Best Intrusion Prevention Product * Hot Company Finalist 2011 * Best Email Security Product * Certified SNORT Integrator --------------040401020409030909080604 Content-Type: text/html; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Thank you for your work in keeping freebsd ports tree updates, and your work on your port, sysutils/modules.

This patch was not sent as an attachment, and got mangled.
(see the web site url below)
is there anyway you can try to upload the patch, as an attachment, back to GNATS via this pr?
If you use 'send-pr', you could have used the '-a' (attachment) option.

the problem with it now, it there is no easy way to distinguish white space from tabs from whitespace.

The committer would need to 'copy' and paste the portion on the web site, and try to edit them by hand, and that can give rise to errors.


--
Michael Scheidell, CTO
o: 561-999-5000
d: 561-948-2259
> | SECNAP Network Security Corporation
  • Best Mobile Solutions Product of 2011
  • Best Intrusion Prevention Product
  • Hot Company Finalist 2011
  • Best Email Security Product
  • Certified SNORT Integrator
--------------040401020409030909080604-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 21:50:11 2012 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 3C3761065679 for ; Mon, 27 Feb 2012 21:50:11 +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 262E28FC1D for ; Mon, 27 Feb 2012 21:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RLoBr8093272 for ; Mon, 27 Feb 2012 21:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RLoApL093270; Mon, 27 Feb 2012 21:50:11 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 21:50:11 GMT Message-Id: <201202272150.q1RLoApL093270@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/165483: [patch] graphics/sane-backends creates a circular rcorder - can break system boot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 21:50:11 -0000 The following reply was made to PR ports/165483; it has been noted by GNATS. From: Michael Scheidell To: Cc: Subject: Re: ports/165483: [patch] graphics/sane-backends creates a circular rcorder - can break system boot Date: Mon, 27 Feb 2012 16:46:43 -0500 Joel: Thanks for looking at this. This port has been without a maintainer for a while now, and it looks like it has suffered for it. I am glad you were able to find a solution to this. Question: since this port is without a maintainer, would you be willing to take on the task? Your pr's will get looked at faster, and biggest duties would be to send any updates, or review any pr's that someone else might send. You interested? -- Michael Scheidell, CTO o: 561-999-5000 d: 561-948-2259 >*| *SECNAP Network Security Corporation * Best Mobile Solutions Product of 2011 * Best Intrusion Prevention Product * Hot Company Finalist 2011 * Best Email Security Product * Certified SNORT Integrator From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 22:00:26 2012 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 9BAAE106564A for ; Mon, 27 Feb 2012 22:00:26 +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 7C2208FC19 for ; Mon, 27 Feb 2012 22:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RM0QfD001900 for ; Mon, 27 Feb 2012 22:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RM0QWp001899; Mon, 27 Feb 2012 22:00:26 GMT (envelope-from gnats) Date: Mon, 27 Feb 2012 22:00:26 GMT Message-Id: <201202272200.q1RM0QWp001899@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: =?unknown-8bit?B?SMWNa2Fu?= Cc: Subject: Re: ports/165430: [maintainer update] port sysutils/modules upgrade X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?unknown-8bit?B?SMWNa2Fu?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Feb 2012 22:00:26 -0000 The following reply was made to PR ports/165430; it has been noted by GNATS. From: =?unknown-8bit?B?SMWNa2Fu?= To: Michael Scheidell Cc: bug-followup@freebsd.org Subject: Re: ports/165430: [maintainer update] port sysutils/modules upgrade Date: Mon, 27 Feb 2012 15:50:41 -0600 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sorry for the trouble. I hope this is better... On Mon, Feb 27, 2012 at 04:38:28PM -0500, Michael Scheidell wrote: > Thank you for your work in keeping freebsd ports tree updates, and > your work on your port, sysutils/modules. > > This patch was not sent as an attachment, and got mangled. > (see the web site url below) > is there anyway you can try to upload the patch, as an attachment, > back to GNATS via this pr? > If you use 'send-pr', you could have used the '-a' (attachment) option. > > the problem with it now, it there is no easy way to distinguish > white space from tabs from whitespace. > > The committer would need to 'copy' and paste the portion on the web > site, and try to edit them by hand, and that can give rise to > errors. -- Hokan MEnet, a wholly owned subsidiary of Enet System Administrator Department of Mechanical Engineering hokan@me.umn.edu College of Science and Engineering 612.626.9800 University of Minnesota --UlVJffcvxoiEqYs2 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="upgrade-modules.diff" Only in /usr/ports/sysutils/modules: CVS diff -u /usr/ports/sysutils/modules/Makefile modules/Makefile --- /usr/ports/sysutils/modules/Makefile 2009-08-21 19:35:22.000000000 -0500 +++ modules/Makefile 2012-02-23 14:44:51.000000000 -0600 @@ -6,38 +6,44 @@ # PORTNAME= modules -PORTVERSION= 3.1.6 +PORTVERSION= 3.2.9 +DISTVERSIONSUFFIX= c CATEGORIES= sysutils tcl MASTER_SITES= SF/${PORTNAME}/Modules/${PORTNAME}-${PORTVERSION} +WRKSRC= work/${PORTNAME}-${PORTVERSION} MAINTAINER= hokan@me.umn.edu COMMENT= Dynamic modification of a user's environment -LIB_DEPENDS= tcl${TCL_VER}:${PORTSDIR}/lang/tcl${TCL_VER} +LICENSE= GPLv2 PLIST_SUB= MODULES_VERSION=${PORTVERSION} BINDIR= ${PREFIX}/Modules -TCL_DVER?= 8.4 -TCL_VER= ${TCL_DVER:S/.//} +USE_AUTOTOOLS= automake +AUTOMAKE_VERSION= 1.11 +USE_TCL_WRAPPER= yes +USE_TCL= yes +USE_GMAKE= yes HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX}/Modules/@VERSION@ \ - --without-x \ +CONFIGURE_ARGS= --prefix=${PREFIX} \ --with-version-path=${PREFIX}/Modules/versions \ - --mandir=${MANPREFIX}/man \ - --with-tcl-version=${TCL_VER} \ - --with-tcl-include=${LOCALBASE}/include/tcl${TCL_DVER} \ - --with-tcl-libraries=${LOCALBASE}/lib/ + --mandir=${MANPREFIX}/man MAN1= module.1 MAN5= modulefile.5 post-extract: ${MV} ${WRKSRC}/doc/modulefile.4.in ${WRKSRC}/doc/modulefile.5.in - +post-patch: + @${FIND} ${WRKSRC} -type f -exec fgrep -l 'man4' {} \; |${XARGS} ${REINPLACE_CMD} -e 's,man4,man5,g' -i .bak + @${FIND} ${WRKSRC} -type f -exec fgrep -l 'modulefile.4' {} \; |${XARGS} ${REINPLACE_CMD} -e 's,modulefile.4,modulefile.5,g' -i .bak + @${FIND} ${WRKSRC} -type f -exec fgrep -l 'modulefile 4' {} \; |${XARGS} ${REINPLACE_CMD} -e 's,modulefile 4,modulefile 5,g' -i .bak + pre-install: ${MKDIR} ${PREFIX}/Modules + ${LN} -s ${PREFIX}/Modules/${PORTVERSION} ${PREFIX}/Modules/default .include diff -u /usr/ports/sysutils/modules/distinfo modules/distinfo --- /usr/ports/sysutils/modules/distinfo 2011-03-19 07:32:53.000000000 -0500 +++ modules/distinfo 2012-02-21 16:57:04.000000000 -0600 @@ -1,2 +1,2 @@ -SHA256 (modules-3.1.6.tar.gz) = a65dd5c66a42558ba77f7b6343ecaeebc00c8501408313a1c1cf7fcca2a61bcb -SIZE (modules-3.1.6.tar.gz) = 420885 +SHA256 (modules-3.2.9c.tar.gz) = f0d90d1cd031109c5dedb1b3465d1e1b49fa45bebb6587105757cae735804f95 +SIZE (modules-3.2.9c.tar.gz) = 439742 Only in /usr/ports/sysutils/modules: files diff -u /usr/ports/sysutils/modules/pkg-plist modules/pkg-plist --- /usr/ports/sysutils/modules/pkg-plist 2005-03-11 03:33:12.000000000 -0600 +++ modules/pkg-plist 2012-02-21 16:57:04.000000000 -0600 @@ -1,12 +1,16 @@ +Modules/default Modules/%%MODULES_VERSION%%/bin/add.modules Modules/%%MODULES_VERSION%%/bin/mkroot Modules/%%MODULES_VERSION%%/bin/modulecmd Modules/%%MODULES_VERSION%%/init/.modulespath Modules/%%MODULES_VERSION%%/init/bash +Modules/%%MODULES_VERSION%%/init/bash_completion +Modules/%%MODULES_VERSION%%/init/cmake Modules/%%MODULES_VERSION%%/init/csh Modules/%%MODULES_VERSION%%/init/ksh -Modules/%%MODULES_VERSION%%/init/perl -Modules/%%MODULES_VERSION%%/init/python +Modules/%%MODULES_VERSION%%/init/perl.pm +Modules/%%MODULES_VERSION%%/init/python.py +Modules/%%MODULES_VERSION%%/init/ruby.rb Modules/%%MODULES_VERSION%%/init/sh Modules/%%MODULES_VERSION%%/init/tcsh Modules/%%MODULES_VERSION%%/init/zsh --UlVJffcvxoiEqYs2-- From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 22:24:59 2012 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 916C6106564A; Mon, 27 Feb 2012 22:24:59 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 65BF18FC1A; Mon, 27 Feb 2012 22:24:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RMOx5b028849; Mon, 27 Feb 2012 22:24:59 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RMOx2g028845; Mon, 27 Feb 2012 22:24:59 GMT (envelope-from scheidell) Date: Mon, 27 Feb 2012 22:24:59 GMT Message-Id: <201202272224.q1RMOx2g028845@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165430: [maintainer update] port sysutils/modules upgrade 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: Mon, 27 Feb 2012 22:24:59 -0000 Synopsis: [maintainer update] port sysutils/modules upgrade Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Mon Feb 27 22:24:59 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165430 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 22:40:06 2012 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 E55F81065675 for ; Mon, 27 Feb 2012 22:40:06 +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 BF7E28FC2B for ; Mon, 27 Feb 2012 22:40:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RMe6Lt039684 for ; Mon, 27 Feb 2012 22:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RMe6XM039683; Mon, 27 Feb 2012 22:40:06 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 22:40:06 GMT Resent-Message-Id: <201202272240.q1RMe6XM039683@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, Jonathan Chen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DB37C106564A for ; Mon, 27 Feb 2012 22:34:47 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id AD2008FC17 for ; Mon, 27 Feb 2012 22:34:47 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1RMYkrP044055 for ; Mon, 27 Feb 2012 22:34:46 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1RMYktD044029; Mon, 27 Feb 2012 22:34:46 GMT (envelope-from nobody) Message-Id: <201202272234.q1RMYktD044029@red.freebsd.org> Date: Mon, 27 Feb 2012 22:34:46 GMT From: Jonathan Chen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165510: Update textproc/sigil to 0.5.3 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: Mon, 27 Feb 2012 22:40:07 -0000 >Number: 165510 >Category: ports >Synopsis: Update textproc/sigil to 0.5.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 22:40:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jonathan Chen >Release: STABLE-9/amd64 >Organization: >Environment: FreeBSD jonathan.chen 9.0-STABLE FreeBSD 9.0-STABLE #0: Fri Jan 20 16:31:18 NZDT 2012 root@jonathan.chen:/usr/obj/usr/src/sys/TAO amd64 >Description: Update textproc/sigil from 0.2.4 to 0.5.3 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/textproc/sigil/Makefile ./Makefile --- /usr/ports/textproc/sigil/Makefile 2010-10-19 08:28:09.000000000 +1300 +++ ./Makefile 2012-02-28 11:19:14.000000000 +1300 @@ -6,8 +6,7 @@ # PORTNAME= sigil -PORTVERSION= 0.2.4 -PORTREVISION= 1 +PORTVERSION= 0.5.3 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTNAME= Sigil-${PORTVERSION}-Code @@ -15,22 +14,27 @@ MAINTAINER= jonc@chen.org.nz COMMENT= WYSIWYG ePub editor +LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost-libs \ + xerces-c.3:${PORTSDIR}/textproc/xerces-c3 \ + hunspell-1.3.0:${PORTSDIR}/textproc/hunspell \ + pcre.1:${PORTSDIR}/devel/pcre + USE_ZIP= yes USE_CMAKE= yes -USE_DOS2UNIX= DirEnumerator.cpp ZipFile_stl.cpp ZipPlatform_lnx.cpp +USE_DOS2UNIX= CMakeLists.txt DirEnumerator.cpp ZipFile_stl.cpp ZipPlatform_lnx.cpp USE_QT_VER= 4 +NO_WRKSUBDIR= yes QT_COMPONENTS= qmake gui svg webkit xml moc uic rcc imageformats DESKTOP_ENTRIES="Sigil Editor" \ "${COMMENT}" \ - "${DATADIR}/sigil.png" \ + "${PREFIX}/share/pixmaps/sigil.png" \ "sigil" \ "Application;" \ ${FALSE} -post-install: - ${MKDIR} ${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/src/Sigil/Resource_Files/icon/app_icon_48.png ${DATADIR}/sigil.png +post-patch: + @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/CMakeLists.txt .include diff -ruN /usr/ports/textproc/sigil/distinfo ./distinfo --- /usr/ports/textproc/sigil/distinfo 2011-07-04 08:10:25.000000000 +1200 +++ ./distinfo 2012-02-28 08:45:27.000000000 +1300 @@ -1,2 +1,2 @@ -SHA256 (Sigil-0.2.4-Code.zip) = 001a535986c90f67bdfa0860964a2c70a0b1c23091cf86ea7f618e02fbc776c3 -SIZE (Sigil-0.2.4-Code.zip) = 9299387 +SHA256 (Sigil-0.5.3-Code.zip) = 9525ac3885e7d3962a85e491b271fd857e8a9430e92868e1772c3bcaeb9bc778 +SIZE (Sigil-0.5.3-Code.zip) = 12843490 diff -ruN /usr/ports/textproc/sigil/files/patch-CMakeLists ./files/patch-CMakeLists --- /usr/ports/textproc/sigil/files/patch-CMakeLists 1970-01-01 12:00:00.000000000 +1200 +++ ./files/patch-CMakeLists 2012-02-28 10:31:59.000000000 +1300 @@ -0,0 +1,14 @@ +diff -ruN /tmp/Sigil-0.5.3-Code/src/CMakeLists.txt ./src/CMakeLists.txt +*** ./CMakeLists.txt.orig 2012-02-28 10:17:24.000000000 +1300 +--- ./CMakeLists.txt 2012-02-28 10:17:51.000000000 +1300 +*************** +*** 22,27 **** +--- 22,29 ---- + set( SIGIL_REVISION_VERSION 3 ) + set( SIGIL_FULL_VERSION ${SIGIL_MAJOR_VERSION}.${SIGIL_MINOR_VERSION}.${SIGIL_REVISION_VERSION} ) + ++ link_directories (%%LOCALBASE%%/lib) ++ + # Check if platform is 64 bit + if( NOT APPLE ) + if( CMAKE_SIZEOF_VOID_P EQUAL 4 ) diff -ruN /usr/ports/textproc/sigil/pkg-plist ./pkg-plist --- /usr/ports/textproc/sigil/pkg-plist 2010-10-19 08:28:09.000000000 +1300 +++ ./pkg-plist 2012-02-28 11:18:04.000000000 +1300 @@ -1,3 +1,37 @@ bin/sigil -share/sigil/sigil.png +share/pixmaps/sigil.png +share/sigil/dictionaries/About.txt +share/sigil/dictionaries/de_DE.aff +share/sigil/dictionaries/de_DE.dic +share/sigil/dictionaries/en_GB.aff +share/sigil/dictionaries/en_GB.dic +share/sigil/dictionaries/en_US.aff +share/sigil/dictionaries/en_US.dic +share/sigil/dictionaries/es.aff +share/sigil/dictionaries/es.dic +share/sigil/dictionaries/fr.aff +share/sigil/dictionaries/fr.dic +share/sigil/dictionaries/hyph_de_DE.dic +share/sigil/dictionaries/hyph_en_GB.dic +share/sigil/dictionaries/hyph_en_US.dic +share/sigil/dictionaries/hyph_es.dic +share/sigil/dictionaries/hyph_fr.dic +share/sigil/translations/sigil_cs.qm +share/sigil/translations/sigil_da_DK.qm +share/sigil/translations/sigil_de.qm +share/sigil/translations/sigil_en.qm +share/sigil/translations/sigil_es_ES.qm +share/sigil/translations/sigil_fr.qm +share/sigil/translations/sigil_it.qm +share/sigil/translations/sigil_ja.qm +share/sigil/translations/sigil_nl.qm +share/sigil/translations/sigil_pl.qm +share/sigil/translations/sigil_pt_BR.qm +share/sigil/translations/sigil_ru.qm +share/sigil/translations/sigil_sk.qm +share/sigil/translations/sigil_tr_TR.qm +share/sigil/translations/sigil_zh_CN.qm +share/sigil/translations/sigil_zh_TW.qm +@dirrm share/sigil/translations +@dirrm share/sigil/dictionaries @dirrm share/sigil >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 22:40:51 2012 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F3D3106566B; Mon, 27 Feb 2012 22:40:51 +0000 (UTC) (envelope-from gd@rambler-co.ru) Received: from yam.park.rambler.ru (yam.park.rambler.ru [81.19.64.116]) by mx1.freebsd.org (Postfix) with ESMTP id 185188FC12; Mon, 27 Feb 2012 22:40:50 +0000 (UTC) Received: from tyl2.park.rambler.ru (gd.vpn.rambler.ru [81.19.79.10]) by yam.park.rambler.ru (8.14.5/8.14.1) with SMTP id q1RMEK0e077658; Tue, 28 Feb 2012 02:14:21 +0400 (MSK) (envelope-from gd@rambler-co.ru) Date: Tue, 28 Feb 2012 02:14:08 +0400 From: Denis Generalov To: Michael Scheidell Message-Id: <20120228021408.5aadb863.gd@rambler-co.ru> In-Reply-To: <201202272140.q1RLe811084457@freefall.freebsd.org> References: <201202272140.q1RLe811084457@freefall.freebsd.org> X-Mailer: Sylpheed 3.1.2 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/165380: [patch] Unbreak net/msend on 9.0 + add rc script 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: Mon, 27 Feb 2012 22:40:51 -0000 On Mon, 27 Feb 2012 21:40:08 GMT Michael Scheidell wrote: > The following reply was made to PR ports/165380; it has been noted by GNATS. > > From: Michael Scheidell > To: , > Cc: > Subject: Re: ports/165380: [patch] Unbreak net/msend on 9.0 + add rc script > Date: Mon, 27 Feb 2012 16:30:40 -0500 > > Denis: > > Nice patch! (I have forwarded your fix to a couple others who had a > messier 'fix'). I like yours best. Thank you, I really happy to get such appreciation. Sorry, I made mistype in email when filled PR form. > > this is a port without a maintainer, would you consider taking over as > maintainer? > > Any pr's you send get applied a lot faster. > Not too much to do, just send updates (like you do now), and if someone > beats you to it, just test their patches before approving them. I'm ready :) > > > -- > Michael Scheidell, CTO > o: 561-999-5000 > d: 561-948-2259 > >*| *SECNAP Network Security Corporation > > * Best Mobile Solutions Product of 2011 > * Best Intrusion Prevention Product > * Hot Company Finalist 2011 > * Best Email Security Product > * Certified SNORT Integrator > > _______________________________________________ > freebsd-ports-bugs@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports-bugs > To unsubscribe, send any mail to "freebsd-ports-bugs-unsubscribe@freebsd.org" -- Denis Generalov From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 22:42:08 2012 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 92921106568C; Mon, 27 Feb 2012 22:42:08 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 666A98FC26; Mon, 27 Feb 2012 22:42:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RMg8SE047809; Mon, 27 Feb 2012 22:42:08 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RMg8Uc047805; Mon, 27 Feb 2012 22:42:08 GMT (envelope-from scheidell) Date: Mon, 27 Feb 2012 22:42:08 GMT Message-Id: <201202272242.q1RMg8Uc047805@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165380: [patch] Unbreak net/msend on 9.0 + add rc script 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: Mon, 27 Feb 2012 22:42:08 -0000 Synopsis: [patch] Unbreak net/msend on 9.0 + add rc script Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Mon Feb 27 22:42:08 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165380 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 22:50:08 2012 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 6C6F11065675 for ; Mon, 27 Feb 2012 22:50:08 +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 459BA8FC22 for ; Mon, 27 Feb 2012 22:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RMo8Q6048651 for ; Mon, 27 Feb 2012 22:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RMo8jU048650; Mon, 27 Feb 2012 22:50:08 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 22:50:08 GMT Resent-Message-Id: <201202272250.q1RMo8jU048650@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A8896106566C; Mon, 27 Feb 2012 22:46:56 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 6495D8FC13; Mon, 27 Feb 2012 22:46:56 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q1RMkpFa050019 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 27 Feb 2012 17:46:52 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q1RMklwQ057053; Mon, 27 Feb 2012 17:46:47 -0500 (EST) (envelope-from steve) Message-Id: <201202272246.q1RMklwQ057053@meatwad.mouf.net> Date: Mon, 27 Feb 2012 17:46:47 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: lth@FreeBSD.org Subject: ports/165511: [PATCH] textproc/p5-PPI: add missing DEPENDS 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: Mon, 27 Feb 2012 22:50:08 -0000 >Number: 165511 >Category: ports >Synopsis: [PATCH] textproc/p5-PPI: add missing DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 22:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: see patch Port maintainer (lth@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-PPI-1.215_2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/p5-PPI/Makefile,v retrieving revision 1.28 diff -u -u -r1.28 Makefile --- Makefile 12 Jun 2011 16:02:17 -0000 1.28 +++ Makefile 27 Feb 2012 22:46:36 -0000 @@ -7,7 +7,7 @@ PORTNAME= PPI PORTVERSION= 1.215 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ADAMK @@ -21,8 +21,13 @@ p5-IO-String>=1.07:${PORTSDIR}/devel/p5-IO-String \ p5-List-MoreUtils>=0.16:${PORTSDIR}/lang/p5-List-MoreUtils \ p5-Params-Util>=1.00:${PORTSDIR}/devel/p5-Params-Util \ - p5-Task-Weaken>0:${PORTSDIR}/devel/p5-Task-Weaken + p5-Task-Weaken>0:${PORTSDIR}/devel/p5-Task-Weaken \ + p5-Class-Inspector>=1.22:${PORTSDIR}/devel/p5-Class-Inspector \ + p5-File-Remove>=1.42:${PORTSDIR}/devel/p5-File-Remove RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-NoWarnings>=0.084:${PORTSDIR}/devel/p5-Test-NoWarnings \ + p5-Test-Object>=0.07:${PORTSDIR}/devel/p5-Test-Object \ + p5-Test-SubCalls>=1.07:${PORTSDIR}/devel/p5-Test-SubCalls PERL_CONFIGURE= yes --- p5-PPI-1.215_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 22:50:18 2012 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 B3424106566B; Mon, 27 Feb 2012 22:50:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 869B28FC16; Mon, 27 Feb 2012 22:50:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RMoI0U048849; Mon, 27 Feb 2012 22:50:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RMoIQe048844; Mon, 27 Feb 2012 22:50:18 GMT (envelope-from edwin) Date: Mon, 27 Feb 2012 22:50:18 GMT Message-Id: <201202272250.q1RMoIQe048844@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lth@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165511: [PATCH] textproc/p5-PPI: add missing DEPENDS 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: Mon, 27 Feb 2012 22:50:18 -0000 Synopsis: [PATCH] textproc/p5-PPI: add missing DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->lth Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 27 22:50:18 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165511 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 23:00:21 2012 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 ABE2E1065675 for ; Mon, 27 Feb 2012 23:00:21 +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 6889E8FC1A for ; Mon, 27 Feb 2012 23:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RN0Lb3057065 for ; Mon, 27 Feb 2012 23:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RN0Lfo057061; Mon, 27 Feb 2012 23:00:21 GMT (envelope-from gnats) Resent-Date: Mon, 27 Feb 2012 23:00:21 GMT Resent-Message-Id: <201202272300.q1RN0Lfo057061@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C288A106566B for ; Mon, 27 Feb 2012 22:53:39 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 638688FC08 for ; Mon, 27 Feb 2012 22:53:39 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q1RMrZVX050084 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 27 Feb 2012 17:53:35 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q1RMrSTI002106; Mon, 27 Feb 2012 17:53:28 -0500 (EST) (envelope-from steve) Message-Id: <201202272253.q1RMrSTI002106@meatwad.mouf.net> Date: Mon, 27 Feb 2012 17:53:28 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: vvelox@vvelox.net Subject: ports/165513: [PATCH] net/p5-Net-LDAP-LDAPhash: add missing DEPENDS 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: Mon, 27 Feb 2012 23:00:21 -0000 >Number: 165513 >Category: ports >Synopsis: [PATCH] net/p5-Net-LDAP-LDAPhash: add missing DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 27 23:00:20 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: see patch Port maintainer (vvelox@vvelox.net) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-Net-LDAP-LDAPhash-1.0.2_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net/p5-Net-LDAP-LDAPhash/Makefile,v retrieving revision 1.4 diff -u -u -r1.4 Makefile --- Makefile 20 Jun 2011 08:37:12 -0000 1.4 +++ Makefile 27 Feb 2012 22:53:16 -0000 @@ -7,6 +7,7 @@ PORTNAME= Net-LDAP-LDAPhash PORTVERSION= 1.0.2 +PORTREVISION= 1 CATEGORIES= net perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:VVELOX @@ -15,6 +16,9 @@ MAINTAINER= vvelox@vvelox.net COMMENT= Make a hash out or the return from a search using Net::LDAP::Search +BUILD_DEPENDS= p5-perl-ldap>=0.39:${PORTSDIR}/net/p5-perl-ldap +RUN_DEPENDS= p5-perl-ldap>=0.39:${PORTSDIR}/net/p5-perl-ldap + PERL_CONFIGURE= yes MAN3= Net::LDAP::LDAPhash.3 --- p5-Net-LDAP-LDAPhash-1.0.2_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 23:00:32 2012 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 DF9B11065673; Mon, 27 Feb 2012 23:00:32 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B35E08FC1E; Mon, 27 Feb 2012 23:00:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RN0WOQ057311; Mon, 27 Feb 2012 23:00:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RN0W4b057301; Mon, 27 Feb 2012 23:00:32 GMT (envelope-from edwin) Date: Mon, 27 Feb 2012 23:00:32 GMT Message-Id: <201202272300.q1RN0W4b057301@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165513: [PATCH] net/p5-Net-LDAP-LDAPhash: add missing DEPENDS 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: Mon, 27 Feb 2012 23:00:33 -0000 Synopsis: [PATCH] net/p5-Net-LDAP-LDAPhash: add missing DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Mon Feb 27 23:00:32 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165513 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 23:31:27 2012 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 139BB1065673; Mon, 27 Feb 2012 23:31:27 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DAE3A8FC12; Mon, 27 Feb 2012 23:31:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RNVQww091514; Mon, 27 Feb 2012 23:31:26 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RNVQp7091452; Mon, 27 Feb 2012 23:31:26 GMT (envelope-from eadler) Date: Mon, 27 Feb 2012 23:31:26 GMT Message-Id: <201202272331.q1RNVQp7091452@freefall.freebsd.org> To: freebsdports@chillibear.com, svk@arm.ru, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/164818: sysutils/tty-clock may be fixed on 9.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: Mon, 27 Feb 2012 23:31:27 -0000 Synopsis: sysutils/tty-clock may be fixed on 9.0 State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Mon Feb 27 23:31:25 UTC 2012 State-Changed-Why: feedback timeou http://www.freebsd.org/cgi/query-pr.cgi?pr=164818 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 23:32:05 2012 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 062CF106566B; Mon, 27 Feb 2012 23:32:05 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CCA258FC13; Mon, 27 Feb 2012 23:32:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RNW4kh094463; Mon, 27 Feb 2012 23:32:04 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RNW4rv094442; Mon, 27 Feb 2012 23:32:04 GMT (envelope-from eadler) Date: Mon, 27 Feb 2012 23:32:04 GMT Message-Id: <201202272332.q1RNW4rv094442@freefall.freebsd.org> To: chalpin@cs.wisc.edu, bsdgeek01@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/164464: port sysutils/dvdisaster does not recognize drives on FreeBSD 9.0-RELEASE 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: Mon, 27 Feb 2012 23:32:05 -0000 Synopsis: port sysutils/dvdisaster does not recognize drives on FreeBSD 9.0-RELEASE State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Mon Feb 27 23:32:03 UTC 2012 State-Changed-Why: feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=164464 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 23:32:18 2012 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 41CC31065672; Mon, 27 Feb 2012 23:32:17 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 14F058FC18; Mon, 27 Feb 2012 23:32:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RNWGBR094799; Mon, 27 Feb 2012 23:32:16 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RNWGt4094793; Mon, 27 Feb 2012 23:32:16 GMT (envelope-from eadler) Date: Mon, 27 Feb 2012 23:32:16 GMT Message-Id: <201202272332.q1RNWGt4094793@freefall.freebsd.org> To: devel@stasyan.com, shen.elf@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/164563: games/sumwars can't run 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: Mon, 27 Feb 2012 23:32:18 -0000 Synopsis: games/sumwars can't run State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Mon Feb 27 23:32:15 UTC 2012 State-Changed-Why: feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=164563 From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Feb 27 23:33:21 2012 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 6E64B1065678; Mon, 27 Feb 2012 23:33:21 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3B6E28FC12; Mon, 27 Feb 2012 23:33:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1RNXLkN095057; Mon, 27 Feb 2012 23:33:21 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1RNXLrj095053; Mon, 27 Feb 2012 23:33:21 GMT (envelope-from eadler) Date: Mon, 27 Feb 2012 23:33:21 GMT Message-Id: <201202272333.q1RNXLrj095053@freefall.freebsd.org> To: systemoperator@gmail.com, najmi.zabidi@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/155941: net/nepenthes: mwserv library support is not included in nepenthes.conf config file for net/nepenthes honeypot port 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: Mon, 27 Feb 2012 23:33:21 -0000 Synopsis: net/nepenthes: mwserv library support is not included in nepenthes.conf config file for net/nepenthes honeypot port State-Changed-From-To: feedback->open State-Changed-By: eadler State-Changed-When: Mon Feb 27 23:33:20 UTC 2012 State-Changed-Why: feedback timeout http://www.freebsd.org/cgi/query-pr.cgi?pr=155941 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 00:40:05 2012 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 A9EFB106564A for ; Tue, 28 Feb 2012 00:40:05 +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 822298FC0A for ; Tue, 28 Feb 2012 00:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S0e5sN057192 for ; Tue, 28 Feb 2012 00:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S0e5kr057191; Tue, 28 Feb 2012 00:40:05 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 00:40:05 GMT Resent-Message-Id: <201202280040.q1S0e5kr057191@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, Koop Mast Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24D19106564A for ; Tue, 28 Feb 2012 00:33:33 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0EE578FC0C for ; Tue, 28 Feb 2012 00:33:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S0XWjZ054864 for ; Tue, 28 Feb 2012 00:33:32 GMT (envelope-from kwm@freefall.freebsd.org) Received: (from kwm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S0XWV5054863; Tue, 28 Feb 2012 00:33:32 GMT (envelope-from kwm) Message-Id: <201202280033.q1S0XWV5054863@freefall.freebsd.org> Date: Tue, 28 Feb 2012 00:33:32 GMT From: Koop Mast To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165514: [exp-run] libiconv 1.14 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Koop Mast List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Feb 2012 00:40:05 -0000 >Number: 165514 >Category: ports >Synopsis: [exp-run] libiconv 1.14 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 00:40:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Koop Mast >Release: FreeBSD 8.2-STABLE i386 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 8.2-STABLE FreeBSD 8.2-STABLE #5 r227907: Wed Nov 23 21:55:50 UTC 2011 simon@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386 >Description: Ports exp run to check update of libiconv 1.14. >How-To-Repeat: >Fix: --- libiconv-1.14.diff begins here --- ? converters/libiconv/work Index: converters/libiconv/Makefile =================================================================== RCS file: /home/pcvs/ports/converters/libiconv/Makefile,v retrieving revision 1.56 diff -a -u -r1.56 Makefile --- converters/libiconv/Makefile 11 Aug 2011 19:19:07 -0000 1.56 +++ converters/libiconv/Makefile 28 Feb 2012 00:27:21 -0000 @@ -6,19 +6,16 @@ # PORTNAME= libiconv -PORTVERSION= 1.13.1 -PORTREVISION= 1 +PORTVERSION= 1.14 CATEGORIES= converters devel -MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= ${PORTNAME} +MASTER_SITES= GNU MAINTAINER= gnome@FreeBSD.org COMMENT= A character set conversion library USE_AUTOTOOLS= libtool GNU_CONFIGURE= yes -USE_CSTD= gnu89 -LIBTOOLFILES= configure libcharset/configure +LIBTOOLFILES= configure libcharset/configure preload/configure CONFIGURE_ARGS= --enable-static \ --without-libintl-prefix \ --docdir=${DOCSDIR} @@ -32,7 +29,7 @@ MAN3= iconv.3 iconv_open.3 iconv_open_into.3 iconv_close.3 iconvctl.3 OPTIONS= EXTRA_ENCODINGS "Include extra character sets" on \ - EXTRA_PATCHES "Apply patches to fix CP932, add EUCJP-MS" off +# EXTRA_PATCHES "Apply patches to fix CP932, add EUCJP-MS" off .ifdef USE_ICONV .error USE_ICONV is defined as an environment variable, or in the arguments \ @@ -45,13 +42,13 @@ CONFIGURE_ARGS+= --enable-extra-encodings .endif -.if defined(WITH_EXTRA_PATCHES) -PATCH_SITES+= http://www2d.biglobe.ne.jp/~msyk/software/libiconv/ -PATCH_SITES+= ${MASTER_SITE_LOCAL} -PATCH_SITE_SUBDIR= nork -PATCHFILES+= ${DISTNAME:C/1\.13\.1/1.13/}-ja-1.patch.gz -PATCH_DIST_STRIP+= -p1 -.endif +#.if defined(WITH_EXTRA_PATCHES) +#PATCH_SITES+= http://www2d.biglobe.ne.jp/~msyk/software/libiconv/ +#PATCH_SITES+= ${MASTER_SITE_LOCAL} +#PATCH_SITE_SUBDIR= nork +#PATCHFILES+= ${DISTNAME:C/1\.13\.1/1.13/}-ja-1.patch.gz +#PATCH_DIST_STRIP+= -p1 +#.endif post-patch: @${REINPLACE_CMD} -e 's:ei_ksc5601:ei_euc_kr:g' ${WRKSRC}/lib/aliases.h Index: converters/libiconv/distinfo =================================================================== RCS file: /home/pcvs/ports/converters/libiconv/distinfo,v retrieving revision 1.19 diff -a -u -r1.19 distinfo --- converters/libiconv/distinfo 20 Mar 2011 12:46:42 -0000 1.19 +++ converters/libiconv/distinfo 28 Feb 2012 00:27:21 -0000 @@ -1,4 +1,2 @@ -SHA256 (libiconv-1.13.1.tar.gz) = 55a36168306089009d054ccdd9d013041bfc3ab26be7033d107821f1c4949a49 -SIZE (libiconv-1.13.1.tar.gz) = 4716070 -SHA256 (libiconv-1.13-ja-1.patch.gz) = fcbca68796a206f033cb2e61ad6ce159396232acb1d598dfc4c6307e59e67c87 -SIZE (libiconv-1.13-ja-1.patch.gz) = 296487 +SHA256 (libiconv-1.14.tar.gz) = 72b24ded17d687193c3366d0ebe7cde1e6b18f0df8c55438ac95be39e8a30613 +SIZE (libiconv-1.14.tar.gz) = 4984397 Index: converters/libiconv/files/patch-endless-wchar_t-loop =================================================================== RCS file: converters/libiconv/files/patch-endless-wchar_t-loop diff -N converters/libiconv/files/patch-endless-wchar_t-loop --- converters/libiconv/files/patch-endless-wchar_t-loop 6 Feb 2010 00:55:44 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,32 +0,0 @@ ---- lib/loop_wchar.h -+++ lib/loop_wchar.h -@@ -1,5 +1,5 @@ - /* -- * Copyright (C) 2000-2002, 2005-2006, 2008 Free Software Foundation, Inc. -+ * Copyright (C) 2000-2002, 2005-2006, 2008-2009 Free Software Foundation, Inc. - * This file is part of the GNU LIBICONV Library. - * - * The GNU LIBICONV Library is free software; you can redistribute it -@@ -321,7 +321,8 @@ static size_t wchar_to_loop_convert (iconv_t icd, - size_t result = 0; - while (*inbytesleft > 0) { - size_t incount; -- for (incount = 1; incount <= *inbytesleft; incount++) { -+ for (incount = 1; ; ) { -+ /* Here incount <= *inbytesleft. */ - char buf[BUF_SIZE]; - const char* inptr = *inbuf; - size_t inleft = incount; -@@ -403,6 +404,12 @@ static size_t wchar_to_loop_convert (iconv_t icd, - break; - } - } -+ incount++; -+ if (incount > *inbytesleft) { -+ /* Incomplete input. */ -+ errno = EINVAL; -+ return -1; -+ } - } - } - return result; Index: converters/libiconv/files/patch-lib_Makefile.in =================================================================== RCS file: /home/pcvs/ports/converters/libiconv/files/patch-lib_Makefile.in,v retrieving revision 1.4 diff -a -u -r1.4 patch-lib_Makefile.in --- converters/libiconv/files/patch-lib_Makefile.in 15 Aug 2009 18:07:49 -0000 1.4 +++ converters/libiconv/files/patch-lib_Makefile.in 28 Feb 2012 00:27:21 -0000 @@ -1,5 +1,5 @@ ---- lib/Makefile.in.orig 2009-03-25 22:14:26.000000000 -0400 -+++ lib/Makefile.in 2009-06-06 15:26:31.000000000 -0400 +--- lib/Makefile.in.orig 2011-08-07 19:48:03.000000000 +0200 ++++ lib/Makefile.in 2011-10-23 22:03:44.000000000 +0200 @@ -26,8 +26,8 @@ -Dset_relocation_prefix=libiconv_set_relocation_prefix \ -Drelocate=libiconv_relocate @DEFS@ @@ -11,11 +11,11 @@ LIBTOOL_INSTALL = $(LIBTOOL) --mode=install LIBTOOL_UNINSTALL = $(LIBTOOL) --mode=uninstall # Windows resource compiler (windres). Used via libtool. -@@ -50,7 +50,7 @@ SHELL = /bin/sh +@@ -50,7 +50,7 @@ # Before making a release, change this according to the libtool documentation, # section "Library interface versions". --LIBICONV_VERSION_INFO = 7:0:5 +-LIBICONV_VERSION_INFO = 7:1:5 +LIBICONV_VERSION_INFO = 3 PACKAGE_VERSION = @VERSION@ Index: converters/libiconv/files/patch-libcharset::lib::config.charset =================================================================== RCS file: /home/pcvs/ports/converters/libiconv/files/patch-libcharset::lib::config.charset,v retrieving revision 1.2 diff -a -u -r1.2 patch-libcharset::lib::config.charset --- converters/libiconv/files/patch-libcharset::lib::config.charset 14 Oct 2003 08:00:14 -0000 1.2 +++ converters/libiconv/files/patch-libcharset::lib::config.charset 28 Feb 2012 00:27:21 -0000 @@ -1,22 +1,19 @@ ---- libcharset/lib/config.charset.orig Thu Jan 30 03:43:59 2003 -+++ libcharset/lib/config.charset Tue Oct 14 16:55:29 2003 -@@ -246,8 +246,8 @@ - #echo "sun_eu_greek ?" # what is this? - echo "UTF-8 UTF-8" - ;; -- freebsd* | os2*) -- # FreeBSD 4.2 doesn't have nl_langinfo(CODESET); therefore -+ freebsd4.[0-5] | os2*) -+ # FreeBSD up to 4.6 doesn't have nl_langinfo(CODESET); therefore - # localcharset.c falls back to using the full locale name - # from the environment variables. - # Likewise for OS/2. OS/2 has XFree86 just like FreeBSD. Just -@@ -282,6 +282,31 @@ - echo "ja_JP.SJIS SHIFT_JIS" - echo "ja_JP.Shift_JIS SHIFT_JIS" - echo "ko_KR.EUC EUC-KR" -+ ;; -+ freebsd*) +--- libcharset/lib/config.charset.orig 2010-04-05 02:25:38.000000000 +0200 ++++ libcharset/lib/config.charset 2011-10-23 22:05:50.000000000 +0200 +@@ -348,7 +348,7 @@ case "$os" in + #echo "sun_eu_greek ?" # what is this? + echo "UTF-8 UTF-8" + ;; +- freebsd* | os2*) ++ freebsd4.[0-5]* | os2*) + # FreeBSD 4.2 doesn't have nl_langinfo(CODESET); therefore + # localcharset.c falls back to using the full locale name + # from the environment variables. +@@ -385,6 +385,31 @@ case "$os" in + echo "ja_JP.Shift_JIS SHIFT_JIS" + echo "ko_KR.EUC EUC-KR" + ;; ++ freebsd*) + echo "US-ASCII ASCII" + echo "ISO8859-1 ISO-8859-1" + echo "ISO_8859-1 ISO-8859-1" @@ -40,6 +37,7 @@ + echo "Big5 BIG5" + echo "SJIS SHIFT_JIS" + echo "Shift_JIS SHIFT_JIS" - ;; - netbsd*) - echo "646 ASCII" ++ ;; + netbsd*) + echo "646 ASCII" + echo "ISO8859-1 ISO-8859-1" --- libiconv-1.14.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 00:40:54 2012 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 B224A106564A; Tue, 28 Feb 2012 00:40:54 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8627C8FC15; Tue, 28 Feb 2012 00:40:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S0esJv062590; Tue, 28 Feb 2012 00:40:54 GMT (envelope-from kwm@freefall.freebsd.org) Received: (from kwm@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S0es0m062581; Tue, 28 Feb 2012 00:40:54 GMT (envelope-from kwm) Date: Tue, 28 Feb 2012 00:40:54 GMT Message-Id: <201202280040.q1S0es0m062581@freefall.freebsd.org> To: kwm@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: kwm@FreeBSD.org Cc: Subject: Re: ports/165514: [exp-run] libiconv 1.14 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: Tue, 28 Feb 2012 00:40:54 -0000 Synopsis: [exp-run] libiconv 1.14 Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: kwm Responsible-Changed-When: Tue Feb 28 00:40:33 UTC 2012 Responsible-Changed-Why: Over to portmgr for exp run love. http://www.freebsd.org/cgi/query-pr.cgi?pr=165514 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 03:05:44 2012 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 B3F99106566C; Tue, 28 Feb 2012 03:05:44 +0000 (UTC) (envelope-from zi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 84B958FC13; Tue, 28 Feb 2012 03:05:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S35i6d093981; Tue, 28 Feb 2012 03:05:44 GMT (envelope-from zi@freefall.freebsd.org) Received: (from zi@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S35ihT093976; Tue, 28 Feb 2012 03:05:44 GMT (envelope-from zi) Date: Tue, 28 Feb 2012 03:05:44 GMT Message-Id: <201202280305.q1S35ihT093976@freefall.freebsd.org> To: spolyack@collaborativefusion.com, zi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, zi@FreeBSD.org From: zi@FreeBSD.org Cc: Subject: Re: ports/165204: sysutils/ipmitool should have periodic IPMI status check 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: Tue, 28 Feb 2012 03:05:44 -0000 Synopsis: sysutils/ipmitool should have periodic IPMI status check Responsible-Changed-From-To: freebsd-ports-bugs->zi Responsible-Changed-By: zi Responsible-Changed-When: Tue Feb 28 03:05:43 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165204 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 03:30:09 2012 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 596CD106566C for ; Tue, 28 Feb 2012 03:30:09 +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 1442C8FC14 for ; Tue, 28 Feb 2012 03:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S3U8Lf012764 for ; Tue, 28 Feb 2012 03:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S3U8FN012763; Tue, 28 Feb 2012 03:30:08 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 03:30:08 GMT Resent-Message-Id: <201202280330.q1S3U8FN012763@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, John Hein Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3290D106564A for ; Tue, 28 Feb 2012 03:21:35 +0000 (UTC) (envelope-from jhein@timing.com) Received: from duck.timing.com (duck.symmetricom.us [206.168.13.214]) by mx1.freebsd.org (Postfix) with ESMTP id E47E68FC0A for ; Tue, 28 Feb 2012 03:21:34 +0000 (UTC) Received: from fbsd7-build.timing.com (fbsd7-build.symmetricom.us [206.168.13.192]) by duck.timing.com (8.14.5/8.14.4) with ESMTP id q1S2ovSQ006283; Mon, 27 Feb 2012 19:50:57 -0700 (MST) (envelope-from jhein@timing.com) Received: from fbsd7-build.timing.com (localhost [127.0.0.1]) by fbsd7-build.timing.com (8.14.5/8.14.5) with ESMTP id q1S2nPSi097265; Mon, 27 Feb 2012 19:49:25 -0700 (MST) (envelope-from jhein@fbsd7-build.timing.com) Received: (from jhein@localhost) by fbsd7-build.timing.com (8.14.5/8.14.5/Submit) id q1S2nPEK097264; Mon, 27 Feb 2012 19:49:25 -0700 (MST) (envelope-from jhein) Message-Id: <201202280249.q1S2nPEK097264@fbsd7-build.timing.com> Date: Mon, 27 Feb 2012 19:49:25 -0700 (MST) From: John Hein To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165518: [PATCH] astro/gpstk: avoid unecessary dos2unix invocations 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: Tue, 28 Feb 2012 03:30:09 -0000 >Number: 165518 >Category: ports >Synopsis: [PATCH] astro/gpstk: avoid unecessary dos2unix invocations >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 03:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: John Hein >Release: >Organization: >Environment: >Description: No need to dos2unix every extracted file. Just do Jamrules (due to the CR-less patch file). This saves time and space. >How-To-Repeat: >Fix: --- gpstk-1.7.patch begins here --- Index: Makefile =================================================================== RCS file: /base/FreeBSD-CVS/ports/astro/gpstk/Makefile,v retrieving revision 1.14 diff -u -p -u -r1.14 Makefile --- Makefile 27 Feb 2012 17:39:39 -0000 1.14 +++ Makefile 28 Feb 2012 02:33:39 -0000 @@ -21,6 +21,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME} USE_PYTHON_RUN= yes USE_LDCONFIG= yes USE_DOS2UNIX= yes +DOS2UNIX_REGEX= ${WRKSRC}/Jamrules JAM= jam JAM_ENV= PREFIX="${PREFIX}" \ --- gpstk-1.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 03:30:09 2012 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 9EDE01065674 for ; Tue, 28 Feb 2012 03:30:09 +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 73C5B8FC0A for ; Tue, 28 Feb 2012 03:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S3U9as012789 for ; Tue, 28 Feb 2012 03:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S3U9N9012788; Tue, 28 Feb 2012 03:30:09 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 03:30:09 GMT Resent-Message-Id: <201202280330.q1S3U9N9012788@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, Pedro Giffuni Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86159106566B for ; Tue, 28 Feb 2012 03:21:41 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 6ECF98FC12 for ; Tue, 28 Feb 2012 03:21:41 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1S3LfDn093367 for ; Tue, 28 Feb 2012 03:21:41 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1S3LfHo093366; Tue, 28 Feb 2012 03:21:41 GMT (envelope-from nobody) Message-Id: <201202280321.q1S3LfHo093366@red.freebsd.org> Date: Tue, 28 Feb 2012 03:21:41 GMT From: Pedro Giffuni To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165519: graphics/silgraphite : add openoffice patch. 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: Tue, 28 Feb 2012 03:30:09 -0000 >Number: 165519 >Category: ports >Synopsis: graphics/silgraphite : add openoffice patch. >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 03:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Pedro Giffuni >Release: 9.0-RELEASE >Organization: >Environment: uname -a FreeBSD pcbsd-8714 9.0-RELEASE FreeBSD 9.0-RELEASE #3: Tue Dec 27 14:14:29 PST 2011 root@build9x64.pcbsd.org:/usr/obj/builds/amd64/pcbsd-build90/fbsd-source/9.0/sys/GENERIC amd64 >Description: Silgraphite is an optional component frequently used in OpenOffice to support special glyphs from certain languages. Openoffice carries a patch to clean some issues so on OpenOffice we normally don't use the port but instead recompile it as part of the build. The patches are mostly cleanups and since there are currently no other port depending o silgraphite, it seems better to carry the patches in the port so it can be used by openoffice. While here I removed the CFLAGS as they are not used and only cause a warning when building with clang++. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN silgraphite.orig/Makefile silgraphite/Makefile --- silgraphite.orig/Makefile 2012-02-26 22:29:23.000000000 -0500 +++ silgraphite/Makefile 2012-02-27 22:09:18.000000000 -0500 @@ -18,7 +18,6 @@ USE_GNOME= pkgconfig USE_LDCONFIG= yes GNU_CONFIGURE= yes -CFLAGS+= "-I${LOCALBASE}/include" "-L${LOCALBASE}/lib" CONFIGURE_ARGS= --without-xft --without-pangographite .include diff -ruN silgraphite.orig/files/patch-openoffice-silgraphite silgraphite/files/patch-openoffice-silgraphite --- silgraphite.orig/files/patch-openoffice-silgraphite 1969-12-31 19:00:00.000000000 -0500 +++ silgraphite/files/patch-openoffice-silgraphite 2012-02-27 21:41:22.000000000 -0500 @@ -0,0 +1,2326 @@ +diff -ru ../silgraphite-2.3.1.orig/engine/include/graphite/GrCommon.h ./engine/include/graphite/GrCommon.h +--- ../silgraphite-2.3.1.orig/engine/include/graphite/GrCommon.h 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/include/graphite/GrCommon.h 2012-02-27 21:40:30.000000000 -0500 +@@ -18,6 +18,8 @@ + #ifndef GRCOMMON_INCLUDED + #define GRCOMMON_INCLUDED + ++#define _SECURE_SCL 0 // to allow GlyphSetIterator to work, which points off the end of a vector ++#define _HAS_ITERATOR_DEBUGGING 0 + + // Standard Headers. + +@@ -33,6 +35,7 @@ + #include + #include + #include ++///#include -- possibly needed for std::string Xran and Xlen functions?? + + // Uncomment this to allow multiple versions of gr to coexist + // in the same program e.g. pangographite with gtk uses namespace gr +@@ -41,7 +44,7 @@ + // Provided the client includes GrClient.h first this #define is + // picked up by all files. + +-//#define gr gr2 ++#define gr gr3ooo + + // Project headers + #include "GrPlatform.h" +diff -ru ../silgraphite-2.3.1.orig/engine/include/graphite/GrMstypes.h ./engine/include/graphite/GrMstypes.h +--- ../silgraphite-2.3.1.orig/engine/include/graphite/GrMstypes.h 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/include/graphite/GrMstypes.h 2012-02-27 21:40:30.000000000 -0500 +@@ -24,11 +24,11 @@ + + typedef signed long HRESULT; + +-inline const long InterlockedIncrement(long *const intr_lck) { ++inline long InterlockedIncrement(long *const intr_lck) { + return ++*intr_lck; + } + +-inline const long InterlockedDecrement(long *const intr_lck) { ++inline long InterlockedDecrement(long *const intr_lck) { + return --*intr_lck; + } + +diff -ru ../silgraphite-2.3.1.orig/engine/makefile.vc7 ./engine/makefile.vc7 +--- ../silgraphite-2.3.1.orig/engine/makefile.vc7 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/makefile.vc7 2012-02-27 21:40:30.000000000 -0500 +@@ -48,11 +48,7 @@ + CPP_DEBUG=/D "TRACING" $(CPP_DEBUG) + !ENDIF + +-!IF "$(OS)" == "Windows_NT" + NULL= +-!ELSE +-NULL=nul +-!ENDIF + + clean : + @- rd /s/q .\release_temp +Only in ./engine: makefile.vc8.orig +Only in ./engine: makefile.vc8.rej +diff -ru ../silgraphite-2.3.1.orig/engine/src/font/FileFont.cpp ./engine/src/font/FileFont.cpp +--- ../silgraphite-2.3.1.orig/engine/src/font/FileFont.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/font/FileFont.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -207,11 +207,11 @@ + cch16 += cch16Used; + } + // } +-#else ++#elif 1 + m_stuFaceName.assign(rgchwFace); +- // VS 2005 needs this: +- //for (int cch16 = 0; cch16 < cchw; cch16++) +- // m_stuFaceName.push_back(rgchwFace[cch16]); ++#else // VS 2005 needs this: ++ for (int cch16 = 0; cch16 < cchw; cch16++) ++ m_stuFaceName.push_back(rgchwFace[cch16]); + #endif + pTable = readTable(ktiHead, lSize); + if (!m_fIsValid || !pTable) +@@ -233,7 +233,7 @@ + FileFont::readTable(int /*TableId*/ tid, size_t & size) + { + const TableId tableId = TableId(tid); +- bool isValid = true; ++ bool isTableValid = true; + size_t lOffset = 0, lSize = 0; + if (!m_pTableCache) + { +@@ -245,9 +245,9 @@ + size = m_pTableCache->getTableSize(tableId); + // check whether it is already in the cache + if (pTable) return pTable; +- isValid &= TtfUtil::GetTableInfo(tableId, m_pHeader, m_pTableDir, ++ isTableValid &= TtfUtil::GetTableInfo(tableId, m_pHeader, m_pTableDir, + lOffset, lSize); +- if (!isValid) ++ if (!isTableValid) + return NULL; + fseek(m_pfile, lOffset, SEEK_SET); + // only allocate if needed +@@ -255,16 +255,16 @@ + + if (!pTable) + { +- isValid = false; ++ isTableValid = false; + return NULL; + } + size_t bytesRead = fread(pTable, 1, lSize, m_pfile); +- isValid = bytesRead == lSize; +- if (isValid) ++ isTableValid = bytesRead == lSize; ++ if (isTableValid) + { +- isValid &= TtfUtil::CheckTable(tableId, pTable, lSize); ++ isTableValid &= TtfUtil::CheckTable(tableId, pTable, lSize); + } +- if (!isValid) ++ if (!isTableValid) + { + return 0; + } +diff -ru ../silgraphite-2.3.1.orig/engine/src/font/Font.cpp ./engine/src/font/Font.cpp +--- ../silgraphite-2.3.1.orig/engine/src/font/Font.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/font/Font.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -626,7 +626,7 @@ + Assert(false); + m_ifeat = m_cfeat; + } +- else if (m_ifeat + n < 0) ++ else if (static_cast(m_ifeat) + n < 0) + { + // Can't decrement. + Assert(false); +@@ -727,7 +727,7 @@ + Assert(false); + m_ifset = m_cfset; + } +- if (m_ifset + n < 0) ++ if (static_cast(m_ifset) + n < 0) + { + // Can't decrement. + Assert(false); +@@ -820,7 +820,7 @@ + Assert(false); + m_ilang = m_clang; + } +- else if (m_ilang + n < 0) ++ else if (static_cast(m_ilang) + n < 0) + { + // Can't decrement. + Assert(false); +@@ -906,7 +906,7 @@ + Assert(false); + m_ilang = m_clang; + } +- else if (m_ilang + n < 0) ++ else if (static_cast(m_ilang) + n < 0) + { + // Can't decrement. + Assert(false); +diff -ru ../silgraphite-2.3.1.orig/engine/src/font/TtfUtil.cpp ./engine/src/font/TtfUtil.cpp +--- ../silgraphite-2.3.1.orig/engine/src/font/TtfUtil.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/font/TtfUtil.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -492,7 +492,7 @@ + const Sfnt::FontHeader * pTable = + reinterpret_cast(pHead); + +- return read(((pTable->mac_style) & 0x00000002) != 0); ++ return ((read(pTable->mac_style) & 0x00000002) != 0); + } + + /*---------------------------------------------------------------------------------------------- +@@ -1108,8 +1108,8 @@ + { // loca entries are two bytes and have been divided by two + if (nGlyphId <= (lLocaSize >> 1) - 1) // allow sentinel value to be accessed + { +- const uint16 * pTable = reinterpret_cast(pLoca); +- return (read(pTable[nGlyphId]) << 1); ++ const uint16 * pTableLoca = reinterpret_cast(pLoca); ++ return (read(pTableLoca[nGlyphId]) << 1); + } + } + +@@ -1117,8 +1117,8 @@ + { // loca entries are four bytes + if (nGlyphId <= (lLocaSize >> 2) - 1) + { +- const uint32 * pTable = reinterpret_cast(pLoca); +- return read(pTable[nGlyphId]); ++ const uint32 * pTableLoca = reinterpret_cast(pLoca); ++ return read(pTableLoca[nGlyphId]); + } + } + +@@ -1586,7 +1586,7 @@ + + for (size_t i = 0; i < cCompId; i++) + { +- void * pSimpleGlyf = GlyfLookup(static_cast(rgnCompId[i]), ++ pSimpleGlyf = GlyfLookup(static_cast(rgnCompId[i]), + pGlyf, pLoca, lLocaSize, pHead); + if (pSimpleGlyf == NULL) {return false;} + +@@ -1748,7 +1748,7 @@ + ----------------------------------------------------------------------------------------------*/ + bool GlyfPoints(gr::gid16 nGlyphId, const void * pGlyf, + const void * pLoca, size_t lLocaSize, const void * pHead, +- const int * prgnContourEndPoint, size_t cnEndPoints, ++ const int * /*prgnContourEndPoint*/, size_t /*cnEndPoints*/, + int * prgnX, int * prgnY, bool * prgfOnCurve, size_t cnPoints) + { + std::fill_n(prgnX, cnPoints, INT_MAX); +diff -ru ../silgraphite-2.3.1.orig/engine/src/painter/SegmentPainter.cpp ./engine/src/painter/SegmentPainter.cpp +--- ../silgraphite-2.3.1.orig/engine/src/painter/SegmentPainter.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/painter/SegmentPainter.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -353,7 +353,7 @@ + @param bOn - true if we are turning on (ignored in this implementation) + ----------------------------------------------------------------------------------------------*/ + bool SegmentPainter::drawSelectionRange(int ichwAnchor, int ichwEnd, +- float ydLineTop, float ydLineBottom, bool bOn) ++ float ydLineTop, float ydLineBottom, bool /*bOn*/) + { + if (g_fDrawing) + return true; +@@ -993,7 +993,7 @@ + an I-beam (std selection) + ----------------------------------------------------------------------------------------------*/ + void SegmentPainter::CalcOrDrawInsertionPoint( +- int ichwIP, bool fAssocPrev, bool bOn, bool fForceSplit, ++ int ichwIP, bool fAssocPrev, bool /*bOn*/, bool fForceSplit, + Rect * prdPrimary, Rect * prdSecondary) + { + GrResult res = kresOk; +@@ -1277,7 +1277,7 @@ + if NULL, do the drawing + ----------------------------------------------------------------------------------------------*/ + void SegmentPainter::InvertIBeam(float xs, float ysTop, float ysBottom, +- bool fAssocPrev, Rect * prdRet) ++ bool /*fAssocPrev*/, Rect * prdRet) + { + float xd = ScaleXToDest(xs); + float ydTop = ScaleYToDest(ysTop); +@@ -1675,7 +1675,7 @@ + } + + bool SegmentPainter::AtEdgeOfCluster(GrSlotOutput * psloutBase, int isloutBase, +- GrSlotOutput * pslout, int islout, bool fBefore) ++ GrSlotOutput * /*pslout*/, int islout, bool fBefore) + { + // Compare pslout to all the members of the cluster. If it is the minimum or maximum, it + // is at an edge. +@@ -1778,12 +1778,12 @@ + } + for (icomp = 0; icomp < pslout->NumberOfComponents(); icomp++) + { +- for (int ichw = pslout->FirstUnderlyingComponent(icomp) ; +- ichw <= pslout->LastUnderlyingComponent(icomp) ; +- ichw++) ++ for (int ichwTemp = pslout->FirstUnderlyingComponent(icomp) ; ++ ichwTemp <= pslout->LastUnderlyingComponent(icomp) ; ++ ichwTemp++) + { +- if (m_pseg->m_prgiComponent[ichw - m_pseg->m_ichwAssocsMin] == icomp) +- prgfAllSelected[ichw] = fAll; ++ if (m_pseg->m_prgiComponent[ichwTemp - m_pseg->m_ichwAssocsMin] == icomp) ++ prgfAllSelected[ichwTemp] = fAll; + } + } + } +@@ -2304,7 +2304,11 @@ + Assert that there are no overlaps among all the rectangles in the array, which should + be the case if AdjustRectsToNotOverlap is working properly. + ----------------------------------------------------------------------------------------------*/ ++#ifdef _DEBUG + void SegmentPainter::AssertNoOverlaps(std::vector & vrect) ++#else ++void SegmentPainter::AssertNoOverlaps(std::vector & /*vrect*/) ++#endif + { + #ifdef _DEBUG + for (int irect1 = 0; irect1 < signed(vrect.size() - 1); irect1++) +@@ -2452,7 +2456,11 @@ + Assert that there are no overlaps among all the rectangles in the array, which should + be the case if AdjustRectsToNotOverlap is working properly. + ----------------------------------------------------------------------------------------------*/ ++#ifdef _DEBUG + void SegmentPainter::AssertNoOverlaps(std::vector & vls) ++#else ++void SegmentPainter::AssertNoOverlaps(std::vector & /*vls*/) ++#endif + { + #ifdef _DEBUG + for (int ils1 = 0; ils1 < (int)vls.size() - 1; ils1++) +@@ -2884,7 +2892,7 @@ + { + if (icompNext != icompCurr) + { +- float xsHorizNext = (fIPOnRight) ? vxsRights[icompNext] : vxsLefts[icompNext]; ++ xsHorizNext = (fIPOnRight) ? vxsRights[icompNext] : vxsLefts[icompNext]; + if (fMovingRight && xsHorizNext > xsHorizCurr) + break; + else if (!fMovingRight && xsHorizNext < xsHorizCurr) +@@ -2996,7 +3004,7 @@ + /*---------------------------------------------------------------------------------------------- + Make sure the font is set to use the character properties required by this segment. + ----------------------------------------------------------------------------------------------*/ +-void SegmentPainter::SetFontProps(unsigned long clrFore, unsigned long clrBack) ++void SegmentPainter::SetFontProps(unsigned long /*clrFore*/, unsigned long /*clrBack*/) + { + return; + } +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/FileInput.cpp ./engine/src/segment/FileInput.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/FileInput.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/FileInput.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -80,7 +80,7 @@ + #ifdef GR_FW + bool GrBufferIStream::Open(std::wstring stuFileName, int kMode) + #else +-bool GrBufferIStream::Open(const char * pcFileName, std::ios::openmode kMode) ++bool GrBufferIStream::Open(const char * /*pcFileName*/, std::ios::openmode /*kMode*/) + #endif + { + Assert(false); // use OpenBuffer +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrCharStream.cpp ./engine/src/segment/GrCharStream.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrCharStream.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrCharStream.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -417,8 +417,11 @@ + return true; + */ + } +- ++#ifdef NDEBUG ++bool GrCharStream::AtUnicodeCharBoundary(utf8 * prgchs, int cchs, int ichs, UtfType /*utf*/) ++#else + bool GrCharStream::AtUnicodeCharBoundary(utf8 * prgchs, int cchs, int ichs, UtfType utf) ++#endif + { + Assert(ichs >= 0); + Assert(ichs <= cchs); +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrClassTable.h ./engine/src/segment/GrClassTable.h +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrClassTable.h 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrClassTable.h 2012-02-27 21:40:30.000000000 -0500 +@@ -54,7 +54,11 @@ + /*------------------------------------------------------------------------------------------ + Copy the raw memory into the instance. + ------------------------------------------------------------------------------------------*/ ++#ifdef NDEBUG ++ void CopyFrom(data16 * pchwStart, int /*cchw*/) ++#else + void CopyFrom(data16 * pchwStart, int cchw) ++#endif + { + m_cgixBIG = pchwStart[0]; + m_digixBIGInit = pchwStart[1]; +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrEngine.cpp ./engine/src/segment/GrEngine.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrEngine.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrEngine.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -159,12 +159,12 @@ + GrEngine::~GrEngine() + { + DestroyEverything(); +- #ifdef _MSC_VER +- if (!_CrtCheckMemory()) +- { +- OutputDebugString(L"bad memory"); +- } +- #endif ++// #ifdef _MSC_VER ++// if (!_CrtCheckMemory()) ++// { ++// OutputDebugString(L"bad memory"); ++// } ++// #endif + } + + /*---------------------------------------------------------------------------------------------- +@@ -173,12 +173,12 @@ + void GrEngine::DestroyEverything() + { + DestroyContents(); +- #ifdef _MSC_VER +- if (!_CrtCheckMemory()) +- { +- OutputDebugString(L"bad memory"); +- } +- #endif ++// #ifdef _MSC_VER ++// if (!_CrtCheckMemory()) ++// { ++// OutputDebugString(L"bad memory"); ++// } ++// #endif + + m_strCtrlFileReg.erase(); + m_strCtrlFileBold.erase(); +@@ -417,7 +417,11 @@ + @return The supported script direction(s). If more than one, the application is + responsible for choosing the most appropriate. + ----------------------------------------------------------------------------------------------*/ ++#ifdef NDEBUG ++GrResult GrEngine::get_ScriptDirection(unsigned int * pgrfsdc, OLECHAR * /*prgchwErrMsg*/, int /*cchMaxErrMsg*/) ++#else + GrResult GrEngine::get_ScriptDirection(unsigned int * pgrfsdc, OLECHAR * prgchwErrMsg, int cchMaxErrMsg) ++#endif + { + ChkGrOutPtr(pgrfsdc); + ChkGrArrayArg(prgchwErrMsg, cchMaxErrMsg); +@@ -789,7 +793,7 @@ + Record a system error indicating a bad error in rendering using a supposedly valid font. + OBSOLETE + ----------------------------------------------------------------------------------------------*/ +-void GrEngine::RecordFontRunError(OLECHAR * prgchwErrMsg, int cchMax, GrResult res) ++void GrEngine::RecordFontRunError(OLECHAR * prgchwErrMsg, int cchMax, GrResult /*res*/) + { + if (prgchwErrMsg == NULL || cchMax == 0) + return; +@@ -970,7 +974,7 @@ + /*---------------------------------------------------------------------------------------------- + Return whether the text is asking for bold and/or italic text. + ----------------------------------------------------------------------------------------------*/ +-void GrEngine::GetStyles(Font * pfont, int ichwMin, bool * pfBold, bool * pfItalic) ++void GrEngine::GetStyles(Font * pfont, int /*ichwMin*/, bool * pfBold, bool * pfItalic) + { + *pfBold = pfont->bold(); + *pfItalic = pfont->italic(); +@@ -981,7 +985,11 @@ + Should only be called when we know we are using a base font, or when we are reading + the base font to see if it is valid. + ----------------------------------------------------------------------------------------------*/ ++#ifdef NDEBUG ++void GrEngine::SwitchGraphicsFont(bool /*fBase*/) ++#else + void GrEngine::SwitchGraphicsFont(bool fBase) ++#endif + { + Assert(!fBase || m_stuBaseFaceName.size() > 0); + +@@ -1135,7 +1143,7 @@ + m_chwJShrink0 = 0xffff; + m_chwJStep0 = 0xffff; + m_chwJWeight0 = 0xffff; +- for (int i = 0; i < m_cJLevels; i++) ++ for (i = 0; i < m_cJLevels; i++) + { + // justification glyph attribute IDs + bTmp = grstrm.ReadByteFromFont(); +@@ -1210,10 +1218,12 @@ + + // rendering behaviors--ignore for now + byte cBehaviors = grstrm.ReadByteFromFont(); +- unsigned int nBehaviors[kMaxRenderingBehavior]; ++ int nTmp; ++ //unsigned int nBehaviors[kMaxRenderingBehavior]; -- this big buffer causes a stack overflow in Multiscribe; rework eventually + for (i = 0; i < cBehaviors; i++) + { +- nBehaviors[i] = unsigned(grstrm.ReadIntFromFont()); ++ //nBehaviors[i] = unsigned(grstrm.ReadIntFromFont()); ++ nTmp = unsigned(grstrm.ReadIntFromFont()); + } + + // linebreak glyph ID +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrFSM.cpp ./engine/src/segment/GrFSM.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrFSM.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrFSM.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -46,7 +46,7 @@ + Fill in the FSM by reading from the font stream. + Assumes the stream is in the correct position. + ----------------------------------------------------------------------------------------------*/ +-bool GrFSM::ReadFromFont(GrIStream & grstrm, int fxdVersion) ++bool GrFSM::ReadFromFont(GrIStream & grstrm, int /*fxdVersion*/) + { + short snTmp; + +@@ -138,7 +138,7 @@ + Fill in the FSM's state table by reading from the font stream. + Assumes the stream is in the correct position. + ----------------------------------------------------------------------------------------------*/ +-bool GrFSM::ReadStateTableFromFont(GrIStream & grstrm, int fxdVersion) ++bool GrFSM::ReadStateTableFromFont(GrIStream & grstrm, int /*fxdVersion*/) + { + int cCells = ((m_crow - m_crowFinal) * m_ccol); + m_prgrowTransitions = new short[cCells]; +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrFeature.cpp ./engine/src/segment/GrFeature.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrFeature.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrFeature.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -186,7 +186,7 @@ + /*---------------------------------------------------------------------------------------------- + Read the languages from the font. + ----------------------------------------------------------------------------------------------*/ +-bool GrLangTable::ReadFromFont(GrIStream * pgrstrm, int fxdVersion) ++bool GrLangTable::ReadFromFont(GrIStream * pgrstrm, int /*fxdVersion*/) + { + GrIStream & grstrm = *pgrstrm; + +@@ -206,13 +206,22 @@ + + m_cbOffset0 = (lsbf)(m_prglang[0].cbOffsetBIG); + +- Assert((lsbf)(m_prglang[m_clang].cFeaturesBIG) == 0); // bogus entry has no settings ++ if ((lsbf)(m_prglang[m_clang].cFeaturesBIG) == 0) // bogus entry has no settings ++ { + cb = (lsbf)(m_prglang[m_clang].cbOffsetBIG) - m_cbOffset0; +- Assert(cb % sizeof(FeatSet) == 0); // # of bytes fits nicely into FeatSet class ++ if (cb % sizeof(FeatSet) == 0) // # of bytes fits nicely into FeatSet class ++ { + int cfset = cb / sizeof(FeatSet); + m_prgfset = new FeatSet[cfset]; + m_cfset = cfset; + grstrm.ReadBlockFromFont(m_prgfset, cb); ++ } ++ else return false; ++ } ++ else ++ { ++ return false; ++ } + + return true; + } +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrPass.cpp ./engine/src/segment/GrPass.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrPass.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrPass.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -279,9 +279,10 @@ + @param twsh - how we are handling trailing white-space + @param pnRet - return value + @param pcslotGot - return the number of slots gotten +- @param pislotFinalBreak - return the index of the final slot, when we are removing +- the trailing white-space and so the end of the segment +- will be before the any actual line-break slot ++ @param pislotFinalBreak - index of the final slot (LB or actual glyph), or -1; ++ adjusted when we are removing the trailing white-space and ++ so the end of the segment will be before the any actual ++ line-break slot + + @return kNextPass if we were able to generated the number requested, or processing is + complete; otherwise return the number of slots needed from the previous pass. +@@ -465,7 +466,7 @@ + void GrBidiPass::ExtendOutput(GrTableManager * ptman, + GrSlotStream* psstrmIn, GrSlotStream* psstrmOut, + int cslotNeededByNext, TrWsHandling twsh, +- int * pnRet, int * pcslotGot, int * pislotFinalBreak) ++ int * pnRet, int * pcslotGot, int * /*pislotFinalBreak*/) + { + Assert(psstrmIn->SlotsToReprocess() == 0); + +@@ -776,7 +777,7 @@ + int GrPass::ExtendFinalOutput(GrTableManager * ptman, + GrSlotStream * psstrmInput, GrSlotStream * psstrmOutput, + float xsSpaceAllotted, bool fWidthIsCharCount, bool fInfiniteWidth, +- bool fHaveLineBreak, bool fMustBacktrack, LineBrk lbMax, TrWsHandling twsh, ++ bool fHaveLineBreak, bool fMustBacktrack, LineBrk /*lbMax*/, TrWsHandling twsh, + int * pislotLB, float * pxsWidth) + { + EngineState * pengst = ptman->State(); +@@ -897,7 +898,11 @@ + Remove undesirable trailing white-space. + ----------------------------------------------------------------------------------------------*/ + int GrPass::RemoveTrailingWhiteSpace(GrTableManager * ptman, GrSlotStream * psstrmOut, ++#ifdef NDEBUG ++ TrWsHandling /*twsh*/, int * pislotFinalBreak) ++#else + TrWsHandling twsh, int * pislotFinalBreak) ++#endif + { + EngineState * pengst = ptman->State(); + +@@ -944,7 +949,7 @@ + should never be necessary if they've set up their tables right. + ----------------------------------------------------------------------------------------------*/ + void GrPass::CheckInputProgress(GrSlotStream * psstrmInput, GrSlotStream * psstrmOutput, +- int islotOrigInput) ++ int /*islotOrigInput*/) + { + int islotInput = psstrmInput->ReadPosForNextGet(); + // Assert(islotInput >= islotOrigInput); -- no longer true now that we can back up +@@ -1752,7 +1757,7 @@ + ----------------------------------------------------------------------------------------------*/ + int GrPass::Unwind(GrTableManager * ptman, + int islotChanged, GrSlotStream * psstrmIn, GrSlotStream * psstrmOut, +- bool fFirst) ++ bool /*fFirst*/) + { + // Back up the number of slots required for the longest rule context, + // but if we land in the middle of a chunk, go forward to its boundary. +@@ -1824,7 +1829,7 @@ + ----------------------------------------------------------------------------------------------*/ + int GrBidiPass::Unwind(GrTableManager * ptman, + int islotChanged, GrSlotStream * psstrmIn, GrSlotStream * psstrmOut, +- bool fFirst) ++ bool /*fFirst*/) + { + int islotIn; + int islotOut; +@@ -1901,8 +1906,8 @@ + OBSOLETE + ----------------------------------------------------------------------------------------------*/ + //:Ignore +-void GrPosPass::Unattach(GrSlotStream * psstrmIn, int islotIn, +- GrSlotStream * psstrmOut, int islotOut, int islotLB) ++void GrPosPass::Unattach(GrSlotStream * /*psstrmIn*/, int /*islotIn*/, ++ GrSlotStream * /*psstrmOut*/, int /*islotOut*/, int /*islotLB*/) + { + // Because this is a positioning pass, there is a one-to-one correspondence between + // the slots in the input and the slots in the output. Thus we can make simplifying +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrPass.h ./engine/src/segment/GrPass.h +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrPass.h 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrPass.h 2012-02-27 21:40:30.000000000 -0500 +@@ -197,7 +197,7 @@ + bool ReadFromFont(GrIStream & grstrm, int fxdSilfVersion, int fxdRuleVersion, int nOffset); + void InitializeWithNoRules(); + +- virtual void SetTopDirLevel(int n) ++ virtual void SetTopDirLevel(int /*n*/) + { // only GrBidiPass does anything interesting + } + +@@ -253,13 +253,13 @@ + m_pzpst->SetResyncSkip(n); + } + +- virtual void DoCleanUpSegMin(GrTableManager * ptman, +- GrSlotStream * psstrmIn, int islotInitReadPos, GrSlotStream * psstrmOut) ++ virtual void DoCleanUpSegMin(GrTableManager * /*ptman*/, ++ GrSlotStream * /*psstrmIn*/, int /*islotInitReadPos*/, GrSlotStream * /*psstrmOut*/) + { + } + +- virtual void DoCleanUpSegLim(GrTableManager * ptman, GrSlotStream * psstrmOut, +- TrWsHandling twsh) ++ virtual void DoCleanUpSegLim(GrTableManager * /*ptman*/, GrSlotStream * /*psstrmOut*/, ++ TrWsHandling /*twsh*/) + { + } + +@@ -383,8 +383,8 @@ + void MapChunks(GrSlotStream * psstrmIn, GrSlotStream * psstrmOut, + int islotChunkI, int islotChunkO, int cslotReprocessed); + +- virtual void Unattach(GrSlotStream * psstrmIn, int islotIn, // GrPosPass overrides +- GrSlotStream * psstrmOut, int islotOut, int islotLB) ++ virtual void Unattach(GrSlotStream * /*psstrmIn*/, int /*islotIn*/, // GrPosPass overrides ++ GrSlotStream * /*psstrmOut*/, int /*islotOut*/, int /*islotLB*/) + { + } + +@@ -500,8 +500,8 @@ + + protected: + // Irrelevant when generating glyphs. +- virtual void RunRule(GrTableManager *, int ruln, +- GrSlotStream * psstrmInput, GrSlotStream * psstrmOutput) ++ virtual void RunRule(GrTableManager *, int /*ruln*/, ++ GrSlotStream * /*psstrmInput*/, GrSlotStream * /*psstrmOutput*/) + { + Assert(false); + } +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrPassActionCode.cpp ./engine/src/segment/GrPassActionCode.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrPassActionCode.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrPassActionCode.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -632,8 +632,13 @@ + /*---------------------------------------------------------------------------------------------- + We are finished processing a slot; go on to the next slot, or possibly go backwards. + ----------------------------------------------------------------------------------------------*/ +-void GrPass::DoNext(GrTableManager * ptman, +- int cslot, GrSlotStream * psstrmIn, GrSlotStream * psstrmOut) ++#ifdef NDEBUG ++void GrPass::DoNext(GrTableManager * /*ptman*/, ++ int /*cslot*/, GrSlotStream * /*psstrmIn*/, GrSlotStream * /*psstrmOut*/) ++#else ++void GrPass::DoNext(GrTableManager * /*ptman*/, ++ int cslot, GrSlotStream * /*psstrmIn*/, GrSlotStream * /*psstrmOut*/) ++#endif + { + gAssert(cslot == 1); // for now anyway + } +@@ -690,6 +695,7 @@ + psstrmOut->SetSegMinToWritePos(false); + if (fSetSegLim) + psstrmOut->SetSegLimToWritePos(false); ++ //gid16 chw; chw = pslotNew->GlyphID(); + psstrmOut->NextPut(pslotNew); + } + +@@ -729,6 +735,7 @@ + psstrmOut->SetSegMinToWritePos(false); + if (fSetSegLim) + psstrmOut->SetSegLimToWritePos(false); ++ //gid16 chw; chw = pslotNew->GlyphID(); + psstrmOut->NextPut(pslotNew); + } + +@@ -825,7 +832,7 @@ + @param psstrmIn / Out - input/output streams + ----------------------------------------------------------------------------------------------*/ + void GrPass::DoPutSubs3(GrTableManager * ptman, bool fInserting, +- int cslotSel1, int nSelClass1, int cslotSel2, int nSelClass2, int cslotSel3, int nSelClass3, ++ int cslotSel1, int nSelClass1, int cslotSel2, int nSelClass2, int /*cslotSel3*/, int nSelClass3, + int nReplacementClass, + GrSlotStream * psstrmIn, GrSlotStream * psstrmOut) + { +@@ -888,7 +895,7 @@ + Common part of all the DoPutSubs... methods. + ----------------------------------------------------------------------------------------------*/ + void GrPass::DoPutSubsAux(GrTableManager * ptman, bool fInserting, gid16 nGlyphReplacement, +- GrSlotStream * psstrmIn, GrSlotStream * psstrmOut, GrSlotState * pslotNextInput, ++ GrSlotStream * /*psstrmIn*/, GrSlotStream * psstrmOut, GrSlotState * pslotNextInput, + bool fAtSegMin, bool fAtSegLim) + { + EngineState * pengst = ptman->State(); +@@ -915,6 +922,7 @@ + psstrmOut->SetSegMinToWritePos(false); + if (fSetSegLim) + psstrmOut->SetSegLimToWritePos(false); ++ //gid16 chw; chw = pslotNew->GlyphID(); + psstrmOut->NextPut(pslotNew); + } + +@@ -924,7 +932,7 @@ + and its after-assoc to the slot before it. This makes it basically unselectable. + OBSOLETE - handled by slot initialization code + ----------------------------------------------------------------------------------------------*/ +-void GrPass::SetNeutralAssocs(GrSlotState * pslotNew, GrSlotStream * psstrmIn) ++void GrPass::SetNeutralAssocs(GrSlotState * pslotNew, GrSlotStream * /*psstrmIn*/) + { + pslotNew->ClearAssocs(); + } +@@ -943,6 +951,7 @@ + psstrmOut->SetSegLimToWritePos(); + + GrSlotState * pslot = psstrmIn->NextGet(); ++ //gid16 chw; chw = pslotNew->GlyphID(); + pslot->MarkDeleted(); + + if (ptman->LoggingTransduction()) +@@ -957,7 +966,7 @@ + @param fInserting - whether current slot was inserted + @param psstrmIn / Out - input/output streams + ----------------------------------------------------------------------------------------------*/ +-void GrPass::DoAssoc(int cnAssocs, std::vector & vnAssocs, bool fInserting, ++void GrPass::DoAssoc(int cnAssocs, std::vector & vnAssocs, bool /*fInserting*/, + GrSlotStream * psstrmIn, GrSlotStream * psstrmOut) + { + gAssert((unsigned)cnAssocs == vnAssocs.size()); +@@ -997,7 +1006,11 @@ + @param vnStack - stack to read value from + @param psstrmIn / Out - input/output streams + ----------------------------------------------------------------------------------------------*/ ++#ifdef NDEBUG ++void GrPass::DoSetAttr(GrTableManager * ptman, ActionCommand op, bool /*fInserting*/, ++#else + void GrPass::DoSetAttr(GrTableManager * ptman, ActionCommand op, bool fInserting, ++#endif + SlotAttrName slat, int slati, std::vector & vnStack, + GrSlotStream * psstrmIn, GrSlotStream * psstrmOut) + { +@@ -1192,7 +1205,7 @@ + @param psstrmIn - input stream + ----------------------------------------------------------------------------------------------*/ + void GrPass::DoPushSlotAttr(GrTableManager * ptman, +- int nSlotRef, bool fInserting, ++ int nSlotRef, bool /*fInserting*/, + SlotAttrName slat, int slati, std::vector & vnStack, + GrSlotStream * psstrmIn, GrSlotStream * psstrmOut) + { +@@ -1236,16 +1249,16 @@ + + case kslatAttTo: nVal = pslot->AttachTo(); break; + case kslatAttLevel: nVal = pslot->AttachLevel(); break; +- case kslatAttAtX: nVal = pslot->AttachAtX(ptman, psstrmIn); break; + case kslatAttAtY: nVal = pslot->AttachAtY(); break; + case kslatAttAtGpt: nVal = pslot->AttachAtGpoint(); break; + case kslatAttAtXoff: nVal = pslot->AttachAtXOffset(); break; + case kslatAttAtYoff: nVal = pslot->AttachAtYOffset(); break; +- case kslatAttWithX: nVal = pslot->AttachWithX(ptman, psstrmIn); break; + case kslatAttWithY: nVal = pslot->AttachWithY(); break; + case kslatAttWithGpt: nVal = pslot->AttachWithGpoint(); break; + case kslatAttWithXoff: nVal = pslot->AttachWithXOffset(); break; + case kslatAttWithYoff: nVal = pslot->AttachWithYOffset(); break; ++ case kslatAttAtX: nVal = pslot->AttachAtX(ptman, psstrmIn); break; ++ case kslatAttWithX: nVal = pslot->AttachWithX(ptman, psstrmIn); break; + + case kslatMeasureSol: nVal = pslot->MeasureSol(); break; + case kslatMeasureEol: nVal = pslot->MeasureEol(); break; +@@ -1282,7 +1295,7 @@ + @param vnStack - stack to push onto + @param psstrmIn - input stream + ----------------------------------------------------------------------------------------------*/ +-void GrPass::DoPushGlyphAttr(GrTableManager * ptman, int nSlotRef, bool fInserting, ++void GrPass::DoPushGlyphAttr(GrTableManager * ptman, int nSlotRef, bool /*fInserting*/, + int nGlyphAttr, + std::vector & vnStack, GrSlotStream * psstrmIn, GrSlotStream * psstrmOut) + { +@@ -1307,7 +1320,7 @@ + @param vnStack - stack to push onto + @param psstrmIn - input stream + ----------------------------------------------------------------------------------------------*/ +-void GrPass::DoPushAttToGlyphAttr(GrTableManager * ptman, int nSlotRef, bool fInserting, ++void GrPass::DoPushAttToGlyphAttr(GrTableManager * ptman, int nSlotRef, bool /*fInserting*/, + int nGlyphAttr, std::vector & vnStack, + GrSlotStream * psstrmIn, GrSlotStream * psstrmOut) + { +@@ -1337,7 +1350,7 @@ + @param vnStack - stack to push onto + @param psstrmIn - input stream + ----------------------------------------------------------------------------------------------*/ +-void GrPass::DoPushGlyphMetric(GrTableManager * ptman, int nSlotRef, bool fInserting, ++void GrPass::DoPushGlyphMetric(GrTableManager * ptman, int nSlotRef, bool /*fInserting*/, + int nGlyphAttr, int nAttLevel, + std::vector & vnStack, GrSlotStream * psstrmIn, GrSlotStream * psstrmOut) + { +@@ -1364,7 +1377,7 @@ + @param psstrmIn - input stream + @param psstrmOut - output stream + ----------------------------------------------------------------------------------------------*/ +-void GrPass::DoPushAttToGlyphMetric(GrTableManager * ptman, int nSlotRef, bool fInserting, ++void GrPass::DoPushAttToGlyphMetric(GrTableManager * ptman, int nSlotRef, bool /*fInserting*/, + int nGlyphAttr, int nAttLevel, + std::vector & vnStack, + GrSlotStream * psstrmIn, GrSlotStream * psstrmOut) +@@ -1399,7 +1412,7 @@ + } + else + { +- pslot->CalcCompositeMetrics(ptman, psstrmIn, nAttLevel, true); ++ pslot->CalcCompositeMetrics(ptman, psstrmIn, NULL, nAttLevel, true); + + float xy; + switch (gmet) +@@ -1435,7 +1448,11 @@ + @param psstrmIn - input stream + @param psstrmOut - output stream + ----------------------------------------------------------------------------------------------*/ +-void GrPass::DoPushFeatValue(GrTableManager * ptman, int nSlotRef, bool fInserting, ++#ifdef NDEBUG ++void GrPass::DoPushFeatValue(GrTableManager * /*ptman*/, int nSlotRef, bool /*fInserting*/, ++#else ++void GrPass::DoPushFeatValue(GrTableManager * /*ptman*/, int nSlotRef, bool fInserting, ++#endif + int nFeat, std::vector & vnStack, GrSlotStream * psstrmIn, GrSlotStream * psstrmOut) + { + gAssert(!fInserting); +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrSlotState.cpp ./engine/src/segment/GrSlotState.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrSlotState.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrSlotState.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -261,7 +261,7 @@ + root or attached leaf slots. + OBSOLETE + ----------------------------------------------------------------------------------------------*/ +-void GrSlotState::FixAttachmentTree(GrSlotState * pslotOld) ++void GrSlotState::FixAttachmentTree(GrSlotState * /*pslotOld*/) + { + #if 0 + pslotOld->m_vpslotAttLeaves.CopyTo(m_vpslotAttLeaves); +@@ -524,13 +524,13 @@ + GrSlotState * pslot; + if (HasComponents()) + { +- for (int iComponent = 0; iComponent < m_cnCompPerLig; iComponent++) ++ for (int iLigComponent = 0; iLigComponent < m_cnCompPerLig; iLigComponent++) + { +- pslot = CompRefSlot(iComponent); ++ pslot = CompRefSlot(iLigComponent); + if (pslot) + { + Assert(PassModified() >= pslot->PassModified()); +- pslot->AllComponentRefs(vichw, vicomp, iComponent); ++ pslot->AllComponentRefs(vichw, vicomp, iLigComponent); + } + } + } +@@ -1024,7 +1024,7 @@ + NOTE: the caller is responsible to zap the cached positions of following glyphs + in the stream. + ----------------------------------------------------------------------------------------------*/ +-void GrSlotState::AttachToRoot(GrTableManager * ptman, GrSlotStream * psstrm, ++void GrSlotState::AttachToRoot(GrTableManager * /*ptman*/, GrSlotStream * psstrm, + GrSlotState * pslotNewRoot) + { + GrSlotState * pslotOldRoot = (m_dislotRootFixed == 0) ? +@@ -1063,7 +1063,7 @@ + + float xsWidth, xsVisWidth; + if (m_xsPositionX == kNegInfFloat || m_ysPositionY == kNegInfFloat) +- ptman->CalcPositionsUpTo(psstrmOut->m_ipass, this, &xsWidth, &xsVisWidth); ++ ptman->CalcPositionsUpTo(psstrmOut->m_ipass, this, true, &xsWidth, &xsVisWidth); + + *pmXPos = ptman->LogToEmUnits(m_xsPositionX); + *pmYPos = ptman->LogToEmUnits(m_ysPositionY); +@@ -1077,7 +1077,7 @@ + { + Assert(m_dislotRootFixed == m_srAttachTo); + GrSlotState * pslotRoot = AttachRoot(psstrm); +- CalcRootMetrics(ptman, psstrm, kPosInfinity); ++ CalcRootMetrics(ptman, psstrm, NULL, kPosInfinity); + if (pslotRoot) + pslotRoot->AdjustRootMetrics(ptman, psstrm); + } +@@ -1086,13 +1086,15 @@ + Calculate the composite metrics for this slot. + + @param psstrm - stream for which we are calculating it ++ @param psstrmNext - because when processing in the middle of a pass, we may need to ++ get the slot from the following (output) stream + @param nLevel - attachment level we are asking for; kPosInifinity means all levels + @param fThorough - true: do a thorough recalculation; false: don't recalculate + metrics for leaves (are they assumed to be accurate???) + --currently not used + ----------------------------------------------------------------------------------------------*/ + void GrSlotState::CalcCompositeMetrics(GrTableManager * ptman, GrSlotStream * psstrm, +- int nLevel, bool fThorough) ++ GrSlotStream * psstrmNext, int nLevel, bool fThorough) + { + if (m_nCompositeLevel == nLevel) + return; +@@ -1101,19 +1103,38 @@ + { + Assert(m_dislotRootFixed == m_srAttachTo); + GrSlotState * pslotRoot = AttachRoot(psstrm); ++ // Kludge to handle the fact that we might have gotten the root from the wrong stream. ++ // Calling MidPassSlotAt finds the right one. ++ if (psstrmNext && pslotRoot) ++ { ++ int islotRoot = pslotRoot->PosPassIndex(); ++ pslotRoot = psstrm->MidPassSlotAt(islotRoot, psstrmNext); ++ } + + InitMetrics(ptman, pslotRoot); + + for (size_t islot = 0; islot < m_vdislotAttLeaves.size(); islot++) + { +- GrSlotState * pslotLeaf = SlotAtOffset(psstrm, m_vdislotAttLeaves[islot]); ++ GrSlotState * pslotLeaf; ++ if (psstrmNext) ++ { ++ // Calculating a position in the middle of processing a pass. ++ pslotLeaf = psstrm->MidPassSlotAt(PosPassIndex() + m_vdislotAttLeaves[islot], ++ psstrmNext); ++ } ++ else ++ { ++ // Calculating the final position. ++ pslotLeaf = SlotAtOffset(psstrm, m_vdislotAttLeaves[islot]); ++ } ++ + if (pslotLeaf->AttachLevel() <= nLevel) +- pslotLeaf->CalcCompositeMetrics(ptman, psstrm, nLevel, fThorough); ++ pslotLeaf->CalcCompositeMetrics(ptman, psstrm, psstrmNext, nLevel, fThorough); + else + // this slot will be ignored in the composite metrics + pslotLeaf->ZapRootMetrics(); + } +- CalcRootMetrics(ptman, psstrm, nLevel); ++ CalcRootMetrics(ptman, psstrm, psstrmNext, nLevel); + + m_nCompositeLevel = nLevel; + } +@@ -1129,25 +1150,33 @@ + /*---------------------------------------------------------------------------------------------- + Calculate the metrics for this node and all its leaf nodes. + ----------------------------------------------------------------------------------------------*/ +-void GrSlotState::CalcRootMetrics(GrTableManager * ptman, GrSlotStream * psstrm, int nLevel) ++void GrSlotState::CalcRootMetrics(GrTableManager * /*ptman*/, GrSlotStream * psstrm, ++ GrSlotStream * psstrmNext, int nLevel) + { + for (size_t idislot = 0; idislot < m_vdislotAttLeaves.size(); idislot++) + { +- GrSlotState * pslot = SlotAtOffset(psstrm, m_vdislotAttLeaves[idislot]); +- if (pslot->AttachLevel() > nLevel) ++ GrSlotState * pslotLeaf = SlotAtOffset(psstrm, m_vdislotAttLeaves[idislot]); ++ // Kludge to handle the fact that we might have gotten the leaf from the wrong stream. ++ // Calling MidPassSlotAt finds the right one. ++ if (psstrmNext) ++ { ++ int islot = pslotLeaf->PosPassIndex(); ++ pslotLeaf = psstrm->MidPassSlotAt(islot, psstrmNext); ++ } ++ if (pslotLeaf->AttachLevel() > nLevel) + continue; + +- m_xsClusterXOffset = min(m_xsClusterXOffset, pslot->m_xsClusterXOffset); +- if (!pslot->m_fIgnoreAdvance) ++ m_xsClusterXOffset = min(m_xsClusterXOffset, pslotLeaf->m_xsClusterXOffset); ++ if (!pslotLeaf->m_fIgnoreAdvance) + { + m_xsClusterAdv = max( + m_xsClusterAdv, +- pslot->m_xsClusterAdv + m_xsRootShiftX); ++ pslotLeaf->m_xsClusterAdv + m_xsRootShiftX); + } +- m_xsClusterBbLeft = min(m_xsClusterBbLeft, pslot->m_xsClusterBbLeft); +- m_xsClusterBbRight = max(m_xsClusterBbRight, pslot->m_xsClusterBbRight); +- m_ysClusterBbTop = max(m_ysClusterBbTop, pslot->m_ysClusterBbTop); +- m_ysClusterBbBottom = min(m_ysClusterBbBottom, pslot->m_ysClusterBbBottom); ++ m_xsClusterBbLeft = min(m_xsClusterBbLeft, pslotLeaf->m_xsClusterBbLeft); ++ m_xsClusterBbRight = max(m_xsClusterBbRight, pslotLeaf->m_xsClusterBbRight); ++ m_ysClusterBbTop = max(m_ysClusterBbTop, pslotLeaf->m_ysClusterBbTop); ++ m_ysClusterBbBottom = min(m_ysClusterBbBottom, pslotLeaf->m_ysClusterBbBottom); + } + } + +@@ -1263,7 +1292,7 @@ + /*---------------------------------------------------------------------------------------------- + Y-offsets of a single glyph relative to the previous advance position. + ----------------------------------------------------------------------------------------------*/ +-float GrSlotState::GlyphYOffset(GrSlotStream * psstrm) ++float GrSlotState::GlyphYOffset(GrSlotStream * /*psstrm*/) + { + return m_ysOffsetY; + } +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrSlotState.h ./engine/src/segment/GrSlotState.h +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrSlotState.h 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrSlotState.h 2012-02-27 21:40:30.000000000 -0500 +@@ -48,7 +48,7 @@ + { + } + +- ~GrSlotAbstract() ++ virtual ~GrSlotAbstract() + { + // the table manager is responsible for destroying the contents of m_prgnVarLenBuf + } +@@ -231,7 +231,7 @@ + ZapCompositeMetrics(); + } + +- ~GrSlotState() ++ virtual ~GrSlotState() + { + } + +@@ -308,7 +308,11 @@ + { + return m_islotPosPass; + } ++#ifdef NDEBUG ++ void SetPosPassIndex(int islot, bool /*fInputToPosPass1*/) ++#else + void SetPosPassIndex(int islot, bool fInputToPosPass1) ++#endif + { + // If we're resetting it, it should be to the same value as before: + Assert(fInputToPosPass1 || m_islotPosPass == kNotYetSet || m_islotPosPass == islot); +@@ -386,12 +390,12 @@ + return (IsInitialLineBreak(chwLB) || IsFinalLineBreak(chwLB)); + //return (m_chwGlyphID == chwLB); // TODO: remove + } +- bool IsInitialLineBreak(gid16 chwLB) ++ bool IsInitialLineBreak(gid16 /*chwLB*/) + { + return (m_spsl == kspslLbInitial); + //return (IsLineBreak(chwLB) && m_fInitialLB == true); // TODO: remove + } +- bool IsFinalLineBreak(gid16 chwLB) ++ bool IsFinalLineBreak(gid16 /*chwLB*/) + { + return (m_spsl == kspslLbFinal); + //return (IsLineBreak(chwLB) && m_fInitialLB == false); // TODO: remove +@@ -475,7 +479,7 @@ + return m_mAttachAtX; + } + +- int AttachWithX(GrTableManager * ptman, GrSlotStream * psstrm) ++ int AttachWithX(GrTableManager * /*ptman*/, GrSlotStream * /*psstrm*/) + { + if (m_mAttachAtX == kNotYetSet) + { +@@ -615,7 +619,7 @@ + GrSlotStream * psstrmIn, GrSlotStream * psstrmOut, int islotThis); + + void CalcCompositeMetrics(GrTableManager * ptman, GrSlotStream * psstrm, +- int nLevel, bool fThorough = false); ++ GrSlotStream * psstrmNext, int nLevel, bool fThorough = false); + + void Position(GrTableManager * ptman, + GrSlotStream * psstrmOut, int * pmXPos, int * pmYPos); +@@ -646,7 +650,7 @@ + { + return ClusterBbLeft(psstrm) + xs; + } +- float ClusterRsb(GrSlotStream * psstrm, float xs) ++ float ClusterRsb(GrSlotStream * /*psstrm*/, float xs) + { + return ClusterAdvWidthFrom(xs) - ClusterBbRightFrom(xs); + } +@@ -668,19 +672,19 @@ + { + return ClusterBbRightFrom(Base(psstrm)->ClusterRootOffset()); + } +- float ClusterBbTop(GrSlotStream * psstrm) ++ float ClusterBbTop(GrSlotStream * /*psstrm*/) + { + return m_ysClusterBbTop; + } +- float ClusterBbBottom(GrSlotStream * psstrm) ++ float ClusterBbBottom(GrSlotStream * /*psstrm*/) + { + return m_ysClusterBbBottom; + } +- float ClusterBbWidth(GrSlotStream * psstrm) ++ float ClusterBbWidth(GrSlotStream * /*psstrm*/) + { + return m_xsClusterBbRight - m_xsClusterBbLeft + 1; + } +- float ClusterBbHeight(GrSlotStream * psstrm) ++ float ClusterBbHeight(GrSlotStream * /*psstrm*/) + { + return m_ysClusterBbTop - m_ysClusterBbBottom + 1; + } +@@ -990,7 +994,8 @@ + void InitMetrics(GrTableManager * ptman, GrSlotState * pslotRoot); + void InitLeafMetrics(GrTableManager * ptman, GrSlotState * pslotRoot); + void InitRootMetrics(GrTableManager * ptman); +- void CalcRootMetrics(GrTableManager * ptman, GrSlotStream *, int nLevel); ++ void CalcRootMetrics(GrTableManager * ptman, GrSlotStream * psstrm, ++ GrSlotStream * psstrmNext, int nLevel); + void AttachToRoot(GrTableManager * ptman, GrSlotStream *, GrSlotState * pslotNewRoot); + void AttachLogUnits(GrTableManager * ptman, + GrSlotState * pslotRoot, +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrSlotStream.cpp ./engine/src/segment/GrSlotStream.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrSlotStream.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrSlotStream.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -189,12 +189,16 @@ + stream position when the rule is being run. + + @param dislot - how far back to peek before the write position +- when the rule started; a negative number ++ WHEN THE RULE STARTED; a negative number + (NOTE: the current write position is irrelevant) + @param fNullOkay - true if it's okay to return NULL in the situation where we're asking + for something before the beginning of the stream + ----------------------------------------------------------------------------------------------*/ ++#ifdef NDEBUG ++GrSlotState * GrSlotStream::PeekBack(int dislot, bool /*fNullOkay*/) ++#else + GrSlotState * GrSlotStream::PeekBack(int dislot, bool fNullOkay) ++#endif + { + Assert(dislot < 0); + if (dislot < m_islotRuleStartWrite * -1) +@@ -1104,6 +1108,7 @@ + case kdircRLO: + case kdircRLE: + case kdircPdfR: ++ case kdircRlb: + return true; + + case kdircNeutral: +@@ -1212,7 +1217,7 @@ + return true; + + float xsWidth, xsVisWidth; +- ptman->CalcPositionsUpTo(m_ipass, NULL, &xsWidth, &xsVisWidth); ++ ptman->CalcPositionsUpTo(m_ipass, NULL, false, &xsWidth, &xsVisWidth); + + *pxsWidth = (fIgnoreTrailingWS || twsh == ktwshOnlyWs) ? xsVisWidth : xsWidth; + return (*pxsWidth < xsSpaceAllotted); +@@ -1322,7 +1327,7 @@ + @param islotMin - first slot that is officially part of the segment (after initial LB) + ----------------------------------------------------------------------------------------------*/ + int GrSlotStream::MakeSegmentBreak(GrTableManager * ptman, +- int islotPrevBreak, bool fInsertedLB, int islotStartTry, ++ int /*islotPrevBreak*/, bool /*fInsertedLB*/, int islotStartTry, + LineBrk lb, TrWsHandling twsh, int islotMin, + LineBrk * plbNextToTry) + { +@@ -1576,7 +1581,11 @@ + Return the break weight of the given slot, which should be a line-break. + OBSOLETE?? + ----------------------------------------------------------------------------------------------*/ ++#ifdef NDEBUG ++LineBrk GrSlotStream::BreakWeightAt(gid16 /*chwLB*/, int islot) ++#else + LineBrk GrSlotStream::BreakWeightAt(gid16 chwLB, int islot) ++#endif + { + GrSlotState * pslot = GetSlotAt(islot); + Assert(pslot->IsLineBreak(chwLB)); +@@ -1769,7 +1778,7 @@ + @param fBackingUp - this chunk results in the stream position moving backwards, + so clear anything we're backing over + ----------------------------------------------------------------------------------------------*/ +-void GrSlotStream::MapInputChunk(int islotInputMin, int islotOutputMin, int islotInputLim, ++void GrSlotStream::MapInputChunk(int islotInputMin, int islotOutputMin, int /*islotInputLim*/, + bool fSkipChunkStart, bool fBackingUp) + { + Assert(AssertValid()); +@@ -1828,7 +1837,7 @@ + @param fBackingUp - this chunk results in the stream position moving backwards, + so clear anything we're backing over + ----------------------------------------------------------------------------------------------*/ +-void GrSlotStream::MapOutputChunk(int islotOutputMin, int islotInputMin, int islotOutputLim, ++void GrSlotStream::MapOutputChunk(int islotOutputMin, int islotInputMin, int /*islotOutputLim*/, + bool fSkipChunkStart, int cslotReprocess, bool fBackingUp) + { + Assert(AssertValid()); +@@ -1863,7 +1872,11 @@ + Ensure that the chunk maps for a pair of streams match properly. The recipient is + the input stream. + ----------------------------------------------------------------------------------------------*/ ++#ifdef _DEBUG + void GrSlotStream::AssertChunkMapsValid(GrSlotStream * psstrmOut) ++#else ++void GrSlotStream::AssertChunkMapsValid(GrSlotStream * ) ++#endif + { + #ifdef _DEBUG + GrSlotStream * psstrmIn = this; +@@ -1915,7 +1928,11 @@ + Ensure that corresponding items in the streams of a positioning pass have matching + stream indices. The recipient is the output stream. + ----------------------------------------------------------------------------------------------*/ ++#ifdef _DEBUG + void GrSlotStream::AssertStreamIndicesValid(GrSlotStream * psstrmIn) ++#else ++void GrSlotStream::AssertStreamIndicesValid(GrSlotStream * ) ++#endif + { + #ifdef _DEBUG + if (!GotIndexOffset()) +@@ -1939,7 +1956,11 @@ + in the output stream. (Currently the compiler ensures this by making it an error + to write rules that don't do this.) + ----------------------------------------------------------------------------------------------*/ ++#ifdef _DEBUG + void GrSlotStream::AssertAttachmentsInOutput(int islotMin, int islotLim) ++#else ++void GrSlotStream::AssertAttachmentsInOutput(int , int ) ++#endif + { + #ifdef _DEBUG + for (int islot = islotMin; islot < islotLim; islot++) +@@ -2007,7 +2028,11 @@ + Record the number of slots in the stream that are previous to the official start of the + segment. + ----------------------------------------------------------------------------------------------*/ ++#ifdef _DEBUG + void GrSlotStream::CalcIndexOffset(GrTableManager * ptman) ++#else ++void GrSlotStream::CalcIndexOffset(GrTableManager * ) ++#endif + { + if (GotIndexOffset()) + return; // already figured it +@@ -2203,6 +2228,21 @@ + } + + /*---------------------------------------------------------------------------------------------- ++ In the middle of running a pass, return the given slot to use in processing. ++ Read it from the reprocess buffer if appropriate, or for slots previous to the current ++ position, read from the output stream (psstrmNext). ++ ++ psstrmNext may be NULL when processing is complete, therefore we only have one stream to ++ deal with. ++----------------------------------------------------------------------------------------------*/ ++GrSlotState * GrSlotStream::MidPassSlotAt(int islot, GrSlotStream * psstrmNext) ++{ ++ int islotInput = islot - ReadPosForNextGet() + 1; // +1 because RuleInputSlot takes 0 to mean the previously read slot ++ GrSlotState * pslot = RuleInputSlot(islotInput, psstrmNext); ++ return pslot; ++} ++ ++/*---------------------------------------------------------------------------------------------- + Return the "current" input item from the rule's perspective, ie, the last slot read. + So dislotOffset = 0 means not the slot at the read position but one slot earlier. + +@@ -2214,7 +2254,6 @@ + @param fNullOkay - true if it's okay to return NULL in the situation where we're asking + for something before the beginning of the stream + ----------------------------------------------------------------------------------------------*/ +- + GrSlotState * GrSlotStream::RuleInputSlot(int dislotOffset, GrSlotStream * psstrmOutput, + bool fNullOkay) + { +@@ -2244,8 +2283,10 @@ + + if (cslotOffsetBack >= cslotPostReproc + cslotValidReproc) + { +- // Read from the output stream. +- int dislotTmp = dislotOffset - 1 + cslotPostReproc + cslotValidReproc; ++ // Read from the output stream. (Remember that PeekBack works relative to ++ // the rule-start write position, not the current write position.) ++ int dislotTmp = dislotOffset - 1 + cslotPostReproc ++ + cslotValidReproc - SlotsToReprocess(); + Assert(dislotTmp < 0); + return psstrmOutput->PeekBack(dislotTmp); + } +@@ -2253,7 +2294,7 @@ + { + if (m_islotReprocPos > -1) + { +- // Current read pos is inside reprocess buffer. ++ // Current read pos could be inside reprocess buffer. + Assert(cslotPostReproc == 0); + int islotStartReadReprocBuf = m_vpslotReproc.size() - cslotValidReproc; + Assert(islotStartReadReprocBuf >= 0); +@@ -2342,9 +2383,10 @@ + else if (pslotAfter) + pslot->Associate(pslotAfter); + else ++ { + // Weird, but can happen with an empty segment. + Warn("No assocations"); +- ++ } + // Assert(pslot->m_vpslotAssoc.Size() > 0); + pslot->m_fNeutralAssocs = true; + } +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrSlotStream.h ./engine/src/segment/GrSlotStream.h +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrSlotStream.h 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrSlotStream.h 2012-02-27 21:40:30.000000000 -0500 +@@ -107,7 +107,7 @@ + ReleaseSlots(0, m_vpslot.size()); + } + +- void ReleaseSlots(int islotMin, int islotLim) ++ void ReleaseSlots(int /*islotMin*/, int /*islotLim*/) + { + // A slot stream is responsible for deleting the slot states that it created, + // that is, the ones whose modified tag equals this stream's pass index. +@@ -182,6 +182,7 @@ + return Peek(islot - ReadPosForNextGet()); + } + ++ // Return the functional read position, taking into account the reprocess buffer. + int ReadPosForNextGet() + { + return ReadPos() - SlotsToReprocess(); +@@ -260,12 +261,16 @@ + + void MarkFullyWritten(); + ++#ifdef NDEBUG ++ void SetSegMin(int islot, bool /*fAdjusting*/ = false) ++#else + void SetSegMin(int islot, bool fAdjusting = false) ++#endif + { + Assert(fAdjusting || m_islotSegMin == -1 || m_islotSegMin == islot); + m_islotSegMin = islot; + } +- void SetSegMinToWritePos(bool fMod = true) ++ void SetSegMinToWritePos(bool /*fMod*/ = true) + { + if (m_islotSegMin == -1) + m_islotSegMin = m_islotWritePos; +@@ -456,6 +461,7 @@ + } + } + ++ GrSlotState * MidPassSlotAt(int islot, GrSlotStream * psstrmNext = NULL); + GrSlotState * RuleInputSlot(int dislot = 0, GrSlotStream * psstrmOut = NULL, + bool fNullOkay = false); + GrSlotState * RuleOutputSlot(int dislot = 0); +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrTableManager.cpp ./engine/src/segment/GrTableManager.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrTableManager.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrTableManager.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -25,8 +25,8 @@ + DEFINE_THIS_FILE + #ifndef _WIN32 + #include +-#include + #endif ++#include + + //:>******************************************************************************************** + //:> Forward declarations +@@ -572,7 +572,7 @@ + else + { + Assert(!m_engst.m_fInsertedLB); +- Assert(islotUnderBreak == -1 || m_engst.m_fFinalLB); ++ //Assert(islotUnderBreak == -1 || m_engst.m_fFinalLB); -- no, ExtendGlyphIDOutput clearly sets islotUnderBreak regardless + } + int islotTmp = OutputStream(m_cpass - 1)->WritePos(); + GrSlotState * pslotTmp; +@@ -931,7 +931,7 @@ + @param plbFound - kind of line-break created + ----------------------------------------------------------------------------------------------*/ + bool GrTableManager::Backtrack(int * pislotPrevBreak, +- LineBrk * plbMin, LineBrk lbMax, TrWsHandling twsh, bool fMoreText, ++ LineBrk * plbMin, LineBrk lbMax, TrWsHandling twsh, bool /*fMoreText*/, + int ichwCallerBtLim, bool fEndLine, + LineBrk * plbFound) + { +@@ -1343,7 +1343,7 @@ + Calculate the associations, and record the output slots in the segment. + ----------------------------------------------------------------------------------------------*/ + void GrTableManager::RecordAssocsAndOutput(Font * pfont, +- Segment * pseg, bool fWidthIsCharCount, ++ Segment * pseg, bool /*fWidthIsCharCount*/, + TrWsHandling twsh, bool fParaRtl, int nDirDepth) + { + int cchwUnderlying = pseg->stopCharacter() - pseg->startCharacter(); +@@ -1362,7 +1362,7 @@ + #endif // OLD_TEST_STUFF + + // Make sure the final positions are set for every glyph. +- CalcPositionsUpTo(m_cpass-1, reinterpret_cast(NULL), ++ CalcPositionsUpTo(m_cpass-1, reinterpret_cast(NULL), false, + &xsTotalWidth, &xsVisWidth); + pseg->SetWidths(xsVisWidth, xsTotalWidth); + +@@ -1377,7 +1377,7 @@ + Calculate the underlying-to-surface associations and ligature mappings. + Assumes the arrays have been properly initialized. + ----------------------------------------------------------------------------------------------*/ +-void GrTableManager::CalculateAssociations(Segment * pseg, int csloutSurface) ++void GrTableManager::CalculateAssociations(Segment * pseg, int /*csloutSurface*/) + { + GrSlotStream * psstrmFinal = OutputStream(m_cpass-1); + +@@ -2350,18 +2350,20 @@ + final pass, but it could be another if positions are + requested by the rules themselves + @param pslotLast - last slot that needs to be positioned, or NULL ++ @param fMidPass - calculating the position of some slot in the middle of the pass + @param pxsWidth - return the total width used so far + @param psxVisibleWidth - return the visible width so far + + MOVE to EngineState + ----------------------------------------------------------------------------------------------*/ +-void GrTableManager::CalcPositionsUpTo(int ipass, GrSlotState * pslotLast, ++void GrTableManager::CalcPositionsUpTo(int ipass, GrSlotState * pslotLast, bool fMidPass, + float * pxsWidth, float * pxsVisibleWidth) + { + Assert(ipass >= m_ipassPos1 - 1); + + int isstrm = ipass; + GrSlotStream * psstrm = OutputStream(isstrm); ++ GrSlotStream * psstrmNext = (isstrm >= m_cpass - 1) ? NULL : OutputStream(isstrm + 1); + Assert(psstrm->GotIndexOffset()); + if (psstrm->WritePos() <= psstrm->IndexOffset()) + { +@@ -2399,7 +2401,9 @@ + // to be later in the stream than the last actual slot passed in. + if (!psstrm->HasSlotAtPosPassIndex(pslotLast->AttachRootPosPassIndex())) + return; +- GrSlotState * pslotLastBase = pslotLast->Base(psstrm); ++ GrSlotState * pslotLastBase = (fMidPass && pslotLast->PosPassIndex() < psstrm->WritePos()) ++ ? pslotLast->Base(psstrmNext) ++ : pslotLast->Base(psstrm); + + if (ipass == m_cpass - 1 && m_engst.m_islotPosNext > -1) + { +@@ -2428,6 +2432,7 @@ + } + + std::vector vpslotAttached; ++ std::vector vpsstrmAttached; + + bool fRtl = RightToLeft(); + +@@ -2435,13 +2440,24 @@ + { + Assert(islot < psstrm->SlotsPresent()); + +- pslot = (isstrm == ipass) ? psstrm->SlotAt(islot) : psstrm->OutputSlotAt(islot); ++ GrSlotStream * psstrmThis = psstrm; ++ if (fMidPass && islot < psstrm->WritePos()) ++ { ++ pslot = psstrm->MidPassSlotAt(islot, psstrmNext); ++ psstrmThis = psstrmNext; ++ } ++ else ++ { ++ //pslot = (isstrm == ipass) ? psstrm->SlotAt(islot) : psstrm->OutputSlotAt(islot); ++ pslot = psstrm->SlotAt(islot); ++ } + + if (!pslot->IsBase()) + { + // This slot is attached to another; it will be positioned strictly + // relative to that one. This happens in the loop below. + vpslotAttached.push_back(pslot); ++ vpsstrmAttached.push_back(psstrmThis); + } + else + { +@@ -2455,7 +2471,7 @@ + } + + // Make sure the metrics are the complete ones. +- pslot->CalcCompositeMetrics(this, psstrm, kPosInfinity, true); ++ pslot->CalcCompositeMetrics(this, psstrm, psstrmNext, kPosInfinity, true); + + float xsInc = pslot->GlyphXOffset(psstrm, fakeItalicRatio); + float ysInc = pslot->GlyphYOffset(psstrm); +@@ -2514,8 +2530,9 @@ + + for (size_t ipslot = 0; ipslot < vpslotAttached.size(); ipslot++) + { +- GrSlotState * pslot = vpslotAttached[ipslot]; +- GrSlotState * pslotBase = pslot->Base(psstrm); ++ GrSlotState * pslotAtt = vpslotAttached[ipslot]; ++ GrSlotStream * psstrmAtt = vpsstrmAttached[ipslot]; ++ GrSlotState * pslotBase = pslotAtt->Base(psstrmAtt); + if (pslotBase->XPosition() == kNegInfinity || pslotBase->YPosition() == kNegInfinity) + { + Assert(false); +@@ -2523,10 +2540,10 @@ + } + float xsCluster = pslotBase->XPosition() - pslotBase->GlyphXOffset(psstrm, fakeItalicRatio); + float ysCluster = pslotBase->YPosition() - pslotBase->GlyphYOffset(psstrm); +- float xsInc = pslot->GlyphXOffset(psstrm, fakeItalicRatio); +- float ysInc = pslot->GlyphYOffset(psstrm); +- pslot->SetXPos(xsCluster + xsInc); +- pslot->SetYPos(ysCluster + ysInc); ++ float xsInc = pslotAtt->GlyphXOffset(psstrm, fakeItalicRatio); ++ float ysInc = pslotAtt->GlyphYOffset(psstrm); ++ pslotAtt->SetXPos(xsCluster + xsInc); ++ pslotAtt->SetYPos(ysCluster + ysInc); + + // My theory is that we don't need to adjust *pxsWidth here, because the width of + // any non-base slots should be factored into the advance width of their cluster +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/GrTableManager.h ./engine/src/segment/GrTableManager.h +--- ../silgraphite-2.3.1.orig/engine/src/segment/GrTableManager.h 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/GrTableManager.h 2012-02-27 21:40:30.000000000 -0500 +@@ -442,7 +442,7 @@ + int LogToEmUnits(float xys); + bool GPointToXY(gid16 chwGlyphID, int nGPoint, float * xs, float * ys); + +- void CalcPositionsUpTo(int ipass, GrSlotState * pslotLast, ++ void CalcPositionsUpTo(int ipass, GrSlotState * pslotLast, bool fMidPass, + float * pxsWidth, float * pxsVisibleWidth); + + void InitPosCache() +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/MemoryUsage.cpp ./engine/src/segment/MemoryUsage.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/MemoryUsage.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/MemoryUsage.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -11,10 +11,10 @@ + Description: + Calculates memory usage for the engine and segments. + ----------------------------------------------------------------------------------------------*/ +- ++#ifdef _MSC_VER + #pragma warning(disable: 4244) // conversion from wchar_t to char + #pragma warning(disable: 4702) // unreachable code +- ++#endif + //:>******************************************************************************************** + //:> Include files + //:>******************************************************************************************** +@@ -54,8 +54,6 @@ + #ifdef _MSC_VER + #pragma hdrstop + #endif +-#undef THIS_FILE +-DEFINE_THIS_FILE + + //:End Ignore + +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/Platform.cpp ./engine/src/segment/Platform.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/Platform.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/Platform.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -103,7 +103,7 @@ + { + // assumes NULL terminated strings + const utf16 *start = s; +- for (; *s; ++s); ++ for (; *s; ++s) {}; + + return s - start; + } +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/Segment.cpp ./engine/src/segment/Segment.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/Segment.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/Segment.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -246,6 +246,8 @@ + + m_dxsVisibleWidth = -1; + m_dxsTotalWidth = -1; ++ m_ichwAssocsMin = 0; ++ m_ichwAssocsLim = 0; + + // m_psstrm = NULL; + m_prgslout = NULL; +@@ -1178,7 +1180,7 @@ + part of the segment. + ----------------------------------------------------------------------------------------------*/ + float Segment::getRangeWidth(int ichMin, int ichLim, +- bool fStartLine, bool fEndLine, bool fSkipSpace) ++ bool /*fStartLine*/, bool /*fEndLine*/, bool fSkipSpace) + { + if (m_dxsWidth < 0) + { +@@ -1549,7 +1551,11 @@ + void Segment::SetUpOutputArrays(Font * pfont, GrTableManager * ptman, + GrSlotStream * psstrmFinal, + int cchwInThisSeg, int csloutSurface, gid16 chwLB, ++#ifdef NDEBUG ++ TrWsHandling twsh, bool fParaRtl, int nDirDepth, bool /*fEmpty*/) ++#else + TrWsHandling twsh, bool fParaRtl, int nDirDepth, bool fEmpty) ++#endif + { + m_mFontEmUnits = EngineImpl()->GetFontEmUnits(); + +@@ -1725,7 +1731,7 @@ + Set up the data structures that represent the actual rendered glyphs for the new segment. + ----------------------------------------------------------------------------------------------*/ + void Segment::SetUpGlyphInfo(GrTableManager * ptman, GrSlotStream * psstrmFinal, +- gid16 chwLB, int nDirDepth, int islotMin, int cslot) ++ gid16 chwLB, int /*nDirDepth*/, int islotMin, int cslot) + { + //int paraDirLevel = (ptman->State()->ParaRightToLeft()) ? 1 : 0; + +@@ -1751,7 +1757,7 @@ + + m_isloutGinf0 = -1; + int iginf = 0; +- for (int islot = islotMin; islot < cslot; islot++) ++ for (islot = islotMin; islot < cslot; islot++) + { + GrSlotState * pslot = psstrmFinal->SlotAt(islot); + +@@ -2160,7 +2166,7 @@ + @param ichwUnder - character index relative to the official beginning of the segment + @param islot - processed glyph it maps to + ----------------------------------------------------------------------------------------------*/ +-void Segment::MarkSlotInPrevSeg(int ichwUnder, int islot) ++void Segment::MarkSlotInPrevSeg(int ichwUnder, int /*islot*/) + { + if (ichwUnder >= m_ichwAssocsMin) + m_prgisloutBefore[ichwUnder - m_ichwAssocsMin] = kNegInfinity; +@@ -2174,7 +2180,7 @@ + @param ichwUnder - character index relative to the official beginning of the segment + @param islot - processed glyph it maps to + ----------------------------------------------------------------------------------------------*/ +-void Segment::MarkSlotInNextSeg(int ichwUnder, int islot) ++void Segment::MarkSlotInNextSeg(int ichwUnder, int /*islot*/) + { + if (ichwUnder < m_ichwAssocsLim) + m_prgisloutAfter[ichwUnder - m_ichwAssocsMin] = kPosInfinity; +@@ -2351,7 +2357,7 @@ + @param pfAfter - return true if they clicked on trailing side; possibly NULL + ----------------------------------------------------------------------------------------------*/ + int Segment::LogicalSurfaceToUnderlying(int islout, float xsOffset, float ysClick, +- float dxsGlyphWidth, float dysGlyphHeight, bool * pfAfter) ++ float dxsGlyphWidth, float /*dysGlyphHeight*/, bool * pfAfter) + { + Assert(islout >= 0); + Assert(islout < m_cslout); +@@ -2529,31 +2535,31 @@ + else if (fBefore) + { + int isloutRet; +- int ichw = ichwSegOffset; ++ int ichwTemp = ichwSegOffset; + // If no association has been made, loop forward to the next slot + // we are before. As a last resort, answer kPosInfinity, meaning we + // aren't before anything. + do + { +- isloutRet = m_prgisloutBefore[ichw - m_ichwAssocsMin]; +- do { ++ichw; } +- while (!GrCharStream::AtUnicodeCharBoundary(m_pgts, ichw)); +- } while (isloutRet == kPosInfinity && ichw < m_ichwAssocsLim); ++ isloutRet = m_prgisloutBefore[ichwTemp - m_ichwAssocsMin]; ++ do { ++ichwTemp; } ++ while (!GrCharStream::AtUnicodeCharBoundary(m_pgts, ichwTemp)); ++ } while (isloutRet == kPosInfinity && ichwTemp < m_ichwAssocsLim); + return isloutRet; + } + else + { + int isloutRet; +- int ichw = ichwSegOffset; ++ int ichwTemp = ichwSegOffset; + // If no association has been made, loop backward to the previous slot + // we are after. As a last resort, answer kNegInfinity, meaning we + // aren't after anything. + do + { +- isloutRet = m_prgisloutAfter[ichw - m_ichwAssocsMin]; +- do { --ichw; } +- while (!GrCharStream::AtUnicodeCharBoundary(m_pgts, ichw)); +- } while (isloutRet == kNegInfinity && ichw >= 0); ++ isloutRet = m_prgisloutAfter[ichwTemp - m_ichwAssocsMin]; ++ do { --ichwTemp; } ++ while (!GrCharStream::AtUnicodeCharBoundary(m_pgts, ichwTemp)); ++ } while (isloutRet == kNegInfinity && ichwTemp >= 0); + return isloutRet; + } + Assert(false); // should never reach here +@@ -2748,7 +2754,11 @@ + that root glyph as one of its roots. + OBSOLETE + ----------------------------------------------------------------------------------------------*/ ++#ifdef _DEBUG + void Segment::AssertValidClusters(GrSlotStream * psstrm) ++#else ++void Segment::AssertValidClusters(GrSlotStream * /*psstrm*/) ++#endif + { + #ifdef _DEBUG + for (int islot = 0; islot < psstrm->WritePos(); islot++) +@@ -2980,9 +2990,10 @@ + return kresOk; + } + +- ++#ifdef __GNUC__ + // suppress GCC 4.3 warning for optimized min()/max() when called with (ich, ich+1) or similar + #pragma GCC diagnostic ignored "-Wstrict-overflow" ++#endif + + /*---------------------------------------------------------------------------------------------- + Merge the given characters into the same Uniscribe cluster. This means merging any +diff -ru ../silgraphite-2.3.1.orig/engine/src/segment/TransductionLog.cpp ./engine/src/segment/TransductionLog.cpp +--- ../silgraphite-2.3.1.orig/engine/src/segment/TransductionLog.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/src/segment/TransductionLog.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -175,7 +175,7 @@ + Output a file showing a log of the transduction process and the resulting segment. + ----------------------------------------------------------------------------------------------*/ + void GrTableManager::WriteXductnLog(std::ostream & strmOut, +- GrCharStream * pchstrm, Segment * psegRet, ++ GrCharStream * pchstrm, Segment * /*psegRet*/, + int cbPrevSegDat, byte * pbPrevSegDat) + { + if (cbPrevSegDat == 0) +@@ -416,8 +416,8 @@ + the raw (UTF-16 or UTF-8) chars for display. To do this we get the raw characters + directly from the text source. + ----------------------------------------------------------------------------------------------*/ +-void GrCharStream::GetLogDataRaw(GrTableManager * ptman, int cchl, int cchrBackup, +- int cchrMaxRaw, int * prgchl, ++void GrCharStream::GetLogDataRaw(GrTableManager * /*ptman*/, int cchl, int cchrBackup, ++ int /*cchrMaxRaw*/, int * prgchl, + utf16 * prgchw2, utf16 * prgchw3, utf16 * prgchw4, utf16 * prgchw5, utf16 * prgchw6, + int * prgcchr) + { +@@ -441,7 +441,7 @@ + case kutf8: + prgchsRunText8 = new utf8[cchrRange]; + m_pgts->fetch(ichrMin, cchrRange, prgchsRunText8); +- for (int ichr = 0; ichr < cchrRange; ichr++) ++ for (ichr = 0; ichr < cchrRange; ichr++) + prgchwRunText[ichr] = (utf16)prgchsRunText8[ichr]; // zero-extend into UTF-16 buffer + break; + case kutf16: +@@ -634,7 +634,7 @@ + m_pzpst->LogRulesFiredAndFailed(strmOut, psstrmIn); + } + +-void PassState::LogRulesFiredAndFailed(std::ostream & strmOut, GrSlotStream * psstrmIn) ++void PassState::LogRulesFiredAndFailed(std::ostream & strmOut, GrSlotStream * /*psstrmIn*/) + { + + strmOut << "PASS " << m_ipass << "\n\n" << "Rules matched: "; +@@ -1193,7 +1193,7 @@ + if (fAnyPseudos) + { + strmOut << "Actual glyphs: "; +- for (int islout = 0; islout < m_cslout; islout++) ++ for (islout = 0; islout < m_cslout; islout++) + { + GrSlotOutput * psloutTmp = m_prgslout + islout; + if (psloutTmp->GlyphID() != psloutTmp->ActualGlyphForOutput(ptman)) +@@ -1319,7 +1319,7 @@ + Write out the header lines for the slot contents. + ----------------------------------------------------------------------------------------------*/ + void GrTableManager::LogSlotHeader(std::ostream & strmOut, int islotLim, +- int cspPerSlot, int cspLeading, int islotMin) ++ int /*cspPerSlot*/, int cspLeading, int islotMin) + { + islotLim = min(islotLim, MAX_SLOTS); + +@@ -1721,7 +1721,7 @@ + + case kslatAttAtX: // always do these in pairs + case kslatAttAtY: +- if (m_mAttachAtX != (pslotPrev ? pslotPrev->m_mAttachAtX : kNotYetSet) || ++ if (m_mAttachAtX != (pslotPrev ? pslotPrev->m_mAttachAtX : static_cast(kNotYetSet)) || + m_mAttachAtY != (pslotPrev ? pslotPrev->m_mAttachAtY : 0)) + { + ptman->LogInTable(strmOut, +@@ -1730,7 +1730,7 @@ + } + break; + case kslatAttAtGpt: +- if (m_nAttachAtGpoint != (pslotPrev ? pslotPrev->m_nAttachAtGpoint : kNotYetSet)) ++ if (m_nAttachAtGpoint != (pslotPrev ? pslotPrev->m_nAttachAtGpoint : static_cast(kNotYetSet))) + { + ptman->LogInTable(strmOut, + ((m_nAttachAtGpoint == kGpointZero) ? 0 : m_nAttachAtGpoint)); +@@ -1750,7 +1750,7 @@ + + case kslatAttWithX: // always do these in pairs + case kslatAttWithY: +- if (m_mAttachWithX != (pslotPrev ? pslotPrev->m_mAttachWithX : kNotYetSet) || ++ if (m_mAttachWithX != (pslotPrev ? pslotPrev->m_mAttachWithX : static_cast(kNotYetSet)) || + m_mAttachWithY != (pslotPrev ? pslotPrev->m_mAttachWithY : 0)) + { + ptman->LogInTable(strmOut, +@@ -1759,7 +1759,7 @@ + } + break; + case kslatAttWithGpt: +- if (m_nAttachWithGpoint != (pslotPrev ? pslotPrev->m_nAttachWithGpoint : kNotYetSet)) ++ if (m_nAttachWithGpoint != (pslotPrev ? pslotPrev->m_nAttachWithGpoint : static_cast(kNotYetSet))) + { + ptman->LogInTable(strmOut, + ((m_nAttachWithGpoint == kGpointZero) ? 0 : m_nAttachWithGpoint)); +@@ -1786,14 +1786,14 @@ + break; + + case kslatBreak: +- if (m_lb != (pslotPrev ? pslotPrev->m_lb : kNotYetSet8)) ++ if (m_lb != (pslotPrev ? pslotPrev->m_lb : static_cast(kNotYetSet8))) + { + ptman->LogBreakWeightInTable(strmOut, m_lb); + return; + } + break; + case kslatDir: +- if (m_dirc != (pslotPrev ? pslotPrev->m_dirc : kNotYetSet8)) ++ if (m_dirc != (pslotPrev ? pslotPrev->m_dirc : static_cast(kNotYetSet8))) + { + ptman->LogDirCodeInTable(strmOut, m_dirc); + return; +diff -ru ../silgraphite-2.3.1.orig/engine/test/ProfileHarness/GrUtfTextSrc.cpp ./engine/test/ProfileHarness/GrUtfTextSrc.cpp +--- ../silgraphite-2.3.1.orig/engine/test/ProfileHarness/GrUtfTextSrc.cpp 2012-02-27 21:39:56.000000000 -0500 ++++ ./engine/test/ProfileHarness/GrUtfTextSrc.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -210,12 +210,12 @@ + } + + +-bool GrUtfTextSrc::getRightToLeft(gr::toffset ich) ++bool GrUtfTextSrc::getRightToLeft(gr::toffset /*ich*/) + { + return mRtl; // assumes src only contains one direction + } + +-unsigned int GrUtfTextSrc::getDirectionDepth(gr::toffset ich) ++unsigned int GrUtfTextSrc::getDirectionDepth(gr::toffset /*ich*/) + { + return (mRtl) ? 1 : 0; // TBD + } +@@ -254,7 +254,7 @@ + return range; + } + +-size_t GrUtfTextSrc::getFontFeatures(gr::toffset ich, gr::FeatureSetting * prgfset) ++size_t GrUtfTextSrc::getFontFeatures(gr::toffset /*ich*/, gr::FeatureSetting * /*prgfset*/) + { + return 0; + } +@@ -277,14 +277,14 @@ + + // these should be called I hope + float +-GrUtfTextSrc::getFontSize(gr::toffset ich) ++GrUtfTextSrc::getFontSize(gr::toffset /*ich*/) + { + assert(mFont); + return mPointSize; + } + + bool +-GrUtfTextSrc::getBold(gr::toffset ich) ++GrUtfTextSrc::getBold(gr::toffset /*ich*/) + { + assert(mFont); + // NS_ASSERTION(false, "unexpected call to getBold"); +@@ -293,7 +293,7 @@ + } + + bool +-GrUtfTextSrc::getItalic(gr::toffset ich) ++GrUtfTextSrc::getItalic(gr::toffset /*ich*/) + { + assert(mFont); + //NS_ASSERTION(false, "unexpected call to getItalic"); +@@ -301,7 +301,7 @@ + return mFont->italic(); + } + +-gr::isocode GrUtfTextSrc::getLanguage(gr::toffset ich) ++gr::isocode GrUtfTextSrc::getLanguage(gr::toffset /*ich*/) + { + gr::isocode unknown; + std::fill_n(unknown.rgch, 4, '\0'); +diff -ru ../silgraphite-2.3.1.orig/engine/test/ProfileHarness/GrUtfTextSrc.h ./engine/test/ProfileHarness/GrUtfTextSrc.h +--- ../silgraphite-2.3.1.orig/engine/test/ProfileHarness/GrUtfTextSrc.h 2012-02-27 21:39:56.000000000 -0500 ++++ ./engine/test/ProfileHarness/GrUtfTextSrc.h 2012-02-27 21:40:30.000000000 -0500 +@@ -79,7 +79,7 @@ + virtual size_t fetch(gr::toffset ichMin, size_t cch, gr::utf32 * prgchBuffer); + virtual size_t fetch(gr::toffset ichMin, size_t cch, gr::utf16 * prgchwBuffer); + virtual size_t fetch(gr::toffset ichMin, size_t cch, gr::utf8 * prgchsBuffer); +- virtual gr::GrResult getFaceName(int ich, unsigned int cchMax, ++ virtual gr::GrResult getFaceName(int /*ich*/, unsigned int /*cchMax*/, + gr::utf16 * prgchFaceName, unsigned int * pcchLen) + { + prgchFaceName[0] = 0; +@@ -92,12 +92,12 @@ + virtual bool getItalic(gr::toffset ich); + virtual bool getRightToLeft(gr::toffset ich); + virtual unsigned int getDirectionDepth(gr::toffset ich); +- virtual float getVerticalOffset(gr::toffset ich) { return 0;}; ++ virtual float getVerticalOffset(gr::toffset /*ich*/) { return 0;}; + virtual gr::isocode getLanguage(gr::toffset ich); + + virtual std::pair propertyRange(gr::toffset ich); + virtual size_t getFontFeatures(gr::toffset ich, gr::FeatureSetting * prgfset); +- virtual bool sameSegment(gr::toffset ich1, gr::toffset ich2) { return true; }; ++ virtual bool sameSegment(gr::toffset /*ich1*/, gr::toffset /*ich2*/) { return true; }; + + protected: + bool checkBuffer8(); +@@ -129,11 +129,11 @@ + virtual void getColors(gr::toffset ich, int * pclrFore, int * pclrBack); + + // Shouldn't be here! +- virtual gr::GrResult Fetch(int ichMin, int ichLim, gr::utf16 * prgchBuf) { return gr::kresNotImpl; }; +- virtual gr::GrResult get_Length(int * pcch) { return gr::kresNotImpl; }; +- virtual gr::GrResult GetFontVariations(int ich, +- wchar_t * prgchFontVar, int ichMax, int * pich, +- int * pichMin, int * pichLim) { return gr::kresNotImpl; }; ++ virtual gr::GrResult Fetch(int /*ichMin*/, int /*ichLim*/, gr::utf16 * /*prgchBuf*/) { return gr::kresNotImpl; }; ++ virtual gr::GrResult get_Length(int * /*pcch*/) { return gr::kresNotImpl; }; ++ virtual gr::GrResult GetFontVariations(int /*ich*/, ++ wchar_t * /*prgchFontVar*/, int /*ichMax*/, int * /*pich*/, ++ int * /*pichMin*/, int * /*pichLim*/) { return gr::kresNotImpl; }; + + }; + +diff -ru ../silgraphite-2.3.1.orig/engine/test/ProfileHarness/ProfileHarness.cpp ./engine/test/ProfileHarness/ProfileHarness.cpp +--- ../silgraphite-2.3.1.orig/engine/test/ProfileHarness/ProfileHarness.cpp 2012-02-27 21:39:56.000000000 -0500 ++++ ./engine/test/ProfileHarness/ProfileHarness.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -39,14 +39,14 @@ + typedef std::pair< gr::GlyphIterator, gr::GlyphIterator > GlyphRange; + + #ifndef HAVE_STRTOF +-float strtof(char * text, char ** ignore) ++float strtof(char * text, char ** /*ignore*/) + { + return static_cast(atof(text)); + } + #endif + + #ifndef HAVE_STRTOL +-long strtol(char * text, char ** ignore) ++long strtol(char * text, char ** /*ignore*/) + { + return atol(text); + } +diff -ru ../silgraphite-2.3.1.orig/engine/test/RegressionTest/GrJustifier.cpp ./engine/test/RegressionTest/GrJustifier.cpp +--- ../silgraphite-2.3.1.orig/engine/test/RegressionTest/GrJustifier.cpp 2012-02-27 21:39:56.000000000 -0500 ++++ ./engine/test/RegressionTest/GrJustifier.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -16,8 +16,9 @@ + //:> Include files + //:>******************************************************************************************** + //#include "main.h" // This is used by clients, so main.h is not available +- ++#ifdef _MSC_VER + #pragma hdrstop ++#endif + // any other headers (not precompiled) + #include "GrClient.h" + #include "ITextSource.h" +@@ -31,9 +32,6 @@ + #include + #endif + +-#undef THIS_FILE +-DEFINE_THIS_FILE +- + //:>******************************************************************************************** + //:> Global constants + //:>******************************************************************************************** +@@ -327,9 +325,9 @@ + &dxStretchAchieved); + for (int iiiGlyph = 0; iiiGlyph < cStretchable; iiiGlyph++) + { +- int iiGlyph = viiGlyphsRem[iiiGlyph]; +- vdxStretchLeft[iiGlyph] = vdxStretchRem[iiiGlyph]; +- vdxWidth[iiGlyph] = vdxWidthRem[iiiGlyph]; ++ int ivGlyph = viiGlyphsRem[iiiGlyph]; ++ vdxStretchLeft[ivGlyph] = vdxStretchRem[iiiGlyph]; ++ vdxWidth[ivGlyph] = vdxWidthRem[iiiGlyph]; + } + } + else +@@ -366,12 +364,12 @@ + { + #ifdef WIN32 + wchar_t rgchw[20]; +- std::fill_n(rgchw, 20, 0); ++ std::fill_n(rgchw, 20, L'\0'); + _itow(dxStretchNeeded - dxStretchAchieved, rgchw, 10); + std::wstring strTmp(L"justification failed by "); + strTmp += rgchw; + strTmp += L" units (width needed = "; +- std::fill_n(rgchw, 10, 0); ++ std::fill_n(rgchw, 10, L'\0'); + _itow(dxDesiredWidth, rgchw, 10); + strTmp += rgchw; + strTmp += L")\n"; +diff -ru ../silgraphite-2.3.1.orig/engine/test/RegressionTest/GrJustifier.h ./engine/test/RegressionTest/GrJustifier.h +--- ../silgraphite-2.3.1.orig/engine/test/RegressionTest/GrJustifier.h 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/test/RegressionTest/GrJustifier.h 2012-02-27 21:40:30.000000000 -0500 +@@ -11,7 +11,9 @@ + Description: + A default justification agent for Graphite. + -------------------------------------------------------------------------------*//*:End Ignore*/ ++#ifdef _MSC_VER + #pragma once ++#endif + #ifndef GRJUSTIFIER_INCLUDED + #define GRJUSTIFIER_INCLUDED + +diff -ru ../silgraphite-2.3.1.orig/engine/test/RegressionTest/RegressionTest.cpp ./engine/test/RegressionTest/RegressionTest.cpp +--- ../silgraphite-2.3.1.orig/engine/test/RegressionTest/RegressionTest.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/test/RegressionTest/RegressionTest.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -675,7 +675,7 @@ + OutputErrorAux(ptcase, strErr, i, true, valueFound, valueExpected); + } + +-void OutputErrorAux(TestCase * ptcase, std::string strErr, int i, ++void OutputErrorAux(TestCase * /*ptcase*/, std::string strErr, int i, + bool showValues, int valueFound, int valueExpected) + { + // if (g_debugMode) +Only in ./engine/test/RegressionTest: RtTextSrc.h.orig +Only in ./engine/test/RegressionTest: RtTextSrc.h.rej +diff -ru ../silgraphite-2.3.1.orig/engine/test/RegressionTest/SimpleTextSrc.cpp ./engine/test/RegressionTest/SimpleTextSrc.cpp +--- ../silgraphite-2.3.1.orig/engine/test/RegressionTest/SimpleTextSrc.cpp 2012-02-27 21:39:56.000000000 -0500 ++++ ./engine/test/RegressionTest/SimpleTextSrc.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -15,7 +15,9 @@ + //:>******************************************************************************************** + //:> Include files + //:>******************************************************************************************** ++#ifdef _MSC_VER + #pragma hdrstop ++#endif + // any other headers (not precompiled) + + #include "GrClient.h" +@@ -23,9 +25,6 @@ + #include "ITextSource.h" + #include "SimpleTextSrc.h" + +-#undef THIS_FILE +-DEFINE_THIS_FILE +- + //:>******************************************************************************************** + //:> Initialization and destruction + //:>******************************************************************************************** +@@ -70,7 +69,7 @@ + /*---------------------------------------------------------------------------------------------- + Return true if the text uses a right-to-left writing system. + ----------------------------------------------------------------------------------------------*/ +-bool SimpleTextSrc::getRightToLeft(toffset ich) ++bool SimpleTextSrc::getRightToLeft(toffset /*ich*/) + { + return false; + } +@@ -78,7 +77,7 @@ + /*---------------------------------------------------------------------------------------------- + Return the depth of embedding of the writing system. + ----------------------------------------------------------------------------------------------*/ +-unsigned int SimpleTextSrc::getDirectionDepth(toffset ich) ++unsigned int SimpleTextSrc::getDirectionDepth(toffset /*ich*/) + { + return 0; + } +@@ -87,7 +86,7 @@ + Return the vertical offset of the text. This simple implementation provides no + vertical offset. + ----------------------------------------------------------------------------------------------*/ +-float SimpleTextSrc::getVerticalOffset(toffset ich) ++float SimpleTextSrc::getVerticalOffset(toffset /*ich*/) + { + return 0; + } +diff -ru ../silgraphite-2.3.1.orig/engine/test/RegressionTest/SimpleTextSrc.h ./engine/test/RegressionTest/SimpleTextSrc.h +--- ../silgraphite-2.3.1.orig/engine/test/RegressionTest/SimpleTextSrc.h 2012-02-27 21:39:57.000000000 -0500 ++++ ./engine/test/RegressionTest/SimpleTextSrc.h 2012-02-27 21:40:30.000000000 -0500 +@@ -11,7 +11,9 @@ + Description: + A simple text source that shows how to use this interface within Graphite. + -------------------------------------------------------------------------------*//*:End Ignore*/ ++#ifdef _MSC_VER + #pragma once ++#endif + #ifndef GRTXTSRC_INCLUDED + #define GRTXTSRC_INCLUDED + +@@ -59,12 +61,12 @@ + { + return m_cchLength; + } +- virtual size_t fetch(toffset ichMin, size_t cch, utf32 * prgchBuffer) ++ virtual size_t fetch(toffset /*ichMin*/, size_t /*cch*/, utf32 * /*prgchBuffer*/) + { + throw; + } + virtual size_t fetch(toffset ichMin, size_t cch, gr::utf16 * prgchwBuffer); +- virtual size_t fetch(toffset ichMin, size_t cch, utf8 * prgchsBuffer) ++ virtual size_t fetch(toffset /*ichMin*/, size_t /*cch*/, utf8 * /*prgchsBuffer*/) + { + throw; + }; +@@ -73,14 +75,14 @@ + virtual unsigned int getDirectionDepth(toffset ich); + virtual float getVerticalOffset(toffset ich); + +- virtual isocode getLanguage(toffset ich) ++ virtual isocode getLanguage(toffset /*ich*/) + { + isocode ret; + ret.rgch[0] = 'e'; ret.rgch[1] = 'n'; ret.rgch[2] = 0; ret.rgch[3] = 0; + return ret; + } + +- virtual std::pair propertyRange(toffset ich) ++ virtual std::pair propertyRange(toffset /*ich*/) + { + std::pair pairRet; + pairRet.first = 0; +@@ -88,16 +90,16 @@ + return pairRet; + } + +- virtual size_t getFontFeatures(toffset ich, FeatureSetting * prgfset) ++ virtual size_t getFontFeatures(toffset /*ich*/, FeatureSetting * /*prgfset*/) + { + return 0; // no features in this simple implementation + } +- virtual bool sameSegment(toffset ich1, toffset ich2) ++ virtual bool sameSegment(toffset /*ich1*/, toffset /*ich2*/) + { + return true; + } + +- virtual void getColors(toffset ich, int * pclrFore, int * pclrBack) ++ virtual void getColors(toffset /*ich*/, int * pclrFore, int * pclrBack) + { + *pclrFore = kclrBlack; + *pclrBack = kclrTransparent; +diff -ru ../silgraphite-2.3.1.orig/wrappers/win32/WinFont.cpp ./wrappers/win32/WinFont.cpp +--- ../silgraphite-2.3.1.orig/wrappers/win32/WinFont.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./wrappers/win32/WinFont.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -70,6 +70,7 @@ + // But don't store m_hfont, because we don't really "own" it; the client is + // responsible for releasing it. + m_hfont = 0; ++ m_pGlyphMetricMap = NULL; + memset(&m_fpropSet, 0, sizeof(m_fpropSet)); + + m_pbCmapTbl = NULL; +@@ -196,6 +197,7 @@ + m_hdc = 0; + m_hfont = 0; + m_hfontClient = 0; ++ m_pGlyphMetricMap = NULL; + memset(&m_fpropSet, 0, sizeof(FontProps)); + + m_pbCmapTbl = NULL; +@@ -408,7 +410,7 @@ + if (pPolyCurve->wType == TT_PRIM_QSPLINE && + // test if this is the last curve + pPolyHdr->cb - (int)((byte *)(&pPolyCurve->apfx[j]) - (byte *)(pPolyHdr)) +- == sizeof POINTFX && ++ == sizeof (POINTFX) && + // and the two points are identical + CompareFixed(pPolyCurve->apfx[j].x, pPolyHdr->pfxStart.x) && + CompareFixed(pPolyCurve->apfx[j].y, pPolyHdr->pfxStart.y)) +@@ -457,6 +459,16 @@ + ----------------------------------------------------------------------------------------------*/ + void WinFont::getGlyphMetrics(gid16 chw, gr::Rect & boundingBox, gr::Point & advances) + { ++ if (m_pGlyphMetricMap) ++ { ++ GlyphMetricMap::iterator i = m_pGlyphMetricMap->find(chw); ++ if (i != m_pGlyphMetricMap->end()) ++ { ++ boundingBox = i->second.first; ++ advances = i->second.second; ++ return; ++ } ++ } + GLYPHMETRICS gm; + const MAT2 mat2 = {{0,1}, {0,0}, {0,0}, {0,1}}; + if (GDI_ERROR == ::GetGlyphOutline(m_hdc, chw, GGO_GLYPH_INDEX | GGO_METRICS, +@@ -474,6 +486,10 @@ + boundingBox.bottom = (float)gm.gmptGlyphOrigin.y - gm.gmBlackBoxY; + advances.x = gm.gmCellIncX; + advances.y = gm.gmCellIncY; ++ if (m_pGlyphMetricMap) ++ { ++ (*m_pGlyphMetricMap)[chw] = std::pair(boundingBox, advances); ++ } + } + + /*---------------------------------------------------------------------------------------------- +@@ -618,7 +634,10 @@ + + static int cCreateFontCalls = 0; + static int cCreateFontZero = 0; +- HFONT hfont = g_fhc.GetFont(lf); ++ FontHandleCache::FontCacheValue cache = g_fhc.GetCache(lf); ++ HFONT hfont = cache.hfont; ++ m_pGlyphMetricMap = cache.pGlyphMetricMap; ++ //HFONT hfont = g_fhc.GetFont(lf); + //char ch1[200]; + //if (hfont == 0) + //{ +@@ -731,7 +750,7 @@ + @param lf LOGFONT value that describes the desired font + @return Font handle + ----------------------------------------------------------------------------------------------*/ +-HFONT WinFont::FontHandleCache::GetFont(LOGFONT & lf) ++WinFont::FontHandleCache::FontCacheValue WinFont::FontHandleCache::GetCache(LOGFONT & lf) + { + FontCacheValue fcv; + FontHandleHashMap::iterator itFound = m_hmlffcv.find(lf); +@@ -752,11 +771,12 @@ + THROW(kresFail); + + fcv.nRefs = 1; ++ fcv.pGlyphMetricMap = new GlyphMetricMap(); + + m_hmlffcv.insert(std::pair(lf, fcv)); + } + +- return fcv.hfont; ++ return fcv; + } + + /*---------------------------------------------------------------------------------------------- +@@ -767,7 +787,7 @@ + ----------------------------------------------------------------------------------------------*/ + void WinFont::FontHandleCache::DeleteFont(HFONT hfont) + { +- if (!hfont || !m_bValid) ++ if (!hfont || !m_bValid || m_hmlffcv.size() == 0) + return; + + // find the font in the hash map +@@ -782,6 +802,8 @@ + { + // delete font + ::DeleteObject(hfont); ++ if (fcv.pGlyphMetricMap) ++ delete fcv.pGlyphMetricMap; + m_hmlffcv.erase(it); + } + else +@@ -832,7 +854,8 @@ + bool WinFont::LogFontHashFuncs::operator() (const WinFont::LogFontWrapper & key1, + const WinFont::LogFontWrapper & key2) const + { +- return (key1 == key2); ++ // return true if key1 should be ordered before key2 ++ return (operator()(key1) < operator()(key2)); + } + + /*-------------------------------------------------------------------------------------- +diff -ru ../silgraphite-2.3.1.orig/wrappers/win32/WinFont.h ./wrappers/win32/WinFont.h +--- ../silgraphite-2.3.1.orig/wrappers/win32/WinFont.h 2012-02-27 21:39:57.000000000 -0500 ++++ ./wrappers/win32/WinFont.h 2012-02-27 21:40:30.000000000 -0500 +@@ -26,9 +26,15 @@ + #include "GrDebug.h" + #include "GrClient.h" + #include "Font.h" ++#include ++ ++#ifdef _STLPORT_VERSION ++namespace stdext = _STLP_STD; ++#endif + + namespace gr + { ++typedef std::map > GlyphMetricMap; + + class FontFace; + +@@ -100,6 +106,7 @@ + HFONT m_hfontClient; // need to replace this HFONT into the DC when we are finished + // with it + ++ GlyphMetricMap * m_pGlyphMetricMap; + // Debugging: + //OLECHAR m_rgchTemp[32]; + +@@ -185,11 +192,13 @@ + class FontHandleCache // hungarian: fhc + { + public: +- struct FontCacheValue ++ struct FontCacheValue + { + int nRefs; // reference count + HFONT hfont; // font handle + ++ GlyphMetricMap * pGlyphMetricMap; // glyph metrics ++ + bool operator==(const FontCacheValue & val) const + { + return (hfont == val.hfont); +@@ -199,7 +208,8 @@ + FontHandleCache() : m_bValid(true) {}; + ~FontHandleCache(); + +- HFONT GetFont(LOGFONT & lf); ++ //HFONT GetFont(LOGFONT & lf); ++ FontCacheValue GetCache(LOGFONT & lf); + void DeleteFont(HFONT hfont); + + typedef stdext::hash_map FontHandleHashMap; +diff -ru ../silgraphite-2.3.1.orig/wrappers/win32/win32_dll.cpp ./wrappers/win32/win32_dll.cpp +--- ../silgraphite-2.3.1.orig/wrappers/win32/win32_dll.cpp 2012-02-27 21:39:57.000000000 -0500 ++++ ./wrappers/win32/win32_dll.cpp 2012-02-27 21:40:30.000000000 -0500 +@@ -14,7 +14,7 @@ + DllMain. This is the main DLL entry point for a non-MFC DLL. For an MFC DLL, DllMain is + in DllModul.cpp. Both DllMains call ModuleEntry::DllMain. + ----------------------------------------------------------------------------------------------*/ +-extern "C" BOOL WINAPI DllMain(HMODULE hmod, DWORD dwReason, PVOID pvReserved) ++extern "C" BOOL WINAPI DllMain(HMODULE hmod, DWORD dwReason, PVOID /*pvReserved*/) + { + bool fRet = true; + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 03:30:29 2012 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 877F01065678; Tue, 28 Feb 2012 03:30:29 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5C90C8FC1B; Tue, 28 Feb 2012 03:30:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S3UT1G013970; Tue, 28 Feb 2012 03:30:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S3UTLM013964; Tue, 28 Feb 2012 03:30:29 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 03:30:29 GMT Message-Id: <201202280330.q1S3UTLM013964@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dhn@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165519: graphics/silgraphite : add openoffice patch. 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: Tue, 28 Feb 2012 03:30:29 -0000 Synopsis: graphics/silgraphite : add openoffice patch. Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 28 03:30:28 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165519 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 04:40:06 2012 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 DEB09106566C for ; Tue, 28 Feb 2012 04:40:05 +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 BB3358FC1E for ; Tue, 28 Feb 2012 04:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S4e5Ei079557 for ; Tue, 28 Feb 2012 04:40:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S4e5eT079556; Tue, 28 Feb 2012 04:40:05 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 04:40:05 GMT Resent-Message-Id: <201202280440.q1S4e5eT079556@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, IWAMOTO Kouichi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58DD8106566B for ; Tue, 28 Feb 2012 04:36:41 +0000 (UTC) (envelope-from sue@iwmt.org) Received: from mail2.iwmt.org (unknown [IPv6:2001:3e0:2d0::1]) by mx1.freebsd.org (Postfix) with ESMTP id 224398FC14 for ; Tue, 28 Feb 2012 04:36:41 +0000 (UTC) Received: by mail2.iwmt.org (Postfix, from userid 1001) id 91F8D1044D07; Tue, 28 Feb 2012 13:36:39 +0900 (JST) Message-Id: <20120228043639.91F8D1044D07@mail2.iwmt.org> Date: Tue, 28 Feb 2012 13:36:39 +0900 (JST) From: IWAMOTO Kouichi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165520: devel/ncurses install failed if multiple terminfo file exists in /usr/local/share/misc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: IWAMOTO Kouichi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Feb 2012 04:40:06 -0000 >Number: 165520 >Category: ports >Synopsis: devel/ncurses install failed if multiple terminfo file exists in /usr/local/share/misc >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 04:40:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: IWAMOTO Kouichi >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD tomoko.iwmt.org 8.2-STABLE FreeBSD 8.2-STABLE #0: Tue Dec 27 03:50:13 JST 2011 sue@tomoko.iwmt.org:/usr/obj/usr/src/sys/TOMOKO amd64 >Description: If multiple terminfo file exists in /usr/local/share/misc (e.g. sysutils/jfbterm and x11/rxvt-unicode are installed), Installing devel/ncurses fails with following error. /usr/bin/find /usr/local/share/misc -name "*.terminfo" -print0 | /usr/bin/xargs -0 /usr/local/bin/tic tic: Too many file names. Usage: tic [-e names] [-o dir] [-R name] [-v[n]] [-V] [-w[n]] [-1aCcfGgILNrsTtUx] source-file *** Error code 1 Stop in /usr/ports/devel/ncurses. *** Error code 1 Stop in /usr/ports/devel/ncurses. >How-To-Repeat: 1. Install sysutils/jfbterm & x11/rxvt-unicode. 2. Install deve/ncurses # cd /usr/ports/devel/ncurses # make install >Fix: Apply following patch. --- Makefile.orig 2011-05-15 00:32:37.000000000 +0900 +++ Makefile 2012-02-28 13:06:39.000000000 +0900 @@ -173,8 +173,7 @@ .endif .if !defined(WITHOUT_TERMINFO) - ${FIND} ${PREFIX}/share/misc -name "*.terminfo" -print0 | \ - ${XARGS} -0 ${PREFIX}/bin/tic + ${FIND} ${PREFIX}/share/misc -name "*.terminfo" -exec ${PREFIX}/bin/tic {} \; .endif .if !defined(NOPORTDOCS) --- pkg-plist.orig 2011-03-06 18:19:31.000000000 +0900 +++ pkg-plist 2012-02-28 13:06:49.000000000 +0900 @@ -96,6 +96,6 @@ %%TERMINFO%%share/misc/tabset/vt100 %%TERMINFO%%share/misc/tabset/vt300 %%TERMINFO%%share/misc/terminfo.db -%%TERMINFO%%@exec find %D/share/misc -name "*.terminfo" -print0 | xargs -0 %D/bin/tic +%%TERMINFO%%@exec find %D/share/misc -name "*.terminfo" -exec %D/bin/tic {} \; %%TERMINFO%%@dirrmtry share/misc/tabset @dirrm include/ncurses >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 04:40:16 2012 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 714321065677; Tue, 28 Feb 2012 04:40:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 450EA8FC0C; Tue, 28 Feb 2012 04:40:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S4eGCJ079703; Tue, 28 Feb 2012 04:40:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S4eGki079699; Tue, 28 Feb 2012 04:40:16 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 04:40:16 GMT Message-Id: <201202280440.q1S4eGki079699@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, rafan@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165520: devel/ncurses install failed if multiple terminfo file exists in /usr/local/share/misc 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: Tue, 28 Feb 2012 04:40:16 -0000 Synopsis: devel/ncurses install failed if multiple terminfo file exists in /usr/local/share/misc Responsible-Changed-From-To: freebsd-ports-bugs->rafan Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 28 04:40:15 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165520 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 06:40:09 2012 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 94199106566C for ; Tue, 28 Feb 2012 06:40:09 +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 6CABD8FC16 for ; Tue, 28 Feb 2012 06:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S6e9DD089893 for ; Tue, 28 Feb 2012 06:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S6e9RA089892; Tue, 28 Feb 2012 06:40:09 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 06:40:09 GMT Resent-Message-Id: <201202280640.q1S6e9RA089892@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, vermaden Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1A9111065675 for ; Tue, 28 Feb 2012 06:35:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id EFCDA8FC1F for ; Tue, 28 Feb 2012 06:35:50 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1S6Zo4x051818 for ; Tue, 28 Feb 2012 06:35:50 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1S6Zo2H051817; Tue, 28 Feb 2012 06:35:50 GMT (envelope-from nobody) Message-Id: <201202280635.q1S6Zo2H051817@red.freebsd.org> Date: Tue, 28 Feb 2012 06:35:50 GMT From: vermaden To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165522: New port: sysutils/automount devd(8) based automounter for FreeBSD 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: Tue, 28 Feb 2012 06:40:09 -0000 >Number: 165522 >Category: ports >Synopsis: New port: sysutils/automount devd(8) based automounter for FreeBSD >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 06:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: vermaden >Release: FreeBSD 9.0-RELEASE >Organization: >Environment: >Description: Hi, I have made port of 'automount' utility,here is output from portlint: | sysutils/automount % portlint | WARN: Makefile: only one MASTER_SITE configured. Consider adding additional | mirrors. | 0 fatal errors and 1 warning found. It currently supports these file systems: -- NTFS requires sysutils/fusefs-ntfs for R/W -- FAT/FAT32 -- exFAT requires sysutils/fusefs-exfat -- EXT2 -- EXT3 -- EXT4 requires sysutils/fusefs-ext4fuse -- UFS It keeps state of mounted devices at /var/run/automount.state and logs all activities to /var/log/automount.log file. The place for script is at /usr/local/sbin/automount executable. Only additional configuration it requires is /usr/local/etc/devd/automount_devd.conf file. I have created repository @ GITHUB here: https://github.com/vermaden/automount Its my first port so let me know if I need to fix anything. I did not yet created a man page, but it comes with a help page at least for now (--help or -h) option. % automount --help AUTOMOUNT is a devd(8) based automounter for FreeBSD. It supports following file systems: UFS/FAT/exFAT/NTFS/EXT2/EXT3/EXT4 It needs these ports to mount NTFS/exFAT/EXT4 respectively: o sysutils/fusefs-ntfs o sysutils/fusefs-exfat o sysutils/fusefs-ext4fuse By default it mounts/unmounts all removable media but it is possible to set some additional options at the /usr/local/etc/automount.conf config file. Below is a list of possible options with description. MNTPREFIX (set to /media by default) With this options You can alter the default root for mounting the removable media, for example to the /mnt directory. example: MNTPREFIX="/media" ENCODING (set to en_US.ISO8859-1 by default) Only used with FAT32 mounts, specifies which encoding to use at the mount. example: ENCODING="pl_PL.ISO8859-2" CODEPAGE (set to cp437 by default) Only used with FAT32 mounts, specifies which code page to use at the mount. example: CODEPAGE="cp852" USER (unset by default) If set to some username, the mount command will chown(1) the mount directory with the user and its primary user group. If used with FM option allows to launch the specified file manager after a successful mount. example: USER="vermaden" FM (unset by default) If set to file manager command, the mount will launch the specified command after successful mount. Works only if USER parameter is also set. example: FM="nautilus --browser --no-desktop" USERUMOUNT (set to NO by default) When set to YES it will 'chmod +s /sbin/umount' which would allow an USER to unmount the file system with their selected file manager. example: USERUMOUNT="YES" ATIME (set to YES by default) When set to NO it will mount filesystems with noatime options when possible. example: ATIME="NO" REMOVEDIRS (set to NO by default) When set to YES it will remove empty directories under the used after device detach. example: REMOVEDIRS="YES" Regards, vermaden >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # automount # automount/Makefile # automount/distinfo # automount/pkg-install # automount/pkg-descr # echo c - automount mkdir -p automount > /dev/null 2>&1 echo x - automount/Makefile sed 's/^X//' >automount/Makefile << 'a684d750ccdf9f4d6ffa6a1936b8d432' X# New ports collection makefile for: automount X# Date created: 28 February 2012 X# Whom: vermaden X# X# $FreeBSD$ X# X XPORTNAME= automount XPORTVERSION= 1.2 XCATEGORIES= sysutils XMASTER_SITES= https://github.com/vermaden/automount/port/distfiles/ X XMAINTAINER= vermaden@interia.pl XCOMMENT= FreeBSD's devd(8) based automount sollution X XLICENSE= BSD X XPLIST_FILES= sbin/automount etc/devd/automount_devd.conf etc/automount.conf.sample X XNO_BUILD= yes X Xdo-install: X ${INSTALL_SCRIPT} ${WRKSRC}/automount ${PREFIX}/sbin X ${INSTALL_DATA} ${WRKSRC}/automount_devd.conf ${PREFIX}/etc/devd/automount_devd.conf X ${INSTALL_DATA} ${WRKSRC}/automount.conf.sample ${PREFIX}/etc/automount.conf.sample X ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL X X.include a684d750ccdf9f4d6ffa6a1936b8d432 echo x - automount/distinfo sed 's/^X//' >automount/distinfo << 'f9168fc754e2bffcb12d5eb7f25848ec' XSHA256 (automount-1.2.tar.gz) = 5cbb556a861e781312705e1696a495ec688f8581e00e9563d111670699024d5a XSIZE (automount-1.2.tar.gz) = 3448 f9168fc754e2bffcb12d5eb7f25848ec echo x - automount/pkg-install sed 's/^X//' >automount/pkg-install << '251e9ad33f5651c05228156a36207e92' X#!/bin/sh X Xcase ${2} in X (POST-INSTALL) X /etc/rc.d/devd restart X echo X echo X echo "Check /usr/local/sbin/automount --help for available options." X echo X echo X ;; X (PRE-INSTALL) X : X ;; Xesac X 251e9ad33f5651c05228156a36207e92 echo x - automount/pkg-descr sed 's/^X//' >automount/pkg-descr << 'beeed37ba9f50e251d50bf9bd7dcb079' Xautomount is a devd(8) based automounter for FreeBSD. X XIt supports most popular file systems: XNTFS/MSDOS/exFAT/EXT2/EXT3/EXT4/UFS X XWWW: https://github.com/vermaden/automount/ beeed37ba9f50e251d50bf9bd7dcb079 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 06:40:19 2012 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 45823106566B; Tue, 28 Feb 2012 06:40:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 191AF8FC08; Tue, 28 Feb 2012 06:40:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S6eIht090056; Tue, 28 Feb 2012 06:40:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S6eID2090052; Tue, 28 Feb 2012 06:40:18 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 06:40:18 GMT Message-Id: <201202280640.q1S6eID2090052@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165522: New port: sysutils/automount devd(8) based automounter for FreeBSD 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: Tue, 28 Feb 2012 06:40:19 -0000 Synopsis: New port: sysutils/automount devd(8) based automounter for FreeBSD Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Tue Feb 28 06:40:18 UTC 2012 Class-Changed-Why: Fix category (new ports should be change-requests) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165522 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 09:20:08 2012 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 BCD681065672 for ; Tue, 28 Feb 2012 09:20:08 +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 9A2AE8FC1D for ; Tue, 28 Feb 2012 09:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S9K8n4067012 for ; Tue, 28 Feb 2012 09:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S9K80Z067011; Tue, 28 Feb 2012 09:20:08 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 09:20:08 GMT Resent-Message-Id: <201202280920.q1S9K80Z067011@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, Martin Matuska Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7466D106564A for ; Tue, 28 Feb 2012 09:17:46 +0000 (UTC) (envelope-from mm@neo.vx.sk) Received: from neo.vx.sk (neo.vx.sk [176.9.47.205]) by mx1.freebsd.org (Postfix) with ESMTP id 0E8278FC0A for ; Tue, 28 Feb 2012 09:17:45 +0000 (UTC) Received: by neo.vx.sk (Postfix, from userid 1001) id F2B2AC1BE; Tue, 28 Feb 2012 10:17:44 +0100 (CET) Message-Id: <20120228091744.F2B2AC1BE@neo.vx.sk> Date: Tue, 28 Feb 2012 10:17:44 +0100 (CET) From: Martin Matuska To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: miwi@FreeBSD.org Subject: ports/165524: [PATCH] devel/pecl-svn: unbreak with svn 1.7 and other fixes 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: Tue, 28 Feb 2012 09:20:08 -0000 >Number: 165524 >Category: ports >Synopsis: [PATCH] devel/pecl-svn: unbreak with svn 1.7 and other fixes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 09:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Martin Matuska >Release: FreeBSD 9.0-STABLE amd64 >Organization: >Environment: System: FreeBSD neo.vx.sk 9.0-STABLE FreeBSD 9.0-STABLE #26 r232157M: Tue Feb 28 09:16:48 CET >Description: Add patch for vendor issues: #22100 segfault on shutdown when using multiple repositories #15505 warning on errors #59976 svn build fails on PHP5.4 #60583 compile failing due to missing definition of svn_version_t in newer releases of libsvn Unbreak build with subversion 1.7 Minor Makefile fixes. Port maintainer (miwi@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- pecl-svn-1.0.1_2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/pecl-svn/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 16 Oct 2011 14:31:45 -0000 1.23 +++ Makefile 28 Feb 2012 09:16:38 -0000 @@ -7,22 +7,20 @@ PORTNAME= svn PORTVERSION= 1.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel pear MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- -DISTNAME= svn-${PORTVERSION} EXTRACT_SUFX= .tgz DIST_SUBDIR= PECL MAINTAINER= miwi@FreeBSD.org COMMENT= A PECL extension to the libsvn library -LIB_DEPENDS= svn_client-1:${PORTSDIR}/devel/subversion16 +LICENSE= PHP301 -CONFLICTS_BUILD=subversion-1.7.[0-9]* +LIB_DEPENDS= svn_client-1:${PORTSDIR}/devel/subversion16 -LICENSE= PHP301 USE_PHP= yes USE_PHPEXT= yes Index: files/patch-svn.c =================================================================== RCS file: /home/pcvs/ports/devel/pecl-svn/files/patch-svn.c,v retrieving revision 1.1 diff -u -r1.1 patch-svn.c --- files/patch-svn.c 21 Aug 2009 13:37:46 -0000 1.1 +++ files/patch-svn.c 28 Feb 2012 09:16:38 -0000 @@ -1,5 +1,5 @@ ---- ./svn.c.orig 2009-08-21 08:38:26.000000000 -0400 -+++ ./svn.c 2009-08-21 08:38:33.000000000 -0400 +--- svn.c.orig 2010-12-09 04:30:16.000000000 +0100 ++++ svn.c 2012-02-28 09:46:50.877059221 +0100 @@ -34,6 +34,7 @@ #include "apr_version.h" @@ -8,3 +8,53 @@ #include "svn_sorts.h" #include "svn_config.h" #include "svn_auth.h" +@@ -43,6 +44,7 @@ + #include "svn_utf.h" + #include "svn_time.h" + #include "svn_props.h" ++#include "svn_version.h" + + ZEND_DECLARE_MODULE_GLOBALS(svn) + +@@ -96,7 +98,13 @@ + static ZEND_RSRC_DTOR_FUNC(php_svn_repos_dtor) + { + struct php_svn_repos *r = rsrc->ptr; +- svn_pool_destroy(r->pool); ++ /* ++ * If root pool doesn't exist, then this resource's pool was already ++ * destroyed ++ */ ++ if (SVN_G(pool)) { ++ svn_pool_destroy(r->pool); ++ } + efree(r); + } + +@@ -123,7 +131,7 @@ + + #define SVN_STATIC_ME(name) ZEND_FENTRY(name, ZEND_FN(svn_ ## name), NULL, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC) + /** Fixme = this list needs padding out... */ +-static function_entry svn_methods[] = { ++static zend_function_entry svn_methods[] = { + SVN_STATIC_ME(cat) + SVN_STATIC_ME(checkout) + SVN_STATIC_ME(log) +@@ -134,7 +142,7 @@ + + + /* {{{ svn_functions[] */ +-function_entry svn_functions[] = { ++zend_function_entry svn_functions[] = { + PHP_FE(svn_checkout, NULL) + PHP_FE(svn_cat, NULL) + PHP_FE(svn_ls, NULL) +@@ -270,7 +278,7 @@ + + smart_str_appendl(&s, "\n", 1); + smart_str_0(&s); +- php_error_docref(NULL TSRMLS_CC, E_WARNING, s.c); ++ php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s", s.c); + smart_str_free(&s); + } + --- pecl-svn-1.0.1_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 09:20:57 2012 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 028961065673; Tue, 28 Feb 2012 09:20:57 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CA7718FC19; Tue, 28 Feb 2012 09:20:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S9KuUU070281; Tue, 28 Feb 2012 09:20:56 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S9Ku6j070272; Tue, 28 Feb 2012 09:20:56 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 09:20:56 GMT Message-Id: <201202280920.q1S9Ku6j070272@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165524: [PATCH] devel/pecl-svn: unbreak with svn 1.7 and other fixes 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: Tue, 28 Feb 2012 09:20:57 -0000 Synopsis: [PATCH] devel/pecl-svn: unbreak with svn 1.7 and other fixes Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 28 09:20:56 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165524 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 09:40:08 2012 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 A30461065677 for ; Tue, 28 Feb 2012 09:40:08 +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 7BF448FC16 for ; Tue, 28 Feb 2012 09:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S9e8E9085991 for ; Tue, 28 Feb 2012 09:40:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S9e80A085990; Tue, 28 Feb 2012 09:40:08 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 09:40:08 GMT Resent-Message-Id: <201202280940.q1S9e80A085990@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, Aldis Berjoza Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 21680106566B for ; Tue, 28 Feb 2012 09:31:10 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E88AB8FC12 for ; Tue, 28 Feb 2012 09:31:09 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1S9V9Ll057718 for ; Tue, 28 Feb 2012 09:31:09 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1S9V9Rr057717; Tue, 28 Feb 2012 09:31:09 GMT (envelope-from nobody) Message-Id: <201202280931.q1S9V9Rr057717@red.freebsd.org> Date: Tue, 28 Feb 2012 09:31:09 GMT From: Aldis Berjoza To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165525: Looks like sysutils/rubygem-bundler is broken on FreeBSD 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: Tue, 28 Feb 2012 09:40:08 -0000 >Number: 165525 >Category: ports >Synopsis: Looks like sysutils/rubygem-bundler is broken on FreeBSD >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 09:40:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Aldis Berjoza >Release: >Organization: >Environment: >Description: when I cd to rails project and run bundle install (even without rvm) it will install everything in ./bundle-* There is no GEM_HOME or enything like that. it should install gems in system shouldn't it? >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 09:40:28 2012 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 B4B4D1065672; Tue, 28 Feb 2012 09:40:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 84F048FC13; Tue, 28 Feb 2012 09:40:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1S9eSG2086959; Tue, 28 Feb 2012 09:40:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1S9eSAp086950; Tue, 28 Feb 2012 09:40:28 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 09:40:28 GMT Message-Id: <201202280940.q1S9eSAp086950@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165525: Looks like sysutils/rubygem-bundler is broken on FreeBSD 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: Tue, 28 Feb 2012 09:40:28 -0000 Synopsis: Looks like sysutils/rubygem-bundler is broken on FreeBSD Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 28 09:40:28 UTC 2012 Responsible-Changed-Why: ruby@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165525 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 11:01:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F2121065670 for ; Tue, 28 Feb 2012 11:01:19 +0000 (UTC) (envelope-from littlesavage@rambler.ru) Received: from mxb.rambler.ru (mxb.rambler.ru [81.19.66.14]) by mx1.freebsd.org (Postfix) with ESMTP id 00D978FC0C for ; Tue, 28 Feb 2012 11:01:18 +0000 (UTC) Received: from maile.rambler.ru (maile.rambler.ru [81.19.66.15]) by mxb.rambler.ru (Postfix) with ESMTP id 810791E0734 for ; Tue, 28 Feb 2012 14:44:51 +0400 (MSK) Received: from ls.orionet.ru (unknown [94.232.56.2]) (Authenticated sender: littlesavage@rambler.ru) by maile.rambler.ru (Postfix) with ESMTP id 45A051A250E8; Tue, 28 Feb 2012 14:44:48 +0400 (MSK) Message-ID: <4F4CB01F.5030104@rambler.ru> Date: Tue, 28 Feb 2012 14:44:47 +0400 From: Alexe Illarionov User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:9.0) Gecko/20120122 Thunderbird/9.0 MIME-Version: 1.0 To: rm@FreeBSD.org References: <201202230923.q1N9NOgC009998@freefall.freebsd.org> In-Reply-To: <201202230923.q1N9NOgC009998@freefall.freebsd.org> Content-Type: multipart/mixed; boundary="------------040508010003090700050505" Cc: freebsd-ports-bugs@FreeBSD.org, Volodymyr Kostyrko Subject: Re: ports/165356: x11-fonts/paratype was update upstream. once again [patch] [redports] 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: Tue, 28 Feb 2012 11:01:19 -0000 This is a multi-part message in MIME format. --------------040508010003090700050505 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi, Paratype thinks this file naming scheme may be inconvenient for othrer users and asked me to re-release versioned files by myself. I have attached a new patch. --------------040508010003090700050505 Content-Type: text/plain; name="patch-paratype.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-paratype.txt" diff -ruN x11-fonts/paratype.orig/Makefile x11-fonts/paratype/Makefile --- x11-fonts/paratype.orig/Makefile 2012-02-28 13:58:34.000000000 +0400 +++ x11-fonts/paratype/Makefile 2012-02-28 14:05:57.000000000 +0400 @@ -9,16 +9,16 @@ PORTVERSION= 2.004 PORTREVISION= 3 CATEGORIES= x11-fonts -MASTER_SITES= http://www.fontstock.com/public/ +MASTER_SITES= http://paratype.0xdc.ru/ MASTER_SITE_SUBDIR= #prevent bsd.xorg.mk from setting a default subdirectory -DISTFILES= PTSansOFL.zip PTSerifOFL.zip PTMonoOFL.zip +DISTFILES= PTSansOFL-2.004.zip PTSerifOFL-1.000.zip PTMonoOFL-1.002.zip MAINTAINER= littlesavage@rambler.ru COMMENT= ParaType font collection for the languages of Russia LICENSE= OFL -LICENSE_FILE= ${WRKSRC}/PTSansPTSerifOFL.txt LICENSE_NAME= SIL Open Font License (OFL) +LICENSE_FILE= ${WRKSRC}/PTSansPTSerifOFL.txt LICENSE_PERMS= auto-accept INSTALLS_TTF= yes diff -ruN x11-fonts/paratype.orig/distinfo x11-fonts/paratype/distinfo --- x11-fonts/paratype.orig/distinfo 2012-02-28 13:58:34.000000000 +0400 +++ x11-fonts/paratype/distinfo 2012-02-28 14:02:14.000000000 +0400 @@ -1,6 +1,6 @@ -SHA256 (xorg/font/PTSansOFL.zip) = 7105b5e7d9965b5b2fa189b5a84c66a8252b3432c0293f1350c15ad159447ee1 -SIZE (xorg/font/PTSansOFL.zip) = 1600360 -SHA256 (xorg/font/PTSerifOFL.zip) = 1bf55f3cf143a5e22501de18e597677ed81aaad9c12019146a9e3735e06543a5 -SIZE (xorg/font/PTSerifOFL.zip) = 1029464 -SHA256 (xorg/font/PTMonoOFL.zip) = aab4003c2c9b037f1f89f0446b361f5b8f2d8d1e6e99b8f236c93db455aef28d -SIZE (xorg/font/PTMonoOFL.zip) = 100714 +SHA256 (xorg/font/PTSansOFL-2.004.zip) = 7105b5e7d9965b5b2fa189b5a84c66a8252b3432c0293f1350c15ad159447ee1 +SIZE (xorg/font/PTSansOFL-2.004.zip) = 1600360 +SHA256 (xorg/font/PTSerifOFL-1.000.zip) = 1bf55f3cf143a5e22501de18e597677ed81aaad9c12019146a9e3735e06543a5 +SIZE (xorg/font/PTSerifOFL-1.000.zip) = 1029464 +SHA256 (xorg/font/PTMonoOFL-1.002.zip) = beba94b5c56816a2844880fc241a6752fde7dbc238c03bc4f4ec6d34964d6676 +SIZE (xorg/font/PTMonoOFL-1.002.zip) = 100806 --------------040508010003090700050505-- From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 12:10:42 2012 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 DF7CE106564A; Tue, 28 Feb 2012 12:10:42 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B75B88FC29; Tue, 28 Feb 2012 12:10:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SCAgpH031115; Tue, 28 Feb 2012 12:10:42 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SCAgt7031107; Tue, 28 Feb 2012 12:10:42 GMT (envelope-from scheidell) Date: Tue, 28 Feb 2012 12:10:42 GMT Message-Id: <201202281210.q1SCAgt7031107@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165251: [New port] net-mgmt/observium 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: Tue, 28 Feb 2012 12:10:43 -0000 Synopsis: [New port] net-mgmt/observium Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Tue Feb 28 12:10:42 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165251 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 13:30:10 2012 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 7EF791065675 for ; Tue, 28 Feb 2012 13:30:10 +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 3B3B88FC12 for ; Tue, 28 Feb 2012 13:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SDUAB4002377 for ; Tue, 28 Feb 2012 13:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SDUA3r002375; Tue, 28 Feb 2012 13:30:10 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 13:30:10 GMT Resent-Message-Id: <201202281330.q1SDUA3r002375@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, Eygene Ryabinkin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 02839106564A for ; Tue, 28 Feb 2012 13:23:36 +0000 (UTC) (envelope-from rea@codelabs.ru) Received: from 0.mx.codelabs.ru (0.mx.codelabs.ru [144.206.177.45]) by mx1.freebsd.org (Postfix) with ESMTP id AE0998FC16 for ; Tue, 28 Feb 2012 13:23:35 +0000 (UTC) Received: from void.codelabs.ru (void.codelabs.ru [144.206.177.25]) by 0.mx.codelabs.ru with esmtps (TLSv1:CAMELLIA256-SHA:256) id 1S2N1i-0006Er-Qo for FreeBSD-gnats-submit@freebsd.org; Tue, 28 Feb 2012 17:23:34 +0400 Message-Id: <20120228132334.878CCDA819@void.codelabs.ru> Date: Tue, 28 Feb 2012 17:23:34 +0400 (MSK) From: Eygene Ryabinkin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165528: [patch] security/sudo: update to 1.8.4p2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eygene Ryabinkin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Feb 2012 13:30:10 -0000 >Number: 165528 >Category: ports >Synopsis: [patch] security/sudo: update to 1.8.4p2 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 13:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eygene Ryabinkin >Release: FreeBSD 10.0-CURRENT amd64 >Organization: Code Labs >Environment: System: FreeBSD 10.0-CURRENT amd64 >Description: Sudo 1.8.4p2 is out, [1]. FreeBSD's sudo is at 1.8.3p2, [2], [3]. [1] http://www.courtesan.com/sudo/ [2] http://www.freshports.org/security/sudo [3] http://www.freebsd.org/cgi/cvsweb.cgi/ports/security/sudo/Makefile >How-To-Repeat: Look at [1], [2] and [3]. >Fix: The patch is available at http://codelabs.ru/fbsd/ports/sudo/update-1.8.3p2-to-1.8.4p2.diff QA page is at http://codelabs.ru/fbsd/ports/qa/security/sudo/1.8.4 Tinderbox builds are fine, my local testing revealed no problems. Will request a wider testing in freebsd-ports@, results will be reported into this PR. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 13:30:25 2012 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 CCF181065678; Tue, 28 Feb 2012 13:30:25 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A3EB28FC19; Tue, 28 Feb 2012 13:30:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SDUPbD003434; Tue, 28 Feb 2012 13:30:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SDUP1M003423; Tue, 28 Feb 2012 13:30:25 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 13:30:25 GMT Message-Id: <201202281330.q1SDUP1M003423@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wxs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165528: [patch] security/sudo: update to 1.8.4p2 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: Tue, 28 Feb 2012 13:30:25 -0000 Synopsis: [patch] security/sudo: update to 1.8.4p2 Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 28 13:30:24 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165528 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 14:10:10 2012 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 DF5EC106564A for ; Tue, 28 Feb 2012 14:10:09 +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 B7A6D8FC0A for ; Tue, 28 Feb 2012 14:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SEA9lY039396 for ; Tue, 28 Feb 2012 14:10:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SEA9xo039395; Tue, 28 Feb 2012 14:10:09 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 14:10:09 GMT Resent-Message-Id: <201202281410.q1SEA9xo039395@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, Eric F Crist Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83B551065670 for ; Tue, 28 Feb 2012 14:01:47 +0000 (UTC) (envelope-from ecrist@secure-computing.net) Received: from kenny.secure-computing.net (kenny.secure-computing.net [173.8.118.210]) by mx1.freebsd.org (Postfix) with ESMTP id 50F9E8FC1A for ; Tue, 28 Feb 2012 14:01:47 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by kenny.secure-computing.net (Postfix) with SMTP id B76A4261C20 for ; Tue, 28 Feb 2012 03:49:30 -0600 (CST) Received: from cartman.secure-computing.net (cartman.secure-computing.net [173.8.118.211]) by kenny.secure-computing.net (Postfix) with ESMTP id 66EF5261C1F; Tue, 28 Feb 2012 03:49:29 -0600 (CST) Received: by cartman.secure-computing.net (Postfix, from userid 1001) id 78DEA3D763F; Tue, 28 Feb 2012 08:01:22 -0600 (CST) Message-Id: <20120228140122.78DEA3D763F@cartman.secure-computing.net> Date: Tue, 28 Feb 2012 08:01:22 -0600 (CST) From: Eric F Crist To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Josh Paetzel Subject: ports/165529: security/openvpn-beta: update to 2.3-alpha1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Eric F Crist List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Feb 2012 14:10:10 -0000 >Number: 165529 >Category: ports >Synopsis: security/openvpn-beta: update to 2.3-alpha1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 14:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Eric F Crist >Release: FreeBSD 9.0-CURRENT amd64 >Organization: Secure Computing Networks & ClaimLynx, Inc >Environment: FreeBSD cartman.secure-computing.net 9.0-CURRENT FreeBSD 9.0-CURRENT #5: Fri Jan 21 12:06:32 CST 2011 root@cartman.secure-computing.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: This updates the security/openvpn-beta port op openvpn-2.3-alpha1 >How-To-Repeat: >Fix: Please also delete files/patch-t_cltsrv.sh --- ovpnb.diff begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/openvpn-beta/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- Makefile 25 Jul 2011 20:03:44 -0000 1.7 +++ Makefile 28 Feb 2012 13:33:15 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/security/openvpn-beta/Makefile,v 1.7 2011/07/25 20:03:44 mandree Exp $ PORTNAME= openvpn -DISTVERSION= 2.2-RC2 +DISTVERSION= 2.3-alpha1 CATEGORIES= security net MASTER_SITES= http://swupdate.openvpn.net/community/releases/ PKGNAMESUFFIX= -beta @@ -18,7 +18,7 @@ # move users to -devel. DEPRECATED= use openvpn-devel instead for now, there are currently no formal -betas. -CONFLICTS= openvpn-devel-[0-9]* openvpn-2.0* +CONFLICTS= openvpn-devel-[0-9]* openvpn-2* USE_XZ= yes GNU_CONFIGURE= yes Index: distinfo =================================================================== RCS file: /home/ncvs/ports/security/openvpn-beta/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- distinfo 27 Mar 2011 06:19:45 -0000 1.6 +++ distinfo 28 Feb 2012 13:48:07 -0000 @@ -1,2 +1,2 @@ -SHA256 (openvpn-2.2-RC2.tar.xz) = 8fdfab6be1ba6d0101601966123cd108536ca08259503c131bf270132c7d15b4 -SIZE (openvpn-2.2-RC2.tar.xz) = 639196 +SHA256 (openvpn-2.3-alpha1.tar.xz) = eb98d12b053eb0fe26cec7ffc3a7091ed42e2221143755ae7318515630b1b99c +SIZE (openvpn-2.3-alpha1.tar.xz) = 718040 --- ovpnb.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 14:30:15 2012 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 BE3C4106564A for ; Tue, 28 Feb 2012 14:30:15 +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 954058FC18 for ; Tue, 28 Feb 2012 14:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SEUFmA057574 for ; Tue, 28 Feb 2012 14:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SEUFG1057572; Tue, 28 Feb 2012 14:30:15 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 14:30:15 GMT Resent-Message-Id: <201202281430.q1SEUFG1057572@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, Denis E Podolskiy Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03B7A106566B for ; Tue, 28 Feb 2012 14:25:58 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id E5E5A8FC12 for ; Tue, 28 Feb 2012 14:25:57 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1SEPv57030777 for ; Tue, 28 Feb 2012 14:25:57 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1SEPvYr030776; Tue, 28 Feb 2012 14:25:57 GMT (envelope-from nobody) Message-Id: <201202281425.q1SEPvYr030776@red.freebsd.org> Date: Tue, 28 Feb 2012 14:25:57 GMT From: Denis E Podolskiy To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165530: New port: devel/py-foolscap 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: Tue, 28 Feb 2012 14:30:15 -0000 >Number: 165530 >Category: ports >Synopsis: New port: devel/py-foolscap >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 14:30:15 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Denis E Podolskiy >Release: 9.0 >Organization: >Environment: FreeBSD test.sys-media.ru 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Foolscap (aka newpb) is a new version of Twisted's native RPC protocol, known as 'Perspective Broker'. This allows an object in one process to be used by code in a distant process. This module provides data marshaling, a remote object reference system, and a capability-based security model. This is required for porting\approving tahoe-lafs for freebsd >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-foolscap # py-foolscap/Makefile # py-foolscap/pkg-descr # py-foolscap/distinfo # py-foolscap/pkg-plist # echo c - py-foolscap mkdir -p py-foolscap > /dev/null 2>&1 echo x - py-foolscap/Makefile sed 's/^X//' >py-foolscap/Makefile << '01b6d3c26b256f62a567fd78c5d5abd6' X# New ports collection makefile for: foolscap X# Date created: 2012-02-15 X# Date modified: 2012-02-15 X# Whom: Denis Podolskiy bytestore@yandex.ru X# $FreeBSD$ X XPORTNAME= foolscap XPORTVERSION= 0.6.3 XPORTREVISION= 1 XCATEGORIES= devel python XMASTER_SITES= http://foolscap.lothar.com/releases/ XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= bytestore@yandex.ru XCOMMENT= Foolscap contains an RPC protocol for Twisted X XUSE_PYTHON= yes XUSE_PYDISTUTILS=yes XINSTALLS_EGGINFO=no XPYDISTUTILS_NOEGGINFO=yes XPYDISTUTILS_BUILDARGS=build XPYDISTUTILS_INSTALLARGS=install XUSE_LDCONFIG= yes XUSE_GMAKE= yes X X.include 01b6d3c26b256f62a567fd78c5d5abd6 echo x - py-foolscap/pkg-descr sed 's/^X//' >py-foolscap/pkg-descr << 'bdea831f73aaf38dbca3200d8dfb17cb' XFoolscap (aka newpb) is a new version of Twisted's native RPC protocol, known Xas 'Perspective Broker'. This allows an object in one process to be used by Xcode in a distant process. This module provides data marshaling, a remote Xobject reference system, and a capability-based security model. bdea831f73aaf38dbca3200d8dfb17cb echo x - py-foolscap/distinfo sed 's/^X//' >py-foolscap/distinfo << 'c6688295a4a49979c8fe61f2c6b7ca34' XSHA256 (foolscap-0.6.3.tar.gz) = 2932ad12d892583062f474467cdfefde8b9a3a4dccaefcd81a6ae9a012e474f1 XSIZE (foolscap-0.6.3.tar.gz) = 475403 c6688295a4a49979c8fe61f2c6b7ca34 echo x - py-foolscap/pkg-plist sed 's/^X//' >py-foolscap/pkg-plist << '3a2ee865189d12cc46e9bb70d90d4d32' Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/EGG-INFO/scripts/flogtool Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/EGG-INFO/scripts/flappserver Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/EGG-INFO/scripts/flappclient Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/EGG-INFO/PKG-INFO Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/EGG-INFO/SOURCES.txt Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/EGG-INFO/dependency_links.txt Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/EGG-INFO/not-zip-safe Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/EGG-INFO/requires.txt Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/EGG-INFO/top_level.txt Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/__init__.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/_version.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/api.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/banana.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/base32.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/broker.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/call.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/constraint.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/copyable.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/crypto.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/eventual.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/hashutil.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/ipb.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/negotiate.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/observer.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/pb.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/promise.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/reconnector.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/referenceable.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/remoteinterface.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/schema.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicer.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/sslverify.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/storage.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/stringchain.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/tokens.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/util.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/vocab.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/__init__.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/allslicers.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/bool.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/decimal_slicer.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/dict.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/list.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/none.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/root.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/set.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/tuple.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/unicode.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/vocab.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/__init__.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/app_versions.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/cli.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/dumper.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/filter.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/gatherer.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/incident.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/interfaces.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/levels.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/log.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/publish.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/tail.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/web.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/appserver/__init__.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/appserver/cli.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/appserver/client.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/appserver/server.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/appserver/services.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/__init__.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/apphelper.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/bench_banana.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/common.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test__versions.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_appserver.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_banana.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_call.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_copyable.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_crypto.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_eventual.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_gifts.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_interfaces.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_keepalive.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_logging.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_loopback.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_negotiate.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_observer.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_pb.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_promise.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_reconnector.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_reference.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_registration.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_schema.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_serialize.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_stringchain.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_sturdyref.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_tub.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_util.pyc Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/__init__.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/_version.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/api.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/banana.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/base32.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/broker.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/call.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/constraint.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/copyable.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/crypto.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/eventual.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/hashutil.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/ipb.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/negotiate.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/observer.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/pb.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/promise.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/reconnector.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/referenceable.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/remoteinterface.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/schema.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicer.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/sslverify.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/storage.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/stringchain.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/tokens.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/util.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/vocab.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/__init__.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/allslicers.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/bool.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/decimal_slicer.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/dict.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/list.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/none.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/root.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/set.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/tuple.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/unicode.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers/vocab.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/__init__.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/app_versions.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/cli.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/dumper.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/filter.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/gatherer.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/incident.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/interfaces.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/levels.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/log.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/publish.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/tail.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging/web.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/appserver/__init__.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/appserver/cli.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/appserver/client.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/appserver/server.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/appserver/services.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/__init__.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/apphelper.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/bench_banana.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/common.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test__versions.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_appserver.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_banana.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_call.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_copyable.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_crypto.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_eventual.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_gifts.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_interfaces.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_keepalive.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_logging.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_loopback.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_negotiate.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_observer.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_pb.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_promise.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_reconnector.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_reference.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_registration.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_schema.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_serialize.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_stringchain.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_sturdyref.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_tub.py Xlib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test/test_util.py X@dirrmtry lib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/EGG-INFO/scripts X@dirrmtry lib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/EGG-INFO X@dirrmtry lib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/appserver X@dirrmtry lib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/logging X@dirrmtry lib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/slicers X@dirrmtry lib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap/test X@dirrmtry lib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg/foolscap X@dirrmtry lib/python2.7/site-packages/foolscap-0.6.3-py2.7.egg 3a2ee865189d12cc46e9bb70d90d4d32 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 14:30:27 2012 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 9EED0106564A; Tue, 28 Feb 2012 14:30:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 769D98FC1C; Tue, 28 Feb 2012 14:30:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SEUR7f058279; Tue, 28 Feb 2012 14:30:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SEUR1N058273; Tue, 28 Feb 2012 14:30:27 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 14:30:27 GMT Message-Id: <201202281430.q1SEUR1N058273@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165530: New port: devel/py-foolscap 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: Tue, 28 Feb 2012 14:30:27 -0000 Synopsis: New port: devel/py-foolscap Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Tue Feb 28 14:30:26 UTC 2012 Class-Changed-Why: Fix category (new ports should be change-requests) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165530 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 14:40:12 2012 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 A963F106564A for ; Tue, 28 Feb 2012 14:40:12 +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 827688FC0C for ; Tue, 28 Feb 2012 14:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SEeCQH068333 for ; Tue, 28 Feb 2012 14:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SEeClY068332; Tue, 28 Feb 2012 14:40:12 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 14:40:12 GMT Resent-Message-Id: <201202281440.q1SEeClY068332@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, Muhammad Moinur Rahman <5u623l20@gmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69CD41065675 for ; Tue, 28 Feb 2012 14:35:38 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 400E28FC1A for ; Tue, 28 Feb 2012 14:35:38 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1SEZcUN049059 for ; Tue, 28 Feb 2012 14:35:38 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1SEZbeo049058; Tue, 28 Feb 2012 14:35:37 GMT (envelope-from nobody) Message-Id: <201202281435.q1SEZbeo049058@red.freebsd.org> Date: Tue, 28 Feb 2012 14:35:37 GMT From: Muhammad Moinur Rahman <5u623l20@gmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165531: [UPDATE] x11-toolkits/SoXt to 1.3.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: Tue, 28 Feb 2012 14:40:12 -0000 >Number: 165531 >Category: ports >Synopsis: [UPDATE] x11-toolkits/SoXt to 1.3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 14:40:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Muhammad Moinur Rahman >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD tinderbox.dzcrd.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: --- SoXt.bak/Makefile 2012-02-28 14:42:35.923223827 +0600 +++ SoXt/Makefile 2012-02-28 20:31:12.457070866 +0600 @@ -6,12 +6,12 @@ # PORTNAME= SoXt -PORTVERSION= 1.2.2 +PORTVERSION= 1.3.0 PORTREVISION= 9 CATEGORIES= x11-toolkits MASTER_SITES= http://ftp.coin3d.org/coin/src/all/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= 5u623l20@gmail.com COMMENT= GUI binding for using Open Inventor with Xt/Motif LIB_DEPENDS= Coin.61:${PORTSDIR}/graphics/Coin diff -ruN SoXt.bak/distinfo SoXt/distinfo --- SoXt.bak/distinfo 2012-02-28 14:42:35.923223827 +0600 +++ SoXt/distinfo 2012-02-28 14:43:25.303141876 +0600 @@ -1,2 +1,2 @@ -SHA256 (SoXt-1.2.2.tar.gz) = 46bed3ef6a9ad8aa53bbe2e863a1806c270a2a7cf02e2eea302c452dc4c40da1 -SIZE (SoXt-1.2.2.tar.gz) = 883830 +SHA256 (SoXt-1.3.0.tar.gz) = f5443aadafe8e2222b9b5a23d1f228bb0f3e7d98949b8ea8676171b7ea5bf013 +SIZE (SoXt-1.3.0.tar.gz) = 1203903 diff -ruN SoXt.bak/pkg-plist SoXt/pkg-plist --- SoXt.bak/pkg-plist 2012-02-28 14:42:35.923223827 +0600 +++ SoXt/pkg-plist 2012-02-28 15:15:54.333151765 +0600 @@ -2,7 +2,6 @@ include/Inventor/Xt/devices/SoXtDevice.h include/Inventor/Xt/devices/SoXtKeyboard.h include/Inventor/Xt/devices/SoXtMouse.h -include/Inventor/Xt/devices/SoXtSpaceball.h include/Inventor/Xt/devices/SoXtLinuxJoystick.h include/Inventor/Xt/editors/SoXtColorEditor.h include/Inventor/Xt/editors/SoXtMaterialEditor.h @@ -33,6 +32,8 @@ @dirrm include/Inventor/Xt lib/libSoXt.la lib/libSoXt.so -lib/libSoXt.so.2 +lib/libSoXt.so.23 share/aclocal/soxt.m4 share/Coin/conf/soxt-default.cfg +lib/pkgconfig/SoXt.pc +@dirrm lib/pkgconfig >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 15:20:13 2012 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 2C8361065673 for ; Tue, 28 Feb 2012 15:20:13 +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 08B618FC1A for ; Tue, 28 Feb 2012 15:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SFKC6G004193 for ; Tue, 28 Feb 2012 15:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SFKCgX004192; Tue, 28 Feb 2012 15:20:12 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 15:20:12 GMT Resent-Message-Id: <201202281520.q1SFKCgX004192@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, Denis E Podolskiy Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB10A106566B for ; Tue, 28 Feb 2012 15:17:35 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BA0218FC0A for ; Tue, 28 Feb 2012 15:17:35 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1SFHZCm021990 for ; Tue, 28 Feb 2012 15:17:35 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1SFHZ31021989; Tue, 28 Feb 2012 15:17:35 GMT (envelope-from nobody) Message-Id: <201202281517.q1SFHZ31021989@red.freebsd.org> Date: Tue, 28 Feb 2012 15:17:35 GMT From: Denis E Podolskiy To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165532: New port: devel/py-zfec 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: Tue, 28 Feb 2012 15:20:13 -0000 >Number: 165532 >Category: ports >Synopsis: New port: devel/py-zfec >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 15:20:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Denis E Podolskiy >Release: 9.0 >Organization: >Environment: FreeBSD test.sys-media.ru 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Efficient, portable erasure coding tool Generate redundant blocks of information such that if some of the blocks are lost then the original data can be recovered from the remaining blocks. This package includes command-line tools, C API, Python API, and Haskell API. This required for porting\submiting tahoe-lafs port >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # py-zfec # py-zfec/Makefile # py-zfec/pkg-descr # py-zfec/distinfo # py-zfec/pkg-plist # echo c - py-zfec mkdir -p py-zfec > /dev/null 2>&1 echo x - py-zfec/Makefile sed 's/^X//' >py-zfec/Makefile << 'f8f494217b81bafaf398e70e2bd14493' X# New ports collection makefile for: zfec X# Date created: 2012-02-28 X# Date modified: 2012-02-28 X# Whom: Denis E Podolskiy bytestore@yandex.ru X# $FreeBSD$ X XPORTNAME= zfec XPORTVERSION= 1.4.22 XPORTREVISION= 1 XCATEGORIES= devel python XMASTER_SITES= CHEESESHOP XMASTER_SITE_SUBDIR=source/z/zfec X XMAINTAINER= bytestore@yandex.ru XCOMMENT= Efficient, portable erasure coding tool X XUSE_PYTHON= yes XUSE_PYDISTUTILS=yes XINSTALLS_EGGINFO=no XPYDISTUTILS_NOEGGINFO=yes X XUSE_LDCONFIG= yes XUSE_GMAKE= yes X X.include f8f494217b81bafaf398e70e2bd14493 echo x - py-zfec/pkg-descr sed 's/^X//' >py-zfec/pkg-descr << '9f3b5280785cfe92ecbe6198e9eaad63' XDescription: zfec -- efficient, portable erasure coding tool X================================================================== XGenerate redundant blocks of information such that if some of the Xblocks are lost then the original data can be recovered from the Xremaining blocks. This package includes command-line tools, C API, XPython API, and Haskell API. X================================================================== XHome-page: www.tahoe-lafs.org/trac/zfec XAuthor: Zooko O'Whielacronx XAuthor-email: zooko@zooko.com 9f3b5280785cfe92ecbe6198e9eaad63 echo x - py-zfec/distinfo sed 's/^X//' >py-zfec/distinfo << '1fddb0deaed797aee920f651164d5bbf' XSHA256 (zfec-1.4.22.tar.gz) = e8eafa0940a9622ed3ea80f60485b89ee28b9a581988cb669136b632282aca7b XSIZE (zfec-1.4.22.tar.gz) = 162680 1fddb0deaed797aee920f651164d5bbf echo x - py-zfec/pkg-plist sed 's/^X//' >py-zfec/pkg-plist << '3e3c9ac077ad11a3482b8a113d8b17fd' Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/__init__.py Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/__init__.pyo Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/_version.py Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/_version.pyo Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/cmdline_zfec.py Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/cmdline_zfec.pyo Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/cmdline_zunfec.py Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/cmdline_zunfec.pyo Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/easyfec.py Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/easyfec.pyo Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/filefec.py Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/filefec.pyo Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/_fecmodule.c Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/fec.c Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/_fec.pyo Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/fec.h Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/_fec.so Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/__init__.pyc Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/_version.pyc Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/cmdline_zfec.pyc Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/cmdline_zunfec.pyc Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/easyfec.pyc Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/filefec.pyc Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/_fec.py Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/_fec.pyc Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/test/__init__.py Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/test/__init__.pyo Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/test/test_zfec.py Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/test/test_zfec.pyo Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/test/__init__.pyc Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/test/test_zfec.pyc Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/share/doc/zfec/COPYING.GPL Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/share/doc/zfec/changelog Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/share/doc/zfec/COPYING.TGPPL.html Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/share/doc/zfec/TODO Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/share/doc/zfec/README.rst Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/EGG-INFO/PKG-INFO Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/EGG-INFO/SOURCES.txt Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/EGG-INFO/dependency_links.txt Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/EGG-INFO/entry_points.txt Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/EGG-INFO/not-zip-safe Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/EGG-INFO/requires.txt Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/EGG-INFO/stdeb.cfg Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/EGG-INFO/top_level.txt Xlib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/EGG-INFO/native_libs.txt Xbin/zfec Xbin/zunfec Xbin/try_decoding Xbin/randfile Xbin/lines Xbin/unsort Xbin/verinfo Xbin/randcookie Xbin/tailx X@dirrm lib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec/test X@dirrm lib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/zfec X@dirrm lib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/share/doc/zfec/ X@dirrm lib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/share/doc X@dirrm lib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/share X@dirrm lib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg/EGG-INFO X@dirrm lib/python2.7/site-packages/zfec-1.4.22-py2.7-freebsd-9.0-RELEASE-amd64.egg 3e3c9ac077ad11a3482b8a113d8b17fd exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 15:20:22 2012 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 DCD3E106564A; Tue, 28 Feb 2012 15:20:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B50C18FC1D; Tue, 28 Feb 2012 15:20:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SFKMbb004381; Tue, 28 Feb 2012 15:20:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SFKMHe004377; Tue, 28 Feb 2012 15:20:22 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 15:20:22 GMT Message-Id: <201202281520.q1SFKMHe004377@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165532: New port: devel/py-zfec 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: Tue, 28 Feb 2012 15:20:22 -0000 Synopsis: New port: devel/py-zfec Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Tue Feb 28 15:20:22 UTC 2012 Class-Changed-Why: Fix category (new ports should be change-requests) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165532 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 16:40:12 2012 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 1E27F1065672 for ; Tue, 28 Feb 2012 16:40:12 +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 EB6108FC08 for ; Tue, 28 Feb 2012 16:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SGeB0S079635 for ; Tue, 28 Feb 2012 16:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SGeBUb079634; Tue, 28 Feb 2012 16:40:11 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 16:40:11 GMT Resent-Message-Id: <201202281640.q1SGeBUb079634@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, Florian Smeets Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCF71106564A for ; Tue, 28 Feb 2012 16:39:51 +0000 (UTC) (envelope-from flo@tb.smeets.im) Received: from mail.solomo.de (mail.solomo.de [IPv6:2a01:238:42c7:9a00::2]) by mx1.freebsd.org (Postfix) with ESMTP id 7484F8FC13 for ; Tue, 28 Feb 2012 16:39:51 +0000 (UTC) Received: from mail.solomo.de (localhost [127.0.0.1]) by mail.solomo.de (Postfix) with ESMTP id 44F06C388B; Tue, 28 Feb 2012 17:39:50 +0100 (CET) Received: from mail.solomo.de ([127.0.0.1]) by mail.solomo.de (mail.solomo.de [127.0.0.1]) (amavisd-new, port 10024) with LMTP id UkiDAlLe6zoB; Tue, 28 Feb 2012 17:39:49 +0100 (CET) Received: from tb.smeets.im (tb.smeets.im [88.198.62.195]) by mail.solomo.de (Postfix) with ESMTP id 71D88C38C6; Tue, 28 Feb 2012 17:39:49 +0100 (CET) Received: by tb.smeets.im (Postfix, from userid 1001) id A042F6705; Tue, 28 Feb 2012 17:39:38 +0100 (CET) Message-Id: <20120228163949.A042F6705@tb.smeets.im> Date: Tue, 28 Feb 2012 17:39:38 +0100 (CET) From: Florian Smeets To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: gelraen.ua@gmail.com Subject: ports/165534: [PATCH] ftp/vsftpd-ext: look for vsftpd.conf in the correct directory 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: Tue, 28 Feb 2012 16:40:12 -0000 >Number: 165534 >Category: ports >Synopsis: [PATCH] ftp/vsftpd-ext: look for vsftpd.conf in the correct directory >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 16:40:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Florian Smeets >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD tb.smeets.im 10.0-CURRENT FreeBSD 10.0-CURRENT #5 r232166M: Sat Feb 25 22:51:00 CET >Description: the previous patch was supposed to fix vsftpd so that it would look for the configuration file in /usr/local/etc/vsftpd.conf but it did not, currently it is looking for the file in /usr/local/etc/vsftpd//usr/local/etc/vsftpd.conf, the attached patch fixes that. Port maintainer (gelraen.ua@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- vsftpd-ext-2.3.5.1_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/flo/dev/cvs/ports/ftp/vsftpd-ext/Makefile,v retrieving revision 1.7 diff -u -u -r1.7 Makefile --- Makefile 9 Jan 2012 16:39:53 -0000 1.7 +++ Makefile 28 Feb 2012 13:43:47 -0000 @@ -7,6 +7,7 @@ PORTNAME= vsftpd-ext PORTVERSION= ${UPSTREAMVERSION}.${EXTVERSION} +PORTREVISION= 1 CATEGORIES= ftp ipv6 MASTER_SITES= http://vsftpd.devnet.ru/files/${UPSTREAMVERSION}/ext.${EXTVERSION}/ PKGNAMESUFFIX?= ${SSL_SUFFIX}${PKGNAMESUFFIX2} @@ -49,9 +50,7 @@ .endif do-configure: - ${REINPLACE_CMD} -e "s|vsftpd.conf|${PREFIX}/etc/vsftpd.conf|" \ - ${WRKSRC}/defs.h ${WRKSRC}/vsftpd.conf - ${REINPLACE_CMD} -e "s|/etc/vsftpd|${PREFIX}/etc/vsftpd|" \ + ${REINPLACE_CMD} -e "s|/etc/vsftpd|${PREFIX}/etc|" \ ${WRKSRC}/builddefs.h ${REINPLACE_CMD} \ -e '/^CC/s/=/?=/' \ --- vsftpd-ext-2.3.5.1_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 16:40:21 2012 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 12B601065678; Tue, 28 Feb 2012 16:40:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DF3EC8FC14; Tue, 28 Feb 2012 16:40:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SGeKSZ079808; Tue, 28 Feb 2012 16:40:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SGeKTr079804; Tue, 28 Feb 2012 16:40:20 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 16:40:20 GMT Message-Id: <201202281640.q1SGeKTr079804@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, flo@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165534: [PATCH] ftp/vsftpd-ext: look for vsftpd.conf in the correct directory 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: Tue, 28 Feb 2012 16:40:21 -0000 Synopsis: [PATCH] ftp/vsftpd-ext: look for vsftpd.conf in the correct directory Responsible-Changed-From-To: freebsd-ports-bugs->flo Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 28 16:40:20 UTC 2012 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165534 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 16:50:15 2012 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 0F4831065674 for ; Tue, 28 Feb 2012 16:50:15 +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 E06FE8FC19 for ; Tue, 28 Feb 2012 16:50:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SGoErL088686 for ; Tue, 28 Feb 2012 16:50:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SGoEq8088685; Tue, 28 Feb 2012 16:50:14 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 16:50:14 GMT Resent-Message-Id: <201202281650.q1SGoEq8088685@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, JImmie James Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6BAA5106566B for ; Tue, 28 Feb 2012 16:44:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5B7848FC0A for ; Tue, 28 Feb 2012 16:44:30 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1SGiUSv083800 for ; Tue, 28 Feb 2012 16:44:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1SGiUDF083783; Tue, 28 Feb 2012 16:44:30 GMT (envelope-from nobody) Message-Id: <201202281644.q1SGiUDF083783@red.freebsd.org> Date: Tue, 28 Feb 2012 16:44:30 GMT From: JImmie James To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165535: ImageMagick-6.7.5-7 build tests fail 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: Tue, 28 Feb 2012 16:50:15 -0000 >Number: 165535 >Category: ports >Synopsis: ImageMagick-6.7.5-7 build tests fail >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 16:50:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: JImmie James >Release: 8.2-STABLE >Organization: >Environment: FreeBSD jimmiejaz.org 8.2-STABLE FreeBSD 8.2-STABLE #0: Sat Dec 24 16:14:36 EST 2011 jimmie@jimmiejaz.org:/usr/obj/usr/src/sys/FORTYTWO i386 >Description: /usr/bin/ld: warning: libpcre.so.0, needed by /usr/local/lib/liblqr-1.so, may conflict with libpcre.so.1 make check-TESTS check-local PASS: tests/validate-compare.sh PASS: tests/validate-composite.sh PASS: tests/validate-convert.sh PASS: tests/validate-identify.sh PASS: tests/validate-import.sh PASS: tests/validate-montage.sh PASS: tests/validate-pipe.sh PASS: tests/validate-stream.sh *HIGH-LIGHTING* FAIL: tests/validate-formats-in-memory.sh FAIL: tests/validate-formats-on-disk.sh *HIGH-LIGHTING* PASS: Magick++/tests/exceptions.sh PASS: Magick++/tests/appendImages.sh PASS: Magick++/tests/attributes.sh PASS: Magick++/tests/averageImages.sh PASS: Magick++/tests/coalesceImages.sh PASS: Magick++/tests/coderInfo.sh PASS: Magick++/tests/colorHistogram.sh PASS: Magick++/tests/color.sh PASS: Magick++/tests/montageImages.sh PASS: Magick++/tests/morphImages.sh PASS: Magick++/tests/readWriteBlob.sh PASS: Magick++/tests/readWriteImages.sh PASS: Magick++/demo/analyze.sh PASS: Magick++/demo/button.sh PASS: Magick++/demo/demo.sh PASS: Magick++/demo/flip.sh PASS: Magick++/demo/gravity.sh PASS: Magick++/demo/piddle.sh PASS: Magick++/demo/shapes.sh PASS: Magick++/demo/zoom_bessel.sh PASS: Magick++/demo/zoom_blackman.sh PASS: Magick++/demo/zoom_box.sh PASS: Magick++/demo/zoom_catrom.sh PASS: Magick++/demo/zoom_cubic.sh PASS: Magick++/demo/zoom_gaussian.sh PASS: Magick++/demo/zoom_hamming.sh PASS: Magick++/demo/zoom_hanning.sh PASS: Magick++/demo/zoom_hermite.sh PASS: Magick++/demo/zoom_lanczos.sh PASS: Magick++/demo/zoom_mitchell.sh PASS: Magick++/demo/zoom_point.sh PASS: Magick++/demo/zoom_quadratic.sh PASS: Magick++/demo/zoom_sample.sh PASS: Magick++/demo/zoom_scale.sh PASS: Magick++/demo/zoom_sinc.sh PASS: Magick++/demo/zoom_triangle.sh PASS: wand/drawtest.sh PASS: wand/wandtest.sh =========================================== 2 of 48 tests failed See ./test-suite.log Please report to http://www.imagemagick.org =========================================== *** Error code 1 Stop in /usr/ports/graphics/ImageMagick/work/ImageMagick-6.7.5-7. *** Error code 1 ~>cat /var/db/ports/ImageMagick/options # This file is auto-generated by 'make config'. # No user-servicable parts inside! # Options for ImageMagick-6.7.3.4 _OPTIONS_READ=ImageMagick-6.7.3.4 WITH_IMAGEMAGICK_16BIT_PIXEL=true WITH_IMAGEMAGICK_BZLIB=true WITH_IMAGEMAGICK_DJVU=true WITH_IMAGEMAGICK_DOT=true WITH_IMAGEMAGICK_FFTW=true WITH_IMAGEMAGICK_FONTCONFIG=true WITH_IMAGEMAGICK_FPX=true WITH_IMAGEMAGICK_GSLIB=true WITH_IMAGEMAGICK_JBIG=true WITH_IMAGEMAGICK_JPEG=true WITH_IMAGEMAGICK_JPEG2000=true WITH_IMAGEMAGICK_LCMS2=true WITH_IMAGEMAGICK_LCMS=true WITH_IMAGEMAGICK_LZMA=true WITH_IMAGEMAGICK_LQR=true WITH_IMAGEMAGICK_MODULES=true WITH_IMAGEMAGICK_OPENEXR=true WITH_IMAGEMAGICK_OPENMP=true WITHOUT_IMAGEMAGICK_PANGO=true WITH_IMAGEMAGICK_PDF=true WITH_IMAGEMAGICK_PERL=true WITH_IMAGEMAGICK_PNG=true WITH_IMAGEMAGICK_SVG=true WITH_IMAGEMAGICK_TESTS=true WITH_IMAGEMAGICK_TIFF=true WITH_IMAGEMAGICK_TTF=true WITH_IMAGEMAGICK_WEBP=true WITH_IMAGEMAGICK_WMF=true WITH_THREADS=true >How-To-Repeat: Update ImageMagick from ImageMagick-6.7.4.4_1 >Fix: Unknown. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 18:44:26 2012 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 ACDC71065676; Tue, 28 Feb 2012 18:44:26 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 84DD28FC08; Tue, 28 Feb 2012 18:44:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SIiQoS097548; Tue, 28 Feb 2012 18:44:26 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SIiQQb097544; Tue, 28 Feb 2012 18:44:26 GMT (envelope-from linimon) Date: Tue, 28 Feb 2012 18:44:26 GMT Message-Id: <201202281844.q1SIiQQb097544@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/165535: graphics/ImageMagick 6.7.5-7 build tests fail 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: Tue, 28 Feb 2012 18:44:26 -0000 Old Synopsis: ImageMagick-6.7.5-7 build tests fail New Synopsis: graphics/ImageMagick 6.7.5-7 build tests fail Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: linimon Responsible-Changed-When: Tue Feb 28 18:43:54 UTC 2012 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=165535 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 20:50:09 2012 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 594A91065673 for ; Tue, 28 Feb 2012 20:50:09 +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 276D08FC14 for ; Tue, 28 Feb 2012 20:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SKo9cq011639 for ; Tue, 28 Feb 2012 20:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SKo86T011638; Tue, 28 Feb 2012 20:50:08 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 20:50:08 GMT Resent-Message-Id: <201202282050.q1SKo86T011638@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 247B01065673; Tue, 28 Feb 2012 20:43:37 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id D7C0E8FC1C; Tue, 28 Feb 2012 20:43:36 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q1SKhWme060702 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 28 Feb 2012 15:43:32 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q1SKhSPM098268; Tue, 28 Feb 2012 15:43:28 -0500 (EST) (envelope-from steve) Message-Id: <201202282043.q1SKhSPM098268@meatwad.mouf.net> Date: Tue, 28 Feb 2012 15:43:28 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: kuriyama@FreeBSD.org Subject: ports/165537: [PATCH] databases/p5-DBIx-Class-DeploymentHandler: update to 0.001008 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: Tue, 28 Feb 2012 20:50:09 -0000 >Number: 165537 >Category: ports >Synopsis: [PATCH] databases/p5-DBIx-Class-DeploymentHandler: update to 0.001008 >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 Feb 28 20:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: - Update to 0.001008 - Add TEST_DEPENDS to enable testing Port maintainer (kuriyama@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: update, diff: CVS) >How-To-Repeat: >Fix: --- p5-DBIx-Class-DeploymentHandler-0.001008.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/databases/p5-DBIx-Class-DeploymentHandler/Makefile,v retrieving revision 1.1 diff -u -u -r1.1 Makefile --- Makefile 28 Dec 2011 02:44:51 -0000 1.1 +++ Makefile 28 Feb 2012 20:43:16 -0000 @@ -6,7 +6,7 @@ # PORTNAME= DBIx-Class-DeploymentHandler -PORTVERSION= 0.001005 +PORTVERSION= 0.001008 CATEGORIES= databases perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -28,6 +28,7 @@ p5-aliased>0:${PORTSDIR}/devel/p5-aliased \ p5-namespace-autoclean>0:${PORTSDIR}/devel/p5-namespace-autoclean BUILD_DEPENDS= ${RUN_DEPENDS} +TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception PERL_CONFIGURE= yes Index: distinfo =================================================================== RCS file: /home/pcvs/ports/databases/p5-DBIx-Class-DeploymentHandler/distinfo,v retrieving revision 1.1 diff -u -u -r1.1 distinfo --- distinfo 28 Dec 2011 02:44:51 -0000 1.1 +++ distinfo 28 Feb 2012 20:43:16 -0000 @@ -1,2 +1,2 @@ -SHA256 (DBIx-Class-DeploymentHandler-0.001005.tar.gz) = f0d9bd3138a7c794cd0cbc6c631e71968cb5a5114f8c046ee32e2e392b1a0e6e -SIZE (DBIx-Class-DeploymentHandler-0.001005.tar.gz) = 42533 +SHA256 (DBIx-Class-DeploymentHandler-0.001008.tar.gz) = 015cbd7514fd5e8bc10c66e74123342979bc46cce64f13820b43f888260919eb +SIZE (DBIx-Class-DeploymentHandler-0.001008.tar.gz) = 44163 --- p5-DBIx-Class-DeploymentHandler-0.001008.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 20:50:24 2012 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 39AAE1065675; Tue, 28 Feb 2012 20:50:24 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1197D8FC22; Tue, 28 Feb 2012 20:50:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SKoNI6012668; Tue, 28 Feb 2012 20:50:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SKoNk5012659; Tue, 28 Feb 2012 20:50:23 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 20:50:23 GMT Message-Id: <201202282050.q1SKoNk5012659@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165537: [PATCH] databases/p5-DBIx-Class-DeploymentHandler: update to 0.001008 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: Tue, 28 Feb 2012 20:50:24 -0000 Synopsis: [PATCH] databases/p5-DBIx-Class-DeploymentHandler: update to 0.001008 Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 28 20:50:23 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165537 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 21:00:33 2012 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 CC331106570D for ; Tue, 28 Feb 2012 21:00:33 +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 552618FC1B for ; Tue, 28 Feb 2012 21:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SL0Rpb020581 for ; Tue, 28 Feb 2012 21:00:27 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SL0RSp020579; Tue, 28 Feb 2012 21:00:27 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 21:00:27 GMT Resent-Message-Id: <201202282100.q1SL0RSp020579@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7FB51065670; Tue, 28 Feb 2012 20:58:51 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 7DAF48FC08; Tue, 28 Feb 2012 20:58:51 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q1SKwlOb060898 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 28 Feb 2012 15:58:48 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q1SKwlTU090519; Tue, 28 Feb 2012 15:58:47 -0500 (EST) (envelope-from steve) Message-Id: <201202282058.q1SKwlTU090519@meatwad.mouf.net> Date: Tue, 28 Feb 2012 15:58:47 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: tobez@FreeBSD.org Subject: ports/165538: [PATCH] www/p5-CGI.pm: update to 3.59,1 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: Tue, 28 Feb 2012 21:00:33 -0000 >Number: 165538 >Category: ports >Synopsis: [PATCH] www/p5-CGI.pm: update to 3.59,1 >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 Feb 28 21:00:26 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: - Update to 3.59,1 - Add TEST_DEPENDS to enable testing Port maintainer (tobez@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: update, diff: CVS) >How-To-Repeat: >Fix: --- p5-CGI.pm-3.59,1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/p5-CGI.pm/Makefile,v retrieving revision 1.52 diff -u -u -r1.52 Makefile --- Makefile 28 Nov 2011 11:33:58 -0000 1.52 +++ Makefile 28 Feb 2012 20:58:33 -0000 @@ -6,7 +6,7 @@ # PORTNAME= CGI.pm -PORTVERSION= 3.58 +PORTVERSION= 3.59 PORTEPOCH= 1 CATEGORIES= www perl5 MASTER_SITES= CPAN @@ -16,11 +16,11 @@ MAINTAINER= tobez@FreeBSD.org COMMENT= Simple Common Gateway Interface Class for Perl -TEST_DEPENDS= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple - LICENSE= ART20 GPLv1 LICENSE_COMB= dual +TEST_DEPENDS= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple + PERL_CONFIGURE= yes MAN3= CGI.3 CGI::Apache.3 CGI::Carp.3 CGI::Cookie.3 \ @@ -48,4 +48,10 @@ post-patch: @${REINPLACE_CMD} -e '/require 5\.6/d; /INSTALLDIRS/d' ${WRKSRC}/Makefile.PL -.include +.include + +.if ${PERL_LEVEL} < 501400 +TEST_DEPENDS+= p5-Test-Simple>=0.96:${PORTSDIR}/devel/p5-Test-Simple +.endif + +.include Index: distinfo =================================================================== RCS file: /home/pcvs/ports/www/p5-CGI.pm/distinfo,v retrieving revision 1.42 diff -u -u -r1.42 distinfo --- distinfo 28 Nov 2011 11:33:58 -0000 1.42 +++ distinfo 28 Feb 2012 20:58:33 -0000 @@ -1,2 +1,2 @@ -SHA256 (CGI.pm-3.58.tar.gz) = 14123d21a0af7908a0c1697b4ba8e71582c664b7390dc617c0b9ac27e2fdab84 -SIZE (CGI.pm-3.58.tar.gz) = 244996 +SHA256 (CGI.pm-3.59.tar.gz) = dbe34ea0bc2b9fe1b1bf6a9501da34038c8d9663d2fb670d97b888d4002c117c +SIZE (CGI.pm-3.59.tar.gz) = 245732 --- p5-CGI.pm-3.59,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 21:00:55 2012 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 5A3381065675; Tue, 28 Feb 2012 21:00:55 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 32EF88FC1F; Tue, 28 Feb 2012 21:00:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SL0t3f022196; Tue, 28 Feb 2012 21:00:55 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SL0tE4022188; Tue, 28 Feb 2012 21:00:55 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 21:00:55 GMT Message-Id: <201202282100.q1SL0tE4022188@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tobez@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165538: [PATCH] www/p5-CGI.pm: update to 3.59,1 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: Tue, 28 Feb 2012 21:00:55 -0000 Synopsis: [PATCH] www/p5-CGI.pm: update to 3.59,1 Responsible-Changed-From-To: freebsd-ports-bugs->tobez Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 28 21:00:54 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165538 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 21:40:12 2012 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 557EA1065674 for ; Tue, 28 Feb 2012 21:40:12 +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 6D3A78FC12 for ; Tue, 28 Feb 2012 21:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SLe9Ec059777 for ; Tue, 28 Feb 2012 21:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SLe98Y059776; Tue, 28 Feb 2012 21:40:09 GMT (envelope-from gnats) Resent-Date: Tue, 28 Feb 2012 21:40:09 GMT Resent-Message-Id: <201202282140.q1SLe98Y059776@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 37AD4106564A for ; Tue, 28 Feb 2012 21:38:57 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id D20518FC08 for ; Tue, 28 Feb 2012 21:38:56 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q1SLcr9G061280 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 28 Feb 2012 16:38:53 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q1SLck5R091663; Tue, 28 Feb 2012 16:38:46 -0500 (EST) (envelope-from steve) Message-Id: <201202282138.q1SLck5R091663@meatwad.mouf.net> Date: Tue, 28 Feb 2012 16:38:46 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: az@FreeBSD.org Subject: ports/165539: [PATCH] www/p5-HTML-FormHandler: add additional TEST_DEPENDS 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: Tue, 28 Feb 2012 21:40:12 -0000 >Number: 165539 >Category: ports >Synopsis: [PATCH] www/p5-HTML-FormHandler: add additional TEST_DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 28 21:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: see patch, tests fail without this addtional (undocumented) TEST_DEPENDS Port maintainer (az@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-HTML-FormHandler-0.35005,1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/p5-HTML-FormHandler/Makefile,v retrieving revision 1.17 diff -u -u -r1.17 Makefile --- Makefile 10 Oct 2011 11:17:18 -0000 1.17 +++ Makefile 28 Feb 2012 21:38:19 -0000 @@ -36,7 +36,8 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \ - p5-Test-Differences>=0:${PORTSDIR}/devel/p5-Test-Differences + p5-Test-Differences>=0:${PORTSDIR}/devel/p5-Test-Differences \ + p5-Test-Memory-Cycle>=0:${PORTSDIR}/devel/p5-Test-Memory-Cycle PERL_CONFIGURE= yes --- p5-HTML-FormHandler-0.35005,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 21:40:21 2012 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 2BA231065670; Tue, 28 Feb 2012 21:40:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 03C368FC13; Tue, 28 Feb 2012 21:40:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SLeKav059961; Tue, 28 Feb 2012 21:40:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SLeKkk059957; Tue, 28 Feb 2012 21:40:20 GMT (envelope-from edwin) Date: Tue, 28 Feb 2012 21:40:20 GMT Message-Id: <201202282140.q1SLeKkk059957@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, az@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165539: [PATCH] www/p5-HTML-FormHandler: add additional TEST_DEPENDS 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: Tue, 28 Feb 2012 21:40:21 -0000 Synopsis: [PATCH] www/p5-HTML-FormHandler: add additional TEST_DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->az Responsible-Changed-By: edwin Responsible-Changed-When: Tue Feb 28 21:40:20 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165539 From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Feb 28 22:25:38 2012 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 26823106567A; Tue, 28 Feb 2012 22:25:38 +0000 (UTC) (envelope-from makc@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F3C118FC19; Tue, 28 Feb 2012 22:25:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1SMPbRP004020; Tue, 28 Feb 2012 22:25:37 GMT (envelope-from makc@freefall.freebsd.org) Received: (from makc@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1SMPbK7004016; Tue, 28 Feb 2012 22:25:37 GMT (envelope-from makc) Date: Tue, 28 Feb 2012 22:25:37 GMT Message-Id: <201202282225.q1SMPbK7004016@freefall.freebsd.org> To: makc@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: makc@FreeBSD.org Cc: Subject: Re: ports/165531: [UPDATE] x11-toolkits/SoXt to 1.3.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: Tue, 28 Feb 2012 22:25:38 -0000 Synopsis: [UPDATE] x11-toolkits/SoXt to 1.3.0 Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Tue Feb 28 22:25:37 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165531 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 01:50:13 2012 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 9111E106566B for ; Wed, 29 Feb 2012 01:50:13 +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 7B51D8FC0C for ; Wed, 29 Feb 2012 01:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T1oD9d093342 for ; Wed, 29 Feb 2012 01:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T1oDlD093341; Wed, 29 Feb 2012 01:50:13 GMT (envelope-from gnats) Date: Wed, 29 Feb 2012 01:50:13 GMT Message-Id: <201202290150.q1T1oDlD093341@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Yoshiaki Kasahara Cc: Subject: Re: ports/164306: update mail/mailagent to 3.1.77 and utmpx fix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Yoshiaki Kasahara List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Feb 2012 01:50:13 -0000 The following reply was made to PR ports/164306; it has been noted by GNATS. From: Yoshiaki Kasahara To: scheidell@FreeBSD.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/164306: update mail/mailagent to 3.1.77 and utmpx fix Date: Wed, 29 Feb 2012 10:46:12 +0900 (JST) Thank you very much for the pointer, but I'm afraid that it is not applicable to this case. The patch for net/msend looks clean because msend already has codes for utmpx (calling get/setutxent instead of directly reading the utmp file when USE_UTMPX is defined). The patch just defines USE_UTMPX and fixes incompatibility of a member name. The actual problem (or difficulty for me) is that mailagent is a Perl script and there seems no way to obtain utmpx data structure by a Perl script (maybe except writing a C module calling set/getutxent ?). utmp-era programs can read and parse utmp file directly, but utmpx file is not directly readable (the file format (futx?) is hidden inside libc and there seems no way to read it in a portable way). CPAN has User::Utmp module, but it is not in FreeBSD ports collection. I tried to build it by myself but failed on 9.x. Also the author of mailagent seems to have a policy not to use any external modules. So I was stucked and decided to call /usr/bin/who instead, because mailagent just needs users and tty names they are on. mailagent uses them to decide which ttys to biff. I don't use biff function, but at least I want it to work as expected. I have only a little knowledge about utmpx on FreeBSD 9.x so my understanding might be wrong. If there is a clean way to access utmpx from a Perl script, I'd like to know. -- Yoshiaki Kasahara Research Institute for Information Technology, Kyushu University kasahara@nc.kyushu-u.ac.jp From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 02:30:12 2012 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 E1E371065670 for ; Wed, 29 Feb 2012 02:30:11 +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 AD9FC8FC0C for ; Wed, 29 Feb 2012 02:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T2UBGc028730 for ; Wed, 29 Feb 2012 02:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T2UBvB028728; Wed, 29 Feb 2012 02:30:11 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 02:30:11 GMT Resent-Message-Id: <201202290230.q1T2UBvB028728@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3FAAC1065670 for ; Wed, 29 Feb 2012 02:27:46 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id EE3A28FC08 for ; Wed, 29 Feb 2012 02:27:45 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q1T2RfhS063358 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 28 Feb 2012 21:27:42 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q1T2Rbje022804; Tue, 28 Feb 2012 21:27:37 -0500 (EST) (envelope-from steve) Message-Id: <201202290227.q1T2Rbje022804@meatwad.mouf.net> Date: Tue, 28 Feb 2012 21:27:37 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: vvelox@vvelox.net Subject: ports/165542: [PATCH] deskutils/p5-ZConf-Runner-GUI-GTK: add missing DEPENDS 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: Wed, 29 Feb 2012 02:30:12 -0000 >Number: 165542 >Category: ports >Synopsis: [PATCH] deskutils/p5-ZConf-Runner-GUI-GTK: add missing DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 02:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: port is missing some dependencies, patch adds them Port maintainer (vvelox@vvelox.net) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-ZConf-Runner-GUI-GTK-0.0.2_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/deskutils/p5-ZConf-Runner-GUI-GTK/Makefile,v retrieving revision 1.5 diff -u -u -r1.5 Makefile --- Makefile 20 Jun 2011 08:34:49 -0000 1.5 +++ Makefile 29 Feb 2012 02:27:19 -0000 @@ -7,6 +7,7 @@ PORTNAME= ZConf-Runner-GUI-GTK PORTVERSION= 0.0.2 +PORTREVISION= 1 CATEGORIES= deskutils perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:VVELOX @@ -15,8 +16,11 @@ MAINTAINER= vvelox@vvelox.net COMMENT= The GTK GUI backend for ZConf::Runner -RUN_DEPENDS= ${SITE_PERL}/ZConf.pm:${PORTSDIR}/net/p5-ZConf \ - p5-Gtk2>=1.060:${PORTSDIR}/x11-toolkits/p5-Gtk2 +BUILD_DEPENDS= ${SITE_PERL}/ZConf.pm:${PORTSDIR}/net/p5-ZConf \ + p5-Gtk2>=1.060:${PORTSDIR}/x11-toolkits/p5-Gtk2 \ + p5-ZConf-Runner>=0:${PORTSDIR}/deskutils/p5-ZConf-Runner \ + p5-File-MimeInfo>=0:${PORTSDIR}/devel/p5-File-MimeInfo +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes --- p5-ZConf-Runner-GUI-GTK-0.0.2_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 02:30:23 2012 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 48FB5106564A; Wed, 29 Feb 2012 02:30:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1C5628FC0C; Wed, 29 Feb 2012 02:30:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T2UMic029431; Wed, 29 Feb 2012 02:30:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T2UM0H029420; Wed, 29 Feb 2012 02:30:22 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 02:30:22 GMT Message-Id: <201202290230.q1T2UM0H029420@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165542: [PATCH] deskutils/p5-ZConf-Runner-GUI-GTK: add missing DEPENDS 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: Wed, 29 Feb 2012 02:30:23 -0000 Synopsis: [PATCH] deskutils/p5-ZConf-Runner-GUI-GTK: add missing DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 02:30:22 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165542 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 02:45:24 2012 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 0F5981065672; Wed, 29 Feb 2012 02:45:24 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D6EE58FC17; Wed, 29 Feb 2012 02:45:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T2jNMW047741; Wed, 29 Feb 2012 02:45:23 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T2jNko047737; Wed, 29 Feb 2012 02:45:23 GMT (envelope-from wen) Date: Wed, 29 Feb 2012 02:45:23 GMT Message-Id: <201202290245.q1T2jNko047737@freefall.freebsd.org> To: jhein@symmetricom.com, wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/165518: [PATCH] astro/gpstk: avoid unecessary dos2unix invocations 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: Wed, 29 Feb 2012 02:45:24 -0000 Synopsis: [PATCH] astro/gpstk: avoid unecessary dos2unix invocations State-Changed-From-To: open->closed State-Changed-By: wen State-Changed-When: Wed Feb 29 02:45:23 UTC 2012 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=165518 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 02:50:11 2012 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 CAF21106566B for ; Wed, 29 Feb 2012 02:50:11 +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 B09D58FC0C for ; Wed, 29 Feb 2012 02:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T2oBgL048460 for ; Wed, 29 Feb 2012 02:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T2oB7S048458; Wed, 29 Feb 2012 02:50:11 GMT (envelope-from gnats) Date: Wed, 29 Feb 2012 02:50:11 GMT Message-Id: <201202290250.q1T2oB7S048458@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/165518: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Feb 2012 02:50:11 -0000 The following reply was made to PR ports/165518; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/165518: commit references a PR Date: Wed, 29 Feb 2012 02:42:01 +0000 (UTC) wen 2012-02-29 02:41:49 UTC FreeBSD ports repository Modified files: astro/gpstk Makefile Log: - Avoid unecessary dos2unix invocations PR: ports/165518 Submitted by: John Hein (maintainer) Revision Changes Path 1.15 +1 -0 ports/astro/gpstk/Makefile _______________________________________________ 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" From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 04:10:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C9A0106566C for ; Wed, 29 Feb 2012 04:10:17 +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 157008FC14 for ; Wed, 29 Feb 2012 04:10:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T4AG5l022244 for ; Wed, 29 Feb 2012 04:10:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T4AGZ1022243; Wed, 29 Feb 2012 04:10:16 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 04:10:16 GMT Resent-Message-Id: <201202290410.q1T4AGZ1022243@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, Volodymyr Kostyrko Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 470571065672 for ; Wed, 29 Feb 2012 04:07:04 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2B5608FC0C for ; Wed, 29 Feb 2012 04:07:04 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1T39UPS036342 for ; Wed, 29 Feb 2012 03:09:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1T39Ude036341; Wed, 29 Feb 2012 03:09:30 GMT (envelope-from nobody) Message-Id: <201202290309.q1T39Ude036341@red.freebsd.org> Date: Wed, 29 Feb 2012 03:09:30 GMT From: Volodymyr Kostyrko To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165544: net/mpd5 fails to listen on tcp port 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: Wed, 29 Feb 2012 04:10:17 -0000 >Number: 165544 >Category: ports >Synopsis: net/mpd5 fails to listen on tcp port >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 04:10:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Volodymyr Kostyrko >Release: RELENG_8_2 >Organization: >Environment: FreeBSD urquan.xim.bz 8.2-RELEASE-p5 FreeBSD 8.2-RELEASE-p5 #1: Mon Dec 26 23:37:20 EET 2011 arcade@urquan.xim.bz:/usr/obj/usr/src/sys/MINIMAL amd64 >Description: Last mpd log starts on Jan 3 2011. There was nothing like this before. Config: startup: set user root blablabla admin set console self 127.0.0.1 5005 set console open set web self 127.0.0.1 5006 set web open default: load in_server in_server: create bundle template IN set bundle yes compression crypt-reqd set ccp yes deflate pred1 mppc set mppc yes e128 compress set ipcp ranges 172.31.0.5/32 0.0.0.0/32 create link template in tcp set auth max-logins 1 set link action bundle IN set link keep-alive 5 20 set link no pap chap eap set link enable chap set link yes incoming multilink passive set tcp self 109.72.152.19 9 Yesterday in the morning when nothing happens at server as I was surely sleeping: Feb 28 08:12:28 urquan mpd: [in-1] LCP: no reply to 1 echo request(s) Feb 28 08:12:33 urquan mpd: [in-1] LCP: no reply to 2 echo request(s) Feb 28 08:12:39 urquan mpd: [in-1] LCP: no reply to 3 echo request(s) Feb 28 08:12:39 urquan mpd: [in-1] LCP: peer not responding to echo requests Feb 28 08:12:39 urquan mpd: [in-1] LCP: state change Opened --> Stopping Feb 28 08:12:39 urquan mpd: [in-1] Link: Leave bundle "IN-1" Feb 28 08:12:39 urquan mpd: [IN-1] Bundle: Status update: up 0 links, total bandwidth 9600 bps Feb 28 08:12:39 urquan mpd: [IN-1] IPCP: Close event Feb 28 08:12:39 urquan mpd: [IN-1] IPCP: state change Opened --> Closing Feb 28 08:12:39 urquan mpd: [IN-1] IPCP: SendTerminateReq #2 Feb 28 08:12:39 urquan mpd: [IN-1] IPCP: LayerDown Feb 28 08:12:39 urquan mpd: [IN-1] IFACE: Down event Feb 28 08:12:39 urquan mpd: [IN-1] CCP: Close event Feb 28 08:12:39 urquan mpd: [IN-1] CCP: state change Opened --> Closing Feb 28 08:12:39 urquan mpd: [IN-1] CCP: SendTerminateReq #90 Feb 28 08:12:39 urquan mpd: [IN-1] CCP: LayerDown Feb 28 08:12:39 urquan mpd: [IN-1] IPCP: Down event Feb 28 08:12:39 urquan mpd: [IN-1] IPCP: LayerFinish Feb 28 08:12:39 urquan mpd: [IN-1] Bundle: No NCPs left. Closing links... Feb 28 08:12:39 urquan mpd: [IN-1] IPCP: state change Closing --> Initial Feb 28 08:12:39 urquan mpd: [IN-1] CCP: Down event Feb 28 08:12:39 urquan mpd: [IN-1] CCP: LayerFinish Feb 28 08:12:39 urquan mpd: [IN-1] CCP: state change Closing --> Initial Feb 28 08:12:39 urquan mpd: [IN-1] Bundle: Shutdown Feb 28 08:12:39 urquan mpd: [in-1] LCP: SendTerminateReq #2 Feb 28 08:12:39 urquan mpd: [in-1] LCP: LayerDown Feb 28 08:12:41 urquan mpd: [in-1] LCP: SendTerminateReq #3 Feb 28 08:12:43 urquan mpd: [in-1] LCP: state change Stopping --> Stopped Feb 28 08:12:43 urquan mpd: [in-1] LCP: LayerFinish Feb 28 08:12:43 urquan mpd: [in-1] Link: DOWN event Feb 28 08:12:43 urquan mpd: [in-1] LCP: Close event Feb 28 08:12:43 urquan mpd: [in-1] LCP: state change Stopped --> Closed Feb 28 08:12:43 urquan mpd: [in-1] LCP: Down event Feb 28 08:12:43 urquan mpd: [in-1] LCP: state change Closed --> Initial Feb 28 08:12:43 urquan mpd: [in-1] Link: SHUTDOWN event Feb 28 08:12:43 urquan mpd: [in-1] Link: Shutdown It was reconnected and half an hour later: Feb 28 08:49:45 urquan mpd: [in-1] LCP: no reply to 1 echo request(s) Feb 28 08:49:50 urquan mpd: [in-1] LCP: no reply to 2 echo request(s) Feb 28 08:49:55 urquan mpd: [in-1] LCP: no reply to 3 echo request(s) Feb 28 08:49:55 urquan mpd: [in-1] LCP: peer not responding to echo requests Feb 28 08:49:55 urquan mpd: [in-1] LCP: state change Opened --> Stopping Feb 28 08:49:55 urquan mpd: [in-1] Link: Leave bundle "IN-1" Feb 28 08:49:55 urquan mpd: [IN-1] Bundle: Status update: up 0 links, total bandwidth 9600 bps Feb 28 08:49:55 urquan mpd: [IN-1] IPCP: Close event Feb 28 08:49:55 urquan mpd: [IN-1] IPCP: state change Opened --> Closing Feb 28 08:49:55 urquan mpd: [IN-1] IPCP: SendTerminateReq #2 Feb 28 08:49:55 urquan mpd: [IN-1] IPCP: LayerDown Feb 28 08:49:55 urquan mpd: [IN-1] IFACE: Down event Feb 28 08:49:55 urquan mpd: [IN-1] CCP: Close event Feb 28 08:49:55 urquan mpd: [IN-1] CCP: state change Opened --> Closing Feb 28 08:49:55 urquan mpd: [IN-1] CCP: SendTerminateReq #3 Feb 28 08:49:55 urquan mpd: [IN-1] CCP: LayerDown Feb 28 08:49:55 urquan mpd: [IN-1] IPCP: Down event Feb 28 08:49:55 urquan mpd: [IN-1] IPCP: LayerFinish Feb 28 08:49:55 urquan mpd: [IN-1] Bundle: No NCPs left. Closing links... Feb 28 08:49:55 urquan mpd: [IN-1] IPCP: state change Closing --> Initial Feb 28 08:49:55 urquan mpd: [IN-1] CCP: Down event Feb 28 08:49:55 urquan mpd: [IN-1] CCP: LayerFinish Feb 28 08:49:55 urquan mpd: [IN-1] CCP: state change Closing --> Initial Feb 28 08:49:55 urquan mpd: [IN-1] Bundle: Shutdown Feb 28 08:49:55 urquan mpd: [in-1] LCP: SendTerminateReq #2 Feb 28 08:49:55 urquan mpd: [in-1] LCP: LayerDown Feb 28 08:49:57 urquan mpd: [in-1] LCP: SendTerminateReq #3 Feb 28 08:49:59 urquan mpd: [in-1] LCP: state change Stopping --> Stopped Feb 28 08:49:59 urquan mpd: [in-1] LCP: LayerFinish Feb 28 08:49:59 urquan mpd: [in-1] Link: DOWN event Feb 28 08:49:59 urquan mpd: [in-1] LCP: Close event Feb 28 08:49:59 urquan mpd: [in-1] LCP: state change Stopped --> Closed Feb 28 08:49:59 urquan mpd: [in-1] LCP: Down event Feb 28 08:49:59 urquan mpd: [in-1] LCP: state change Closed --> Initial Feb 28 08:49:59 urquan mpd: [in-1] Link: SHUTDOWN event Feb 28 08:49:59 urquan mpd: [in-1] Link: Shutdown After that server becomes unresponsive. Reloading it gived me: Feb 28 10:13:16 urquan mpd: caught fatal signal term Feb 28 10:13:18 urquan mpd: [IN] Bundle: Shutdown Feb 28 10:13:18 urquan mpd: [in] Link: Shutdown Feb 28 10:13:18 urquan mpd: TCP: stop waiting for connection on 109.72.152.19 9 Feb 28 10:13:18 urquan mpd: process 1039 terminated Feb 28 10:13:18 urquan mpd: Multi-link PPP daemon for FreeBSD Feb 28 10:13:18 urquan mpd: Feb 28 10:13:18 urquan mpd: process 41383 started, version 5.6 (root@urquan.xim.bz 13:37 23-Dec-2011) Feb 28 10:13:18 urquan mpd: CONSOLE: listening on 127.0.0.1 5005 Feb 28 10:13:18 urquan mpd: web: listening on 127.0.0.1 5006 Feb 28 10:13:18 urquan mpd: TCP: can't bind() ksocket node: Invalid argument Feb 28 10:13:18 urquan mpd: TCP: stop waiting for connection on UNSPEC 0 Feb 28 10:13:18 urquan mpd: TCP: waiting for connection on 109.72.152.19 9 But mpd was not listening on port 9. sockstat shows it was only listening on ports 5005 and 5006. Recompiling port and restarting service or server (warm boot) hasn't changed anything. MPD just doesn't listen for incoming connections. Hours ago I thought I should gather some data by turning on detailed logging. Surprise, after starting with: log +BUND2 +LCP2 +AUTH2 +IPCP2 +IPV6CP2 +CCP2 +ECP2 +ECHO +PHYS2 +PHYS3 +CHAT2 +IFACE2 +FRAME +RADIUS2 +EVENTS mpd binds the port and continues to work. Feb 28 15:46:15 urquan mpd: process 85797 started, version 5.6 (root@urquan.xim.bz 15:37 28-Feb-2012) Feb 28 15:46:15 urquan mpd: CONSOLE: listening on 127.0.0.1 5005 Feb 28 15:46:15 urquan mpd: web: listening on 127.0.0.1 5006 Feb 28 15:46:15 urquan mpd: EVENT: Registering event EVENT_READ MsgEvent() at msg.c:72 Feb 28 15:46:15 urquan mpd: EVENT: Registering event EVENT_READ MsgEvent() done at msg.c:72 Feb 28 15:46:15 urquan mpd: TCP: can't bind() ksocket node: Invalid argument Feb 28 15:46:15 urquan mpd: TCP: stop waiting for connection on UNSPEC 0 Feb 28 15:46:15 urquan mpd: EVENT: Unregistering event (null) at tcp.c:831 Feb 28 15:46:15 urquan mpd: EVENT: Unregistering event (null) done at tcp.c:831 Feb 28 15:46:15 urquan mpd: TCP: waiting for connection on 109.72.152.19 9 Feb 28 15:46:15 urquan mpd: EVENT: Registering event EVENT_READ TcpAcceptEvent() at tcp.c:809 Feb 28 15:46:15 urquan mpd: EVENT: Registering event EVENT_READ TcpAcceptEvent() done at tcp.c:809 Feb 28 15:46:15 urquan mpd: EVENT: Processing event EVENT_TIMEOUT ConfigRead() done Feb 28 15:46:16 urquan mpd: EVENT: Processing event EVENT_READ TcpAcceptEvent() Feb 28 15:46:16 urquan mpd: Incoming TCP connection from UNSPEC 0 Feb 28 15:46:16 urquan mpd: [in-1] Accepting TCP connection from UNSPEC 0 Feb 28 15:46:16 urquan mpd: EVENT: Message 1 to LinkMsg() sent Feb 28 15:46:16 urquan mpd: EVENT: Registering event EVENT_READ TcpAcceptEvent() at tcp.c:511 Feb 28 15:46:16 urquan mpd: EVENT: Registering event EVENT_READ TcpAcceptEvent() done at tcp.c:511 Feb 28 15:46:16 urquan mpd: EVENT: Processing event EVENT_READ TcpAcceptEvent() done Feb 28 15:46:16 urquan mpd: EVENT: Processing event EVENT_READ MsgEvent() Feb 28 15:46:16 urquan mpd: EVENT: Message 1 to LinkMsg() received Feb 28 15:46:16 urquan mpd: [in-1] Link: OPEN event Feb 28 15:46:16 urquan mpd: [in-1] LCP: Open event Feb 28 15:46:16 urquan mpd: [in-1] LCP: state change Initial --> Starting Feb 28 15:46:16 urquan mpd: EVENT: Stopping timer "(null)" (null)() at fsm.c:190 Feb 28 15:46:16 urquan mpd: [in-1] LCP: LayerStart Feb 28 15:46:17 urquan mpd: EVENT: Message 1 to PhysMsg() sent Feb 28 15:46:17 urquan mpd: EVENT: Message 1 to LinkMsg() processed Feb 28 15:46:17 urquan mpd: EVENT: Message 1 to PhysMsg() received Feb 28 15:46:17 urquan mpd: [in-1] device: OPEN event Feb 28 15:46:17 urquan mpd: [in-1] TcpOpen() on incoming call Feb 28 15:46:17 urquan mpd: [in-1] device: UP event Feb 28 15:46:17 urquan mpd: [in-1] Link: UP event Feb 28 15:46:17 urquan mpd: [in-1] Link: origination is remote Feb 28 15:46:17 urquan mpd: [in-1] LCP: Up event Feb 28 15:46:17 urquan mpd: [in-1] LCP: state change Starting --> Req-Sent Feb 28 15:46:17 urquan mpd: [in-1] LCP: phase shift DEAD --> ESTABLISH Feb 28 15:46:17 urquan mpd: EVENT: Stopping timer "(null)" (null)() at fsm.c:531 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 04:11:13 2012 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 342531065674; Wed, 29 Feb 2012 04:11:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0815B8FC1D; Wed, 29 Feb 2012 04:11:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T4BCtT026087; Wed, 29 Feb 2012 04:11:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T4BC1c026078; Wed, 29 Feb 2012 04:11:12 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 04:11:12 GMT Message-Id: <201202290411.q1T4BC1c026078@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mav@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165544: net/mpd5 fails to listen on tcp port 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: Wed, 29 Feb 2012 04:11:13 -0000 Synopsis: net/mpd5 fails to listen on tcp port Responsible-Changed-From-To: freebsd-ports-bugs->mav Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 04:11:12 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165544 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 04:20:13 2012 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 B52F91065675 for ; Wed, 29 Feb 2012 04:20:13 +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 8BE178FC19 for ; Wed, 29 Feb 2012 04:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T4KDgV032330 for ; Wed, 29 Feb 2012 04:20:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T4KDOG032329; Wed, 29 Feb 2012 04:20:13 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 04:20:13 GMT Resent-Message-Id: <201202290420.q1T4KDOG032329@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, "Philip M. Gollucci" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 637FC10658A7 for ; Wed, 29 Feb 2012 04:12:50 +0000 (UTC) (envelope-from pgollucci@frieza.p6m7g8.net) Received: from frieza.p6m7g8.net (wsip-174-79-184-239.dc.dc.cox.net [174.79.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id 2A28A8FC2C for ; Wed, 29 Feb 2012 04:12:47 +0000 (UTC) Received: from frieza.p6m7g8.net (localhost [127.0.0.1]) by frieza.p6m7g8.net (8.14.5/8.14.4) with ESMTP id q1T2r7mH054309; Wed, 29 Feb 2012 02:53:07 GMT (envelope-from pgollucci@frieza.p6m7g8.net) Received: (from pgollucci@localhost) by frieza.p6m7g8.net (8.14.5/8.14.5/Submit) id q1T2r7FL054308; Wed, 29 Feb 2012 02:53:07 GMT (envelope-from pgollucci) Message-Id: <201202290253.q1T2r7FL054308@frieza.p6m7g8.net> Date: Wed, 29 Feb 2012 02:53:07 GMT From: "Philip M. Gollucci" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ssanders@taximagic.com Subject: ports/165545: net-mgmt/collectd5 doesn't compile against lang/python[23]* X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Philip M. Gollucci" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Feb 2012 04:20:13 -0000 >Number: 165545 >Category: ports >Synopsis: net-mgmt/collectd5 doesn't compile against lang/python[23]* >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 04:20:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Philip M. Gollucci >Release: FreeBSD 10.0-CURRENT amd64 >Organization: RideCharge Inc. >Environment: >Description: Warning: Linking the shared library python.la against the static library /usr/local/lib/libpython2.7.a is not portable! libtool: link: cc -shared .libs/python_la-python.o .libs/python_la-pyconfig.o .libs/python_la-pyvalues.o -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib -L/usr/local/lib /usr/lo cal/lib/libpython2.7.a /usr/local/lib/libstatgrab.so -ldevstat -Wl,-soname -Wl,python.so -o .libs/python.so /usr/bin/ld: /usr/local/lib/libpython2.7.a(abstract.o): relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC but yet in lang/python27 -- cc -c -fno-strict-aliasing -O2 -pipe -fno-strict-aliasing -DNDEBUG -O2 -pipe -fno-strict-aliasing -I. -IInclude -I./../Include -fPIC -DPy_BUILD_CORE -o Objects/abstract.o ./../Objects/abstr act.c >How-To-Repeat: build net-mgmt/collectd5 >Fix: At any rate, the fix is exactly as the compiler suggests use -fPIC which the patch does --- python.diff begins here --- Index: lang/python24/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/python24/Makefile,v retrieving revision 1.176 diff -u -r1.176 Makefile --- lang/python24/Makefile 5 Nov 2011 13:18:25 -0000 1.176 +++ lang/python24/Makefile 29 Feb 2012 02:48:50 -0000 @@ -7,7 +7,7 @@ PORTNAME= python24 PORTVERSION= 2.4.5 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= lang python ipv6 MASTER_SITES= ${PYTHON_MASTER_SITES} MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} @@ -20,6 +20,7 @@ WRKSRC= ${PYTHON_WRKSRC} GNU_CONFIGURE= yes CONFIGURE_ENV= OPT="${CFLAGS}" +CFLAGS+= -fPIC MAKE_ENV= VPATH="${WRKSRC}" USE_LDCONFIG= yes INSTALL_TARGET= altinstall Index: lang/python25/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/python25/Makefile,v retrieving revision 1.168 diff -u -r1.168 Makefile --- lang/python25/Makefile 18 Feb 2012 17:53:52 -0000 1.168 +++ lang/python25/Makefile 29 Feb 2012 02:49:25 -0000 @@ -7,7 +7,7 @@ PORTNAME= python25 PORTVERSION= 2.5.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang python ipv6 MASTER_SITES= ${PYTHON_MASTER_SITES} MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} @@ -22,6 +22,7 @@ GNU_CONFIGURE= yes CONFIGURE_SCRIPT= ../configure # must be relative CONFIGURE_ENV= OPT="${CFLAGS}" SVNVERSION="echo freebsd" +CFLAGS+= -fPIC MAKE_ENV= VPATH="${PYTHON_WRKSRC}" USE_LDCONFIG= yes INSTALL_TARGET= altinstall Index: lang/python26/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/python26/Makefile,v retrieving revision 1.180 diff -u -r1.180 Makefile --- lang/python26/Makefile 18 Feb 2012 17:53:52 -0000 1.180 +++ lang/python26/Makefile 29 Feb 2012 02:49:01 -0000 @@ -7,7 +7,7 @@ PORTNAME= python26 PORTVERSION= 2.6.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang python ipv6 MASTER_SITES= ${PYTHON_MASTER_SITES} MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} @@ -22,6 +22,7 @@ GNU_CONFIGURE= yes CONFIGURE_SCRIPT= ../configure # must be relative CONFIGURE_ENV= OPT="${CFLAGS}" SVNVERSION="echo freebsd" +CFLAGS+= -fPIC MAKE_ENV= VPATH="${PYTHON_WRKSRC}" USE_LDCONFIG= yes MAKE_JOBS_SAFE= yes Index: lang/python27/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/python27/Makefile,v retrieving revision 1.184 diff -u -r1.184 Makefile --- lang/python27/Makefile 18 Feb 2012 17:53:53 -0000 1.184 +++ lang/python27/Makefile 29 Feb 2012 02:49:05 -0000 @@ -7,7 +7,7 @@ PORTNAME= python27 PORTVERSION= 2.7.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= lang python ipv6 MASTER_SITES= ${PYTHON_MASTER_SITES} MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} @@ -22,6 +22,7 @@ GNU_CONFIGURE= yes CONFIGURE_SCRIPT= ../configure # must be relative CONFIGURE_ENV= OPT="${CFLAGS}" SVNVERSION="echo freebsd" +CFLAGS+= -fPIC MAKE_ENV= VPATH="${PYTHON_WRKSRC}" USE_LDCONFIG= yes MAKE_JOBS_SAFE= yes Index: lang/python31/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/python31/Makefile,v retrieving revision 1.178 diff -u -r1.178 Makefile --- lang/python31/Makefile 18 Feb 2012 17:53:53 -0000 1.178 +++ lang/python31/Makefile 29 Feb 2012 02:49:10 -0000 @@ -7,7 +7,7 @@ PORTNAME= python31 PORTVERSION= 3.1.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang python ipv6 MASTER_SITES= ${PYTHON_MASTER_SITES} MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} @@ -22,6 +22,7 @@ GNU_CONFIGURE= yes CONFIGURE_SCRIPT= ../configure # must be relative CONFIGURE_ENV= OPT="${CFLAGS}" SVNVERSION="echo freebsd" +CFLAGS+= -fPIC MAKE_ENV= VPATH="${PYTHON_WRKSRC}" MAKE_JOBS_SAFE= yes USE_LDCONFIG= yes Index: lang/python32/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/python32/Makefile,v retrieving revision 1.183 diff -u -r1.183 Makefile --- lang/python32/Makefile 18 Feb 2012 17:53:53 -0000 1.183 +++ lang/python32/Makefile 29 Feb 2012 02:49:31 -0000 @@ -7,7 +7,7 @@ PORTNAME= python32 PORTVERSION= 3.2.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= lang python ipv6 MASTER_SITES= ${PYTHON_MASTER_SITES} MASTER_SITE_SUBDIR= ${PYTHON_MASTER_SITE_SUBDIR} @@ -22,6 +22,7 @@ GNU_CONFIGURE= yes CONFIGURE_SCRIPT= ../configure # must be relative CONFIGURE_ENV= OPT="${CFLAGS}" SVNVERSION="echo freebsd" +CFLAGS+= -fPIC MAKE_ENV= VPATH="${PYTHON_WRKSRC}" MAKE_JOBS_SAFE= yes USE_LDCONFIG= yes --- python.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 04:20:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5FD8E1065672; Wed, 29 Feb 2012 04:20:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 33F098FC1B; Wed, 29 Feb 2012 04:20:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T4KQ0G032563; Wed, 29 Feb 2012 04:20:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T4KQUG032559; Wed, 29 Feb 2012 04:20:26 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 04:20:26 GMT Message-Id: <201202290420.q1T4KQUG032559@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pgollucci@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165545: net-mgmt/collectd5 doesn't compile against lang/python[23]* 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: Wed, 29 Feb 2012 04:20:26 -0000 Synopsis: net-mgmt/collectd5 doesn't compile against lang/python[23]* Responsible-Changed-From-To: freebsd-ports-bugs->pgollucci Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 04:20:25 UTC 2012 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165545 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 07:10:32 2012 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 0D3481065673; Wed, 29 Feb 2012 07:10:32 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D44F28FC08; Wed, 29 Feb 2012 07:10:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T7AV1E092403; Wed, 29 Feb 2012 07:10:31 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T7AV4M092399; Wed, 29 Feb 2012 07:10:31 GMT (envelope-from linimon) Date: Wed, 29 Feb 2012 07:10:31 GMT Message-Id: <201202290710.q1T7AV4M092399@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/154897: emulators/open-vm-tools: Bug in open-vm-tools-313025_2 vmware-user-suid-wrapper is not installed setuid 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: Wed, 29 Feb 2012 07:10:32 -0000 Synopsis: emulators/open-vm-tools: Bug in open-vm-tools-313025_2 vmware-user-suid-wrapper is not installed setuid Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 29 07:09:51 UTC 2012 Responsible-Changed-Why: Over to new maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=154897 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 07:11:40 2012 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 3574E1065678; Wed, 29 Feb 2012 07:11:40 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 096508FC1F; Wed, 29 Feb 2012 07:11:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T7BdBE098837; Wed, 29 Feb 2012 07:11:39 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T7Bdb1098830; Wed, 29 Feb 2012 07:11:39 GMT (envelope-from linimon) Date: Wed, 29 Feb 2012 07:11:39 GMT Message-Id: <201202290711.q1T7Bdb1098830@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, garga@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/165412: www/sarg: the download report only showed the host name instead of the full url as it used to do prior to version 2.3.2. 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: Wed, 29 Feb 2012 07:11:40 -0000 Synopsis: www/sarg: the download report only showed the host name instead of the full url as it used to do prior to version 2.3.2. Responsible-Changed-From-To: freebsd-ports-bugs->garga Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 29 07:11:29 UTC 2012 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=165412 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 07:17:49 2012 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 D0ECF106566B; Wed, 29 Feb 2012 07:17:49 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A3F308FC0A; Wed, 29 Feb 2012 07:17:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T7HnTw003527; Wed, 29 Feb 2012 07:17:49 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T7Hncx003523; Wed, 29 Feb 2012 07:17:49 GMT (envelope-from linimon) Date: Wed, 29 Feb 2012 07:17:49 GMT Message-Id: <201202290717.q1T7Hncx003523@freefall.freebsd.org> To: vvelox@vvelox.net, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: junk/165546: Re: [PATCH] net/p5-Net-LDAP-LDAPhash: add missing DEPENDS 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: Wed, 29 Feb 2012 07:17:49 -0000 Synopsis: Re: [PATCH] net/p5-Net-LDAP-LDAPhash: add missing DEPENDS State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Feb 29 07:16:29 UTC 2012 State-Changed-Why: Misfiled followup to ports/165513; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Wed Feb 29 07:16:29 UTC 2012 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=165546 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 09:30:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F3002106564A for ; Wed, 29 Feb 2012 09:30:08 +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 C0ABC8FC15 for ; Wed, 29 Feb 2012 09:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T9U80R049055 for ; Wed, 29 Feb 2012 09:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T9U81E049051; Wed, 29 Feb 2012 09:30:08 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 09:30:08 GMT Resent-Message-Id: <201202290930.q1T9U81E049051@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, Rob la Lau Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7B96106566C for ; Wed, 29 Feb 2012 09:22:24 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B9E9D8FC0A for ; Wed, 29 Feb 2012 09:22:24 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1T9MOnV098386 for ; Wed, 29 Feb 2012 09:22:24 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1T9MOgx098355; Wed, 29 Feb 2012 09:22:24 GMT (envelope-from nobody) Message-Id: <201202290922.q1T9MOgx098355@red.freebsd.org> Date: Wed, 29 Feb 2012 09:22:24 GMT From: Rob la Lau To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165548: www/openx: Suggested Apache config disables .htaccess. 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: Wed, 29 Feb 2012 09:30:09 -0000 >Number: 165548 >Category: ports >Synopsis: www/openx: Suggested Apache config disables .htaccess. >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 09:30:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Rob la Lau >Release: >Organization: OhReally.nl >Environment: >Description: The PKGMESSAGE for www/openx suggests setting 'AllowOverride None', but this disables the .htaccess files that deny access to several directories. >How-To-Repeat: - >Fix: Change 'AllowOverride None' to, at least, 'AllowOverride Limit'. The port maintainer has been notified, but is not responsive. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 09:30:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC4411065673; Wed, 29 Feb 2012 09:30:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 803408FC18; Wed, 29 Feb 2012 09:30:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T9UJg0049696; Wed, 29 Feb 2012 09:30:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T9UJpm049688; Wed, 29 Feb 2012 09:30:19 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 09:30:19 GMT Message-Id: <201202290930.q1T9UJpm049688@freefall.freebsd.org> To: freebsd@ohreally.nl, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165548: www/openx: Suggested Apache config disables .htaccess. 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: Wed, 29 Feb 2012 09:30:19 -0000 Synopsis: www/openx: Suggested Apache config disables .htaccess. State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Feb 29 09:30:18 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165548 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 09:40:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 586A11065686 for ; Wed, 29 Feb 2012 09:40:15 +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 8AFF18FC17 for ; Wed, 29 Feb 2012 09:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1T9eEWq060308 for ; Wed, 29 Feb 2012 09:40:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1T9eEc8060307; Wed, 29 Feb 2012 09:40:14 GMT (envelope-from gnats) Date: Wed, 29 Feb 2012 09:40:14 GMT Message-Id: <201202290940.q1T9eEc8060307@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/165548: www/openx: Suggested Apache config disables .htaccess. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Feb 2012 09:40:15 -0000 The following reply was made to PR ports/165548; it has been noted by GNATS. From: Edwin Groothuis To: meritus@innervision.pl Cc: bug-followup@FreeBSD.org Subject: Re: ports/165548: www/openx: Suggested Apache config disables .htaccess. Date: Wed, 29 Feb 2012 09:30:15 UT Maintainer of www/openx, Please note that PR ports/165548 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165548 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 10:00:37 2012 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 7238710656B8 for ; Wed, 29 Feb 2012 10:00:37 +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 C23718FC3F for ; Wed, 29 Feb 2012 10:00:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TA0YbX077469 for ; Wed, 29 Feb 2012 10:00:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TA0Y1Q077467; Wed, 29 Feb 2012 10:00:34 GMT (envelope-from gnats) Date: Wed, 29 Feb 2012 10:00:34 GMT Message-Id: <201202291000.q1TA0Y1Q077467@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Piotr Rybicki Cc: Subject: Re: ports/165548: www/openx: Suggested Apache config disables .htaccess. X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Piotr Rybicki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Feb 2012 10:00:37 -0000 The following reply was made to PR ports/165548; it has been noted by GNATS. From: Piotr Rybicki To: bug-followup@FreeBSD.org, freebsd@ohreally.nl Cc: Subject: Re: ports/165548: www/openx: Suggested Apache config disables .htaccess. Date: Wed, 29 Feb 2012 10:37:26 +0100 This is correct. Please submit. Thank You -- Piotr Rybicki, Prezes ZarzÄ…du InnerVision Sp. z o.o. http://www.innervision.pl From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 10:50:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE72F1065678 for ; Wed, 29 Feb 2012 10:50:11 +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 B0D8E8FC1D for ; Wed, 29 Feb 2012 10:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TAo9Wk025540 for ; Wed, 29 Feb 2012 10:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TAo9oI025531; Wed, 29 Feb 2012 10:50:09 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 10:50:09 GMT Resent-Message-Id: <201202291050.q1TAo9oI025531@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, Neil Darlow Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2E89C1065676 for ; Wed, 29 Feb 2012 10:45:39 +0000 (UTC) (envelope-from neil@darlow.co.uk) Received: from relay.darlow.co.uk (relay.darlow.co.uk [195.3.137.233]) by mx1.freebsd.org (Postfix) with ESMTP id 9AC798FC24 for ; Wed, 29 Feb 2012 10:45:38 +0000 (UTC) Received: from bumblebee.darlow.co.uk (cpc8-bigg3-2-0-cust42.9-2.cable.virginmedia.com [62.252.155.43]) by relay.darlow.co.uk (8.14.4/8.14.4) with ESMTP id q1TAD03l032766 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=OK) for ; Wed, 29 Feb 2012 10:13:00 GMT (envelope-from neil@darlow.co.uk) Received: by bumblebee.darlow.co.uk (Postfix, from userid 1004) id 3TyXf42YMrz13sB; Wed, 29 Feb 2012 10:13:00 +0000 (GMT) Message-Id: <3TyXf42YMrz13sB@bumblebee.darlow.co.uk> Date: Wed, 29 Feb 2012 10:13:00 +0000 (GMT) From: Neil Darlow To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165549: www/hastymail2: Dependency changes request X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Neil Darlow List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Feb 2012 10:50:12 -0000 >Number: 165549 >Category: ports >Synopsis: www/hastymail2: Dependency changes request >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 10:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Neil Darlow >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD bumblebee.darlow.co.uk 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Thu Jan 5 04:54:45 GMT 2012 root@bumblebee.darlow.co.uk:/usr/obj/usr/src/sys/GENERIC amd64 >Description: I would like to propose 3 dependency changes. 1) The hard-coded dependency on php(4|5)-imap not required. Hastymail2 implements IMAP communications internally. From the features section of http://hastymail.org - * Custom built RFC compliant IMAP class that handles all IMAP communications 2) Hastymail2 can benefit from php(4|5)-mbstring. I would suggest this should be added as a user settable OPTION that defaults to off because additional configuration of PHP will likely be required. From the distribution INSTALL file - Character set handling is greatly improved if the PHP build has the mbstring extension. 3) Hastymail2 can benefit from php(4|5)-iconv. I would suggest this should be added as as user settable OPTION that defaults to off because it will pull in other dependencies e.g. libiconv and anything that requires. From the distribution INSTALL file - Hastymail will also use the iconv extension to aid in character set translation if it is available. >How-To-Repeat: 1) I have a source-install of Hastymail2 running in a chroot without the php5-imap extension available. It works fine without it. 2) and 3) are new features. >Fix: Changes to the port Makefile are required. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 10:51:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 02932106566B; Wed, 29 Feb 2012 10:51:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CB6598FC1B; Wed, 29 Feb 2012 10:51:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TApAs7031090; Wed, 29 Feb 2012 10:51:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TApAR4031084; Wed, 29 Feb 2012 10:51:10 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 10:51:10 GMT Message-Id: <201202291051.q1TApAR4031084@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tabthorpe@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165549: www/hastymail2: Dependency changes request 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: Wed, 29 Feb 2012 10:51:11 -0000 Synopsis: www/hastymail2: Dependency changes request Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 10:51:10 UTC 2012 Responsible-Changed-Why: tabthorpe@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165549 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 11:10:12 2012 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 A126A1065670 for ; Wed, 29 Feb 2012 11:10:12 +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 603D98FC1B for ; Wed, 29 Feb 2012 11:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TBACDf043268 for ; Wed, 29 Feb 2012 11:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TBAC3N043267; Wed, 29 Feb 2012 11:10:12 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 11:10:12 GMT Resent-Message-Id: <201202291110.q1TBAC3N043267@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, Titus von Boxberg Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 874691065679 for ; Wed, 29 Feb 2012 11:05:03 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 6CA618FC16 for ; Wed, 29 Feb 2012 11:05:03 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1TB52GT092852 for ; Wed, 29 Feb 2012 11:05:02 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1TB52MQ092851; Wed, 29 Feb 2012 11:05:02 GMT (envelope-from nobody) Message-Id: <201202291105.q1TB52MQ092851@red.freebsd.org> Date: Wed, 29 Feb 2012 11:05:02 GMT From: Titus von Boxberg To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165550: graphviz does not build; No rule to make target `-lltdl' 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: Wed, 29 Feb 2012 11:10:12 -0000 >Number: 165550 >Category: ports >Synopsis: graphviz does not build; No rule to make target `-lltdl' >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 11:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Titus von Boxberg >Release: 9 >Organization: >Environment: 9.0-RELEASE >Description: On my machine, port graphviz-2.28.0 does not build: No rule to make target `-lltdl', needed by `libgvc.la'. Stop. This problem seems to be described in http://www.graphviz.org/mantisbt/view.php?id=2109 >How-To-Repeat: make but see below. Please drop me a note if you need more information specific from my system. I assume that "normally" (whatever that means) graphviz builds without problems. >Fix: Fortunately, autotools and me never had any close relationship ;-) So I do not claim to understand the problem or the fix. However, the fix described in the graphviz mantis page does the trick if autoreconf is invoked before configure. I added pre-configure: cd ${WRKSRC} && ${AUTORECONF} to the port's Makefile and added the patch file attached to this ticket. Patch attached with submission follows: --- lib/gvc/Makefile.am.orig 2011-06-26 03:07:07.000000000 -0700 +++ lib/gvc/Makefile.am 2011-06-26 03:07:27.000000000 -0700 @@ -55,7 +55,6 @@ libgvc_C_la_DEPENDENCIES += $(top_build endif if ENABLE_LTDL -libgvc_C_la_LIBADD += $(LIBLTDL) $(LIBLTDL_LDFLAGS) +libgvc_C_la_LIBADD += @LIBLTDL@ $(LIBLTDL_LDFLAGS) -libgvc_C_la_DEPENDENCIES += $(LIBLTDL) endif libgvc_la_LDFLAGS = -version-info $(GVC_VERSION) -no-undefined >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 11:50:01 2012 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 7A2161065673; Wed, 29 Feb 2012 11:50:01 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 471358FC18; Wed, 29 Feb 2012 11:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TBo1X5083922; Wed, 29 Feb 2012 11:50:01 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TBo0DJ083918; Wed, 29 Feb 2012 11:50:00 GMT (envelope-from scheidell) Date: Wed, 29 Feb 2012 11:50:00 GMT Message-Id: <201202291150.q1TBo0DJ083918@freefall.freebsd.org> To: yds@CoolRat.org, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165176: [PATCH] mail/dovecot: update to 2.0.18, mail/dovecot2-pigeonhole: update to 0.2.6 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: Wed, 29 Feb 2012 11:50:01 -0000 Synopsis: [PATCH] mail/dovecot: update to 2.0.18, mail/dovecot2-pigeonhole: update to 0.2.6 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Wed Feb 29 11:50:00 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165176 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 12:30:12 2012 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 602B7106566B for ; Wed, 29 Feb 2012 12:30:12 +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 2D8568FC1B for ; Wed, 29 Feb 2012 12:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TCUCJB019694 for ; Wed, 29 Feb 2012 12:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TCUCPr019692; Wed, 29 Feb 2012 12:30:12 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 12:30:12 GMT Resent-Message-Id: <201202291230.q1TCUCPr019692@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, Valery Komarov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB2B5106566C for ; Wed, 29 Feb 2012 12:21:05 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B4D7D8FC0A for ; Wed, 29 Feb 2012 12:21:05 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1TCL5XT018608 for ; Wed, 29 Feb 2012 12:21:05 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1TCL5GT018607; Wed, 29 Feb 2012 12:21:05 GMT (envelope-from nobody) Message-Id: <201202291221.q1TCL5GT018607@red.freebsd.org> Date: Wed, 29 Feb 2012 12:21:05 GMT From: Valery Komarov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165552: [MAINTAINER UPDATE] net/yate update to 4.0.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: Wed, 29 Feb 2012 12:30:12 -0000 >Number: 165552 >Category: ports >Synopsis: [MAINTAINER UPDATE] net/yate update to 4.0.0 >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 29 12:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Valery Komarov >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: >Description: Added features: SS7 components for mobile operators - SCCP, TCAP, MAP and CAMEL Javascript new implementation for fast prototyping of telephony applications. LNP over ANSI SS7 T.38 fax support over MGCP digital gateways TCP and TLS transports for SIP, multiple listening interfaces Alerts, monitoring and logging. Minor improvements Better debugging informations Atomic operations used if architecture and compiler support them >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ./yate.orig/Makefile ./yate/Makefile --- ./yate.orig/Makefile 2012-01-25 05:34:53.000000000 +0400 +++ ./yate/Makefile 2012-02-29 16:13:50.000000000 +0400 @@ -5,11 +5,11 @@ # $FreeBSD: ports/net/yate/Makefile,v 1.3 2012/01/24 12:03:17 scheidell Exp $ PORTNAME= yate -PORTVERSION= 3.3.2.p1 -PORTREVISION= 1 +PORTVERSION= 4.0.0.p1 +PORTREVISION= 0 CATEGORIES= net -MASTER_SITES= http://yate.null.ro/tarballs/yate3/ -DISTNAME= yate-3.3.2-1 +MASTER_SITES= http://yate.null.ro/tarballs/yate4/ +DISTNAME= yate-4.0.0-1 MAINTAINER= komarov@valerka.net COMMENT= Yet Another Telephony Engine diff -ruN ./yate.orig/distinfo ./yate/distinfo --- ./yate.orig/distinfo 2011-05-22 16:38:02.000000000 +0400 +++ ./yate/distinfo 2012-02-27 15:04:31.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (yate-3.3.2-1.tar.gz) = 58c58aba636fbbe49edbfb98c01812e4946218094a59ba998de667b36314b966 -SIZE (yate-3.3.2-1.tar.gz) = 3342883 +SHA256 (yate-4.0.0-1.tar.gz) = ec0bc785c154a11e548cd0597179b71f0f0b8e44cbfc5c767e6b0f09b733c97a +SIZE (yate-4.0.0-1.tar.gz) = 3908788 diff -ruN ./yate.orig/files/patch-Makefile.in ./yate/files/patch-Makefile.in --- ./yate.orig/files/patch-Makefile.in 2011-05-22 16:38:03.000000000 +0400 +++ ./yate/files/patch-Makefile.in 2012-02-29 15:09:19.000000000 +0400 @@ -1,15 +1,15 @@ ---- ./Makefile.in.orig 2011-03-18 22:46:29.000000000 +0300 -+++ ./Makefile.in 2011-04-13 15:25:28.000000000 +0400 +--- ./Makefile.in.orig 2012-02-10 19:22:46.000000000 +0400 ++++ ./Makefile.in 2012-02-29 15:09:14.000000000 +0400 @@ -20,7 +20,7 @@ MKDEPS := ./config.status PROGS:= yate YLIB := libyate.so.@PACKAGE_VERSION@ -SLIBS:= $(YLIB) libyate.so \ -+SLIBS:= $(YLIB) libyate.so libyate.so.3 \ ++SLIBS:= $(YLIB) libyate.so libyate.so.4 \ + libyatescript.so.@PACKAGE_VERSION@ libyatescript.so \ libyatesig.so.@PACKAGE_VERSION@ libyatesig.so \ libyatemgcp.so.@PACKAGE_VERSION@ libyatemgcp.so \ - libyatejabber.so.@PACKAGE_VERSION@ libyatejabber.so -@@ -47,7 +47,7 @@ +@@ -48,7 +48,7 @@ libdir = @libdir@ incdir = @includedir@/yate mandir = @mandir@ @@ -18,7 +18,7 @@ vardir = @localstatedir@/lib/yate moddir = @libdir@/yate shrdir = $(datadir)/yate -@@ -221,7 +221,7 @@ +@@ -222,7 +222,7 @@ install -m 0644 @srcdir@/docs/man/$$i "$(DESTDIR)$(mandir)/man8/" ; \ done @mkdir -p "$(DESTDIR)$(libdir)/pkgconfig/" && \ @@ -27,7 +27,7 @@ @mkdir -p "$(DESTDIR)$(incdir)/" && \ for i in $(INCS) ; do \ install -m 0644 @srcdir@/$$i "$(DESTDIR)$(incdir)/" ; \ -@@ -249,7 +249,7 @@ +@@ -250,7 +250,7 @@ @-for i in $(PROGS) yate-config ; do \ rm "$(DESTDIR)$(bindir)/$$i" ; \ done @@ -36,11 +36,11 @@ rmdir $(DESTDIR)$(libdir)/pkgconfig @-for i in $(INCS) $(GENS) ; do \ rm "$(DESTDIR)$(incdir)/$$i" ; \ -@@ -324,6 +324,7 @@ +@@ -325,6 +325,7 @@ libyate.so: $(YLIB) ln -sf $^ $@ -+ ln -sf $^ $@\.3 ++ ln -sf $^ $@\.4 .PHONY: library library $(YLIB): yatepaths.h diff -ruN ./yate.orig/files/patch-conf.d__Makefile.in ./yate/files/patch-conf.d__Makefile.in --- ./yate.orig/files/patch-conf.d__Makefile.in 2011-05-22 16:38:03.000000000 +0400 +++ ./yate/files/patch-conf.d__Makefile.in 2012-02-29 15:09:19.000000000 +0400 @@ -1,5 +1,5 @@ --- ./conf.d/Makefile.in.orig 2009-09-19 17:55:58.000000000 +0400 -+++ ./conf.d/Makefile.in 2011-04-13 15:25:28.000000000 +0400 ++++ ./conf.d/Makefile.in 2012-02-29 14:59:11.000000000 +0400 @@ -20,14 +20,14 @@ lst="`ls -1 @srcdir@/*.conf @srcdir@/*.sample @srcdir@/*.default 2>/dev/null | sed 's/\.sample//g; s/\.default//g; s/[^ ]*\*\.[^ ]*//g' | sort | uniq`" ; \ for s in $$lst; do \ diff -ruN ./yate.orig/files/patch-configure.in ./yate/files/patch-configure.in --- ./yate.orig/files/patch-configure.in 2012-01-25 05:34:53.000000000 +0400 +++ ./yate/files/patch-configure.in 2012-02-29 15:09:19.000000000 +0400 @@ -1,6 +1,6 @@ ---- ./configure.in.orig 2011-04-12 18:04:04.000000000 +0400 -+++ ./configure.in 2012-01-17 00:54:49.000000000 +0400 -@@ -476,7 +476,7 @@ +--- ./configure.in.orig 2012-02-17 20:32:21.000000000 +0400 ++++ ./configure.in 2012-02-29 14:59:11.000000000 +0400 +@@ -561,7 +561,7 @@ AC_SUBST(MYSQL_VER) HAVE_ZAP=no @@ -9,25 +9,25 @@ AC_ARG_ENABLE(dahdi,AC_HELP_STRING([--enable-dahdi],[Enable Dahdi driver (default: yes)]),want_dahdi=$enableval,want_dahdi=yes) if [[ "x$want_dahdi" = "xyes" ]]; then AC_MSG_CHECKING([for Dahdi generic headers]) -@@ -494,7 +494,7 @@ - #include - ],[], +@@ -580,7 +580,7 @@ + #include + ],[ioctl(0,ZT_GETVERSION,(void*)0)], HAVE_ZAP="yes" -ZAP_FLAGS="-DNEW_ZAPTEL_LOCATION -DHAVE_ZAP" +ZAP_FLAGS="-DNEW_ZAPTEL_LOCATION -DHAVE_ZAP -I/usr/local/include" ) AC_MSG_RESULT([$HAVE_ZAP]) if [[ "x$HAVE_ZAP" = "xno" ]]; then -@@ -503,7 +503,7 @@ - #include - ],[], +@@ -590,7 +590,7 @@ + #include + ],[ioctl(0,ZT_GETVERSION,(void*)0)], HAVE_ZAP="yes" -ZAP_FLAGS="-DHAVE_ZAP" +ZAP_FLAGS="-DHAVE_ZAP -I/usr/local/include" ) AC_MSG_RESULT([$HAVE_ZAP]) fi -@@ -731,7 +731,7 @@ +@@ -818,7 +818,7 @@ ) CFLAGS="$SAVE_CFLAGS" if [[ "x$HAVE_SPEEX" = "xyes" ]]; then @@ -36,7 +36,7 @@ fi fi AC_MSG_RESULT([$HAVE_SPEEX]) -@@ -911,7 +911,7 @@ +@@ -999,7 +999,7 @@ PWLIB_INC="-I$ac_cv_use_pwlib/include" # Base dir, ok for ptlib if [[ "$vpw" '<' "02.00.00" ]]; then # Pwlib-1.xm no ptlib (2.x) install into ptlib @@ -45,7 +45,7 @@ if [[ "$vpw" '<' "01.06.00" ]]; then # Very old pwlib needs more includes. PWLIB_INC="$PWLIB_INC/unix/ptlib $PWLIB_INC/unix $PWLIB_INC" -@@ -1036,7 +1036,7 @@ +@@ -1132,7 +1132,7 @@ AC_MSG_CHECKING([for OpenSSL in $ac_cv_use_openssl]) verssl=no if [[ -f "$ac_cv_use_openssl/include/openssl/opensslconf.h" ]]; then diff -ruN ./yate.orig/files/patch-modules__Makefile.in ./yate/files/patch-modules__Makefile.in --- ./yate.orig/files/patch-modules__Makefile.in 2012-01-25 05:34:53.000000000 +0400 +++ ./yate/files/patch-modules__Makefile.in 2012-02-29 15:09:19.000000000 +0400 @@ -1,5 +1,5 @@ ---- ./modules/Makefile.in.orig 2011-03-03 17:48:39.000000000 +0300 -+++ ./modules/Makefile.in 2012-01-17 00:53:04.000000000 +0400 +--- ./modules/Makefile.in.orig 2012-02-17 20:19:40.000000000 +0400 ++++ ./modules/Makefile.in 2012-02-29 14:59:11.000000000 +0400 @@ -32,7 +32,7 @@ ZLIB_LIB := @ZLIB_LIB@ SED := sed @@ -9,8 +9,8 @@ CFLAGS := @CFLAGS@ @MODULE_CFLAGS@ @INLINE_FLAGS@ CPPFLAGS := @CFLAGS@ @MODULE_CPPFLAGS@ @INLINE_FLAGS@ LDFLAGS:= @LDFLAGS@ -@@ -316,7 +316,7 @@ - server/mgcpgw.yate: LOCALLIBS = -lyatemgcp +@@ -330,7 +330,7 @@ + server/mgcpgw.yate: LOCALLIBS = -lyatemgcp -L../libs/ysdp -lyatesdp server/lksctp.yate: LOCALFLAGS = @SCTP_FLAGS@ -server/lksctp.yate: LOCALLIBS = -lsctp diff -ruN ./yate.orig/files/patch-modules__h323chan.cpp ./yate/files/patch-modules__h323chan.cpp --- ./yate.orig/files/patch-modules__h323chan.cpp 2011-05-22 16:38:03.000000000 +0400 +++ ./yate/files/patch-modules__h323chan.cpp 2012-02-29 15:09:19.000000000 +0400 @@ -1,6 +1,6 @@ ---- ./modules/h323chan.cpp.orig 2011-03-31 14:30:48.000000000 +0400 -+++ ./modules/h323chan.cpp 2011-04-13 15:25:28.000000000 +0400 -@@ -646,7 +646,7 @@ +--- ./modules/h323chan.cpp.orig 2011-11-03 21:57:19.000000000 +0400 ++++ ./modules/h323chan.cpp 2012-02-29 14:59:11.000000000 +0400 +@@ -725,7 +725,7 @@ static void ListRegisteredCaps(int level) { PFactory::KeyList_T list = PFactory::GetKeyList(); diff -ruN ./yate.orig/pkg-plist ./yate/pkg-plist --- ./yate.orig/pkg-plist 2012-01-25 05:34:53.000000000 +0400 +++ ./yate/pkg-plist 2012-02-29 15:38:51.000000000 +0400 @@ -6,12 +6,18 @@ @unexec if cmp -s %D/%%ETCDIR%%/analog.conf.sample %D/%%ETCDIR%%/analog.conf; then rm -f %D/%%ETCDIR%%/analog.conf; fi %%ETCDIR%%/analog.conf.sample @exec if [ ! -f %D/%%ETCDIR%%/analog.conf ] ; then cp -p %D/%F %B/analog.conf; fi +@unexec if cmp -s %D/%%ETCDIR%%/cache.conf.sample %D/%%ETCDIR%%/cache.conf; then rm -f %D/%%ETCDIR%%/cache.conf; fi +%%ETCDIR%%/cache.conf.sample +@exec if [ ! -f %D/%%ETCDIR%%/cache.conf ] ; then cp -p %D/%F %B/cache.conf; fi @unexec if cmp -s %D/%%ETCDIR%%/callcounters.conf.sample %D/%%ETCDIR%%/callcounters.conf; then rm -f %D/%%ETCDIR%%/callcounters.conf; fi %%ETCDIR%%/callcounters.conf.sample @exec if [ ! -f %D/%%ETCDIR%%/callcounters.conf ] ; then cp -p %D/%F %B/callcounters.conf; fi @unexec if cmp -s %D/%%ETCDIR%%/callfork.conf.sample %D/%%ETCDIR%%/callfork.conf; then rm -f %D/%%ETCDIR%%/callfork.conf; fi %%ETCDIR%%/callfork.conf.sample @exec if [ ! -f %D/%%ETCDIR%%/callfork.conf ] ; then cp -p %D/%F %B/callfork.conf; fi +@unexec if cmp -s %D/%%ETCDIR%%/camel_map.conf.sample %D/%%ETCDIR%%/camel_map.conf; then rm -f %D/%%ETCDIR%%/camel_map.conf; fi +%%ETCDIR%%/camel_map.conf.sample +@exec if [ ! -f %D/%%ETCDIR%%/camel_map.conf ] ; then cp -p %D/%F %B/camel_map.conf; fi @unexec if cmp -s %D/%%ETCDIR%%/ccongestion.conf.sample %D/%%ETCDIR%%/ccongestion.conf; then rm -f %D/%%ETCDIR%%/ccongestion.conf; fi %%ETCDIR%%/ccongestion.conf.sample @exec if [ ! -f %D/%%ETCDIR%%/ccongestion.conf ] ; then cp -p %D/%F %B/ccongestion.conf; fi @@ -60,6 +66,9 @@ @unexec if cmp -s %D/%%ETCDIR%%/jabberserver.conf.sample %D/%%ETCDIR%%/jabberserver.conf; then rm -f %D/%%ETCDIR%%/jabberserver.conf; fi %%ETCDIR%%/jabberserver.conf.sample @exec if [ ! -f %D/%%ETCDIR%%/jabberserver.conf ] ; then cp -p %D/%F %B/jabberserver.conf; fi +@unexec if cmp -s %D/%%ETCDIR%%/javascript.conf.sample %D/%%ETCDIR%%/javascript.conf; then rm -f %D/%%ETCDIR%%/javascript.conf; fi +%%ETCDIR%%/javascript.conf.sample +@exec if [ ! -f %D/%%ETCDIR%%/javascript.conf ] ; then cp -p %D/%F %B/javascript.conf; fi @unexec if cmp -s %D/%%ETCDIR%%/jbfeatures.conf.sample %D/%%ETCDIR%%/jbfeatures.conf; then rm -f %D/%%ETCDIR%%/jbfeatures.conf; fi %%ETCDIR%%/jbfeatures.conf.sample @exec if [ ! -f %D/%%ETCDIR%%/jbfeatures.conf ] ; then cp -p %D/%F %B/jbfeatures.conf; fi @@ -126,6 +135,12 @@ @unexec if cmp -s %D/%%ETCDIR%%/sipfeatures.conf.sample %D/%%ETCDIR%%/sipfeatures.conf; then rm -f %D/%%ETCDIR%%/sipfeatures.conf; fi %%ETCDIR%%/sipfeatures.conf.sample @exec if [ ! -f %D/%%ETCDIR%%/sipfeatures.conf ] ; then cp -p %D/%F %B/sipfeatures.conf; fi +@unexec if cmp -s %D/%%ETCDIR%%/snmp_data.conf.sample %D/%%ETCDIR%%/snmp_data.conf; then rm -f %D/%%ETCDIR%%/snmp_data.conf; fi +%%ETCDIR%%/snmp_data.conf.sample +@exec if [ ! -f %D/%%ETCDIR%%/snmp_data.conf ] ; then cp -p %D/%F %B/snmp_data.conf; fi +@unexec if cmp -s %D/%%ETCDIR%%/ss7_lnp_ansi.conf.sample %D/%%ETCDIR%%/ss7_lnp_ansi.conf; then rm -f %D/%%ETCDIR%%/ss7_lnp_ansi.conf; fi +%%ETCDIR%%/ss7_lnp_ansi.conf.sample +@exec if [ ! -f %D/%%ETCDIR%%/ss7_lnp_ansi.conf ] ; then cp -p %D/%F %B/ss7_lnp_ansi.conf; fi @unexec if cmp -s %D/%%ETCDIR%%/subscription.conf.sample %D/%%ETCDIR%%/subscription.conf; then rm -f %D/%%ETCDIR%%/subscription.conf; fi %%ETCDIR%%/subscription.conf.sample @exec if [ ! -f %D/%%ETCDIR%%/subscription.conf ] ; then cp -p %D/%F %B/subscription.conf; fi @@ -187,14 +202,16 @@ include/yate/yatephone.h include/yate/yateversn.h lib/libyate.so -lib/libyate.so.3 -lib/libyate.so.3.3.2 +lib/libyate.so.4 +lib/libyate.so.4.0.0 lib/libyatejabber.so -lib/libyatejabber.so.3.3.2 +lib/libyatejabber.so.4.0.0 lib/libyatemgcp.so -lib/libyatemgcp.so.3.3.2 +lib/libyatemgcp.so.4.0.0 +lib/libyatescript.so +lib/libyatescript.so.4.0.0 lib/libyatesig.so -lib/libyatesig.so.3.3.2 +lib/libyatesig.so.4.0.0 lib/yate/analyzer.yate lib/yate/callfork.yate lib/yate/callgen.yate @@ -214,6 +231,7 @@ %%WITH_ILBC%%lib/yate/ilbccodec.yate lib/yate/jabber/jabberserver.yate lib/yate/jabber/jbfeatures.yate +lib/yate/javascript.yate lib/yate/moh.yate lib/yate/msgsniff.yate lib/yate/mux.yate @@ -224,6 +242,7 @@ lib/yate/server/accfile.yate lib/yate/server/analog.yate lib/yate/server/analogdetect.yate +lib/yate/server/cache.yate lib/yate/server/callcounters.yate lib/yate/server/ccongestion.yate lib/yate/server/ciscosm.yate @@ -232,7 +251,6 @@ lib/yate/server/dbpbx.yate lib/yate/server/dbwave.yate lib/yate/server/heartbeat.yate -lib/yate/server/isupmangler.yate lib/yate/server/lateroute.yate %%WITH_SCTP%%lib/yate/server/lksctp.yate lib/yate/server/mgcpca.yate @@ -297,47 +315,110 @@ %%DATADIR%%/scripts/route.php %%DATADIR%%/scripts/voicemail.php %%DATADIR%%/skins/default/account.ui +%%DATADIR%%/skins/default/account_title.png %%DATADIR%%/skins/default/accountlist.ui +%%DATADIR%%/skins/default/accountlist_title.png %%DATADIR%%/skins/default/accountwizard.ui +%%DATADIR%%/skins/default/accountwizard_title.png +%%DATADIR%%/skins/default/activ.png +%%DATADIR%%/skins/default/add.png +%%DATADIR%%/skins/default/add_hover.png +%%DATADIR%%/skins/default/add_menu.png +%%DATADIR%%/skins/default/add_pressed.png %%DATADIR%%/skins/default/addaccount.png +%%DATADIR%%/skins/default/addaccount_menu.png %%DATADIR%%/skins/default/addaccountwiz.png +%%DATADIR%%/skins/default/addaccountwiz_menu.png %%DATADIR%%/skins/default/addchatroom.png +%%DATADIR%%/skins/default/addchatroom_menu.png %%DATADIR%%/skins/default/addcontact.png %%DATADIR%%/skins/default/addrbook.ui +%%DATADIR%%/skins/default/addrbook_title.png %%DATADIR%%/skins/default/answer.png %%DATADIR%%/skins/default/answer_20.png +%%DATADIR%%/skins/default/answer_20_hover.png +%%DATADIR%%/skins/default/answer_20_pressed.png %%DATADIR%%/skins/default/arch_contact_item.ui %%DATADIR%%/skins/default/arch_room_item.ui %%DATADIR%%/skins/default/arch_roompriv_item.ui %%DATADIR%%/skins/default/arch_session_item.ui %%DATADIR%%/skins/default/archive.png %%DATADIR%%/skins/default/archive.ui +%%DATADIR%%/skins/default/archive_hover.png +%%DATADIR%%/skins/default/archive_menu.png +%%DATADIR%%/skins/default/archive_pressed.png +%%DATADIR%%/skins/default/archive_title.png %%DATADIR%%/skins/default/ask.png %%DATADIR%%/skins/default/ask_32.png %%DATADIR%%/skins/default/bell.png %%DATADIR%%/skins/default/book.png %%DATADIR%%/skins/default/book_32.png +%%DATADIR%%/skins/default/call.png +%%DATADIR%%/skins/default/call_hover.png +%%DATADIR%%/skins/default/call_pressed.png +%%DATADIR%%/skins/default/calls_tab.png +%%DATADIR%%/skins/default/calls_tab_hover.png +%%DATADIR%%/skins/default/calls_tab_pressed.png +%%DATADIR%%/skins/default/cancel.png +%%DATADIR%%/skins/default/cancel_hover.png +%%DATADIR%%/skins/default/cancel_pressed.png +%%DATADIR%%/skins/default/cancel_transfer_20.png +%%DATADIR%%/skins/default/cancel_transfer_20_hover.png +%%DATADIR%%/skins/default/cancel_transfer_20_pressed.png +%%DATADIR%%/skins/default/cb_arrow.png %%DATADIR%%/skins/default/cdr.png %%DATADIR%%/skins/default/cdr_32.png +%%DATADIR%%/skins/default/cdr_tab.png +%%DATADIR%%/skins/default/cdr_tab_hover.png +%%DATADIR%%/skins/default/cdr_tab_pressed.png %%DATADIR%%/skins/default/chan_idle.png %%DATADIR%%/skins/default/chan_progress.png %%DATADIR%%/skins/default/chan_ringing.png %%DATADIR%%/skins/default/chan_routed.png +%%DATADIR%%/skins/default/channel_conf_add.ui +%%DATADIR%%/skins/default/channel_conf_item.ui +%%DATADIR%%/skins/default/channel_item.ui +%%DATADIR%%/skins/default/channel_transfer_item.ui +%%DATADIR%%/skins/default/channel_transfer_start.ui %%DATADIR%%/skins/default/chat.png %%DATADIR%%/skins/default/chat.ui +%%DATADIR%%/skins/default/chat_menu.png +%%DATADIR%%/skins/default/chat_tab.png +%%DATADIR%%/skins/default/chat_tab_hover.png +%%DATADIR%%/skins/default/chat_tab_pressed.png +%%DATADIR%%/skins/default/chat_title.png %%DATADIR%%/skins/default/chatroomedit.ui +%%DATADIR%%/skins/default/chatroomedit_title.png +%%DATADIR%%/skins/default/checkbox_off.png +%%DATADIR%%/skins/default/checkbox_on.png +%%DATADIR%%/skins/default/checkmark_menu.png %%DATADIR%%/skins/default/clear.png +%%DATADIR%%/skins/default/clear_hover.png +%%DATADIR%%/skins/default/clear_pressed.png %%DATADIR%%/skins/default/close.png %%DATADIR%%/skins/default/collapsed.png +%%DATADIR%%/skins/default/conf_bg.png %%DATADIR%%/skins/default/conference.png %%DATADIR%%/skins/default/conference_20.png +%%DATADIR%%/skins/default/conference_20_hover.png +%%DATADIR%%/skins/default/conference_20_pressed.png %%DATADIR%%/skins/default/configure.png +%%DATADIR%%/skins/default/configure_menu.png %%DATADIR%%/skins/default/confirm.ui %%DATADIR%%/skins/default/contactedit.ui +%%DATADIR%%/skins/default/contactedit_title.png %%DATADIR%%/skins/default/contactinfo.ui -%%DATADIR%%/skins/default/contactlist_chatroom.ui -%%DATADIR%%/skins/default/contactlist_contact.ui -%%DATADIR%%/skins/default/contactlist_group.ui +%%DATADIR%%/skins/default/contactinfo_title.png +%%DATADIR%%/skins/default/contacts_tab.png +%%DATADIR%%/skins/default/contacts_tab_hover.png +%%DATADIR%%/skins/default/contacts_tab_pressed.png +%%DATADIR%%/skins/default/delete.png +%%DATADIR%%/skins/default/delete_hover.png +%%DATADIR%%/skins/default/delete_menu.png +%%DATADIR%%/skins/default/delete_pressed.png +%%DATADIR%%/skins/default/dialpad_20.png +%%DATADIR%%/skins/default/dialpad_20_hover.png +%%DATADIR%%/skins/default/dialpad_20_pressed.png %%DATADIR%%/skins/default/digit0.png %%DATADIR%%/skins/default/digit0_hover.png %%DATADIR%%/skins/default/digit0_pressed.png @@ -375,14 +456,25 @@ %%DATADIR%%/skins/default/digitstar_hover.png %%DATADIR%%/skins/default/digitstar_pressed.png %%DATADIR%%/skins/default/dockedchat.ui +%%DATADIR%%/skins/default/dockedchat_title.png %%DATADIR%%/skins/default/down.png %%DATADIR%%/skins/default/down_active.png +%%DATADIR%%/skins/default/down_small.png +%%DATADIR%%/skins/default/down_small_off.png %%DATADIR%%/skins/default/edit.png +%%DATADIR%%/skins/default/edit_hover.png +%%DATADIR%%/skins/default/edit_menu.png +%%DATADIR%%/skins/default/edit_pressed.png %%DATADIR%%/skins/default/events.png %%DATADIR%%/skins/default/events.ui +%%DATADIR%%/skins/default/events_menu.png +%%DATADIR%%/skins/default/events_title.png %%DATADIR%%/skins/default/expanded.png +%%DATADIR%%/skins/default/file_trans.png +%%DATADIR%%/skins/default/file_trans_menu.png %%DATADIR%%/skins/default/fileprogress.ui %%DATADIR%%/skins/default/fileprogress_item.ui +%%DATADIR%%/skins/default/fileprogress_title.png %%DATADIR%%/skins/default/find.png %%DATADIR%%/skins/default/findnext.png %%DATADIR%%/skins/default/findprev.png @@ -390,16 +482,32 @@ %%DATADIR%%/skins/default/handshake_x.png %%DATADIR%%/skins/default/hangup.png %%DATADIR%%/skins/default/hangup_20.png +%%DATADIR%%/skins/default/hangup_20_hover.png +%%DATADIR%%/skins/default/hangup_20_pressed.png %%DATADIR%%/skins/default/help.ui +%%DATADIR%%/skins/default/help_title.png %%DATADIR%%/skins/default/hold.png %%DATADIR%%/skins/default/hold_20.png +%%DATADIR%%/skins/default/hold_20_hover.png +%%DATADIR%%/skins/default/hold_20_pressed.png %%DATADIR%%/skins/default/home.png +%%DATADIR%%/skins/default/home_hover.png +%%DATADIR%%/skins/default/home_pressed.png +%%DATADIR%%/skins/default/incoming.png %%DATADIR%%/skins/default/info.png %%DATADIR%%/skins/default/info_32.png +%%DATADIR%%/skins/default/info_menu.png %%DATADIR%%/skins/default/input.ui +%%DATADIR%%/skins/default/inputacccred.ui +%%DATADIR%%/skins/default/inputacccred_title.png %%DATADIR%%/skins/default/inputpwd.ui +%%DATADIR%%/skins/default/inputpwd_title.png %%DATADIR%%/skins/default/joinmucwizard.ui +%%DATADIR%%/skins/default/joinmucwizard_title.png %%DATADIR%%/skins/default/keyboard.png +%%DATADIR%%/skins/default/left.png +%%DATADIR%%/skins/default/left_hover.png +%%DATADIR%%/skins/default/left_pressed.png %%DATADIR%%/skins/default/message.ui %%DATADIR%%/skins/default/messages_generic.ui %%DATADIR%%/skins/default/messages_header.ui @@ -408,48 +516,105 @@ %%DATADIR%%/skins/default/minus.png %%DATADIR%%/skins/default/muc.png %%DATADIR%%/skins/default/muc_16.png +%%DATADIR%%/skins/default/muc_hover.png +%%DATADIR%%/skins/default/muc_menu.png +%%DATADIR%%/skins/default/muc_pressed.png %%DATADIR%%/skins/default/mucchat.ui %%DATADIR%%/skins/default/mucinvite.ui %%DATADIR%%/skins/default/mucprivchat.ui %%DATADIR%%/skins/default/mucs.ui +%%DATADIR%%/skins/default/mucs_title.png %%DATADIR%%/skins/default/next.png +%%DATADIR%%/skins/default/notif.png +%%DATADIR%%/skins/default/notif_menu.png %%DATADIR%%/skins/default/null_team-16.png %%DATADIR%%/skins/default/null_team-32.png %%DATADIR%%/skins/default/null_team-48.png %%DATADIR%%/skins/default/ok.png +%%DATADIR%%/skins/default/ok_hover.png +%%DATADIR%%/skins/default/ok_pressed.png +%%DATADIR%%/skins/default/outgoing.png %%DATADIR%%/skins/default/phone.png %%DATADIR%%/skins/default/phone_32.png +%%DATADIR%%/skins/default/phone_menu.png +%%DATADIR%%/skins/default/phone_tab.png +%%DATADIR%%/skins/default/phone_tab_hover.png +%%DATADIR%%/skins/default/phone_tab_pressed.png %%DATADIR%%/skins/default/plus.png +%%DATADIR%%/skins/default/pointer.png %%DATADIR%%/skins/default/prev.png %%DATADIR%%/skins/default/progress.gif %%DATADIR%%/skins/default/qt4client.rc %%DATADIR%%/skins/default/qt4client.ui %%DATADIR%%/skins/default/quest.png +%%DATADIR%%/skins/default/quest_hover.png +%%DATADIR%%/skins/default/quest_pressed.png +%%DATADIR%%/skins/default/quit.png +%%DATADIR%%/skins/default/radio_off.png +%%DATADIR%%/skins/default/radio_on.png +%%DATADIR%%/skins/default/right.png +%%DATADIR%%/skins/default/right_hover.png +%%DATADIR%%/skins/default/right_pressed.png %%DATADIR%%/skins/default/room_member.ui +%%DATADIR%%/skins/default/room_subject.png +%%DATADIR%%/skins/default/room_subject_hover.png +%%DATADIR%%/skins/default/room_subject_pressed.png %%DATADIR%%/skins/default/save.png +%%DATADIR%%/skins/default/save_hover.png +%%DATADIR%%/skins/default/save_pressed.png +%%DATADIR%%/skins/default/scroll_down.png +%%DATADIR%%/skins/default/scroll_left.png +%%DATADIR%%/skins/default/scroll_right.png +%%DATADIR%%/skins/default/scroll_up.png +%%DATADIR%%/skins/default/search.png +%%DATADIR%%/skins/default/send_transfer_20.png +%%DATADIR%%/skins/default/send_transfer_20_hover.png +%%DATADIR%%/skins/default/send_transfer_20_pressed.png %%DATADIR%%/skins/default/sendchat.png -%%DATADIR%%/skins/default/sendchat_32.png +%%DATADIR%%/skins/default/sendchat_hover.png +%%DATADIR%%/skins/default/sendchat_pressed.png %%DATADIR%%/skins/default/sendfile.png +%%DATADIR%%/skins/default/sendfile_menu.png %%DATADIR%%/skins/default/settings.ui +%%DATADIR%%/skins/default/settings_title.png %%DATADIR%%/skins/default/speaker.png %%DATADIR%%/skins/default/speaker_x.png %%DATADIR%%/skins/default/status_away.png +%%DATADIR%%/skins/default/status_away_menu.png %%DATADIR%%/skins/default/status_busy.png +%%DATADIR%%/skins/default/status_busy_menu.png %%DATADIR%%/skins/default/status_connecting.png %%DATADIR%%/skins/default/status_dnd.png +%%DATADIR%%/skins/default/status_dnd_menu.png %%DATADIR%%/skins/default/status_offline.png +%%DATADIR%%/skins/default/status_offline_menu.png %%DATADIR%%/skins/default/status_online.png +%%DATADIR%%/skins/default/status_online_menu.png %%DATADIR%%/skins/default/status_xa.png +%%DATADIR%%/skins/default/status_xa_menu.png +%%DATADIR%%/skins/default/stylesheet.css +%%DATADIR%%/skins/default/stylesheet_mac.css +%%DATADIR%%/skins/default/stylesheet_oswindows.css +%%DATADIR%%/skins/default/trans_bg.png %%DATADIR%%/skins/default/transfer.png %%DATADIR%%/skins/default/transfer_20.png +%%DATADIR%%/skins/default/transfer_20_hover.png +%%DATADIR%%/skins/default/transfer_20_pressed.png %%DATADIR%%/skins/default/tray_incomingcall.png %%DATADIR%%/skins/default/tray_incomingchat.png +%%DATADIR%%/skins/default/tray_info.png %%DATADIR%%/skins/default/tray_notification.png %%DATADIR%%/skins/default/up.png %%DATADIR%%/skins/default/up_active.png +%%DATADIR%%/skins/default/up_small.png +%%DATADIR%%/skins/default/up_small_off.png %%DATADIR%%/skins/default/update.png %%DATADIR%%/skins/default/updater.ui %%DATADIR%%/skins/default/user.png +%%DATADIR%%/skins/default/user_hover.png +%%DATADIR%%/skins/default/user_menu.png +%%DATADIR%%/skins/default/user_pressed.png +%%DATADIR%%/sounds/ring.au %%DATADIR%%/sounds/ring.wav %%DATADIR%%/sounds/tone.wav @dirrm %%DATADIR%%/sounds >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 12:30:26 2012 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 C7BBE1065675; Wed, 29 Feb 2012 12:30:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 96FA88FC21; Wed, 29 Feb 2012 12:30:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TCUQg5020338; Wed, 29 Feb 2012 12:30:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TCUQFl020327; Wed, 29 Feb 2012 12:30:26 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 12:30:26 GMT Message-Id: <201202291230.q1TCUQFl020327@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165552: [MAINTAINER UPDATE] net/yate update to 4.0.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: Wed, 29 Feb 2012 12:30:26 -0000 Synopsis: [MAINTAINER UPDATE] net/yate update to 4.0.0 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 12:30:25 UTC 2012 Responsible-Changed-Why: scheidell@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165552 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 12:41:56 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5894C106564A; Wed, 29 Feb 2012 12:41:56 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 453BC8FC15; Wed, 29 Feb 2012 12:41:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TCfuNB039407; Wed, 29 Feb 2012 12:41:56 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TCfu9G039403; Wed, 29 Feb 2012 12:41:56 GMT (envelope-from scheidell) Date: Wed, 29 Feb 2012 12:41:56 GMT Message-Id: <201202291241.q1TCfu9G039403@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dinoex@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165550: graphics/graphviz does not build; No rule to make target `-lltdl' 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: Wed, 29 Feb 2012 12:41:56 -0000 Old Synopsis: graphviz does not build; No rule to make target `-lltdl' New Synopsis: graphics/graphviz does not build; No rule to make target `-lltdl' Responsible-Changed-From-To: freebsd-ports-bugs->dinoex@FreeBSD.org Responsible-Changed-By: scheidell Responsible-Changed-When: Wed Feb 29 12:35:14 UTC 2012 Responsible-Changed-Why: Fix Synopsis, reassign to maintainer Note: I was not able to replicate problem. Compiled fine, with default options, amd64, 9.0 You will need to be more specific about your envirnoment. amd64? i386? what option knobs did you select? where did you put the pre-configure line in makefile? (attach diff -Nur of old, vs new makefile) But, most importantly, try upgrading autotools (automake, autoconf), make sure no old tools are left over. Make sure you have a clean, update ports tree (portsclean -C && portsnap fetch update) Try to help us decide what is different in your environment that makes this fail for you. http://www.freebsd.org/cgi/query-pr.cgi?pr=165550 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 13:50:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 513011065674 for ; Wed, 29 Feb 2012 13:50:13 +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 2703F8FC0A for ; Wed, 29 Feb 2012 13:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TDoDtX094880 for ; Wed, 29 Feb 2012 13:50:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TDoC4Y094879; Wed, 29 Feb 2012 13:50:12 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 13:50:12 GMT Resent-Message-Id: <201202291350.q1TDoC4Y094879@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, András JÁKÓ Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 288BF1065673 for ; Wed, 29 Feb 2012 13:42:07 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1425B8FC15 for ; Wed, 29 Feb 2012 13:42:07 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1TDg6dB093386 for ; Wed, 29 Feb 2012 13:42:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1TDg6N3093385; Wed, 29 Feb 2012 13:42:06 GMT (envelope-from nobody) Message-Id: <201202291342.q1TDg6N3093385@red.freebsd.org> Date: Wed, 29 Feb 2012 13:42:06 GMT From: András JÁKÓ To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165553: upgrade math/asymptote to 2.15 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: Wed, 29 Feb 2012 13:50:13 -0000 >Number: 165553 >Category: ports >Synopsis: upgrade math/asymptote to 2.15 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 13:50:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: András JÁKÓ >Release: 9.0-STABLE >Organization: Budapest University of Technology and Economics >Environment: FreeBSD sunbow.eik.bme.hu 9.0-STABLE FreeBSD 9.0-STABLE #33: Tue Feb 14 18:03:58 CET 2012 root@sunbow.eik.bme.hu:/usr/obj/usr/src/sys/SUNBOW amd64 >Description: I tried to unbreak math/asymptote by upgrading to the current 2.15 version. It builds fine except for the documentation. It seems that our 6-years old teTeX 3.0 can't handle the asymptote documentation. See http://sourceforge.net/projects/asymptote/forums/forum/409349/topic/4862135 for the exact error message and a short discussion. >How-To-Repeat: >Fix: As a dirty workaround I defined NOPORTDOCS. Patch attached with submission follows: diff -ruN asymptote.orig/Makefile asymptote/Makefile --- asymptote.orig/Makefile 2012-02-03 10:46:39.000000000 +0100 +++ asymptote/Makefile 2012-02-29 00:57:48.000000000 +0100 @@ -6,8 +6,7 @@ # PORTNAME= asymptote -PORTVERSION= 2.04 -PORTREVISION= 4 +PORTVERSION= 2.15 CATEGORIES= math MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ SF/${PORTNAME}/${PORTNAME}/old/${PORTVERSION} @@ -35,7 +34,6 @@ ${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter \ ${PYTHON_PKGNAMEPREFIX}imaging>=1.1.6_3:${PORTSDIR}/graphics/py-imaging -BROKEN= fails to build ONLY_FOR_ARCHS= i386 amd64 # it requires boehm-gc 7.X @@ -65,6 +63,7 @@ INSTALL_TARGET= install-asy install-texhash # Documentation +NOPORTDOCS= teTeX is too old to compile the asymptote documentation .if !defined(NOPORTDOCS) MAN1= asy.1 xasy.1x INFO= asy-faq diff -ruN asymptote.orig/distinfo asymptote/distinfo --- asymptote.orig/distinfo 2011-06-03 13:44:47.000000000 +0200 +++ asymptote/distinfo 2012-02-28 20:48:52.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (asymptote-2.04.src.tgz) = c591666590923ac63b7bd8c0a5865747ae716ca73b4b09f066397f8536357b4e -SIZE (asymptote-2.04.src.tgz) = 1689205 +SHA256 (asymptote-2.15.src.tgz) = 89034b7f072fe0476bc00a9c4c52189f67cdc1cb9c07bab1fd88bc50b2e0c887 +SIZE (asymptote-2.15.src.tgz) = 1763773 diff -ruN asymptote.orig/pkg-plist asymptote/pkg-plist --- asymptote.orig/pkg-plist 2011-10-26 16:06:54.000000000 +0200 +++ asymptote/pkg-plist 2012-02-29 01:12:29.000000000 +0100 @@ -97,6 +97,7 @@ %%DATADIR%%/GUI/xasyOptions.py %%DATADIR%%/GUI/xasyOptionsDialog.py %%DATADIR%%/GUI/xasyVersion.py +%%DATADIR%%/asy-keywords.el %%DATADIR%%/animate.asy %%DATADIR%%/animation.asy %%DATADIR%%/annotate.asy @@ -140,6 +141,7 @@ %%DATADIR%%/plain_Label.asy %%DATADIR%%/plain_arcs.asy %%DATADIR%%/plain_arrows.asy +%%DATADIR%%/plain_bounds.asy %%DATADIR%%/plain_boxes.asy %%DATADIR%%/plain_constants.asy %%DATADIR%%/plain_debugger.asy @@ -149,6 +151,8 @@ %%DATADIR%%/plain_paths.asy %%DATADIR%%/plain_pens.asy %%DATADIR%%/plain_picture.asy +%%DATADIR%%/plain_prethree.asy +%%DATADIR%%/plain_scaling.asy %%DATADIR%%/plain_shipout.asy %%DATADIR%%/plain_strings.asy %%DATADIR%%/plain_xasy.asy @@ -340,9 +344,6 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/labelbox.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/labelsquare.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/laserlattice.asy -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage-1.asy -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage-2.asy -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage-3.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latexusage.tex %%PORTEXAMPLES%%%%EXAMPLESDIR%%/latticeshading.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/layers.asy @@ -391,6 +392,7 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/partitionExample.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pathintersectsurface.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/pdb.asy +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/penfunctionimage.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/penimage.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/phase.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/piicon.eps @@ -406,6 +408,7 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/progrid.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/projectelevation.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/projectrevolution.asy +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pseudosphere.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/quartercircle.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/quilt.asy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rainbow.asy >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 13:50:59 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7ED17106566B; Wed, 29 Feb 2012 13:50:59 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5265C8FC14; Wed, 29 Feb 2012 13:50:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TDoxsJ096838; Wed, 29 Feb 2012 13:50:59 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TDoxsm096828; Wed, 29 Feb 2012 13:50:59 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 13:50:59 GMT Message-Id: <201202291350.q1TDoxsm096828@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nivit@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165553: upgrade math/asymptote to 2.15 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: Wed, 29 Feb 2012 13:50:59 -0000 Synopsis: upgrade math/asymptote to 2.15 Responsible-Changed-From-To: freebsd-ports-bugs->nivit Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 13:50:58 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165553 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 15:40:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E43621065674 for ; Wed, 29 Feb 2012 15:40:10 +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 C5E3B8FC19 for ; Wed, 29 Feb 2012 15:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TFeAm0095606 for ; Wed, 29 Feb 2012 15:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TFeAp5095605; Wed, 29 Feb 2012 15:40:10 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 15:40:10 GMT Resent-Message-Id: <201202291540.q1TFeAp5095605@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, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DC8010656D2 for ; Wed, 29 Feb 2012 15:38:44 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx1.freebsd.org (Postfix) with ESMTP id 543BC8FC0C for ; Wed, 29 Feb 2012 15:38:44 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 3TygqT0ZQzz4Gw; Wed, 29 Feb 2012 23:36:37 +0800 (CST) Message-Id: <3TygqT0ZQzz4Gw@sunpoet.net> Date: Wed, 29 Feb 2012 23:36:37 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ruby@FreeBSD.org Subject: ports/165554: [PATCH] devel/ruby-gems: fix and cleanup PLIST 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: Wed, 29 Feb 2012 15:40:11 -0000 >Number: 165554 >Category: ports >Synopsis: [PATCH] devel/ruby-gems: fix and cleanup PLIST >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 15:40:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 9.0-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 9.0-STABLE FreeBSD 9.0-STABLE #0: Sun Jan 29 23:36:49 CST 2012 >Description: - Fix and cleanup PLIST - GEMS_DOC_DIR does not exist if NOPORTDOCS is set [1] - 4 entries in PLIST are no-op [2] (they are equivalent to the TMPPLIST manipulation in post-patch:) (they should occur after the entries of doc files) Port maintainer (ruby@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: [1] % make NOPORTDOCS=yes install deinstall ... ===> Deinstalling for devel/ruby-gems ===> Deinstalling ruby19-gems-1.8.11 pkg_delete: file '/usr/local/lib/ruby/gems/1.9/doc/rubygems-1.8.11' doesn't exist pkg_delete: unable to completely remove directory '/usr/local/lib/ruby/gems/1.9/doc/rubygems-1.8.11' pkg_delete: couldn't entirely delete package `ruby19-gems-1.8.11' (perhaps the packing list is incorrectly specified?) [2] % make install % grep lib/ruby/gems/`make -V RUBY_VER` `make -V TMPPLIST` >Fix: --- ruby-gems-1.8.11.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/ruby-gems/Makefile,v retrieving revision 1.48 diff -u -u -r1.48 Makefile --- Makefile 18 Jan 2012 05:22:52 -0000 1.48 +++ Makefile 28 Feb 2012 17:22:57 -0000 @@ -59,9 +59,9 @@ ${SED} 's,^${PREFIX}/,,' >> ${TMPPLIST} @${FIND} -ds ${PREFIX}/${GEMS_DOC_DIR}/ -type d -mindepth 1 | \ ${SED} -E -e 's,^${PREFIX}/,@dirrm ,' >> ${TMPPLIST} + @${ECHO_CMD} "@dirrm ${GEMS_DOC_DIR}" >> ${TMPPLIST} .endif - @${ECHO_CMD} "@dirrm ${GEMS_DOC_DIR}" >> ${TMPPLIST} @${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems/${RUBY_VER}/doc 2>/dev/null || true" >> ${TMPPLIST} @${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems/${RUBY_VER} 2>/dev/null || true" >> ${TMPPLIST} @${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems 2>/dev/null || true" >> ${TMPPLIST} Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/devel/ruby-gems/pkg-plist,v retrieving revision 1.28 diff -u -u -r1.28 pkg-plist --- pkg-plist 28 Aug 2011 20:01:09 -0000 1.28 +++ pkg-plist 28 Feb 2012 17:22:57 -0000 @@ -100,7 +100,3 @@ @dirrm %%RUBY_SITELIBDIR%%/rbconfig @dirrmtry %%RUBY_SITELIBDIR%% @dirrmtry lib/ruby/site_ruby -@dirrmtry lib/ruby/gems/%%RUBY_VER%%/doc -@dirrmtry lib/ruby/gems/%%RUBY_VER%% -@dirrmtry lib/ruby/gems -@dirrmtry lib/ruby --- ruby-gems-1.8.11.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 15:40:54 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10A4B1065673; Wed, 29 Feb 2012 15:40:54 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DD0AD8FC12; Wed, 29 Feb 2012 15:40:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TFerTo099517; Wed, 29 Feb 2012 15:40:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TFerws099513; Wed, 29 Feb 2012 15:40:53 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 15:40:53 GMT Message-Id: <201202291540.q1TFerws099513@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ruby@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165554: [PATCH] devel/ruby-gems: fix and cleanup PLIST 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: Wed, 29 Feb 2012 15:40:54 -0000 Synopsis: [PATCH] devel/ruby-gems: fix and cleanup PLIST Responsible-Changed-From-To: freebsd-ports-bugs->ruby Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 15:40:53 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165554 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 15:50:09 2012 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 359221065675 for ; Wed, 29 Feb 2012 15:50:09 +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 0BF9E8FC1F for ; Wed, 29 Feb 2012 15:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TFo8Gd004565 for ; Wed, 29 Feb 2012 15:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TFo8nG004564; Wed, 29 Feb 2012 15:50:08 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 15:50:08 GMT Resent-Message-Id: <201202291550.q1TFo8nG004564@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, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18EE6106564A for ; Wed, 29 Feb 2012 15:47:23 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx1.freebsd.org (Postfix) with ESMTP id D98AA8FC16 for ; Wed, 29 Feb 2012 15:47:22 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 3Tyh1S4dNrz4HT; Wed, 29 Feb 2012 23:45:16 +0800 (CST) Message-Id: <3Tyh1S4dNrz4HT@sunpoet.net> Date: Wed, 29 Feb 2012 23:45:16 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ports@c0decafe.net Subject: ports/165555: [PATCH] textproc/p5-XML-LibXML-SAX-ChunkParser: update to 0.00005 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: Wed, 29 Feb 2012 15:50:09 -0000 >Number: 165555 >Category: ports >Synopsis: [PATCH] textproc/p5-XML-LibXML-SAX-ChunkParser: update to 0.00005 >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: Wed Feb 29 15:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 9.0-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 9.0-STABLE FreeBSD 9.0-STABLE #0: Sun Jan 29 23:36:49 CST 2012 >Description: - Update to 0.00005 - Add BUILD_DEPENDS Changes: http://search.cpan.org/dist/XML-LibXML-SAX-ChunkParser/Changes Port maintainer (ports@c0decafe.net) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-XML-LibXML-SAX-ChunkParser-0.00005.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-XML-LibXML-SAX-ChunkParser/Makefile,v retrieving revision 1.1 diff -u -u -r1.1 Makefile --- Makefile 7 Mar 2011 15:35:48 -0000 1.1 +++ Makefile 29 Feb 2012 15:47:07 -0000 @@ -6,15 +6,16 @@ # PORTNAME= XML-LibXML-SAX-ChunkParser -PORTVERSION= 0.00003 +PORTVERSION= 0.00005 CATEGORIES= textproc perl5 MASTER_SITES= CPAN -MASTER_SITE_SUBDIR= CPAN:DMAKI PKGNAMEPREFIX= p5- MAINTAINER= ports@c0decafe.net COMMENT= Parse XML chunks via LibXML SAX +BUILD_DEPENDS= p5-XML-LibXML>=1.66:${PORTSDIR}/textproc/p5-XML-LibXML \ + p5-XML-SAX>=0:${PORTSDIR}/textproc/p5-XML-SAX RUN_DEPENDS= p5-XML-LibXML>=1.66:${PORTSDIR}/textproc/p5-XML-LibXML \ p5-XML-SAX>=0:${PORTSDIR}/textproc/p5-XML-SAX Index: distinfo =================================================================== RCS file: /home/ncvs/ports/textproc/p5-XML-LibXML-SAX-ChunkParser/distinfo,v retrieving revision 1.1 diff -u -u -r1.1 distinfo --- distinfo 7 Mar 2011 15:35:48 -0000 1.1 +++ distinfo 29 Feb 2012 15:47:07 -0000 @@ -1,2 +1,2 @@ -SHA256 (XML-LibXML-SAX-ChunkParser-0.00003.tar.gz) = 96809e505696f9cc2b7dc7224120eb36276178b7e8ba7078dcc2181f11b27aae -SIZE (XML-LibXML-SAX-ChunkParser-0.00003.tar.gz) = 20459 +SHA256 (XML-LibXML-SAX-ChunkParser-0.00005.tar.gz) = 37ec86b3e8f5eaa8da9f012b7bfe2d2e5587edb0ea53e26b4ad36820a32104ba +SIZE (XML-LibXML-SAX-ChunkParser-0.00005.tar.gz) = 20092 --- p5-XML-LibXML-SAX-ChunkParser-0.00005.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 15:51:00 2012 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 4C667106564A; Wed, 29 Feb 2012 15:51:00 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 241F28FC1D; Wed, 29 Feb 2012 15:51:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TFp02t009864; Wed, 29 Feb 2012 15:51:00 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TFp0MM009855; Wed, 29 Feb 2012 15:51:00 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 15:51:00 GMT Message-Id: <201202291551.q1TFp0MM009855@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165555: [PATCH] textproc/p5-XML-LibXML-SAX-ChunkParser: update to 0.00005 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: Wed, 29 Feb 2012 15:51:00 -0000 Synopsis: [PATCH] textproc/p5-XML-LibXML-SAX-ChunkParser: update to 0.00005 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 15:50:59 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165555 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 16:00:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 43F161065678 for ; Wed, 29 Feb 2012 16:00:27 +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 0E9C98FC08 for ; Wed, 29 Feb 2012 16:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TG0Q9d013283 for ; Wed, 29 Feb 2012 16:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TG0Qg5013282; Wed, 29 Feb 2012 16:00:26 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 16:00:26 GMT Resent-Message-Id: <201202291600.q1TG0Qg5013282@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, Dutch Daemon Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 365EE106566B for ; Wed, 29 Feb 2012 15:54:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 265828FC08 for ; Wed, 29 Feb 2012 15:54:36 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1TFsZSu045292 for ; Wed, 29 Feb 2012 15:54:36 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1TFsZBR045291; Wed, 29 Feb 2012 15:54:35 GMT (envelope-from nobody) Message-Id: <201202291554.q1TFsZBR045291@red.freebsd.org> Date: Wed, 29 Feb 2012 15:54:35 GMT From: Dutch Daemon To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165556: Build/patch error mail/dovecot2 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: Wed, 29 Feb 2012 16:00:27 -0000 >Number: 165556 >Category: ports >Synopsis: Build/patch error mail/dovecot2 >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 16:00:26 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dutch Daemon >Release: 9-STABLE >Organization: FreeBSD Forums >Environment: >Description: See http://forums.freebsd.org/showthread.php?t=30157 Portmaster output: ===>>> Currently installed version: dovecot-2.0.16_1 ===>>> Port directory: /usr/ports/mail/dovecot2 ===>>> Gathering distinfo list for installed ports ===>>> Launching 'make checksum' for mail/dovecot2 in background ===>>> Gathering dependency list for mail/dovecot2 from ports ===>>> Initial dependency check complete for mail/dovecot2 ===>>> Starting build for mail/dovecot2 <<<=== ===>>> All dependencies are up to date ===> Cleaning for dovecot-2.0.18 ===>>> Waiting on fetch & checksum for mail/dovecot2 <<<=== ===> License check disabled, port has not defined LICENSE ===> Found saved configuration for dovecot-2.0.11 => dovecot-2.0.18.tar.gz doesn't seem to exist in /usr/ports/distfiles//. => Attempting to fetch http://www.dovecot.org/releases/2.0/dovecot-2.0.18.tar.gz ===> License check disabled, port has not defined LICENSE ===> Found saved configuration for dovecot-2.0.11 ===> Extracting for dovecot-2.0.18 => SHA256 Checksum OK for dovecot-2.0.18.tar.gz. ===> Patching for dovecot-2.0.18 ===> Applying FreeBSD patches for dovecot-2.0.18 Ignoring previously applied (or reversed) patch. 2 out of 2 hunks ignored--saving rejects to src/auth/passdb-vpopmail.c.rej => Patch patch-src-auth-passdb-vpopmail.c failed to apply cleanly. *** Error code 1 Stop in /usr/ports/mail/dovecot2. *** Error code 1 Stop in /usr/ports/mail/dovecot2. ===>>> make failed for mail/dovecot2 ===>>> Aborting update Terminated ===>>> You can restart from the point of failure with this command line: portmaster mail/dovecot2 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 16:01:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9DC77106566B; Wed, 29 Feb 2012 16:01:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 75F488FC0A; Wed, 29 Feb 2012 16:01:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TG1BWo016573; Wed, 29 Feb 2012 16:01:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TG1Bhd016564; Wed, 29 Feb 2012 16:01:11 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 16:01:11 GMT Message-Id: <201202291601.q1TG1Bhd016564@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, DutchDaemon@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165556: Build/patch error mail/dovecot2 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: Wed, 29 Feb 2012 16:01:11 -0000 Synopsis: Build/patch error mail/dovecot2 Responsible-Changed-From-To: freebsd-ports-bugs->DutchDaemon Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 16:01:10 UTC 2012 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165556 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 16:10:20 2012 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 0EF3B1065692 for ; Wed, 29 Feb 2012 16:10:20 +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 C62728FC15 for ; Wed, 29 Feb 2012 16:10:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TGAJFF022448 for ; Wed, 29 Feb 2012 16:10:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TGAJFZ022447; Wed, 29 Feb 2012 16:10:19 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 16:10:19 GMT Resent-Message-Id: <201202291610.q1TGAJFZ022447@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, Rainer Duffner Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C8EB10656D3 for ; Wed, 29 Feb 2012 16:06:03 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2BF108FC12 for ; Wed, 29 Feb 2012 16:06:03 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1TG6229063647 for ; Wed, 29 Feb 2012 16:06:02 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1TG626N063646; Wed, 29 Feb 2012 16:06:02 GMT (envelope-from nobody) Message-Id: <201202291606.q1TG626N063646@red.freebsd.org> Date: Wed, 29 Feb 2012 16:06:02 GMT From: Rainer Duffner To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165558: add --enable-local-infile option to mysql-server ports 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: Wed, 29 Feb 2012 16:10:20 -0000 >Number: 165558 >Category: ports >Synopsis: add --enable-local-infile option to mysql-server ports >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 16:10:19 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Rainer Duffner >Release: 8.2p6 >Organization: >Environment: >Description: hi, would it possible to add this section to the various mysql-server ports (I've only looked at 5.1, but I assume it's the same for 5.5): .if defined(WITH_LOCAL_INFILE) CONFIGURE_ARGS+=--enable-local-infile .endif We have people who need this and tbh, I don't want to maintain this change locally. It might be useful for some people and as it's off by default, it shouldn't do any harm. >How-To-Repeat: n/a >Fix: .if defined(WITH_LOCAL_INFILE) CONFIGURE_ARGS+=--enable-local-infile .endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 17:50:11 2012 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 E895F1065674 for ; Wed, 29 Feb 2012 17:50:11 +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 AC4198FC1E for ; Wed, 29 Feb 2012 17:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1THoB9A015952 for ; Wed, 29 Feb 2012 17:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1THoBd3015951; Wed, 29 Feb 2012 17:50:11 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 17:50:11 GMT Resent-Message-Id: <201202291750.q1THoBd3015951@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, Mickael Maillot Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 75B7B106564A for ; Wed, 29 Feb 2012 17:49:20 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 4BD9A8FC08 for ; Wed, 29 Feb 2012 17:49:20 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q1THnK2R045193 for ; Wed, 29 Feb 2012 17:49:20 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q1THnKKH045192; Wed, 29 Feb 2012 17:49:20 GMT (envelope-from nobody) Message-Id: <201202291749.q1THnKKH045192@red.freebsd.org> Date: Wed, 29 Feb 2012 17:49:20 GMT From: Mickael Maillot To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165560: [maintainer update] update multimedia/xbmc to 11.0 rc1 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: Wed, 29 Feb 2012 17:50:12 -0000 >Number: 165560 >Category: ports >Synopsis: [maintainer update] update multimedia/xbmc to 11.0 rc1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 17:50:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Mickael Maillot >Release: >Organization: >Environment: >Description: update multimedia/xbmc to rc1 new option: OSS experimental support it add DTS HDMA and dolby TrueHD playback support (with recent mav@ hda work) with huge patch 1,2Mo, so i bzip2 it. update can be fetch on redports: svn co https://svn.redports.org/fneufneu/multimedia/xbmc fully tested and compile fine on all freebsd version (thanks to redports). >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 20:30:12 2012 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 ED9C61065678 for ; Wed, 29 Feb 2012 20:30:12 +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 A91E18FC0C for ; Wed, 29 Feb 2012 20:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TKUCBp061132 for ; Wed, 29 Feb 2012 20:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TKUC1h061129; Wed, 29 Feb 2012 20:30:12 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 20:30:12 GMT Resent-Message-Id: <201202292030.q1TKUC1h061129@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A91D106566B; Wed, 29 Feb 2012 20:21:39 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id ED1BA8FC08; Wed, 29 Feb 2012 20:21:38 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q1TKLYGV072203 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 29 Feb 2012 15:21:34 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q1TKLUrh096945; Wed, 29 Feb 2012 15:21:30 -0500 (EST) (envelope-from steve) Message-Id: <201202292021.q1TKLUrh096945@meatwad.mouf.net> Date: Wed, 29 Feb 2012 15:21:30 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: miwi@FreeBSD.org Subject: ports/165563: [PATCH] editors/p5-Vimana: update RUN_DEPENDS 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: Wed, 29 Feb 2012 20:30:13 -0000 >Number: 165563 >Category: ports >Synopsis: [PATCH] editors/p5-Vimana: update RUN_DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 20:30:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: Module seems to want JSON-PP now instead of JSON. Fails tests with p5-JSON, passes with p5-JSON-PP. Attached patch updates the dependency. Port maintainer (miwi@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-Vimana-2010.09303_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/editors/p5-Vimana/Makefile,v retrieving revision 1.7 diff -u -u -r1.7 Makefile --- Makefile 20 Jun 2011 08:37:07 -0000 1.7 +++ Makefile 29 Feb 2012 20:20:46 -0000 @@ -7,6 +7,7 @@ PORTNAME= Vimana PORTVERSION= 2010.09303 +PORTREVISION= 1 CATEGORIES= editors perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:CORNELIUS @@ -27,7 +28,7 @@ p5-Exporter-Lite>=0.2:${PORTSDIR}/devel/p5-Exporter-Lite \ p5-Digest-MD5>=2.39:${PORTSDIR}/security/p5-Digest-MD5 \ p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \ - p5-JSON>=0:${PORTSDIR}/converters/p5-JSON \ + p5-JSON-PP>=0:${PORTSDIR}/converters/p5-JSON-PP \ p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML \ p5-HTTP-Lite>=0:${PORTSDIR}/www/p5-HTTP-Lite \ p5-Mouse>=0:${PORTSDIR}/devel/p5-Mouse \ --- p5-Vimana-2010.09303_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 20:30:59 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 41E2C1065679; Wed, 29 Feb 2012 20:30:59 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 19A428FC18; Wed, 29 Feb 2012 20:30:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TKUw9i065565; Wed, 29 Feb 2012 20:30:58 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TKUw3S065557; Wed, 29 Feb 2012 20:30:58 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 20:30:58 GMT Message-Id: <201202292030.q1TKUw3S065557@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165563: [PATCH] editors/p5-Vimana: update RUN_DEPENDS 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: Wed, 29 Feb 2012 20:30:59 -0000 Synopsis: [PATCH] editors/p5-Vimana: update RUN_DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 20:30:58 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165563 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 20:37:40 2012 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 A33D8106564A; Wed, 29 Feb 2012 20:37:40 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 40E678FC1C; Wed, 29 Feb 2012 20:37:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TKbe0s072778; Wed, 29 Feb 2012 20:37:40 GMT (envelope-from cs@freefall.freebsd.org) Received: (from cs@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TKbeHB072774; Wed, 29 Feb 2012 20:37:40 GMT (envelope-from cs) Date: Wed, 29 Feb 2012 20:37:40 GMT Message-Id: <201202292037.q1TKbeHB072774@freefall.freebsd.org> To: cs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, cs@FreeBSD.org From: cs@FreeBSD.org Cc: Subject: Re: ports/165529: security/openvpn-beta: update to 2.3-alpha1 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: Wed, 29 Feb 2012 20:37:40 -0000 Synopsis: security/openvpn-beta: update to 2.3-alpha1 Responsible-Changed-From-To: freebsd-ports-bugs->cs Responsible-Changed-By: cs Responsible-Changed-When: Wed Feb 29 20:37:18 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165529 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 20:40:19 2012 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 3A1D8106564A; Wed, 29 Feb 2012 20:40:19 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 12A258FC16; Wed, 29 Feb 2012 20:40:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TKeIIt072980; Wed, 29 Feb 2012 20:40:18 GMT (envelope-from cs@freefall.freebsd.org) Received: (from cs@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TKeIPI072975; Wed, 29 Feb 2012 20:40:18 GMT (envelope-from cs) Date: Wed, 29 Feb 2012 20:40:18 GMT Message-Id: <201202292040.q1TKeIPI072975@freefall.freebsd.org> To: cs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, cs@FreeBSD.org From: cs@FreeBSD.org Cc: Subject: Re: ports/165510: Update textproc/sigil to 0.5.3 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: Wed, 29 Feb 2012 20:40:19 -0000 Synopsis: Update textproc/sigil to 0.5.3 Responsible-Changed-From-To: freebsd-ports-bugs->cs Responsible-Changed-By: cs Responsible-Changed-When: Wed Feb 29 20:40:04 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165510 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 21:30:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5CB83106566B for ; Wed, 29 Feb 2012 21:30:12 +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 294FE8FC15 for ; Wed, 29 Feb 2012 21:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TLUCdx017198 for ; Wed, 29 Feb 2012 21:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TLUBSN017194; Wed, 29 Feb 2012 21:30:11 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 21:30:11 GMT Resent-Message-Id: <201202292130.q1TLUBSN017194@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, Mirko Zinn Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B9D91065672 for ; Wed, 29 Feb 2012 21:22:10 +0000 (UTC) (envelope-from zinn@kaspar.derzinn.de) Received: from oops.0xC0DE.de (cl-2095.dus-01.de.sixxs.net [IPv6:2a01:198:200:82e::2]) by mx1.freebsd.org (Postfix) with ESMTP id B19EA8FC08 for ; Wed, 29 Feb 2012 21:22:09 +0000 (UTC) Received: from oops.0xC0DE.de (localhost.0xC0DE.de [127.0.0.1]) by oops.0xC0DE.de (Postfix) with ESMTP id 09BB339810A for ; Wed, 29 Feb 2012 22:22:06 +0100 (CET) Received: from oops.0xC0DE.de ([127.0.0.1]) by oops.0xC0DE.de (oops.0xC0DE.de [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id wv7qO36GX4dm for ; Wed, 29 Feb 2012 22:21:59 +0100 (CET) Received: from kaspar.derzinn.de (ip-95-223-250-10.unitymediagroup.de [95.223.250.10]) (Authenticated sender: info@derzinn.de) by oops.0xC0DE.de (Postfix) with ESMTPA id 84D1F398106 for ; Wed, 29 Feb 2012 22:21:59 +0100 (CET) Received: by kaspar.derzinn.de (Postfix, from userid 1001) id 0D3CC361BC3B; Wed, 29 Feb 2012 22:21:58 +0100 (CET) Message-Id: <20120229212159.0D3CC361BC3B@kaspar.derzinn.de> Date: Wed, 29 Feb 2012 22:21:58 +0100 (CET) From: Mirko Zinn To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165564: [MAINTAINER] databases/mongodb: update to 2.0.3 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: Wed, 29 Feb 2012 21:30:12 -0000 >Number: 165564 >Category: ports >Synopsis: [MAINTAINER] databases/mongodb: update to 2.0.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 21:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Mirko Zinn >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD kaspar.derzinn.de 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC >Description: - Update to 2.0.3 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- mongodb-2.0.3.patch begins here --- diff -ruN --exclude=CVS /home/zinn/ports/mongodb.orig/Makefile /home/zinn/ports/mongodb/Makefile --- /home/zinn/ports/mongodb.orig/Makefile 2011-12-20 13:31:33.000000000 +0100 +++ /home/zinn/ports/mongodb/Makefile 2012-02-29 18:24:01.000000000 +0100 @@ -6,7 +6,7 @@ # PORTNAME= mongodb -PORTVERSION= 2.0.2 +PORTVERSION= 2.0.3 CATEGORIES= databases net MASTER_SITES= http://downloads.mongodb.org/src/ DISTNAME= ${PORTNAME}-src-r${PORTVERSION} diff -ruN --exclude=CVS /home/zinn/ports/mongodb.orig/distinfo /home/zinn/ports/mongodb/distinfo --- /home/zinn/ports/mongodb.orig/distinfo 2011-12-20 13:31:34.000000000 +0100 +++ /home/zinn/ports/mongodb/distinfo 2012-02-29 18:24:22.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (mongodb-src-r2.0.2.tar.gz) = e4a498c435532470e8aa7ea1d0119558e0f061c7574659e0ebc0e29cbee2ac8f -SIZE (mongodb-src-r2.0.2.tar.gz) = 2956087 +SHA256 (mongodb-src-r2.0.3.tar.gz) = f5f365adc6597d5c3c086da27f0ca179313da03fb547a2202badd23f95360699 +SIZE (mongodb-src-r2.0.3.tar.gz) = 2964557 diff -ruN --exclude=CVS /home/zinn/ports/mongodb.orig/files/patch-SConstruct /home/zinn/ports/mongodb/files/patch-SConstruct --- /home/zinn/ports/mongodb.orig/files/patch-SConstruct 2011-12-20 13:31:34.000000000 +0100 +++ /home/zinn/ports/mongodb/files/patch-SConstruct 2012-02-29 18:31:13.000000000 +0100 @@ -1,6 +1,6 @@ ---- SConstruct.orig 2011-12-16 18:02:27.000000000 +0100 -+++ SConstruct 2011-12-17 04:39:19.000000000 +0100 -@@ -702,7 +702,10 @@ +--- SConstruct.orig 2012-02-29 18:18:35.000000000 +0100 ++++ SConstruct 2012-02-29 18:30:34.000000000 +0100 +@@ -714,7 +714,10 @@ #make scons colorgcc friendly env['ENV']['HOME'] = os.environ['HOME'] @@ -12,7 +12,7 @@ if linux and has_option( "sharedclient" ): env.Append( LINKFLAGS=" -Wl,--as-needed -Wl,-zdefs " ) -@@ -785,8 +788,9 @@ +@@ -797,8 +800,9 @@ options_topass["nix"] = nix if has_option( "use-system-" + shortName ) or has_option( "use-system-all" ): @@ -24,7 +24,7 @@ else: myModule.configure( env , fileLists , options_topass ) -@@ -1446,7 +1450,7 @@ +@@ -1481,7 +1485,7 @@ fullInstallName = installDir + "/bin/" + name allBinaries += [ name ] diff -ruN --exclude=CVS /home/zinn/ports/mongodb.orig/pkg-plist /home/zinn/ports/mongodb/pkg-plist --- /home/zinn/ports/mongodb.orig/pkg-plist 2011-12-20 13:31:34.000000000 +0100 +++ /home/zinn/ports/mongodb/pkg-plist 2012-02-29 22:21:17.000000000 +0100 @@ -209,6 +209,7 @@ %%DEVEL%%include/mongo/util/processinfo.h %%DEVEL%%include/mongo/util/queue.h %%DEVEL%%include/mongo/util/ramlog.h +%%DEVEL%%include/mongo/util/scopeguard.h %%DEVEL%%include/mongo/util/signal_handlers.h %%DEVEL%%include/mongo/util/stringutils.h %%DEVEL%%include/mongo/util/text.h @@ -231,3 +232,4 @@ %%DEVEL%%@dirrm include/mongo/util/net %%DEVEL%%@dirrm include/mongo/util %%DEVEL%%@dirrm include/mongo + --- mongodb-2.0.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 21:40:17 2012 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 7A4A2106566C for ; Wed, 29 Feb 2012 21:40:17 +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 542438FC17 for ; Wed, 29 Feb 2012 21:40:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TLeHkR027938 for ; Wed, 29 Feb 2012 21:40:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TLeGxN027937; Wed, 29 Feb 2012 21:40:16 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 21:40:16 GMT Resent-Message-Id: <201202292140.q1TLeGxN027937@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, Filip Valder Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5031D106564A for ; Wed, 29 Feb 2012 21:40:00 +0000 (UTC) (envelope-from filip.valder@vsb.cz) Received: from smtp.vsb.cz (smtp.vsb.cz [IPv6:2001:718:1001:149::155]) by mx1.freebsd.org (Postfix) with ESMTP id A034D8FC0A for ; Wed, 29 Feb 2012 21:39:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp.vsb.cz (Postfix) with ESMTP id 49CA71C1712; Wed, 29 Feb 2012 22:39:58 +0100 (CET) Received: from smtp.vsb.cz ([127.0.0.1]) by localhost (smtp-ha1.vsb.cz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RYRnvL1PlL41; Wed, 29 Feb 2012 22:39:52 +0100 (CET) Received: from [192.168.1.1] (unknown [78.108.150.107]) by smtp.vsb.cz (Postfix) with ESMTPSA id DE3D11C00B6; Wed, 29 Feb 2012 22:39:51 +0100 (CET) Message-Id: <4F4E9B2F.8010406@vsb.cz> Date: Wed, 29 Feb 2012 22:39:59 +0100 From: Filip Valder To: FreeBSD-gnats-submit@FreeBSD.org Cc: Filip Valder Subject: ports/165565: New port: www/mod_auth_token Token-based authentication similar to mod_secdownload in LIGHTTPD X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Filip Valder List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Feb 2012 21:40:17 -0000 >Number: 165565 >Category: ports >Synopsis: New port: www/mod_auth_token Token-based authentication similar to mod_secdownload in LIGHTTPD >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 21:40:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Filip Valder >Release: FreeBSD 8.2-RELEASE i386 >Organization: ULICE.SvetDoma.cz >Environment: System: FreeBSD ulicnik.ulice 8.2-RELEASE FreeBSD 8.2-RELEASE #1: Sat Dec 3 23:35:47 CET 2011 root@hlidac-ha-2.ulice:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: Token-based authentication similar to mod_secdownload in LIGHTTPD. Have your script generate a token and let Apache handle the file transfer without having to pipe it through a script for security. >How-To-Repeat: >Fix: --- mod_auth_token.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # mod_auth_token # mod_auth_token/Makefile # mod_auth_token/pkg-descr # mod_auth_token/distinfo # mod_auth_token/pkg-deinstall # mod_auth_token/pkg-message # echo c - mod_auth_token mkdir -p mod_auth_token > /dev/null 2>&1 echo x - mod_auth_token/Makefile sed 's/^X//' >mod_auth_token/Makefile << '9f12235b8a9ec0e6dd5b3158e829e2fc' X# New ports collection makefile for: mod_auth_token X# Date created: 29 February 2012 X# Whom: fv X# X# $FreeBSD$ X# X XPORTNAME= mod_auth_token XPORTVERSION= 1.0.5 XCATEGORIES= www XMASTER_SITES= http://mod-auth-token.googlecode.com/files/ XMASTER_SITES+= http://ports.valder.cz/${PORTNAME:L}/ X XMAINTAINER= filip@valder.cz XCOMMENT= Token-based authentication similar to mod_secdownload in LIGHTTPD X XBUILD_DEPENDS= automake>=1.10:${PORTSDIR}/devel/automake X XUSE_APACHE= 22+ XAP_GENPLIST= yes XPLIST_FILES+= %%APACHEMODDIR%%/mod_auth_token.so X XUSE_AUTOTOOLS= aclocal:env automake:env libtool X Xpost-patch: X @${LN} -f -s ${PREFIX}/share/automake-${AUTOMAKE_VERSION}/COPYING ${WRKSRC}/COPYING X @${LN} -f -s ${PREFIX}/share/automake-${AUTOMAKE_VERSION}/config.guess ${WRKSRC}/config.guess X @${LN} -f -s ${PREFIX}/share/automake-${AUTOMAKE_VERSION}/config.sub ${WRKSRC}/config.sub X @${LN} -f -s ${PREFIX}/share/automake-${AUTOMAKE_VERSION}/install-sh ${WRKSRC}/install-sh X @${LN} -f -s ${PREFIX}/share/automake-${AUTOMAKE_VERSION}/missing ${WRKSRC}/missing X Xpost-install: X @${CAT} ${WRKSRC}/README X X.include 9f12235b8a9ec0e6dd5b3158e829e2fc echo x - mod_auth_token/pkg-descr sed 's/^X//' >mod_auth_token/pkg-descr << '91039b76901d21b2a9e74a3142652e82' XToken-based authentication similar to mod_secdownload in LIGHTTPD. XHave your script generate a token and let Apache handle the file Xtransfer without having to pipe it through a script for security. X XWWW: http://code.google.com/p/mod-auth-token/ 91039b76901d21b2a9e74a3142652e82 echo x - mod_auth_token/distinfo sed 's/^X//' >mod_auth_token/distinfo << '4f40ad080ecb2bad0a7130d84dcd78d7' XSHA256 (mod_auth_token-1.0.5.tar.gz) = 85af5d3d9bf5fb01d1ba04c814de3b43660cb0bb54122517429113cdb2b198fe XSIZE (mod_auth_token-1.0.5.tar.gz) = 340355 4f40ad080ecb2bad0a7130d84dcd78d7 echo x - mod_auth_token/pkg-deinstall sed 's/^X//' >mod_auth_token/pkg-deinstall << 'cfd8bb91d9a91d905ba285ce084053e0' X#!/bin/sh X# X# $FreeBSD$ X# X Xsed -i.bak '/LoadModule.*mod_auth_token.so/d' /usr/local/etc/apache[0-9]*/httpd.conf cfd8bb91d9a91d905ba285ce084053e0 echo x - mod_auth_token/pkg-message sed 's/^X//' >mod_auth_token/pkg-message << '887de36e5961a0b4aa13e29fd511a720' X X This module uses token based authentication to secure downloads X and prevent deep-linking. X X Have your script or servlet generate a token to authenticate the X download and let Apache handle the file transfer without having X to pipe it through a script for security. X X You can find downloads, daily snapshots and support information at X http://www.synd.info/ X XUSAGE X X The token is an hex-encoded MD5 hash of the X secret password, relative file path and the timestamp. It is X encoded onto the URI as: X X / X X For example X X /protected/dee0ed6174a894113d5e8f6c98f0e92b/43eaf9c5/path/to/file.txt X X where the token is generated as X X md5("secret" + "/path/to/file.txt" + dechex(time_now())) X X with the following configuration in httpd.conf X X X AuthTokenSecret "secret" X AuthTokenPrefix /protected/ X AuthTokenTimeout 60 X Release-Note: >Audit-Trail: >Unformatted: This is a multi-part message in MIME format. --------------030606060801070605070602 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 21:40:35 2012 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 AA0BC1065672; Wed, 29 Feb 2012 21:40:35 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 811618FC16; Wed, 29 Feb 2012 21:40:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TLeZZs028781; Wed, 29 Feb 2012 21:40:35 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TLeZKl028772; Wed, 29 Feb 2012 21:40:35 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 21:40:35 GMT Message-Id: <201202292140.q1TLeZKl028772@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, apache@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165565: New port: www/mod_auth_token Token-based authentication similar to mod_secdownload in LIGHTTPD 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: Wed, 29 Feb 2012 21:40:35 -0000 Synopsis: New port: www/mod_auth_token Token-based authentication similar to mod_secdownload in LIGHTTPD Responsible-Changed-From-To: freebsd-ports-bugs->apache Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 21:40:35 UTC 2012 Responsible-Changed-Why: apache@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165565 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 22:11:54 2012 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 8B16E106564A; Wed, 29 Feb 2012 22:11:54 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 631278FC0C; Wed, 29 Feb 2012 22:11:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TMBssU062630; Wed, 29 Feb 2012 22:11:54 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TMBsdO062626; Wed, 29 Feb 2012 22:11:54 GMT (envelope-from jgh) Date: Wed, 29 Feb 2012 22:11:54 GMT Message-Id: <201202292211.q1TMBsdO062626@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165564: [MAINTAINER] databases/mongodb: update to 2.0.3 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: Wed, 29 Feb 2012 22:11:54 -0000 Synopsis: [MAINTAINER] databases/mongodb: update to 2.0.3 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Wed Feb 29 22:11:53 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165564 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 22:40:09 2012 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 F02FF106566C for ; Wed, 29 Feb 2012 22:40:09 +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 C298A8FC13 for ; Wed, 29 Feb 2012 22:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TMe9r8084014 for ; Wed, 29 Feb 2012 22:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TMe9Jm084013; Wed, 29 Feb 2012 22:40:09 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 22:40:09 GMT Resent-Message-Id: <201202292240.q1TMe9Jm084013@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 57D29106564A for ; Wed, 29 Feb 2012 22:39:49 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 1653F8FC08 for ; Wed, 29 Feb 2012 22:39:48 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q1TMdiNQ073140 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 29 Feb 2012 17:39:45 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q1TMde8U062555; Wed, 29 Feb 2012 17:39:40 -0500 (EST) (envelope-from steve) Message-Id: <201202292239.q1TMde8U062555@meatwad.mouf.net> Date: Wed, 29 Feb 2012 17:39:40 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: skreuzer@FreeBSD.org Subject: ports/165566: [PATCH] finance/p5-Finance-Bitcoin: update to 0.004 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: Wed, 29 Feb 2012 22:40:10 -0000 >Number: 165566 >Category: ports >Synopsis: [PATCH] finance/p5-Finance-Bitcoin: update to 0.004 >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: Wed Feb 29 22:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: - Update to 0.004 - Patch to work with newer JSON::RPC - Tests pass now Added file(s): - files/patch-API.pm Port maintainer (skreuzer@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: update, diff: CVS) >How-To-Repeat: >Fix: --- p5-Finance-Bitcoin-0.004.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/finance/p5-Finance-Bitcoin/Makefile,v retrieving revision 1.1 diff -u -u -r1.1 Makefile --- Makefile 3 Apr 2011 04:42:04 -0000 1.1 +++ Makefile 29 Feb 2012 22:38:47 -0000 @@ -6,7 +6,7 @@ # PORTNAME= Finance-Bitcoin -PORTVERSION= 0.002 +PORTVERSION= 0.004 CATEGORIES= finance perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -17,8 +17,11 @@ RUN_DEPENDS= p5-JSON-RPC>=0.96:${PORTSDIR}/devel/p5-JSON-RPC \ p5-Class-Accessor>=0.34:${PORTSDIR}/devel/p5-Class-Accessor \ p5-Module-Signature>=0.66:${PORTSDIR}/security/p5-Module-Signature \ - p5-Scalar-List-Utils>=1.23:${PORTSDIR}/lang/p5-Scalar-List-Utils + p5-Scalar-List-Utils>=1.23:${PORTSDIR}/lang/p5-Scalar-List-Utils \ + p5-Any-Moose>=0:${PORTSDIR}/devel/p5-Any-Moose BUILD_DEPENDS= p5-Test-Simple>=0.86:${PORTSDIR}/devel/p5-Test-Simple +TEST_DEPENDS= p5-Any-Moose>=0:${PORTSDIR}/devel/p5-Any-Moose \ + p5-Object-Authority>=0:${PORTSDIR}/devel/p5-Object-Authority PERL_CONFIGURE= yes @@ -27,4 +30,9 @@ Finance::Bitcoin::Wallet.3 \ Finance::Bitcoin.3 -.include +.include + +post-patch: + -@${RM} ${WRKSRC}/lib/Finance/Bitcoin/API.pm.orig + +.include Index: distinfo =================================================================== RCS file: /home/pcvs/ports/finance/p5-Finance-Bitcoin/distinfo,v retrieving revision 1.1 diff -u -u -r1.1 distinfo --- distinfo 3 Apr 2011 04:42:04 -0000 1.1 +++ distinfo 29 Feb 2012 22:38:47 -0000 @@ -1,2 +1,2 @@ -SHA256 (Finance-Bitcoin-0.002.tar.gz) = ef486d12f3a14dfc224637a6758eca6119e7a49900179809abc783550d6f2e63 -SIZE (Finance-Bitcoin-0.002.tar.gz) = 31052 +SHA256 (Finance-Bitcoin-0.004.tar.gz) = 113ffe6bde4c384b5dca74067eea55d0affdd89d87387506ecc367aa5116561d +SIZE (Finance-Bitcoin-0.004.tar.gz) = 47443 Index: files/patch-API.pm =================================================================== RCS file: files/patch-API.pm diff -N files/patch-API.pm --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-API.pm 29 Feb 2012 22:38:47 -0000 @@ -0,0 +1,11 @@ +--- ./lib/Finance/Bitcoin/API.pm.orig 2012-02-29 16:33:14.557825312 -0500 ++++ ./lib/Finance/Bitcoin/API.pm 2012-02-29 16:33:22.505825441 -0500 +@@ -2,7 +2,7 @@ + + use 5.010; + use common::sense; +-use JSON::RPC::Client; ++use JSON::RPC::Legacy::Client; + use Any::Moose; + use Object::AUTHORITY; + use Scalar::Util qw[blessed]; --- p5-Finance-Bitcoin-0.004.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 22:40:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BA3F91065687; Wed, 29 Feb 2012 22:40:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 91FBE8FC08; Wed, 29 Feb 2012 22:40:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TMeJJ9084197; Wed, 29 Feb 2012 22:40:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TMeJ7C084193; Wed, 29 Feb 2012 22:40:19 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 22:40:19 GMT Message-Id: <201202292240.q1TMeJ7C084193@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skreuzer@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165566: [PATCH] finance/p5-Finance-Bitcoin: update to 0.004 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: Wed, 29 Feb 2012 22:40:19 -0000 Synopsis: [PATCH] finance/p5-Finance-Bitcoin: update to 0.004 Responsible-Changed-From-To: freebsd-ports-bugs->skreuzer Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 22:40:19 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165566 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 22:50:12 2012 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 D951D1065675 for ; Wed, 29 Feb 2012 22:50:12 +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 B66358FC0C for ; Wed, 29 Feb 2012 22:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TMoChh092893 for ; Wed, 29 Feb 2012 22:50:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TMoC9D092892; Wed, 29 Feb 2012 22:50:12 GMT (envelope-from gnats) Resent-Date: Wed, 29 Feb 2012 22:50:12 GMT Resent-Message-Id: <201202292250.q1TMoC9D092892@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, Baptiste Daroussin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A0ABF1065675 for ; Wed, 29 Feb 2012 22:43:58 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 90EC38FC18; Wed, 29 Feb 2012 22:43:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TMhwvG092131; Wed, 29 Feb 2012 22:43:58 GMT (envelope-from bapt@freefall.freebsd.org) Received: (from bapt@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TMhw2N092130; Wed, 29 Feb 2012 22:43:58 GMT (envelope-from bapt) Message-Id: <201202292243.q1TMhw2N092130@freefall.freebsd.org> Date: Wed, 29 Feb 2012 22:43:58 GMT From: Baptiste Daroussin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: churanov.port.maintainer@gmail.com Subject: ports/165567: [PATCH] devel/boost-libs: fix use with clang 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: Wed, 29 Feb 2012 22:50:13 -0000 >Number: 165567 >Category: ports >Synopsis: [PATCH] devel/boost-libs: fix use with clang >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 29 22:50:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Baptiste Daroussin >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD azathoth.lan 10.0-CURRENT FreeBSD 10.0-CURRENT #8 r227964M: Thu Dec 1 23:52:49 >Description: This fixes uses with clang, see https://svn.boost.org/trac/boost/ticket/6636 this is necessary for libreoffice 3.5 Added file(s): - files/patch-boost__config__compiler__clang.hpp Port maintainer (churanov.port.maintainer@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- boost-libs-1.45.0_2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/boost-libs/Makefile,v retrieving revision 1.10 diff -u -u -r1.10 Makefile --- Makefile 16 Jul 2011 05:20:15 -0000 1.10 +++ Makefile 29 Feb 2012 22:42:54 -0000 @@ -6,7 +6,7 @@ # PORTNAME= boost-libs -PORTREVISION= 1 +PORTREVISION= 2 COMMENT= Free portable C++ libraries (without Boost.Python) USE_BZIP2= yes Index: files/patch-boost__config__compiler__clang.hpp =================================================================== RCS file: files/patch-boost__config__compiler__clang.hpp diff -N files/patch-boost__config__compiler__clang.hpp --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-boost__config__compiler__clang.hpp 29 Feb 2012 22:42:54 -0000 @@ -0,0 +1,8 @@ +--- ./boost/config/compiler/clang.hpp.orig 2010-10-01 11:19:44.000000000 +0200 ++++ ./boost/config/compiler/clang.hpp 2012-02-29 15:20:25.157457434 +0100 +@@ -60,4 +60,4 @@ + + // Macro used to identify the Clang compiler. + #define BOOST_CLANG 1 +- ++#define BOOST_HAS_LONG_LONG 1 --- boost-libs-1.45.0_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Feb 29 22:50:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B40B1065680; Wed, 29 Feb 2012 22:50:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 331588FC17; Wed, 29 Feb 2012 22:50:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q1TMoNGU093132; Wed, 29 Feb 2012 22:50:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q1TMoNIV093123; Wed, 29 Feb 2012 22:50:23 GMT (envelope-from edwin) Date: Wed, 29 Feb 2012 22:50:23 GMT Message-Id: <201202292250.q1TMoNIV093123@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165567: [PATCH] devel/boost-libs: fix use with clang 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: Wed, 29 Feb 2012 22:50:23 -0000 Synopsis: [PATCH] devel/boost-libs: fix use with clang Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed Feb 29 22:50:22 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165567 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 01:08:23 2012 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 4BCDF1065675; Thu, 1 Mar 2012 01:08:23 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 232558FC15; Thu, 1 Mar 2012 01:08:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2118NTC025886; Thu, 1 Mar 2012 01:08:23 GMT (envelope-from eadler@freefall.freebsd.org) Received: (from eadler@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2118MIJ025882; Thu, 1 Mar 2012 01:08:22 GMT (envelope-from eadler) Date: Thu, 1 Mar 2012 01:08:22 GMT Message-Id: <201203010108.q2118MIJ025882@freefall.freebsd.org> To: chalpin@cs.wisc.edu, bsdgeek01@gmail.com, eadler@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: eadler@FreeBSD.org Cc: Subject: Re: ports/164464: port sysutils/dvdisaster does not recognize drives on FreeBSD 9.0-RELEASE 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: Thu, 01 Mar 2012 01:08:23 -0000 Synopsis: port sysutils/dvdisaster does not recognize drives on FreeBSD 9.0-RELEASE State-Changed-From-To: open->feedback State-Changed-By: eadler State-Changed-When: Thu Mar 1 01:08:22 UTC 2012 State-Changed-Why: no patch attached http://www.freebsd.org/cgi/query-pr.cgi?pr=164464 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 02:50:10 2012 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 4597A1065670 for ; Thu, 1 Mar 2012 02:50:10 +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 1894F8FC0A for ; Thu, 1 Mar 2012 02:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q212o9Td019001 for ; Thu, 1 Mar 2012 02:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q212o9rZ019000; Thu, 1 Mar 2012 02:50:09 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 02:50:09 GMT Resent-Message-Id: <201203010250.q212o9rZ019000@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5502E106564A; Thu, 1 Mar 2012 02:42:00 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id EBCC08FC13; Thu, 1 Mar 2012 02:41:59 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q212ftqx074410 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 29 Feb 2012 21:41:56 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q212fqvm073820; Wed, 29 Feb 2012 21:41:52 -0500 (EST) (envelope-from steve) Message-Id: <201203010241.q212fqvm073820@meatwad.mouf.net> Date: Wed, 29 Feb 2012 21:41:52 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: kuriyama@FreeBSD.org Subject: ports/165568: [PATCH] ftp/p5-Net-FTP-Common: update to 7.0.d 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: Thu, 01 Mar 2012 02:50:10 -0000 >Number: 165568 >Category: ports >Synopsis: [PATCH] ftp/p5-Net-FTP-Common: update to 7.0.d >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: Thu Mar 01 02:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: - Update to 7.0.d - New version passes tests Port maintainer (kuriyama@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: update, diff: CVS) >How-To-Repeat: >Fix: --- p5-Net-FTP-Common-7.0.d.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/ftp/p5-Net-FTP-Common/Makefile,v retrieving revision 1.10 diff -u -u -r1.10 Makefile --- Makefile 17 Apr 2008 14:26:36 -0000 1.10 +++ Makefile 1 Mar 2012 02:41:36 -0000 @@ -6,7 +6,7 @@ # PORTNAME= Net-FTP-Common -PORTVERSION= 5.32 +PORTVERSION= 7.0.d CATEGORIES= ftp perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Index: distinfo =================================================================== RCS file: /home/pcvs/ports/ftp/p5-Net-FTP-Common/distinfo,v retrieving revision 1.8 diff -u -u -r1.8 distinfo --- distinfo 19 Mar 2011 12:30:13 -0000 1.8 +++ distinfo 1 Mar 2012 02:41:36 -0000 @@ -1,2 +1,2 @@ -SHA256 (Net-FTP-Common-5.32.tar.gz) = e493946944ebe67643fcf6068992341299652620acde25c9214e572c4ec4fb03 -SIZE (Net-FTP-Common-5.32.tar.gz) = 17619 +SHA256 (Net-FTP-Common-7.0.d.tar.gz) = 42505736758f1dbf9e388886f8d4e84436ea2f2a0b3a8af6306538df9ec3b727 +SIZE (Net-FTP-Common-7.0.d.tar.gz) = 21562 Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/ftp/p5-Net-FTP-Common/pkg-plist,v retrieving revision 1.3 diff -u -u -r1.3 pkg-plist --- pkg-plist 24 Sep 2010 02:03:01 -0000 1.3 +++ pkg-plist 1 Mar 2012 02:41:36 -0000 @@ -1,4 +1,5 @@ %%SITE_PERL%%/TestConfig.pm +%%SITE_PERL%%/Net/FTP/Common.pod %%SITE_PERL%%/Net/FTP/Common.pm @dirrmtry %%SITE_PERL%%/Net/FTP @dirrmtry %%SITE_PERL%%/Net --- p5-Net-FTP-Common-7.0.d.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 02:50:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 915621065672; Thu, 1 Mar 2012 02:50:20 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 69E478FC18; Thu, 1 Mar 2012 02:50:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q212oK9b019210; Thu, 1 Mar 2012 02:50:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q212oKVY019206; Thu, 1 Mar 2012 02:50:20 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 02:50:20 GMT Message-Id: <201203010250.q212oKVY019206@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kuriyama@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165568: [PATCH] ftp/p5-Net-FTP-Common: update to 7.0.d 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: Thu, 01 Mar 2012 02:50:20 -0000 Synopsis: [PATCH] ftp/p5-Net-FTP-Common: update to 7.0.d Responsible-Changed-From-To: freebsd-ports-bugs->kuriyama Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 02:50:19 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165568 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 02:50:57 2012 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35DFD106566C; Thu, 1 Mar 2012 02:50:57 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id E6AB98FC1B; Thu, 1 Mar 2012 02:50:56 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) (authenticated bits=0) by mouf.net (8.14.4/8.14.4) with ESMTP id q212otfY074489 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NOT); Wed, 29 Feb 2012 21:50:56 -0500 (EST) (envelope-from swills@FreeBSD.org) Message-ID: <4F4EE40F.9050907@FreeBSD.org> Date: Wed, 29 Feb 2012 21:50:55 -0500 From: Steve Wills User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20111228 Thunderbird/9.0 MIME-Version: 1.0 To: Sunpoet Po-Chuan Hsieh , freebsd-ports-bugs@FreeBSD.org References: <201202291540.q1TFerws099513@freefall.freebsd.org> In-Reply-To: <201202291540.q1TFerws099513@freefall.freebsd.org> X-Enigmail-Version: 1.1.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mouf.net [204.109.58.86]); Wed, 29 Feb 2012 21:50:56 -0500 (EST) X-Virus-Scanned: clamav-milter 0.97.2 at mouf.net X-Virus-Status: Clean Cc: ruby@FreeBSD.org Subject: Re: ports/165554: [PATCH] devel/ruby-gems: fix and cleanup PLIST 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: Thu, 01 Mar 2012 02:50:57 -0000 Makes sense to me. Assuming you ran it through tinderbox with 1.8 and 1.9 and that it passes, I say go ahead. Steve From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 05:30:16 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB77C106567C for ; Thu, 1 Mar 2012 05:30:16 +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 9FBB78FC1F for ; Thu, 1 Mar 2012 05:30:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q215UG6c064887 for ; Thu, 1 Mar 2012 05:30:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q215UGkV064884; Thu, 1 Mar 2012 05:30:16 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 05:30:16 GMT Resent-Message-Id: <201203010530.q215UGkV064884@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, Armin Pirkovitsch Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DABA7106566C for ; Thu, 1 Mar 2012 05:29:25 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BAFFF8FC18 for ; Thu, 1 Mar 2012 05:29:25 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q215TP4r021334 for ; Thu, 1 Mar 2012 05:29:25 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q215TPWc021333; Thu, 1 Mar 2012 05:29:25 GMT (envelope-from nobody) Message-Id: <201203010529.q215TPWc021333@red.freebsd.org> Date: Thu, 1 Mar 2012 05:29:25 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165570: [PATCH] cad/adms update to 2.3.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: Thu, 01 Mar 2012 05:30:16 -0000 >Number: 165570 >Category: ports >Synopsis: [PATCH] cad/adms update to 2.3.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: Thu Mar 01 05:30:16 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: cad/adms/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/cad/adms/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- cad/adms/Makefile 25 Nov 2011 16:32:03 -0000 1.11 +++ cad/adms/Makefile 18 Feb 2012 20:13:27 -0000 @@ -7,7 +7,7 @@ # PORTNAME= adms -PORTVERSION= 2.2.9 +PORTVERSION= 2.3.0 PORTREVISION= 0 CATEGORIES= cad MASTER_SITES= SF/mot-${PORTNAME}/${PORTNAME}-source/${PORTVERSION:R} @@ -24,4 +24,6 @@ USE_LDCONFIG= yes MAKE_JOBS_SAFE= yes +MAN1= admsXml.1 + .include Index: cad/adms/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/cad/adms/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- cad/adms/distinfo 20 Mar 2011 12:46:07 -0000 1.6 +++ cad/adms/distinfo 18 Feb 2012 19:11:35 -0000 @@ -1,2 +1,2 @@ -SHA256 (adms-2.2.9.tar.gz) = 07a2d13b927a7f23688bbf041388b69b55e70dd6425e75c322f5ec717cb072d8 -SIZE (adms-2.2.9.tar.gz) = 691385 +SHA256 (adms-2.3.0.tar.gz) = 0d14e61b1c8c224c7703c396581ffd293977bc607becfca241d17945a215081f +SIZE (adms-2.3.0.tar.gz) = 639604 Index: cad/adms/pkg-plist =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/cad/adms/pkg-plist,v retrieving revision 1.4 diff -u -r1.4 pkg-plist --- cad/adms/pkg-plist 25 Jul 2008 22:07:29 -0000 1.4 +++ cad/adms/pkg-plist 18 Feb 2012 20:12:41 -0000 @@ -1,4 +1,3 @@ -bin/admsCheck bin/admsXml lib/libadmsAdmstpath.a lib/libadmsAdmstpath.la Index: cad/adms/files/patch-configure =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/cad/adms/files/patch-configure,v retrieving revision 1.3 diff -u -r1.3 patch-configure --- cad/adms/files/patch-configure 29 May 2007 05:37:04 -0000 1.3 +++ cad/adms/files/patch-configure 18 Feb 2012 19:13:46 -0000 @@ -1,26 +1,20 @@ ---- configure.orig Tue May 29 08:40:19 2007 -+++ configure Tue May 29 08:41:29 2007 -@@ -4584,43 +4584,6 @@ - am__fastdepCXX_FALSE= +--- configure.orig 2011-05-13 09:26:24.000000000 +0200 ++++ configure 2012-02-18 20:13:24.549495741 +0100 +@@ -4811,37 +4811,6 @@ + $as_echo "no, using $LN_S" >&6; } fi - -- -- -#force use of flex/bison -if test "x$LEX" != "xflex"; then -- { echo "$as_me:$LINENO: WARNING: Program flex not found (found $LEX)" >&5 --echo "$as_me: WARNING: Program flex not found (found $LEX)" >&2;} -- { { echo "$as_me:$LINENO: error: Please install gnu flex from http://www.gnu.org/software/flex/" >&5 --echo "$as_me: error: Please install gnu flex from http://www.gnu.org/software/flex/" >&2;} -- { (exit 1); exit 1; }; } +- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Program flex not found (found $LEX)" >&5 +-$as_echo "$as_me: WARNING: Program flex not found (found $LEX)" >&2;} +- as_fn_error $? "Please install gnu flex from http://www.gnu.org/software/flex/" "$LINENO" 5 -fi -if test "x$YACC" != "xbison -y"; then -- { echo "$as_me:$LINENO: WARNING: Program bison not found (found $YACC)" >&5 --echo "$as_me: WARNING: Program bison not found (found $YACC)" >&2;} -- { { echo "$as_me:$LINENO: error: Please install gnu bison from http://www.gnu.org/software/bison/" >&5 --echo "$as_me: error: Please install gnu bison from http://www.gnu.org/software/bison/" >&2;} -- { (exit 1); exit 1; }; } +- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Program bison not found (found $YACC)" >&5 +-$as_echo "$as_me: WARNING: Program bison not found (found $YACC)" >&2;} +- as_fn_error $? "Please install gnu bison from http://www.gnu.org/software/bison/" "$LINENO" 5 -fi - -#advice use of gcc @@ -33,14 +27,14 @@ - CFLAGS="$CFLAGS -Wall" - esac -else -- { echo "$as_me:$LINENO: WARNING: Seems that the selected C-compiler is not gnu gcc C-compiler" >&5 --echo "$as_me: WARNING: Seems that the selected C-compiler is not gnu gcc C-compiler" >&2;} -- { echo "$as_me:$LINENO: WARNING: We advice you to use gcc as C-compiler" >&5 --echo "$as_me: WARNING: We advice you to use gcc as C-compiler" >&2;} -- { echo "$as_me:$LINENO: WARNING: You can install it from http://www.gnu.org/software/gcc/" >&5 --echo "$as_me: WARNING: You can install it from http://www.gnu.org/software/gcc/" >&2;} +- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Seems that the selected C-compiler is not gnu gcc C-compiler" >&5 +-$as_echo "$as_me: WARNING: Seems that the selected C-compiler is not gnu gcc C-compiler" >&2;} +- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: We advice you to use gcc as C-compiler" >&5 +-$as_echo "$as_me: WARNING: We advice you to use gcc as C-compiler" >&2;} +- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: You can install it from http://www.gnu.org/software/gcc/" >&5 +-$as_echo "$as_me: WARNING: You can install it from http://www.gnu.org/software/gcc/" >&2;} -fi - - # Checks for header files. - - { echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 + # Libtool initialisation. + # Make sure we can run config.sub. + $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 05:31:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E1552106566B; Thu, 1 Mar 2012 05:31:02 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B4D818FC08; Thu, 1 Mar 2012 05:31:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q215V2q0068740; Thu, 1 Mar 2012 05:31:02 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q215V2wo068731; Thu, 1 Mar 2012 05:31:02 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 05:31:02 GMT Message-Id: <201203010531.q215V2wo068731@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165570: [PATCH] cad/adms update to 2.3.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: Thu, 01 Mar 2012 05:31:03 -0000 Synopsis: [PATCH] cad/adms update to 2.3.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 05:31:01 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165570 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 05:40:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A9A8D1065672 for ; Thu, 1 Mar 2012 05:40:11 +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 694758FC0C for ; Thu, 1 Mar 2012 05:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q215eBXb076019 for ; Thu, 1 Mar 2012 05:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q215eB4c076017; Thu, 1 Mar 2012 05:40:11 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 05:40:11 GMT Resent-Message-Id: <201203010540.q215eB4c076017@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, Armin Pirkovitsch Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2D50106564A for ; Thu, 1 Mar 2012 05:30:39 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id DE8198FC12 for ; Thu, 1 Mar 2012 05:30:39 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q215Udd2021647 for ; Thu, 1 Mar 2012 05:30:39 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q215UdlU021645; Thu, 1 Mar 2012 05:30:39 GMT (envelope-from nobody) Message-Id: <201203010530.q215UdlU021645@red.freebsd.org> Date: Thu, 1 Mar 2012 05:30:39 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165571: [PATCH] databases/adstudio update to 10.0.7 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: Thu, 01 Mar 2012 05:40:11 -0000 >Number: 165571 >Category: ports >Synopsis: [PATCH] databases/adstudio update to 10.0.7 >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: Thu Mar 01 05:40:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: databases/adstudio/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/databases/adstudio/Makefile,v retrieving revision 1.48 diff -u -r1.48 Makefile --- databases/adstudio/Makefile 29 Dec 2011 15:23:54 -0000 1.48 +++ databases/adstudio/Makefile 18 Feb 2012 19:48:28 -0000 @@ -6,7 +6,7 @@ # PORTNAME= adstudio -PORTVERSION= 10.0.4 +PORTVERSION= 10.0.7 CATEGORIES= databases devel java MASTER_SITES= http://dd1.aquafold.com/download/v${PORTVERSION:R}.0/java/ DISTNAME= ads-java-novm-${PORTVERSION} Index: databases/adstudio/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/databases/adstudio/distinfo,v retrieving revision 1.41 diff -u -r1.41 distinfo --- databases/adstudio/distinfo 29 Dec 2011 15:23:54 -0000 1.41 +++ databases/adstudio/distinfo 18 Feb 2012 21:27:30 -0000 @@ -1,2 +1,2 @@ -SHA256 (ads-java-novm-10.0.4.tar.gz) = 28994eb552242f7d23b24a6a330507645e4902532eba7c48debc9aa9ae8cd046 -SIZE (ads-java-novm-10.0.4.tar.gz) = 146353025 +SHA256 (ads-java-novm-10.0.7.tar.gz) = f6ff4421b85ec1c8a3d79575fa079974a6ef5d8a981a1291c7dd9e1f7861f5b5 +SIZE (ads-java-novm-10.0.7.tar.gz) = 146561121 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 05:40:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 053CF1065674 for ; Thu, 1 Mar 2012 05:40:12 +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 D0B4E8FC14 for ; Thu, 1 Mar 2012 05:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q215eBPr076029 for ; Thu, 1 Mar 2012 05:40:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q215eBPJ076028; Thu, 1 Mar 2012 05:40:11 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 05:40:11 GMT Resent-Message-Id: <201203010540.q215eBPJ076028@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, Armin Pirkovitsch Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9EB7F1065672 for ; Thu, 1 Mar 2012 05:32:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 876968FC15 for ; Thu, 1 Mar 2012 05:32:27 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q215WRjl022044 for ; Thu, 1 Mar 2012 05:32:27 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q215WRdQ022030; Thu, 1 Mar 2012 05:32:27 GMT (envelope-from nobody) Message-Id: <201203010532.q215WRdQ022030@red.freebsd.org> Date: Thu, 1 Mar 2012 05:32:27 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165572: [PATCH] databases/hk_classes update to 0.8.3, databases/knoda update to 0.8.3 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: Thu, 01 Mar 2012 05:40:12 -0000 >Number: 165572 >Category: ports >Synopsis: [PATCH] databases/hk_classes update to 0.8.3, databases/knoda update to 0.8.3 >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: Thu Mar 01 05:40:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: databases/hk_classes/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/databases/hk_classes/Makefile,v retrieving revision 1.48 diff -u -r1.48 Makefile --- databases/hk_classes/Makefile 6 Feb 2012 12:25:49 -0000 1.48 +++ databases/hk_classes/Makefile 1 Mar 2012 05:26:17 -0000 @@ -5,8 +5,7 @@ # $FreeBSD: ports/databases/hk_classes/Makefile,v 1.48 2012/02/06 12:25:49 miwi Exp $ PORTNAME= hk_classes -PORTVERSION= 0.8.1 -PORTREVISION= 6 +PORTVERSION= 0.8.3 CATEGORIES= databases MASTER_SITES= SF/hk-classes/${PORTNAME}/${PORTVERSION} @@ -14,7 +13,8 @@ COMMENT= C++ Library for rapid development of database applications BUILD_DEPENDS= ${LOCALBASE}/include/argp.h:${PORTSDIR}/devel/argp-standalone -LIB_DEPENDS= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig +LIB_DEPENDS= fontconfig.1:${PORTSDIR}/x11-fonts/fontconfig \ + xml2.5:${PORTSDIR}/textproc/libxml2 USE_BZIP2= yes USE_ICONV= yes @@ -43,11 +43,8 @@ ODBC "Build unixODBC driver" off \ PARADOX "Build Paradox driver" off \ SQLITE2 "Build with sqlite2 driver" off \ - SQLITE3 "Build with sqlite3 driver" off - -MAN1= hk_report.1man hk_actionquery.1man hk_exportxml.1man \ - hk_exporthtml.1man hk_exportcsv.1man hk_importcsv.1man \ - hk_dbcopy.1man + SQLITE3 "Build with sqlite3 driver" off \ + DBASE "Build with dbase driver" off .include @@ -64,6 +61,13 @@ PLIST_SUB+= MYSQL="@comment " .endif +.if !defined(WITH_DBASE) +CONFIGURE_ARGS+= --without-dbase +PLIST_SUB+= DBASE="@comment " +.else +PLIST_SUB+= DBASE="" +.endif + .if defined(WITH_POSTGRESQL) USE_PGSQL= yes CONFIGURE_ARGS+= --with-postgres-incdir=${LOCALBASE}/include/ \ @@ -130,6 +134,15 @@ PLIST_SUB+= SQLITE3="@comment " .endif +post-patch: + ${REINPLACE_CMD} -e "s|INCLUDES = -I../hk_classes \ + -I./pxlib|INCLUDES = -I../hk_classes -I./pxlib \ + -I${LOCALBASE}/include|g" \ + ${WRKSRC}/hk_paradoxclasses/Makefile.in + +post-configure: + ${REINPLACE_CMD} -e "s| -I|','|g" ${WRKSRC}/python/setup.py + post-install: @${SED} -e 's#%%PREFIX%%#${PREFIX}#' ${FILESDIR}/hk_classes.sh > \ ${PREFIX}/etc/rc.d/hk_classes.sh; \ Index: databases/hk_classes/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/databases/hk_classes/distinfo,v retrieving revision 1.13 diff -u -r1.13 distinfo --- databases/hk_classes/distinfo 20 Mar 2011 12:47:05 -0000 1.13 +++ databases/hk_classes/distinfo 19 Feb 2012 18:04:43 -0000 @@ -1,2 +1,2 @@ -SHA256 (hk_classes-0.8.1.tar.bz2) = 9e403fe153962770676099c2346a74b96953eba790a289303c49fe448c958603 -SIZE (hk_classes-0.8.1.tar.bz2) = 1413828 +SHA256 (hk_classes-0.8.3.tar.bz2) = d57a8a2f3c2fb534e01ee5d7b6c5bb650536f20cb7e88a721ec9da7b5befb593 +SIZE (hk_classes-0.8.3.tar.bz2) = 1532249 Index: databases/hk_classes/pkg-plist =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/databases/hk_classes/pkg-plist,v retrieving revision 1.16 diff -u -r1.16 pkg-plist --- databases/hk_classes/pkg-plist 13 Jun 2009 15:52:42 -0000 1.16 +++ databases/hk_classes/pkg-plist 20 Feb 2012 04:39:15 -0000 @@ -1,11 +1,4 @@ etc/rc.d/hk_classes.sh -bin/hk_actionquery -bin/hk_dbcopy -bin/hk_exportcsv -bin/hk_exporthtml -bin/hk_exportxml -bin/hk_importcsv -bin/hk_report include/hk_classes/hk_actionquery.h include/hk_classes/hk_button.h include/hk_classes/hk_class.h @@ -41,6 +34,7 @@ include/hk_classes/hk_key.h include/hk_classes/hk_label.h include/hk_classes/hk_mimetype.h +include/hk_classes/hk_module.h include/hk_classes/hk_presentation.h include/hk_classes/hk_qbe.h include/hk_classes/hk_referentialintegrity.h @@ -60,6 +54,10 @@ %%MYSQL%%lib/hk_classes/drivers/libhk_mysqldriver.la %%MYSQL%%lib/hk_classes/drivers/libhk_mysqldriver.so %%MYSQL%%lib/hk_classes/drivers/libhk_mysqldriver.so.3 +%%DBASE%%lib/hk_classes/drivers/libhk_dbasedriver.a +%%DBASE%%lib/hk_classes/drivers/libhk_dbasedriver.la +%%DBASE%%lib/hk_classes/drivers/libhk_dbasedriver.so +%%DBASE%%lib/hk_classes/drivers/libhk_dbasedriver.so.0 %%ODBC%%lib/hk_classes/drivers/libhk_odbcdriver.a %%ODBC%%lib/hk_classes/drivers/libhk_odbcdriver.la %%ODBC%%lib/hk_classes/drivers/libhk_odbcdriver.so @@ -86,7 +84,7 @@ lib/hk_classes/libhk_classes.a lib/hk_classes/libhk_classes.la lib/hk_classes/libhk_classes.so -lib/hk_classes/libhk_classes.so.13 +lib/hk_classes/libhk_classes.so.15 @dirrm lib/hk_classes/drivers @dirrm lib/hk_classes @dirrm include/hk_classes Index: databases/hk_classes/files/patch-configure =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/databases/hk_classes/files/patch-configure,v retrieving revision 1.4 diff -u -r1.4 patch-configure --- databases/hk_classes/files/patch-configure 23 Jul 2006 13:28:50 -0000 1.4 +++ databases/hk_classes/files/patch-configure 19 Feb 2012 20:44:14 -0000 @@ -1,6 +1,6 @@ ---- configure.orig Sat Jul 22 12:08:15 2006 -+++ configure Sat Jul 22 12:08:43 2006 -@@ -20549,7 +20549,7 @@ +--- configure.orig 2006-12-17 15:27:45.000000000 +0100 ++++ configure 2012-02-19 20:23:04.014494956 +0100 +@@ -20681,7 +20681,7 @@ py_version=`$PYTHON -c "from distutils.sysconfig import *; \ from string import join; \ print join(get_config_vars('VERSION'))"` @@ -9,12 +9,3 @@ if test -n "$PYTHON_VERSION"; then py_version=$PYTHON_VERSION else -@@ -20815,7 +20815,7 @@ - fi - - if test "x$with_fontconfig_libdir" != "x"; then -- FONTCONFIGLIBDIR=$with_fontconifg_libdir -+ FONTCONFIGLIBDIR=$with_fontconfig_libdir - fi - - ac_save_LIBS="$LIBS" Index: databases/hk_classes/files/patch-hk_classes::hk_database.h =================================================================== RCS file: databases/hk_classes/files/patch-hk_classes::hk_database.h diff -N databases/hk_classes/files/patch-hk_classes::hk_database.h --- databases/hk_classes/files/patch-hk_classes::hk_database.h 16 Jul 2004 03:19:43 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,10 +0,0 @@ ---- hk_classes/hk_database.h.orig Thu Jul 15 22:02:22 2004 -+++ hk_classes/hk_database.h Thu Jul 15 22:02:36 2004 -@@ -14,6 +14,7 @@ - #include - #include - #include -+#include - #include "hk_presentation.h" - using namespace std; - Index: databases/hk_classes/files/patch-hk_classes_hk_database.h =================================================================== RCS file: databases/hk_classes/files/patch-hk_classes_hk_database.h diff -N databases/hk_classes/files/patch-hk_classes_hk_database.h --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ databases/hk_classes/files/patch-hk_classes_hk_database.h 26 Feb 2012 09:22:08 -0000 @@ -0,0 +1,10 @@ +--- hk_classes/hk_database.h.orig Thu Jul 15 22:02:22 2004 ++++ hk_classes/hk_database.h Thu Jul 15 22:02:36 2004 +@@ -14,6 +14,7 @@ + #include + #include + #include ++#include + #include "hk_presentation.h" + using namespace std; + Index: databases/hk_classes/files/patch-utilities::Makefile.in =================================================================== RCS file: databases/hk_classes/files/patch-utilities::Makefile.in diff -N databases/hk_classes/files/patch-utilities::Makefile.in --- databases/hk_classes/files/patch-utilities::Makefile.in 23 Jul 2006 13:28:50 -0000 1.4 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,33 +0,0 @@ ---- utilities/Makefile.in.orig Sat Jul 22 12:09:44 2006 -+++ utilities/Makefile.in Sat Jul 22 12:11:59 2006 -@@ -237,22 +237,22 @@ - target_alias = @target_alias@ - INCLUDES = -I../hk_classes - AM_CXXFLAGS = -Wall -W -Wconversion -Wshadow -Wcast-qual -Wwrite-strings --hk_report_LDADD = ../hk_classes/libhk_classes.la -ldl -+hk_report_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} - hk_report_SOURCES = hk_reportutility.cpp - --#hk_webform_LDADD = ../hk_classes/libhk_classes.la -ldl -+#hk_webform_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} - #hk_webform_SOURCES = hk_webformutility.cpp --hk_actionquery_LDADD = ../hk_classes/libhk_classes.la -ldl -+hk_actionquery_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} - hk_actionquery_SOURCES = hk_actionqueryutility.cpp --hk_exportxml_LDADD = ../hk_classes/libhk_classes.la -ldl -+hk_exportxml_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} - hk_exportxml_SOURCES = hk_exportxmlutility.cpp --hk_exportcsv_LDADD = ../hk_classes/libhk_classes.la -ldl -+hk_exportcsv_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} - hk_exportcsv_SOURCES = hk_exportcsvutility.cpp --hk_exporthtml_LDADD = ../hk_classes/libhk_classes.la -ldl -+hk_exporthtml_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} - hk_exporthtml_SOURCES = hk_exporthtmlutility.cpp --hk_importcsv_LDADD = ../hk_classes/libhk_classes.la -ldl -+hk_importcsv_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} - hk_importcsv_SOURCES = hk_importcsvutility.cpp --hk_dbcopy_LDFLAGS = -lhk_classes -ldl -L../hk_classes -+hk_dbcopy_LDFLAGS = -lhk_classes -largp ${LIBPTHREAD} -L../hk_classes - hk_dbcopy_SOURCES = hk_dbcopyutility.cpp - man_MANS = hk_report.1man hk_actionquery.1man hk_dbcopy.1man hk_exportxml.1man \ - hk_exporthtml.1man hk_exportcsv.1man hk_importcsv.1man Index: databases/hk_classes/files/patch-utilities_Makefile.in =================================================================== RCS file: databases/hk_classes/files/patch-utilities_Makefile.in diff -N databases/hk_classes/files/patch-utilities_Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ databases/hk_classes/files/patch-utilities_Makefile.in 26 Feb 2012 09:22:34 -0000 @@ -0,0 +1,33 @@ +--- utilities/Makefile.in.orig 2006-12-17 15:27:52.000000000 +0100 ++++ utilities/Makefile.in 2012-02-19 19:21:04.761495232 +0100 +@@ -248,22 +248,22 @@ + target_alias = @target_alias@ + INCLUDES = -I../hk_classes + AM_CXXFLAGS = -Wall -W -Wconversion -Wshadow -Wcast-qual -Wwrite-strings -I@XMLINCLUDE@ @BITARCHITECTURE@ +-hk_report_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_report_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} + hk_report_SOURCES = hk_reportutility.cpp + +-#hk_webform_LDADD = ../hk_classes/libhk_classes.la -ldl ++#hk_webform_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} + #hk_webform_SOURCES = hk_webformutility.cpp +-hk_actionquery_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_actionquery_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} + hk_actionquery_SOURCES = hk_actionqueryutility.cpp +-hk_exportxml_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_exportxml_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} + hk_exportxml_SOURCES = hk_exportxmlutility.cpp +-hk_exportcsv_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_exportcsv_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} + hk_exportcsv_SOURCES = hk_exportcsvutility.cpp +-hk_exporthtml_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_exporthtml_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} + hk_exporthtml_SOURCES = hk_exporthtmlutility.cpp +-hk_importcsv_LDADD = ../hk_classes/libhk_classes.la -ldl ++hk_importcsv_LDADD = ../hk_classes/libhk_classes.la -largp ${LIBPTHREAD} + hk_importcsv_SOURCES = hk_importcsvutility.cpp +-hk_dbcopy_LDFLAGS = -lhk_classes -ldl -L../hk_classes ++hk_dbcopy_LDFLAGS = -lhk_classes -largp ${LIBPTHREAD} -L../hk_classes + hk_dbcopy_SOURCES = hk_dbcopyutility.cpp + man_MANS = hk_report.1man hk_actionquery.1man hk_dbcopy.1man hk_exportxml.1man \ + hk_exporthtml.1man hk_exportcsv.1man hk_importcsv.1man Index: databases/knoda/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/databases/knoda/Makefile,v retrieving revision 1.38 diff -u -r1.38 Makefile --- databases/knoda/Makefile 4 Dec 2010 07:30:44 -0000 1.38 +++ databases/knoda/Makefile 20 Feb 2012 05:21:58 -0000 @@ -5,8 +5,7 @@ # $FreeBSD: ports/databases/knoda/Makefile,v 1.38 2010/12/04 07:30:44 ade Exp $ PORTNAME= knoda -PORTVERSION= 0.8.1 -PORTREVISION= 5 +PORTVERSION= 0.8.3 CATEGORIES= databases MASTER_SITES= SF @@ -14,7 +13,7 @@ COMMENT= Database frontend for KDE BUILD_DEPENDS= ${LOCALBASE}/include/argp.h:${PORTSDIR}/devel/argp-standalone -LIB_DEPENDS= hk_classes.13:${PORTSDIR}/databases/hk_classes +LIB_DEPENDS= hk_classes.15:${PORTSDIR}/databases/hk_classes USE_BZIP2= yes USE_KDELIBS_VER= 3 Index: databases/knoda/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/databases/knoda/distinfo,v retrieving revision 1.12 diff -u -r1.12 distinfo --- databases/knoda/distinfo 20 Mar 2011 12:47:08 -0000 1.12 +++ databases/knoda/distinfo 19 Feb 2012 15:41:01 -0000 @@ -1,2 +1,2 @@ -SHA256 (knoda-0.8.1.tar.bz2) = 8855374cede5fa5ca6321c80f200f62577efe4f9b0ef416541d8e05292ea3993 -SIZE (knoda-0.8.1.tar.bz2) = 4463670 +SHA256 (knoda-0.8.3.tar.bz2) = 0ec5eb90c0efd6c76f3b0e86e1a9af4dd4800dcaff170ad35d86025d8d13eeb4 +SIZE (knoda-0.8.3.tar.bz2) = 4619446 Index: databases/knoda/pkg-plist =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/databases/knoda/pkg-plist,v retrieving revision 1.12 diff -u -r1.12 pkg-plist --- databases/knoda/pkg-plist 23 Jul 2006 13:28:50 -0000 1.12 +++ databases/knoda/pkg-plist 20 Feb 2012 19:42:50 -0000 @@ -36,6 +36,9 @@ include/hk_kdelineedit.h include/hk_kdememo.h include/hk_kdemessages.h +include/hk_kdemodule.h +include/hk_kdemodulepart.h +include/hk_kdemodulepartfactory.h include/hk_kdenewpassworddialog.h include/hk_kdenewpassworddialogbase.h include/hk_kdepassworddialog.h @@ -85,6 +88,9 @@ lib/kde3/libhk_kdeqbepart.a lib/kde3/libhk_kdeqbepart.la lib/kde3/libhk_kdeqbepart.so +lib/kde3/libhk_kdemodulepart.a +lib/kde3/libhk_kdemodulepart.la +lib/kde3/libhk_kdemodulepart.so lib/kde3/libhk_kdequerypart.a lib/kde3/libhk_kdequerypart.la lib/kde3/libhk_kdequerypart.so @@ -106,6 +112,8 @@ share/apps/hk_kdeclasses/hk_kdegridpart.rc share/apps/hk_kdeclasses/hk_kdeinterpreterdialog.rc share/apps/hk_kdeclasses/hk_kdeqbepart.rc +share/apps/hk_kdeclasses/hk_kdemodule.rc +share/apps/hk_kdeclasses/hk_kdemodulepart.rc share/apps/hk_kdeclasses/hk_kdequery.rc share/apps/hk_kdeclasses/hk_kdequerypart.rc share/apps/hk_kdeclasses/hk_kdequerypartqbe.rc @@ -120,6 +128,7 @@ share/apps/hk_kdeclasses/pics/boolean22x22.png share/apps/hk_kdeclasses/pics/button.png share/apps/hk_kdeclasses/pics/combobox22x22.png +share/apps/hk_kdeclasses/pics/datebutton.png share/apps/hk_kdeclasses/pics/dbdesigner.png share/apps/hk_kdeclasses/pics/delete.png share/apps/hk_kdeclasses/pics/designmode.png @@ -172,6 +181,7 @@ share/doc/HTML/en/knoda/formdesign.png share/doc/HTML/en/knoda/formdesign1.png share/doc/HTML/en/knoda/formdesign2.png +share/doc/HTML/en/knoda/formfilter.png share/doc/HTML/en/knoda/formreport.png share/doc/HTML/en/knoda/formreportproperty.png share/doc/HTML/en/knoda/gridcolumndefinition.png @@ -225,6 +235,7 @@ share/locale/fr/LC_MESSAGES/knoda.mo share/locale/hu/LC_MESSAGES/knoda.mo share/locale/ru/LC_MESSAGES/knoda.mo +share/locale/uk/LC_MESSAGES/knoda.mo share/mimelnk/application/x-hk_classes-sqlite2.desktop share/mimelnk/application/x-hk_classes-sqlite3.desktop share/mimelnk/application/x-hk_connection.desktop @@ -234,6 +245,7 @@ share/services/hk_kdeformpart.desktop share/services/hk_kdegridpart.desktop share/services/hk_kdeqbepart.desktop +share/services/hk_kdemodulepart.desktop share/services/hk_kdequerypart.desktop share/services/hk_kdereportpart.desktop share/services/hk_kdetablepart.desktop >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 05:40:21 2012 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 9E9D5106566B; Thu, 1 Mar 2012 05:40:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 721488FC18; Thu, 1 Mar 2012 05:40:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q215eLRU076173; Thu, 1 Mar 2012 05:40:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q215eLWn076169; Thu, 1 Mar 2012 05:40:21 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 05:40:21 GMT Message-Id: <201203010540.q215eLWn076169@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165571: [PATCH] databases/adstudio update to 10.0.7 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: Thu, 01 Mar 2012 05:40:21 -0000 Synopsis: [PATCH] databases/adstudio update to 10.0.7 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 05:40:21 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165571 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 05:40:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 708CF106564A; Thu, 1 Mar 2012 05:40:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 43BFF8FC16; Thu, 1 Mar 2012 05:40:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q215eSA9076287; Thu, 1 Mar 2012 05:40:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q215eSPU076283; Thu, 1 Mar 2012 05:40:28 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 05:40:28 GMT Message-Id: <201203010540.q215eSPU076283@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165572: [PATCH] databases/hk_classes update to 0.8.3, databases/knoda update to 0.8.3 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: Thu, 01 Mar 2012 05:40:28 -0000 Synopsis: [PATCH] databases/hk_classes update to 0.8.3, databases/knoda update to 0.8.3 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 05:40:27 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165572 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 06:30:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F837106566C for ; Thu, 1 Mar 2012 06:30:17 +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 591FD8FC0C for ; Thu, 1 Mar 2012 06:30:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q216UHBd020558 for ; Thu, 1 Mar 2012 06:30:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q216UGdl020555; Thu, 1 Mar 2012 06:30:16 GMT (envelope-from gnats) Date: Thu, 1 Mar 2012 06:30:16 GMT Message-Id: <201203010630.q216UGdl020555@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: =?ISO-8859-15?Q?Bj=F6rn_K=F6nig?= Cc: Subject: Re: ports/164941: [UPDATE] [NEW PORTS] jamvm/classpath w/o jdk X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: =?ISO-8859-15?Q?Bj=F6rn_K=F6nig?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2012 06:30:17 -0000 The following reply was made to PR ports/164941; it has been noted by GNATS. From: =?ISO-8859-15?Q?Bj=F6rn_K=F6nig?= To: bug-followup@FreeBSD.org, skrabban@gmail.com Cc: Subject: Re: ports/164941: [UPDATE] [NEW PORTS] jamvm/classpath w/o jdk Date: Thu, 01 Mar 2012 07:29:00 +0100 This is a cryptographically signed message in MIME format. --------------ms080700020908080804000609 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: quoted-printable Due to private affairs I can't maintain the ports at the moment. Since I = don't want to block updates and improvements I would like to pass the=20 maintainership of all ports that are involved. --------------ms080700020908080804000609 Content-Type: application/pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIUkjCC BjQwggQcoAMCAQICAR4wDQYJKoZIhvcNAQEFBQAwfTELMAkGA1UEBhMCSUwxFjAUBgNVBAoT DVN0YXJ0Q29tIEx0ZC4xKzApBgNVBAsTIlNlY3VyZSBEaWdpdGFsIENlcnRpZmljYXRlIFNp Z25pbmcxKTAnBgNVBAMTIFN0YXJ0Q29tIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA3 MTAyNDIxMDE1NVoXDTE3MTAyNDIxMDE1NVowgYwxCzAJBgNVBAYTAklMMRYwFAYDVQQKEw1T dGFydENvbSBMdGQuMSswKQYDVQQLEyJTZWN1cmUgRGlnaXRhbCBDZXJ0aWZpY2F0ZSBTaWdu aW5nMTgwNgYDVQQDEy9TdGFydENvbSBDbGFzcyAxIFByaW1hcnkgSW50ZXJtZWRpYXRlIENs aWVudCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMcJg8zOLdgasSmkLhOr lr6KMoOMpohBllVHrdRvEg/q6r8jR+EK75xCGhR8ToREoqe7zM9/UnC6TS2y9UKTpT1v7RSM zR0t6ndl0TWBuUr/UXBhPk+Kmy7bI4yW4urC+y7P3/1/X7U8ocb8VpH/Clt+4iq7nirMcNh6 qJR+xjOhV+VHzQMALuGYn5KZmc1NbJQYclsGkDxDz2UbFqE2+6vIZoL+jb9x4Pa5gNf1TwSD kOkikZB1xtB4ZqtXThaABSONdfmv/Z1pua3FYxnCFmdr/+N2JLKutIxMYqQOJebr/f/h5t95 m4JgrM3Y/w7YX9d7YAL9jvN4SydHsU6n65cCAwEAAaOCAa0wggGpMA8GA1UdEwEB/wQFMAMB Af8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRTcu2SnODaywFcfH6WNU7y1LhRgjAfBgNV HSMEGDAWgBROC+8apEBbpRdphzDKNGhD0EGu8jBmBggrBgEFBQcBAQRaMFgwJwYIKwYBBQUH MAGGG2h0dHA6Ly9vY3NwLnN0YXJ0c3NsLmNvbS9jYTAtBggrBgEFBQcwAoYhaHR0cDovL3d3 dy5zdGFydHNzbC5jb20vc2ZzY2EuY3J0MFsGA1UdHwRUMFIwJ6AloCOGIWh0dHA6Ly93d3cu c3RhcnRzc2wuY29tL3Nmc2NhLmNybDAnoCWgI4YhaHR0cDovL2NybC5zdGFydHNzbC5jb20v c2ZzY2EuY3JsMIGABgNVHSAEeTB3MHUGCysGAQQBgbU3AQIBMGYwLgYIKwYBBQUHAgEWImh0 dHA6Ly93d3cuc3RhcnRzc2wuY29tL3BvbGljeS5wZGYwNAYIKwYBBQUHAgEWKGh0dHA6Ly93 d3cuc3RhcnRzc2wuY29tL2ludGVybWVkaWF0ZS5wZGYwDQYJKoZIhvcNAQEFBQADggIBAAqD CH14qywGXLhjjF6uHLkjd02hcdh9hrw+VUsv+q1eeQWB21jWj3kJ96AUlPCoEGZ/ynJNScWy 6QMVQjbbMXltUfO4n4bGGdKo3awPWp61tjAFgraLJgDk+DsSvUD6EowjMTNx25GQgyYJ5RPI zKKR9tQW8gGK+2+RHxkUCTbYFnL6kl8Ch507rUdPPipJ9CgJFws3kDS3gOS5WFMxcjO5DwKf KSETEPrHh7p5shuuNktvsv6hxHTLhiMKX893gxdT3XLS9OKmCv87vkINQcNEcIIoFWbP9HOR z9v3vQwR4e3ksLc2JZOAFK+ssS5XMEoznzpihEP0PLc4dCBYjbvSD7kxgDwZ+Aj8Q9PkbvE9 sIPP7ON0fz095HdThKjiVJe6vofq+n6b1NBc8XdrQvBmunwxD5nvtTW4vtN6VY7mUCmxsCie uoBJ9OlqmsVWQvifIYf40dJPZkk9YgGTzWLpXDSfLSplbY2LL9C9U0ptvjcDjefLTvqSFc7t w1sEhF0n/qpA2r0GpvkLRDmcSwVyPvmjFBGqUp/pNy8ZuPGQmHwFi2/14+xeSUDG2bwnsYJQ G2EdJCB6luQ57GEnTA/yKZSTKI8dDQa8Sd3zfXb19mOgSF0bBdXbuKhEpuP9wirslFe6fQ1t 5j5R0xi72MZ8ikMu1RQZKCyDbMwazlHiMIIHKTCCBhGgAwIBAgIDA5AwMA0GCSqGSIb3DQEB BQUAMIGMMQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMi U2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzE4MDYGA1UEAxMvU3RhcnRDb20g Q2xhc3MgMSBQcmltYXJ5IEludGVybWVkaWF0ZSBDbGllbnQgQ0EwHhcNMTIwMTE5MDY0MjAw WhcNMTMwMTE4MTkwOTA4WjBpMRkwFwYDVQQNExAxVTZ5MzVJT0FFVWY1Z3pEMSIwIAYDVQQD DBlia29lbmlnQGFscGhhLXRpZXJjaGVuLmRlMSgwJgYJKoZIhvcNAQkBFhlia29lbmlnQGFs cGhhLXRpZXJjaGVuLmRlMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA12dR+gfg IPOzXzNWD5ZiFqYGDXlDlNShMjLngNUEXANtUFPjKsfO1jriK0j/zt11UkCs4xPj62klb/WN wV3IHp5mpgUr7RmJydHdaF/f161csWj09hTOy/hVzyOZNoSqcTiXwgP5rGUM5Auoop5devur qwsoAOZsW5dEyifM657b/H5g7p4HAC0k9YosGyjAs75SuygfvdVFRoO3hFVXFZiiMoGWkao8 rZPeyqEziHvCdHgeojRBEiqwHkKOpbVWACDGVi6RIM1LfSufrplbf4n0dFc8QTSfP28TDUKk L1ruLUSJe5uaLBvCQtk+2FMT4VFcAGE1hsBLFonLBxKy9QIDAQABo4IDtDCCA7AwCQYDVR0T BAIwADALBgNVHQ8EBAMCBLAwHQYDVR0lBBYwFAYIKwYBBQUHAwIGCCsGAQUFBwMEMB0GA1Ud DgQWBBQWSHYvmKVD9OZUaXeD6wqrzR4xIjAfBgNVHSMEGDAWgBRTcu2SnODaywFcfH6WNU7y 1LhRgjAkBgNVHREEHTAbgRlia29lbmlnQGFscGhhLXRpZXJjaGVuLmRlMIICIQYDVR0gBIIC GDCCAhQwggIQBgsrBgEEAYG1NwECAjCCAf8wLgYIKwYBBQUHAgEWImh0dHA6Ly93d3cuc3Rh cnRzc2wuY29tL3BvbGljeS5wZGYwNAYIKwYBBQUHAgEWKGh0dHA6Ly93d3cuc3RhcnRzc2wu Y29tL2ludGVybWVkaWF0ZS5wZGYwgfcGCCsGAQUFBwICMIHqMCcWIFN0YXJ0Q29tIENlcnRp ZmljYXRpb24gQXV0aG9yaXR5MAMCAQEagb5UaGlzIGNlcnRpZmljYXRlIHdhcyBpc3N1ZWQg YWNjb3JkaW5nIHRvIHRoZSBDbGFzcyAxIFZhbGlkYXRpb24gcmVxdWlyZW1lbnRzIG9mIHRo ZSBTdGFydENvbSBDQSBwb2xpY3ksIHJlbGlhbmNlIG9ubHkgZm9yIHRoZSBpbnRlbmRlZCBw dXJwb3NlIGluIGNvbXBsaWFuY2Ugb2YgdGhlIHJlbHlpbmcgcGFydHkgb2JsaWdhdGlvbnMu MIGcBggrBgEFBQcCAjCBjzAnFiBTdGFydENvbSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAD AgECGmRMaWFiaWxpdHkgYW5kIHdhcnJhbnRpZXMgYXJlIGxpbWl0ZWQhIFNlZSBzZWN0aW9u ICJMZWdhbCBhbmQgTGltaXRhdGlvbnMiIG9mIHRoZSBTdGFydENvbSBDQSBwb2xpY3kuMDYG A1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwuc3RhcnRzc2wuY29tL2NydHUxLWNybC5jcmww gY4GCCsGAQUFBwEBBIGBMH8wOQYIKwYBBQUHMAGGLWh0dHA6Ly9vY3NwLnN0YXJ0c3NsLmNv bS9zdWIvY2xhc3MxL2NsaWVudC9jYTBCBggrBgEFBQcwAoY2aHR0cDovL2FpYS5zdGFydHNz bC5jb20vY2VydHMvc3ViLmNsYXNzMS5jbGllbnQuY2EuY3J0MCMGA1UdEgQcMBqGGGh0dHA6 Ly93d3cuc3RhcnRzc2wuY29tLzANBgkqhkiG9w0BAQUFAAOCAQEAr10J6KKp+r/p06hxF87/ 58OCcv71yREYQBfhDxB78LE1MVO1xNjWdH/Dh+QtigGuEEOWUsJ1HbKQU8aC3L4nT8eFeVlv vNAjXMS5EsDAqG3YG3H9Gqgr8rx8OcJE4tMcDTGXICVOKcV/3k/7j+iRX2iE9+dwj5WSWbPm Vn8pZ262x2ix3YRgUIfEOWk7rBIx4xh5kYB3qMbfo3p2laNcqqi6cMM8cp7JhVhr2tWIY+Ez O2f1YBLXmOsPEKCRavZuf1YiJIShMa1SqGshnpqnLl5QG3O0NNDEQj22XrQce3g17P7pp4MQ KA274LI5D/ZXJbws3AVn/4RNNnmw1To09DCCBykwggYRoAMCAQICAwOQMDANBgkqhkiG9w0B AQUFADCBjDELMAkGA1UEBhMCSUwxFjAUBgNVBAoTDVN0YXJ0Q29tIEx0ZC4xKzApBgNVBAsT IlNlY3VyZSBEaWdpdGFsIENlcnRpZmljYXRlIFNpZ25pbmcxODA2BgNVBAMTL1N0YXJ0Q29t IENsYXNzIDEgUHJpbWFyeSBJbnRlcm1lZGlhdGUgQ2xpZW50IENBMB4XDTEyMDExOTA2NDIw MFoXDTEzMDExODE5MDkwOFowaTEZMBcGA1UEDRMQMVU2eTM1SU9BRVVmNWd6RDEiMCAGA1UE AwwZYmtvZW5pZ0BhbHBoYS10aWVyY2hlbi5kZTEoMCYGCSqGSIb3DQEJARYZYmtvZW5pZ0Bh bHBoYS10aWVyY2hlbi5kZTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANdnUfoH 4CDzs18zVg+WYhamBg15Q5TUoTIy54DVBFwDbVBT4yrHztY64itI/87ddVJArOMT4+tpJW/1 jcFdyB6eZqYFK+0ZicnR3Whf39etXLFo9PYUzsv4Vc8jmTaEqnE4l8ID+axlDOQLqKKeXXr7 q6sLKADmbFuXRMonzOue2/x+YO6eBwAtJPWKLBsowLO+UrsoH73VRUaDt4RVVxWYojKBlpGq PK2T3sqhM4h7wnR4HqI0QRIqsB5CjqW1VgAgxlYukSDNS30rn66ZW3+J9HRXPEE0nz9vEw1C pC9a7i1EiXubmiwbwkLZPthTE+FRXABhNYbASxaJywcSsvUCAwEAAaOCA7QwggOwMAkGA1Ud EwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdJQQWMBQGCCsGAQUFBwMCBggrBgEFBQcDBDAdBgNV HQ4EFgQUFkh2L5ilQ/TmVGl3g+sKq80eMSIwHwYDVR0jBBgwFoAUU3Ltkpzg2ssBXHx+ljVO 8tS4UYIwJAYDVR0RBB0wG4EZYmtvZW5pZ0BhbHBoYS10aWVyY2hlbi5kZTCCAiEGA1UdIASC AhgwggIUMIICEAYLKwYBBAGBtTcBAgIwggH/MC4GCCsGAQUFBwIBFiJodHRwOi8vd3d3LnN0 YXJ0c3NsLmNvbS9wb2xpY3kucGRmMDQGCCsGAQUFBwIBFihodHRwOi8vd3d3LnN0YXJ0c3Ns LmNvbS9pbnRlcm1lZGlhdGUucGRmMIH3BggrBgEFBQcCAjCB6jAnFiBTdGFydENvbSBDZXJ0 aWZpY2F0aW9uIEF1dGhvcml0eTADAgEBGoG+VGhpcyBjZXJ0aWZpY2F0ZSB3YXMgaXNzdWVk IGFjY29yZGluZyB0byB0aGUgQ2xhc3MgMSBWYWxpZGF0aW9uIHJlcXVpcmVtZW50cyBvZiB0 aGUgU3RhcnRDb20gQ0EgcG9saWN5LCByZWxpYW5jZSBvbmx5IGZvciB0aGUgaW50ZW5kZWQg cHVycG9zZSBpbiBjb21wbGlhbmNlIG9mIHRoZSByZWx5aW5nIHBhcnR5IG9ibGlnYXRpb25z LjCBnAYIKwYBBQUHAgIwgY8wJxYgU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkw AwIBAhpkTGlhYmlsaXR5IGFuZCB3YXJyYW50aWVzIGFyZSBsaW1pdGVkISBTZWUgc2VjdGlv biAiTGVnYWwgYW5kIExpbWl0YXRpb25zIiBvZiB0aGUgU3RhcnRDb20gQ0EgcG9saWN5LjA2 BgNVHR8ELzAtMCugKaAnhiVodHRwOi8vY3JsLnN0YXJ0c3NsLmNvbS9jcnR1MS1jcmwuY3Js MIGOBggrBgEFBQcBAQSBgTB/MDkGCCsGAQUFBzABhi1odHRwOi8vb2NzcC5zdGFydHNzbC5j b20vc3ViL2NsYXNzMS9jbGllbnQvY2EwQgYIKwYBBQUHMAKGNmh0dHA6Ly9haWEuc3RhcnRz c2wuY29tL2NlcnRzL3N1Yi5jbGFzczEuY2xpZW50LmNhLmNydDAjBgNVHRIEHDAahhhodHRw Oi8vd3d3LnN0YXJ0c3NsLmNvbS8wDQYJKoZIhvcNAQEFBQADggEBAK9dCeiiqfq/6dOocRfO /+fDgnL+9ckRGEAX4Q8Qe/CxNTFTtcTY1nR/w4fkLYoBrhBDllLCdR2ykFPGgty+J0/HhXlZ b7zQI1zEuRLAwKht2Btx/RqoK/K8fDnCROLTHA0xlyAlTinFf95P+4/okV9ohPfncI+Vklmz 5lZ/KWdutsdosd2EYFCHxDlpO6wSMeMYeZGAd6jG36N6dpWjXKqounDDPHKeyYVYa9rViGPh Mztn9WAS15jrDxCgkWr2bn9WIiSEoTGtUqhrIZ6apy5eUBtztDTQxEI9tl60HHt4Nez+6aeD ECgNu+CyOQ/2VyW8LNwFZ/+ETTZ5sNU6NPQxggPQMIIDzAIBATCBlDCBjDELMAkGA1UEBhMC SUwxFjAUBgNVBAoTDVN0YXJ0Q29tIEx0ZC4xKzApBgNVBAsTIlNlY3VyZSBEaWdpdGFsIENl cnRpZmljYXRlIFNpZ25pbmcxODA2BgNVBAMTL1N0YXJ0Q29tIENsYXNzIDEgUHJpbWFyeSBJ bnRlcm1lZGlhdGUgQ2xpZW50IENBAgMDkDAwCQYFKw4DAhoFAKCCAhAwGAYJKoZIhvcNAQkD MQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTIwMzAxMDYyOTAwWjAjBgkqhkiG9w0B CQQxFgQUua0JP1qGgzl/2HJktEYNzjq1dnQwXwYJKoZIhvcNAQkPMVIwUDALBglghkgBZQME AQIwCgYIKoZIhvcNAwcwDgYIKoZIhvcNAwICAgCAMA0GCCqGSIb3DQMCAgFAMAcGBSsOAwIH MA0GCCqGSIb3DQMCAgEoMIGlBgkrBgEEAYI3EAQxgZcwgZQwgYwxCzAJBgNVBAYTAklMMRYw FAYDVQQKEw1TdGFydENvbSBMdGQuMSswKQYDVQQLEyJTZWN1cmUgRGlnaXRhbCBDZXJ0aWZp Y2F0ZSBTaWduaW5nMTgwNgYDVQQDEy9TdGFydENvbSBDbGFzcyAxIFByaW1hcnkgSW50ZXJt ZWRpYXRlIENsaWVudCBDQQIDA5AwMIGnBgsqhkiG9w0BCRACCzGBl6CBlDCBjDELMAkGA1UE BhMCSUwxFjAUBgNVBAoTDVN0YXJ0Q29tIEx0ZC4xKzApBgNVBAsTIlNlY3VyZSBEaWdpdGFs IENlcnRpZmljYXRlIFNpZ25pbmcxODA2BgNVBAMTL1N0YXJ0Q29tIENsYXNzIDEgUHJpbWFy eSBJbnRlcm1lZGlhdGUgQ2xpZW50IENBAgMDkDAwDQYJKoZIhvcNAQEBBQAEggEAwE/3Jlbs G+kg3QMIGOfM/ES1HuCcFE/8KclV/K8QjEKSmLNvmEsWbENSaFcKrUKirO7UADDSVL09LX7N 7SSqoev7V4OorgqAwDfmXUQZFHd6tym/gKzvH3zj4xp6YLpq0Nbmv8qxu8ydYbnYhF+BPepi BENAXMm5YbkA/k9F1gv4P/S/aT1XS4Ky57UzkvRSSps0UzKaZEyFYDX+LbTGaT4YV8chacAd w0YrBRl22lfC6xEpjscPF8LAwmJOZGMPDaBzCrS+a5WmrLQqw1ftTWsoi84ow1xWp6QTGSeE fkKHYULWDoW33LmIC/o/w4P8IIKNM7uaWQKyjfGkj8GszAAAAAAAAA== --------------ms080700020908080804000609-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 08:30:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0754310656A9 for ; Thu, 1 Mar 2012 08:30:17 +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 A33208FC19 for ; Thu, 1 Mar 2012 08:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q218UC98062040 for ; Thu, 1 Mar 2012 08:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q218UC9M062039; Thu, 1 Mar 2012 08:30:12 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 08:30:12 GMT Resent-Message-Id: <201203010830.q218UC9M062039@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, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 616E6106566B for ; Thu, 1 Mar 2012 08:27:30 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx1.freebsd.org (Postfix) with ESMTP id CF31E8FC13 for ; Thu, 1 Mar 2012 08:27:28 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 3Tz6CL5Znhz69h; Thu, 1 Mar 2012 16:25:18 +0800 (CST) Message-Id: <3Tz6CL5Znhz69h@sunpoet.net> Date: Thu, 1 Mar 2012 16:25:18 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: mandree@FreeBSD.org Subject: ports/165574: [PATCH] databases/db5: update to 5.3.15.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: Thu, 01 Mar 2012 08:30:17 -0000 >Number: 165574 >Category: ports >Synopsis: [PATCH] databases/db5: update to 5.3.15.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: Thu Mar 01 08:30:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 9.0-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 9.0-STABLE FreeBSD 9.0-STABLE #0: Sun Jan 29 23:36:49 CST 2012 >Description: - Update to 5.3.15.0 - Use BDBMAJ/BDBVER instead of hardcoded versions in PLIST - Sort PLIST Port maintainer (mandree@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- db5-5.3.15.0.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/databases/db5/Makefile,v retrieving revision 1.13 diff -u -u -r1.13 Makefile --- Makefile 16 Feb 2012 07:21:10 -0000 1.13 +++ Makefile 1 Mar 2012 08:25:23 -0000 @@ -6,8 +6,7 @@ # PORTNAME= db5 -PORTVERSION= 5.2.36.0 -PORTREVISION= 1 +PORTVERSION= 5.3.15.0 CATEGORIES= databases java MASTER_SITES= http://download.oracle.com/berkeley-db/ PKGNAMEPREFIX?= @@ -33,6 +32,7 @@ LIBTOOLFILES= ${CONFIGURE_SCRIPT} WRKSRC= ${WRKDIR}/${DISTNAME}/build_unix USE_LDCONFIG= yes +PLIST_SUB= BDBMAJ=${BDBMAJ} BDBVER=${BDBVER} .if !defined(NOPORTDOCS) INSTALL_TARGET+= install_docs docdir=${DOCSDIR} @@ -44,7 +44,7 @@ SQL "SQL API (EXPERIMENTAL)" OFF \ JAVA "JAVA API (EXPERIMENTAL)" OFF -.include +.include .if defined(WITH_SQL) CONFIGURE_ARGS+= --enable-sql_codegen --enable-sql @@ -114,4 +114,4 @@ .endif .endif -.include +.include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/databases/db5/distinfo,v retrieving revision 1.8 diff -u -u -r1.8 distinfo --- distinfo 23 Sep 2011 18:48:34 -0000 1.8 +++ distinfo 1 Mar 2012 08:25:23 -0000 @@ -1,2 +1,2 @@ -SHA256 (bdb/db-5.2.36.tar.gz) = 8828f884cb5d1ecb0c52a18366c8845dce99d804d8b72b6e66f6e553f3d8d984 -SIZE (bdb/db-5.2.36.tar.gz) = 34664337 +SHA256 (bdb/db-5.3.15.tar.gz) = 4f4f7d548984dde3584fcda0e4f96901cb8bafb08033a7781aec64ef2ea1f579 +SIZE (bdb/db-5.3.15.tar.gz) = 34899186 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/databases/db5/pkg-plist,v retrieving revision 1.6 diff -u -u -r1.6 pkg-plist --- pkg-plist 25 Aug 2011 23:17:17 -0000 1.6 +++ pkg-plist 1 Mar 2012 08:25:23 -0000 @@ -1,4 +1,3 @@ -@comment $FreeBSD: ports/databases/db5/pkg-plist,v 1.6 2011/08/25 23:17:17 mandree Exp $ bin/db5/db_archive bin/db5/db_checkpoint bin/db5/db_deadlock @@ -9,117 +8,115 @@ bin/db5/db_printlog bin/db5/db_recover bin/db5/db_replicate -bin/db5/db_tuner -bin/db_archive-5 -bin/db_checkpoint-5 -%%SQL%%bin/db_sql_codegen-5 -bin/db_deadlock-5 -bin/db_dump-5 -bin/db_hotbackup-5 -bin/db_load-5 -bin/db_log_verify-5 -bin/db_printlog-5 -bin/db_recover-5 -bin/db_replicate-5 -bin/db_stat-5 -bin/db_tuner-5 -bin/db_upgrade-5 -bin/db_verify-5 -%%SQL%%bin/db5/dbsql %%SQL%%bin/db5/db_sql_codegen bin/db5/db_stat +bin/db5/db_tuner bin/db5/db_upgrade bin/db5/db_verify -bin/db_archive-5.2 -bin/db_checkpoint-5.2 -bin/db_deadlock-5.2 -bin/db_dump-5.2 -bin/db_hotbackup-5.2 -bin/db_load-5.2 -bin/db_log_verify-5.2 -bin/db_printlog-5.2 -bin/db_recover-5.2 -bin/db_replicate-5.2 -bin/db_tuner-5.2 -%%SQL%%bin/dbsql-5 -%%SQL%%bin/dbsql-5.2 -%%SQL%%bin/db_sql_codegen-5.2 -bin/db_stat-5.2 -bin/db_upgrade-5.2 -bin/db_verify-5.2 +%%SQL%%bin/db5/dbsql +bin/db_archive-%%BDBMAJ%% +bin/db_archive-%%BDBVER%% +bin/db_checkpoint-%%BDBMAJ%% +bin/db_checkpoint-%%BDBVER%% +bin/db_deadlock-%%BDBMAJ%% +bin/db_deadlock-%%BDBVER%% +bin/db_dump-%%BDBMAJ%% +bin/db_dump-%%BDBVER%% +bin/db_hotbackup-%%BDBMAJ%% +bin/db_hotbackup-%%BDBVER%% +bin/db_load-%%BDBMAJ%% +bin/db_load-%%BDBVER%% +bin/db_log_verify-%%BDBMAJ%% +bin/db_log_verify-%%BDBVER%% +bin/db_printlog-%%BDBMAJ%% +bin/db_printlog-%%BDBVER%% +bin/db_recover-%%BDBMAJ%% +bin/db_recover-%%BDBVER%% +bin/db_replicate-%%BDBMAJ%% +bin/db_replicate-%%BDBVER%% +%%SQL%%bin/db_sql_codegen-%%BDBMAJ%% +%%SQL%%bin/db_sql_codegen-%%BDBVER%% +bin/db_stat-%%BDBMAJ%% +bin/db_stat-%%BDBVER%% +bin/db_tuner-%%BDBMAJ%% +bin/db_tuner-%%BDBVER%% +bin/db_upgrade-%%BDBMAJ%% +bin/db_upgrade-%%BDBVER%% +bin/db_verify-%%BDBMAJ%% +bin/db_verify-%%BDBVER%% +%%SQL%%bin/dbsql-%%BDBMAJ%% +%%SQL%%bin/dbsql-%%BDBVER%% include/db5/db.h include/db5/db_cxx.h %%SQL%%include/db5/dbsql.h +include/db5/dbstl_base_iterator.h include/db5/dbstl_common.h -include/db5/dbstl_set.h -include/db5/dbstl_vector.h -include/db5/dbstl_exception.h -include/db5/dbstl_map.h -include/db5/dbstl_utility.h +include/db5/dbstl_container.h include/db5/dbstl_dbc.h include/db5/dbstl_dbt.h -include/db5/dbstl_base_iterator.h -include/db5/dbstl_container.h include/db5/dbstl_element_ref.h +include/db5/dbstl_exception.h include/db5/dbstl_inner_utility.h +include/db5/dbstl_map.h include/db5/dbstl_resource_manager.h -lib/db5/libdb-5.2.a -lib/db5/libdb-5.2.la -lib/db5/libdb-5.2.so -lib/db5/libdb-5.2.so.0 -lib/db5/libdb-5.so +include/db5/dbstl_set.h +include/db5/dbstl_utility.h +include/db5/dbstl_vector.h +%%JAVA%%lib/db5/db.jar +lib/db5/libdb-%%BDBVER%%.a +lib/db5/libdb-%%BDBVER%%.la +lib/db5/libdb-%%BDBVER%%.so +lib/db5/libdb-%%BDBVER%%.so.0 +lib/db5/libdb-%%BDBMAJ%%.so lib/db5/libdb.a lib/db5/libdb.so -lib/db5/libdb_cxx-5.2.a -lib/db5/libdb_cxx-5.2.la -lib/db5/libdb_cxx-5.2.so -lib/db5/libdb_cxx-5.2.so.0 -lib/db5/libdb_cxx-5.so +lib/db5/libdb_cxx-%%BDBVER%%.a +lib/db5/libdb_cxx-%%BDBVER%%.la +lib/db5/libdb_cxx-%%BDBVER%%.so +lib/db5/libdb_cxx-%%BDBVER%%.so.0 +lib/db5/libdb_cxx-%%BDBMAJ%%.so lib/db5/libdb_cxx.a lib/db5/libdb_cxx.so -lib/db5/libdb_stl-5.2.a -lib/db5/libdb_stl-5.2.la -lib/db5/libdb_stl-5.2.so -lib/db5/libdb_stl-5.2.so.0 -lib/db5/libdb_stl-5.so -lib/db5/libdb_stl.a -lib/db5/libdb_stl.so -%%JAVA%%lib/db5/db.jar -%%JAVA%%lib/db5/libdb_java-5.2.a -%%JAVA%%lib/db5/libdb_java-5.2.la -%%JAVA%%lib/db5/libdb_java-5.2.so -%%JAVA%%lib/db5/libdb_java-5.2.so.0 -%%JAVA%%lib/db5/libdb_java-5.2_g.so -%%JAVA%%lib/db5/libdb_java-5.so +%%JAVA%%lib/db5/libdb_java-%%BDBVER%%.a +%%JAVA%%lib/db5/libdb_java-%%BDBVER%%.la +%%JAVA%%lib/db5/libdb_java-%%BDBVER%%.so +%%JAVA%%lib/db5/libdb_java-%%BDBVER%%.so.0 +%%JAVA%%lib/db5/libdb_java-%%BDBVER%%_g.so %%JAVA%%lib/db5/libdb_java.a %%JAVA%%lib/db5/libdb_java.so -%%JAVA%%lib/libdb_java-5.2.so -%%JAVA%%lib/libdb_java-5.2.so.0 -%%SQL%%lib/db5/libdb_sql-5.2.a -%%SQL%%lib/db5/libdb_sql-5.2.la -%%SQL%%lib/db5/libdb_sql-5.2.so -%%SQL%%lib/db5/libdb_sql-5.2.so.0 -%%SQL%%lib/db5/libdb_sql-5.so +%%SQL%%lib/db5/libdb_sql-%%BDBVER%%.a +%%SQL%%lib/db5/libdb_sql-%%BDBVER%%.la +%%SQL%%lib/db5/libdb_sql-%%BDBVER%%.so +%%SQL%%lib/db5/libdb_sql-%%BDBVER%%.so.0 %%SQL%%lib/db5/libdb_sql.a %%SQL%%lib/db5/libdb_sql.so -%%SQL%%lib/libdb_sql-5.2.so -%%SQL%%lib/libdb_sql-5.2.so.0 -lib/libdb-5.2.so.0 -lib/libdb-5.2.so -lib/libdb-5.so -lib/libdb_cxx-5.2.so -lib/libdb_cxx-5.2.so.0 -lib/libdb_stl-5.2.so -lib/libdb_stl-5.2.so.0 -lib/libdb-5.so.0 -lib/libdb_cxx-5.so.0 -lib/libdb_cxx-5.so -lib/libdb_stl-5.so.0 -lib/libdb_stl-5.so -%%SQL%%lib/libdb_sql-5.so.0 -%%SQL%%lib/libdb_sql-5.so -%%JAVA%%lib/libdb_java-5.so.0 -%%JAVA%%lib/libdb_java-5.so -@dirrmtry lib/db5 -@dirrmtry include/db5 -@dirrmtry bin/db5 +lib/db5/libdb_stl-%%BDBVER%%.a +lib/db5/libdb_stl-%%BDBVER%%.la +lib/db5/libdb_stl-%%BDBVER%%.so +lib/db5/libdb_stl-%%BDBVER%%.so.0 +lib/db5/libdb_stl-%%BDBMAJ%%.so +lib/db5/libdb_stl.a +lib/db5/libdb_stl.so +lib/libdb-%%BDBMAJ%%.so +lib/libdb-%%BDBMAJ%%.so.0 +lib/libdb-%%BDBVER%%.so +lib/libdb-%%BDBVER%%.so.0 +lib/libdb_cxx-%%BDBMAJ%%.so +lib/libdb_cxx-%%BDBMAJ%%.so.0 +lib/libdb_cxx-%%BDBVER%%.so +lib/libdb_cxx-%%BDBVER%%.so.0 +%%JAVA%%lib/libdb_java-%%BDBMAJ%%.so +%%JAVA%%lib/libdb_java-%%BDBMAJ%%.so.0 +%%JAVA%%lib/libdb_java-%%BDBVER%%.so +%%JAVA%%lib/libdb_java-%%BDBVER%%.so.0 +%%SQL%%lib/libdb_sql-%%BDBMAJ%%.so +%%SQL%%lib/libdb_sql-%%BDBMAJ%%.so.0 +%%SQL%%lib/libdb_sql-%%BDBVER%%.so +%%SQL%%lib/libdb_sql-%%BDBVER%%.so.0 +lib/libdb_stl-%%BDBMAJ%%.so +lib/libdb_stl-%%BDBMAJ%%.so.0 +lib/libdb_stl-%%BDBVER%%.so +lib/libdb_stl-%%BDBVER%%.so.0 +@dirrm lib/db5 +@dirrm include/db5 +@dirrm bin/db5 --- db5-5.3.15.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 08:30:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 06A3C1065676; Thu, 1 Mar 2012 08:30:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CEEED8FC17; Thu, 1 Mar 2012 08:30:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q218URCE062920; Thu, 1 Mar 2012 08:30:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q218UR47062914; Thu, 1 Mar 2012 08:30:27 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 08:30:27 GMT Message-Id: <201203010830.q218UR47062914@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mandree@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165574: [PATCH] databases/db5: update to 5.3.15.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: Thu, 01 Mar 2012 08:30:28 -0000 Synopsis: [PATCH] databases/db5: update to 5.3.15.0 Responsible-Changed-From-To: freebsd-ports-bugs->mandree Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 08:30:27 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165574 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 08:40:46 2012 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 A61D0106564A; Thu, 1 Mar 2012 08:40:46 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7A2B98FC20; Thu, 1 Mar 2012 08:40:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q218ekTL076383; Thu, 1 Mar 2012 08:40:46 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q218ek8l076352; Thu, 1 Mar 2012 08:40:46 GMT (envelope-from scheidell) Date: Thu, 1 Mar 2012 08:40:46 GMT Message-Id: <201203010840.q218ek8l076352@freefall.freebsd.org> To: sysadmin@su-casa.com.mx, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163196: [NEW PORT] www/ocportal 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: Thu, 01 Mar 2012 08:40:46 -0000 Synopsis: [NEW PORT] www/ocportal State-Changed-From-To: open->feedback State-Changed-By: scheidell State-Changed-When: Thu Mar 1 08:40:15 UTC 2012 State-Changed-Why: Proxy Error The proxy server could not handle the request GET http://archivos.su-casa.com.mx/ocportal.txt. Reason: Host not found http://www.freebsd.org/cgi/query-pr.cgi?pr=163196 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 08:41:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8FD4E1065670; Thu, 1 Mar 2012 08:41:28 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 634CF8FC1A; Thu, 1 Mar 2012 08:41:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q218fSFk080988; Thu, 1 Mar 2012 08:41:28 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q218fSl5080982; Thu, 1 Mar 2012 08:41:28 GMT (envelope-from scheidell) Date: Thu, 1 Mar 2012 08:41:28 GMT Message-Id: <201203010841.q218fSl5080982@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/161231: [NEW PORT] www/sencha-touch: The First HTML5 Mobile Web App Framework 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: Thu, 01 Mar 2012 08:41:28 -0000 Synopsis: [NEW PORT] www/sencha-touch: The First HTML5 Mobile Web App Framework Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Thu Mar 1 08:41:27 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=161231 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 08:50:11 2012 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 2A4F31065695 for ; Thu, 1 Mar 2012 08:50:11 +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 D5F428FC1C for ; Thu, 1 Mar 2012 08:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q218oAji082818 for ; Thu, 1 Mar 2012 08:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q218oAHr082817; Thu, 1 Mar 2012 08:50:10 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 08:50:10 GMT Resent-Message-Id: <201203010850.q218oAHr082817@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, Denis Generalov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 998FA106566B for ; Thu, 1 Mar 2012 08:47:22 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 84FC48FC1F for ; Thu, 1 Mar 2012 08:47:22 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q218lLBD079913 for ; Thu, 1 Mar 2012 08:47:21 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q218lL8e079908; Thu, 1 Mar 2012 08:47:21 GMT (envelope-from nobody) Message-Id: <201203010847.q218lL8e079908@red.freebsd.org> Date: Thu, 1 Mar 2012 08:47:21 GMT From: Denis Generalov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165575: [UPDATE] mail/sylpheed to 3.1.3 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: Thu, 01 Mar 2012 08:50:11 -0000 >Number: 165575 >Category: ports >Synopsis: [UPDATE] mail/sylpheed to 3.1.3 >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: Thu Mar 01 08:50:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Denis Generalov >Release: FreeBSD 9.0-STABLE >Organization: Rambler >Environment: FreeBSD tyl2.park.rambler.ru 9.0-STABLE FreeBSD 9.0-STABLE #1: Tue Feb 14 22:57:58 MSK 2012 root@tyl2.park.rambler.ru:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update port mail/sylpheed to 3.1.3 >How-To-Repeat: >Fix: Patch attached with submission follows: ===> Generating patch ===> Viewing diff with more diff -ruN --exclude=CVS /usr/ports/mail/sylpheed/Makefile /home/gd/work/cvs_ports/mail/sylpheed/Makefile --- /usr/ports/mail/sylpheed/Makefile 2011-10-01 00:11:28.000000000 +0400 +++ /home/gd/work/cvs_ports/mail/sylpheed/Makefile 2012-03-01 12:07:17.000000000 +0400 @@ -6,7 +6,7 @@ # PORTNAME= sylpheed -PORTVERSION= 3.1.2 +PORTVERSION= 3.1.3 CATEGORIES= mail ipv6 MASTER_SITES= http://sylpheed.sraoss.jp/sylpheed/v${PORTVERSION:C/\.[^\.]*$//}/ \ CRITICAL diff -ruN --exclude=CVS /usr/ports/mail/sylpheed/distinfo /home/gd/work/cvs_ports/mail/sylpheed/distinfo --- /usr/ports/mail/sylpheed/distinfo 2011-10-01 00:11:28.000000000 +0400 +++ /home/gd/work/cvs_ports/mail/sylpheed/distinfo 2012-03-01 12:08:28.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (sylpheed-3.1.2.tar.bz2) = d6fb71ef941c764f53bc2541ce25caf9e4855f84424ced6ef91f4d2dcde3f404 -SIZE (sylpheed-3.1.2.tar.bz2) = 3236955 +SHA256 (sylpheed-3.1.3.tar.bz2) = ddeb9d613f1b5265a687ea54ba29e7920179bc450d639620ca6e79490037db87 +SIZE (sylpheed-3.1.3.tar.bz2) = 3238367 ===> Done >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 08:50:22 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B98971065690; Thu, 1 Mar 2012 08:50:22 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8DFD48FC29; Thu, 1 Mar 2012 08:50:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q218oMPF083008; Thu, 1 Mar 2012 08:50:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q218oMHc083004; Thu, 1 Mar 2012 08:50:22 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 08:50:22 GMT Message-Id: <201203010850.q218oMHc083004@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ehaupt@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165575: [UPDATE] mail/sylpheed to 3.1.3 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: Thu, 01 Mar 2012 08:50:22 -0000 Synopsis: [UPDATE] mail/sylpheed to 3.1.3 Responsible-Changed-From-To: freebsd-ports-bugs->ehaupt Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 08:50:22 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165575 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 09:10:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2D4181065670 for ; Thu, 1 Mar 2012 09:10:11 +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 DEF1C8FC0A for ; Thu, 1 Mar 2012 09:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q219AAki000121 for ; Thu, 1 Mar 2012 09:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q219AAT8000120; Thu, 1 Mar 2012 09:10:10 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 09:10:10 GMT Resent-Message-Id: <201203010910.q219AAT8000120@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, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 88EAA1065675 for ; Thu, 1 Mar 2012 09:06:00 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx1.freebsd.org (Postfix) with ESMTP id 4D9808FC19 for ; Thu, 1 Mar 2012 09:06:00 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 3Tz73p5XDxz8KC; Thu, 1 Mar 2012 17:03:50 +0800 (CST) Message-Id: <3Tz73p5XDxz8KC@sunpoet.net> Date: Thu, 1 Mar 2012 17:03:50 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: novel@FreeBSD.org Subject: ports/165576: [PATCH] audio/p5-MP3-Tag: fix PLIST 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: Thu, 01 Mar 2012 09:10:11 -0000 >Number: 165576 >Category: ports >Synopsis: [PATCH] audio/p5-MP3-Tag: fix PLIST >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 09:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 9.0-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 9.0-STABLE FreeBSD 9.0-STABLE #0: Sun Jan 29 23:36:49 CST 2012 >Description: - Fix PLIST: %%SITE_PERL%%/Encode is also used by other ports Port maintainer (novel@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-MP3-Tag-1.13.patch begins here --- Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/audio/p5-MP3-Tag/pkg-plist,v retrieving revision 1.8 diff -u -u -r1.8 pkg-plist --- pkg-plist 16 Jul 2010 17:41:38 -0000 1.8 +++ pkg-plist 1 Mar 2012 09:04:46 -0000 @@ -26,7 +26,7 @@ @dirrm %%SITE_PERL%%/Normalize/Text/Music_Fields @dirrm %%SITE_PERL%%/Normalize/Text @dirrm %%SITE_PERL%%/Normalize -@dirrm %%SITE_PERL%%/Encode +@dirrmtry %%SITE_PERL%%/Encode @dirrm %%SITE_PERL%%/MP3/Tag @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MP3/Tag @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/MP3 --- p5-MP3-Tag-1.13.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 09:10:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 63A4A1065673 for ; Thu, 1 Mar 2012 09:10:11 +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 3C0B88FC12 for ; Thu, 1 Mar 2012 09:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q219ABc0000132 for ; Thu, 1 Mar 2012 09:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q219AB3V000130; Thu, 1 Mar 2012 09:10:11 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 09:10:11 GMT Resent-Message-Id: <201203010910.q219AB3V000130@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, Oliver Hartmann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DE964106566C for ; Thu, 1 Mar 2012 09:07:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BF79E8FC0C for ; Thu, 1 Mar 2012 09:07:27 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q2197Rot016432 for ; Thu, 1 Mar 2012 09:07:27 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q2197R3V016430; Thu, 1 Mar 2012 09:07:27 GMT (envelope-from nobody) Message-Id: <201203010907.q2197R3V016430@red.freebsd.org> Date: Thu, 1 Mar 2012 09:07:27 GMT From: Oliver Hartmann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165577: graphics/ImageMagick: 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: Thu, 01 Mar 2012 09:10:11 -0000 >Number: 165577 >Category: ports >Synopsis: graphics/ImageMagick: >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 09:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Oliver Hartmann >Release: FreeBSD 9.0-STABLE/amd64, FreeBSD 10.0-CURRENT/amd64 (CLANG built) >Organization: FU Berlin >Environment: >Description: Updating ImageMagick on several boxes running FreeBSD 9.0-STABLE/amd64 and (one) FreeBSD 10.0-CURRENT/amd64 fail installing/updating port graphics/ImageMagick. Either CLANG, legacy GCC or GCC 4.6 fail compiling/updating an already installed box, so our update cyclus terminates. With CLANG/legacy GCC 4.2 (system): /usr/bin/make check-TESTS check-local PASS: tests/validate-compare.sh PASS: tests/validate-composite.sh PASS: tests/validate-convert.sh PASS: tests/validate-identify.sh PASS: tests/validate-import.sh PASS: tests/validate-montage.sh PASS: tests/validate-pipe.sh PASS: tests/validate-stream.sh FAIL: tests/validate-formats-in-memory.sh FAIL: tests/validate-formats-on-disk.sh PASS: Magick++/tests/exceptions.sh PASS: Magick++/tests/appendImages.sh PASS: Magick++/tests/attributes.sh PASS: Magick++/tests/averageImages.sh PASS: Magick++/tests/coalesceImages.sh PASS: Magick++/tests/coderInfo.sh PASS: Magick++/tests/colorHistogram.sh PASS: Magick++/tests/color.sh PASS: Magick++/tests/montageImages.sh PASS: Magick++/tests/morphImages.sh PASS: Magick++/tests/readWriteBlob.sh PASS: Magick++/tests/readWriteImages.sh PASS: Magick++/demo/analyze.sh PASS: Magick++/demo/button.sh PASS: Magick++/demo/demo.sh PASS: Magick++/demo/flip.sh PASS: Magick++/demo/gravity.sh PASS: Magick++/demo/piddle.sh PASS: Magick++/demo/shapes.sh PASS: Magick++/demo/zoom_bessel.sh PASS: Magick++/demo/zoom_blackman.sh PASS: Magick++/demo/zoom_box.sh PASS: Magick++/demo/zoom_catrom.sh PASS: Magick++/demo/zoom_cubic.sh PASS: Magick++/demo/zoom_gaussian.sh PASS: Magick++/demo/zoom_hamming.sh PASS: Magick++/demo/zoom_hanning.sh PASS: Magick++/demo/zoom_hermite.sh PASS: Magick++/demo/zoom_lanczos.sh PASS: Magick++/demo/zoom_mitchell.sh PASS: Magick++/demo/zoom_point.sh PASS: Magick++/demo/zoom_quadratic.sh PASS: Magick++/demo/zoom_sample.sh PASS: Magick++/demo/zoom_scale.sh PASS: Magick++/demo/zoom_sinc.sh PASS: Magick++/demo/zoom_triangle.sh PASS: wand/drawtest.sh PASS: wand/wandtest.sh =========================================== 2 of 48 tests failed See ./test-suite.log Please report to http://www.imagemagick.org =========================================== *** Error code 1 Stop in /usr/ports/graphics/ImageMagick/work/ImageMagick-6.7.5-7. *** Error code 1 Stop in /usr/ports/graphics/ImageMagick/work/ImageMagick-6.7.5-7. *** Error code 1 Stop in /usr/ports/graphics/ImageMagick/work/ImageMagick-6.7.5-7. *** Error code 1 Stop in /usr/ports/graphics/ImageMagick/work/ImageMagick-6.7.5-7. *** Error code 1 Stop in /usr/ports/graphics/ImageMagick. *** Error code 1 Stop in /usr/ports/graphics/ImageMagick. ===>>> make failed for graphics/ImageMagick ===>>> Aborting update ===>>> Update for graphics/ImageMagick failed ===>>> Aborting update >How-To-Repeat: Update existing ImageMagick via portmaster or try reinstalling most recent port (ImageMagick-6.7.5-7) >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 09:10:21 2012 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 971601065672; Thu, 1 Mar 2012 09:10:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6C8B68FC18; Thu, 1 Mar 2012 09:10:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q219ALQY000314; Thu, 1 Mar 2012 09:10:21 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q219ALgZ000310; Thu, 1 Mar 2012 09:10:21 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 09:10:21 GMT Message-Id: <201203010910.q219ALgZ000310@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, novel@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165576: [PATCH] audio/p5-MP3-Tag: fix PLIST 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: Thu, 01 Mar 2012 09:10:21 -0000 Synopsis: [PATCH] audio/p5-MP3-Tag: fix PLIST Responsible-Changed-From-To: freebsd-ports-bugs->novel Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 09:10:21 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165576 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 09:10:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6EB931065672; Thu, 1 Mar 2012 09:10:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4312F8FC08; Thu, 1 Mar 2012 09:10:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q219ARPf000818; Thu, 1 Mar 2012 09:10:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q219ARtI000812; Thu, 1 Mar 2012 09:10:27 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 09:10:27 GMT Message-Id: <201203010910.q219ARtI000812@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mm@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165577: graphics/ImageMagick: 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: Thu, 01 Mar 2012 09:10:27 -0000 Synopsis: graphics/ImageMagick: Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 09:10:26 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165577 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 10:50:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E9368106566B for ; Thu, 1 Mar 2012 10:50:09 +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 C0A1B8FC1B for ; Thu, 1 Mar 2012 10:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21Ao9Lo095150 for ; Thu, 1 Mar 2012 10:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21Ao9RZ095149; Thu, 1 Mar 2012 10:50:09 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 10:50:09 GMT Resent-Message-Id: <201203011050.q21Ao9RZ095149@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, Emil Mikulic Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 264B01065670 for ; Thu, 1 Mar 2012 10:44:16 +0000 (UTC) (envelope-from emikulic@gmail.com) Received: from unix4lyfe.org (unknown [IPv6:2001:470:1:41:a800:ff:fe3e:bcf8]) by mx1.freebsd.org (Postfix) with ESMTP id 120498FC12 for ; Thu, 1 Mar 2012 10:44:16 +0000 (UTC) Received: from emil by unix4lyfe.org with local (Exim 4.71) (envelope-from ) id 1S33Ud-0007Ud-T3 for FreeBSD-gnats-submit@freebsd.org; Thu, 01 Mar 2012 21:44:15 +1100 Message-Id: <20120301104415.GA28791@emil.xen.prgmr.com> Date: Thu, 1 Mar 2012 21:44:15 +1100 From: Emil Mikulic To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: ports/165578: [patch] Update port: net-mgmt/darkstat to 3.0.715 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: Thu, 01 Mar 2012 10:50:10 -0000 >Number: 165578 >Category: ports >Synopsis: [patch] Update port: net-mgmt/darkstat to 3.0.715 >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: Thu Mar 01 10:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Emil Mikulic >Release: >Organization: >Environment: >Description: - Update to 3.0.715 - Move $darkstat_dir from /var/run/darkstat to /var/db/darkstat since /var/run is cleaned out on startup. This was suggested by Brandon Gabert (thanks!) >How-To-Repeat: >Fix: diff -Nur /usr/ports/net-mgmt/darkstat/Makefile darkstat/Makefile --- /usr/ports/net-mgmt/darkstat/Makefile 2011-06-07 21:50:42.000000000 +1000 +++ darkstat/Makefile 2012-03-01 21:07:23.000000000 +1100 @@ -6,7 +6,7 @@ # PORTNAME= darkstat -PORTVERSION= 3.0.714 +PORTVERSION= 3.0.715 CATEGORIES= net-mgmt MASTER_SITES= http://unix4lyfe.org/darkstat/ diff -Nur /usr/ports/net-mgmt/darkstat/distinfo darkstat/distinfo --- /usr/ports/net-mgmt/darkstat/distinfo 2011-06-07 21:50:42.000000000 +1000 +++ darkstat/distinfo 2012-03-01 21:17:57.000000000 +1100 @@ -1,2 +1,2 @@ -SHA256 (darkstat-3.0.714.tar.bz2) = 6a8bbdee962ba48412b4676214c196117920fc7b7ca405652e05a58fa7807a67 -SIZE (darkstat-3.0.714.tar.bz2) = 108844 +SHA256 (darkstat-3.0.715.tar.bz2) = 4926944ee1baee032d0d20a5425b13b471625aa8a05177011f3da3c3df833439 +SIZE (darkstat-3.0.715.tar.bz2) = 110881 diff -Nur /usr/ports/net-mgmt/darkstat/files/darkstat.in darkstat/files/darkstat.in --- /usr/ports/net-mgmt/darkstat/files/darkstat.in 2012-01-14 19:56:36.000000000 +1100 +++ darkstat/files/darkstat.in 2012-03-01 21:16:49.000000000 +1100 @@ -14,7 +14,7 @@ # # Optional configuration flags: # -# darkstat_dir="/var/run/darkstat" +# darkstat_dir="/var/db/darkstat" # darkstat_pidname="darkstat.pid" # darkstat_dropuser="nobody" # darkstat_flags @@ -39,7 +39,7 @@ load_rc_config $name : ${darkstat_enable="NO"} -: ${darkstat_dir="/var/run/darkstat"} +: ${darkstat_dir="/var/db/darkstat"} : ${darkstat_pidname="darkstat.pid"} : ${darkstat_dropuser="nobody"} pidfile="${darkstat_dir}/${darkstat_pidname}" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 12:00:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A64E81065674 for ; Thu, 1 Mar 2012 12:00:26 +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 6E98A8FC14 for ; Thu, 1 Mar 2012 12:00:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21C0Qkq061636 for ; Thu, 1 Mar 2012 12:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21C0QPb061630; Thu, 1 Mar 2012 12:00:26 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 12:00:26 GMT Resent-Message-Id: <201203011200.q21C0QPb061630@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 520E3106566C; Thu, 1 Mar 2012 12:00:11 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id EAF5A8FC13; Thu, 1 Mar 2012 12:00:10 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q21C026w078322 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 1 Mar 2012 07:00:03 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q21BxwqB021245; Thu, 1 Mar 2012 06:59:58 -0500 (EST) (envelope-from steve) Message-Id: <201203011159.q21BxwqB021245@meatwad.mouf.net> Date: Thu, 1 Mar 2012 06:59:58 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: glewis@FreeBSD.org Subject: ports/165579: [PATCH] math/gnuplot: plist fixes 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: Thu, 01 Mar 2012 12:00:26 -0000 >Number: 165579 >Category: ports >Synopsis: [PATCH] math/gnuplot: plist fixes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 12:00:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: see patch Port maintainer (glewis@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- gnuplot-4.4.4_1.patch begins here --- Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/math/gnuplot/pkg-plist,v retrieving revision 1.23 diff -u -u -r1.23 pkg-plist --- pkg-plist 30 May 2011 23:32:56 -0000 1.23 +++ pkg-plist 1 Mar 2012 11:59:46 -0000 @@ -61,12 +61,15 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/enhanced_utf8.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/enhancedtext.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/epslatex.dem +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/equipo2.tmp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/field2xy.tmp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fillbetween.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fillcrvs.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fillstyle.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/finance.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/finance.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fit.dem +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fit.log %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fit3.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fontfile.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/fontfile_latex.dem @@ -136,6 +139,7 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rainbow.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/random-points %%PORTEXAMPLES%%%%EXAMPLESDIR%%/random.dem +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/random.tmp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rectangle.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/reflect.fnc %%PORTEXAMPLES%%%%EXAMPLESDIR%%/rgb_variable.dat @@ -152,6 +156,7 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/smooth.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sound.par %%PORTEXAMPLES%%%%EXAMPLESDIR%%/sound2.par +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundfit.par %%PORTEXAMPLES%%%%EXAMPLESDIR%%/soundvel.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/spline.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/srl.dat @@ -161,6 +166,7 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/steps.dat %%PORTEXAMPLES%%%%EXAMPLESDIR%%/steps.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/stringvar.dem +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stringvar.tmp %%PORTEXAMPLES%%%%EXAMPLESDIR%%/surface1.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/surface2.dem %%PORTEXAMPLES%%%%EXAMPLESDIR%%/table.dat --- gnuplot-4.4.4_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 12:00:40 2012 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 0B51110656DB; Thu, 1 Mar 2012 12:00:40 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D3A5F8FC0A; Thu, 1 Mar 2012 12:00:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21C0d7Y061843; Thu, 1 Mar 2012 12:00:39 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21C0dn2061824; Thu, 1 Mar 2012 12:00:39 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 12:00:39 GMT Message-Id: <201203011200.q21C0dn2061824@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glewis@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165579: [PATCH] math/gnuplot: plist fixes 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: Thu, 01 Mar 2012 12:00:40 -0000 Synopsis: [PATCH] math/gnuplot: plist fixes Responsible-Changed-From-To: freebsd-ports-bugs->glewis Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 12:00:39 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165579 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 12:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 03CA2106566C for ; Thu, 1 Mar 2012 12:20:07 +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 C79D68FC15 for ; Thu, 1 Mar 2012 12:20:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21CK7AL080483 for ; Thu, 1 Mar 2012 12:20:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21CK7XB080482; Thu, 1 Mar 2012 12:20:07 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 12:20:07 GMT Resent-Message-Id: <201203011220.q21CK7XB080482@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, Jyun-Yan You Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7493F1065670 for ; Thu, 1 Mar 2012 12:14:30 +0000 (UTC) (envelope-from jyyou@cs.nctu.edu.tw) Received: from csmailer.cs.nctu.edu.tw (csmailer.cs.nctu.edu.tw [140.113.235.130]) by mx1.freebsd.org (Postfix) with ESMTP id 33B818FC15 for ; Thu, 1 Mar 2012 12:14:24 +0000 (UTC) Received: from csmailer.cs.nctu.edu.tw (localhost [127.0.0.1]) by csmailer.cs.nctu.edu.tw (Postfix) with ESMTP id CC09E550 for ; Thu, 1 Mar 2012 20:19:32 +0800 (CST) Received: from csduty.cs.nctu.edu.tw (csduty [140.113.235.102]) by csmailer.cs.nctu.edu.tw (Postfix) with ESMTP id C4FED54F for ; Thu, 1 Mar 2012 20:19:32 +0800 (CST) Received: (from jyyou@localhost) by csduty.cs.nctu.edu.tw (8.14.4/8.14.4/Submit) id q21CEEJL081084; Thu, 1 Mar 2012 20:14:14 +0800 (CST) (envelope-from jyyou) Message-Id: <201203011214.q21CEEJL081084@csduty.cs.nctu.edu.tw> Date: Thu, 1 Mar 2012 20:14:14 +0800 (CST) From: Jyun-Yan You To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165580: [MAINTAINER] lang/clay: update to 0.1.1 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: Thu, 01 Mar 2012 12:20:08 -0000 >Number: 165580 >Category: ports >Synopsis: [MAINTAINER] lang/clay: update to 0.1.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 12:20:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jyun-Yan You >Release: FreeBSD 8.2-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD csduty.cs.nctu.edu.tw 8.2-RELEASE-p3 FreeBSD 8.2-RELEASE-p3 #0: Tue Sep 27 18:45:57 UTC 2011 >Description: - Update to 0.1.1 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- clay-0.1.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/lang/clay/Makefile /amd/gcs/98/9855518/src/ports/lang/clay/Makefile --- /usr/ports/lang/clay/Makefile 2012-02-03 06:22:06.000000000 +0800 +++ /amd/gcs/98/9855518/src/ports/lang/clay/Makefile 2012-03-01 20:12:28.915709000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= clay -PORTVERSION= 0.1.0 +PORTVERSION= 0.1.1 CATEGORIES= lang MASTER_SITES= https://github.com/jckarter/${PORTNAME}/tarball/v${PORTVERSION}/ DISTNAME= jckarter-${PORTNAME}-v${PORTVERSION}-0-g${GITVERSION} @@ -18,7 +18,7 @@ BUILD_DEPENDS= llvm>=3.0:${PORTSDIR}/devel/llvm -GITVERSION= 0dcc5de +GITVERSION= 850c5c9 FETCH_ARGS= -pRr WRKSRC= ${WRKDIR}/jckarter-${PORTNAME}-${GITVERSION} @@ -29,10 +29,8 @@ .include -.if ${ARCH} == amd64 CC= clang CXX= clang++ -.endif .if ${OSVERSION} < 900044 BUILD_DEPENDS+= clang>=3.0:${PORTSDIR}/lang/clang diff -ruN --exclude=CVS /usr/ports/lang/clay/distinfo /amd/gcs/98/9855518/src/ports/lang/clay/distinfo --- /usr/ports/lang/clay/distinfo 2012-01-26 20:08:11.000000000 +0800 +++ /amd/gcs/98/9855518/src/ports/lang/clay/distinfo 2012-03-01 20:12:28.917707000 +0800 @@ -1,2 +1,2 @@ -SHA256 (jckarter-clay-v0.1.0-0-g0dcc5de.tar.gz) = f9c9ca0e57e1a8d44a6dc59cb9b4651ba4e4aa4cc16e4a2915aec0fd89cd1ef6 -SIZE (jckarter-clay-v0.1.0-0-g0dcc5de.tar.gz) = 2957532 +SHA256 (jckarter-clay-v0.1.1-0-g850c5c9.tar.gz) = 509108be0e703845cd8b48a99bf7723297c09c0faf75799a81f6103b9a523b97 +SIZE (jckarter-clay-v0.1.1-0-g850c5c9.tar.gz) = 2836566 --- clay-0.1.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 13:00:27 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05A781065672 for ; Thu, 1 Mar 2012 13:00:27 +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 892298FC16 for ; Thu, 1 Mar 2012 13:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21D0Jf0018229 for ; Thu, 1 Mar 2012 13:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21D0JLQ018226; Thu, 1 Mar 2012 13:00:19 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 13:00:19 GMT Resent-Message-Id: <201203011300.q21D0JLQ018226@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AB570106566B for ; Thu, 1 Mar 2012 12:54:02 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 34AFC8FC12 for ; Thu, 1 Mar 2012 12:54:02 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q21CrqYk079396 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 1 Mar 2012 07:53:55 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q21CrjxO020142; Thu, 1 Mar 2012 07:53:45 -0500 (EST) (envelope-from steve) Message-Id: <201203011253.q21CrjxO020142@meatwad.mouf.net> Date: Thu, 1 Mar 2012 07:53:45 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: snowfly@yuntech.edu.tw Subject: ports/165581: [PATCH] graphics/p5-Image-MetaData-JPEG: update to 0.153 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: Thu, 01 Mar 2012 13:00:27 -0000 >Number: 165581 >Category: ports >Synopsis: [PATCH] graphics/p5-Image-MetaData-JPEG: update to 0.153 >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: Thu Mar 01 13:00:18 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: - Update to 0.153 - This version passes tests Port maintainer (snowfly@yuntech.edu.tw) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: update, diff: CVS) >How-To-Repeat: >Fix: --- p5-Image-MetaData-JPEG-0.153.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/p5-Image-MetaData-JPEG/Makefile,v retrieving revision 1.3 diff -u -u -r1.3 Makefile --- Makefile 17 Apr 2008 14:26:43 -0000 1.3 +++ Makefile 1 Mar 2012 12:52:49 -0000 @@ -6,7 +6,7 @@ # PORTNAME= Image-MetaData-JPEG -PORTVERSION= 0.15 +PORTVERSION= 0.153 CATEGORIES= graphics perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Index: distinfo =================================================================== RCS file: /home/pcvs/ports/graphics/p5-Image-MetaData-JPEG/distinfo,v retrieving revision 1.2 diff -u -u -r1.2 distinfo --- distinfo 3 Jul 2011 14:11:49 -0000 1.2 +++ distinfo 1 Mar 2012 12:52:49 -0000 @@ -1,2 +1,2 @@ -SHA256 (Image-MetaData-JPEG-0.15.tar.gz) = 0a91227beea4439421f4ed240752a3ed54e6999630005353c072b2a4e8b0febb -SIZE (Image-MetaData-JPEG-0.15.tar.gz) = 292174 +SHA256 (Image-MetaData-JPEG-0.153.tar.gz) = 2fae457e2e4175c80a7a92a88c9bde70ddd0a9ec540c966b4350b69b4c880703 +SIZE (Image-MetaData-JPEG-0.153.tar.gz) = 305848 Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/graphics/p5-Image-MetaData-JPEG/pkg-plist,v retrieving revision 1.1 diff -u -u -r1.1 pkg-plist --- pkg-plist 5 Aug 2006 14:15:41 -0000 1.1 +++ pkg-plist 1 Mar 2012 12:52:49 -0000 @@ -1,23 +1,40 @@ +%%SITE_PERL%%/%%PERL_ARCH%%/auto/Image/MetaData/JPEG/.packlist %%SITE_PERL%%/Image/MetaData/JPEG.pm %%SITE_PERL%%/Image/MetaData/JPEG.pod %%SITE_PERL%%/Image/MetaData/JPEG/Backtrace.pm -%%SITE_PERL%%/Image/MetaData/JPEG/JPEG_app13.pl -%%SITE_PERL%%/Image/MetaData/JPEG/JPEG_app1_exif.pl -%%SITE_PERL%%/Image/MetaData/JPEG/JPEG_comments.pl -%%SITE_PERL%%/Image/MetaData/JPEG/JPEG_various.pl %%SITE_PERL%%/Image/MetaData/JPEG/MakerNotes.pod %%SITE_PERL%%/Image/MetaData/JPEG/Record.pm %%SITE_PERL%%/Image/MetaData/JPEG/Segment.pm -%%SITE_PERL%%/Image/MetaData/JPEG/Segment_dumpers.pl -%%SITE_PERL%%/Image/MetaData/JPEG/Segment_parsers.pl %%SITE_PERL%%/Image/MetaData/JPEG/Structures.pod -%%SITE_PERL%%/Image/MetaData/JPEG/Tables.pm -%%SITE_PERL%%/Image/MetaData/JPEG/Tables_makernotes.pl %%SITE_PERL%%/Image/MetaData/JPEG/TagLists.pod -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Image/MetaData/JPEG/.packlist +%%SITE_PERL%%/Image/MetaData/JPEG/access/app13.pl +%%SITE_PERL%%/Image/MetaData/JPEG/access/app1_exif.pl +%%SITE_PERL%%/Image/MetaData/JPEG/access/comments.pl +%%SITE_PERL%%/Image/MetaData/JPEG/access/various.pl +%%SITE_PERL%%/Image/MetaData/JPEG/data/Makernotes.pl +%%SITE_PERL%%/Image/MetaData/JPEG/data/Tables.pm +%%SITE_PERL%%/Image/MetaData/JPEG/dumpers/app1.pl +%%SITE_PERL%%/Image/MetaData/JPEG/dumpers/app13.pl +%%SITE_PERL%%/Image/MetaData/JPEG/dumpers/app1_exif.pl +%%SITE_PERL%%/Image/MetaData/JPEG/dumpers/dumpers.pl +%%SITE_PERL%%/Image/MetaData/JPEG/parsers/app0.pl +%%SITE_PERL%%/Image/MetaData/JPEG/parsers/app1.pl +%%SITE_PERL%%/Image/MetaData/JPEG/parsers/app12.pl +%%SITE_PERL%%/Image/MetaData/JPEG/parsers/app13.pl +%%SITE_PERL%%/Image/MetaData/JPEG/parsers/app14.pl +%%SITE_PERL%%/Image/MetaData/JPEG/parsers/app1_exif.pl +%%SITE_PERL%%/Image/MetaData/JPEG/parsers/app1_xmp.pl +%%SITE_PERL%%/Image/MetaData/JPEG/parsers/app2.pl +%%SITE_PERL%%/Image/MetaData/JPEG/parsers/app3.pl +%%SITE_PERL%%/Image/MetaData/JPEG/parsers/image.pl +%%SITE_PERL%%/Image/MetaData/JPEG/parsers/parsers.pl @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Image/MetaData/JPEG @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Image/MetaData @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Image +@dirrmtry %%SITE_PERL%%/Image/MetaData/JPEG/access +@dirrmtry %%SITE_PERL%%/Image/MetaData/JPEG/data +@dirrmtry %%SITE_PERL%%/Image/MetaData/JPEG/dumpers +@dirrmtry %%SITE_PERL%%/Image/MetaData/JPEG/parsers @dirrmtry %%SITE_PERL%%/Image/MetaData/JPEG @dirrmtry %%SITE_PERL%%/Image/MetaData @dirrmtry %%SITE_PERL%%/Image --- p5-Image-MetaData-JPEG-0.153.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 13:00:39 2012 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 193951065670; Thu, 1 Mar 2012 13:00:39 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E0E018FC13; Thu, 1 Mar 2012 13:00:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21D0c5s018533; Thu, 1 Mar 2012 13:00:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21D0cQp018524; Thu, 1 Mar 2012 13:00:38 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 13:00:38 GMT Message-Id: <201203011300.q21D0cQp018524@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165581: [PATCH] graphics/p5-Image-MetaData-JPEG: update to 0.153 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: Thu, 01 Mar 2012 13:00:39 -0000 Synopsis: [PATCH] graphics/p5-Image-MetaData-JPEG: update to 0.153 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 13:00:38 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165581 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 13:30:12 2012 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 6E6241065675 for ; Thu, 1 Mar 2012 13:30:12 +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 48A2F8FC1D for ; Thu, 1 Mar 2012 13:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21DUCKj045563 for ; Thu, 1 Mar 2012 13:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21DUCwr045562; Thu, 1 Mar 2012 13:30:12 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 13:30:12 GMT Resent-Message-Id: <201203011330.q21DUCwr045562@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, wen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A051E1065674 for ; Thu, 1 Mar 2012 13:29:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 739088FC0A for ; Thu, 1 Mar 2012 13:29:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q21DTY9V005475 for ; Thu, 1 Mar 2012 13:29:34 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q21DTYKp005464; Thu, 1 Mar 2012 13:29:34 GMT (envelope-from nobody) Message-Id: <201203011329.q21DTYKp005464@red.freebsd.org> Date: Thu, 1 Mar 2012 13:29:34 GMT From: wen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165582: [Update]biology/py-biopython:update to 1.59 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: Thu, 01 Mar 2012 13:30:12 -0000 >Number: 165582 >Category: ports >Synopsis: [Update]biology/py-biopython:update to 1.59 >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: Thu Mar 01 13:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: wen >Release: FreeBSD-10.0 >Organization: FreeBSD >Environment: >Description: - Update to 1.59 >How-To-Repeat: >Fix: The diff is over 100k so I email it to maintainer >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 13:30:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8FC3A1065673; Thu, 1 Mar 2012 13:30:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 63FDE8FC0C; Thu, 1 Mar 2012 13:30:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21DUNLh046277; Thu, 1 Mar 2012 13:30:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21DUN1h046271; Thu, 1 Mar 2012 13:30:23 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 13:30:23 GMT Message-Id: <201203011330.q21DUN1h046271@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165582: [Update]biology/py-biopython:update to 1.59 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: Thu, 01 Mar 2012 13:30:23 -0000 Synopsis: [Update]biology/py-biopython:update to 1.59 Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 13:30:22 UTC 2012 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165582 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 13:50:47 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E8FD8106564A; Thu, 1 Mar 2012 13:50:47 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BCA6C8FC12; Thu, 1 Mar 2012 13:50:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21DolqO069791; Thu, 1 Mar 2012 13:50:47 GMT (envelope-from lwhsu@freefall.freebsd.org) Received: (from lwhsu@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21Dol1R069782; Thu, 1 Mar 2012 13:50:47 GMT (envelope-from lwhsu) Date: Thu, 1 Mar 2012 13:50:47 GMT Message-Id: <201203011350.q21Dol1R069782@freefall.freebsd.org> To: lwhsu@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lwhsu@FreeBSD.org From: lwhsu@FreeBSD.org Cc: Subject: Re: ports/165580: [MAINTAINER] lang/clay: update to 0.1.1 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: Thu, 01 Mar 2012 13:50:48 -0000 Synopsis: [MAINTAINER] lang/clay: update to 0.1.1 Responsible-Changed-From-To: freebsd-ports-bugs->lwhsu Responsible-Changed-By: lwhsu Responsible-Changed-When: Thu Mar 1 13:50:47 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165580 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 14:10:11 2012 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 05A0D106566C for ; Thu, 1 Mar 2012 14:10:10 +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 CAAE68FC0C for ; Thu, 1 Mar 2012 14:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21EAAnq083150 for ; Thu, 1 Mar 2012 14:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21EAAUW083149; Thu, 1 Mar 2012 14:10:10 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 14:10:10 GMT Resent-Message-Id: <201203011410.q21EAAUW083149@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, Hirohisa Yamaguchi Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA893106566B for ; Thu, 1 Mar 2012 14:02:48 +0000 (UTC) (envelope-from umq@ueo.co.jp) Received: from msa01b.plala.or.jp (msa01.plala.or.jp [IPv6:2400:7800:0:5010::1]) by mx1.freebsd.org (Postfix) with ESMTP id 87D7A8FC0C for ; Thu, 1 Mar 2012 14:02:47 +0000 (UTC) Received: from terpsichore.kaumoge.org ([118.16.87.28]) by msa01b.plala.or.jp with ESMTP id <20120301140221.NBPO4884.msa01b.plala.or.jp@terpsichore.kaumoge.org> for ; Thu, 1 Mar 2012 23:02:21 +0900 Received: from calliope.kaumoge.org (calliope.kaumoge.org [192.168.24.120]) by terpsichore.kaumoge.org (8.14.4/8.14.4/20101205) with ESMTP id q21E2IYT004087 for ; Thu, 1 Mar 2012 23:02:19 +0900 (JST) (envelope-from umq@ueo.co.jp) Message-Id: <867gz4pggm.wl%umq@ueo.co.jp> Date: Thu, 01 Mar 2012 23:02:17 +0900 From: Hirohisa Yamaguchi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165583: [maintainer] mail/opendkim update to 2.5.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: Thu, 01 Mar 2012 14:10:11 -0000 >Number: 165583 >Category: ports >Synopsis: [maintainer] mail/opendkim update to 2.5.0 >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: Thu Mar 01 14:10:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Hirohisa Yamaguchi >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD calliope.****.org 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The new version of mail/opendkim 2.5.0 is now available. >How-To-Repeat: N/A >Fix: the patch attached: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/opendkim/Makefile,v retrieving revision 1.11 diff -b -p -u -r1.11 Makefile --- Makefile 22 Jan 2012 11:49:11 -0000 1.11 +++ Makefile 1 Mar 2012 07:39:23 -0000 @@ -6,7 +6,7 @@ # PORTNAME= opendkim -PORTVERSION= 2.4.3 +PORTVERSION= 2.5.0 CATEGORIES= mail security MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME} \ @@ -28,10 +28,8 @@ GNU_CONFIGURE= yes USE_OPENSSL= yes USE_LDCONFIG= yes -MAN8= opendkim-genkey.8 opendkim-genzone.8 \ - opendkim-testadsp.8 opendkim-testkey.8 - -SUB_FILES= pkg-message +MAN8= opendkim-genkey.8 opendkim-genzone.8 opendkim-testadsp.8 \ + opendkim-testkey.8 opendkim-testmsg.8 OPTIONS= \ ARLIB "Asynchronous thread-safe DNS library" On \ @@ -54,6 +52,7 @@ USE_RC_SUBR= milter-opendkim MAN5+= opendkim.conf.5 MAN8+= opendkim.8 PLIST_SUB+= FILTER="" +SUB_FILES= pkg-message WITHOUT_MILTER_CFLAGS= yes WITHOUT_MILTER_LDFLAGS= yes .include "${PORTSDIR}/mail/sendmail/bsd.milter.mk" @@ -103,9 +102,6 @@ LIB_DEPENDS+= unbound:${PORTSDIR}/dns/u PLIST_SUB+= ARLIB="@comment " .else .if defined(WITH_ARLIB) -. if ${CC} == "clang" -BROKEN= ARLIB option does not compile with clang -. endif PLIST_SUB+= ARLIB="" CONFIGURE_ARGS+= --enable-arlib MAN3= ar.3 @@ -150,6 +146,11 @@ post-install: .endif @${MKDIR} ${PREFIX}/etc/mail ${INSTALL_DATA} ${WRKSRC}/opendkim/opendkim.conf.sample ${PREFIX}/etc/mail/ +.if !defined(WITHOUT_FILTER) @${CAT} ${PKGMESSAGE} +.endif + +regression-test: build + cd ${WRKSRC} ; ${MAKE} check .include Index: Makefile.features =================================================================== RCS file: /home/ncvs/ports/mail/opendkim/Makefile.features,v retrieving revision 1.6 diff -b -p -u -r1.6 Makefile.features --- Makefile.features 8 Jan 2012 01:23:47 -0000 1.6 +++ Makefile.features 1 Mar 2012 07:39:23 -0000 @@ -18,6 +18,10 @@ CONFIGURE_ARGS+= --enable-allsymbols .if defined(WITH_ATPS) && !defined(WITHOUT_ATPS) WITH_XTAGS= yes CONFIGURE_ARGS+= --enable-atps +MAN8+= opendkim-atpszone.8 +PLIST_SUB+= ATPS="" +.else +PLIST_SUB+= ATPS="@comment " .endif .if defined(WITH_CODECOVERAGE) && !defined(WITHOUT_CODECOVERAGE) @@ -39,6 +43,10 @@ LIB_DEPENDS+= tre:${PORTSDIR}/textproc/ .if defined(WITH_DKIM_REPUTATION) && !defined(WITHOUT_DKIM_REPUTATION) CONFIGURE_ARGS+= --enable-dkim_reputation +MAN3+= dkim-rep.3 +PLIST_SUB+= DKIMREP="" +.else +PLIST_SUB+= DKIMREP="@comment " .endif .if defined(WITH_IDENTITY_HEADER) && !defined(WITHOUT_IDENTITY_HEADER) @@ -52,6 +60,7 @@ CONFIGURE_ARGS+= --enable-ldap_caching .if defined(WITH_LUA_GLOBALS) && !defined(WITHOUT_LUA_GLOBALS) CONFIGURE_ARGS+= --enable-lua_globals +WITH_LUA= yes .endif .if defined(WITH_OVERSIGN) && !defined(WITHOUT_OVERSIGN) @@ -59,7 +68,6 @@ CONFIGURE_ARGS+= --enable-oversign .endif .if defined(WITH_PARSE_TIME) && !defined(WITHOUT_PARSE_TIME) -BROKEN= The feature ``_FFR_PARSE_TIME'' is incomplete, does not work CONFIGURE_ARGS+= --enable-parsetime .endif @@ -67,12 +75,16 @@ CONFIGURE_ARGS+= --enable-parsetime CONFIGURE_ARGS+= --enable-postgres_reconnect_hack .endif -.if defined(WITH_RATE_LIMIT) && !defined(WITHOUT_RATE_LIMIT) +.if defined(WITH_RATE_LIMIT) || defined(WITH_RESIGN) CONFIGURE_ARGS+= --enable-rate_limit .endif .if defined(WITH_RBL) && !defined(WITHOUT_RBL) CONFIGURE_ARGS+= --enable-rbl +MAN3+= rbl.3 +PLIST_SUB+= RBL="" +.else +PLIST_SUB+= RBL="@comment " .endif .if defined(WITH_REDIRECT) && !defined(WITHOUT_REDIRECT) @@ -83,8 +95,17 @@ CONFIGURE_ARGS+= --enable-redirect CONFIGURE_ARGS+= --enable-replace_rules .endif -.if defined(WITH_REPORT_INTERVALS) && !defined(WITHOUT_REPORT_INTERVALS) -CONFIGURE_ARGS+= --enable-report_intervals +.if defined(WITH_REPUTATION) && !defined(WITHOUT_REPUTATION) +CONFIGURE_ARGS+= --enable-reputation +MAN3+= ut.3 +MAN8+= opendkim-genrates.8 opendkim-modtotals.8 +PLIST_SUB+= REPUTE="" +.else +PLIST_SUB+= REPUTE="@comment " +.endif + +.if defined(WITH_REPUTATION_CACHE) && !defined(WITHOUT_REPUTATION_CACHE) +CONFIGURE_ARGS+= --enable-reputation_cache .endif .if defined(WITH_RESIGN) && !defined(WITHOUT_RESIGN) @@ -105,6 +126,7 @@ CONFIGURE_ARGS+= --enable-sender_macro .if defined(WITH_STATS) || defined(WITH_STATSEXT) CONFIGURE_ARGS+= --enable-stats +MAN1+= opendkim-spam.1 MAN8+= opendkim-stats.8 PLIST_SUB+= STATS="" .else @@ -117,6 +139,10 @@ CONFIGURE_ARGS+= --enable-statsext .if defined(WITH_VBR) && !defined(WITHOUT_VBR) CONFIGURE_ARGS+= --enable-vbr +MAN3+= vbr.3 +PLIST_SUB+= VBR="" +.else +PLIST_SUB+= VBR="@comment " .endif .if defined(WITH_XTAGS) && !defined(WITHOUT_XTAGS) Index: distinfo =================================================================== RCS file: /home/ncvs/ports/mail/opendkim/distinfo,v retrieving revision 1.8 diff -b -p -u -r1.8 distinfo --- distinfo 22 Jan 2012 11:49:11 -0000 1.8 +++ distinfo 1 Mar 2012 07:39:23 -0000 @@ -1,2 +1,2 @@ -SHA256 (opendkim-2.4.3.tar.gz) = c3ef73c5aa2bf8a6626b822cea08b72c954376ae892d596346973d11003c0906 -SIZE (opendkim-2.4.3.tar.gz) = 1381956 +SHA256 (opendkim-2.5.0.tar.gz) = 5c17a5c82936495b35bc12b32438ebd7b7a624e3389fcac672f7d2ec5bdc8981 +SIZE (opendkim-2.5.0.tar.gz) = 1465356 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/mail/opendkim/pkg-plist,v retrieving revision 1.7 diff -b -p -u -r1.7 pkg-plist --- pkg-plist 8 Jan 2012 01:23:47 -0000 1.7 +++ pkg-plist 1 Mar 2012 07:39:23 -0000 @@ -1,24 +1,58 @@ @comment $FreeBSD: ports/mail/opendkim/pkg-plist,v 1.7 2012/01/08 01:23:47 scheidell Exp $ %%LUA%%bin/miltertest +%%ATPS%%bin/opendkim-atpszone bin/opendkim-genkey +%%REPUTE%%bin/opendkim-genrates bin/opendkim-genzone +%%REPUTE%%bin/opendkim-modtotals +%%STATS%%bin/opendkim-spam %%STATS%%bin/opendkim-stats bin/opendkim-testadsp bin/opendkim-testkey +bin/opendkim-testmsg etc/mail/opendkim.conf.sample -%%ARLIB%%include/ar/ar.h +%%ARLIB%%include/async-resolv.h +%%DKIMREP%%include/dkim-rep/dkim-rep.h include/opendkim/dkim.h +%%RBL%%include/rbl/rbl.h +%%REPUTE%%include/repute/repute.h +%%REPUTE%%include/ut/ut.h +%%VBR%%include/vbr/vbr.h %%ARLIB%%lib/libar.a %%ARLIB%%lib/libar.la %%ARLIB%%lib/libar.so %%ARLIB%%lib/libar.so.2 +%%DKIMREP%%lib/libdkimrep.a +%%DKIMREP%%lib/libdkimrep.la +%%DKIMREP%%lib/libdkimrep.so +%%DKIMREP%%lib/libdkimrep.so.1 lib/libopendkim.a lib/libopendkim.la lib/libopendkim.so -lib/libopendkim.so.5 +lib/libopendkim.so.6 +%%RBL%%lib/librbl.a +%%RBL%%lib/librbl.la +%%RBL%%lib/librbl.so +%%RBL%%lib/librbl.so.1 +%%REPUTE%%lib/librepute.a +%%REPUTE%%lib/librepute.la +%%REPUTE%%lib/librepute.so +%%REPUTE%%lib/librepute.so.1 +%%REPUTE%%lib/libut.a +%%REPUTE%%lib/libut.la +%%REPUTE%%lib/libut.so +%%REPUTE%%lib/libut.so.1 +%%VBR%%lib/libvbr.a +%%VBR%%lib/libvbr.la +%%VBR%%lib/libvbr.so +%%VBR%%lib/libvbr.so.2 %%ARLIB%%libdata/pkgconfig/ar.pc +%%DKIMREP%%libdata/pkgconfig/dkim-rep.pc libdata/pkgconfig/opendkim.pc +%%RBL%%libdata/pkgconfig/rbl.pc +%%REPUTE%%libdata/pkgconfig/repute.pc +%%REPUTE%%libdata/pkgconfig/ut.pc +%%VBR%%libdata/pkgconfig/vbr.pc %%FILTER%%sbin/opendkim @dirrm include/opendkim -%%ARLIB%%@dirrm include/ar @dirrmtry etc/mail Index: files/patch-libopendkim_tests_t-test75.c =================================================================== RCS file: files/patch-libopendkim_tests_t-test75.c diff -N files/patch-libopendkim_tests_t-test75.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-libopendkim_tests_t-test75.c 1 Mar 2012 07:39:23 -0000 @@ -0,0 +1,32 @@ +--- ./libopendkim/tests/t-test75.c.orig 2012-03-01 08:52:30.000000000 +0900 ++++ ./libopendkim/tests/t-test75.c 2012-03-01 15:50:21.000000000 +0900 +@@ -52,6 +52,14 @@ + dkim_query_t qtype = DKIM_QUERY_FILE; + unsigned char hdr[MAXHEADER + 1]; + ++#ifdef USE_GNUTLS ++ (void) gnutls_global_init(); ++#endif /* USE_GNUTLS */ ++ ++ /* instantiate the library */ ++ lib = dkim_init(NULL, NULL); ++ assert(lib != NULL); ++ + if (!dkim_libfeature(lib, DKIM_FEATURE_PARSE_TIME)) + { + printf("*** Date: value extraction SKIPPED\n"); +@@ -62,14 +70,6 @@ + printf("*** Date: value extraction\n"); + } + +-#ifdef USE_GNUTLS +- (void) gnutls_global_init(); +-#endif /* USE_GNUTLS */ +- +- /* instantiate the library */ +- lib = dkim_init(NULL, NULL); +- assert(lib != NULL); +- + #ifdef TEST_KEEP_FILES + /* set flags */ + flags = (DKIM_LIBFLAGS_TMPFILES|DKIM_LIBFLAGS_KEEPFILES); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 14:30:11 2012 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 AF8A01065675 for ; Thu, 1 Mar 2012 14:30:11 +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 6EAB18FC19 for ; Thu, 1 Mar 2012 14:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21EUBpV001498 for ; Thu, 1 Mar 2012 14:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21EUBsS001496; Thu, 1 Mar 2012 14:30:11 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 14:30:11 GMT Resent-Message-Id: <201203011430.q21EUBsS001496@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, Janne Snabb Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id ED91A106566C for ; Thu, 1 Mar 2012 14:24:32 +0000 (UTC) (envelope-from snabb@tiktik.epipe.com) Received: from tiktik.epipe.com (tiktik.epipe.com [IPv6:2001:1828:0:3::2]) by mx1.freebsd.org (Postfix) with ESMTP id A2D608FC12 for ; Thu, 1 Mar 2012 14:24:32 +0000 (UTC) Received: from tiktik.epipe.com (localhost [127.0.0.1]) by tiktik.epipe.com (8.14.4/8.14.4) with ESMTP id q21EOSMn027192 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 1 Mar 2012 14:24:31 GMT (envelope-from snabb@tiktik.epipe.com) Received: (from snabb@localhost) by tiktik.epipe.com (8.14.4/8.14.4/Submit) id q21EOSdo026873; Thu, 1 Mar 2012 14:24:28 GMT (envelope-from snabb) Message-Id: <201203011424.q21EOSdo026873@tiktik.epipe.com> Date: Thu, 1 Mar 2012 14:24:28 GMT From: Janne Snabb To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165584: [PATCH] x11-fonts/libXfont: fix typo in COMMENT 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: Thu, 01 Mar 2012 14:30:11 -0000 >Number: 165584 >Category: ports >Synopsis: [PATCH] x11-fonts/libXfont: fix typo in COMMENT >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 14:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Janne Snabb >Release: FreeBSD 8.2-RELEASE i386 >Organization: EPIPE Communications >Environment: System: FreeBSD tiktik.epipe.com 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Mon Feb 28 12:16:42 UTC 2011 >Description: Simple typo in COMMENT which gets propagated to INDEX and everywhere else. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- libXfont-1.4.4,1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-fonts/libXfont/Makefile /tmp/libXfont/Makefile --- /usr/ports/x11-fonts/libXfont/Makefile 2011-11-09 15:26:02.000000000 +0000 +++ /tmp/libXfont/Makefile 2012-03-01 14:09:17.000000000 +0000 @@ -11,7 +11,7 @@ CATEGORIES= x11-fonts MAINTAINER= x11@FreeBSD.org -COMMENT= X font libary +COMMENT= X font library LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 --- libXfont-1.4.4,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 14:30:23 2012 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 D69861065678; Thu, 1 Mar 2012 14:30:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A9ECF8FC23; Thu, 1 Mar 2012 14:30:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21EUNYV002278; Thu, 1 Mar 2012 14:30:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21EUNCr002272; Thu, 1 Mar 2012 14:30:23 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 14:30:23 GMT Message-Id: <201203011430.q21EUNCr002272@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-x11@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165584: [PATCH] x11-fonts/libXfont: fix typo in COMMENT 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: Thu, 01 Mar 2012 14:30:23 -0000 Synopsis: [PATCH] x11-fonts/libXfont: fix typo in COMMENT Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 14:30:22 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165584 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 16:05:42 2012 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 3BBD71065670; Thu, 1 Mar 2012 16:05:42 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BB0828FC16; Thu, 1 Mar 2012 16:05:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21G5foa092752; Thu, 1 Mar 2012 16:05:41 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21G5fcr092748; Thu, 1 Mar 2012 16:05:41 GMT (envelope-from scheidell) Date: Thu, 1 Mar 2012 16:05:41 GMT Message-Id: <201203011605.q21G5fcr092748@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165583: [maintainer] mail/opendkim update to 2.5.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: Thu, 01 Mar 2012 16:05:42 -0000 Synopsis: [maintainer] mail/opendkim update to 2.5.0 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Thu Mar 1 16:05:41 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165583 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 16:20:12 2012 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 518BC1065676 for ; Thu, 1 Mar 2012 16:20:12 +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 215058FC15 for ; Thu, 1 Mar 2012 16:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21GKCC6003031 for ; Thu, 1 Mar 2012 16:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21GKC4H003030; Thu, 1 Mar 2012 16:20:12 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 16:20:12 GMT Resent-Message-Id: <201203011620.q21GKC4H003030@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, Harald Schmalzbauer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8BFF31065674 for ; Thu, 1 Mar 2012 16:18:06 +0000 (UTC) (envelope-from admin@omnilan.de) Received: from mailgw.rzhp.omnilan.net (mailgw.rzhp.omnilan.net [IPv6:2a01:138:9004:1::21:133]) by mx1.freebsd.org (Postfix) with ESMTP id 852848FC14 for ; Thu, 1 Mar 2012 16:18:03 +0000 (UTC) Received: from mailhub.wdn.omnilan.net (cale.wdn.omnilan.net [IPv6:2001:a60:f0bb:1::2:2]) by mailgw.rzhp.omnilan.net (8.14.4/8.14.4) with ESMTP id q21GHfSV060552 for ; Thu, 1 Mar 2012 17:17:46 +0100 (CET) (envelope-from admin@jadam9s64.cale.wdn.omnilan.net) Received: from jadam9s64.cale.wdn.omnilan.net (jadam9s64.cale.wdn.omnilan.net [IPv6:2001:a60:f0bb:1::2:2b7]) by mailhub.wdn.omnilan.net (8.14.5/8.14.4) with ESMTP id q21GHYv1047226 for ; Thu, 1 Mar 2012 17:17:34 +0100 (CET) (envelope-from admin@jadam9s64.cale.wdn.omnilan.net) Received: (from root@localhost) by jadam9s64.cale.wdn.omnilan.net (8.14.5/8.14.5/Submit) id q21GHYnN047225; Thu, 1 Mar 2012 17:17:34 +0100 (CET) (envelope-from admin) Message-Id: <201203011617.q21GHYnN047225@jadam9s64.cale.wdn.omnilan.net> Date: Thu, 1 Mar 2012 17:17:34 +0100 (CET) From: Harald Schmalzbauer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165586: New port german/lx-office-erp, sql-ledger fork with extensions X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Harald Schmalzbauer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2012 16:20:12 -0000 >Number: 165586 >Category: ports >Synopsis: New port german/lx-office-erp, sql-ledger fork with extensions >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 16:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Harald Schmalzbauer >Release: FreeBSD 9.0-STABLE amd64 >Organization: OmniLAN >Environment: System: FreeBSD jadam9s64.cale.wdn.omnilan.net 9.0-STABLE FreeBSD 9.0-STABLE #0: Thu Feb 23 17:02:32 CET 2012 admin@jadam9s64.cale.wdn.omnilan.net:/usr/obj/usr/src/sys/ILZ-S30 amd64 >Description: New port for comperhensive web-based ERP system >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # lx-office-erp # lx-office-erp/pkg-descr # lx-office-erp/files # lx-office-erp/files/lighttpd_conf.d_fastcgi.conf # lx-office-erp/files/apache22_Includes_lxoffice.conf # lx-office-erp/files/config_lx_office.conf.default-bin-config-path.patch # lx-office-erp/files/lighttpd_lighttpd.conf # lx-office-erp/files/SL_Template_LaTeX_bin-config-path.patch # lx-office-erp/files/pkg-message.in # lx-office-erp/pkg-plist # lx-office-erp/Makefile # lx-office-erp/distinfo # echo c - lx-office-erp mkdir -p lx-office-erp > /dev/null 2>&1 echo x - lx-office-erp/pkg-descr sed 's/^X//' >lx-office-erp/pkg-descr << '3647e02b940aeff7cf1f2d86ae7839d9' XLX-Office-ERP is a fork of SQL-Ledger, a double entry accounting system, Xwritten in perl. XAll data is stored in a PostgreSQL Server, for the display Xany text or GUI browser can be used. XLX-Office is developed to fit german business needs and has a lot of Xadditional features for billing-, accounting- (with DATEV export), Xstock- and order- management. X XWWW: http://www.lx-office.org/ 3647e02b940aeff7cf1f2d86ae7839d9 echo c - lx-office-erp/files mkdir -p lx-office-erp/files > /dev/null 2>&1 echo x - lx-office-erp/files/lighttpd_conf.d_fastcgi.conf sed 's/^X//' >lx-office-erp/files/lighttpd_conf.d_fastcgi.conf << 'f7d7f3e6203cc42643cac8bd95f948f8' Xserver.modules += ( "mod_fastcgi" ) X X$HTTP["url"] =~ "^/lx-erp" { X fastcgi.server = ( ".fpl" => X ( X ( X "socket" => socket_dir + "/lxoffice-fastcgi-1.socket", X "bin-path" => "/usr/local/www/lx-erp/dispatcher.fpl", X "max-procs" => 1, X ) X ) X ) X} f7d7f3e6203cc42643cac8bd95f948f8 echo x - lx-office-erp/files/apache22_Includes_lxoffice.conf sed 's/^X//' >lx-office-erp/files/apache22_Includes_lxoffice.conf << '28aa187136e0f078e7fe98f60aae29d9' X X Options ExecCGI Includes FollowSymlinks X Order Deny,Allow X Allow from All X X X Order Deny,Allow X Deny from All X X X X X PerlModule ModPerl::Registry X AddHandler perl-script .pl X PerlHandler ModPerl::Registry X PerlSendHeader On X PerlOptions +ParseHeaders X PerlSwitches -I/usr/local/www/lxoffice-erp-2.6.3 X X X AddHandler cgi-script .pl X X X X AddHandler fcgid-script .fpl X AliasMatch ^/[^/]+\.pl /usr/local/www/lx-office-erp-2.6.3/dispatcher.fpl X Alias / /usr/local/www/lx-office-erp-2.6.3/ X FcgidMaxRequestLen 10485760 X 28aa187136e0f078e7fe98f60aae29d9 echo x - lx-office-erp/files/config_lx_office.conf.default-bin-config-path.patch sed 's/^X//' >lx-office-erp/files/config_lx_office.conf.default-bin-config-path.patch << '889b7cd1b9db0a25ee330c57234b5e3e' X--- config/lx_office.conf.default 2012-02-27 18:16:36.000000000 +0100 X+++ config/lx_office.conf.default 2012-03-01 14:12:34.000000000 +0100 X@@ -108,8 +108,12 @@ X html2ps = html2ps X # Location of the Ghostscript binary X ghostscript = gs X+# Location of the latex (or compatible, e.g. xetex) binary X+latex = latex X # Location of the pdflatex (or compatible, e.g. xetex) binary X-latex = pdflatex X+pdflatex = pdflatex X+# Location of the dvips (or compatible) binary X+dvips = dvips X # Location of the two executables "pg_dump" and "pg_restore" used for X # database backup and restoration from the admin section. If X # "pg_dump" or "pg_restore" is set to "DISABLED" then the 889b7cd1b9db0a25ee330c57234b5e3e echo x - lx-office-erp/files/lighttpd_lighttpd.conf sed 's/^X//' >lx-office-erp/files/lighttpd_lighttpd.conf << '86dc6e1fab0182ff1ee9c3b44af26fc4' X#Make sure you have mod_setenv enabled in modules.conf, or include it here X#server.modules += ( "mod_setenv" ) X Xalias.url = ( "/lx-erp" => "/usr/local/www/lxoffice-erp-2.6.3" ) X$HTTP["url"] =~ "^/lx-erp" { X setenv.add-environment = ( "PATH" => "/usr/local/bin" ) X fastcgi.map-extensions = ( ".pl" => ".fpl" ) X $HTTP["url"] =~ "^/lx-erp/(config|scripts|t|templates|SL|locale|bin/mozilla|modules/override/CGI)/" { url.access-deny = ("") } X} 86dc6e1fab0182ff1ee9c3b44af26fc4 echo x - lx-office-erp/files/SL_Template_LaTeX_bin-config-path.patch sed 's/^X//' >lx-office-erp/files/SL_Template_LaTeX_bin-config-path.patch << '2a4175d9255954d9ac0e55b899b20598' X--- SL/Template/LaTeX.pm 2011-06-15 11:49:01.000000000 +0200 X+++ SL/Template/LaTeX.pm 2012-03-01 12:45:17.000000000 +0100 X@@ -396,7 +396,8 @@ X X $form->{tmpfile} =~ s/tex$/dvi/; X X- system("dvips $form->{tmpfile} -o -q > /dev/null"); X+ my $dvips = $self->_get_dvips_path(); X+ system("${dvips} $form->{tmpfile} -o -q > /dev/null"); X $ENV{HOME} = $old_home; X X if ($?) { X@@ -425,12 +426,12 @@ X X $form->{tmpfile} =~ s/\Q$userspath\E\///g; X X- my $latex = $self->_get_latex_path(); X+ my $pdflatex = $self->_get_pdflatex_path(); X my $old_home = $ENV{HOME}; X $ENV{HOME} = $userspath =~ m|^/| ? $userspath : getcwd() . "/" . $userspath; X X for (my $run = 1; $run <= 2; $run++) { X- system("${latex} --interaction=nonstopmode $form->{tmpfile} " . X+ system("${pdflatex} --interaction=nonstopmode $form->{tmpfile} " . X "> $form->{tmpfile}.err"); X if ($?) { X $ENV{HOME} = $old_home; X@@ -447,7 +448,15 @@ X } X X sub _get_latex_path { X- return $::lx_office_conf{applications}->{latex} || 'pdflatex'; X+ return $::lx_office_conf{applications}->{latex} || 'latex'; X+} X+ X+sub _get_pdflatex_path { X+ return $::lx_office_conf{applications}->{pdflatex} || 'pdflatex'; X+} X+ X+sub _get_dvips_path { X+ return $::lx_office_conf{applications}->{dvips} || 'dvips'; X } X X sub get_mime_type() { 2a4175d9255954d9ac0e55b899b20598 echo x - lx-office-erp/files/pkg-message.in sed 's/^X//' >lx-office-erp/files/pkg-message.in << 'cc77bd5bf536f94bfb7fc06649a4515e' X================================================================== X Xlx-office-erp has now been installed. X XWARNING: This software requires a significant amount of further X configuration. You have to deal with (La)TeX templates, X and read a lot about database setup and administration X inside lx-office-erp! X In the opinion of the port maintainer, this software X hasn't reached production quality! It can greatly help X managing your business (Fakturierung, Buchhaltung, X Lagerverwaltung) but don't expect anything to work out X of the box, and be prepared to work arround incomplete X and/or erroneous functions. X XTo make starting a bit easier, you can find example configurations Xin your %%EXAMPLESDIR%% Xfor apache and lighttpd, both with legacy cgi and also with XFast-CGI support. X XYou can find an installation description in %%DOCSDIR%% Xand also in %%WWWDIR%%/%%DISTNAME%%/doc X XMost documentation is available in german only, since this product Xis strongly customized to german business. X Xhttp://wiki.lx-office.org/index.php?title=Hauptseite X X================================================================== cc77bd5bf536f94bfb7fc06649a4515e echo x - lx-office-erp/pkg-plist sed 's/^X//' >lx-office-erp/pkg-plist << '2f13e8d37a16e13bf1716ce8327fa018' Xwww/lxoffice-erp-2.6.3/generictranslations.pl Xwww/lxoffice-erp-2.6.3/lxo-import/parts.bsp Xwww/lxoffice-erp-2.6.3/lxo-import/ups.html Xwww/lxoffice-erp-2.6.3/lxo-import/import_lib.php Xwww/lxoffice-erp-2.6.3/lxo-import/db.php Xwww/lxoffice-erp-2.6.3/lxo-import/partshead.csv Xwww/lxoffice-erp-2.6.3/lxo-import/customer_shipto.bsp Xwww/lxoffice-erp-2.6.3/lxo-import/parts_import.php Xwww/lxoffice-erp-2.6.3/lxo-import/customer.bsp Xwww/lxoffice-erp-2.6.3/lxo-import/blz.php Xwww/lxoffice-erp-2.6.3/lxo-import/customer_contact.bsp Xwww/lxoffice-erp-2.6.3/lxo-import/partsB.php Xwww/lxoffice-erp-2.6.3/lxo-import/contactB.php Xwww/lxoffice-erp-2.6.3/lxo-import/shiptoB.php Xwww/lxoffice-erp-2.6.3/lxo-import/addressB.php Xwww/lxoffice-erp-2.6.3/fu.pl Xwww/lxoffice-erp-2.6.3/ir.pl Xwww/lxoffice-erp-2.6.3/menujs.pl Xwww/lxoffice-erp-2.6.3/ustva.pl Xwww/lxoffice-erp-2.6.3/sepa.pl Xwww/lxoffice-erp-2.6.3/image/transparent16x16.gif Xwww/lxoffice-erp-2.6.3/image/lx-office-erp.png Xwww/lxoffice-erp-2.6.3/image/indentbg2.gif Xwww/lxoffice-erp-2.6.3/image/fade2.png Xwww/lxoffice-erp-2.6.3/image/bg_titel.gif Xwww/lxoffice-erp-2.6.3/image/right.gif Xwww/lxoffice-erp-2.6.3/image/updown.png Xwww/lxoffice-erp-2.6.3/image/up.png Xwww/lxoffice-erp-2.6.3/image/shadeactive.gif Xwww/lxoffice-erp-2.6.3/image/px_3.gif Xwww/lxoffice-erp-2.6.3/image/unterpunkt.png Xwww/lxoffice-erp-2.6.3/image/calendar.png Xwww/lxoffice-erp-2.6.3/image/tux.gif Xwww/lxoffice-erp-2.6.3/image/weblogo.gif Xwww/lxoffice-erp-2.6.3/image/expand3.gif Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Reports--Customers.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Admin--Mitteilungen.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AR--Reports--Dunnings.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Add Part.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Admin--Benutzer.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AR--Add Sales Invoice.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Add Assembly.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Add Vendor.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Notizen.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/General Ledger.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Termine.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AR--Add Quotation.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Batch Printing--Packing Lists.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Schnellsuche.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Batch Printing--Sales Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Personen.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Warehouse.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AR--Add Dunning.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Reports--Chart of Accounts.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Lieferant.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AR.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Add Service.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/General Ledger--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/rightarrow_24.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Reports--Income Statement.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Thumbs.db Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Kunden.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Productivity.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Reports--Assemblies.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Reports--Services.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Batch Printing--Receipts.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/General Ledger--DATEV - Export Assistent.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Admin--Etiketten.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Cash--Reports--Receipts.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Reports--Projects.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--eMail.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Program.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Program--Version.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Auftragschance.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AR--Reports--Sales Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AP--Reports--Purchase Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AP--Add Purchase Order.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Reports--Projecttransactions.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Cash--Receipt.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Program--Preferences.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Admin--Gruppen.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Batch Printing--RFQs.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/System.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AP--Add RFQ.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Cash--Payment.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Program--Logout.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Batch Printing--Quotations.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Reports--Vendors.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Admin.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AR--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/General Ledger--Add AR Transaction.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Add Customer.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Batch Printing--Sales Invoices.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/General Ledger--Add Transaction.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Service.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AP--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/leftarrow_24.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Reports--Parts.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Hilfe.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AP--Reports--RFQs.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Batch Printing--Purchase Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Batch Printing.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/General Ledger--Reports--AR Aging.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Add Project.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Cash--Reconciliation.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Cash--Reports--Payments.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/General Ledger--Reports--AP Aging.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AR--Add Sales Order.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Wissens-DB.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Admin--Status.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Wiedervorlage.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Neues Fenster.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Add License.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Reports--UStVa.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Cash.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Cash--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/CRM--Admin--Dokumentvorlage.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Master Data--Reports--Licenses.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/Reports--Balance Sheet.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/General Ledger--Add AP Transaction.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AR--Reports--Quotations.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/General Ledger--Reports--Journal.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AR--Reports--Invoices.png Xwww/lxoffice-erp-2.6.3/image/icons/24x24/AP.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Admin.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Reports--Vendors.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AP--Add Purchase Order.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Program--Version.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AP--Reports--RFQs.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Cash--Receipt.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Add Customer.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Program.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AR--Add Dunning.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AR--Reports--Sales Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Reports--Assemblies.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Cash--Payment.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--eMail.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Reports--Customers.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AP--Reports--Purchase Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Add Project.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Admin--Benutzer.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AR--Reports--Invoices.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Service.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Batch Printing.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Add License.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Reports--Parts.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Cash--Reports--Payments.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Cash.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Neues Fenster.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AP.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/General Ledger--DATEV - Export Assistent.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Batch Printing--Quotations.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AR--Reports--Quotations.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Hilfe.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Cash--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Reports--UStVa.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Reports--Services.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Reports--Projects.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Reports--Balance Sheet.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Admin--Dokumentvorlage.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Kunden.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AR--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Program--Logout.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Reports--Chart of Accounts.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AP--Add RFQ.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Add Vendor.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Batch Printing--Sales Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Admin--Gruppen.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Admin--Mitteilungen.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/General Ledger--Add AR Transaction.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Cash--Reconciliation.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AP--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Auftragschance.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Reports--Projecttransactions.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/General Ledger--Add Transaction.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/General Ledger.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Wiedervorlage.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Admin--Status.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/General Ledger--Reports--Journal.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/System.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Batch Printing--Packing Lists.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AR--Reports--Dunnings.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Add Part.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Batch Printing--Sales Invoices.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Add Assembly.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Personen.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AR--Add Sales Invoice.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Add Service.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AR--Add Sales Order.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AR--Add Quotation.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Lieferant.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Program--Preferences.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Batch Printing--RFQs.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/General Ledger--Add AP Transaction.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/General Ledger--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Warehouse--Produce Assembly.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Admin--Etiketten.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Termine.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Batch Printing--Receipts.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/AR.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Reports--Income Statement.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Reports--Licenses.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Notizen.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Batch Printing--Purchase Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Cash--Reports--Receipts.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Thumbs.db Xwww/lxoffice-erp-2.6.3/image/icons/32x32/General Ledger--Reports--AP Aging.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Schnellsuche.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/General Ledger--Reports--AR Aging.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/Master Data--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/32x32/CRM--Wissens-DB.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AP--Reports--RFQs.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AP--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/System.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Batch Printing--Quotations.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Reports--Sales Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/MDI-Text-Editor-16x16.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Reports--Delivery Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Wissens-DB.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Add Credit Note.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Add Part.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Add Sales Invoice.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Reports--Customers.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Personen.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/General Ledger--Add AP Transaction.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Reports--Dunnings.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AP--Add RFQ.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Add Vendor.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Admin--Mitteilungen.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Batch Printing--Sales Invoices.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Add Sales Order.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Add Customer.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/General Ledger.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/General Ledger--Add AR Transaction.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Reports--Projecttransactions.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Cash--Reports--Receipts.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Batch Printing--Receipts.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Reports--Assemblies.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Reports--Vendors.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Admin--Dokumentvorlage.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AP--Reports--Purchase Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Lieferant.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Add Service.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Admin--Benutzer.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Program--Version.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Admin--Gruppen.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Program--Logout.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Termine.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Reports--Licenses.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Admin--Etiketten.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Notizen.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Reports--Parts.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Add Delivery Order.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Auftragschance.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/General Ledger--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Cash--Payment.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Wiedervorlage.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Admin--Status.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Thumbs.db Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AP.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Add Assembly.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Hilfe.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Update Prices.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/General Ledger--Add Transaction.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Cash--Reconciliation.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Cash--Receipt.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AP--Add Purchase Order.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Reports--Quotations.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/General Ledger--Reports--Journal.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Reports--UStVa.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Cash--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Program.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/General Ledger--Reports--AR Aging.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Reports--Income Statement.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--eMail.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Batch Printing--Purchase Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/General Ledger--DATEV - Export Assistent.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Service.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Batch Printing--Sales Orders.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Reports--Balance Sheet.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Add Quotation.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Reports.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/General Ledger--Reports--AP Aging.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Batch Printing--Packing Lists.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Reports--Invoices.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Reports--Projects.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Kunden.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Batch Printing.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Add Project.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Cash.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/AR--Add Dunning.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Schnellsuche.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Reports--Chart of Accounts.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Program--Preferences.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Warehouse.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/CRM--Admin.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Warehouse--Produce Assembly.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Batch Printing--RFQs.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Reports--Services.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Master Data--Add License.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Neues Fenster.png Xwww/lxoffice-erp-2.6.3/image/icons/16x16/Cash--Reports--Payments.png Xwww/lxoffice-erp-2.6.3/image/bg_css_menu.png Xwww/lxoffice-erp-2.6.3/image/down.png Xwww/lxoffice-erp-2.6.3/image/dhtmlsuite/menu_strip_down_arrow.gif Xwww/lxoffice-erp-2.6.3/image/dhtmlsuite/menu-bar-right-arrow.png Xwww/lxoffice-erp-2.6.3/image/dhtmlsuite/menu_strip_separator.gif Xwww/lxoffice-erp-2.6.3/image/dhtmlsuite/menu-bar-gradient.jpg Xwww/lxoffice-erp-2.6.3/image/dhtmlsuite/menu_strip_bg.jpg Xwww/lxoffice-erp-2.6.3/image/dhtmlsuite/menu-bar-right-arrow.gif Xwww/lxoffice-erp-2.6.3/image/dhtmlsuite/menu_strip_down_arrow.png Xwww/lxoffice-erp-2.6.3/image/indentbg.gif Xwww/lxoffice-erp-2.6.3/image/shade.gif Xwww/lxoffice-erp-2.6.3/image/ok.png Xwww/lxoffice-erp-2.6.3/image/fade.png Xwww/lxoffice-erp-2.6.3/dispatcher.fcgi Xwww/lxoffice-erp-2.6.3/common.pl Xwww/lxoffice-erp-2.6.3/DEBIAN/README Xwww/lxoffice-erp-2.6.3/DEBIAN/DEBIAN/config Xwww/lxoffice-erp-2.6.3/DEBIAN/DEBIAN/templates Xwww/lxoffice-erp-2.6.3/DEBIAN/DEBIAN/clean.sh Xwww/lxoffice-erp-2.6.3/DEBIAN/DEBIAN/postrm Xwww/lxoffice-erp-2.6.3/DEBIAN/DEBIAN/debian-binary Xwww/lxoffice-erp-2.6.3/DEBIAN/DEBIAN/postinst Xwww/lxoffice-erp-2.6.3/DEBIAN/DEBIAN/conffiles Xwww/lxoffice-erp-2.6.3/DEBIAN/DEBIAN/control Xwww/lxoffice-erp-2.6.3/DEBIAN/DEBIAN/md5sum Xwww/lxoffice-erp-2.6.3/DEBIAN/DEBIAN/preinst Xwww/lxoffice-erp-2.6.3/DEBIAN/DEBIAN/control.older Xwww/lxoffice-erp-2.6.3/DEBIAN/struktur.tgz Xwww/lxoffice-erp-2.6.3/DEBIAN/mk_erp_deb.sh Xwww/lxoffice-erp-2.6.3/is.pl Xwww/lxoffice-erp-2.6.3/amtemplates.pl Xwww/lxoffice-erp-2.6.3/do.pl Xwww/lxoffice-erp-2.6.3/oscom/osCom.png Xwww/lxoffice-erp-2.6.3/oscom/pixel_trans.gif Xwww/lxoffice-erp-2.6.3/oscom/tmp/.dummy Xwww/lxoffice-erp-2.6.3/oscom/handbuch.pdf Xwww/lxoffice-erp-2.6.3/oscom/c2s.gif Xwww/lxoffice-erp-2.6.3/oscom/readme.first Xwww/lxoffice-erp-2.6.3/oscom/s2e.gif Xwww/lxoffice-erp-2.6.3/oscom/shopimport_csv.php Xwww/lxoffice-erp-2.6.3/oscom/artistic_license Xwww/lxoffice-erp-2.6.3/oscom/e2c.gif Xwww/lxoffice-erp-2.6.3/oscom/oscom.sql Xwww/lxoffice-erp-2.6.3/oscom/confedit.php Xwww/lxoffice-erp-2.6.3/oscom/trans.php Xwww/lxoffice-erp-2.6.3/oscom/menu.ini Xwww/lxoffice-erp-2.6.3/oscom/diff.php Xwww/lxoffice-erp-2.6.3/oscom/erpexport.php Xwww/lxoffice-erp-2.6.3/oscom/handbuch.odt Xwww/lxoffice-erp-2.6.3/oscom/shoplib.php Xwww/lxoffice-erp-2.6.3/oscom/conf.php Xwww/lxoffice-erp-2.6.3/oscom/e2s.gif Xwww/lxoffice-erp-2.6.3/oscom/shopimport_db.php Xwww/lxoffice-erp-2.6.3/oscom/confhli.php Xwww/lxoffice-erp-2.6.3/oscom/oscomexport.php Xwww/lxoffice-erp-2.6.3/rp.pl Xwww/lxoffice-erp-2.6.3/config/.htaccess Xwww/lxoffice-erp-2.6.3/config/.gitignore Xwww/lxoffice-erp-2.6.3/config/lx_office.conf.default Xwww/lxoffice-erp-2.6.3/config/lx_office.conf.default.orig Xwww/lxoffice-erp-2.6.3/spool/.dummy Xwww/lxoffice-erp-2.6.3/wh.pl Xwww/lxoffice-erp-2.6.3/dn.pl Xwww/lxoffice-erp-2.6.3/vk.pl Xwww/lxoffice-erp-2.6.3/users/ustva-2004-1.pdf Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/basic/dialog.xlc Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/basic/Standard/dialog.xlb Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/basic/Standard/script.xlb Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/basic/Standard/Module1.xba Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/basic/script.xlc Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/hatching_de.soh Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/arrowhd_en-US.soe Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/cmyk.soc Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/palette_de.soc Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/gallery.soc Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/web.soc Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/html.soc Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/styles_en-US.sod Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/styles_de.sod Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/soffice.cfg/modules/swriter/accelerator/en-US/current.xml Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/soffice.cfg/global/accelerator/en-US/current.xml Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/modern_de.sog Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/sun-color.soc Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/palette_en-US.soc Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/javasettings_Linux_x86.xml Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/hatching_en-US.soh Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/autotbl.fmt Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/classic_en-US.sog Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/modern_en-US.sog Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/arrowhd_de.soe Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/.gitignore Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/classic_de.sog Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/.gitignore Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/data/org/openoffice/Setup.xcu Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/data/org/openoffice/Office/Linguistic.xcu Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/data/org/openoffice/Office/Views.xcu Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/data/org/openoffice/Office/UI/WriterWindowState.xcu Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/data/org/openoffice/Office/Common.xcu Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/data/org/openoffice/Office/Recovery.xcu Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/gallery/sg30.sdv Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/gallery/sg100.sdv Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/gallery/sg30.thm Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/gallery/sg100.thm Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/psprint/.gitignore Xwww/lxoffice-erp-2.6.3/users/.openoffice.org2/user/autotext/mytexts.bau Xwww/lxoffice-erp-2.6.3/users/ustva-2005-1.pdf Xwww/lxoffice-erp-2.6.3/users/.gitignore Xwww/lxoffice-erp-2.6.3/users/ustva-2006-1.pdf Xwww/lxoffice-erp-2.6.3/users/ustva-2007-1.pdf Xwww/lxoffice-erp-2.6.3/users/ustva-2010.pdf Xwww/lxoffice-erp-2.6.3/users/ustva-2007-2.pdf Xwww/lxoffice-erp-2.6.3/users/ustva-2008.pdf Xwww/lxoffice-erp-2.6.3/users/ustva-2006-2.pdf Xwww/lxoffice-erp-2.6.3/users/ustva-2005-2.pdf Xwww/lxoffice-erp-2.6.3/users/html2ps-config Xwww/lxoffice-erp-2.6.3/users/ustva-2004-2.pdf Xwww/lxoffice-erp-2.6.3/oe.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/menunew.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/ct.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/am.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/admin_printer.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/pe.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/todo.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/drafts.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/bp.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/ca.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/common.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/gl.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/admin_groups.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/installationcheck.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/ustva.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/menujs.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/io.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/amtemplates.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/arap.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/cp.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/acctranscorrections.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/.htaccess Xwww/lxoffice-erp-2.6.3/bin/mozilla/do.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/licenses.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/rp.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/reportgenerator.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/wh.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/dn.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/login.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/admin.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/projects.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/menuXML.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/fu.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/ir.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/datev.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/invoice_io.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/menuv4.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/is.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/menu.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/ap.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/menuv3.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/amcvar.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/rc.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/generictranslations.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/vk.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/oe.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/sepa.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/ic.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/bankaccounts.pl Xwww/lxoffice-erp-2.6.3/bin/mozilla/ar.pl Xwww/lxoffice-erp-2.6.3/xslt/style1.css Xwww/lxoffice-erp-2.6.3/xslt/xulmenu.xsl Xwww/lxoffice-erp-2.6.3/menu.pl Xwww/lxoffice-erp-2.6.3/rc.pl Xwww/lxoffice-erp-2.6.3/modules/fallback/DateTime/Set.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/DateTime/Event/Cron.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/DateTime/Span.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/DateTime/SpanSet.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/Daemon/Generic/While1.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/Daemon/Generic/Event.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/Daemon/Generic.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/Email/Address.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/File/Slurp.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/File/Flock.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/Set/Infinite.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/Set/Crontab.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/Set/Infinite/Arithmetic.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/Set/Infinite/Basic.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/Set/Infinite/_recurrence.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/List/MoreUtils.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/parent.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/Exception/Lite.pm Xwww/lxoffice-erp-2.6.3/modules/fallback/Exception/Lite.pod Xwww/lxoffice-erp-2.6.3/modules/fallback/Sort/Naturally.pm Xwww/lxoffice-erp-2.6.3/modules/override/YAML.pm Xwww/lxoffice-erp-2.6.3/modules/override/YAML/Dumper/Base.pm Xwww/lxoffice-erp-2.6.3/modules/override/YAML/Error.pm Xwww/lxoffice-erp-2.6.3/modules/override/YAML/Tag.pm Xwww/lxoffice-erp-2.6.3/modules/override/YAML/Node.pm Xwww/lxoffice-erp-2.6.3/modules/override/YAML/Dumper.pm Xwww/lxoffice-erp-2.6.3/modules/override/YAML/Loader.pm Xwww/lxoffice-erp-2.6.3/modules/override/YAML/Marshall.pm Xwww/lxoffice-erp-2.6.3/modules/override/YAML/Types.pm Xwww/lxoffice-erp-2.6.3/modules/override/YAML/Base.pm Xwww/lxoffice-erp-2.6.3/modules/override/YAML/Loader/Base.pm Xwww/lxoffice-erp-2.6.3/modules/override/Term/ReadLine/Perl/Bind.pm Xwww/lxoffice-erp-2.6.3/modules/override/PDF/Table.pm Xwww/lxoffice-erp-2.6.3/modules/override/CGI/Ajax.pm Xwww/lxoffice-erp-2.6.3/modules/override/CGI/.htaccess Xwww/lxoffice-erp-2.6.3/modules/override/Devel/REPL/Plugin/PermanentHistory.pm Xwww/lxoffice-erp-2.6.3/modules/override/Devel/REPL/Plugin/AutoloadModules.pm Xwww/lxoffice-erp-2.6.3/ic.pl Xwww/lxoffice-erp-2.6.3/ar.pl Xwww/lxoffice-erp-2.6.3/menuXML.pl Xwww/lxoffice-erp-2.6.3/dispatcher.fpl Xwww/lxoffice-erp-2.6.3/acctranscorrections.pl Xwww/lxoffice-erp-2.6.3/sql/auth_db.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/drop_yearend.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/transfer_type_shipped.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/release_2_6_2.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/record_links.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/warehouse2.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/PgCommaAggregateFunction.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/periodic_invoices.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/dunning_dunning_id.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/ustva_setup_2007_update_chart_taxkeys_tax.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/release_2_4_3.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/schema_normalization_2.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/warehouse.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/follow_ups.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/tax_primary_key_taxkeys_foreign_keys.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/ustva_setup_2007.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/lastschrift.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/acc_trans_id_uniqueness.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/oe_employee_id_foreignkey.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/invalid_taxkeys.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/trigger_assembly_update_lastcost.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/release_2_4_2.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/COA_Account_Settings002.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/schema_normalization_3.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/fix_acc_trans_ap_taxkey_bug.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/emmvee_background_jobs_2.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/history_erp.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/parts_ean.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/warehouse3.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/globalprojectnumber_ap_ar_oe.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/drop_sic_code.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/units_no_type_distinction.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/language_output_formatting.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/tax_description_without_percentage_skr04.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/todo_user_config.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/generic_translations.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/dunning_invoices_per_dunning_level.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/rundungsfehler_korrigieren_BUG1328.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/cp_greeting_migration.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/status_history.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/customer_vendor_taxzone_id.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/transaction_description.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/README Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/emmvee_background_jobs.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/acc_trans_without_oid.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/transaction_description_not_null.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/custom_variables_valid.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/ar_add_invnumber_for_credit_note.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/price_factors.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/gl_storno.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/ar_storno.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/periodic_invoices_background_job.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/skr04_fix_category_3151_3160_3170.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/fix_taxdescription.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/oe_delivered.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/oe_is_salesman.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/buchungsgruppen_sortkey.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/payment_terms_translation2.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/fix_datepaid.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/custom_variables_indices.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/customer_long_entries.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/skr03_04_bwa_zuordnung_konten_4250_4610.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/rename_buchungsgruppen_accounts_16_19_percent.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/parts_has_sernumber.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/chart_names2.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/tax_id_if_taxkey_is_0.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/sepa.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/chart_category_to_sgn.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/COA_Account_Settings001.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/dunning_invoices_for_fees.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/release_2_4_1.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/auth_enable_sales_all_edit.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/delivery_orders.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/delivery_orders_fields_for_invoices.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/SKR04-3804-addition.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/invalid_entries_in_custom_variables_validity.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/update_date_paid.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/custom_variables.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/add_makemodel_prices.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/tax_report_table_name.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/employee_no_limits.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/cb_ob_transaction.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/custom_variables_parts_services_assemblies.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/release_2_6_0.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/custom_variables_indices_2.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/units_translations_and_singular_plural_distinction.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/drafts.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/payment_terms_sortkey.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/marge_initial.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/invalid_taxkeys_2.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/dunning_config_interest_rate.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/chart_names.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/ap_storno.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/ar_add_donumber.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/history_erp_snumbers.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/ar_ap_storno_id.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/warehouse_add_bestbefore.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/add_ar_paid_defaults.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/bank_accounts.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/ap_ar_orddate_quodate.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/tax_description_without_percentage.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/project_flag_active.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/shipto_add_cp_gender.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/release_2_6_1.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/sepa_in.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/payment_terms_translation.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/chart_taxkey_id_from_taxkeys.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/units_sortkey.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/customer_vendor_ustid_length.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/change_makemodel_vendor_id.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/add_more_constraints_fibu_projekt_xplace.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/USTVA_at.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/schema_normalization_1.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/units_id.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/ustva_2010.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/USTVA_abstraction.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2/ustva_setup_2007_update_chart_taxkeys_tax_add_missing_tax_accounts.sql Xwww/lxoffice-erp-2.6.3/sql/Germany-DATEV-SKR04EU-chart.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2-auth/add_batch_printing_to_full_access.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade2-auth/auth_schema_normalization_1.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.26-2.2.0.27.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.1-2.2.0.2.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.6-2.2.0.7.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.37-2.2.0.38.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.20-2.2.0.21.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.16-2.2.0.17.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.29-2.2.0.30.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.34-2.2.0.35.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.32-2.2.0.33.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.27-2.2.0.28.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.1.1-2.2.0.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.10-2.2.0.11.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.28-2.2.0.29.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0-2.2.0.1.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-1.0.0-2.1.0.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.1.0-2.1.1.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.18-2.2.0.19.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.38-2.4.0.0.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.19-2.2.0.20.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.15-2.2.0.16.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.17-2.2.0.18.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.36-2.2.0.37.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.3-2.2.0.4.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.4-2.2.0.5.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.14-2.2.0.15.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.21-2.2.0.22.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.7-2.2.0.8.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.2-2.2.0.3.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.24-2.2.0.25.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.31-2.2.0.32.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.5-2.2.0.6.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.11-2.2.0.12.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.8-2.2.0.9.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.25-2.2.0.26.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.22-2.2.0.23.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.33-2.2.0.34.pl Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.23-2.2.0.24.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.35-2.2.0.36.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.30-2.2.0.31.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.12-2.2.0.13.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.9-2.2.0.10.sql Xwww/lxoffice-erp-2.6.3/sql/Pg-upgrade/Pg-upgrade-2.2.0.13-2.2.0.14.sql Xwww/lxoffice-erp-2.6.3/sql/datevautomatik.sql Xwww/lxoffice-erp-2.6.3/sql/update.sh Xwww/lxoffice-erp-2.6.3/sql/lx-office.sql Xwww/lxoffice-erp-2.6.3/sql/updateLedger-200.sql Xwww/lxoffice-erp-2.6.3/sql/Leerer-Kontenrahmen-chart.sql Xwww/lxoffice-erp-2.6.3/sql/Germany-DATEV-SKR03EU-chart.sql Xwww/lxoffice-erp-2.6.3/sql/Austria-chart.sql Xwww/lxoffice-erp-2.6.3/sql/finanzamt.sql Xwww/lxoffice-erp-2.6.3/sql/liste.sql Xwww/lxoffice-erp-2.6.3/sql/update100-200.sql Xwww/lxoffice-erp-2.6.3/sql/Swiss-German-chart.sql Xwww/lxoffice-erp-2.6.3/sql/update10x-200.sql Xwww/lxoffice-erp-2.6.3/sql/France-chart.sql Xwww/lxoffice-erp-2.6.3/ap.pl Xwww/lxoffice-erp-2.6.3/index.html Xwww/lxoffice-erp-2.6.3/menu.ini Xwww/lxoffice-erp-2.6.3/t/Support/Systemexec.pm Xwww/lxoffice-erp-2.6.3/t/Support/Files.pm Xwww/lxoffice-erp-2.6.3/t/Support/Templates.pm Xwww/lxoffice-erp-2.6.3/t/005no_tabs.t Xwww/lxoffice-erp-2.6.3/t/structure/globals.t Xwww/lxoffice-erp-2.6.3/t/structure/common_errors.t Xwww/lxoffice-erp-2.6.3/t/007broken_links.t Xwww/lxoffice-erp-2.6.3/t/test.sh Xwww/lxoffice-erp-2.6.3/t/002goodperl.t Xwww/lxoffice-erp-2.6.3/t/001compile.t Xwww/lxoffice-erp-2.6.3/t/011pod.t Xwww/lxoffice-erp-2.6.3/t/helper/mapping.t Xwww/lxoffice-erp-2.6.3/t/helper/attr.t Xwww/lxoffice-erp-2.6.3/t/004template.t Xwww/lxoffice-erp-2.6.3/t/README Xwww/lxoffice-erp-2.6.3/t/003safesys.t Xwww/lxoffice-erp-2.6.3/t/006spellcheck.t Xwww/lxoffice-erp-2.6.3/t/old/lxtest.conf.default Xwww/lxoffice-erp-2.6.3/t/old/frontend/README.frontend Xwww/lxoffice-erp-2.6.3/t/old/README Xwww/lxoffice-erp-2.6.3/t/old/lx-office.t Xwww/lxoffice-erp-2.6.3/t/old/backend/README.backend Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestAccounting.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestSystem.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestSelling.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestPurchase.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestCreateTestbed.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/incomming/ustva-Inland-linet.html Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/administration/end/A998DeleteTestUser.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/administration/end/A999DeleteTestDatabase.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/administration/begin/A003UpdateDatabase.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/administration/begin/A001CreateTestDatabase.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/administration/begin/A002CreateTestUser.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/begin/M003CreateGoods.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/begin/M002CreateVendor.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/begin/M006AddProject.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/begin/M004AddService.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/begin/M000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/begin/M999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/begin/M001CreateCustomer.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/begin/M005AddProduct.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/end/M996DeleteProject.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/end/M998DeleteProduct.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/end/M995DeleteGoods.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/end/M999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/end/M000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/end/M997DeleteService.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/README Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/reports/begin/R000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/reports/begin/R999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/reports/end/R000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/reports/end/R999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/selling/begin/S999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/selling/begin/S003CreateInvoice.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/selling/begin/S000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/selling/begin/S002CreateCharge.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/selling/begin/S001CreateOffers.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/selling/end/S999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/selling/end/S000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/accounting/end/A000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/accounting/end/A999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/accounting/begin/A999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/accounting/begin/A000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S012ShowAccount.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S003AddLanguage.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S010AddShowDeleteServiceMeasure.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S013TestAccount.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S002CreatePriceBrackets.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S005AddPaymentConditions.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S004ShowLanguages.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S001CreateProductGroups.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S009AddShowDeleteMeasure.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S007AddCustomerVendorTypes.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S011CreateAccount.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S006ShowPaymentConditions.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin/S008ShowCustomerVendorTypes.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/end/S992DeleteProductGroups.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/end/S995DeleteCustomerVendorTypes.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/end/S997DeleteLanguages.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/end/S000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/end/S998DeletePriceBrackets.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/end/S999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/end/S996DeletePaymentConditions.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/end/S994DeleteAccount.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/payments/end/P000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/payments/end/P999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/payments/begin/P000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/payments/begin/P999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/purchase/begin/P999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/purchase/begin/P000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/purchase/begin/P001CreateQuoteRequest.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/purchase/end/P000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/purchase/end/P999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/programm/begin/P000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/programm/begin/P999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/programm/end/P000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/programm/end/P999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/base/000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/base/999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/printing/end/P000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/printing/end/P999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/printing/begin/P000Login.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/testscripts/printing/begin/P999Logout.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestMasterData.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestPayments.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestPrinting.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestReports.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/AllTests.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestAdmin.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestAllTests.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/cleanup.pl Xwww/lxoffice-erp-2.6.3/t/old/selenium/TestProgramm.t Xwww/lxoffice-erp-2.6.3/t/old/selenium/README Xwww/lxoffice-erp-2.6.3/t/old/demolx/testscripts/005UpdateDatabase.t Xwww/lxoffice-erp-2.6.3/t/old/demolx/testscripts/README Xwww/lxoffice-erp-2.6.3/t/old/demolx/testscripts/K998DeleteTestUser.t Xwww/lxoffice-erp-2.6.3/t/old/demolx/testscripts/001CreateTestDatabase.t Xwww/lxoffice-erp-2.6.3/t/old/demolx/testscripts/002CreateTestUser.t Xwww/lxoffice-erp-2.6.3/t/old/demolx/testscripts/K999DeleteTestDatabase.t Xwww/lxoffice-erp-2.6.3/t/old/demolx/AllTests.t Xwww/lxoffice-erp-2.6.3/t/old/demolx/cleanup.pl Xwww/lxoffice-erp-2.6.3/t/old/demolx/README Xwww/lxoffice-erp-2.6.3/t/old/README.de Xwww/lxoffice-erp-2.6.3/t/.htaccess Xwww/lxoffice-erp-2.6.3/ca.pl Xwww/lxoffice-erp-2.6.3/VERSION Xwww/lxoffice-erp-2.6.3/bp.pl Xwww/lxoffice-erp-2.6.3/SL/Helper/DateTime.pm Xwww/lxoffice-erp-2.6.3/SL/Helper/Flash.pm Xwww/lxoffice-erp-2.6.3/SL/Iconv.pm Xwww/lxoffice-erp-2.6.3/SL/Template/LaTeX.pm Xwww/lxoffice-erp-2.6.3/SL/Template/LaTeX.pm.orig Xwww/lxoffice-erp-2.6.3/SL/Template/Plugin/JavaScript.pm Xwww/lxoffice-erp-2.6.3/SL/Template/Plugin/LxERP.pm Xwww/lxoffice-erp-2.6.3/SL/Template/Plugin/T8.pm Xwww/lxoffice-erp-2.6.3/SL/Template/Plugin/MultiColumnIterator.pm Xwww/lxoffice-erp-2.6.3/SL/Template/Plugin/L.pm Xwww/lxoffice-erp-2.6.3/SL/Template/Plugin/HTMLFixes.pm Xwww/lxoffice-erp-2.6.3/SL/Template/Simple.pm Xwww/lxoffice-erp-2.6.3/SL/Template/OpenDocument.pm Xwww/lxoffice-erp-2.6.3/SL/Template/PlainText.pm Xwww/lxoffice-erp-2.6.3/SL/Template/Excel.pm Xwww/lxoffice-erp-2.6.3/SL/Template/XML.pm Xwww/lxoffice-erp-2.6.3/SL/Template/HTML.pm Xwww/lxoffice-erp-2.6.3/SL/IS.pm Xwww/lxoffice-erp-2.6.3/SL/Template.pm Xwww/lxoffice-erp-2.6.3/SL/LxOfficeConf.pm Xwww/lxoffice-erp-2.6.3/SL/ARAP.pm Xwww/lxoffice-erp-2.6.3/SL/DBUtils.pm Xwww/lxoffice-erp-2.6.3/SL/FU.pm Xwww/lxoffice-erp-2.6.3/SL/IR.pm Xwww/lxoffice-erp-2.6.3/SL/DN.pm Xwww/lxoffice-erp-2.6.3/SL/DB/PartsGroup.pm Xwww/lxoffice-erp-2.6.3/SL/DB/AccTransaction.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Employee.pm Xwww/lxoffice-erp-2.6.3/SL/DB/SepaExport.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Default.pm Xwww/lxoffice-erp-2.6.3/SL/DB/FollowUp.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Exchangerate.pm Xwww/lxoffice-erp-2.6.3/SL/DB/PeriodicInvoicesConfig.pm Xwww/lxoffice-erp-2.6.3/SL/DB/AuthUser.pm Xwww/lxoffice-erp-2.6.3/SL/DB/SchemaInfo.pm Xwww/lxoffice-erp-2.6.3/SL/DB/VendorTax.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Translation.pm Xwww/lxoffice-erp-2.6.3/SL/DB/LicenseInvoice.pm Xwww/lxoffice-erp-2.6.3/SL/DB/RMA.pm Xwww/lxoffice-erp-2.6.3/SL/DB/TodoUserConfig.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Warehouse.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Inventory.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Finanzamt.pm Xwww/lxoffice-erp-2.6.3/SL/DB/AuthGroup.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Gifi.pm Xwww/lxoffice-erp-2.6.3/SL/DB/CustomVariableValidity.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Printer.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Chart.pm Xwww/lxoffice-erp-2.6.3/SL/DB/License.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Dunning.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/TransferType.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/Invoice.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/Employee.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/BackgroundJob.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/PurchaseInvoice.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/Chart.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/Order.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/Buchungsgruppe.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/Part.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/DeliveryOrder.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/Language.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/PaymentTerm.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Manager/Pricegroup.pm Xwww/lxoffice-erp-2.6.3/SL/DB/DunningConfig.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Order.pm Xwww/lxoffice-erp-2.6.3/SL/DB/BackgroundJobHistory.pm Xwww/lxoffice-erp-2.6.3/SL/DB/BankAccount.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Contact.pm Xwww/lxoffice-erp-2.6.3/SL/DB/UnitsLanguage.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Object/Hooks.pm Xwww/lxoffice-erp-2.6.3/SL/DB/TransferType.pm Xwww/lxoffice-erp-2.6.3/SL/DB/VC.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/TranslatedAttributes.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/ActsAsList.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/Attr.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/ALL.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/LinkedRecords.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/Sorted.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/ConventionManager.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/ALLAuth.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/Manager.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/PriceUpdater.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/Metadata.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/PriceTaxCalculator.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/Mappings.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/FlattenToForm.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Helper/TransNumberGenerator.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Department.pm Xwww/lxoffice-erp-2.6.3/SL/DB/PaymentTerm.pm Xwww/lxoffice-erp-2.6.3/SL/DB/DeliveryOrderItem.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MakeModel.pm Xwww/lxoffice-erp-2.6.3/SL/DB/History.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Bin.pm Xwww/lxoffice-erp-2.6.3/SL/DB/PurchaseInvoice.pm Xwww/lxoffice-erp-2.6.3/SL/DB/TranslationPaymentTerm.pm Xwww/lxoffice-erp-2.6.3/SL/DB/DeliveryOrder.pm Xwww/lxoffice-erp-2.6.3/SL/DB/TaxKey.pm Xwww/lxoffice-erp-2.6.3/SL/DB/DptTrans.pm Xwww/lxoffice-erp-2.6.3/SL/DB/GenericTranslation.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Object.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Project.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Assembly.pm Xwww/lxoffice-erp-2.6.3/SL/DB/TaxZone.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Invoice.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Customer.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Language.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Translation.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/TranslationPaymentTerm.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Datev.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Draft.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Default.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Inventory.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Finanzamt.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/AuthGroup.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/DeliveryOrderItem.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Vendor.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/CustomVariableValidity.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Warehouse.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/PeriodicInvoice.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/DeliveryOrderItemsStock.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Shipto.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Price.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/VendorTax.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/DptTrans.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Contact.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/CustomVariableConfig.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Taxkey.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Employee.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/SepaExportItem.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Unit.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/FollowUp.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Note.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/RecordLink.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/GLTransaction.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Printer.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/AuthGroupRight.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/AuthUserConfig.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/License.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Dunning.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/BackgroundJob.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Status.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/AuthUser.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/AuthUserGroup.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Buchungsgruppe.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/FollowUpLink.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/BankAccount.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/AuditTrail.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/GenericTranslation.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/PaymentTerm.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Tax.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Part.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/CustomVariable.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/PeriodicInvoicesConfig.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/MakeModel.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/History.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/FollowUpAccess.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Pricegroup.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/InvoiceItem.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Exchangerate.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Business.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/PartsGroup.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/SepaExport.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Project.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/SchemaInfo.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Invoice.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/LicenseInvoice.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/TaxZone.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/TodoUserConfig.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Order.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/RMAItem.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/BackgroundJobHistory.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/PriceFactor.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/AccTransaction.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Gifi.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Chart.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Bin.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/PartsTax.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/CustomerTax.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/TransferType.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Customer.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Language.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Assembly.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/DeliveryOrder.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Department.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/OrderItem.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/RMA.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/TaxKey.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/PurchaseInvoice.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/UnitsLanguage.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/DunningConfig.pm Xwww/lxoffice-erp-2.6.3/SL/DB/MetaSetup/Licemse.pm Xwww/lxoffice-erp-2.6.3/SL/DB/PriceFactor.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Tax.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Shipto.pm Xwww/lxoffice-erp-2.6.3/SL/DB/RMAItem.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Vendor.pm Xwww/lxoffice-erp-2.6.3/SL/DB/InvoiceItem.pm Xwww/lxoffice-erp-2.6.3/SL/DB/PeriodicInvoice.pm Xwww/lxoffice-erp-2.6.3/SL/DB/CustomVariableConfig.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Business.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Status.pm Xwww/lxoffice-erp-2.6.3/SL/DB/OrderItem.pm Xwww/lxoffice-erp-2.6.3/SL/DB/CustomVariable.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Note.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Price.pm Xwww/lxoffice-erp-2.6.3/SL/DB/RecordLink.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Unit.pm Xwww/lxoffice-erp-2.6.3/SL/DB/FollowUpAccess.pm Xwww/lxoffice-erp-2.6.3/SL/DB/DeliveryOrderItemsStock.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Buchungsgruppe.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Part.pm Xwww/lxoffice-erp-2.6.3/SL/DB/AuditTrail.pm Xwww/lxoffice-erp-2.6.3/SL/DB/AuthGroupRight.pm Xwww/lxoffice-erp-2.6.3/SL/DB/BackgroundJob.pm Xwww/lxoffice-erp-2.6.3/SL/DB/AuthUserConfig.pm Xwww/lxoffice-erp-2.6.3/SL/DB/AuthUserGroup.pm Xwww/lxoffice-erp-2.6.3/SL/DB/GLTransaction.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Datev.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Draft.pm Xwww/lxoffice-erp-2.6.3/SL/DB/FollowUpLink.pm Xwww/lxoffice-erp-2.6.3/SL/DB/SepaExportItem.pm Xwww/lxoffice-erp-2.6.3/SL/DB/CustomerTax.pm Xwww/lxoffice-erp-2.6.3/SL/DB/PartsTax.pm Xwww/lxoffice-erp-2.6.3/SL/DB/Pricegroup.pm Xwww/lxoffice-erp-2.6.3/SL/Watchdog.pm Xwww/lxoffice-erp-2.6.3/SL/WH.pm Xwww/lxoffice-erp-2.6.3/SL/MoreCommon.pm Xwww/lxoffice-erp-2.6.3/SL/Menu.pm Xwww/lxoffice-erp-2.6.3/SL/CVar.pm Xwww/lxoffice-erp-2.6.3/SL/AccTransCorrections.pm Xwww/lxoffice-erp-2.6.3/SL/RP.pm Xwww/lxoffice-erp-2.6.3/SL/DO.pm Xwww/lxoffice-erp-2.6.3/SL/LXDebug.pm Xwww/lxoffice-erp-2.6.3/SL/Dispatcher.pm Xwww/lxoffice-erp-2.6.3/SL/RecordLinks.pm Xwww/lxoffice-erp-2.6.3/SL/SEPA/XML.pm Xwww/lxoffice-erp-2.6.3/SL/SEPA/XML/Transaction.pm Xwww/lxoffice-erp-2.6.3/SL/AR.pm Xwww/lxoffice-erp-2.6.3/SL/IC.pm Xwww/lxoffice-erp-2.6.3/SL/ReportGenerator.pm Xwww/lxoffice-erp-2.6.3/SL/MIME.pm Xwww/lxoffice-erp-2.6.3/SL/Num2text.pm Xwww/lxoffice-erp-2.6.3/SL/RC.pm Xwww/lxoffice-erp-2.6.3/SL/User.pm Xwww/lxoffice-erp-2.6.3/SL/TransNumber.pm Xwww/lxoffice-erp-2.6.3/SL/OE.pm Xwww/lxoffice-erp-2.6.3/SL/VK.pm Xwww/lxoffice-erp-2.6.3/SL/Printer.pm Xwww/lxoffice-erp-2.6.3/SL/Locale.pm Xwww/lxoffice-erp-2.6.3/SL/DBConnect.pm Xwww/lxoffice-erp-2.6.3/SL/Mailer.pm Xwww/lxoffice-erp-2.6.3/SL/DATEV.pm Xwww/lxoffice-erp-2.6.3/SL/AP.pm Xwww/lxoffice-erp-2.6.3/SL/TODO.pm Xwww/lxoffice-erp-2.6.3/SL/Chart.pm Xwww/lxoffice-erp-2.6.3/SL/USTVA.pm Xwww/lxoffice-erp-2.6.3/SL/SEPA.pm Xwww/lxoffice-erp-2.6.3/SL/BP.pm Xwww/lxoffice-erp-2.6.3/SL/CA.pm Xwww/lxoffice-erp-2.6.3/SL/Common.pm Xwww/lxoffice-erp-2.6.3/SL/Form.pm Xwww/lxoffice-erp-2.6.3/SL/Controller/DebugMenu.pm Xwww/lxoffice-erp-2.6.3/SL/Controller/FrameHeader.pm Xwww/lxoffice-erp-2.6.3/SL/Controller/Unit.pm Xwww/lxoffice-erp-2.6.3/SL/Controller/PriceFactor.pm Xwww/lxoffice-erp-2.6.3/SL/Controller/CustomVariableConfig.pm Xwww/lxoffice-erp-2.6.3/SL/Controller/PaymentTerm.pm Xwww/lxoffice-erp-2.6.3/SL/Controller/Base.pm Xwww/lxoffice-erp-2.6.3/SL/Controller/Warehouse.pm Xwww/lxoffice-erp-2.6.3/SL/FCGIFixes.pm Xwww/lxoffice-erp-2.6.3/SL/BankAccount.pm Xwww/lxoffice-erp-2.6.3/SL/InstallationCheck.pm Xwww/lxoffice-erp-2.6.3/SL/PE.pm Xwww/lxoffice-erp-2.6.3/SL/DB.pm Xwww/lxoffice-erp-2.6.3/SL/AM.pm Xwww/lxoffice-erp-2.6.3/SL/Notes.pm Xwww/lxoffice-erp-2.6.3/SL/CT.pm Xwww/lxoffice-erp-2.6.3/SL/Drafts.pm Xwww/lxoffice-erp-2.6.3/SL/CP.pm Xwww/lxoffice-erp-2.6.3/SL/LICENSES.pm Xwww/lxoffice-erp-2.6.3/SL/DATEV/KNEFile.pm Xwww/lxoffice-erp-2.6.3/SL/IO.pm Xwww/lxoffice-erp-2.6.3/SL/GenericTranslations.pm Xwww/lxoffice-erp-2.6.3/SL/Inifile.pm Xwww/lxoffice-erp-2.6.3/SL/X.pm Xwww/lxoffice-erp-2.6.3/SL/DBUpgrade2.pm Xwww/lxoffice-erp-2.6.3/SL/Projects.pm Xwww/lxoffice-erp-2.6.3/SL/Auth/LDAP.pm Xwww/lxoffice-erp-2.6.3/SL/Auth/DB.pm Xwww/lxoffice-erp-2.6.3/SL/Auth/PasswordPolicy.pm Xwww/lxoffice-erp-2.6.3/SL/Auth/Constants.pm Xwww/lxoffice-erp-2.6.3/SL/Taxkeys.pm Xwww/lxoffice-erp-2.6.3/SL/.htaccess Xwww/lxoffice-erp-2.6.3/SL/BackgroundJob/Test.pm Xwww/lxoffice-erp-2.6.3/SL/BackgroundJob/Base.pm Xwww/lxoffice-erp-2.6.3/SL/BackgroundJob/ALL.pm Xwww/lxoffice-erp-2.6.3/SL/BackgroundJob/CleanBackgroundJobHistory.pm Xwww/lxoffice-erp-2.6.3/SL/BackgroundJob/CreatePeriodicInvoices.pm Xwww/lxoffice-erp-2.6.3/SL/Auth.pm Xwww/lxoffice-erp-2.6.3/SL/GL.pm Xwww/lxoffice-erp-2.6.3/doc/ustva.html Xwww/lxoffice-erp-2.6.3/doc/wiederkehrende_rechnungen.txt Xwww/lxoffice-erp-2.6.3/doc/2010_template_changes.txt Xwww/lxoffice-erp-2.6.3/doc/konfigurationsdatei.txt Xwww/lxoffice-erp-2.6.3/doc/Makefile Xwww/lxoffice-erp-2.6.3/doc/INSTALL.txt Xwww/lxoffice-erp-2.6.3/doc/excel_templates.txt Xwww/lxoffice-erp-2.6.3/doc/dbschema.dia Xwww/lxoffice-erp-2.6.3/doc/sql-upgrade-dateien.txt Xwww/lxoffice-erp-2.6.3/doc/UPGRADE Xwww/lxoffice-erp-2.6.3/doc/online/de/add_project.pod Xwww/lxoffice-erp-2.6.3/doc/online/.dummy Xwww/lxoffice-erp-2.6.3/doc/INSTALL.fcgi Xwww/lxoffice-erp-2.6.3/doc/dokumentenvorlagen-und-variablen.html Xwww/lxoffice-erp-2.6.3/doc/skr04-update-3804/steuer3804.png Xwww/lxoffice-erp-2.6.3/doc/skr04-update-3804/steuer3803.png Xwww/lxoffice-erp-2.6.3/doc/skr04-update-3804/skr04_3804_hinzufuegen.html Xwww/lxoffice-erp-2.6.3/doc/skr04-update-3804/steuerliste.png Xwww/lxoffice-erp-2.6.3/doc/skr04-update-3804/konto4315.png Xwww/lxoffice-erp-2.6.3/doc/skr04-update-3804/konto3804.png Xwww/lxoffice-erp-2.6.3/doc/Lx-Office_Installation_DE.pdf Xwww/lxoffice-erp-2.6.3/doc/COPYING Xwww/lxoffice-erp-2.6.3/doc/languages_howto.txt Xwww/lxoffice-erp-2.6.3/doc/INSTALL.texi Xwww/lxoffice-erp-2.6.3/doc/changelog Xwww/lxoffice-erp-2.6.3/doc/INSTALL.html Xwww/lxoffice-erp-2.6.3/doc/copyright Xwww/lxoffice-erp-2.6.3/doc/modules/README.CGI-Ajax Xwww/lxoffice-erp-2.6.3/doc/modules/LICENSE.dhtmlsuite-for-applications Xwww/lxoffice-erp-2.6.3/doc/modules/LICENSE.CGI-Ajax Xwww/lxoffice-erp-2.6.3/doc/modules/LICENSE.PDF-Table Xwww/lxoffice-erp-2.6.3/doc/modules/README.Sort-Naturally Xwww/lxoffice-erp-2.6.3/doc/modules/README.YAML Xwww/lxoffice-erp-2.6.3/doc/modules/README.File-Slurp Xwww/lxoffice-erp-2.6.3/doc/modules/README.PDF-Table Xwww/lxoffice-erp-2.6.3/doc/modules/LICENSE.Email-Address Xwww/lxoffice-erp-2.6.3/doc/modules/LICENSE.List-MoreUtils Xwww/lxoffice-erp-2.6.3/doc/programmierstilrichtlinien.txt Xwww/lxoffice-erp-2.6.3/.gitignore Xwww/lxoffice-erp-2.6.3/ct.pl Xwww/lxoffice-erp-2.6.3/css/px_3.gif Xwww/lxoffice-erp-2.6.3/css/tabcontent.css Xwww/lxoffice-erp-2.6.3/css/jquery.autocomplete.css Xwww/lxoffice-erp-2.6.3/css/list_accounts.css Xwww/lxoffice-erp-2.6.3/css/Win2000.css Xwww/lxoffice-erp-2.6.3/css/csshover.htc Xwww/lxoffice-erp-2.6.3/css/mn_hauptmenu.png Xwww/lxoffice-erp-2.6.3/css/lx-office-erp.css Xwww/lxoffice-erp-2.6.3/css/menuv3.css Xwww/lxoffice-erp-2.6.3/css/menuv4.css Xwww/lxoffice-erp-2.6.3/css/jquery.multiselect2side.css Xwww/lxoffice-erp-2.6.3/css/Mobile.css Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-icons_ffd27a_256x240.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-icons_228ef1_256x240.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-icons_ef8c08_256x240.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-icons_ffffff_256x240.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-icons_222222_256x240.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png Xwww/lxoffice-erp-2.6.3/css/ui-lightness/jquery-ui-1.8.12.custom.css Xwww/lxoffice-erp-2.6.3/css/frame_header/header.css Xwww/lxoffice-erp-2.6.3/css/dhtmlsuite/menu-item.css Xwww/lxoffice-erp-2.6.3/css/dhtmlsuite/menu-bar.css Xwww/lxoffice-erp-2.6.3/licenses.pl Xwww/lxoffice-erp-2.6.3/favicon.ico Xwww/lxoffice-erp-2.6.3/am.pl Xwww/lxoffice-erp-2.6.3/bankaccounts.pl Xwww/lxoffice-erp-2.6.3/projects.pl Xwww/lxoffice-erp-2.6.3/scripts/rose_auto_create_model.pl Xwww/lxoffice-erp-2.6.3/scripts/locales.pl Xwww/lxoffice-erp-2.6.3/scripts/make_docs.pl Xwww/lxoffice-erp-2.6.3/scripts/create_tags_file.pl Xwww/lxoffice-erp-2.6.3/scripts/inst_postgres.sh Xwww/lxoffice-erp-2.6.3/scripts/migrate_template_to_t8.pl Xwww/lxoffice-erp-2.6.3/scripts/set_permissions.sh Xwww/lxoffice-erp-2.6.3/scripts/find-use.pl Xwww/lxoffice-erp-2.6.3/scripts/console Xwww/lxoffice-erp-2.6.3/scripts/installation_check.pl Xwww/lxoffice-erp-2.6.3/scripts/boot/upstart/lx-office-task-server.conf Xwww/lxoffice-erp-2.6.3/scripts/boot/system-v/lx-office-task-server Xwww/lxoffice-erp-2.6.3/scripts/spawn_oo.pl Xwww/lxoffice-erp-2.6.3/scripts/oo-uno-test-conn.py Xwww/lxoffice-erp-2.6.3/scripts/task_server.pl Xwww/lxoffice-erp-2.6.3/scripts/mklinks.sh Xwww/lxoffice-erp-2.6.3/scripts/dbupgrade2_tool.pl Xwww/lxoffice-erp-2.6.3/scripts/pl2tmpl.pl Xwww/lxoffice-erp-2.6.3/scripts/oo-uno-convert-pdf.py Xwww/lxoffice-erp-2.6.3/scripts/templ2t8.pl Xwww/lxoffice-erp-2.6.3/scripts/inst_postgres_deb.sh Xwww/lxoffice-erp-2.6.3/scripts/.htaccess Xwww/lxoffice-erp-2.6.3/amcvar.pl Xwww/lxoffice-erp-2.6.3/menuv3.pl Xwww/lxoffice-erp-2.6.3/pe.pl Xwww/lxoffice-erp-2.6.3/webdav/anfragen/.gitignore Xwww/lxoffice-erp-2.6.3/webdav/anfragen/.dummy Xwww/lxoffice-erp-2.6.3/webdav/bestellungen/.dummy Xwww/lxoffice-erp-2.6.3/webdav/bestellungen/.gitignore Xwww/lxoffice-erp-2.6.3/webdav/angebote/.gitignore Xwww/lxoffice-erp-2.6.3/webdav/angebote/.dummy Xwww/lxoffice-erp-2.6.3/webdav/gutschriften/.dummy Xwww/lxoffice-erp-2.6.3/webdav/gutschriften/.gitignore Xwww/lxoffice-erp-2.6.3/webdav/einkaufsrechnungen/.dummy Xwww/lxoffice-erp-2.6.3/webdav/einkaufsrechnungen/.gitignore Xwww/lxoffice-erp-2.6.3/webdav/lieferantenbestellungen/.dummy Xwww/lxoffice-erp-2.6.3/webdav/lieferantenbestellungen/.gitignore Xwww/lxoffice-erp-2.6.3/webdav/rechnungen/.gitignore Xwww/lxoffice-erp-2.6.3/webdav/rechnungen/.dummy Xwww/lxoffice-erp-2.6.3/controller.pl Xwww/lxoffice-erp-2.6.3/login.pl Xwww/lxoffice-erp-2.6.3/admin.pl Xwww/lxoffice-erp-2.6.3/olcom/tmp/.dummy Xwww/lxoffice-erp-2.6.3/olcom/c2s.gif Xwww/lxoffice-erp-2.6.3/olcom/olcomexport.php Xwww/lxoffice-erp-2.6.3/olcom/trans.php Xwww/lxoffice-erp-2.6.3/olcom/diff.php Xwww/lxoffice-erp-2.6.3/olcom/handbuch.odt Xwww/lxoffice-erp-2.6.3/olcom/artistic_license Xwww/lxoffice-erp-2.6.3/olcom/Shop.png Xwww/lxoffice-erp-2.6.3/olcom/s2e.gif Xwww/lxoffice-erp-2.6.3/olcom/e2c.gif Xwww/lxoffice-erp-2.6.3/olcom/olcom.png Xwww/lxoffice-erp-2.6.3/olcom/pixel_trans.gif Xwww/lxoffice-erp-2.6.3/olcom/conf.php Xwww/lxoffice-erp-2.6.3/olcom/shoplib.php Xwww/lxoffice-erp-2.6.3/olcom/erpexport.php Xwww/lxoffice-erp-2.6.3/olcom/confedit.php Xwww/lxoffice-erp-2.6.3/olcom/e2s.gif Xwww/lxoffice-erp-2.6.3/olcom/handbuch.pdf Xwww/lxoffice-erp-2.6.3/olcom/menu.ini Xwww/lxoffice-erp-2.6.3/olcom/olCom.png Xwww/lxoffice-erp-2.6.3/olcom/readme.first Xwww/lxoffice-erp-2.6.3/olcom/shopimport_csv.php Xwww/lxoffice-erp-2.6.3/olcom/shopimport_db.php Xwww/lxoffice-erp-2.6.3/cp.pl Xwww/lxoffice-erp-2.6.3/xtcom/trans.php Xwww/lxoffice-erp-2.6.3/xtcom/tmp/.dummy Xwww/lxoffice-erp-2.6.3/xtcom/diff.php Xwww/lxoffice-erp-2.6.3/xtcom/c2s.gif Xwww/lxoffice-erp-2.6.3/xtcom/shopimport_db.php Xwww/lxoffice-erp-2.6.3/xtcom/shoplib.php Xwww/lxoffice-erp-2.6.3/xtcom/xtcom.sql Xwww/lxoffice-erp-2.6.3/xtcom/conf.php Xwww/lxoffice-erp-2.6.3/xtcom/shopimport_csv.php Xwww/lxoffice-erp-2.6.3/xtcom/Shop.png Xwww/lxoffice-erp-2.6.3/xtcom/e2c.gif Xwww/lxoffice-erp-2.6.3/xtcom/s2e.gif Xwww/lxoffice-erp-2.6.3/xtcom/confedit.php Xwww/lxoffice-erp-2.6.3/xtcom/erpexport.php Xwww/lxoffice-erp-2.6.3/xtcom/xtcomexport.php Xwww/lxoffice-erp-2.6.3/xtcom/readme.first Xwww/lxoffice-erp-2.6.3/xtcom/pixel_trans.gif Xwww/lxoffice-erp-2.6.3/xtcom/e2s.gif Xwww/lxoffice-erp-2.6.3/xtcom/handbuch.pdf Xwww/lxoffice-erp-2.6.3/xtcom/menu.ini Xwww/lxoffice-erp-2.6.3/xtcom/artistic_license Xwww/lxoffice-erp-2.6.3/gl.pl Xwww/lxoffice-erp-2.6.3/todo.pl Xwww/lxoffice-erp-2.6.3/menuv4.pl Xwww/lxoffice-erp-2.6.3/locale/.htaccess Xwww/lxoffice-erp-2.6.3/locale/de/.gitignore Xwww/lxoffice-erp-2.6.3/locale/de/LANGUAGE Xwww/lxoffice-erp-2.6.3/locale/de/Num2text Xwww/lxoffice-erp-2.6.3/locale/de/special_chars Xwww/lxoffice-erp-2.6.3/locale/de/COPYING Xwww/lxoffice-erp-2.6.3/locale/de/all Xwww/lxoffice-erp-2.6.3/locale/de/charset Xwww/lxoffice-erp-2.6.3/locale/fr/all.old Xwww/lxoffice-erp-2.6.3/locale/fr/LANGUAGE.deactivated Xwww/lxoffice-erp-2.6.3/locale/fr/all Xwww/lxoffice-erp-2.6.3/locale/fr/missing Xwww/lxoffice-erp-2.6.3/locale/fr/charset Xwww/lxoffice-erp-2.6.3/locale/fr/COPYING Xwww/lxoffice-erp-2.6.3/locale/en/charset Xwww/lxoffice-erp-2.6.3/locale/en/COPYING Xwww/lxoffice-erp-2.6.3/locale/en/.gitignore Xwww/lxoffice-erp-2.6.3/locale/en/LANGUAGE Xwww/lxoffice-erp-2.6.3/locale/en/all Xwww/lxoffice-erp-2.6.3/locale/de_DE/special_chars Xwww/lxoffice-erp-2.6.3/locale/de_DE/Num2text Xwww/lxoffice-erp-2.6.3/locale/de_DE/LANGUAGE Xwww/lxoffice-erp-2.6.3/locale/de_DE/all Xwww/lxoffice-erp-2.6.3/locale/de_DE/COPYING Xwww/lxoffice-erp-2.6.3/locale/de_DE/charset Xwww/lxoffice-erp-2.6.3/locale/de_DE/.gitignore Xwww/lxoffice-erp-2.6.3/pepper/pepperexport.php Xwww/lxoffice-erp-2.6.3/pepper/c2s.gif Xwww/lxoffice-erp-2.6.3/pepper/trans.php Xwww/lxoffice-erp-2.6.3/pepper/tmp/.dummy Xwww/lxoffice-erp-2.6.3/pepper/menu.ini Xwww/lxoffice-erp-2.6.3/pepper/export_to_erp/initialize_module.php Xwww/lxoffice-erp-2.6.3/pepper/export_to_erp/tmp/.dummy Xwww/lxoffice-erp-2.6.3/pepper/export_to_erp/export_to_erp.php Xwww/lxoffice-erp-2.6.3/pepper/export_to_erp/modul_admin_img.gif Xwww/lxoffice-erp-2.6.3/pepper/shopimport_db.php Xwww/lxoffice-erp-2.6.3/pepper/s2e.gif Xwww/lxoffice-erp-2.6.3/pepper/e2c.gif Xwww/lxoffice-erp-2.6.3/pepper/erpexport.php Xwww/lxoffice-erp-2.6.3/pepper/confedit.php Xwww/lxoffice-erp-2.6.3/pepper/diff.php Xwww/lxoffice-erp-2.6.3/pepper/e2s.gif Xwww/lxoffice-erp-2.6.3/pepper/handbuch.pdf Xwww/lxoffice-erp-2.6.3/pepper/conf.php Xwww/lxoffice-erp-2.6.3/pepper/readme.first Xwww/lxoffice-erp-2.6.3/templates/Service-income_statement.html Xwww/lxoffice-erp-2.6.3/templates/Service-sales_order.tex Xwww/lxoffice-erp-2.6.3/templates/French-sales_order.tex Xwww/lxoffice-erp-2.6.3/templates/French-purchase_order.html Xwww/lxoffice-erp-2.6.3/templates/German-sales_order.tex Xwww/lxoffice-erp-2.6.3/templates/German-ustva-2005.tex Xwww/lxoffice-erp-2.6.3/templates/Service-purchase_order.html Xwww/lxoffice-erp-2.6.3/templates/German-request_quotation.html Xwww/lxoffice-erp-2.6.3/templates/German-sales_delivery_order.tex Xwww/lxoffice-erp-2.6.3/templates/German-bin_list.html Xwww/lxoffice-erp-2.6.3/templates/Default-statement.tex Xwww/lxoffice-erp-2.6.3/templates/Default-sales_quotation.html Xwww/lxoffice-erp-2.6.3/templates/German-balance_sheet.html Xwww/lxoffice-erp-2.6.3/templates/Default-sales_order.tex Xwww/lxoffice-erp-2.6.3/templates/French-invoice.html Xwww/lxoffice-erp-2.6.3/templates/French-invoice.tex Xwww/lxoffice-erp-2.6.3/templates/German-purchase_order.tex Xwww/lxoffice-erp-2.6.3/templates/French-statement.html Xwww/lxoffice-erp-2.6.3/templates/French-sales_order.html Xwww/lxoffice-erp-2.6.3/templates/German-ustva-2004.tex Xwww/lxoffice-erp-2.6.3/templates/Service-balance_sheet.html Xwww/lxoffice-erp-2.6.3/templates/Default-request_quotation.html Xwww/lxoffice-erp-2.6.3/templates/Service-receipt.tex Xwww/lxoffice-erp-2.6.3/templates/Service-purchase_order.tex Xwww/lxoffice-erp-2.6.3/templates/.htaccess Xwww/lxoffice-erp-2.6.3/templates/German-sales_quotation.tex Xwww/lxoffice-erp-2.6.3/templates/German-invoice.tex Xwww/lxoffice-erp-2.6.3/templates/German-winston.xml Xwww/lxoffice-erp-2.6.3/templates/German-credit_note.tex Xwww/lxoffice-erp-2.6.3/templates/Default-pick_list.html Xwww/lxoffice-erp-2.6.3/templates/Default-statement.html Xwww/lxoffice-erp-2.6.3/templates/Default-sales_order.html Xwww/lxoffice-erp-2.6.3/templates/German-bwa.html Xwww/lxoffice-erp-2.6.3/templates/Default-sales_quotation.tex Xwww/lxoffice-erp-2.6.3/templates/German-sales_quotation.odt Xwww/lxoffice-erp-2.6.3/templates/German-statement.tex Xwww/lxoffice-erp-2.6.3/templates/Default-invoice.tex Xwww/lxoffice-erp-2.6.3/templates/Service-statement.tex Xwww/lxoffice-erp-2.6.3/templates/Default-bin_list.html Xwww/lxoffice-erp-2.6.3/templates/German-invoice.odt Xwww/lxoffice-erp-2.6.3/templates/Default-balance_sheet.html Xwww/lxoffice-erp-2.6.3/templates/German-zahlungserinnerung.tex Xwww/lxoffice-erp-2.6.3/templates/Service-invoice.tex Xwww/lxoffice-erp-2.6.3/templates/Default-purchase_order.tex Xwww/lxoffice-erp-2.6.3/templates/Service-statement.html Xwww/lxoffice-erp-2.6.3/templates/German-receipt.tex Xwww/lxoffice-erp-2.6.3/templates/German-invoice.html Xwww/lxoffice-erp-2.6.3/templates/German-ustva-2007.tex Xwww/lxoffice-erp-2.6.3/templates/Default-income_statement.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/edit_tax.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/list_warehouses.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/config.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/confirm_delete_warehouse.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/edit_price_factor.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/list_tax.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/edit_units.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/edit_warehouse.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/edit_accounts.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/edit_defaults.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/list_price_factors.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/list_account_details.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/list_accounts.html Xwww/lxoffice-erp-2.6.3/templates/webpages/am/edit_templates.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin_printer/list.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin_printer/edit.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin_printer/login.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin_printer/_login_form.html Xwww/lxoffice-erp-2.6.3/templates/webpages/is/form_header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/is/_payments.html Xwww/lxoffice-erp-2.6.3/templates/webpages/is/form_footer.html Xwww/lxoffice-erp-2.6.3/templates/webpages/menu/menuv3.html Xwww/lxoffice-erp-2.6.3/templates/webpages/menu/header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/menu/menuv4.html Xwww/lxoffice-erp-2.6.3/templates/webpages/menu/menunew.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/select_delivery_customer.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/print_options.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/new_item.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/autocomplete.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/set_longdescription.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/error.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/cov_selection.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/select_vendor.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/multibox.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/information.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/calculate_qty.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/edit_email.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/select_part.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generic/part_selection.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ap/search.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ap/ap_transactions_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/todo/show_todo_list.html Xwww/lxoffice-erp-2.6.3/templates/webpages/payment_term/form.html Xwww/lxoffice-erp-2.6.3/templates/webpages/payment_term/list.html Xwww/lxoffice-erp-2.6.3/templates/webpages/projects/project_form.html Xwww/lxoffice-erp-2.6.3/templates/webpages/projects/search.html Xwww/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections/fix_ap_ar_wrong_taxkeys.html Xwww/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections/assistant_for_ap_ar_wrong_taxkeys.html Xwww/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections/delete_transaction.html Xwww/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections/fix_invoice_inventory_with_taxkeys.html Xwww/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections/delete_transaction_confirmation.html Xwww/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections/assistant_for_invoice_inventory_with_taxkeys.html Xwww/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections/assistant_for_wrong_taxkeys.html Xwww/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections/analyze_filter.html Xwww/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections/assistant_for_wrong_taxes.html Xwww/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections/analyze_overview.html Xwww/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections/fix_wrong_taxkeys.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/choice.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/parts_language_selection.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/form_header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/search.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/search_update_prices.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/ajax_autocomplete.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/form_footer.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/confirm_price_update.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/makemodel.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/generate_report_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/price_row.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ic/assembly_row.html Xwww/lxoffice-erp-2.6.3/templates/webpages/do/stock_out_form.html Xwww/lxoffice-erp-2.6.3/templates/webpages/do/form_footer.html Xwww/lxoffice-erp-2.6.3/templates/webpages/do/delete.html Xwww/lxoffice-erp-2.6.3/templates/webpages/do/orders_top.html Xwww/lxoffice-erp-2.6.3/templates/webpages/do/form_header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/do/stock_in_form.html Xwww/lxoffice-erp-2.6.3/templates/webpages/do/orders_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/do/search.html Xwww/lxoffice-erp-2.6.3/templates/webpages/do/set_stock_in_out.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dunning/add.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dunning/show_invoices.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dunning/set_email.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dunning/show_dunning_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dunning/edit_config.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dunning/show_dunning_top.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dunning/search.html Xwww/lxoffice-erp-2.6.3/templates/webpages/common/search_history.html Xwww/lxoffice-erp-2.6.3/templates/webpages/common/show_history.html Xwww/lxoffice-erp-2.6.3/templates/webpages/common/flash.html Xwww/lxoffice-erp-2.6.3/templates/webpages/common/show_vc_details.html Xwww/lxoffice-erp-2.6.3/templates/webpages/report_generator/html_report.html Xwww/lxoffice-erp-2.6.3/templates/webpages/report_generator/pdf_export_options.html Xwww/lxoffice-erp-2.6.3/templates/webpages/report_generator/csv_export_options.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generictranslations/edit_greetings.html Xwww/lxoffice-erp-2.6.3/templates/webpages/generictranslations/edit_sepa_strings.html Xwww/lxoffice-erp-2.6.3/templates/webpages/oe/report_for_todo_list.html Xwww/lxoffice-erp-2.6.3/templates/webpages/oe/sales_order.html Xwww/lxoffice-erp-2.6.3/templates/webpages/oe/orders_top.html Xwww/lxoffice-erp-2.6.3/templates/webpages/oe/search.html Xwww/lxoffice-erp-2.6.3/templates/webpages/oe/check_for_direct_delivery.html Xwww/lxoffice-erp-2.6.3/templates/webpages/oe/form_footer.html Xwww/lxoffice-erp-2.6.3/templates/webpages/oe/orders_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/oe/periodic_invoices_email.txt Xwww/lxoffice-erp-2.6.3/templates/webpages/oe/edit_periodic_invoices_config.html Xwww/lxoffice-erp-2.6.3/templates/webpages/oe/save_periodic_invoices_config.html Xwww/lxoffice-erp-2.6.3/templates/webpages/oe/form_header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/wh/warehouse_selection.html Xwww/lxoffice-erp-2.6.3/templates/webpages/wh/journal_filter.html Xwww/lxoffice-erp-2.6.3/templates/webpages/wh/warehouse_selection_assembly.html Xwww/lxoffice-erp-2.6.3/templates/webpages/wh/removal_parts_selection.html Xwww/lxoffice-erp-2.6.3/templates/webpages/wh/warehouse_selection_stock.html Xwww/lxoffice-erp-2.6.3/templates/webpages/wh/report_filter.html Xwww/lxoffice-erp-2.6.3/templates/webpages/wh/transfer_parts_selection.html Xwww/lxoffice-erp-2.6.3/templates/webpages/sepa/bank_transfer_create.html Xwww/lxoffice-erp-2.6.3/templates/webpages/sepa/bank_transfer_list_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/sepa/bank_transfer_created.html Xwww/lxoffice-erp-2.6.3/templates/webpages/sepa/bank_transfer_mark_as_closed_step1.html Xwww/lxoffice-erp-2.6.3/templates/webpages/sepa/bank_transfer_add.html Xwww/lxoffice-erp-2.6.3/templates/webpages/sepa/bank_transfer_list_top.html Xwww/lxoffice-erp-2.6.3/templates/webpages/sepa/bank_transfer_search.html Xwww/lxoffice-erp-2.6.3/templates/webpages/sepa/bank_transfer_edit.html Xwww/lxoffice-erp-2.6.3/templates/webpages/rp/balance_sheet.html Xwww/lxoffice-erp-2.6.3/templates/webpages/rp/aging_ar_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/rp/html_report_susa.html Xwww/lxoffice-erp-2.6.3/templates/webpages/rp/aging_ar_top.html Xwww/lxoffice-erp-2.6.3/templates/webpages/vk/search_invoice.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ct/form_header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ct/get_delivery.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ct/form_footer.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ct/list_names_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ct/ajax_autocomplete.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ct/search.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/units_parts_done.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/SKR04_3804_already_exists.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/units_error.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/warehouse_form.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/units_set_default_done.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/coa_guess.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/std_buchungsgruppen_unknown_coa.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/buchungsgruppen_assemblies.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/buchungsgruppen_header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/units_parts.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/units_services.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/cp_greeting_update_form.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/warning.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/footer.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/buchungsgruppen_parts.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/units_header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/update_templates_warnings.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/SKR04_3804_update.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/units_set_default.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/buchungsgruppen_parts_done.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/buchungsgruppen_footer.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/units_services_done.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/buchungsgruppen_services.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/error.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/buchungsgruppen_services_done.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/buchungsgruppen_assemblies_done.html Xwww/lxoffice-erp-2.6.3/templates/webpages/dbupgrade/upgrade_message2.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ir/form_footer.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ir/_payments.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ir/form_header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/fu/report_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/fu/report_for_todo_list.html Xwww/lxoffice-erp-2.6.3/templates/webpages/fu/search.html Xwww/lxoffice-erp-2.6.3/templates/webpages/fu/close_window.html Xwww/lxoffice-erp-2.6.3/templates/webpages/fu/add_edit.html Xwww/lxoffice-erp-2.6.3/templates/webpages/fu/edit_access_rights.html Xwww/lxoffice-erp-2.6.3/templates/webpages/fu/report_top.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ar/search.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ar/ar_transactions_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/drafts/save_new.html Xwww/lxoffice-erp-2.6.3/templates/webpages/drafts/load.html Xwww/lxoffice-erp-2.6.3/templates/webpages/webdav/_list.html Xwww/lxoffice-erp-2.6.3/templates/webpages/gl/generate_report_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/gl/form_header_chart_balances_js.html Xwww/lxoffice-erp-2.6.3/templates/webpages/login/auth_db_unreachable.html Xwww/lxoffice-erp-2.6.3/templates/webpages/login/company_logo.html Xwww/lxoffice-erp-2.6.3/templates/webpages/login/password_error.html Xwww/lxoffice-erp-2.6.3/templates/webpages/login/authentication_pl_missing.html Xwww/lxoffice-erp-2.6.3/templates/webpages/login/login_screen.html Xwww/lxoffice-erp-2.6.3/templates/webpages/login/old_configuration_files.html Xwww/lxoffice-erp-2.6.3/templates/webpages/amcvar/list_cvar_configs.html Xwww/lxoffice-erp-2.6.3/templates/webpages/amcvar/display_cvar_config_form.html Xwww/lxoffice-erp-2.6.3/templates/webpages/amcvar/render_checkboxes.html Xwww/lxoffice-erp-2.6.3/templates/webpages/amcvar/render_inputs.html Xwww/lxoffice-erp-2.6.3/templates/webpages/amcvar/render_inputs_block.html Xwww/lxoffice-erp-2.6.3/templates/webpages/amcvar/search_include.html Xwww/lxoffice-erp-2.6.3/templates/webpages/amcvar/search_filter.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/dbupgrade_footer.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/backup_dataset.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/dbcreate.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/edit_user.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/user_migration_done.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/backup_dataset_email_done.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/create_standard_group_ask.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/restore_dataset_start_footer.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/restore_dataset.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/edit_groups.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/dbupgrade_all_header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/user_migration_complete.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/dbdelete.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/edit_group.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/delete_dataset.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/user_migration.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/delete_group_confirm.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/check_auth_database.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/dbupgrade_all_done.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/dbupgrade_header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/test_db_connection.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/list_users.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/restore_dataset_start_header.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/update_dataset.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/check_auth_tables.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/create_dataset.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/edit_group_membership.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/adminlogin.html Xwww/lxoffice-erp-2.6.3/templates/webpages/admin/dbadmin.html Xwww/lxoffice-erp-2.6.3/templates/webpages/datev/net_gross_difference.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ustva/config_step1.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ustva/generic_taxreport.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ustva/config_step2.html Xwww/lxoffice-erp-2.6.3/templates/webpages/ustva/report.html Xwww/lxoffice-erp-2.6.3/templates/webpages/bankaccounts/bank_account_list_bottom.html Xwww/lxoffice-erp-2.6.3/templates/webpages/bankaccounts/bank_account_display_form.html Xwww/lxoffice-erp-2.6.3/templates/German-sales_order.html Xwww/lxoffice-erp-2.6.3/templates/German-check.tex Xwww/lxoffice-erp-2.6.3/templates/Default-request_quotation.tex Xwww/lxoffice-erp-2.6.3/templates/French-balance_sheet.html Xwww/lxoffice-erp-2.6.3/templates/.gitignore Xwww/lxoffice-erp-2.6.3/templates/Default-pick_list.tex Xwww/lxoffice-erp-2.6.3/templates/French-purchase_order.tex Xwww/lxoffice-erp-2.6.3/templates/Default-receipt.tex Xwww/lxoffice-erp-2.6.3/templates/German-zahlungserinnerung_invoice.tex Xwww/lxoffice-erp-2.6.3/templates/German-bin_list.tex Xwww/lxoffice-erp-2.6.3/templates/German-purchase_order.html Xwww/lxoffice-erp-2.6.3/templates/Default-check.tex Xwww/lxoffice-erp-2.6.3/templates/Default-invoice.html Xwww/lxoffice-erp-2.6.3/templates/German-ustva.tex Xwww/lxoffice-erp-2.6.3/templates/Service-sales_order.html Xwww/lxoffice-erp-2.6.3/templates/Service-invoice.html Xwww/lxoffice-erp-2.6.3/templates/German-statement.html Xwww/lxoffice-erp-2.6.3/templates/German-taxbird.txb Xwww/lxoffice-erp-2.6.3/templates/German-sales_quotation.html Xwww/lxoffice-erp-2.6.3/templates/French-income_statement.html Xwww/lxoffice-erp-2.6.3/templates/German-ustva.html Xwww/lxoffice-erp-2.6.3/templates/French-statement.tex Xwww/lxoffice-erp-2.6.3/templates/Default-purchase_order.html Xwww/lxoffice-erp-2.6.3/templates/German-request_quotation.tex Xwww/lxoffice-erp-2.6.3/templates/Default-bin_list.tex Xwww/lxoffice-erp-2.6.3/templates/German-pick_list.tex Xwww/lxoffice-erp-2.6.3/templates/German-pick_list.html Xwww/lxoffice-erp-2.6.3/templates/Service-check.tex Xwww/lxoffice-erp-2.6.3/templates/French-receipt.tex Xwww/lxoffice-erp-2.6.3/templates/German-ustva-2008.tex Xwww/lxoffice-erp-2.6.3/templates/French-check.tex Xwww/lxoffice-erp-2.6.3/templates/German-ustva-2006.tex Xwww/lxoffice-erp-2.6.3/templates/German-income_statement.html Xwww/lxoffice-erp-2.6.3/dispatcher.pl Xwww/lxoffice-erp-2.6.3/datev.pl Xwww/lxoffice-erp-2.6.3/menunew.pl Xwww/lxoffice-erp-2.6.3/js/FormManager.js Xwww/lxoffice-erp-2.6.3/js/edit_periodic_invoices_config.js Xwww/lxoffice-erp-2.6.3/js/customer_or_vendor_selection.js Xwww/lxoffice-erp-2.6.3/js/delivery_customer_selection.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/menuarrow.gif Xwww/lxoffice-erp-2.6.3/js/jscalendar/calendar.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/calendar-win2k-1.css Xwww/lxoffice-erp-2.6.3/js/jscalendar/menuarrow2.gif Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-cs-win.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-pl-utf8.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-sv.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-hu.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-ko-utf8.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-af.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-en.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-sp.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-ko.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-pl.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-it.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-ru.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-tr.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-el.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-hr.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-fr.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-es.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-du.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-br.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-da.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-ca.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-hr-utf8.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-lt-utf8.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-nl.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-pt.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-sk.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-lt.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-de.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-no.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-si.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-jp.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-zh.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-fi.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/lang/calendar-ro.js Xwww/lxoffice-erp-2.6.3/js/jscalendar/calendar-setup.js Xwww/lxoffice-erp-2.6.3/js/jquery.multiselect2side.js Xwww/lxoffice-erp-2.6.3/js/part_selection.js Xwww/lxoffice-erp-2.6.3/js/calculate_qty.js Xwww/lxoffice-erp-2.6.3/js/parts_language_selection.js Xwww/lxoffice-erp-2.6.3/js/jquery.selectboxes.js Xwww/lxoffice-erp-2.6.3/js/tabcontent.js Xwww/lxoffice-erp-2.6.3/js/jquery.checkall.js Xwww/lxoffice-erp-2.6.3/js/checkbox_utils.js Xwww/lxoffice-erp-2.6.3/js/jquery.form.js Xwww/lxoffice-erp-2.6.3/js/show_vc_details.js Xwww/lxoffice-erp-2.6.3/js/switchmenuframe.js Xwww/lxoffice-erp-2.6.3/js/jquery-autocomplete/jquery.autocomplete.pack.js Xwww/lxoffice-erp-2.6.3/js/vendor_selection.js Xwww/lxoffice-erp-2.6.3/js/show_form_details.js Xwww/lxoffice-erp-2.6.3/js/jquery-ui.js Xwww/lxoffice-erp-2.6.3/js/common.js Xwww/lxoffice-erp-2.6.3/js/follow_up.js Xwww/lxoffice-erp-2.6.3/js/jquery.autocomplete.js Xwww/lxoffice-erp-2.6.3/js/show_history.js Xwww/lxoffice-erp-2.6.3/js/dunning.js Xwww/lxoffice-erp-2.6.3/js/jquery/jquery-1.4.4.min.js Xwww/lxoffice-erp-2.6.3/js/jquery/jquery-1.4.4.js Xwww/lxoffice-erp-2.6.3/js/jquery/jquery-ui-1.8.12.custom.min.js Xwww/lxoffice-erp-2.6.3/js/stock_in_out.js Xwww/lxoffice-erp-2.6.3/js/dhtmlsuite/menu-for-applications.js Xwww/lxoffice-erp-2.6.3/js/wz_tooltip.js Xwww/lxoffice-erp-2.6.3/js/jquery.js X@dirrm www/lxoffice-erp-2.6.3/lxo-import X@dirrm www/lxoffice-erp-2.6.3/image/icons/24x24 X@dirrm www/lxoffice-erp-2.6.3/image/icons/32x32 X@dirrm www/lxoffice-erp-2.6.3/image/icons/16x16 X@dirrm www/lxoffice-erp-2.6.3/image/icons X@dirrm www/lxoffice-erp-2.6.3/image/dhtmlsuite X@dirrm www/lxoffice-erp-2.6.3/image X@dirrm www/lxoffice-erp-2.6.3/DEBIAN/DEBIAN X@dirrm www/lxoffice-erp-2.6.3/DEBIAN X@dirrm www/lxoffice-erp-2.6.3/oscom/tmp X@dirrm www/lxoffice-erp-2.6.3/oscom X@dirrmtry www/lxoffice-erp-2.6.3/config X@dirrmtry www/lxoffice-erp-2.6.3/spool X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/basic/Standard X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/basic X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/soffice.cfg/modules/swriter/accelerator/en-US X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/soffice.cfg/modules/swriter/accelerator X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/soffice.cfg/modules/swriter X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/soffice.cfg/modules X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/soffice.cfg/global/accelerator/en-US X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/soffice.cfg/global/accelerator X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/soffice.cfg/global X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config/soffice.cfg X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/config X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/data/org/openoffice/Office/UI X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/data/org/openoffice/Office X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/data/org/openoffice X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/data/org X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry/data X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/registry X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/gallery X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/psprint X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user/autotext X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2/user X@dirrm www/lxoffice-erp-2.6.3/users/.openoffice.org2 X@dirrmtry www/lxoffice-erp-2.6.3/users X@dirrm www/lxoffice-erp-2.6.3/bin/mozilla X@dirrm www/lxoffice-erp-2.6.3/bin X@dirrm www/lxoffice-erp-2.6.3/xslt X@dirrm www/lxoffice-erp-2.6.3/modules/fallback/DateTime/Event X@dirrm www/lxoffice-erp-2.6.3/modules/fallback/DateTime X@dirrm www/lxoffice-erp-2.6.3/modules/fallback/Daemon/Generic X@dirrm www/lxoffice-erp-2.6.3/modules/fallback/Daemon X@dirrm www/lxoffice-erp-2.6.3/modules/fallback/Email X@dirrm www/lxoffice-erp-2.6.3/modules/fallback/File X@dirrm www/lxoffice-erp-2.6.3/modules/fallback/Set/Infinite X@dirrm www/lxoffice-erp-2.6.3/modules/fallback/Set X@dirrm www/lxoffice-erp-2.6.3/modules/fallback/List X@dirrm www/lxoffice-erp-2.6.3/modules/fallback/Exception X@dirrm www/lxoffice-erp-2.6.3/modules/fallback/Sort X@dirrm www/lxoffice-erp-2.6.3/modules/fallback X@dirrm www/lxoffice-erp-2.6.3/modules/override/YAML/Dumper X@dirrm www/lxoffice-erp-2.6.3/modules/override/YAML/Loader X@dirrm www/lxoffice-erp-2.6.3/modules/override/YAML X@dirrm www/lxoffice-erp-2.6.3/modules/override/Term/ReadLine/Perl X@dirrm www/lxoffice-erp-2.6.3/modules/override/Term/ReadLine X@dirrm www/lxoffice-erp-2.6.3/modules/override/Term X@dirrm www/lxoffice-erp-2.6.3/modules/override/PDF X@dirrm www/lxoffice-erp-2.6.3/modules/override/CGI X@dirrm www/lxoffice-erp-2.6.3/modules/override/Devel/REPL/Plugin X@dirrm www/lxoffice-erp-2.6.3/modules/override/Devel/REPL X@dirrm www/lxoffice-erp-2.6.3/modules/override/Devel X@dirrm www/lxoffice-erp-2.6.3/modules/override X@dirrm www/lxoffice-erp-2.6.3/modules X@dirrm www/lxoffice-erp-2.6.3/sql/Pg-upgrade2 X@dirrm www/lxoffice-erp-2.6.3/sql/Pg-upgrade2-auth X@dirrm www/lxoffice-erp-2.6.3/sql/Pg-upgrade X@dirrm www/lxoffice-erp-2.6.3/sql X@dirrm www/lxoffice-erp-2.6.3/t/Support X@dirrm www/lxoffice-erp-2.6.3/t/structure X@dirrm www/lxoffice-erp-2.6.3/t/helper X@dirrm www/lxoffice-erp-2.6.3/t/old/frontend X@dirrm www/lxoffice-erp-2.6.3/t/old/backend X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/incomming X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/administration/end X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/administration/begin X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/administration X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/begin X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata/end X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/masterdata X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/reports/begin X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/reports/end X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/reports X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/selling/begin X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/selling/end X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/selling X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/accounting/end X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/accounting/begin X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/accounting X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/begin X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system/end X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/system X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/payments/end X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/payments/begin X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/payments X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/purchase/begin X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/purchase/end X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/purchase X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/programm/begin X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/programm/end X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/programm X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/base X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/printing/end X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/printing/begin X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts/printing X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium/testscripts X@dirrm www/lxoffice-erp-2.6.3/t/old/selenium X@dirrm www/lxoffice-erp-2.6.3/t/old/demolx/testscripts X@dirrm www/lxoffice-erp-2.6.3/t/old/demolx X@dirrm www/lxoffice-erp-2.6.3/t/old X@dirrm www/lxoffice-erp-2.6.3/t X@dirrm www/lxoffice-erp-2.6.3/SL/Helper X@dirrm www/lxoffice-erp-2.6.3/SL/Template/Plugin X@dirrm www/lxoffice-erp-2.6.3/SL/Template X@dirrm www/lxoffice-erp-2.6.3/SL/DB/Manager X@dirrm www/lxoffice-erp-2.6.3/SL/DB/Object X@dirrm www/lxoffice-erp-2.6.3/SL/DB/Helper X@dirrm www/lxoffice-erp-2.6.3/SL/DB/MetaSetup X@dirrm www/lxoffice-erp-2.6.3/SL/DB X@dirrm www/lxoffice-erp-2.6.3/SL/SEPA/XML X@dirrm www/lxoffice-erp-2.6.3/SL/SEPA X@dirrm www/lxoffice-erp-2.6.3/SL/Controller X@dirrm www/lxoffice-erp-2.6.3/SL/DATEV X@dirrm www/lxoffice-erp-2.6.3/SL/Auth X@dirrm www/lxoffice-erp-2.6.3/SL/BackgroundJob X@dirrm www/lxoffice-erp-2.6.3/SL X@dirrm www/lxoffice-erp-2.6.3/doc/online/de X@dirrm www/lxoffice-erp-2.6.3/doc/online X@dirrm www/lxoffice-erp-2.6.3/doc/skr04-update-3804 X@dirrm www/lxoffice-erp-2.6.3/doc/modules X@dirrm www/lxoffice-erp-2.6.3/doc X@dirrm www/lxoffice-erp-2.6.3/css/ui-lightness/images X@dirrm www/lxoffice-erp-2.6.3/css/ui-lightness X@dirrm www/lxoffice-erp-2.6.3/css/frame_header X@dirrm www/lxoffice-erp-2.6.3/css/dhtmlsuite X@dirrm www/lxoffice-erp-2.6.3/css X@dirrm www/lxoffice-erp-2.6.3/scripts/boot/upstart X@dirrm www/lxoffice-erp-2.6.3/scripts/boot/system-v X@dirrm www/lxoffice-erp-2.6.3/scripts/boot X@dirrm www/lxoffice-erp-2.6.3/scripts X@dirrm www/lxoffice-erp-2.6.3/webdav/anfragen X@dirrm www/lxoffice-erp-2.6.3/webdav/bestellungen X@dirrm www/lxoffice-erp-2.6.3/webdav/angebote X@dirrm www/lxoffice-erp-2.6.3/webdav/gutschriften X@dirrm www/lxoffice-erp-2.6.3/webdav/einkaufsrechnungen X@dirrm www/lxoffice-erp-2.6.3/webdav/lieferantenbestellungen X@dirrm www/lxoffice-erp-2.6.3/webdav/rechnungen X@dirrmtry www/lxoffice-erp-2.6.3/webdav X@dirrm www/lxoffice-erp-2.6.3/olcom/tmp X@dirrm www/lxoffice-erp-2.6.3/olcom X@dirrm www/lxoffice-erp-2.6.3/xtcom/tmp X@dirrm www/lxoffice-erp-2.6.3/xtcom X@dirrm www/lxoffice-erp-2.6.3/locale/de X@dirrm www/lxoffice-erp-2.6.3/locale/fr X@dirrm www/lxoffice-erp-2.6.3/locale/en X@dirrm www/lxoffice-erp-2.6.3/locale/de_DE X@dirrm www/lxoffice-erp-2.6.3/locale X@dirrm www/lxoffice-erp-2.6.3/pepper/tmp X@dirrm www/lxoffice-erp-2.6.3/pepper/export_to_erp/tmp X@dirrm www/lxoffice-erp-2.6.3/pepper/export_to_erp X@dirrm www/lxoffice-erp-2.6.3/pepper X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/am X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/admin_printer X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/is X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/menu X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/generic X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/ap X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/todo X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/payment_term X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/projects X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/acctranscorrections X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/ic X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/do X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/dunning X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/common X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/report_generator X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/generictranslations X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/oe X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/wh X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/sepa X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/rp X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/vk X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/ct X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/dbupgrade X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/ir X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/fu X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/ar X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/drafts X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/webdav X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/gl X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/login X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/amcvar X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/admin X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/datev X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/ustva X@dirrm www/lxoffice-erp-2.6.3/templates/webpages/bankaccounts X@dirrm www/lxoffice-erp-2.6.3/templates/webpages X@dirrmtry www/lxoffice-erp-2.6.3/templates X@dirrm www/lxoffice-erp-2.6.3/js/jscalendar/lang X@dirrm www/lxoffice-erp-2.6.3/js/jscalendar X@dirrm www/lxoffice-erp-2.6.3/js/jquery-autocomplete X@dirrm www/lxoffice-erp-2.6.3/js/jquery X@dirrm www/lxoffice-erp-2.6.3/js/dhtmlsuite X@dirrm www/lxoffice-erp-2.6.3/js X@dirrmtry www/lxoffice-erp-2.6.3 X@exec chgrp 80 %D/www/lxoffice-erp-2.6.3/users X@exec chgrp 80 %D/www/lxoffice-erp-2.6.3/spool X@exec chgrp 80 %D/www/lxoffice-erp-2.6.3/webdav X@exec chmod 771 %D/www/lxoffice-erp-2.6.3/users X@exec chmod 771 %D/www/lxoffice-erp-2.6.3/spool X@exec chmod 771 %D/www/lxoffice-erp-2.6.3/webdav 2f13e8d37a16e13bf1716ce8327fa018 echo x - lx-office-erp/Makefile sed 's/^X//' >lx-office-erp/Makefile << 'dcd8a538e1c8d538f45445aeeaa513ab' X# New ports collection makefile for: lx-office-erp X# Date created: 2011-12-13 X# Whom: Harald Schmalzbauer X# X# $FreeBSD: ports/inofficial/lx-office-erp/Makefile, $ X# X XPORTNAME= lx-office-erp XPORTVERSION= 2.6.3 XCATEGORIES= german finance perl5 XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= lx-office/Lx-Office%20ERP/${PORTVERSION} XDISTNAME= lxoffice-erp-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} X XMAINTAINER= freebsd@omnilan.de XCOMMENT= A ERP system managing stock, invoicing and double entry accounting X XLICENSE= GPLv1 ART10 XLICENSE_COMB= dual X XBUILD_DEPENDS= ${SITE_PERL}/parent.pm:${PORTSDIR}/devel/p5-parent \ X ${SITE_PERL}/Archive/Zip.pm:${PORTSDIR}/archivers/p5-Archive-Zip \ X ${SITE_PERL}/Class/Accessor.pm:${PORTSDIR}/devel/p5-Class-Accessor \ X ${SITE_PERL}/Config/Std.pm:${PORTSDIR}/devel/p5-Config-Std \ X ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg \ X ${SITE_PERL}/Email/Address.pm:${PORTSDIR}/mail/p5-Email-Address \ X ${SITE_PERL}/PDF/API2.pm:${PORTSDIR}/textproc/p5-PDF-API2 \ X ${SITE_PERL}/Rose/DB/Object.pm:${PORTSDIR}/databases/p5-Rose-DB-Object \ X ${SITE_PERL}/${PERL_ARCH}/Template.pm:${PORTSDIR}/www/p5-Template-Toolkit \ X ${SITE_PERL}/${PERL_ARCH}/Text/CSV_XS.pm:${PORTSDIR}/textproc/p5-Text-CSV_XS \ X ${SITE_PERL}/${PERL_ARCH}/Text/Iconv.pm:${PORTSDIR}/converters/p5-Text-Iconv \ X ${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \ X ${SITE_PERL}/XML/Writer.pm:${PORTSDIR}/textproc/p5-XML-Writer \ X ${SITE_PERL}/YAML.pm:${PORTSDIR}/textproc/p5-YAML \ X ${SITE_PERL}/${PERL_ARCH}/FCGI.pm:${PORTSDIR}/www/p5-FCGI \ X pdflatex:${PORTSDIR}/print/teTeX-base \ X odvips:${PORTSDIR}/print/dvipsk-tetex X X.if !defined(WITHOUT_LDAP) XBUILD_DEPENDS+= ${SITE_PERL}/Net/LDAP.pm:${PORTSDIR}/net/p5-perl-ldap X.endif X XRUN_DEPENDS= ${BUILD_DEPENDS} X XOPTIONS= LDAP "Enable user authentication via LDAP" On X XUSE_PERL5= yes XNO_EXTRACT= yes XNO_BUILD= yes XSUB_FILES= pkg-message X XPORTDOCS= INSTALL.txt XPORTEXAMPLES= lighttpd_lighttpd.conf lighttpd_conf.d_fastcgi.conf apache22_Includes_lxoffice.conf X X Xdo-install: X cd ${PREFIX}/www && tar -x --no-same-owner -f ${DISTDIR}/${DISTFILES} X Xpost-install: X @cd ${PREFIX}/www/${DISTNAME} && \ X ${PATCH} -i ${FILESDIR}/config_lx_office.conf.default-bin-config-path.patch ; \ X ${PATCH} -i ${FILESDIR}/SL_Template_LaTeX_bin-config-path.patch X X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X ${INSTALL_MAN} ${PREFIX}/www/${DISTNAME}/doc/INSTALL.txt ${DOCSDIR} X.endif X.if !defined(NOPORTEXAMPLES) X ${MKDIR} ${EXAMPLESDIR} X ${INSTALL_MAN} ${FILESDIR}/*.conf ${EXAMPLESDIR} X.endif X @cd ${PREFIX}/www ; \ X ${CHMOD} -R 644 ${DISTNAME} ; \ X ${CHMOD} -R +X ${DISTNAME} X @cd ${PREFIX}/www/${DISTNAME} ; \ X ${CHGRP} ${WWWGRP} users spool webdav ; \ X ${CHMOD} 771 users spool webdav ; \ X ${CHMOD} +x dispatcher.fpl X X @${CAT} ${PKGMESSAGE} X X X.include dcd8a538e1c8d538f45445aeeaa513ab echo x - lx-office-erp/distinfo sed 's/^X//' >lx-office-erp/distinfo << '4c81d3863d65169c4dcc1a98376f1ec2' XSHA256 (lxoffice-erp-2.6.3.tar.gz) = befeda79bb1aa8a5514447bb1a345a1747838efc8e2ddd817b8feaad1722f84c XSIZE (lxoffice-erp-2.6.3.tar.gz) = 5225236 4c81d3863d65169c4dcc1a98376f1ec2 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 16:40:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A793106564A for ; Thu, 1 Mar 2012 16:40:09 +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 49FC28FC14 for ; Thu, 1 Mar 2012 16:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21Ge9Vk022674 for ; Thu, 1 Mar 2012 16:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21Ge9A7022673; Thu, 1 Mar 2012 16:40:09 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 16:40:09 GMT Resent-Message-Id: <201203011640.q21Ge9A7022673@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, Harald Schmalzbauer Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50F67106564A for ; Thu, 1 Mar 2012 16:39:13 +0000 (UTC) (envelope-from admin@omnilan.de) Received: from mailgw.rzhp.omnilan.net (mailgw.rzhp.omnilan.net [IPv6:2a01:138:9004:1::21:133]) by mx1.freebsd.org (Postfix) with ESMTP id ED8258FC0C for ; Thu, 1 Mar 2012 16:39:12 +0000 (UTC) Received: from mailhub.wdn.omnilan.net (cale.wdn.omnilan.net [IPv6:2001:a60:f0bb:1::2:2]) by mailgw.rzhp.omnilan.net (8.14.4/8.14.4) with ESMTP id q21Gd1El065095 for ; Thu, 1 Mar 2012 17:39:06 +0100 (CET) (envelope-from admin@jadam9s64.cale.wdn.omnilan.net) Received: from jadam9s64.cale.wdn.omnilan.net (jadam9s64.cale.wdn.omnilan.net [IPv6:2001:a60:f0bb:1::2:2b7]) by mailhub.wdn.omnilan.net (8.14.5/8.14.4) with ESMTP id q21Gcr40047552 for ; Thu, 1 Mar 2012 17:38:53 +0100 (CET) (envelope-from admin@jadam9s64.cale.wdn.omnilan.net) Received: (from root@localhost) by jadam9s64.cale.wdn.omnilan.net (8.14.5/8.14.5/Submit) id q21GcrP5047551; Thu, 1 Mar 2012 17:38:53 +0100 (CET) (envelope-from admin) Message-Id: <201203011638.q21GcrP5047551@jadam9s64.cale.wdn.omnilan.net> Date: Thu, 1 Mar 2012 17:38:53 +0100 (CET) From: Harald Schmalzbauer To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165587: Fix deskutils/egroupware dependency and configuration problems X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Harald Schmalzbauer List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2012 16:40:09 -0000 >Number: 165587 >Category: ports >Synopsis: Fix deskutils/egroupware dependency and configuration problems >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 16:40:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Harald Schmalzbauer >Release: FreeBSD 9.0-STABLE amd64 >Organization: OmniLAN >Environment: System: FreeBSD jadam9s64.cale.wdn.omnilan.net 9.0-STABLE FreeBSD 9.0-STABLE #0: Thu Feb 23 17:02:32 CET 2012 admin@jadam9s64.cale.wdn.omnilan.net:/usr/obj/usr/src/sys/ILZ-S30 amd64 >Description: Installing the port as it is doesn't allow you to store calendar entries e.g. (missing php5-zlib). Another show-stopper for SyncML is that important PHP variables are not set properly with the provided configuration instruction. In addition to a corrected apache configuration example, a example lighttpd configuration is included. Also some new dependencies for 1.8.002 are added (mcrypt, xmlreader and optionally TNEF and OpenSSL support (for IMAPs connections e.g.) >How-To-Repeat: Go to your ports tree in deskutils/egroupware run a 'make install' and try to store calendar entries -> doesn't work Try to connect synchronice vi syncml -> doesn't work (check /eg/rpc.php with browser to see the problem) Check eg/setup/, login as config-admin and run check_install.php There are mcrypt and xmlreader dependencies unsatisfied, also TNEF can be usefull for the integrated mail client (feliamaial) Another thing to mention: GD doesn't implicit require x11-libraries, you can define WITHOUT_X11 in make.conf to keep GD lean. Maybe you want to include that hint / rework the GD options description. >Fix: --- deskutils/egroupware/Makefile 2011-11-29 07:27:46.000000000 +0100 +++ deskutils/egroupware/Makefile 2012-03-01 11:26:57.370740433 +0100 @@ -24,7 +24,7 @@ PEARDIR= ${LOCALBASE}/share/pear USE_BZIP2= yes -USE_PHP= session ctype +USE_PHP= session ctype zlib bz2 mcrypt xmlreader NO_BUILD= yes PLIST= ${WRKDIR}/plist SUB_FILES= pkg-message @@ -34,6 +34,9 @@ OPTIONS= MYSQL "Use MySQL database" on \ POSTGRE "Use PostgreSQL Database" off \ IMAP "Enable Mail support in eGroupware" on \ + OSSL "Enable SSL connection support (for IMAP eg.)" on \ + TNEF "Supports decoding winmail.dat attachments in felamimail" on \ + ZIP "Enable contact data insertion for O/MS/Libre Office documents." on \ GD "Enable graphic support (needs xorg-libraries)" off \ LDAP "Contacts can be stored using OpenLDAP" off \ MBSTRING "Support for complete UTF-8 charsets" off @@ -54,6 +57,15 @@ .if defined(WITH_IMAP) USE_PHP+= imap .endif +.if defined(WITH_OSSL) +USE_PHP+= openssl +.endif +.if defined(WITH_TNEF) +RUN_DEPENDS+= tnef:${PORTSDIR}/converters/tnef +.endif +.if defined(WITH_ZIP) +USE_PHP+= zip +.endif .if defined(WITH_GD) USE_PHP+= gd .endif @@ -67,8 +79,17 @@ EG_DATA= www/egdata EG_DATADIR= ${PREFIX}/www/egdata +.if defined(NOPORTEXAMPLES) +PLIST_SUB+= PORTEXAMPLES="@comment " +.else +PLIST_SUB+= PORTEXAMPLES="lighttpd_conf.d_fastcgi.conf" +.endif + + pre-install: @${FIND} -s -d ${WRKSRC} -type f | ${SED} "s#${WRKSRC}#${EG_DIR}#g" >${PLIST} + @${ECHO_CMD} ${EG_DIR}/php.ini >> ${PLIST} + @${ECHO_CMD} ${EG_DIR}/php.ini-syncml >> ${PLIST} @${FIND} -s -d ${WRKSRC} -type d | ${SED} "s#${WRKSRC}#@dirrm ${EG_DIR}#g" >> ${PLIST} @${ECHO} @dirrm ${EG_DATA}/files >> ${PLIST} @${ECHO} @dirrm ${EG_DATA}/backup >> ${PLIST} @@ -77,11 +98,12 @@ do-install: ${MKDIR} ${EG_WWWDIR} @cd ${WRKSRC} && ${COPYTREE_SHARE} . ${EG_WWWDIR} - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${EG_WWWDIR} - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${EG_WWWDIR}' \ - >> ${TMPPLIST} - ${CHMOD} -R 755 ${EG_WWWDIR} - @${ECHO_CMD} '@exec ${CHMOD} -R 755 ${EG_WWWDIR}' >> ${TMPPLIST} + ${INSTALL_DATA} ${FILESDIR}/php.ini ${EG_WWWDIR} + ${INSTALL_DATA} ${FILESDIR}/php.ini-syncml ${EG_WWWDIR} + ${CHMOD} -R 644 ${EG_WWWDIR} + ${CHMOD} -R +X ${EG_WWWDIR} + @${ECHO_CMD} '@exec ${CHMOD} -R 644 ${EG_WWWDIR}' >> ${TMPPLIST} + @${ECHO_CMD} '@exec ${CHMOD} -R +X ${EG_WWWDIR}' >> ${TMPPLIST} ${MKDIR} ${EG_DATADIR} ${MKDIR} ${EG_DATADIR}/files @@ -89,8 +111,14 @@ @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${EG_DATADIR} @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${EG_DATADIR}' \ >> ${TMPPLIST} - ${CHMOD} -R 755 ${EG_DATADIR} - @${ECHO_CMD} '@exec ${CHMOD} -R 755 ${EG_DATADIR}' >> ${TMPPLIST} + ${CHMOD} -R 751 ${EG_DATADIR} + @${ECHO_CMD} '@exec ${CHMOD} -R 751 ${EG_DATADIR}' >> ${TMPPLIST} +.if !defined(NOPORTEXAMPLES) + ${MKDIR} ${EXAMPLESDIR} + ${INSTALL_DATA} ${FILESDIR}/lighttpd_conf.d_fastcgi.conf ${EXAMPLESDIR}/ +# @${ECHO_CMD} ${EXAMPLESDIR}/egroupware/lighttpd_conf.d_fastcgi.conf >> ${TMPPLIST} +.endif + post-install: ${CAT} ${PKGMESSAGE} --- deskutils/egroupware/files/pkg-message.in 2008-11-29 21:25:51.000000000 +0100 +++ deskutils/egroupware/files/pkg-message.in 2012-03-01 11:20:10.941964823 +0100 @@ -3,29 +3,26 @@ Make sure in your php.ini session.save_path='/tmp' is writable -upload_max_filesize >= 8M +(or use suggestions as in %%EXAMPLESDIR%%, where path +is set to %%EG_DATA%%/tmp) 1) Create a user and a database for eGroupware to store all 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. -2) Add the following to your Apache configuration, and - restart the server: - - ### Add the AcceptPathInfo directive only for Apache 2.0.30 or later. - Alias /eg %%PREFIX%%/%%EG_DIR%%/ - AcceptPathInfo On - - AllowOverride None - Order Allow,Deny - Allow from all - - - AllowOverride None - Order Allow,Deny - Deny from all - +2) Check %%EXAMPLESDIR%% for apache and lighttpd configuration examples. + For apache, the Fast-CGI interface with mod_fcgid is supported, along + with the legacy mod_php module (you have to define the .php handler + with mod_php yourself as usual) + It's reccomended not to use .htaccess, instead PHP_VALUE are adjusted + by php.ini inside %%EG_WWWDIR%% + + For lighttpd, there's only Fast-CGI with spawn-fcgi and no .htaccess + + For both webservers, a specail PHP-environment hack is included, + to make SyncML working. If you don't use SyncML, you can remove the + extra "FcgidWrapper"/"bin-path". 3) Visit your eGroupware site with a browser (i.e., http://your.server.com/eg/), and you should @@ -40,6 +37,6 @@ For more information, see the INSTALL DOCUMENTATION: -http://www.egroupware.org/index.php?page_name=wiki&lang=&wikipage=ManualSetup +http://community.egroupware.org/index.php?page_name=wiki&lang=&wikipage=ManualSetup ====================================================== --- /dev/null 2012-03-01 17:22:00.000000000 +0100 +++ deskutils/egroupware/files/apache22_Includes_eg.conf 2012-03-01 11:07:06.625947299 +0100 @@ -0,0 +1,39 @@ +Alias /eg /usr/local/www/eg/ +AcceptPathInfo On + + + AddHandler fcgid-script .php + FcgidInitialEnv PHPRC "/usr/local/www/egroupware" + FcgidWrapper "/usr/local/bin/php-cgi" .php + + + + DirectoryIndex index.php + + AllowOverride Options FileInfo + php_admin_value session.save_path /usr/local/www/egdata/tmp/sessions + + + AllowOverride None + Options +ExecCGI + + Order Allow,Deny + Allow from all + + + + AllowOverride None + Order Allow,Deny + Deny from all + + + + + php_admin_value mbstring.func_overload 0 + + + FcgidWrapper "/usr/local/bin/php-cgi -c /usr/local/www/eg/php.ini-syncml" .php + + Order allow,deny + Allow from all + --- /dev/null 2012-03-01 17:22:00.000000000 +0100 +++ deskutils/egroupware/files/lighttpd_conf.d_fastcgi.conf 2012-03-01 10:58:14.828855991 +0100 @@ -0,0 +1,27 @@ +fastcgi.server = ( ".php" => + ( "php-local" => + ( + "socket" => socket_dir + "/php-fastcgi-1.socket", + "bin-path" => "/usr/local/bin/php-cgi", + "bin-environment" => ( + "PHP_FCGI_CHILDREN" => "1", + "PHP_FCGI_MAX_REQUESTS" => "10000", + "PHPRC" => "/usr/local/www/eg" + ), + "max-procs" => 1, + "broken-scriptfilename" => "enable", + ) + ), + ) +$HTTP["url"] =~ "^/rpc.php" { + fastcgi.server = ( ".php" => + ( "php-syncml" => + ( + "socket" => socket_dir + "/php-fastcgi-syncml.socket", + "bin-path" => "/usr/local/bin/php-cgi -c /usr/local/www/eg/php.ini-syncml", + "max-procs" => 1, + "broken-scriptfilename" => "enable", + ) + ), + ) +} --- /dev/null 2012-03-01 17:22:00.000000000 +0100 +++ deskutils/egroupware/files/php.ini 2012-02-29 18:53:07.192654350 +0100 @@ -0,0 +1,26 @@ +[php] +date.timezone = Europe/Berlin +session.save_path = /usr/local/www/egdata/tmp/sessions + +file_uploads = on +log_errors = on +magic_quotes_gpc = off +magic_quotes_runtime = off +register_globals = off +short_open_tag = on +track_vars = on +display_errors = on +# E_ALL & ~E_NOTICE & ~E_STRICT = 8191 - 8 - 2048 = 6135 +error_reporting = 6135 +max_execution_time = 90 +memory_limit = 256M +session.gc_maxlifetime = 14400 +upload_max_filesize = 64M +post_max_size = 65M +# session handling: now the check for expired sessions is done on every 10th session creation +session.use_trans_sid = Off +session.gc_probability = 1 +session.gc_divisor = 10 +# multibyte extension: needed for utf-8 +mbstring.func_overload = 7 + --- /dev/null 2012-03-01 17:22:00.000000000 +0100 +++ deskutils/egroupware/files/php.ini-syncml 2012-02-29 19:47:27.904655207 +0100 @@ -0,0 +1,4 @@ +[php] +incluce php.ini +mbstring.func_overload = 0 + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 16:40:53 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7986A1065678; Thu, 1 Mar 2012 16:40:53 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4D33D8FC15; Thu, 1 Mar 2012 16:40:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21Gerot026623; Thu, 1 Mar 2012 16:40:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21GerUT026614; Thu, 1 Mar 2012 16:40:53 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 16:40:53 GMT Message-Id: <201203011640.q21GerUT026614@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165587: Fix deskutils/egroupware dependency and configuration problems 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: Thu, 01 Mar 2012 16:40:53 -0000 Synopsis: Fix deskutils/egroupware dependency and configuration problems Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 16:40:52 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165587 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 17:20:11 2012 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 3C6F11065670 for ; Thu, 1 Mar 2012 17:20:11 +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 159838FC19 for ; Thu, 1 Mar 2012 17:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21HKAmY058600 for ; Thu, 1 Mar 2012 17:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21HKADP058599; Thu, 1 Mar 2012 17:20:10 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 17:20:10 GMT Resent-Message-Id: <201203011720.q21HKADP058599@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF1C81065670; Thu, 1 Mar 2012 17:18:52 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 8A0C98FC18; Thu, 1 Mar 2012 17:18:52 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q21HIlZN081732 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 1 Mar 2012 12:18:47 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q21HIePN099589; Thu, 1 Mar 2012 12:18:40 -0500 (EST) (envelope-from steve) Message-Id: <201203011718.q21HIePN099589@meatwad.mouf.net> Date: Thu, 1 Mar 2012 12:18:40 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: miwi@FreeBSD.org Subject: ports/165588: [PATCH] irc/p5-POE-Component-IRC-Plugin-QueryDNSBL: Correct DEPENDS 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: Thu, 01 Mar 2012 17:20:11 -0000 >Number: 165588 >Category: ports >Synopsis: [PATCH] irc/p5-POE-Component-IRC-Plugin-QueryDNSBL: Correct DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 17:20:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: see patch Port maintainer (miwi@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-POE-Component-IRC-Plugin-QueryDNSBL-1.02_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/irc/p5-POE-Component-IRC-Plugin-QueryDNSBL/Makefile,v retrieving revision 1.3 diff -u -u -r1.3 Makefile --- Makefile 25 Jun 2011 04:55:38 -0000 1.3 +++ Makefile 1 Mar 2012 17:18:22 -0000 @@ -7,6 +7,7 @@ PORTNAME= POE-Component-IRC-Plugin-QueryDNSBL PORTVERSION= 1.02 +PORTREVISION= 1 CATEGORIES= irc perl5 devel MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,12 +15,11 @@ MAINTAINER= miwi@FreeBSD.org COMMENT= A POE::Component::IRC plugin for IRC based DNSBL queries -BUILD_DEPENDS= ${SITE_PERL}/POE.pm:${PORTSDIR}/devel/p5-POE \ - ${SITE_PERL}/POE/Component/IRC.pm:${PORTSDIR}/irc/p5-POE-Component-IRC \ - p5-POE-Component-Client-DNS>=1.00:${PORTSDIR}/dns/p5-POE-Component-Client-DNS -RUN_DEPENDS= ${SITE_PERL}/POE.pm:${PORTSDIR}/devel/p5-POE \ - ${SITE_PERL}/POE/Component/IRC.pm:${PORTSDIR}/irc/p5-POE-Component-IRC \ - p5-POE-Component-Client-DNS>=1.00:${PORTSDIR}/dns/p5-POE-Component-Client-DNS +BUILD_DEPENDS= p5-POE>=0:${PORTSDIR}/devel/p5-POE \ + p5-POE-Component-IRC>=6.68:${PORTSDIR}/irc/p5-POE-Component-IRC \ + p5-POE-Component-Client-DNSBL>=0.06:${PORTSDIR}/dns/p5-POE-Component-Client-DNSBL \ + p5-Net-IP>=1.25:${PORTSDIR}/net-mgmt/p5-Net-IP +RUN_DEPENDS:= ${BUILD_DEPENDS} PLIST_SUB= EXAMPLESDIR="share/examples/${PORTNAME}" PERL_CONFIGURE= yes --- p5-POE-Component-IRC-Plugin-QueryDNSBL-1.02_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 17:20:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FEBB1065674; Thu, 1 Mar 2012 17:20:21 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E67C08FC08; Thu, 1 Mar 2012 17:20:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21HKKMi058790; Thu, 1 Mar 2012 17:20:20 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21HKKVS058784; Thu, 1 Mar 2012 17:20:20 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 17:20:20 GMT Message-Id: <201203011720.q21HKKVS058784@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165588: [PATCH] irc/p5-POE-Component-IRC-Plugin-QueryDNSBL: Correct DEPENDS 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: Thu, 01 Mar 2012 17:20:21 -0000 Synopsis: [PATCH] irc/p5-POE-Component-IRC-Plugin-QueryDNSBL: Correct DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 17:20:20 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165588 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 17:50:17 2012 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 C8F471065688 for ; Thu, 1 Mar 2012 17:50:17 +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 4A7CD8FC22 for ; Thu, 1 Mar 2012 17:50:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21HoEP6086638 for ; Thu, 1 Mar 2012 17:50:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21HoERe086637; Thu, 1 Mar 2012 17:50:14 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 17:50:14 GMT Resent-Message-Id: <201203011750.q21HoERe086637@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, Joe Horn Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C62D11065673; Thu, 1 Mar 2012 17:46:35 +0000 (UTC) (envelope-from root@Leo.mi.chu.edu.tw) Received: from Leo.mi.chu.edu.tw (Leo.mi.chu.edu.tw [140.126.143.63]) by mx1.freebsd.org (Postfix) with ESMTP id 388EF8FC18; Thu, 1 Mar 2012 17:46:34 +0000 (UTC) Received: from Leo.mi.chu.edu.tw (localhost [127.0.0.1]) by Leo.mi.chu.edu.tw (Postfix) with ESMTP id 0ED834DFC27; Fri, 2 Mar 2012 01:46:32 +0800 (CST) Received: from Leo.mi.chu.edu.tw ([127.0.0.1]) by Leo.mi.chu.edu.tw (Leo.mi.chu.edu.tw [127.0.0.1]) (amavisd-new, port 10024) with LMTP id ZVB6P83ExC-T; Fri, 2 Mar 2012 01:46:31 +0800 (CST) Received: by Leo.mi.chu.edu.tw (Postfix, from userid 0) id DD2EC4DFC24; Fri, 2 Mar 2012 01:46:31 +0800 (CST) Message-Id: <20120301174631.DD2EC4DFC24@Leo.mi.chu.edu.tw> Date: Fri, 2 Mar 2012 01:46:31 +0800 (CST) From: Joe Horn To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: ale@FreeBSD.org Subject: ports/165590: [PATCH] databases/mysql55-server: Add supporting for some storage engines 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: Thu, 01 Mar 2012 17:50:17 -0000 >Number: 165590 >Category: ports >Synopsis: [PATCH] databases/mysql55-server: Add supporting for some storage engines >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 17:50:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Joe Horn >Release: FreeBSD 9.0-RELEASE amd64 >Organization: Taiwanese User >Environment: System: FreeBSD joehorn.idv.tw 9.0-RELEASE FreeBSD 9.0-RELEASE #3: Mon Jan 9 22:14:09 CST >Description: Put these storage engines back : - ARCHIVE - BLACKHOLE - FEDERATED Port maintainer (ale@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- mysql-server-5.5.20_1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/databases/mysql55-server/Makefile /home/admin/joehorn/mysql55-server/Makefile --- /usr/ports/databases/mysql55-server/Makefile 2012-03-02 01:43:51.000000000 +0800 +++ /home/admin/joehorn/mysql55-server/Makefile 2012-03-02 01:43:27.000000000 +0800 @@ -7,7 +7,7 @@ PORTNAME?= mysql PORTVERSION= 5.5.20 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= databases ipv6 MASTER_SITES= ${MASTER_SITE_MYSQL} MASTER_SITE_SUBDIR= MySQL-5.5 @@ -39,7 +39,10 @@ -DINSTALL_SQLBENCHDIR="share/mysql" \ -DINSTALL_SUPPORTFILESDIR="share/mysql" \ -DWITH_LIBEDIT=0 \ - -DWITH_LIBWRAP=1 + -DWITH_LIBWRAP=1 \ + -DWITH_ARCHIVE_STORAGE_ENGINE="ON" \ + -DWITH_BLACKHOLE_STORAGE_ENGINE="ON" \ + -DWITH_FEDERATED_STORAGE_ENGINE="ON" .ifdef USE_MYSQL .error You have `USE_MYSQL' variable defined either in environment or in make(1) arguments. Please undefine and try again. --- mysql-server-5.5.20_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 17:50:28 2012 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 16E50106566B; Thu, 1 Mar 2012 17:50:28 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DF4768FC1A; Thu, 1 Mar 2012 17:50:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21HoRDX087187; Thu, 1 Mar 2012 17:50:27 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21HoR1E087176; Thu, 1 Mar 2012 17:50:27 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 17:50:27 GMT Message-Id: <201203011750.q21HoR1E087176@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165590: [PATCH] databases/mysql55-server: Add supporting for some storage engines 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: Thu, 01 Mar 2012 17:50:28 -0000 Synopsis: [PATCH] databases/mysql55-server: Add supporting for some storage engines Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 17:50:27 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165590 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 19:00:27 2012 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 D51EA106567B for ; Thu, 1 Mar 2012 19:00:27 +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 AEA768FC1C for ; Thu, 1 Mar 2012 19:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21J0PWA049883 for ; Thu, 1 Mar 2012 19:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21J0PAG049881; Thu, 1 Mar 2012 19:00:25 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 19:00:25 GMT Resent-Message-Id: <201203011900.q21J0PAG049881@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1975106566B; Thu, 1 Mar 2012 18:52:57 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 9D3D78FC1F; Thu, 1 Mar 2012 18:52:57 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q21IqrOF082455 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 1 Mar 2012 13:52:53 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q21Iqnno070786; Thu, 1 Mar 2012 13:52:49 -0500 (EST) (envelope-from steve) Message-Id: <201203011852.q21Iqnno070786@meatwad.mouf.net> Date: Thu, 1 Mar 2012 13:52:49 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: miwi@FreeBSD.org Subject: ports/165591: [PATCH] irc/p5-POE-Component-IRC-Plugin-RSS-Headlines: correct DEPENDS 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: Thu, 01 Mar 2012 19:00:28 -0000 >Number: 165591 >Category: ports >Synopsis: [PATCH] irc/p5-POE-Component-IRC-Plugin-RSS-Headlines: correct DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 19:00:24 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: see patch, module passes tests and works now Port maintainer (miwi@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-POE-Component-IRC-Plugin-RSS-Headlines-1.08_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/irc/p5-POE-Component-IRC-Plugin-RSS-Headlines/Makefile,v retrieving revision 1.2 diff -u -u -r1.2 Makefile --- Makefile 1 May 2009 14:09:21 -0000 1.2 +++ Makefile 1 Mar 2012 18:52:20 -0000 @@ -7,6 +7,7 @@ PORTNAME= POE-Component-IRC-Plugin-RSS-Headlines PORTVERSION= 1.08 +PORTREVISION= 1 CATEGORIES= irc perl5 devel MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,12 +15,12 @@ MAINTAINER= miwi@FreeBSD.org COMMENT= A POE::Component::IRC plugin that provides RSS headline retrieval -BUILD_DEPENDS= ${SITE_PERL}/POE.pm:${PORTSDIR}/devel/p5-POE \ - ${SITE_PERL}/POE/Component/IRC.pm:${PORTSDIR}/irc/p5-POE-Component-IRC \ - p5-POE-Component-Client-DNS>=1.00:${PORTSDIR}/dns/p5-POE-Component-Client-DNS -RUN_DEPENDS= ${SITE_PERL}/POE.pm:${PORTSDIR}/devel/p5-POE \ - ${SITE_PERL}/POE/Component/IRC.pm:${PORTSDIR}/irc/p5-POE-Component-IRC \ - p5-POE-Component-Client-DNS>=1.00:${PORTSDIR}/dns/p5-POE-Component-Client-DNS +BUILD_DEPENDS= p5-POE>=1.004:${PORTSDIR}/devel/p5-POE \ + p5-POE-Component-IRC>=5.07:${PORTSDIR}/irc/p5-POE-Component-IRC \ + p5-POE-Component-Client-HTTP>=0.73:${PORTSDIR}/www/p5-POE-Component-Client-HTTP \ + p5-XML-RSS>=1.1:${PORTSDIR}/textproc/p5-XML-RSS \ + p5-HTTP-Message>=0:${PORTSDIR}/www/p5-HTTP-Message +RUN_DEPENDS:= ${BUILD_DEPENDS} PLIST_SUB= EXAMPLESDIR="share/examples/${PORTNAME}" PERL_CONFIGURE= yes --- p5-POE-Component-IRC-Plugin-RSS-Headlines-1.08_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 19:00:28 2012 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 2F27A106567C for ; Thu, 1 Mar 2012 19:00:28 +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 E31038FC1E for ; Thu, 1 Mar 2012 19:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21J0PYS049897 for ; Thu, 1 Mar 2012 19:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21J0PGt049891; Thu, 1 Mar 2012 19:00:25 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 19:00:25 GMT Resent-Message-Id: <201203011900.q21J0PGt049891@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, Kirk Strauser Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3130C1065674 for ; Thu, 1 Mar 2012 18:54:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 1C3B38FC14 for ; Thu, 1 Mar 2012 18:54:02 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q21Is10l025536 for ; Thu, 1 Mar 2012 18:54:01 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q21Is1pa025503; Thu, 1 Mar 2012 18:54:01 GMT (envelope-from nobody) Message-Id: <201203011854.q21Is1pa025503@red.freebsd.org> Date: Thu, 1 Mar 2012 18:54:01 GMT From: Kirk Strauser To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165592: Maintainer update: databases/pgdbf to version 0.6.1 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: Thu, 01 Mar 2012 19:00:28 -0000 >Number: 165592 >Category: ports >Synopsis: Maintainer update: databases/pgdbf to version 0.6.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 19:00:25 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Kirk Strauser >Release: 9.0-STABLE >Organization: The Strauser Group >Environment: >Description: This updates the databases/pgdbf port to version 0.6.1. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN databases/pgdbf/Makefile /usr/ports/databases/pgdbf/Makefile --- databases/pgdbf/Makefile 2011-02-19 06:45:12.000000000 -0600 +++ /usr/ports/databases/pgdbf/Makefile 2012-03-01 12:52:56.352051995 -0600 @@ -6,7 +6,7 @@ # PORTNAME= pgdbf -PORTVERSION= 0.5.5 +PORTVERSION= 0.6.1 CATEGORIES= databases MASTER_SITES= SF @@ -15,6 +15,8 @@ LICENSE= GPLv3 +USE_XZ= yes + USE_GMAKE= yes GNU_CONFIGURE= yes diff -urN databases/pgdbf/distinfo /usr/ports/databases/pgdbf/distinfo --- databases/pgdbf/distinfo 2011-02-19 06:45:12.000000000 -0600 +++ /usr/ports/databases/pgdbf/distinfo 2012-03-01 12:33:20.593048229 -0600 @@ -1,2 +1,2 @@ -SHA256 (pgdbf-0.5.5.tar.gz) = fb1d5f8c1fb4cab038080b27297abc92a276bb5f9e7e459ea2cfdfd455d542bf -SIZE (pgdbf-0.5.5.tar.gz) = 107409 +SHA256 (pgdbf-0.6.1.tar.xz) = cb98af66074d3c63cb37d594d38b4f7f02de4368bf9328c3ee5258e5b9651a47 +SIZE (pgdbf-0.6.1.tar.gz) = 83592 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 19:00:44 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BC09A106566C; Thu, 1 Mar 2012 19:00:44 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8F73A8FC16; Thu, 1 Mar 2012 19:00:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21J0iLM050811; Thu, 1 Mar 2012 19:00:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21J0idZ050802; Thu, 1 Mar 2012 19:00:44 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 19:00:44 GMT Message-Id: <201203011900.q21J0idZ050802@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165591: [PATCH] irc/p5-POE-Component-IRC-Plugin-RSS-Headlines: correct DEPENDS 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: Thu, 01 Mar 2012 19:00:44 -0000 Synopsis: [PATCH] irc/p5-POE-Component-IRC-Plugin-RSS-Headlines: correct DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 19:00:43 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165591 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 19:23:46 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C1A0F106564A; Thu, 1 Mar 2012 19:23:46 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 94D1C8FC08; Thu, 1 Mar 2012 19:23:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21JNkng076925; Thu, 1 Mar 2012 19:23:46 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21JNkR5076921; Thu, 1 Mar 2012 19:23:46 GMT (envelope-from culot) Date: Thu, 1 Mar 2012 19:23:46 GMT Message-Id: <201203011923.q21JNkR5076921@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/165592: Maintainer update: databases/pgdbf to version 0.6.1 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: Thu, 01 Mar 2012 19:23:46 -0000 Synopsis: Maintainer update: databases/pgdbf to version 0.6.1 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Thu Mar 1 19:23:46 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165592 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 19:40:10 2012 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 D8CDC106566B for ; Thu, 1 Mar 2012 19:40:10 +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 B57798FC17 for ; Thu, 1 Mar 2012 19:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21JeAg0087708 for ; Thu, 1 Mar 2012 19:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21JeArb087707; Thu, 1 Mar 2012 19:40:10 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 19:40:10 GMT Resent-Message-Id: <201203011940.q21JeArb087707@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, "Christopher J. Umina" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CF251065672 for ; Thu, 1 Mar 2012 19:30:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 3F5DC8FC17 for ; Thu, 1 Mar 2012 19:30:55 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q21JUsw6085266 for ; Thu, 1 Mar 2012 19:30:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q21JUsX8085264; Thu, 1 Mar 2012 19:30:54 GMT (envelope-from nobody) Message-Id: <201203011930.q21JUsX8085264@red.freebsd.org> Date: Thu, 1 Mar 2012 19:30:54 GMT From: "Christopher J. Umina" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165593: New port: benchmarks/cpipe Benchmarking tool for pipes 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: Thu, 01 Mar 2012 19:40:11 -0000 >Number: 165593 >Category: ports >Synopsis: New port: benchmarks/cpipe Benchmarking tool for pipes >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 19:40:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Christopher J. Umina >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: FreeBSD backups.studsvik-analytic.com 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Wed Jan 18 09:01:16 EST 2012 root@backups.studsvik-analytic.com:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # cpipe # cpipe/Makefile # cpipe/pkg-descr # cpipe/distinfo # echo c - cpipe mkdir -p cpipe > /dev/null 2>&1 echo x - cpipe/Makefile sed 's/^X//' >cpipe/Makefile << '7302657de21c127990140869f791e12f' X# New ports collection makefile for: cpipe X# Date created: 1 March 2013 X# Whom: uminac X# X# $FreeBSD$ X# X XPORTNAME= cpipe XPORTVERSION= 3.0.2 XCATEGORIES= benchmarks XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR=cpipe.berlios X XMAINTAINER= chris@uminac.com XCOMMENT= Benchmarking tool for pipes X XMAN1= cpipe.1 XMANCOMPRESSED= no X XMAKEFILE= makefile XALL_TARGET= XMAKE_ARGS= "prefix=${PREFIX}" X XPLIST_FILES= bin/cpipe X X.include 7302657de21c127990140869f791e12f echo x - cpipe/pkg-descr sed 's/^X//' >cpipe/pkg-descr << '762f8167c82259186246136a21c573f8' XCpipe copies its standard input to its standard output while measuring the time Xit takes to read an input buffer and write an output buffer. Statistics of Xaverage throughput and the total amount of bytes copied are printed to the Xstandard error output. X XWWW: http://developer.berlios.de/projects/cpipe/ 762f8167c82259186246136a21c573f8 echo x - cpipe/distinfo sed 's/^X//' >cpipe/distinfo << '3d63a4e780c83c5661def4f56950e9b2' XSHA256 (cpipe-3.0.2.tar.gz) = 34cabca6bafa96b7d6248ede2cbeca97ee920d02fafc7a7bce21fb7b8ab1aa4e XSIZE (cpipe-3.0.2.tar.gz) = 20482 3d63a4e780c83c5661def4f56950e9b2 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 19:49:50 2012 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 E2A81106566B; Thu, 1 Mar 2012 19:49:50 +0000 (UTC) (envelope-from wxs@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BAC148FC18; Thu, 1 Mar 2012 19:49:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21Jno0D096447; Thu, 1 Mar 2012 19:49:50 GMT (envelope-from wxs@freefall.freebsd.org) Received: (from wxs@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21JnodZ096443; Thu, 1 Mar 2012 19:49:50 GMT (envelope-from wxs) Date: Thu, 1 Mar 2012 19:49:50 GMT Message-Id: <201203011949.q21JnodZ096443@freefall.freebsd.org> To: wxs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wxs@FreeBSD.org From: wxs@FreeBSD.org Cc: Subject: Re: ports/165593: New port: benchmarks/cpipe Benchmarking tool for pipes 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: Thu, 01 Mar 2012 19:49:51 -0000 Synopsis: New port: benchmarks/cpipe Benchmarking tool for pipes Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Thu Mar 1 19:49:50 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165593 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 20:17:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 248B11065675; Thu, 1 Mar 2012 20:17:28 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 15A618FC1B; Thu, 1 Mar 2012 20:17:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21KHRub023567; Thu, 1 Mar 2012 20:17:27 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21KHR2E023562; Thu, 1 Mar 2012 20:17:27 GMT (envelope-from scheidell) Date: Thu, 1 Mar 2012 20:17:27 GMT Message-Id: <201203012017.q21KHR2E023562@freefall.freebsd.org> To: sysadmin@su-casa.com.mx, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/163196: [NEW PORT] www/ocportal 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: Thu, 01 Mar 2012 20:17:28 -0000 Synopsis: [NEW PORT] www/ocportal State-Changed-From-To: feedback->suspended State-Changed-By: scheidell State-Changed-When: Thu Mar 1 20:16:18 UTC 2012 State-Changed-Why: suspended for now till submitter can find a host for distfile submitters email did not make it to GNATS: -------- Original Message -------- Subject: Re: ports/163196: [NEW PORT] www/ocportal Date: Thu, 1 Mar 2012 12:37:36 -0600 From: Reply-To: To: Hello, Company I work for requested I remove this subdomain as it is not part of company interest to host files. So I will need to find another way to host the distfile. I will get back to you once I figure out how. http://www.freebsd.org/cgi/query-pr.cgi?pr=163196 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 20:30:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 69391106566C for ; Thu, 1 Mar 2012 20:30:15 +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 3FA228FC15 for ; Thu, 1 Mar 2012 20:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21KUFvP032306 for ; Thu, 1 Mar 2012 20:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21KUFBQ032302; Thu, 1 Mar 2012 20:30:15 GMT (envelope-from gnats) Date: Thu, 1 Mar 2012 20:30:15 GMT Message-Id: <201203012030.q21KUFBQ032302@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Dan Langille" Cc: Subject: Re: ports/165398: [PATCH] sysutils/bacula-server: upgrade to 5.2.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Langille List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2012 20:30:15 -0000 The following reply was made to PR ports/165398; it has been noted by GNATS. From: "Dan Langille" To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/165398: [PATCH] sysutils/bacula-server: upgrade to 5.2.6 Date: Thu, 1 Mar 2012 15:21:52 -0500 Approved by committer -- Dan Langille -- http://langille.org/ From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 20:30:16 2012 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 0CE1E1065678 for ; Thu, 1 Mar 2012 20:30:16 +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 B620B8FC1F for ; Thu, 1 Mar 2012 20:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21KUFIX032333 for ; Thu, 1 Mar 2012 20:30:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21KUFc2032328; Thu, 1 Mar 2012 20:30:15 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 20:30:15 GMT Resent-Message-Id: <201203012030.q21KUFc2032328@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, "Philip M. Gollucci" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1BAB1065672 for ; Thu, 1 Mar 2012 20:25:21 +0000 (UTC) (envelope-from pgollucci@frieza.p6m7g8.net) Received: from frieza.p6m7g8.net (wsip-174-79-184-239.dc.dc.cox.net [174.79.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id 362238FC14 for ; Thu, 1 Mar 2012 20:25:20 +0000 (UTC) Received: from frieza.p6m7g8.net (localhost [127.0.0.1]) by frieza.p6m7g8.net (8.14.5/8.14.4) with ESMTP id q21KPKWc041842; Thu, 1 Mar 2012 20:25:20 GMT (envelope-from pgollucci@frieza.p6m7g8.net) Received: (from pgollucci@localhost) by frieza.p6m7g8.net (8.14.5/8.14.5/Submit) id q21KPKfD041841; Thu, 1 Mar 2012 20:25:20 GMT (envelope-from pgollucci) Message-Id: <201203012025.q21KPKfD041841@frieza.p6m7g8.net> Date: Thu, 1 Mar 2012 20:25:20 GMT From: "Philip M. Gollucci" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: perl@FreeBSD.org Subject: ports/165594: [exp-run], then [repo-copy], then [NEW PORT] lang/perl5.15: Practical Extraction and Report Language 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: Thu, 01 Mar 2012 20:30:16 -0000 >Number: 165594 >Category: ports >Synopsis: [exp-run], then [repo-copy], then [NEW PORT] lang/perl5.15: Practical Extraction and Report Language >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 20:30:15 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Philip M. Gollucci >Release: FreeBSD 10.0-CURRENT amd64 >Organization: RideCharge Inc / TaxiMagic >Environment: System: FreeBSD frieza.p6m7g8.net 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r232017M: Thu Feb 23 06:34:14 UTC >Description: We'll need an exp-run w/ the shar and a mod to Mk/bsd.perl.mk to change the default perl version to this one (5.15) Once we mark things broken appropriately we can then repo copy lang/perl5.14 -> lang/perl5.15 and update it to this shar. We'll also need to add the requiste conditional to Mk/bsd.perl.mk so it can actually be used when done. >How-To-Repeat: >Fix: --- perl-5.15.8.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # perl5.15 # perl5.15/Makefile.man # perl5.15/files # perl5.15/files/use.perl # perl5.15/files/perl-man.conf # perl5.15/files/patch-Configure # perl5.15/files/patch-MM_Any.pm # perl5.15/files/patch-freebsd.sh # perl5.15/files/perl-after-upgrade # perl5.15/files/patch-INST_PREFIX.t # perl5.15/Makefile # perl5.15/pkg-plist # perl5.15/distinfo # perl5.15/pkg-descr # echo c - perl5.15 mkdir -p perl5.15 > /dev/null 2>&1 echo x - perl5.15/Makefile.man sed 's/^X//' >perl5.15/Makefile.man << '2aa6b54fe1f0187a5ca55845cb4259cf' X# $FreeBSD: ports/lang/perl5.14/Makefile.man,v 1.14 2011/12/19 19:36:46 skv Exp $ XMAN3+= XMAN3+= Archive::Tar.3 XMAN3+= AnyDBM_File.3 XMAN3+= App::Cpan.3 XMAN3+= App::Prove.3 XMAN3+= B.3 XMAN3+= B::Lint.3 XMAN3+= App::Prove::State.3 XMAN3+= Archive::Extract.3 XMAN3+= App::Prove::State::Result.3 XMAN3+= Archive::Tar::File.3 XMAN3+= App::Prove::State::Result::Test.3 XMAN3+= Attribute::Handlers.3 XMAN3+= AutoLoader.3 XMAN3+= AutoSplit.3 XMAN3+= CPAN::Kwalify.3 XMAN3+= B::Showlex.3 XMAN3+= B::Concise.3 XMAN3+= B::Debug.3 XMAN3+= B::Deparse.3 XMAN3+= B::Lint::Debug.3 XMAN3+= B::Terse.3 XMAN3+= B::Xref.3 XMAN3+= Benchmark.3 XMAN3+= CGI.3 XMAN3+= CGI::Apache.3 XMAN3+= CGI::Carp.3 XMAN3+= CGI::Cookie.3 XMAN3+= CGI::Fast.3 XMAN3+= CGI::Pretty.3 XMAN3+= CGI::Push.3 XMAN3+= CGI::Switch.3 XMAN3+= CGI::Util.3 XMAN3+= CORE.3 XMAN3+= CPAN.3 XMAN3+= CPAN::Debug.3 XMAN3+= CPAN::API::HOWTO.3 XMAN3+= CPAN::Distroprefs.3 XMAN3+= CPAN::FirstTime.3 XMAN3+= CPAN::HandleConfig.3 XMAN3+= CPAN::Meta.3 XMAN3+= CPAN::Meta::Requirements.3 XMAN3+= CPAN::Meta::Converter.3 XMAN3+= CPAN::Meta::Feature.3 XMAN3+= CPAN::Meta::History.3 XMAN3+= CPAN::Meta::Prereqs.3 XMAN3+= CPAN::Meta::Validator.3 XMAN3+= CPAN::Meta::Spec.3 XMAN3+= CPANPLUS::Backend::RV.3 XMAN3+= CPAN::Meta::YAML.3 XMAN3+= CPAN::Mirrors.3 XMAN3+= CPAN::Nox.3 XMAN3+= CPAN::Queue.3 XMAN3+= CPAN::Tarzip.3 XMAN3+= CPAN::Version.3 XMAN3+= CPANPLUS.3 XMAN3+= CPANPLUS::Backend.3 XMAN3+= CPANPLUS::Dist::Base.3 XMAN3+= CPANPLUS::Config.3 XMAN3+= CPANPLUS::Configure.3 XMAN3+= CPANPLUS::Dist.3 XMAN3+= CPANPLUS::Internals::Extract.3 XMAN3+= CPANPLUS::Dist::Autobundle.3 XMAN3+= CPANPLUS::Dist::Build.3 XMAN3+= CPANPLUS::Dist::MM.3 XMAN3+= CPANPLUS::Dist::Build::Constants.3 XMAN3+= CPANPLUS::Dist::Sample.3 XMAN3+= CPANPLUS::Error.3 XMAN3+= CPANPLUS::FAQ.3 XMAN3+= CPANPLUS::Hacking.3 XMAN3+= CPANPLUS::Internals.3 XMAN3+= CPANPLUS::Internals::Fetch.3 XMAN3+= CPANPLUS::Internals::Report.3 XMAN3+= CPANPLUS::Module.3 XMAN3+= Carp.3 XMAN3+= Class::Struct.3 XMAN3+= CPANPLUS::Internals::Search.3 XMAN3+= CPANPLUS::Internals::Source.3 XMAN3+= CPANPLUS::Internals::Source::Memory.3 XMAN3+= CPANPLUS::Internals::Source::SQLite.3 XMAN3+= CPANPLUS::Internals::Utils.3 XMAN3+= CPANPLUS::Module::Author.3 XMAN3+= CPANPLUS::Module::Checksums.3 XMAN3+= CPANPLUS::Module::Author::Fake.3 XMAN3+= CPANPLUS::Module::Fake.3 XMAN3+= CPANPLUS::Selfupdate.3 XMAN3+= CPANPLUS::Shell.3 XMAN3+= CPANPLUS::Shell::Classic.3 XMAN3+= CPANPLUS::Shell::Default.3 XMAN3+= CPANPLUS::Shell::Default::Plugins::CustomSource.3 XMAN3+= CPANPLUS::Shell::Default::Plugins::HOWTO.3 XMAN3+= CPANPLUS::Shell::Default::Plugins::Remote.3 XMAN3+= CPANPLUS::Shell::Default::Plugins::Source.3 XMAN3+= Compress::Raw::Bzip2.3 XMAN3+= Compress::Raw::Zlib.3 XMAN3+= Compress::Zlib.3 XMAN3+= Config.3 XMAN3+= Cwd.3 XMAN3+= Config::Extensions.3 XMAN3+= DB.3 XMAN3+= DBM_Filter.3 XMAN3+= Encode::CJKConstants.3 XMAN3+= DBM_Filter::compress.3 XMAN3+= DBM_Filter::encode.3 XMAN3+= DBM_Filter::int32.3 XMAN3+= DBM_Filter::null.3 XMAN3+= DBM_Filter::utf8.3 XMAN3+= DB_File.3 XMAN3+= Data::Dumper.3 XMAN3+= Devel::InnerPackage.3 XMAN3+= Devel::PPPort.3 XMAN3+= Devel::Peek.3 XMAN3+= Devel::SelfStubber.3 XMAN3+= Digest.3 XMAN3+= Digest::MD5.3 XMAN3+= Digest::SHA.3 XMAN3+= Digest::base.3 XMAN3+= Digest::file.3 XMAN3+= DirHandle.3 XMAN3+= Dumpvalue.3 XMAN3+= DynaLoader.3 XMAN3+= Encode.3 XMAN3+= Encode::Alias.3 XMAN3+= Encode::Byte.3 XMAN3+= Encode::Guess.3 XMAN3+= Encode::CN.3 XMAN3+= Encode::CN::HZ.3 XMAN3+= Encode::Config.3 XMAN3+= Encode::EBCDIC.3 XMAN3+= Encode::Encoder.3 XMAN3+= Encode::Encoding.3 XMAN3+= Encode::GSM0338.3 XMAN3+= Encode::JP.3 XMAN3+= Encode::JP::H2Z.3 XMAN3+= Encode::JP::JIS7.3 XMAN3+= Encode::KR.3 XMAN3+= Encode::KR::2022_KR.3 XMAN3+= Encode::MIME::Header.3 XMAN3+= Encode::MIME::Name.3 XMAN3+= Encode::PerlIO.3 XMAN3+= Encode::Supported.3 XMAN3+= Encode::Symbol.3 XMAN3+= Env.3 XMAN3+= Exporter.3 XMAN3+= Encode::TW.3 XMAN3+= Encode::Unicode.3 XMAN3+= Encode::Unicode::UTF7.3 XMAN3+= English.3 XMAN3+= Errno.3 XMAN3+= Exporter::Heavy.3 XMAN3+= ExtUtils::CBuilder.3 XMAN3+= ExtUtils::CBuilder::Platform::Windows.3 XMAN3+= ExtUtils::Command.3 XMAN3+= ExtUtils::Command::MM.3 XMAN3+= ExtUtils::Constant.3 XMAN3+= ExtUtils::Constant::Base.3 XMAN3+= ExtUtils::Constant::Utils.3 XMAN3+= ExtUtils::Constant::XS.3 XMAN3+= ExtUtils::Embed.3 XMAN3+= ExtUtils::MM.3 XMAN3+= ExtUtils::Mkbootstrap.3 XMAN3+= ExtUtils::Install.3 XMAN3+= ExtUtils::Installed.3 XMAN3+= ExtUtils::Liblist.3 XMAN3+= ExtUtils::MM_AIX.3 XMAN3+= ExtUtils::MM_Any.3 XMAN3+= ExtUtils::MM_BeOS.3 XMAN3+= ExtUtils::MM_Cygwin.3 XMAN3+= ExtUtils::MM_DOS.3 XMAN3+= ExtUtils::MM_Darwin.3 XMAN3+= ExtUtils::MM_MacOS.3 XMAN3+= ExtUtils::MM_NW5.3 XMAN3+= ExtUtils::MM_OS2.3 XMAN3+= ExtUtils::MM_QNX.3 XMAN3+= ExtUtils::MM_UWIN.3 XMAN3+= ExtUtils::MM_Unix.3 XMAN3+= ExtUtils::MM_VMS.3 XMAN3+= ExtUtils::MM_VOS.3 XMAN3+= FileCache.3 XMAN3+= ExtUtils::MM_Win32.3 XMAN3+= ExtUtils::MM_Win95.3 XMAN3+= ExtUtils::MY.3 XMAN3+= ExtUtils::MakeMaker.3 XMAN3+= ExtUtils::MakeMaker::Config.3 XMAN3+= ExtUtils::MakeMaker::FAQ.3 XMAN3+= ExtUtils::Manifest.3 XMAN3+= ExtUtils::MakeMaker::Tutorial.3 XMAN3+= ExtUtils::Miniperl.3 XMAN3+= ExtUtils::Mksymlists.3 XMAN3+= ExtUtils::Packlist.3 XMAN3+= ExtUtils::ParseXS.3 XMAN3+= ExtUtils::ParseXS::Constants.3 XMAN3+= ExtUtils::Typemaps.3 XMAN3+= Fatal.3 XMAN3+= Fcntl.3 XMAN3+= NEXT.3 XMAN3+= ExtUtils::ParseXS::Utilities.3 XMAN3+= ExtUtils::Typemaps::Cmd.3 XMAN3+= ExtUtils::Typemaps::InputMap.3 XMAN3+= ExtUtils::Typemaps::OutputMap.3 XMAN3+= ExtUtils::Typemaps::Type.3 XMAN3+= ExtUtils::XSSymSet.3 XMAN3+= ExtUtils::testlib.3 XMAN3+= File::Basename.3 XMAN3+= File::CheckTree.3 XMAN3+= File::Compare.3 XMAN3+= File::Copy.3 XMAN3+= File::DosGlob.3 XMAN3+= File::Fetch.3 XMAN3+= File::Find.3 XMAN3+= File::Glob.3 XMAN3+= File::Spec::Functions.3 XMAN3+= File::GlobMapper.3 XMAN3+= File::Path.3 XMAN3+= File::Spec.3 XMAN3+= File::Spec::Cygwin.3 XMAN3+= File::Spec::Epoc.3 XMAN3+= File::Spec::Mac.3 XMAN3+= File::Spec::OS2.3 XMAN3+= File::Spec::Unix.3 XMAN3+= File::Spec::VMS.3 XMAN3+= File::Spec::Win32.3 XMAN3+= File::Temp.3 XMAN3+= File::stat.3 XMAN3+= FileHandle.3 XMAN3+= Filter::Simple.3 XMAN3+= Filter::Util::Call.3 XMAN3+= FindBin.3 XMAN3+= Getopt::Long.3 XMAN3+= Getopt::Std.3 XMAN3+= HTTP::Tiny.3 XMAN3+= IO.3 XMAN3+= IO::Seekable.3 XMAN3+= Hash::Util.3 XMAN3+= Hash::Util::FieldHash.3 XMAN3+= I18N::Collate.3 XMAN3+= I18N::LangTags.3 XMAN3+= I18N::LangTags::Detect.3 XMAN3+= I18N::LangTags::List.3 XMAN3+= I18N::Langinfo.3 XMAN3+= IO::Compress::Base.3 XMAN3+= IO::Compress::Bzip2.3 XMAN3+= IO::Compress::Deflate.3 XMAN3+= IO::Compress::FAQ.3 XMAN3+= IO::Compress::Gzip.3 XMAN3+= IO::Dir.3 XMAN3+= IO::Compress::RawDeflate.3 XMAN3+= IO::Compress::Zip.3 XMAN3+= IO::File.3 XMAN3+= IO::Handle.3 XMAN3+= IO::Pipe.3 XMAN3+= IO::Poll.3 XMAN3+= IO::Select.3 XMAN3+= IO::Socket.3 XMAN3+= IO::Socket::INET.3 XMAN3+= IO::Socket::UNIX.3 XMAN3+= IO::Uncompress::AnyInflate.3 XMAN3+= IO::Uncompress::AnyUncompress.3 XMAN3+= IO::Uncompress::Base.3 XMAN3+= IO::Uncompress::Bunzip2.3 XMAN3+= IO::Uncompress::Gunzip.3 XMAN3+= IO::Uncompress::Inflate.3 XMAN3+= IO::Uncompress::RawInflate.3 XMAN3+= IO::Uncompress::Unzip.3 XMAN3+= IO::Zlib.3 XMAN3+= IPC::Cmd.3 XMAN3+= IPC::Msg.3 XMAN3+= Locale::Codes::Constants.3 XMAN3+= IPC::Open2.3 XMAN3+= IPC::Open3.3 XMAN3+= IPC::Semaphore.3 XMAN3+= IPC::SharedMem.3 XMAN3+= IPC::SysV.3 XMAN3+= JSON::PP.3 XMAN3+= JSON::PP::Boolean.3 XMAN3+= List::Util.3 XMAN3+= List::Util::XS.3 XMAN3+= Locale::Codes.3 XMAN3+= Locale::Codes::API.3 XMAN3+= Locale::Codes::Changes.3 XMAN3+= Locale::Codes::Country.3 XMAN3+= Locale::Codes::Country_Codes.3 XMAN3+= Locale::Codes::Country_Retired.3 XMAN3+= Locale::Codes::Currency.3 XMAN3+= Locale::Codes::Currency_Codes.3 XMAN3+= Locale::Codes::Currency_Retired.3 XMAN3+= Locale::Codes::LangExt.3 XMAN3+= Locale::Codes::LangExt_Codes.3 XMAN3+= Locale::Codes::LangExt_Retired.3 XMAN3+= Locale::Codes::LangFam.3 XMAN3+= Locale::Codes::LangFam_Codes.3 XMAN3+= Locale::Codes::LangFam_Retired.3 XMAN3+= Locale::Codes::LangVar.3 XMAN3+= Locale::Codes::LangVar_Codes.3 XMAN3+= Locale::Codes::LangVar_Retired.3 XMAN3+= Locale::Codes::Language.3 XMAN3+= Locale::Codes::Script.3 XMAN3+= Locale::Codes::Script_Retired.3 XMAN3+= Locale::Codes::Language_Codes.3 XMAN3+= Locale::Codes::Language_Retired.3 XMAN3+= Locale::Codes::Script_Codes.3 XMAN3+= Locale::Country.3 XMAN3+= Locale::Currency.3 XMAN3+= Locale::Language.3 XMAN3+= Locale::Maketext.3 XMAN3+= Locale::Maketext::Cookbook.3 XMAN3+= Locale::Maketext::Guts.3 XMAN3+= Locale::Maketext::GutsLoader.3 XMAN3+= Locale::Maketext::Simple.3 XMAN3+= Locale::Maketext::TPJ13.3 XMAN3+= Locale::Script.3 XMAN3+= Log::Message.3 XMAN3+= Module::Build::Authoring.3 XMAN3+= Log::Message::Config.3 XMAN3+= Log::Message::Handlers.3 XMAN3+= Log::Message::Item.3 XMAN3+= Log::Message::Simple.3 XMAN3+= MIME::Base64.3 XMAN3+= MIME::QuotedPrint.3 XMAN3+= Math::BigFloat.3 XMAN3+= Math::BigInt.3 XMAN3+= Math::BigInt::Calc.3 XMAN3+= Math::BigInt::CalcEmu.3 XMAN3+= Math::BigInt::FastCalc.3 XMAN3+= Math::BigRat.3 XMAN3+= Math::Complex.3 XMAN3+= Math::Trig.3 XMAN3+= Memoize.3 XMAN3+= Memoize::AnyDBM_File.3 XMAN3+= Memoize::Expire.3 XMAN3+= Module::Build.3 XMAN3+= Memoize::ExpireFile.3 XMAN3+= Memoize::ExpireTest.3 XMAN3+= Memoize::NDBM_File.3 XMAN3+= Memoize::SDBM_File.3 XMAN3+= Memoize::Storable.3 XMAN3+= Module::Build::API.3 XMAN3+= Module::Build::Base.3 XMAN3+= Module::Build::Bundling.3 XMAN3+= Module::Build::Compat.3 XMAN3+= Module::Build::ConfigData.3 XMAN3+= Module::Build::Cookbook.3 XMAN3+= Module::Build::ModuleInfo.3 XMAN3+= Module::Build::Notes.3 XMAN3+= Module::Build::PPMMaker.3 XMAN3+= Module::Build::Platform::cygwin.3 XMAN3+= Module::Build::Platform::Amiga.3 XMAN3+= Module::Build::Platform::Default.3 XMAN3+= Module::Build::Platform::EBCDIC.3 XMAN3+= Module::Build::Platform::MPEiX.3 XMAN3+= Module::Build::Platform::MacOS.3 XMAN3+= Module::Build::Platform::RiscOS.3 XMAN3+= Module::Build::Platform::Unix.3 XMAN3+= Module::Build::Platform::VMS.3 XMAN3+= Module::Build::Platform::VOS.3 XMAN3+= Module::Build::Platform::Windows.3 XMAN3+= Module::Build::Platform::aix.3 XMAN3+= Net::hostent.3 XMAN3+= NDBM_File.3 XMAN3+= Module::Build::Platform::darwin.3 XMAN3+= Module::Build::Platform::os2.3 XMAN3+= Module::Build::Version.3 XMAN3+= Module::Build::YAML.3 XMAN3+= Module::CoreList.3 XMAN3+= Module::Load.3 XMAN3+= Module::Load::Conditional.3 XMAN3+= Module::Loaded.3 XMAN3+= Module::Metadata.3 XMAN3+= Module::Pluggable.3 XMAN3+= Module::Pluggable::Object.3 XMAN3+= Net::Cmd.3 XMAN3+= Net::Config.3 XMAN3+= Net::Domain.3 XMAN3+= Net::FTP.3 XMAN3+= Net::NNTP.3 XMAN3+= Net::Netrc.3 XMAN3+= Net::POP3.3 XMAN3+= Net::Ping.3 XMAN3+= Net::SMTP.3 XMAN3+= Net::Time.3 XMAN3+= Net::libnetFAQ.3 XMAN3+= Net::netent.3 XMAN3+= O.3 XMAN3+= Net::protoent.3 XMAN3+= Net::servent.3 XMAN3+= Object::Accessor.3 XMAN3+= Opcode.3 XMAN3+= POSIX.3 XMAN3+= Package::Constants.3 XMAN3+= Params::Check.3 XMAN3+= Parse::CPAN::Meta.3 XMAN3+= Perl::OSType.3 XMAN3+= PerlIO.3 XMAN3+= PerlIO::encoding.3 XMAN3+= PerlIO::mmap.3 XMAN3+= PerlIO::scalar.3 XMAN3+= PerlIO::via.3 XMAN3+= Pod::Perldoc.3 XMAN3+= Pod::Find.3 XMAN3+= PerlIO::via::QuotedPrint.3 XMAN3+= Pod::Checker.3 XMAN3+= Pod::Escapes.3 XMAN3+= Pod::Html.3 XMAN3+= Pod::LaTeX.3 XMAN3+= Pod::InputObjects.3 XMAN3+= Pod::Man.3 XMAN3+= Pod::Parser.3 XMAN3+= Pod::ParseLink.3 XMAN3+= Pod::ParseUtils.3 XMAN3+= Pod::Perldoc::BaseTo.3 XMAN3+= Pod::Perldoc::GetOptsOO.3 XMAN3+= Pod::Perldoc::ToANSI.3 XMAN3+= Pod::Perldoc::ToChecker.3 XMAN3+= Pod::Perldoc::ToMan.3 XMAN3+= Pod::Simple::HTML.3 XMAN3+= Pod::Perldoc::ToNroff.3 XMAN3+= Pod::PlainText.3 XMAN3+= Pod::Perldoc::ToPod.3 XMAN3+= Pod::Perldoc::ToRtf.3 XMAN3+= Pod::Perldoc::ToTerm.3 XMAN3+= Pod::Perldoc::ToText.3 XMAN3+= Pod::Perldoc::ToTk.3 XMAN3+= Pod::Perldoc::ToXml.3 XMAN3+= Pod::Select.3 XMAN3+= Pod::Simple.3 XMAN3+= Pod::Simple::Checker.3 XMAN3+= Pod::Simple::Debug.3 XMAN3+= Pod::Simple::DumpAsText.3 XMAN3+= Pod::Simple::DumpAsXML.3 XMAN3+= Pod::Simple::HTMLBatch.3 XMAN3+= Pod::Simple::LinkSection.3 XMAN3+= Pod::Simple::RTF.3 XMAN3+= Pod::Simple::Subclassing.3 XMAN3+= Pod::Simple::Methody.3 XMAN3+= Pod::Simple::PullParser.3 XMAN3+= Pod::Simple::PullParserEndToken.3 XMAN3+= Pod::Simple::PullParserStartToken.3 XMAN3+= Pod::Simple::PullParserTextToken.3 XMAN3+= Pod::Simple::PullParserToken.3 XMAN3+= Pod::Simple::Search.3 XMAN3+= Pod::Simple::SimpleTree.3 XMAN3+= Pod::Simple::Text.3 XMAN3+= Pod::Simple::TextContent.3 XMAN3+= Pod::Simple::XHTML.3 XMAN3+= Pod::Simple::XMLOutStream.3 XMAN3+= Pod::Text.3 XMAN3+= Pod::Usage.3 XMAN3+= Term::UI::History.3 XMAN3+= Pod::Text::Color.3 XMAN3+= Pod::Text::Overstrike.3 XMAN3+= Pod::Text::Termcap.3 XMAN3+= SDBM_File.3 XMAN3+= Safe.3 XMAN3+= Scalar::Util.3 XMAN3+= Search::Dict.3 XMAN3+= SelectSaver.3 XMAN3+= SelfLoader.3 XMAN3+= Socket.3 XMAN3+= Storable.3 XMAN3+= Symbol.3 XMAN3+= Sys::Hostname.3 XMAN3+= Sys::Syslog.3 XMAN3+= TAP::Base.3 XMAN3+= TAP::Formatter::Base.3 XMAN3+= TAP::Formatter::Color.3 XMAN3+= TAP::Formatter::Console.3 XMAN3+= TAP::Harness.3 XMAN3+= TAP::Object.3 XMAN3+= TAP::Formatter::Console::ParallelSession.3 XMAN3+= TAP::Formatter::Console::Session.3 XMAN3+= TAP::Formatter::File.3 XMAN3+= TAP::Formatter::File::Session.3 XMAN3+= TAP::Formatter::Session.3 XMAN3+= TAP::Harness::Beyond.3 XMAN3+= TAP::Parser.3 XMAN3+= TAP::Parser::Aggregator.3 XMAN3+= TAP::Parser::Grammar.3 XMAN3+= TAP::Parser::Iterator.3 XMAN3+= TAP::Parser::Iterator::Array.3 XMAN3+= TAP::Parser::Iterator::Process.3 XMAN3+= TAP::Parser::Result.3 XMAN3+= TAP::Parser::Result::Plan.3 XMAN3+= TAP::Parser::Iterator::Stream.3 XMAN3+= TAP::Parser::IteratorFactory.3 XMAN3+= TAP::Parser::Multiplexer.3 XMAN3+= TAP::Parser::Result::Bailout.3 XMAN3+= TAP::Parser::Result::Comment.3 XMAN3+= TAP::Parser::Result::Pragma.3 XMAN3+= TAP::Parser::Result::Test.3 XMAN3+= TAP::Parser::Result::Unknown.3 XMAN3+= TAP::Parser::Result::Version.3 XMAN3+= TAP::Parser::Result::YAML.3 XMAN3+= TAP::Parser::ResultFactory.3 XMAN3+= TAP::Parser::Scheduler.3 XMAN3+= Term::ANSIColor.3 XMAN3+= Term::Cap.3 XMAN3+= TAP::Parser::Scheduler::Job.3 XMAN3+= TAP::Parser::Scheduler::Spinner.3 XMAN3+= TAP::Parser::Source.3 XMAN3+= TAP::Parser::SourceHandler.3 XMAN3+= TAP::Parser::SourceHandler::File.3 XMAN3+= TAP::Parser::SourceHandler::Executable.3 XMAN3+= TAP::Parser::SourceHandler::Handle.3 XMAN3+= TAP::Parser::SourceHandler::Perl.3 XMAN3+= TAP::Parser::SourceHandler::RawTAP.3 XMAN3+= TAP::Parser::Utils.3 XMAN3+= TAP::Parser::YAMLish::Reader.3 XMAN3+= TAP::Parser::YAMLish::Writer.3 XMAN3+= Term::Complete.3 XMAN3+= Term::ReadLine.3 XMAN3+= Term::UI.3 XMAN3+= Test.3 XMAN3+= Test::Builder.3 XMAN3+= Test::Builder::Module.3 XMAN3+= Test::Builder::Tester.3 XMAN3+= Test::Builder::Tester::Color.3 XMAN3+= Test::Harness.3 XMAN3+= Test::More.3 XMAN3+= Test::Simple.3 XMAN3+= Test::Tutorial.3 XMAN3+= Text::Abbrev.3 XMAN3+= Text::Balanced.3 XMAN3+= Tie::File.3 XMAN3+= Text::ParseWords.3 XMAN3+= Text::Soundex.3 XMAN3+= Text::Tabs.3 XMAN3+= Text::Wrap.3 XMAN3+= Thread.3 XMAN3+= Thread::Queue.3 XMAN3+= Thread::Semaphore.3 XMAN3+= Tie::Array.3 XMAN3+= Tie::Handle.3 XMAN3+= Tie::Hash.3 XMAN3+= Tie::Hash::NamedCapture.3 XMAN3+= Tie::Memoize.3 XMAN3+= Tie::RefHash.3 XMAN3+= Tie::Scalar.3 XMAN3+= Tie::StdHandle.3 XMAN3+= Tie::SubstrHash.3 XMAN3+= Time::HiRes.3 XMAN3+= Time::Local.3 XMAN3+= Time::Piece.3 XMAN3+= Time::Seconds.3 XMAN3+= Time::gmtime.3 XMAN3+= Time::localtime.3 XMAN3+= Time::tm.3 XMAN3+= UNIVERSAL.3 XMAN3+= Unicode::Collate::CJK::GB2312.3 XMAN3+= Unicode::Collate.3 XMAN3+= Unicode::Collate::CJK::Big5.3 XMAN3+= Unicode::Collate::CJK::JISX0208.3 XMAN3+= Unicode::Collate::CJK::Korean.3 XMAN3+= Unicode::Collate::CJK::Pinyin.3 XMAN3+= Unicode::Collate::CJK::Stroke.3 XMAN3+= Unicode::Collate::Locale.3 XMAN3+= Unicode::Normalize.3 XMAN3+= Unicode::UCD.3 XMAN3+= User::grent.3 XMAN3+= User::pwent.3 XMAN3+= Version::Requirements.3 XMAN3+= XSLoader.3 XMAN3+= arybase.3 XMAN3+= attributes.3 XMAN3+= autodie.3 XMAN3+= autodie::exception.3 XMAN3+= autouse.3 XMAN3+= autodie::exception::system.3 XMAN3+= autodie::hints.3 XMAN3+= base.3 XMAN3+= bigint.3 XMAN3+= bignum.3 XMAN3+= bigrat.3 XMAN3+= blib.3 XMAN3+= bytes.3 XMAN3+= charnames.3 XMAN3+= constant.3 XMAN3+= deprecate.3 XMAN3+= diagnostics.3 XMAN3+= encoding.3 XMAN3+= feature.3 XMAN3+= encoding::warnings.3 XMAN3+= fields.3 XMAN3+= filetest.3 XMAN3+= if.3 XMAN3+= inc::latest.3 XMAN3+= integer.3 XMAN3+= less.3 XMAN3+= lib.3 XMAN3+= locale.3 XMAN3+= mro.3 XMAN3+= open.3 XMAN3+= ops.3 XMAN3+= overload.3 XMAN3+= overloading.3 XMAN3+= parent.3 XMAN3+= re.3 XMAN3+= sigtrap.3 XMAN3+= sort.3 XMAN3+= strict.3 XMAN3+= subs.3 XMAN3+= threads.3 XMAN3+= utf8.3 XMAN3+= threads::shared.3 XMAN3+= vars.3 XMAN3+= version.3 XMAN3+= vmsish.3 XMAN3+= version::Internals.3 XMAN3+= warnings.3 XMAN3+= warnings::register.3 XMAN1+= a2p.1 XMAN1+= c2ph.1 XMAN1+= config_data.1 XMAN1+= corelist.1 XMAN1+= cpan.1 XMAN1+= cpan2dist.1 XMAN1+= cpanp.1 XMAN1+= enc2xs.1 XMAN1+= find2perl.1 XMAN1+= h2ph.1 XMAN1+= h2xs.1 XMAN1+= instmodsh.1 XMAN1+= json_pp.1 XMAN1+= libnetcfg.1 XMAN1+= perl-after-upgrade.1 XMAN1+= perl.1 XMAN1+= perl5004delta.1 XMAN1+= perl5005delta.1 XMAN1+= perl5100delta.1 XMAN1+= perl5101delta.1 XMAN1+= perl5120delta.1 XMAN1+= perl5121delta.1 XMAN1+= perl5122delta.1 XMAN1+= perl5123delta.1 XMAN1+= perl5124delta.1 XMAN1+= perl5140delta.1 XMAN1+= perl5141delta.1 XMAN1+= perl5142delta.1 XMAN1+= perl5150delta.1 XMAN1+= perl5151delta.1 XMAN1+= perl5152delta.1 XMAN1+= perl5153delta.1 XMAN1+= perl5154delta.1 XMAN1+= perl5155delta.1 XMAN1+= perl5156delta.1 XMAN1+= perl5157delta.1 XMAN1+= perl5158delta.1 XMAN1+= perl561delta.1 XMAN1+= perl56delta.1 XMAN1+= perl581delta.1 XMAN1+= perl582delta.1 XMAN1+= perl583delta.1 XMAN1+= perl584delta.1 XMAN1+= perl585delta.1 XMAN1+= perl586delta.1 XMAN1+= perl587delta.1 XMAN1+= perl588delta.1 XMAN1+= perl589delta.1 XMAN1+= perl58delta.1 XMAN1+= perlaix.1 XMAN1+= perlamiga.1 XMAN1+= perlapi.1 XMAN1+= perlapio.1 XMAN1+= perlartistic.1 XMAN1+= perlbeos.1 XMAN1+= perlbook.1 XMAN1+= perlboot.1 XMAN1+= perlbot.1 XMAN1+= perlbs2000.1 XMAN1+= perlbug.1 XMAN1+= perlcall.1 XMAN1+= perlce.1 XMAN1+= perlcheat.1 XMAN1+= perlclib.1 XMAN1+= perlcn.1 XMAN1+= perlcommunity.1 XMAN1+= perlcygwin.1 XMAN1+= perldata.1 XMAN1+= perldbmfilter.1 XMAN1+= perldebguts.1 XMAN1+= perldebtut.1 XMAN1+= perldebug.1 XMAN1+= perldelta.1 XMAN1+= perldgux.1 XMAN1+= perldiag.1 XMAN1+= perldoc.1 XMAN1+= perldos.1 XMAN1+= perldsc.1 XMAN1+= perldtrace.1 XMAN1+= perlebcdic.1 XMAN1+= perlembed.1 XMAN1+= perlepoc.1 XMAN1+= perlexperiment.1 XMAN1+= perlfaq.1 XMAN1+= perlfaq1.1 XMAN1+= perlfaq2.1 XMAN1+= perlfaq3.1 XMAN1+= perlfaq4.1 XMAN1+= perlfaq5.1 XMAN1+= perlfaq6.1 XMAN1+= perlfaq7.1 XMAN1+= perlfaq8.1 XMAN1+= perlfaq9.1 XMAN1+= perlfilter.1 XMAN1+= perlfork.1 XMAN1+= perlform.1 XMAN1+= perlfreebsd.1 XMAN1+= perlfunc.1 XMAN1+= perlgit.1 XMAN1+= perlglossary.1 XMAN1+= perlgpl.1 XMAN1+= perlguts.1 XMAN1+= perlhack.1 XMAN1+= perlhacktips.1 XMAN1+= perlhacktut.1 XMAN1+= perlhaiku.1 XMAN1+= perlhist.1 XMAN1+= perlhpux.1 XMAN1+= perlhurd.1 XMAN1+= perlintern.1 XMAN1+= perlinterp.1 XMAN1+= perlintro.1 XMAN1+= perliol.1 XMAN1+= perlipc.1 XMAN1+= perlirix.1 XMAN1+= perlivp.1 XMAN1+= perljp.1 XMAN1+= perlko.1 XMAN1+= perllexwarn.1 XMAN1+= perllinux.1 XMAN1+= perllocale.1 XMAN1+= perllol.1 XMAN1+= perlmacos.1 XMAN1+= perlmacosx.1 XMAN1+= perlmod.1 XMAN1+= perlmodinstall.1 XMAN1+= perlmodlib.1 XMAN1+= perlmodstyle.1 XMAN1+= perlmpeix.1 XMAN1+= perlmroapi.1 XMAN1+= perlnetware.1 XMAN1+= perlnewmod.1 XMAN1+= perlnumber.1 XMAN1+= perlobj.1 XMAN1+= perlootut.1 XMAN1+= perlop.1 XMAN1+= perlopenbsd.1 XMAN1+= perlopentut.1 XMAN1+= perlos2.1 XMAN1+= perlos390.1 XMAN1+= perlos400.1 XMAN1+= perlpacktut.1 XMAN1+= perlperf.1 XMAN1+= perlplan9.1 XMAN1+= perlpod.1 XMAN1+= perlpodspec.1 XMAN1+= perlpodstyle.1 XMAN1+= perlpolicy.1 XMAN1+= perlport.1 XMAN1+= perlpragma.1 XMAN1+= perlqnx.1 XMAN1+= perlre.1 XMAN1+= perlreapi.1 XMAN1+= perlrebackslash.1 XMAN1+= perlrecharclass.1 XMAN1+= perlref.1 XMAN1+= perlreftut.1 XMAN1+= perlreguts.1 XMAN1+= perlrequick.1 XMAN1+= perlreref.1 XMAN1+= perlretut.1 XMAN1+= perlriscos.1 XMAN1+= perlrun.1 XMAN1+= perlsec.1 XMAN1+= perlsolaris.1 XMAN1+= perlsource.1 XMAN1+= perlstyle.1 XMAN1+= perlsub.1 XMAN1+= perlsymbian.1 XMAN1+= perlsyn.1 XMAN1+= perlthanks.1 XMAN1+= perlthrtut.1 XMAN1+= perltie.1 XMAN1+= perltoc.1 XMAN1+= perltodo.1 XMAN1+= perltooc.1 XMAN1+= perltoot.1 XMAN1+= perltrap.1 XMAN1+= perltru64.1 XMAN1+= perltw.1 XMAN1+= perlunicode.1 XMAN1+= perlunifaq.1 XMAN1+= perluniintro.1 XMAN1+= perluniprops.1 XMAN1+= perlunitut.1 XMAN1+= perlutil.1 XMAN1+= perluts.1 XMAN1+= perlvar.1 XMAN1+= perlvmesa.1 XMAN1+= perlvms.1 XMAN1+= perlvos.1 XMAN1+= perlwin32.1 XMAN1+= perlxs.1 XMAN1+= perlxstut.1 XMAN1+= perlxstypemap.1 XMAN1+= piconv.1 XMAN1+= pl2pm.1 XMAN1+= pod2html.1 XMAN1+= pod2latex.1 XMAN1+= pod2man.1 XMAN1+= pod2text.1 XMAN1+= pod2usage.1 XMAN1+= podchecker.1 XMAN1+= podselect.1 XMAN1+= prove.1 XMAN1+= psed.1 XMAN1+= pstruct.1 XMAN1+= ptar.1 XMAN1+= ptardiff.1 XMAN1+= ptargrep.1 XMAN1+= s2p.1 XMAN1+= shasum.1 XMAN1+= splain.1 XMAN1+= xsubpp.1 XMAN1+= zipdetails.1 2aa6b54fe1f0187a5ca55845cb4259cf echo c - perl5.15/files mkdir -p perl5.15/files > /dev/null 2>&1 echo x - perl5.15/files/use.perl sed 's/^X//' >perl5.15/files/use.perl << 'ea796b2b8bfcc95ab53b2ff3e8c2a502' X#!/bin/sh X X# $FreeBSD: ports/lang/perl5.14/files/use.perl,v 1.18 2010/12/06 09:56:58 garga Exp $ X Xthis=`echo -n $0 | /usr/bin/sed -e 's!^.*/!!'` XPERL_VERSION="%%PERL_VERSION%%" XMAKE_CONF=%%MAKE_CONF%% Xbanner=`date +"%F %T"` Xbanner="# added by use.perl $banner" Xif [ -z "${OSVERSION}" ]; then X if [ -f /sbin/sysctl -a -x /sbin/sysctl ] ; then X osreldate=`/sbin/sysctl -n kern.osreldate` X else X osreldate=`/usr/sbin/sysctl -n kern.osreldate` X fi Xelse X osreldate=${OSVERSION} Xfi X Xif [ "$2" = "POST-INSTALL" ] ; then X need_remove_links=%%LINK_USRBIN%% X need_create_links=%%LINK_USRBIN%% X need_cleanup_make_conf=yes X need_spam_make_conf=yes X need_post_install=yes X if [ "${osreldate}" -lt 900022 ]; then X need_cleanup_manpath=yes X need_spam_manpath=yes X fi Xelif [ "$2" = "POST-DEINSTALL" ] ; then X need_remove_links=%%LINK_USRBIN%% X need_cleanup_make_conf=yes X if [ "${osreldate}" -lt 900022 ]; then X need_cleanup_manpath=yes X fi Xelse X exit 0; Xfi X Xspecial_link_list=" X perl X perl5" X Xdo_remove_links() X{ X echo "Removing stale symlinks from /usr/bin..." X for binary in $special_link_list X do X if [ -L "/usr/bin/$binary" ] ; then X echo " Removing /usr/bin/$binary" X /bin/rm -f "/usr/bin/$binary" X else X echo " Skipping /usr/bin/$binary" X fi X done X bins=`/bin/ls /usr/bin/*perl*5.* ${PKG_PREFIX}/bin/*perl*5.* 2>/dev/null` X for binary in $bins X do X if [ -L "$binary" ] ; then X echo " Removing $binary installed by an older perl port" X /bin/rm -f "$binary" X fi X done X echo "Done." X} X Xdo_create_links() X{ X echo "Creating various symlinks in /usr/bin..." X for binary in $special_link_list X do X if [ -f "/usr/bin/$binary" ] ; then X echo " Backing up /usr/bin/$binary as /usr/bin/$binary.freebsd" X /bin/mv -f "/usr/bin/$binary" "/usr/bin/$binary.freebsd" X fi X bin=`echo $binary | /usr/bin/sed -e 's!perl5!perl!'` X if [ -e "/usr/bin/$binary" ] ; then X echo " *** /usr/bin/$binary is still there, which should not happen" X elif [ -e "$PKG_PREFIX/bin/${bin}%%PERL_VERSION%%" ] ; then X echo " Symlinking $PKG_PREFIX/bin/${bin}%%PERL_VERSION%% to /usr/bin/$binary" X /bin/ln -sf "$PKG_PREFIX/bin/${bin}%%PERL_VERSION%%" "/usr/bin/$binary" X else X echo " *** $PKG_PREFIX/bin/${bin}%%PERL_VERSION%% is not there, a symlink won't do any good" X fi X done X echo "Done." X} X Xdo_post_install() X{ X INCLUDEDIR=/usr/include X install -d ${PKG_PREFIX}/lib/perl5/site_perl/%%PERL_VERSION%%/%%PERL_ARCH%%/auto X install -d ${PKG_PREFIX}/lib/perl5/site_perl/%%PERL_VERSION%%/auto X install -d ${PKG_PREFIX}/lib/perl5/%%PERL_VERSION%%/man/man3 X cd ${INCLUDEDIR} && ${PKG_PREFIX}/bin/h2ph *.h machine/*.h sys/*.h >/dev/null X} X Xdo_cleanup_make_conf() X{ X echo -n "Cleaning up ${MAKE_CONF}..." X if [ -f ${MAKE_CONF} ] ; then X /bin/cp -p ${MAKE_CONF} ${MAKE_CONF}.new X /usr/bin/awk 's=0; X /^#.*use.perl/ { s=1; mode=1 } X /^#/ { s=1; if (mode != 1) { mode=0 } } X /.*PERL.*=/ { s=1; if (mode == 1) { mode=2 } } X /^$/ { s=1; if (mode != 2) { mode = 0 } } X { if (s != 1) { mode = 0 } if (mode == 0) print }' ${MAKE_CONF} >${MAKE_CONF}.new X /bin/mv ${MAKE_CONF} ${MAKE_CONF}.bak X /bin/mv ${MAKE_CONF}.new ${MAKE_CONF} X fi X echo " Done." X} X Xdo_cleanup_manpath() X{ X if [ -f /etc/manpath.config ] ; then X echo -n "Cleaning up /etc/manpath.config..." X /bin/cp -p /etc/manpath.config /etc/manpath.config.new X /usr/bin/awk 's=0; X /^#.*use.perl/ { s=1; mode=1 } X /^#/ { s=1; if (mode != 1) { mode=0 } } X /^OPTIONAL_MANPATH.*perl5/ { s=1; if (mode == 1) { mode=2 } } X /^$/ { s=1; if (mode != 2) { mode = 0 } } X { if (s != 1) { mode = 0 } if (mode == 0) print }' /etc/manpath.config >/etc/manpath.config.new X /bin/mv /etc/manpath.config /etc/manpath.config.bak X /bin/mv /etc/manpath.config.new /etc/manpath.config X echo " Done." X fi X} X Xdo_spam_make_conf() X{ X echo -n "Spamming ${MAKE_CONF}..." X echo "$banner" >>${MAKE_CONF} X echo "PERL_VERSION=%%PERL_VERSION%%" >>${MAKE_CONF} X echo " Done." X} X Xdo_spam_manpath() X{ X if [ -f /etc/manpath.config ] ; then X echo -n "Spamming /etc/manpath.config..." X echo "$banner" >>/etc/manpath.config X echo "OPTIONAL_MANPATH ${PKG_PREFIX}/lib/perl5/%%PERL_VERSION%%/man" >>/etc/manpath.config X echo "OPTIONAL_MANPATH ${PKG_PREFIX}/lib/perl5/%%PERL_VERSION%%/perl/man" >>/etc/manpath.config X echo " Done." X fi X} X X[ "$need_remove_links" = "yes" ] && do_remove_links X[ "$need_create_links" = "yes" ] && do_create_links X[ "$need_post_install" = "yes" ] && do_post_install X[ "$need_cleanup_make_conf" = "yes" ] && do_cleanup_make_conf X[ "$need_spam_make_conf" = "yes" ] && do_spam_make_conf X[ "$need_cleanup_manpath" = "yes" ] && do_cleanup_manpath X[ "$need_spam_manpath" = "yes" ] && do_spam_manpath X Xexit 0 ea796b2b8bfcc95ab53b2ff3e8c2a502 echo x - perl5.15/files/perl-man.conf sed 's/^X//' >perl5.15/files/perl-man.conf << '223e048ba0f470a50b9560972257890d' XMANPATH %%PREFIX%%/lib/perl5/%%PERL_VERSION%%/man XMANPATH %%PREFIX%%/lib/perl5/%%PERL_VERSION%%/perl/man 223e048ba0f470a50b9560972257890d echo x - perl5.15/files/patch-Configure sed 's/^X//' >perl5.15/files/patch-Configure << '4ce7ac54103ccdd746dd77ede14a55d7' X--- Configure.orig 2010-07-14 15:28:45.000000000 +0000 X+++ Configure 2010-07-14 15:29:23.000000000 +0000 X@@ -4798,7 +4798,7 @@ X libpth='' X for xxx in $dlist X do X- if $test -d $xxx; then X+ if $test -d $xxx || [ $xxx = $prefix/lib ]; then X case " $libpth " in X *" $xxx "*) ;; X *) libpth="$libpth $xxx";; X@@ -9125,8 +9125,7 @@ X X : determine where add-on public executable scripts go X case "$sitescript" in X-'') dflt=$siteprefix/script X- $test -d $dflt || dflt=$sitebin ;; X+'') dflt=$sitebin ;; X *) dflt="$sitescript" ;; X esac X fn=d~+ 4ce7ac54103ccdd746dd77ede14a55d7 echo x - perl5.15/files/patch-MM_Any.pm sed 's/^X//' >perl5.15/files/patch-MM_Any.pm << '514ea57ff67ed81c5b1ce5ba66e7c76d' X--- cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm.orig Wed Feb 15 12:20:43 2006 X+++ cpan/ExtUtils-MakeMaker/lib/ExtUtils/MM_Any.pm Wed Feb 15 12:22:29 2006 X@@ -1069,13 +1069,14 @@ sub init_INSTALL_from_PREFIX { X ('$(PREFIX)') x 3; X } X else { X+ $self->{PREFIX} ||= $iprefix; X $self->{PERLPREFIX} ||= $iprefix; X $self->{SITEPREFIX} ||= $sprefix; X $self->{VENDORPREFIX} ||= $vprefix; X X # Lots of MM extension authors like to use $(PREFIX) so we X # put something sensible in there no matter what. X- $self->{PREFIX} = '$('.uc $self->{INSTALLDIRS}.'PREFIX)'; X+ #$self->{PREFIX} = '$('.uc $self->{INSTALLDIRS}.'PREFIX)'; X } X X my $arch = $Config{archname}; 514ea57ff67ed81c5b1ce5ba66e7c76d echo x - perl5.15/files/patch-freebsd.sh sed 's/^X//' >perl5.15/files/patch-freebsd.sh << '09fd6d0864b4d83750ebbc8c745eebb2' X--- hints/freebsd.sh X+++ hints/freebsd.sh X@@ -88,6 +88,8 @@ X esac X libswanted=`echo $libswanted | sed 's/ malloc / /'` X libswanted=`echo $libswanted | sed 's/ bind / /'` X+ libswanted=`echo $libswanted | sed 's/ dl / /'` X+ libswanted=`echo $libswanted | sed 's/ c / /'` X # iconv gone in Perl 5.8.1, but if someone compiles 5.8.0 or earlier. X libswanted=`echo $libswanted | sed 's/ iconv / /'` X d_setregid='define' X@@ -102,6 +104,10 @@ X ;; X esac X libswanted=`echo $libswanted | sed 's/ malloc / /'` X+ libswanted=`echo $libswanted | sed 's/ bind / /'` X+ libswanted=`echo $libswanted | sed 's/ dl / /'` X+ libswanted=`echo $libswanted | sed 's/ iconv / /'` X+ libswanted=`echo $libswanted | sed 's/ c / /'` X ;; X esac X X@@ -125,7 +131,7 @@ X else X libpth="/usr/lib /usr/local/lib" X glibpth="/usr/lib /usr/local/lib" X- ldflags="-Wl,-E " X+ ldflags="%%PTHREAD_LIBS%% -Wl,-E " X lddlflags="-shared " X fi X cccdlflags='-DPIC -fPIC' X@@ -133,7 +139,7 @@ X *) X libpth="/usr/lib /usr/local/lib" X glibpth="/usr/lib /usr/local/lib" X- ldflags="-Wl,-E " X+ ldflags="%%PTHREAD_LIBS%% -Wl,-E " X lddlflags="-shared " X cccdlflags='-DPIC -fPIC' X ;; X@@ -143,7 +149,7 @@ X 0*|1*|2*|3*) ;; X X *) X- ccflags="${ccflags} -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H" X+ ccflags="${ccflags} %%PTHREAD_CFLAGS%% -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H" X if /usr/bin/file -L /usr/lib/libc.so | /usr/bin/grep -vq "not stripped" ; then X usenm=false X fi X@@ -190,7 +196,9 @@ X X # This script UU/usethreads.cbu will get 'called-back' by Configure X # after it has prompted the user for whether to use threads. X-cat > UU/usethreads.cbu <<'EOCBU' X+## not quite - modern FreeBSD perl port is supposed to take care of that X+## we just add extra libraries and cflags nowadays X+cat > /dev/null <<'EOCBU' X case "$usethreads" in X $define|true|[yY]*) X lc_r=`/sbin/ldconfig -r|grep ':-lc_r'|awk '{print $NF}'|sed -n '$p'` 09fd6d0864b4d83750ebbc8c745eebb2 echo x - perl5.15/files/perl-after-upgrade sed 's/^X//' >perl5.15/files/perl-after-upgrade << '9268263665c9e8a20ff052e69e338293' X#! %%PERL%% -w X# ---------------------------------------------------------------------------- X# "THE BEER-WARE LICENSE" (Revision 42) X# wrote this file. As long as you retain this notice you X# can do whatever you want with this stuff. If we meet some day, and you think X# this stuff is worth it, you can buy me a beer in return. Anton Berezin X# ---------------------------------------------------------------------------- X# X# $FreeBSD: ports/lang/perl5.14/files/perl-after-upgrade,v 1.8 2011/06/19 10:27:12 skv Exp $ X# $Id: perl-after-upgrade,v 1.11 2005/06/23 19:39:00 tobez Exp $ X# X=pod X X=head1 NAME X Xperl-after-upgrade -- fixup FreeBSD packages that depend on perl X X=head1 SYNOPSIS X X perl-after-upgrade X perl-after-upgrade -f [-d] [-q] X perl-after-upgrade -v X X=head1 DESCRIPTION X XThe standard procedure after a perl port (lang/perl5.X) upgrade is to Xbasically reinstall all other packages that depend on perl. XThis is always a painful exercise. The perl-after-upgrade utility makes Xthis process mostly unnecessary. X XThe tool goes through the list of installed packages, looks for those Xthat depend on perl, moves files around, modifies shebang lines in those Xscripts in which it is necessary to do so, tries its best to adjust Xdynamically linked binaries that link with libperl.so in the old path, Xand updates the package database. X XAfter installation of the new perl is complete, either by hand from the Xports collection, or from a package, or via portupgrade, do the Xfollowing: X X=over 4 X X=item o go root; X X=item o run perl-after-upgrade utility. X XDo not specify any arguments at first, so it does nothing destructive. XPay attention to the produced output and especially to errorlist at the Xend, if any; X X=item o run the utility again, with B<-f> command line option. X XThis will actually do the work. Again, pay attention to the output Xproduced; X X=item o fix any reported errors; X X=item o reinstall required packages: X XThe utility will tell you what packages that depend on perl it could not Xhandle. It will also tell you why it happened (for example, they were Xcompiled against a binary incompatible perl). If you want such packages Xto remain operational, you will have to reinstall then by hand or via Xportupgrade. X X=item o review the files left in the older perl installation. X XThis is typically /usr/local/lib/perl5/site_perl/5.X.Y/. There should Xbe very little, if any, files in that directory and its subdirectories, Xexcepting a number of .ph files; X X=item o check that things work as they should; X X=item o remove backup files from the package database. X XThose will be /var/db/pkg/*/+CONTENTS.bak; X X=item o that's all. X X=back X X=head1 COPYRIGHT AND LICENSE X XCopyright 2005 by Anton Berezin X X "THE BEER-WARE LICENSE" (Revision 42) X wrote this module. As long as you retain this X notice you can do whatever you want with this stuff. If we meet some X day, and you think this stuff is worth it, you can buy me a beer in X return. X X Anton Berezin X XNO WARRANTY OF ANY KIND, USE AT YOUR OWN RISK. X X=head1 HISTORY X XThe first version of this utility was not bundled with perl package on XFreeBSD. It was dumber than the current version in several important Xareas. It was faster. X X=head1 CREDITS X XThanks to Mathieu Arnold for discussion. X X=head1 SEE ALSO X Xperl(1). X X=cut X Xuse strict; Xuse warnings; Xuse 5.0100; X Xour $debug = 0; X X# |/-\ Xmy $pchar = "|"; Xmy $do_progress = -t *STDOUT; Xsub progress X{ X if ($do_progress) { X print STDERR "$pchar"; X $pchar =~ tr<|/\\-><-|/\\>; X } X} X Xpackage FreeBSD::Package; Xuse strict; Xuse warnings; X Xuse IO::File; Xuse File::Copy; X Xsub new X{ X my ($pkg, %p) = @_; X my $pkgdir = $p{pkgdir} || return undef; X my $name = $pkgdir; X $name =~ s|.*/||; X main::progress(); X my $c = IO::File->new("< $pkgdir/+CONTENTS"); X return undef unless $c; X my @lines; X while (<$c>) { X chomp; X push @lines, $_; X } X my $me = bless { X pkgdir => $pkgdir, X lines => \@lines, X name => $name, X }, $pkg; X return $me; X} X Xsub name X{ X return $_[0]->{name}; X} X Xsub lines X{ X my $me = shift; X if (@_ && @_ == 1 && ref(@_) eq 'ARRAY') { X $me->{lines} = [@{$_[0]}]; X $me->{changed} = 1; X } elsif (@_) { X $me->{lines} = [@_]; X $me->{changed} = 1; X } else { X return @{$me->{lines}}; X } X} X Xsub write_back X{ X my ($me) = @_; X X return unless $me->{changed}; X main::progress(); X my $file = "$me->{pkgdir}/+CONTENTS"; X copy($file, "$file.bak"); X my $c = IO::File->new("> $file"); X return unless $c; X for (@{$me->{lines}}) { X print $c "$_\n"; X } X} X Xpackage FreeBSD::Package::DB; Xuse strict; Xuse warnings; X Xsub new X{ X my ($pkg, %p) = @_; X my $me = bless { X dbdir => $p{dbdir} || $ENV{PKG_DBDIR} || "/var/db/pkg", X }, $pkg; X $me->{packages} = [ grep { -d } glob "$me->{dbdir}/*" ]; X $me->reset; X return $me; X} X Xsub next X{ X my ($me) = @_; X while (1) { X $me->{current}++; X if ($me->{current} >= @{$me->{packages}}) { X $me->reset; X return undef; X } X my $pkg = FreeBSD::Package->new(pkgdir => $me->{packages}->[$me->{current}]); X return $pkg if $pkg; X } X} X Xsub reset X{ X my ($me) = @_; X $me->{current} = -1; X} X Xpackage main; Xuse strict; Xuse warnings; X Xuse File::Temp qw/tempfile/; Xuse File::Copy; X Xour $dry_run = 1; Xour $quiet = 0; Xmy @tmpl; Xour $VERSION = "1.4"; X Xwhile (@ARGV) { X my $opt = shift; X if ($opt eq "-f") { X $dry_run = 0; X } elsif ($opt eq "-d") { X $debug = 1; X } elsif ($opt eq "-q") { X $quiet = 1; X } elsif ($opt eq "-v") { X $_ = $0; X s|.*/||; X print "$_ version $VERSION\n"; X exit 0; X } elsif ($opt =~ /^-/) { X $_ = $0; X s|.*/||; X print "Unknown option `$opt'\n"; X print "Usage:\n"; X print "\t$_\n\t$_ -v\n\t$_ -f\n"; X exit 1; X } else { X push @tmpl, $opt; X } X} X Xour $PERL_VERSION = '%%PERL_VERSION%%'; Xour $PERL_PKGNAME = '%%PKGNAME%%'; X Xour $PERL_VERSION_REGEX = qr/5\.14\.\d+/; Xprint STDERR "- Fuzzy source re: <$PERL_VERSION_REGEX>\n" if $debug; X Xour @errors; Xour @notes; X Xsub fix_script X{ X my ($file) = @_; X X main::progress(); X return 1 if $dry_run; X my $sf = IO::File->new("< $file"); X return "" unless $sf; X my $line = <$sf>; X my $md5 = ""; X if ($line && $line =~ s|^(\s*#!\s*[\w/]+perl)$PERL_VERSION_REGEX\b|$1$PERL_VERSION|) { X my $dir = $file; X $dir =~ s|/[^/]+$||; X my ($fh, $fn) = tempfile(DIR=> $dir); X if ($fh) { X print $fh $line; X while (<$sf>) { X print $fh $_; X } X close $fh; X $md5 = `/sbin/md5 -q $fn`; X chomp $md5; X my $mode = (stat($file))[2] & 07777; X unlink $file or do { X push @errors, "Failed to unlink $file: $!"; X unlink $fn; X return ""; X }; X rename $fn, $file or do { X push @errors, "Failed to rename $fn to $file: $!"; X return ""; X }; X chmod $mode, $file; X } else { X push @errors, "Failed to modify $file: $!"; X } X } X return $md5; X} X Xsub fix_binary X{ X my ($file) = @_; X X main::progress(); X my $sf = IO::File->new("< $file"); X return "" unless $sf; X my $was = $dry_run ? "would be" : "was"; X push @notes, "The $file binary $was modified, make sure it works"; X return 1 if $dry_run; X my $md5 = ""; X X my $dir = $file; X $dir =~ s|/[^/]+$||; X my ($fh, $fn) = tempfile(DIR=> $dir); X unless ($fn) { X push @errors, "Failed to modify $file: $!"; X return ""; X } X X while (<$sf>) { X s|/lib/perl5/$PERL_VERSION_REGEX/mach/CORE|/lib/perl5/$PERL_VERSION/mach/CORE|g; X print $fh $_; X } X close $fh; X $md5 = `/sbin/md5 -q $fn`; X chomp $md5; X my $mode = (stat($file))[2] & 07777; X unlink $file or do { X push @errors, "Failed to unlink $file: $!"; X unlink $fn; X return ""; X }; X rename $fn, $file or do { X push @errors, "Failed to rename $fn to $file: $!"; X return ""; X }; X chmod $mode, $file; X return $md5; X} X Xsub mkdir_recur X{ X my ($dir) = @_; X X main::progress(); X $dir =~ s|/+$||; X my $orig = $dir; X if ($dir =~ m|^$|) { X return 1; X } else { X $dir =~ s|/[^/]+$||; X my $r = mkdir_recur($dir); X return $r unless $r; X mkdir $orig, 0777; X my $e = $!; X unless (-d $orig) { X push @errors, "Could not create directory $orig: $e"; X return 0; X } X return 1; X } X} X Xsub might_need_to_fix X{ X my ($pkg) = @_; X my $pkg_name = $pkg->name; X X main::progress(); X if ($pkg_name =~ /^bsdpan-/) { X return 1; X } X for ($pkg->lines) { X if (/^\@pkgdep\s+perl-(threaded-)?($PERL_VERSION_REGEX)\S*\s*$/) { X return 1; X } X } X return 0; X} X Xsub fixable_binary X{ X my ($file, $name) = @_; X X main::progress(); X my $fixable = 0; X for (`/usr/bin/ldd $file 2>&1`) { X if (/^\s+libperl\.so\s+=>/) { X my $found; X for (`strings $file`) { X if (m) { X $found++; X if (length($1) != length($PERL_VERSION)) { X push @notes, "$name cannot be fixed up (and has to be reinstalled): cannot patch $file due to length difference"; X print STDERR "- Skipping $name: cannot patch $file due to length difference\n" if $debug; X return undef; X } X print STDERR "- $name: fixable binary $file\n" if $debug && $found < 2; X $fixable = 1 if $1 ne $PERL_VERSION; X } X } X if (!$found) { X push @notes, "$name cannot be fixed up (and has to be reinstalled): $file is using unknown libperl"; X print STDERR "- Skipping $name: $file is using unknown libperl\n" if $debug; X return undef; X } X } X } X return $fixable; X} X Xsub fixable_shared_lib X{ X my ($file, $name) = @_; X X main::progress(); X my ($old); X for (`strings $file`) { X if (/^perl_get_sv$/) { X push @notes, "$name cannot be fixed up (and has to be reinstalled): $file uses an old perl API"; X print STDERR "- Skipping $name: $file uses an old perl API\n" if $debug; X return 0; X } X } X return 1; X} X Xsub cannot_be_fixed X{ X my ($pkg, $binaries, $scripts) = @_; X my $pkg_name = $pkg->name; X my $prefix = ""; X X main::progress(); X X for ($pkg->lines) { X if (/^\@cwd\s+(\S+)\s*$/) { X $prefix = $1; X next; X } X my $file = "$prefix/$_"; X next if -l $file; X next if $file =~ /\.gz$/; X next if $file =~ /\.bz2$/; X my $sf = IO::File->new("< $file"); X next unless $sf; X my $line; X sysread $sf, $line, 256; X X # binary executable X if ($line && $line =~ /^\177ELF.\x01.\x09.{8}\x02\0/) { X my $fixable = fixable_binary($file, $pkg_name); X return 0 unless defined $fixable; X push @$binaries, $file if $fixable; X # shared library - can prevent us from being able to upgrade X } elsif ($line && $line =~ /^\177ELF.\x01.\x09.{8}\x03\0/) { X return 0 unless fixable_shared_lib($file, $pkg_name); X } elsif ($line && $line =~ m<^\s*#!\s*[\w/]+perl($PERL_VERSION_REGEX)\b>) { X print STDERR "- $pkg_name: fixable script $file\n" if $debug; X push @$scripts, $file if $1 ne $PERL_VERSION; X } X main::progress(); X } X} X X# Xmy $db = FreeBSD::Package::DB->new; Xmy ($fixed, $skipped, $tot_moved, $tot_modified) = (0,0,0,0); Xwhile (my $pkg = $db->next) { X my @lines; X my $new_md5; X my ($adjusted, $moved, $modified) = (0,0,0); X X my $pkg_name = $pkg->name; X if (@tmpl) { X my $ok; X for (@tmpl) { X if ($pkg_name =~ /^$_/) { X $ok = 1; X last; X } X } X next unless $ok; X } X X unless (might_need_to_fix($pkg)) { X $skipped++; X print STDERR "- Skipping $pkg_name, it does not depend on perl\n" if $debug; X next; X } X X my (@binaries_to_fix, @scripts_to_fix); X if (cannot_be_fixed($pkg, \@binaries_to_fix, \@scripts_to_fix)) { X $skipped++; X next; X } X if ($debug) { X print STDERR "- $pkg_name: ", scalar(@binaries_to_fix), " binaries to fix\n" if @binaries_to_fix; X print STDERR "- $pkg_name: ", scalar(@scripts_to_fix), " scripts to fix\n" if @scripts_to_fix; X } X my %binaries = map { $_ => 1 } @binaries_to_fix; X my %scripts = map { $_ => 1 } @scripts_to_fix; X X my $prefix = ""; X my $pcnt = 0; X for ($pkg->lines) { X if (/^([^@]\S+)\s*$/) { X my $from = "$prefix/$_"; X local $_; # we'll need it later X $new_md5 = ""; X unless (-l $from) { # skip symlinks X if ($binaries{$from}) { X $new_md5 = fix_binary($from); X } elsif ($scripts{$from}) { X $new_md5 = fix_script($from); X } X $modified++ if $new_md5; X } X my $to = $from; X if ($to =~ s|(/perl5/(?:site_perl/)?)$PERL_VERSION_REGEX|$1$PERL_VERSION|g) { X if ($to ne $from) { X my $dir = $to; X $dir =~ s|/[^/]+$||; X main::progress(); X unless ($dry_run) { X if (mkdir_recur($dir)) { X move($from, $to); X } else { X push @errors, " could not move $from to $to"; X } X } X $moved++; X print STDERR "- move: $from => $to\n" if $debug; X } X } X } elsif (/^\@comment\s+MD5:[\da-f]+\s*$/ && $new_md5) { X s|MD5:(\S+)|MD5:$new_md5|; X $new_md5 = ""; X } else { X $new_md5 = ""; X } X if (/^\@cwd\s+(\S+)\s*$/) { X $prefix = $1; X } elsif (/^\@pkgdep\s+perl-(threaded-)?($PERL_VERSION_REGEX)\S*\s*$/) { X if ($PERL_VERSION ne $2) { X my $perlver = $2; X s|perl-(threaded-)?\Q$perlver\E\S*|$PERL_PKGNAME|; X } X } X my $old = $_; X if (s|(/perl5/(?:site_perl/)?)$PERL_VERSION_REGEX|$1$PERL_VERSION|g) { X if ($old ne $_) { X $adjusted++; X print STDERR "- adjust: $_\n" if $debug; X } X } X push @lines, $_; X main::progress() if $pcnt++ % 250 == 0; X } X unless ($dry_run) { X $pkg->lines(@lines); X $pkg->write_back; X } X $fixed++ if $moved || $modified || $adjusted; X $tot_modified += $modified; X $tot_moved += $moved; X say "$pkg_name: $moved moved, $modified modified, $adjusted adjusted" X if !$quiet || ($moved || $modified || $adjusted); X} Xprint "\n---\n"; Xprint "Fixed $fixed packages ($tot_moved files moved, $tot_modified files modified)\n"; Xprint "Skipped $skipped packages\n"; Xif (@errors) { X print "\n**** The script has encountered following problems:\n"; X for (@errors) { X print "$_\n"; X } X print "\n--- Repeating summary:\n"; X print "Fixed $fixed packages ($tot_moved files moved, $tot_modified files modified)\n"; X print "Skipped $skipped packages\n"; X} Xif (@notes) { X print "\n**** In addition, please pay attention to the following:\n"; X for (@notes) { X print "$_\n"; X } X print "\n--- Repeating summary:\n"; X print "Fixed $fixed packages ($tot_moved files moved, $tot_modified files modified)\n"; X print "Skipped $skipped packages\n"; X} 9268263665c9e8a20ff052e69e338293 echo x - perl5.15/files/patch-INST_PREFIX.t sed 's/^X//' >perl5.15/files/patch-INST_PREFIX.t << '8d8c111d34be8334dc5c5e61616caa0f' X--- cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t.orig Wed Feb 15 12:46:31 2006 X+++ cpan/ExtUtils-MakeMaker/t/INST_PREFIX.t Wed Feb 15 12:46:52 2006 X@@ -16,7 +16,7 @@ BEGIN { X } X X use strict; X-use Test::More tests => 52; X+use Test::More tests => 51; X use MakeMaker::Test::Utils; X use MakeMaker::Test::Setup::BFD; X use ExtUtils::MakeMaker; X@@ -62,7 +62,7 @@ like( $stdout->read, qr{ X Writing\ $Makefile\ for\ Big::Dummy\n X }x ); X X-is( $mm->{PREFIX}, '$(SITEPREFIX)', 'PREFIX set based on INSTALLDIRS' ); X+## is( $mm->{PREFIX}, '$(SITEPREFIX)', 'PREFIX set based on INSTALLDIRS' ); X X isa_ok( $mm, 'ExtUtils::MakeMaker' ); X 8d8c111d34be8334dc5c5e61616caa0f echo x - perl5.15/Makefile sed 's/^X//' >perl5.15/Makefile << 'b18d4dc9194284dc6cdf6ac6a1fedf24' X# New ports collection makefile for: perl5 X# Date created: 16 April 1995 X# Whom: markm X# X# $FreeBSD: ports/lang/perl5.14/Makefile,v 1.140 2012/02/15 02:03:29 swills Exp $ X# X XPORTNAME= perl XPORTVERSION= ${PERL_VERSION} XCATEGORIES= lang devel perl5 XMASTER_SITES= CPAN \ X ${MASTER_SITE_LOCAL:S/$/:local/} \ X http://protey.ru/freebsd/distfiles/:local XMASTER_SITE_SUBDIR= ../../src/5.0 \ X skv/:local XDISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ X BSDPAN-${BSDPAN_VERSION}${EXTRACT_SUFX}:local XDIST_SUBDIR= perl X XMAINTAINER= skv@FreeBSD.org XCOMMENT= Practical Extraction and Report Language X XLICENSE= ART10 GPLv1 XLICENSE_COMB= dual X XCONFLICTS= perl-5.6.* perl-5.8.* perl-threaded-5.8.* \ X perl-5.10.* perl-threaded-5.10.* \ X perl-5.12.* perl-threaded-5.12.* X XOPTIONS= DEBUGGING "Build with debugging support" off \ X GDBM "Build GDBM_File extension" off \ X PERL_MALLOC "Use Perl malloc" off \ X PERL_64BITINT "Use 64 bit integers (on i386)" on \ X THREADS "Build threaded perl" off \ X PTHREAD "Build with -pthread" on \ X MULTIPLICITY "Use multiplicity" off \ X SITECUSTOMIZE "Run-time customization of @INC" off \ X USE_PERL "Rewrite links in /usr/bin" on X XPORTSCOUT= limitw:1,even X XPERL_VERSION= 5.15.8 XPERL_ARCH= mach XSITE_PERL_REL?= lib/perl5/site_perl/${PERL_VERSION} X XUSE_BZIP2= yes XHAS_CONFIGURE= yes XMAKE_JOBS_SAFE= yes XCONFIGURE_SCRIPT=Configure XCONFIGURE_ARGS= -sde -Dusedevel -Dprefix=${PREFIX} \ X -Darchlib=${PREFIX}/lib/perl5/${PERL_VERSION}/${PERL_ARCH} \ X -Dprivlib=${PREFIX}/lib/perl5/${PERL_VERSION} \ X -Dman3dir=${PREFIX}/lib/perl5/${PERL_VERSION}/perl/man/man3 \ X -Dman1dir=${PREFIX}/man/man1 \ X -Dsitearch=${PREFIX}/${SITE_PERL_REL}/${PERL_ARCH} \ X -Dsitelib=${PREFIX}/${SITE_PERL_REL} -Dscriptdir=${PREFIX}/bin \ X -Dsiteman3dir=${PREFIX}/lib/perl5/${PERL_VERSION}/man/man3 \ X -Dsiteman1dir=${PREFIX}/man/man1 \ X -Ui_malloc -Ui_iconv -Uinstallusrbinperl \ X -Dcc="${CC}" -Duseshrplib -Dinc_version_list=none \ X -Dccflags=-DAPPLLIB_EXP=\"${BSDPAN_DEST}\" XLOCALE_CLEANUP= LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \ X LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \ X LC_TIME="" XCONFIGURE_ENV+= ${LOCALE_CLEANUP} UNAME_v="$$(uname -v | sed 'y/=/ /')" XMAKE_ENV+= ${LOCALE_CLEANUP} X X.include "Makefile.man" X.include X X.if defined(PERL_VENDOR_PREFIX) XCONFIGURE_ARGS+= \ X -Dvendorprefix=${PERL_VENDOR_PREFIX} \ X -Dvendorarch=${PERL_VENDOR_PREFIX}/lib/perl5/${PERL_VERSION}/${PERL_ARCH} \ X -Dvendorbin=${PERL_VENDOR_PREFIX}/bin \ X -Dvendorlib=${PERL_VENDOR_PREFIX}/lib/perl5/${PERL_VERSION} \ X -Dvendorman3dir=${PERL_VENDOR_PREFIX}/lib/perl5/${PERL_VERSION}/man/man3 \ X -Dvendorman1dir=${PERL_VENDOR_PREFIX}/man/man1 X.endif X XPLIST_SUB+= PERL_VERSION=${PERL_VERSION} \ X PERL_VER=${PERL_VERSION} \ X PERL_ARCH=${PERL_ARCH} \ X SITE_PERL=${SITE_PERL:S|^${LOCALBASE}/||} X X.if defined(WITH_DEBUGGING) XCONFIGURE_ARGS+= -Doptimize="-g" -DDEBUGGING XSTRIP= XSTRIP_CMD= ${TRUE} X.else XCONFIGURE_ARGS+= -Doptimize="${CFLAGS}" X.endif X X.if defined(WITH_GDBM) XCONFIGURE_ARGS+= -Di_gdbm XLIB_DEPENDS+= gdbm.4:${PORTSDIR}/databases/gdbm XPLIST_SUB+= GDBM="" X.else XCONFIGURE_ARGS+= -Ui_gdbm XPLIST_SUB+= GDBM="@comment " X.endif X X.if ${OSVERSION} >= 900022 XPLIST_SUB+= MANCONF="" X.else XPLIST_SUB+= MANCONF="@comment " X.endif X X.if defined(WITHOUT_PERL_MALLOC) X.undef WITH_PERL_MALLOC X.else XWITH_PERL_MALLOC= yes X.endif X X.if defined(WITH_THREADS) X#XXX .if ${ARCH} == "amd64" X#XXX IGNORE= Threaded perl does not pass tests on ${ARCH} X#XXX .endif XCONFIGURE_ARGS+= -Dusethreads=y XPKGNAMESUFFIX= -threaded XWITH_PTHREAD= yes X# it seems perl malloc has problems with threaded perl on FreeBSD X.undef WITH_PERL_MALLOC X.else XCONFIGURE_ARGS+= -Dusethreads=n X.endif X X.if defined(WITH_PERL_MALLOC) XCONFIGURE_ARGS+= -Dusemymalloc=y X.else XCONFIGURE_ARGS+= -Dusemymalloc=n X.endif X X.if defined(WITH_PERL_64BITINT) XCONFIGURE_ARGS+= -Duse64bitint X.endif X X.if defined(WITH_MULTIPLICITY) XCONFIGURE_ARGS+= -Dusemultiplicity=y X.endif X X.if defined(WITH_SITECUSTOMIZE) XCONFIGURE_ARGS+= -Dusesitecustomize X.endif X X.if defined(WITH_USE_PERL) XLINK_USRBIN= yes X.else XLINK_USRBIN= no X.endif X XNO_LATEST_LINK= yes X X.if defined(WITH_GDBM) XMAN3+= GDBM_File.3 X.endif XMAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION}/perl X XBSDPAN_DEST= ${PREFIX}/lib/perl5/${PERL_VERSION}/BSDPAN XBSDPAN_FILES= BSDPAN.pm BSDPAN/Override.pm Config.pm \ X ExtUtils/MM_Unix.pm \ X ExtUtils/MakeMaker.pm \ X ExtUtils/Packlist.pm XBSDPAN_VERSION= 20111107 XBSDPAN_WRKSRC= ${WRKDIR}/BSDPAN-${BSDPAN_VERSION} X XPKGINSTALL= ${WRKDIR}/pkg-install XPKGDEINSTALL= ${WRKDIR}/pkg-deinstall X Xpost-patch: X ${SED} -e 's|%%PREFIX%%|${PREFIX}|g;' \ X -e 's|%%PERL_VERSION%%|${PERL_VERSION}|g;' \ X -e 's|%%PERL_ARCH%%|${PERL_ARCH}|g;' \ X -e 's|%%MAKE_CONF%%|${__MAKE_CONF}|g;' \ X -e 's|%%LINK_USRBIN%%|${LINK_USRBIN}|g;' \ X ${FILESDIR}/use.perl \ X > ${WRKDIR}/use.perl X ${SED} -e 's|%%PREFIX%%|${PREFIX}|g;' \ X -e 's|%%PERL_VERSION%%|${PERL_VERSION}|g;' \ X ${FILESDIR}/perl-man.conf \ X > ${WRKDIR}/perl-man.conf X ${SED} -e 's|%%PERL%%|${PERL}|g; s|%%PERL_VERSION%%|${PERL_VERSION}|g; s|%%PKGNAME%%|${PKGNAME}|g' \ X ${FILESDIR}/perl-after-upgrade \ X > ${WRKDIR}/perl-after-upgrade X ${CP} ${WRKDIR}/use.perl ${PKGINSTALL} X ${CP} ${WRKDIR}/use.perl ${PKGDEINSTALL} X ${SED} -i '' -e 's|%%PERL_PKGNAME%%|${PKGNAME}|g; s|%%PERL_VER%%|5.14|g;' \ X -e 's!%%BSDPAN_VERSION%%!${BSDPAN_VERSION}!g;' \ X ${BSDPAN_WRKSRC}/ExtUtils/*.pm X ${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ X ${WRKSRC}/Configure ${WRKSRC}/hints/freebsd.sh X.if defined(WITH_PTHREAD) X ${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g;' \ X -e 's|%%PTHREAD_CFLAGS%%|${PTHREAD_CFLAGS}|g;' \ X ${WRKSRC}/hints/freebsd.sh X.else X ${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%||g;' \ X -e 's|%%PTHREAD_CFLAGS%%||g;' \ X ${WRKSRC}/hints/freebsd.sh X.endif X Xpre-su-install: X @${RM} -f ${PREFIX}/bin/perl${PERL_VERSION} X @${RM} -f ${PREFIX}/bin/perl X Xpost-install: X @${STRIP_CMD} ${PREFIX}/bin/perl${PERL_VERSION} X# @${STRIP_CMD} ${PREFIX}/bin/perl X @${PREFIX}/bin/pod2man${PERL_VERSION} ${WRKDIR}/perl-after-upgrade >${WRKDIR}/perl-after-upgrade.1 X @${INSTALL_SCRIPT} ${WRKDIR}/perl-after-upgrade ${PREFIX}/bin/perl-after-upgrade X @${INSTALL_MAN} ${WRKDIR}/perl-after-upgrade.1 ${MAN1PREFIX}/man/man1/perl-after-upgrade.1 X @${LN} -sf ${PREFIX}/bin/perl${PERL_VERSION} ${PREFIX}/bin/perl5 X.if ${OSVERSION} >= 900022 X @${INSTALL_DATA} ${WRKDIR}/perl-man.conf ${PREFIX}/etc/man.d/perl${PERL_VERSION}.conf X.endif X.for files in ${BSDPAN_FILES} X ${MKDIR} ${BSDPAN_DEST}/${files:H} X ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ X ${BSDPAN_WRKSRC}/${files} ${BSDPAN_DEST}/${files} X.endfor X PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL X Xtest: build X @(cd ${WRKSRC}; TEST_JOBS=${MAKE_JOBS_NUMBER} make test_harness) X Xregression-test: test X Xrebuild-xs: X ${LOCALBASE}/sbin/portupgrade -f `(${FIND} ${PKG_DBDIR}/p5*/+CONTENTS | \ X ${XARGS} ${GREP} -El 'site_perl.*\.so' | \ X ${SED} -e 's!/var/db/pkg/!!; s!/+CONTENTS!!;')` X X.include b18d4dc9194284dc6cdf6ac6a1fedf24 echo x - perl5.15/pkg-plist sed 's/^X//' >perl5.15/pkg-plist << 'ee8ed5b6442e5029a56cde59530a88cb' Xbin/a2p%%PERL_VER%% Xbin/c2ph%%PERL_VER%% Xbin/config_data%%PERL_VER%% Xbin/corelist%%PERL_VER%% Xbin/cpan%%PERL_VER%% Xbin/cpan2dist%%PERL_VER%% Xbin/cpanp%%PERL_VER%% Xbin/cpanp-run-perl%%PERL_VER%% Xbin/enc2xs%%PERL_VER%% Xbin/find2perl%%PERL_VER%% Xbin/h2ph%%PERL_VER%% Xbin/h2xs%%PERL_VER%% Xbin/instmodsh%%PERL_VER%% Xbin/json_pp%%PERL_VER%% Xbin/libnetcfg%%PERL_VER%% Xbin/perl%%PERL_VER%% X@exec ln -fs %D/%F %B/perl5 X@unexec rm -f %B/perl5 2>&1 >/dev/null || true Xbin/perl-after-upgrade Xbin/perlbug%%PERL_VER%% Xbin/perldoc%%PERL_VER%% Xbin/perlivp%%PERL_VER%% Xbin/perlthanks%%PERL_VER%% Xbin/piconv%%PERL_VER%% Xbin/pl2pm%%PERL_VER%% Xbin/pod2html%%PERL_VER%% Xbin/pod2latex%%PERL_VER%% Xbin/pod2man%%PERL_VER%% Xbin/pod2text%%PERL_VER%% Xbin/pod2usage%%PERL_VER%% Xbin/podchecker%%PERL_VER%% Xbin/podselect%%PERL_VER%% Xbin/prove%%PERL_VER%% Xbin/psed%%PERL_VER%% Xbin/pstruct%%PERL_VER%% Xbin/ptar%%PERL_VER%% Xbin/ptardiff%%PERL_VER%% Xbin/ptargrep%%PERL_VER%% Xbin/s2p%%PERL_VER%% Xbin/shasum%%PERL_VER%% Xbin/splain%%PERL_VER%% Xbin/xsubpp%%PERL_VER%% Xbin/zipdetails%%PERL_VER%% Xetc/man.d/perl%%PERL_VER%%.conf Xlib/perl5/%%PERL_VER%%/AnyDBM_File.pm Xlib/perl5/%%PERL_VER%%/App/Cpan.pm Xlib/perl5/%%PERL_VER%%/App/Prove.pm Xlib/perl5/%%PERL_VER%%/App/Prove/State.pm Xlib/perl5/%%PERL_VER%%/App/Prove/State/Result.pm Xlib/perl5/%%PERL_VER%%/App/Prove/State/Result/Test.pm Xlib/perl5/%%PERL_VER%%/Archive/Extract.pm Xlib/perl5/%%PERL_VER%%/Archive/Tar.pm Xlib/perl5/%%PERL_VER%%/Archive/Tar/Constant.pm Xlib/perl5/%%PERL_VER%%/Archive/Tar/File.pm Xlib/perl5/%%PERL_VER%%/Attribute/Handlers.pm Xlib/perl5/%%PERL_VER%%/AutoLoader.pm Xlib/perl5/%%PERL_VER%%/AutoSplit.pm Xlib/perl5/%%PERL_VER%%/B/Debug.pm Xlib/perl5/%%PERL_VER%%/B/Deparse.pm Xlib/perl5/%%PERL_VER%%/B/Lint.pm Xlib/perl5/%%PERL_VER%%/B/Lint/Debug.pm Xlib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN.pm Xlib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN/Override.pm Xlib/perl5/%%PERL_VER%%/BSDPAN/Config.pm Xlib/perl5/%%PERL_VER%%/BSDPAN/ExtUtils/MM_Unix.pm Xlib/perl5/%%PERL_VER%%/BSDPAN/ExtUtils/MakeMaker.pm Xlib/perl5/%%PERL_VER%%/BSDPAN/ExtUtils/Packlist.pm Xlib/perl5/%%PERL_VER%%/Benchmark.pm Xlib/perl5/%%PERL_VER%%/CGI.pm Xlib/perl5/%%PERL_VER%%/CGI/Apache.pm Xlib/perl5/%%PERL_VER%%/CGI/Carp.pm Xlib/perl5/%%PERL_VER%%/CGI/Cookie.pm Xlib/perl5/%%PERL_VER%%/CGI/Fast.pm Xlib/perl5/%%PERL_VER%%/CGI/Pretty.pm Xlib/perl5/%%PERL_VER%%/CGI/Push.pm Xlib/perl5/%%PERL_VER%%/CGI/Switch.pm Xlib/perl5/%%PERL_VER%%/CGI/Util.pm Xlib/perl5/%%PERL_VER%%/CORE.pod Xlib/perl5/%%PERL_VER%%/CPAN.pm Xlib/perl5/%%PERL_VER%%/CPAN/API/HOWTO.pod Xlib/perl5/%%PERL_VER%%/CPAN/Author.pm Xlib/perl5/%%PERL_VER%%/CPAN/Bundle.pm Xlib/perl5/%%PERL_VER%%/CPAN/CacheMgr.pm Xlib/perl5/%%PERL_VER%%/CPAN/Complete.pm Xlib/perl5/%%PERL_VER%%/CPAN/Debug.pm Xlib/perl5/%%PERL_VER%%/CPAN/DeferredCode.pm Xlib/perl5/%%PERL_VER%%/CPAN/Distribution.pm Xlib/perl5/%%PERL_VER%%/CPAN/Distroprefs.pm Xlib/perl5/%%PERL_VER%%/CPAN/Distrostatus.pm Xlib/perl5/%%PERL_VER%%/CPAN/Exception/RecursiveDependency.pm Xlib/perl5/%%PERL_VER%%/CPAN/Exception/blocked_urllist.pm Xlib/perl5/%%PERL_VER%%/CPAN/Exception/yaml_not_installed.pm Xlib/perl5/%%PERL_VER%%/CPAN/Exception/yaml_process_error.pm Xlib/perl5/%%PERL_VER%%/CPAN/FTP.pm Xlib/perl5/%%PERL_VER%%/CPAN/FTP/netrc.pm Xlib/perl5/%%PERL_VER%%/CPAN/FirstTime.pm Xlib/perl5/%%PERL_VER%%/CPAN/HTTP/Client.pm Xlib/perl5/%%PERL_VER%%/CPAN/HTTP/Credentials.pm Xlib/perl5/%%PERL_VER%%/CPAN/HandleConfig.pm Xlib/perl5/%%PERL_VER%%/CPAN/Index.pm Xlib/perl5/%%PERL_VER%%/CPAN/InfoObj.pm Xlib/perl5/%%PERL_VER%%/CPAN/Kwalify.pm Xlib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.dd Xlib/perl5/%%PERL_VER%%/CPAN/Kwalify/distroprefs.yml Xlib/perl5/%%PERL_VER%%/CPAN/LWP/UserAgent.pm Xlib/perl5/%%PERL_VER%%/CPAN/Meta.pm Xlib/perl5/%%PERL_VER%%/CPAN/Meta/Converter.pm Xlib/perl5/%%PERL_VER%%/CPAN/Meta/Feature.pm Xlib/perl5/%%PERL_VER%%/CPAN/Meta/History.pm Xlib/perl5/%%PERL_VER%%/CPAN/Meta/Prereqs.pm Xlib/perl5/%%PERL_VER%%/CPAN/Meta/Requirements.pm Xlib/perl5/%%PERL_VER%%/CPAN/Meta/Spec.pm Xlib/perl5/%%PERL_VER%%/CPAN/Meta/Validator.pm Xlib/perl5/%%PERL_VER%%/CPAN/Meta/YAML.pm Xlib/perl5/%%PERL_VER%%/CPAN/Mirrors.pm Xlib/perl5/%%PERL_VER%%/CPAN/Module.pm Xlib/perl5/%%PERL_VER%%/CPAN/Nox.pm Xlib/perl5/%%PERL_VER%%/CPAN/Prompt.pm Xlib/perl5/%%PERL_VER%%/CPAN/Queue.pm Xlib/perl5/%%PERL_VER%%/CPAN/Shell.pm Xlib/perl5/%%PERL_VER%%/CPAN/Tarzip.pm Xlib/perl5/%%PERL_VER%%/CPAN/URL.pm Xlib/perl5/%%PERL_VER%%/CPAN/Version.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Backend.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Backend/RV.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Config.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Configure.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Configure/Setup.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Dist.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Dist/Autobundle.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Dist/Base.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Dist/Build.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Dist/Build/Constants.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Dist/MM.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Dist/Sample.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Error.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/FAQ.pod Xlib/perl5/%%PERL_VER%%/CPANPLUS/Hacking.pod Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Constants.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Constants/Report.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Extract.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Fetch.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Report.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Search.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Source.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Source/Memory.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Source/SQLite.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Source/SQLite/Tie.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Utils.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Utils/Autoflush.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Module.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Module/Author.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Module/Author/Fake.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Module/Checksums.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Module/Fake.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Module/Signature.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Selfupdate.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Shell.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Shell/Classic.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Shell/Default.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Shell/Default/Plugins/CustomSource.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Shell/Default/Plugins/HOWTO.pod Xlib/perl5/%%PERL_VER%%/CPANPLUS/Shell/Default/Plugins/Remote.pm Xlib/perl5/%%PERL_VER%%/CPANPLUS/Shell/Default/Plugins/Source.pm Xlib/perl5/%%PERL_VER%%/Carp.pm Xlib/perl5/%%PERL_VER%%/Carp/Heavy.pm Xlib/perl5/%%PERL_VER%%/Class/Struct.pm Xlib/perl5/%%PERL_VER%%/Compress/Zlib.pm Xlib/perl5/%%PERL_VER%%/Config/Extensions.pm Xlib/perl5/%%PERL_VER%%/DB.pm Xlib/perl5/%%PERL_VER%%/DBM_Filter.pm Xlib/perl5/%%PERL_VER%%/DBM_Filter/compress.pm Xlib/perl5/%%PERL_VER%%/DBM_Filter/encode.pm Xlib/perl5/%%PERL_VER%%/DBM_Filter/int32.pm Xlib/perl5/%%PERL_VER%%/DBM_Filter/null.pm Xlib/perl5/%%PERL_VER%%/DBM_Filter/utf8.pm Xlib/perl5/%%PERL_VER%%/Devel/InnerPackage.pm Xlib/perl5/%%PERL_VER%%/Devel/SelfStubber.pm Xlib/perl5/%%PERL_VER%%/Digest.pm Xlib/perl5/%%PERL_VER%%/Digest/base.pm Xlib/perl5/%%PERL_VER%%/Digest/file.pm Xlib/perl5/%%PERL_VER%%/DirHandle.pm Xlib/perl5/%%PERL_VER%%/Dumpvalue.pm Xlib/perl5/%%PERL_VER%%/Encode/Changes.e2x Xlib/perl5/%%PERL_VER%%/Encode/ConfigLocal_PM.e2x Xlib/perl5/%%PERL_VER%%/Encode/Makefile_PL.e2x Xlib/perl5/%%PERL_VER%%/Encode/PerlIO.pod Xlib/perl5/%%PERL_VER%%/Encode/README.e2x Xlib/perl5/%%PERL_VER%%/Encode/Supported.pod Xlib/perl5/%%PERL_VER%%/Encode/_PM.e2x Xlib/perl5/%%PERL_VER%%/Encode/_T.e2x Xlib/perl5/%%PERL_VER%%/Encode/encode.h Xlib/perl5/%%PERL_VER%%/English.pm Xlib/perl5/%%PERL_VER%%/Env.pm Xlib/perl5/%%PERL_VER%%/Exporter.pm Xlib/perl5/%%PERL_VER%%/Exporter/Heavy.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Base.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/Unix.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/VMS.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/Windows.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/Windows/BCC.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/Windows/GCC.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/Windows/MSVC.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/aix.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/cygwin.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/darwin.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/dec_osf.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/os2.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Command.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Command/MM.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Constant.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Constant/Base.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Constant/ProxySubs.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Constant/Utils.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Constant/XS.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Embed.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Install.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Installed.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Liblist.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Liblist/Kid.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MANIFEST.SKIP Xlib/perl5/%%PERL_VER%%/ExtUtils/MM.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_AIX.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_Any.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_BeOS.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_Cygwin.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_DOS.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_Darwin.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_MacOS.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_NW5.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_OS2.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_QNX.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_UWIN.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_Unix.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_VMS.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_VOS.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_Win32.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MM_Win95.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MY.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MakeMaker.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MakeMaker/Config.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/MakeMaker/FAQ.pod Xlib/perl5/%%PERL_VER%%/ExtUtils/MakeMaker/Tutorial.pod Xlib/perl5/%%PERL_VER%%/ExtUtils/Manifest.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Miniperl.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Mkbootstrap.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Mksymlists.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Packlist.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/ParseXS.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/ParseXS.pod Xlib/perl5/%%PERL_VER%%/ExtUtils/ParseXS/Constants.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/ParseXS/CountLines.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/ParseXS/Utilities.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Typemaps.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Typemaps/Cmd.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Typemaps/InputMap.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Typemaps/OutputMap.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/Typemaps/Type.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/testlib.pm Xlib/perl5/%%PERL_VER%%/ExtUtils/typemap Xlib/perl5/%%PERL_VER%%/ExtUtils/xsubpp Xlib/perl5/%%PERL_VER%%/Fatal.pm Xlib/perl5/%%PERL_VER%%/File/Basename.pm Xlib/perl5/%%PERL_VER%%/File/CheckTree.pm Xlib/perl5/%%PERL_VER%%/File/Compare.pm Xlib/perl5/%%PERL_VER%%/File/Copy.pm Xlib/perl5/%%PERL_VER%%/File/DosGlob.pm Xlib/perl5/%%PERL_VER%%/File/Fetch.pm Xlib/perl5/%%PERL_VER%%/File/Find.pm Xlib/perl5/%%PERL_VER%%/File/GlobMapper.pm Xlib/perl5/%%PERL_VER%%/File/Path.pm Xlib/perl5/%%PERL_VER%%/File/Temp.pm Xlib/perl5/%%PERL_VER%%/File/stat.pm Xlib/perl5/%%PERL_VER%%/FileCache.pm Xlib/perl5/%%PERL_VER%%/FileHandle.pm Xlib/perl5/%%PERL_VER%%/Filter/Simple.pm Xlib/perl5/%%PERL_VER%%/FindBin.pm Xlib/perl5/%%PERL_VER%%/Getopt/Long.pm Xlib/perl5/%%PERL_VER%%/Getopt/Std.pm Xlib/perl5/%%PERL_VER%%/HTTP/Tiny.pm Xlib/perl5/%%PERL_VER%%/I18N/Collate.pm Xlib/perl5/%%PERL_VER%%/I18N/LangTags.pm Xlib/perl5/%%PERL_VER%%/I18N/LangTags/Detect.pm Xlib/perl5/%%PERL_VER%%/I18N/LangTags/List.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Adapter/Bzip2.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Adapter/Deflate.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Adapter/Identity.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Base.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Base/Common.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Bzip2.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Deflate.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/FAQ.pod Xlib/perl5/%%PERL_VER%%/IO/Compress/Gzip.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Gzip/Constants.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/RawDeflate.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Zip.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Zip/Constants.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Zlib/Constants.pm Xlib/perl5/%%PERL_VER%%/IO/Compress/Zlib/Extra.pm Xlib/perl5/%%PERL_VER%%/IO/Uncompress/Adapter/Bunzip2.pm Xlib/perl5/%%PERL_VER%%/IO/Uncompress/Adapter/Identity.pm Xlib/perl5/%%PERL_VER%%/IO/Uncompress/Adapter/Inflate.pm Xlib/perl5/%%PERL_VER%%/IO/Uncompress/AnyInflate.pm Xlib/perl5/%%PERL_VER%%/IO/Uncompress/AnyUncompress.pm Xlib/perl5/%%PERL_VER%%/IO/Uncompress/Base.pm Xlib/perl5/%%PERL_VER%%/IO/Uncompress/Bunzip2.pm Xlib/perl5/%%PERL_VER%%/IO/Uncompress/Gunzip.pm Xlib/perl5/%%PERL_VER%%/IO/Uncompress/Inflate.pm Xlib/perl5/%%PERL_VER%%/IO/Uncompress/RawInflate.pm Xlib/perl5/%%PERL_VER%%/IO/Uncompress/Unzip.pm Xlib/perl5/%%PERL_VER%%/IO/Zlib.pm Xlib/perl5/%%PERL_VER%%/IPC/Cmd.pm Xlib/perl5/%%PERL_VER%%/IPC/Open2.pm Xlib/perl5/%%PERL_VER%%/IPC/Open3.pm Xlib/perl5/%%PERL_VER%%/JSON/PP.pm Xlib/perl5/%%PERL_VER%%/JSON/PP/Boolean.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes.pod Xlib/perl5/%%PERL_VER%%/Locale/Codes/API.pod Xlib/perl5/%%PERL_VER%%/Locale/Codes/Changes.pod Xlib/perl5/%%PERL_VER%%/Locale/Codes/Constants.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Constants.pod Xlib/perl5/%%PERL_VER%%/Locale/Codes/Country.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Country.pod Xlib/perl5/%%PERL_VER%%/Locale/Codes/Country_Codes.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Country_Retired.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Currency.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Currency.pod Xlib/perl5/%%PERL_VER%%/Locale/Codes/Currency_Codes.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Currency_Retired.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangExt.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangExt.pod Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangExt_Codes.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangExt_Retired.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangFam.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangFam.pod Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangFam_Codes.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangFam_Retired.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangVar.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangVar.pod Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangVar_Codes.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/LangVar_Retired.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Language.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Language.pod Xlib/perl5/%%PERL_VER%%/Locale/Codes/Language_Codes.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Language_Retired.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Script.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Script.pod Xlib/perl5/%%PERL_VER%%/Locale/Codes/Script_Codes.pm Xlib/perl5/%%PERL_VER%%/Locale/Codes/Script_Retired.pm Xlib/perl5/%%PERL_VER%%/Locale/Country.pm Xlib/perl5/%%PERL_VER%%/Locale/Country.pod Xlib/perl5/%%PERL_VER%%/Locale/Currency.pm Xlib/perl5/%%PERL_VER%%/Locale/Currency.pod Xlib/perl5/%%PERL_VER%%/Locale/Language.pm Xlib/perl5/%%PERL_VER%%/Locale/Language.pod Xlib/perl5/%%PERL_VER%%/Locale/Maketext.pm Xlib/perl5/%%PERL_VER%%/Locale/Maketext.pod Xlib/perl5/%%PERL_VER%%/Locale/Maketext/Cookbook.pod Xlib/perl5/%%PERL_VER%%/Locale/Maketext/Guts.pm Xlib/perl5/%%PERL_VER%%/Locale/Maketext/GutsLoader.pm Xlib/perl5/%%PERL_VER%%/Locale/Maketext/Simple.pm Xlib/perl5/%%PERL_VER%%/Locale/Maketext/TPJ13.pod Xlib/perl5/%%PERL_VER%%/Locale/Script.pm Xlib/perl5/%%PERL_VER%%/Locale/Script.pod Xlib/perl5/%%PERL_VER%%/Log/Message.pm Xlib/perl5/%%PERL_VER%%/Log/Message/Config.pm Xlib/perl5/%%PERL_VER%%/Log/Message/Handlers.pm Xlib/perl5/%%PERL_VER%%/Log/Message/Item.pm Xlib/perl5/%%PERL_VER%%/Log/Message/Simple.pm Xlib/perl5/%%PERL_VER%%/Math/BigFloat.pm Xlib/perl5/%%PERL_VER%%/Math/BigFloat/Trace.pm Xlib/perl5/%%PERL_VER%%/Math/BigInt.pm Xlib/perl5/%%PERL_VER%%/Math/BigInt/Calc.pm Xlib/perl5/%%PERL_VER%%/Math/BigInt/CalcEmu.pm Xlib/perl5/%%PERL_VER%%/Math/BigInt/Trace.pm Xlib/perl5/%%PERL_VER%%/Math/BigRat.pm Xlib/perl5/%%PERL_VER%%/Math/Complex.pm Xlib/perl5/%%PERL_VER%%/Math/Trig.pm Xlib/perl5/%%PERL_VER%%/Memoize.pm Xlib/perl5/%%PERL_VER%%/Memoize/AnyDBM_File.pm Xlib/perl5/%%PERL_VER%%/Memoize/Expire.pm Xlib/perl5/%%PERL_VER%%/Memoize/ExpireFile.pm Xlib/perl5/%%PERL_VER%%/Memoize/ExpireTest.pm Xlib/perl5/%%PERL_VER%%/Memoize/NDBM_File.pm Xlib/perl5/%%PERL_VER%%/Memoize/SDBM_File.pm Xlib/perl5/%%PERL_VER%%/Memoize/Storable.pm Xlib/perl5/%%PERL_VER%%/Module/Build.pm Xlib/perl5/%%PERL_VER%%/Module/Build/API.pod Xlib/perl5/%%PERL_VER%%/Module/Build/Authoring.pod Xlib/perl5/%%PERL_VER%%/Module/Build/Base.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Bundling.pod Xlib/perl5/%%PERL_VER%%/Module/Build/Compat.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Config.pm Xlib/perl5/%%PERL_VER%%/Module/Build/ConfigData.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Cookbook.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Dumper.pm Xlib/perl5/%%PERL_VER%%/Module/Build/ModuleInfo.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Notes.pm Xlib/perl5/%%PERL_VER%%/Module/Build/PPMMaker.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/Amiga.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/Default.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/EBCDIC.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/MPEiX.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/MacOS.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/RiscOS.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/Unix.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/VMS.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/VOS.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/Windows.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/aix.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/cygwin.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/darwin.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Platform/os2.pm Xlib/perl5/%%PERL_VER%%/Module/Build/PodParser.pm Xlib/perl5/%%PERL_VER%%/Module/Build/Version.pm Xlib/perl5/%%PERL_VER%%/Module/Build/YAML.pm Xlib/perl5/%%PERL_VER%%/Module/CoreList.pm Xlib/perl5/%%PERL_VER%%/Module/Load.pm Xlib/perl5/%%PERL_VER%%/Module/Load/Conditional.pm Xlib/perl5/%%PERL_VER%%/Module/Loaded.pm Xlib/perl5/%%PERL_VER%%/Module/Metadata.pm Xlib/perl5/%%PERL_VER%%/Module/Pluggable.pm Xlib/perl5/%%PERL_VER%%/Module/Pluggable/Object.pm Xlib/perl5/%%PERL_VER%%/NEXT.pm Xlib/perl5/%%PERL_VER%%/Net/Cmd.pm Xlib/perl5/%%PERL_VER%%/Net/Config.pm Xlib/perl5/%%PERL_VER%%/Net/Domain.pm Xlib/perl5/%%PERL_VER%%/Net/FTP.pm Xlib/perl5/%%PERL_VER%%/Net/FTP/A.pm Xlib/perl5/%%PERL_VER%%/Net/FTP/E.pm Xlib/perl5/%%PERL_VER%%/Net/FTP/I.pm Xlib/perl5/%%PERL_VER%%/Net/FTP/L.pm Xlib/perl5/%%PERL_VER%%/Net/FTP/dataconn.pm Xlib/perl5/%%PERL_VER%%/Net/NNTP.pm Xlib/perl5/%%PERL_VER%%/Net/Netrc.pm Xlib/perl5/%%PERL_VER%%/Net/POP3.pm Xlib/perl5/%%PERL_VER%%/Net/Ping.pm Xlib/perl5/%%PERL_VER%%/Net/SMTP.pm Xlib/perl5/%%PERL_VER%%/Net/Time.pm Xlib/perl5/%%PERL_VER%%/Net/hostent.pm Xlib/perl5/%%PERL_VER%%/Net/libnetFAQ.pod Xlib/perl5/%%PERL_VER%%/Net/netent.pm Xlib/perl5/%%PERL_VER%%/Net/protoent.pm Xlib/perl5/%%PERL_VER%%/Net/servent.pm Xlib/perl5/%%PERL_VER%%/Object/Accessor.pm Xlib/perl5/%%PERL_VER%%/Package/Constants.pm Xlib/perl5/%%PERL_VER%%/Params/Check.pm Xlib/perl5/%%PERL_VER%%/Parse/CPAN/Meta.pm Xlib/perl5/%%PERL_VER%%/Perl/OSType.pm Xlib/perl5/%%PERL_VER%%/PerlIO.pm Xlib/perl5/%%PERL_VER%%/PerlIO/via/QuotedPrint.pm Xlib/perl5/%%PERL_VER%%/Pod/Checker.pm Xlib/perl5/%%PERL_VER%%/Pod/Escapes.pm Xlib/perl5/%%PERL_VER%%/Pod/Find.pm Xlib/perl5/%%PERL_VER%%/Pod/Functions.pm Xlib/perl5/%%PERL_VER%%/Pod/Html.pm Xlib/perl5/%%PERL_VER%%/Pod/InputObjects.pm Xlib/perl5/%%PERL_VER%%/Pod/LaTeX.pm Xlib/perl5/%%PERL_VER%%/Pod/Man.pm Xlib/perl5/%%PERL_VER%%/Pod/ParseLink.pm Xlib/perl5/%%PERL_VER%%/Pod/ParseUtils.pm Xlib/perl5/%%PERL_VER%%/Pod/Parser.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/BaseTo.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/GetOptsOO.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/ToANSI.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/ToChecker.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/ToMan.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/ToNroff.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/ToPod.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/ToRtf.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/ToTerm.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/ToText.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/ToTk.pm Xlib/perl5/%%PERL_VER%%/Pod/Perldoc/ToXml.pm Xlib/perl5/%%PERL_VER%%/Pod/PlainText.pm Xlib/perl5/%%PERL_VER%%/Pod/Select.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple.pod Xlib/perl5/%%PERL_VER%%/Pod/Simple/BlackBox.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/Checker.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/Debug.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/DumpAsText.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/DumpAsXML.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/HTML.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/HTMLBatch.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/HTMLLegacy.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/LinkSection.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/Methody.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/Progress.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/PullParser.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/PullParserEndToken.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/PullParserStartToken.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/PullParserTextToken.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/PullParserToken.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/RTF.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/Search.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/SimpleTree.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/Subclassing.pod Xlib/perl5/%%PERL_VER%%/Pod/Simple/Text.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/TextContent.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/TiedOutFH.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/Transcode.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/TranscodeDumb.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/TranscodeSmart.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/XHTML.pm Xlib/perl5/%%PERL_VER%%/Pod/Simple/XMLOutStream.pm Xlib/perl5/%%PERL_VER%%/Pod/Text.pm Xlib/perl5/%%PERL_VER%%/Pod/Text/Color.pm Xlib/perl5/%%PERL_VER%%/Pod/Text/Overstrike.pm Xlib/perl5/%%PERL_VER%%/Pod/Text/Termcap.pm Xlib/perl5/%%PERL_VER%%/Pod/Usage.pm Xlib/perl5/%%PERL_VER%%/Safe.pm Xlib/perl5/%%PERL_VER%%/Search/Dict.pm Xlib/perl5/%%PERL_VER%%/SelectSaver.pm Xlib/perl5/%%PERL_VER%%/SelfLoader.pm Xlib/perl5/%%PERL_VER%%/Symbol.pm Xlib/perl5/%%PERL_VER%%/TAP/Base.pm Xlib/perl5/%%PERL_VER%%/TAP/Formatter/Base.pm Xlib/perl5/%%PERL_VER%%/TAP/Formatter/Color.pm Xlib/perl5/%%PERL_VER%%/TAP/Formatter/Console.pm Xlib/perl5/%%PERL_VER%%/TAP/Formatter/Console/ParallelSession.pm Xlib/perl5/%%PERL_VER%%/TAP/Formatter/Console/Session.pm Xlib/perl5/%%PERL_VER%%/TAP/Formatter/File.pm Xlib/perl5/%%PERL_VER%%/TAP/Formatter/File/Session.pm Xlib/perl5/%%PERL_VER%%/TAP/Formatter/Session.pm Xlib/perl5/%%PERL_VER%%/TAP/Harness.pm Xlib/perl5/%%PERL_VER%%/TAP/Harness/Beyond.pod Xlib/perl5/%%PERL_VER%%/TAP/Object.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Aggregator.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Grammar.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Iterator.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Iterator/Array.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Iterator/Process.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Iterator/Stream.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/IteratorFactory.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Multiplexer.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Result.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Result/Bailout.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Result/Comment.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Result/Plan.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Result/Pragma.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Result/Test.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Result/Unknown.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Result/Version.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Result/YAML.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/ResultFactory.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Scheduler.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Scheduler/Job.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Scheduler/Spinner.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Source.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/SourceHandler.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/SourceHandler/Executable.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/SourceHandler/File.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/SourceHandler/Handle.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/SourceHandler/Perl.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/SourceHandler/RawTAP.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/Utils.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/YAMLish/Reader.pm Xlib/perl5/%%PERL_VER%%/TAP/Parser/YAMLish/Writer.pm Xlib/perl5/%%PERL_VER%%/Term/ANSIColor.pm Xlib/perl5/%%PERL_VER%%/Term/Cap.pm Xlib/perl5/%%PERL_VER%%/Term/Complete.pm Xlib/perl5/%%PERL_VER%%/Term/ReadLine.pm Xlib/perl5/%%PERL_VER%%/Term/UI.pm Xlib/perl5/%%PERL_VER%%/Term/UI/History.pm Xlib/perl5/%%PERL_VER%%/Test.pm Xlib/perl5/%%PERL_VER%%/Test/Builder.pm Xlib/perl5/%%PERL_VER%%/Test/Builder/Module.pm Xlib/perl5/%%PERL_VER%%/Test/Builder/Tester.pm Xlib/perl5/%%PERL_VER%%/Test/Builder/Tester/Color.pm Xlib/perl5/%%PERL_VER%%/Test/Harness.pm Xlib/perl5/%%PERL_VER%%/Test/More.pm Xlib/perl5/%%PERL_VER%%/Test/Simple.pm Xlib/perl5/%%PERL_VER%%/Test/Tutorial.pod Xlib/perl5/%%PERL_VER%%/Text/Abbrev.pm Xlib/perl5/%%PERL_VER%%/Text/Balanced.pm Xlib/perl5/%%PERL_VER%%/Text/ParseWords.pm Xlib/perl5/%%PERL_VER%%/Text/Tabs.pm Xlib/perl5/%%PERL_VER%%/Text/Wrap.pm Xlib/perl5/%%PERL_VER%%/Thread.pm Xlib/perl5/%%PERL_VER%%/Thread/Queue.pm Xlib/perl5/%%PERL_VER%%/Thread/Semaphore.pm Xlib/perl5/%%PERL_VER%%/Tie/Array.pm Xlib/perl5/%%PERL_VER%%/Tie/File.pm Xlib/perl5/%%PERL_VER%%/Tie/Handle.pm Xlib/perl5/%%PERL_VER%%/Tie/Hash.pm Xlib/perl5/%%PERL_VER%%/Tie/Memoize.pm Xlib/perl5/%%PERL_VER%%/Tie/RefHash.pm Xlib/perl5/%%PERL_VER%%/Tie/Scalar.pm Xlib/perl5/%%PERL_VER%%/Tie/StdHandle.pm Xlib/perl5/%%PERL_VER%%/Tie/SubstrHash.pm Xlib/perl5/%%PERL_VER%%/Time/Local.pm Xlib/perl5/%%PERL_VER%%/Time/gmtime.pm Xlib/perl5/%%PERL_VER%%/Time/localtime.pm Xlib/perl5/%%PERL_VER%%/Time/tm.pm Xlib/perl5/%%PERL_VER%%/UNIVERSAL.pm Xlib/perl5/%%PERL_VER%%/Unicode/Collate/CJK/Big5.pm Xlib/perl5/%%PERL_VER%%/Unicode/Collate/CJK/GB2312.pm Xlib/perl5/%%PERL_VER%%/Unicode/Collate/CJK/JISX0208.pm Xlib/perl5/%%PERL_VER%%/Unicode/Collate/CJK/Korean.pm Xlib/perl5/%%PERL_VER%%/Unicode/Collate/CJK/Pinyin.pm Xlib/perl5/%%PERL_VER%%/Unicode/Collate/CJK/Stroke.pm Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/af.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ar.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/as.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/az.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/be.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/bg.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/bn.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ca.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/cs.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/cy.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/da.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/de_phone.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/eo.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/es.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/es_trad.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/et.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/fa.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/fi.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/fi_phone.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/fil.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/fo.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/fr.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/gu.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ha.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/haw.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/hi.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/hr.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/hu.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/hy.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ig.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/is.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ja.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/kk.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/kl.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/kn.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ko.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/kok.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ln.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/lt.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/lv.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/mk.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ml.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/mr.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/mt.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/nb.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/nn.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/nso.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/om.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/or.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/pa.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/pl.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ro.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ru.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/sa.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/se.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/si.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/si_dict.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/sk.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/sl.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/sq.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/sr.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/sv.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/sv_refo.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ta.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/te.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/th.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/tn.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/to.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/tr.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/uk.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/ur.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/vi.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/wae.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/wo.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/yo.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/zh.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/zh_big5.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/zh_gb.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/zh_pin.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/Locale/zh_strk.pl Xlib/perl5/%%PERL_VER%%/Unicode/Collate/allkeys.txt Xlib/perl5/%%PERL_VER%%/Unicode/Collate/keys.txt Xlib/perl5/%%PERL_VER%%/Unicode/UCD.pm Xlib/perl5/%%PERL_VER%%/User/grent.pm Xlib/perl5/%%PERL_VER%%/User/pwent.pm Xlib/perl5/%%PERL_VER%%/Version/Requirements.pm Xlib/perl5/%%PERL_VER%%/XSLoader.pm Xlib/perl5/%%PERL_VER%%/_charnames.pm Xlib/perl5/%%PERL_VER%%/autodie.pm Xlib/perl5/%%PERL_VER%%/autodie/exception.pm Xlib/perl5/%%PERL_VER%%/autodie/exception/system.pm Xlib/perl5/%%PERL_VER%%/autodie/hints.pm Xlib/perl5/%%PERL_VER%%/autouse.pm Xlib/perl5/%%PERL_VER%%/base.pm Xlib/perl5/%%PERL_VER%%/bigint.pm Xlib/perl5/%%PERL_VER%%/bignum.pm Xlib/perl5/%%PERL_VER%%/bigrat.pm Xlib/perl5/%%PERL_VER%%/blib.pm Xlib/perl5/%%PERL_VER%%/bytes.pm Xlib/perl5/%%PERL_VER%%/bytes_heavy.pl Xlib/perl5/%%PERL_VER%%/charnames.pm Xlib/perl5/%%PERL_VER%%/constant.pm Xlib/perl5/%%PERL_VER%%/deprecate.pm Xlib/perl5/%%PERL_VER%%/diagnostics.pm Xlib/perl5/%%PERL_VER%%/dumpvar.pl Xlib/perl5/%%PERL_VER%%/encoding/warnings.pm Xlib/perl5/%%PERL_VER%%/feature.pm Xlib/perl5/%%PERL_VER%%/fields.pm Xlib/perl5/%%PERL_VER%%/filetest.pm Xlib/perl5/%%PERL_VER%%/if.pm Xlib/perl5/%%PERL_VER%%/inc/latest.pm Xlib/perl5/%%PERL_VER%%/inc/latest/private.pm Xlib/perl5/%%PERL_VER%%/integer.pm Xlib/perl5/%%PERL_VER%%/less.pm Xlib/perl5/%%PERL_VER%%/locale.pm Xlib/perl5/%%PERL_VER%%/mach/.packlist Xlib/perl5/%%PERL_VER%%/mach/B.pm Xlib/perl5/%%PERL_VER%%/mach/B/Concise.pm Xlib/perl5/%%PERL_VER%%/mach/B/Showlex.pm Xlib/perl5/%%PERL_VER%%/mach/B/Terse.pm Xlib/perl5/%%PERL_VER%%/mach/B/Xref.pm Xlib/perl5/%%PERL_VER%%/mach/CORE/EXTERN.h Xlib/perl5/%%PERL_VER%%/mach/CORE/INTERN.h Xlib/perl5/%%PERL_VER%%/mach/CORE/XSUB.h Xlib/perl5/%%PERL_VER%%/mach/CORE/av.h Xlib/perl5/%%PERL_VER%%/mach/CORE/bitcount.h Xlib/perl5/%%PERL_VER%%/mach/CORE/charclass_invlists.h Xlib/perl5/%%PERL_VER%%/mach/CORE/config.h Xlib/perl5/%%PERL_VER%%/mach/CORE/cop.h Xlib/perl5/%%PERL_VER%%/mach/CORE/cv.h Xlib/perl5/%%PERL_VER%%/mach/CORE/dosish.h Xlib/perl5/%%PERL_VER%%/mach/CORE/embed.h Xlib/perl5/%%PERL_VER%%/mach/CORE/embedvar.h Xlib/perl5/%%PERL_VER%%/mach/CORE/fakesdio.h Xlib/perl5/%%PERL_VER%%/mach/CORE/fakethr.h Xlib/perl5/%%PERL_VER%%/mach/CORE/feature.h Xlib/perl5/%%PERL_VER%%/mach/CORE/form.h Xlib/perl5/%%PERL_VER%%/mach/CORE/git_version.h Xlib/perl5/%%PERL_VER%%/mach/CORE/gv.h Xlib/perl5/%%PERL_VER%%/mach/CORE/handy.h Xlib/perl5/%%PERL_VER%%/mach/CORE/hv.h Xlib/perl5/%%PERL_VER%%/mach/CORE/intrpvar.h Xlib/perl5/%%PERL_VER%%/mach/CORE/iperlsys.h Xlib/perl5/%%PERL_VER%%/mach/CORE/keywords.h Xlib/perl5/%%PERL_VER%%/mach/CORE/l1_char_class_tab.h Xlib/perl5/%%PERL_VER%%/mach/CORE/libperl.so Xlib/perl5/%%PERL_VER%%/mach/CORE/malloc_ctl.h Xlib/perl5/%%PERL_VER%%/mach/CORE/metaconfig.h Xlib/perl5/%%PERL_VER%%/mach/CORE/mg.h Xlib/perl5/%%PERL_VER%%/mach/CORE/mg_data.h Xlib/perl5/%%PERL_VER%%/mach/CORE/mg_raw.h Xlib/perl5/%%PERL_VER%%/mach/CORE/mg_vtable.h Xlib/perl5/%%PERL_VER%%/mach/CORE/mydtrace.h Xlib/perl5/%%PERL_VER%%/mach/CORE/nostdio.h Xlib/perl5/%%PERL_VER%%/mach/CORE/op.h Xlib/perl5/%%PERL_VER%%/mach/CORE/op_reg_common.h Xlib/perl5/%%PERL_VER%%/mach/CORE/opcode.h Xlib/perl5/%%PERL_VER%%/mach/CORE/opnames.h Xlib/perl5/%%PERL_VER%%/mach/CORE/overload.h Xlib/perl5/%%PERL_VER%%/mach/CORE/pad.h Xlib/perl5/%%PERL_VER%%/mach/CORE/parser.h Xlib/perl5/%%PERL_VER%%/mach/CORE/patchlevel.h Xlib/perl5/%%PERL_VER%%/mach/CORE/perl.h Xlib/perl5/%%PERL_VER%%/mach/CORE/perlapi.h Xlib/perl5/%%PERL_VER%%/mach/CORE/perlio.h Xlib/perl5/%%PERL_VER%%/mach/CORE/perliol.h Xlib/perl5/%%PERL_VER%%/mach/CORE/perlsdio.h Xlib/perl5/%%PERL_VER%%/mach/CORE/perlsfio.h Xlib/perl5/%%PERL_VER%%/mach/CORE/perlvars.h Xlib/perl5/%%PERL_VER%%/mach/CORE/perly.h Xlib/perl5/%%PERL_VER%%/mach/CORE/pp.h Xlib/perl5/%%PERL_VER%%/mach/CORE/pp_proto.h Xlib/perl5/%%PERL_VER%%/mach/CORE/proto.h Xlib/perl5/%%PERL_VER%%/mach/CORE/reentr.h Xlib/perl5/%%PERL_VER%%/mach/CORE/regcharclass.h Xlib/perl5/%%PERL_VER%%/mach/CORE/regcomp.h Xlib/perl5/%%PERL_VER%%/mach/CORE/regexp.h Xlib/perl5/%%PERL_VER%%/mach/CORE/regnodes.h Xlib/perl5/%%PERL_VER%%/mach/CORE/scope.h Xlib/perl5/%%PERL_VER%%/mach/CORE/sv.h Xlib/perl5/%%PERL_VER%%/mach/CORE/thread.h Xlib/perl5/%%PERL_VER%%/mach/CORE/time64.h Xlib/perl5/%%PERL_VER%%/mach/CORE/time64_config.h Xlib/perl5/%%PERL_VER%%/mach/CORE/uconfig.h Xlib/perl5/%%PERL_VER%%/mach/CORE/unixish.h Xlib/perl5/%%PERL_VER%%/mach/CORE/utf8.h Xlib/perl5/%%PERL_VER%%/mach/CORE/utfebcdic.h Xlib/perl5/%%PERL_VER%%/mach/CORE/util.h Xlib/perl5/%%PERL_VER%%/mach/CORE/uudmap.h Xlib/perl5/%%PERL_VER%%/mach/CORE/warnings.h Xlib/perl5/%%PERL_VER%%/mach/Compress/Raw/Bzip2.pm Xlib/perl5/%%PERL_VER%%/mach/Compress/Raw/Zlib.pm Xlib/perl5/%%PERL_VER%%/mach/Config.pm Xlib/perl5/%%PERL_VER%%/mach/Config.pod Xlib/perl5/%%PERL_VER%%/mach/Config_git.pl Xlib/perl5/%%PERL_VER%%/mach/Config_heavy.pl Xlib/perl5/%%PERL_VER%%/mach/Cwd.pm Xlib/perl5/%%PERL_VER%%/mach/DB_File.pm Xlib/perl5/%%PERL_VER%%/mach/Data/Dumper.pm Xlib/perl5/%%PERL_VER%%/mach/Devel/PPPort.pm Xlib/perl5/%%PERL_VER%%/mach/Devel/Peek.pm Xlib/perl5/%%PERL_VER%%/mach/Digest/MD5.pm Xlib/perl5/%%PERL_VER%%/mach/Digest/SHA.pm Xlib/perl5/%%PERL_VER%%/mach/DynaLoader.pm Xlib/perl5/%%PERL_VER%%/mach/Encode.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/Alias.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/Byte.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/CJKConstants.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/CN.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/CN/HZ.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/Config.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/EBCDIC.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/Encoder.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/Encoding.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/GSM0338.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/Guess.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/JP.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/JP/H2Z.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/JP/JIS7.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/KR.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/KR/2022_KR.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/MIME/Header.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/MIME/Header/ISO_2022_JP.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/MIME/Name.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/Symbol.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/TW.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/Unicode.pm Xlib/perl5/%%PERL_VER%%/mach/Encode/Unicode/UTF7.pm Xlib/perl5/%%PERL_VER%%/mach/Errno.pm Xlib/perl5/%%PERL_VER%%/mach/Fcntl.pm Xlib/perl5/%%PERL_VER%%/mach/File/Glob.pm Xlib/perl5/%%PERL_VER%%/mach/File/Spec.pm Xlib/perl5/%%PERL_VER%%/mach/File/Spec/Cygwin.pm Xlib/perl5/%%PERL_VER%%/mach/File/Spec/Epoc.pm Xlib/perl5/%%PERL_VER%%/mach/File/Spec/Functions.pm Xlib/perl5/%%PERL_VER%%/mach/File/Spec/Mac.pm Xlib/perl5/%%PERL_VER%%/mach/File/Spec/OS2.pm Xlib/perl5/%%PERL_VER%%/mach/File/Spec/Unix.pm Xlib/perl5/%%PERL_VER%%/mach/File/Spec/VMS.pm Xlib/perl5/%%PERL_VER%%/mach/File/Spec/Win32.pm Xlib/perl5/%%PERL_VER%%/mach/Filter/Util/Call.pm Xlib/perl5/%%PERL_VER%%/mach/Hash/Util.pm Xlib/perl5/%%PERL_VER%%/mach/Hash/Util/FieldHash.pm Xlib/perl5/%%PERL_VER%%/mach/I18N/Langinfo.pm Xlib/perl5/%%PERL_VER%%/mach/IO.pm Xlib/perl5/%%PERL_VER%%/mach/IO/Dir.pm Xlib/perl5/%%PERL_VER%%/mach/IO/File.pm Xlib/perl5/%%PERL_VER%%/mach/IO/Handle.pm Xlib/perl5/%%PERL_VER%%/mach/IO/Pipe.pm Xlib/perl5/%%PERL_VER%%/mach/IO/Poll.pm Xlib/perl5/%%PERL_VER%%/mach/IO/Seekable.pm Xlib/perl5/%%PERL_VER%%/mach/IO/Select.pm Xlib/perl5/%%PERL_VER%%/mach/IO/Socket.pm Xlib/perl5/%%PERL_VER%%/mach/IO/Socket/INET.pm Xlib/perl5/%%PERL_VER%%/mach/IO/Socket/UNIX.pm Xlib/perl5/%%PERL_VER%%/mach/IPC/Msg.pm Xlib/perl5/%%PERL_VER%%/mach/IPC/Semaphore.pm Xlib/perl5/%%PERL_VER%%/mach/IPC/SharedMem.pm Xlib/perl5/%%PERL_VER%%/mach/IPC/SysV.pm Xlib/perl5/%%PERL_VER%%/mach/List/Util.pm Xlib/perl5/%%PERL_VER%%/mach/List/Util/PP.pm Xlib/perl5/%%PERL_VER%%/mach/List/Util/XS.pm Xlib/perl5/%%PERL_VER%%/mach/MIME/Base64.pm Xlib/perl5/%%PERL_VER%%/mach/MIME/QuotedPrint.pm Xlib/perl5/%%PERL_VER%%/mach/Math/BigInt/FastCalc.pm Xlib/perl5/%%PERL_VER%%/mach/NDBM_File.pm Xlib/perl5/%%PERL_VER%%/mach/O.pm Xlib/perl5/%%PERL_VER%%/mach/Opcode.pm Xlib/perl5/%%PERL_VER%%/mach/POSIX.pm Xlib/perl5/%%PERL_VER%%/mach/POSIX.pod Xlib/perl5/%%PERL_VER%%/mach/PerlIO/encoding.pm Xlib/perl5/%%PERL_VER%%/mach/PerlIO/mmap.pm Xlib/perl5/%%PERL_VER%%/mach/PerlIO/scalar.pm Xlib/perl5/%%PERL_VER%%/mach/PerlIO/via.pm Xlib/perl5/%%PERL_VER%%/mach/SDBM_File.pm Xlib/perl5/%%PERL_VER%%/mach/Scalar/Util.pm Xlib/perl5/%%PERL_VER%%/mach/Scalar/Util/PP.pm Xlib/perl5/%%PERL_VER%%/mach/Socket.pm Xlib/perl5/%%PERL_VER%%/mach/Storable.pm Xlib/perl5/%%PERL_VER%%/mach/Sys/Hostname.pm Xlib/perl5/%%PERL_VER%%/mach/Sys/Syslog.pm Xlib/perl5/%%PERL_VER%%/mach/Text/Soundex.pm Xlib/perl5/%%PERL_VER%%/mach/Tie/Hash/NamedCapture.pm Xlib/perl5/%%PERL_VER%%/mach/Time/HiRes.pm Xlib/perl5/%%PERL_VER%%/mach/Time/Piece.pm Xlib/perl5/%%PERL_VER%%/mach/Time/Seconds.pm Xlib/perl5/%%PERL_VER%%/mach/Unicode/Collate.pm Xlib/perl5/%%PERL_VER%%/mach/Unicode/Collate/Locale.pm Xlib/perl5/%%PERL_VER%%/mach/Unicode/Normalize.pm Xlib/perl5/%%PERL_VER%%/mach/arybase.pm Xlib/perl5/%%PERL_VER%%/mach/attributes.pm Xlib/perl5/%%PERL_VER%%/mach/auto/B/B.bs Xlib/perl5/%%PERL_VER%%/mach/auto/B/B.so Xlib/perl5/%%PERL_VER%%/mach/auto/Compress/Raw/Bzip2/Bzip2.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Compress/Raw/Bzip2/Bzip2.so Xlib/perl5/%%PERL_VER%%/mach/auto/Compress/Raw/Bzip2/autosplit.ix Xlib/perl5/%%PERL_VER%%/mach/auto/Compress/Raw/Zlib/Zlib.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Compress/Raw/Zlib/Zlib.so Xlib/perl5/%%PERL_VER%%/mach/auto/Compress/Raw/Zlib/autosplit.ix Xlib/perl5/%%PERL_VER%%/mach/auto/Cwd/Cwd.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Cwd/Cwd.so Xlib/perl5/%%PERL_VER%%/mach/auto/DB_File/DB_File.bs Xlib/perl5/%%PERL_VER%%/mach/auto/DB_File/DB_File.so Xlib/perl5/%%PERL_VER%%/mach/auto/DB_File/autosplit.ix Xlib/perl5/%%PERL_VER%%/mach/auto/Data/Dumper/Dumper.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Data/Dumper/Dumper.so Xlib/perl5/%%PERL_VER%%/mach/auto/Devel/PPPort/PPPort.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Devel/PPPort/PPPort.so Xlib/perl5/%%PERL_VER%%/mach/auto/Devel/Peek/Peek.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Devel/Peek/Peek.so Xlib/perl5/%%PERL_VER%%/mach/auto/Digest/MD5/MD5.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Digest/MD5/MD5.so Xlib/perl5/%%PERL_VER%%/mach/auto/Digest/SHA/SHA.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Digest/SHA/SHA.so Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/Byte/Byte.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/Byte/Byte.so Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/CN/CN.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/CN/CN.so Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/EBCDIC/EBCDIC.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/EBCDIC/EBCDIC.so Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/Encode.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/Encode.so Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/JP/JP.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/JP/JP.so Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/KR/KR.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/KR/KR.so Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/Symbol/Symbol.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/Symbol/Symbol.so Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/TW/TW.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/TW/TW.so Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/Unicode/Unicode.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Encode/Unicode/Unicode.so Xlib/perl5/%%PERL_VER%%/mach/auto/Fcntl/Fcntl.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Fcntl/Fcntl.so Xlib/perl5/%%PERL_VER%%/mach/auto/File/Glob/Glob.bs Xlib/perl5/%%PERL_VER%%/mach/auto/File/Glob/Glob.so Xlib/perl5/%%PERL_VER%%/mach/auto/Filter/Util/Call/Call.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Filter/Util/Call/Call.so Xlib/perl5/%%PERL_VER%%/mach/auto/Hash/Util/FieldHash/FieldHash.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Hash/Util/FieldHash/FieldHash.so Xlib/perl5/%%PERL_VER%%/mach/auto/Hash/Util/Util.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Hash/Util/Util.so Xlib/perl5/%%PERL_VER%%/mach/auto/I18N/Langinfo/Langinfo.bs Xlib/perl5/%%PERL_VER%%/mach/auto/I18N/Langinfo/Langinfo.so Xlib/perl5/%%PERL_VER%%/mach/auto/IO/IO.bs Xlib/perl5/%%PERL_VER%%/mach/auto/IO/IO.so Xlib/perl5/%%PERL_VER%%/mach/auto/IPC/SysV/SysV.bs Xlib/perl5/%%PERL_VER%%/mach/auto/IPC/SysV/SysV.so Xlib/perl5/%%PERL_VER%%/mach/auto/List/Util/Util.bs Xlib/perl5/%%PERL_VER%%/mach/auto/List/Util/Util.so Xlib/perl5/%%PERL_VER%%/mach/auto/MIME/Base64/Base64.bs Xlib/perl5/%%PERL_VER%%/mach/auto/MIME/Base64/Base64.so Xlib/perl5/%%PERL_VER%%/mach/auto/Math/BigInt/FastCalc/FastCalc.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Math/BigInt/FastCalc/FastCalc.so Xlib/perl5/%%PERL_VER%%/mach/auto/NDBM_File/NDBM_File.bs Xlib/perl5/%%PERL_VER%%/mach/auto/NDBM_File/NDBM_File.so Xlib/perl5/%%PERL_VER%%/mach/auto/Opcode/Opcode.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Opcode/Opcode.so Xlib/perl5/%%PERL_VER%%/mach/auto/POSIX/POSIX.bs Xlib/perl5/%%PERL_VER%%/mach/auto/POSIX/POSIX.so Xlib/perl5/%%PERL_VER%%/mach/auto/PerlIO/encoding/encoding.bs Xlib/perl5/%%PERL_VER%%/mach/auto/PerlIO/encoding/encoding.so Xlib/perl5/%%PERL_VER%%/mach/auto/PerlIO/mmap/mmap.bs Xlib/perl5/%%PERL_VER%%/mach/auto/PerlIO/mmap/mmap.so Xlib/perl5/%%PERL_VER%%/mach/auto/PerlIO/scalar/scalar.bs Xlib/perl5/%%PERL_VER%%/mach/auto/PerlIO/scalar/scalar.so Xlib/perl5/%%PERL_VER%%/mach/auto/PerlIO/via/via.bs Xlib/perl5/%%PERL_VER%%/mach/auto/PerlIO/via/via.so Xlib/perl5/%%PERL_VER%%/mach/auto/SDBM_File/SDBM_File.bs Xlib/perl5/%%PERL_VER%%/mach/auto/SDBM_File/SDBM_File.so Xlib/perl5/%%PERL_VER%%/mach/auto/Socket/Socket.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Socket/Socket.so Xlib/perl5/%%PERL_VER%%/mach/auto/Storable/Storable.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Storable/Storable.so Xlib/perl5/%%PERL_VER%%/mach/auto/Sys/Hostname/Hostname.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Sys/Hostname/Hostname.so Xlib/perl5/%%PERL_VER%%/mach/auto/Sys/Syslog/Syslog.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Sys/Syslog/Syslog.so Xlib/perl5/%%PERL_VER%%/mach/auto/Text/Soundex/Soundex.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Text/Soundex/Soundex.so Xlib/perl5/%%PERL_VER%%/mach/auto/Tie/Hash/NamedCapture/NamedCapture.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Tie/Hash/NamedCapture/NamedCapture.so Xlib/perl5/%%PERL_VER%%/mach/auto/Time/HiRes/HiRes.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Time/HiRes/HiRes.so Xlib/perl5/%%PERL_VER%%/mach/auto/Time/Piece/Piece.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Time/Piece/Piece.so Xlib/perl5/%%PERL_VER%%/mach/auto/Unicode/Collate/Collate.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Unicode/Collate/Collate.so Xlib/perl5/%%PERL_VER%%/mach/auto/Unicode/Normalize/Normalize.bs Xlib/perl5/%%PERL_VER%%/mach/auto/Unicode/Normalize/Normalize.so Xlib/perl5/%%PERL_VER%%/mach/auto/arybase/arybase.bs Xlib/perl5/%%PERL_VER%%/mach/auto/arybase/arybase.so Xlib/perl5/%%PERL_VER%%/mach/auto/attributes/attributes.bs Xlib/perl5/%%PERL_VER%%/mach/auto/attributes/attributes.so Xlib/perl5/%%PERL_VER%%/mach/auto/mro/mro.bs Xlib/perl5/%%PERL_VER%%/mach/auto/mro/mro.so Xlib/perl5/%%PERL_VER%%/mach/auto/re/re.bs Xlib/perl5/%%PERL_VER%%/mach/auto/re/re.so Xlib/perl5/%%PERL_VER%%/mach/auto/sdbm/extralibs.ld Xlib/perl5/%%PERL_VER%%/mach/auto/threads/shared/shared.bs Xlib/perl5/%%PERL_VER%%/mach/auto/threads/shared/shared.so Xlib/perl5/%%PERL_VER%%/mach/auto/threads/threads.bs Xlib/perl5/%%PERL_VER%%/mach/auto/threads/threads.so Xlib/perl5/%%PERL_VER%%/mach/encoding.pm Xlib/perl5/%%PERL_VER%%/mach/lib.pm Xlib/perl5/%%PERL_VER%%/mach/mro.pm Xlib/perl5/%%PERL_VER%%/mach/ops.pm Xlib/perl5/%%PERL_VER%%/mach/re.pm Xlib/perl5/%%PERL_VER%%/mach/threads.pm Xlib/perl5/%%PERL_VER%%/mach/threads/shared.pm Xlib/perl5/%%PERL_VER%%/open.pm Xlib/perl5/%%PERL_VER%%/overload.pm Xlib/perl5/%%PERL_VER%%/overload/numbers.pm Xlib/perl5/%%PERL_VER%%/overloading.pm Xlib/perl5/%%PERL_VER%%/parent.pm Xlib/perl5/%%PERL_VER%%/perl5db.pl Xlib/perl5/%%PERL_VER%%/perlfaq.pm Xlib/perl5/%%PERL_VER%%/pod/a2p.pod Xlib/perl5/%%PERL_VER%%/pod/perl.pod Xlib/perl5/%%PERL_VER%%/pod/perl5004delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5005delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5100delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5101delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5120delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5121delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5122delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5123delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5124delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5140delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5141delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5142delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5150delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5151delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5152delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5153delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5154delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5155delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5156delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5157delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl5158delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl561delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl56delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl581delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl582delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl583delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl584delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl585delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl586delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl587delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl588delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl589delta.pod Xlib/perl5/%%PERL_VER%%/pod/perl58delta.pod Xlib/perl5/%%PERL_VER%%/pod/perlaix.pod Xlib/perl5/%%PERL_VER%%/pod/perlamiga.pod Xlib/perl5/%%PERL_VER%%/pod/perlapi.pod Xlib/perl5/%%PERL_VER%%/pod/perlapio.pod Xlib/perl5/%%PERL_VER%%/pod/perlartistic.pod Xlib/perl5/%%PERL_VER%%/pod/perlbeos.pod Xlib/perl5/%%PERL_VER%%/pod/perlbook.pod Xlib/perl5/%%PERL_VER%%/pod/perlboot.pod Xlib/perl5/%%PERL_VER%%/pod/perlbot.pod Xlib/perl5/%%PERL_VER%%/pod/perlbs2000.pod Xlib/perl5/%%PERL_VER%%/pod/perlcall.pod Xlib/perl5/%%PERL_VER%%/pod/perlce.pod Xlib/perl5/%%PERL_VER%%/pod/perlcheat.pod Xlib/perl5/%%PERL_VER%%/pod/perlclib.pod Xlib/perl5/%%PERL_VER%%/pod/perlcn.pod Xlib/perl5/%%PERL_VER%%/pod/perlcommunity.pod Xlib/perl5/%%PERL_VER%%/pod/perlcygwin.pod Xlib/perl5/%%PERL_VER%%/pod/perldata.pod Xlib/perl5/%%PERL_VER%%/pod/perldbmfilter.pod Xlib/perl5/%%PERL_VER%%/pod/perldebguts.pod Xlib/perl5/%%PERL_VER%%/pod/perldebtut.pod Xlib/perl5/%%PERL_VER%%/pod/perldebug.pod Xlib/perl5/%%PERL_VER%%/pod/perldelta.pod Xlib/perl5/%%PERL_VER%%/pod/perldgux.pod Xlib/perl5/%%PERL_VER%%/pod/perldiag.pod Xlib/perl5/%%PERL_VER%%/pod/perldoc.pod Xlib/perl5/%%PERL_VER%%/pod/perldos.pod Xlib/perl5/%%PERL_VER%%/pod/perldsc.pod Xlib/perl5/%%PERL_VER%%/pod/perldtrace.pod Xlib/perl5/%%PERL_VER%%/pod/perlebcdic.pod Xlib/perl5/%%PERL_VER%%/pod/perlembed.pod Xlib/perl5/%%PERL_VER%%/pod/perlepoc.pod Xlib/perl5/%%PERL_VER%%/pod/perlexperiment.pod Xlib/perl5/%%PERL_VER%%/pod/perlfaq.pod Xlib/perl5/%%PERL_VER%%/pod/perlfaq1.pod Xlib/perl5/%%PERL_VER%%/pod/perlfaq2.pod Xlib/perl5/%%PERL_VER%%/pod/perlfaq3.pod Xlib/perl5/%%PERL_VER%%/pod/perlfaq4.pod Xlib/perl5/%%PERL_VER%%/pod/perlfaq5.pod Xlib/perl5/%%PERL_VER%%/pod/perlfaq6.pod Xlib/perl5/%%PERL_VER%%/pod/perlfaq7.pod Xlib/perl5/%%PERL_VER%%/pod/perlfaq8.pod Xlib/perl5/%%PERL_VER%%/pod/perlfaq9.pod Xlib/perl5/%%PERL_VER%%/pod/perlfilter.pod Xlib/perl5/%%PERL_VER%%/pod/perlfork.pod Xlib/perl5/%%PERL_VER%%/pod/perlform.pod Xlib/perl5/%%PERL_VER%%/pod/perlfreebsd.pod Xlib/perl5/%%PERL_VER%%/pod/perlfunc.pod Xlib/perl5/%%PERL_VER%%/pod/perlgit.pod Xlib/perl5/%%PERL_VER%%/pod/perlglossary.pod Xlib/perl5/%%PERL_VER%%/pod/perlgpl.pod Xlib/perl5/%%PERL_VER%%/pod/perlguts.pod Xlib/perl5/%%PERL_VER%%/pod/perlhack.pod Xlib/perl5/%%PERL_VER%%/pod/perlhacktips.pod Xlib/perl5/%%PERL_VER%%/pod/perlhacktut.pod Xlib/perl5/%%PERL_VER%%/pod/perlhaiku.pod Xlib/perl5/%%PERL_VER%%/pod/perlhist.pod Xlib/perl5/%%PERL_VER%%/pod/perlhpux.pod Xlib/perl5/%%PERL_VER%%/pod/perlhurd.pod Xlib/perl5/%%PERL_VER%%/pod/perlintern.pod Xlib/perl5/%%PERL_VER%%/pod/perlinterp.pod Xlib/perl5/%%PERL_VER%%/pod/perlintro.pod Xlib/perl5/%%PERL_VER%%/pod/perliol.pod Xlib/perl5/%%PERL_VER%%/pod/perlipc.pod Xlib/perl5/%%PERL_VER%%/pod/perlirix.pod Xlib/perl5/%%PERL_VER%%/pod/perljp.pod Xlib/perl5/%%PERL_VER%%/pod/perlko.pod Xlib/perl5/%%PERL_VER%%/pod/perllexwarn.pod Xlib/perl5/%%PERL_VER%%/pod/perllinux.pod Xlib/perl5/%%PERL_VER%%/pod/perllocale.pod Xlib/perl5/%%PERL_VER%%/pod/perllol.pod Xlib/perl5/%%PERL_VER%%/pod/perlmacos.pod Xlib/perl5/%%PERL_VER%%/pod/perlmacosx.pod Xlib/perl5/%%PERL_VER%%/pod/perlmod.pod Xlib/perl5/%%PERL_VER%%/pod/perlmodinstall.pod Xlib/perl5/%%PERL_VER%%/pod/perlmodlib.pod Xlib/perl5/%%PERL_VER%%/pod/perlmodstyle.pod Xlib/perl5/%%PERL_VER%%/pod/perlmpeix.pod Xlib/perl5/%%PERL_VER%%/pod/perlmroapi.pod Xlib/perl5/%%PERL_VER%%/pod/perlnetware.pod Xlib/perl5/%%PERL_VER%%/pod/perlnewmod.pod Xlib/perl5/%%PERL_VER%%/pod/perlnumber.pod Xlib/perl5/%%PERL_VER%%/pod/perlobj.pod Xlib/perl5/%%PERL_VER%%/pod/perlootut.pod Xlib/perl5/%%PERL_VER%%/pod/perlop.pod Xlib/perl5/%%PERL_VER%%/pod/perlopenbsd.pod Xlib/perl5/%%PERL_VER%%/pod/perlopentut.pod Xlib/perl5/%%PERL_VER%%/pod/perlos2.pod Xlib/perl5/%%PERL_VER%%/pod/perlos390.pod Xlib/perl5/%%PERL_VER%%/pod/perlos400.pod Xlib/perl5/%%PERL_VER%%/pod/perlpacktut.pod Xlib/perl5/%%PERL_VER%%/pod/perlperf.pod Xlib/perl5/%%PERL_VER%%/pod/perlplan9.pod Xlib/perl5/%%PERL_VER%%/pod/perlpod.pod Xlib/perl5/%%PERL_VER%%/pod/perlpodspec.pod Xlib/perl5/%%PERL_VER%%/pod/perlpodstyle.pod Xlib/perl5/%%PERL_VER%%/pod/perlpolicy.pod Xlib/perl5/%%PERL_VER%%/pod/perlport.pod Xlib/perl5/%%PERL_VER%%/pod/perlpragma.pod Xlib/perl5/%%PERL_VER%%/pod/perlqnx.pod Xlib/perl5/%%PERL_VER%%/pod/perlre.pod Xlib/perl5/%%PERL_VER%%/pod/perlreapi.pod Xlib/perl5/%%PERL_VER%%/pod/perlrebackslash.pod Xlib/perl5/%%PERL_VER%%/pod/perlrecharclass.pod Xlib/perl5/%%PERL_VER%%/pod/perlref.pod Xlib/perl5/%%PERL_VER%%/pod/perlreftut.pod Xlib/perl5/%%PERL_VER%%/pod/perlreguts.pod Xlib/perl5/%%PERL_VER%%/pod/perlrequick.pod Xlib/perl5/%%PERL_VER%%/pod/perlreref.pod Xlib/perl5/%%PERL_VER%%/pod/perlretut.pod Xlib/perl5/%%PERL_VER%%/pod/perlriscos.pod Xlib/perl5/%%PERL_VER%%/pod/perlrun.pod Xlib/perl5/%%PERL_VER%%/pod/perlsec.pod Xlib/perl5/%%PERL_VER%%/pod/perlsolaris.pod Xlib/perl5/%%PERL_VER%%/pod/perlsource.pod Xlib/perl5/%%PERL_VER%%/pod/perlstyle.pod Xlib/perl5/%%PERL_VER%%/pod/perlsub.pod Xlib/perl5/%%PERL_VER%%/pod/perlsymbian.pod Xlib/perl5/%%PERL_VER%%/pod/perlsyn.pod Xlib/perl5/%%PERL_VER%%/pod/perlthrtut.pod Xlib/perl5/%%PERL_VER%%/pod/perltie.pod Xlib/perl5/%%PERL_VER%%/pod/perltoc.pod Xlib/perl5/%%PERL_VER%%/pod/perltodo.pod Xlib/perl5/%%PERL_VER%%/pod/perltooc.pod Xlib/perl5/%%PERL_VER%%/pod/perltoot.pod Xlib/perl5/%%PERL_VER%%/pod/perltrap.pod Xlib/perl5/%%PERL_VER%%/pod/perltru64.pod Xlib/perl5/%%PERL_VER%%/pod/perltw.pod Xlib/perl5/%%PERL_VER%%/pod/perlunicode.pod Xlib/perl5/%%PERL_VER%%/pod/perlunifaq.pod Xlib/perl5/%%PERL_VER%%/pod/perluniintro.pod Xlib/perl5/%%PERL_VER%%/pod/perluniprops.pod Xlib/perl5/%%PERL_VER%%/pod/perlunitut.pod Xlib/perl5/%%PERL_VER%%/pod/perlutil.pod Xlib/perl5/%%PERL_VER%%/pod/perluts.pod Xlib/perl5/%%PERL_VER%%/pod/perlvar.pod Xlib/perl5/%%PERL_VER%%/pod/perlvmesa.pod Xlib/perl5/%%PERL_VER%%/pod/perlvms.pod Xlib/perl5/%%PERL_VER%%/pod/perlvos.pod Xlib/perl5/%%PERL_VER%%/pod/perlwin32.pod Xlib/perl5/%%PERL_VER%%/pod/perlxs.pod Xlib/perl5/%%PERL_VER%%/pod/perlxstut.pod Xlib/perl5/%%PERL_VER%%/pod/perlxstypemap.pod Xlib/perl5/%%PERL_VER%%/sigtrap.pm Xlib/perl5/%%PERL_VER%%/sort.pm Xlib/perl5/%%PERL_VER%%/strict.pm Xlib/perl5/%%PERL_VER%%/subs.pm Xlib/perl5/%%PERL_VER%%/unicore/Blocks.txt Xlib/perl5/%%PERL_VER%%/unicore/CaseFolding.txt Xlib/perl5/%%PERL_VER%%/unicore/CombiningClass.pl Xlib/perl5/%%PERL_VER%%/unicore/Decomposition.pl Xlib/perl5/%%PERL_VER%%/unicore/Heavy.pl Xlib/perl5/%%PERL_VER%%/unicore/Name.pl Xlib/perl5/%%PERL_VER%%/unicore/Name.pm Xlib/perl5/%%PERL_VER%%/unicore/NamedSequences.txt Xlib/perl5/%%PERL_VER%%/unicore/SpecialCasing.txt Xlib/perl5/%%PERL_VER%%/unicore/To/Age.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Bc.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Bmg.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Cf.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Digit.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Ea.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Fold.pl Xlib/perl5/%%PERL_VER%%/unicore/To/GCB.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Gc.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Hst.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Isc.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Jg.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Jt.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Lb.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Lc.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Lower.pl Xlib/perl5/%%PERL_VER%%/unicore/To/NFCQC.pl Xlib/perl5/%%PERL_VER%%/unicore/To/NFDQC.pl Xlib/perl5/%%PERL_VER%%/unicore/To/NFKCCF.pl Xlib/perl5/%%PERL_VER%%/unicore/To/NFKCQC.pl Xlib/perl5/%%PERL_VER%%/unicore/To/NFKDQC.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Na1.pl Xlib/perl5/%%PERL_VER%%/unicore/To/NameAlia.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Nt.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Nv.pl Xlib/perl5/%%PERL_VER%%/unicore/To/PerlDeci.pl Xlib/perl5/%%PERL_VER%%/unicore/To/SB.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Sc.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Scx.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Tc.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Title.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Uc.pl Xlib/perl5/%%PERL_VER%%/unicore/To/Upper.pl Xlib/perl5/%%PERL_VER%%/unicore/To/WB.pl Xlib/perl5/%%PERL_VER%%/unicore/UCD.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/AHex/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/NA.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V11.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V20.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V21.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V30.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V31.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V32.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V40.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V41.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V50.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V51.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V52.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V60.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Age/V61.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Alpha/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/AL.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/AN.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/B.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/BN.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/CS.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/EN.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/ES.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/ET.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/L.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/LRE.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/LRO.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/NSM.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/ON.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/PDF.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/R.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/RLE.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/RLO.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/S.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Bc/WS.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/BidiC/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/BidiM/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/ASCII.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/AegeanNu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Alchemic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Alphabet.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Ancient2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/AncientG.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/AncientS.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Arabic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/ArabicEx.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/ArabicMa.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/ArabicP2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/ArabicPF.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/ArabicSu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Armenian.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Arrows.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Avestan.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Balinese.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Bamum.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/BamumSup.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Batak.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Bengali.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/BlockEle.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Bopomof2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Bopomofo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/BoxDrawi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Brahmi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Buginese.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Buhid.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Byzantin.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJK.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJKComp2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJKComp3.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJKComp4.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJKCompa.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJKExtA.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJKExtB.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJKExtC.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJKExtD.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJKRadic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJKStrok.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CJKSymbo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Carian.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Chakma.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Cham.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Cherokee.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CompatJa.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/ControlP.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Coptic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Counting.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Cuneifo2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Cuneifor.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Currency.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/CypriotS.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Cyrilli2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Cyrilli3.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Cyrilli4.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Cyrillic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Devanag2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Devanaga.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Diacrit2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Diacrit3.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Diacriti.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Dingbats.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Domino.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Egyptian.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Emoticon.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Enclose2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Enclose3.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Enclose4.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Enclosed.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Ethiopi2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Ethiopi3.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Ethiopi4.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Ethiopic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Geometri.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Georgia2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Georgian.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Glagolit.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Gothic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Greek.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/GreekExt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Gujarati.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Gurmukhi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/HalfAndF.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/HalfMark.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Hangul.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Hanunoo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Hebrew.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/HighPUSu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/HighSurr.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Hiragana.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/IDC.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/IPAExt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Imperial.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/IndicNum.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Inscrip2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Inscript.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Jamo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/JamoExtA.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/JamoExtB.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Javanese.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Kaithi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/KanaSup.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Kanbun.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Kangxi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Kannada.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Katakan2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Katakana.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Kharosht.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Khmer.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/KhmerSym.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Lao.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Latin1.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/LatinEx2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/LatinEx3.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/LatinEx4.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/LatinEx5.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/LatinExt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Lepcha.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Letterli.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Limbu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/LinearBI.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/LinearBS.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/LowSurro.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Lycian.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Lydian.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Mahjong.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Malayala.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Mandaic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/MathAlph.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/MathOper.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/MeeteiM2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/MeeteiMa.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Meroitic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Miao.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/MiscArro.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/MiscMat2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/MiscMath.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/MiscPict.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/MiscSymb.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/MiscTech.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Modifie2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Modifier.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Mongolia.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Music.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Myanmar.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/MyanmarE.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/NB.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/NKo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/NewTaiLu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/NumberFo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/OCR.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Ogham.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/OldItali.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/OldPersi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/OldTurki.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Oriya.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Osmanya.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/PUA.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/PhagsPa.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Phaistos.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Phoenici.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Phoneti2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Phonetic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/PlayingC.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Punctuat.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Rejang.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Rumi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Runic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Samarita.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Saurasht.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Sharada.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Sinhala.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/SmallFor.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/SoraSomp.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Specials.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Sundane2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Sundanes.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/SupArro2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/SupArrow.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/SupMathO.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/SupPUAA.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/SupPUAB.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/SupPunct.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/SuperAnd.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/SylotiNa.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Syriac.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Tagalog.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Tagbanwa.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Tags.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/TaiLe.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/TaiTham.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/TaiViet.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/TaiXuanJ.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Takri.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Tamil.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Telugu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Thaana.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Thai.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Tibetan.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Tifinagh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Transpor.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/UCAS.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/UCASExt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Ugaritic.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/VS.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/VSSup.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Vai.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/VedicExt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Vertical.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/YiRadica.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/YiSyllab.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Blk/Yijing.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/CE/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/CI/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/CWCF/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/CWCM/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/CWKCF/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/CWL/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/CWT/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/CWU/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Cased/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/A.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/AL.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/AR.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/ATA.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/ATAR.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/ATB.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/B.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/BL.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/BR.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC10.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC103.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC107.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC11.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC118.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC12.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC122.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC129.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC13.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC130.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC133.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC14.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC15.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC16.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC17.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC18.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC19.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC20.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC21.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC22.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC23.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC24.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC25.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC26.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC27.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC28.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC29.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC30.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC31.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC32.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC33.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC34.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC35.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC36.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC84.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/CCC91.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/DA.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/DB.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/IS.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/KV.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/L.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/NK.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/NR.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/OV.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/R.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ccc/VR.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/CompEx/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/DI/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dash/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dep/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dia/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Com.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Enc.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Fin.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Font.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Fra.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Init.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Iso.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Med.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Nar.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Nb.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/NonCanon.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/None.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Sml.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Sqr.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Sub.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Sup.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Dt/Vert.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ea/A.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ea/F.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ea/H.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ea/N.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ea/Na.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ea/W.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ext/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/GCB/CN.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/GCB/EX.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/GCB/SM.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/GCB/XX.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/C.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Cc.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Cf.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Cn.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Co.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Cs.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/L.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/LC.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Ll.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Lm.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Lo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Lu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/M.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Mc.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Me.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Mn.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/N.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Nd.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Nl.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/No.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/P.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Pc.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Pd.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Pe.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Pf.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Pi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Po.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Ps.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/S.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Sc.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Sk.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Sm.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/So.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Z.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Zl.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Zp.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Gc/Zs.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/GrBase/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Hex/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Hst/NA.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Hyphen/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/IDC/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/IDS/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/IDSB/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/IDST/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Ideo/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/2_0.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/2_1.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/3_0.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/3_1.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/3_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/4_0.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/4_1.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/5_0.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/5_1.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/5_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/6_0.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/In/6_1.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Ain.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Alaph.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Alef.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Beh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Beth.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Burushas.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Dal.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/DalathRi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/E.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/FarsiYeh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Fe.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Feh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/FinalSem.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Gaf.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Gamal.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Hah.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/HamzaOnH.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/He.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Heh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/HehGoal.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Heth.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Kaf.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Kaph.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Khaph.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/KnottedH.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Lam.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Lamadh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Meem.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Mim.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/NoJoinin.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Noon.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Nun.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Nya.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Pe.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Qaf.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Qaph.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Reh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Reversed.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Rohingya.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Sad.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Sadhe.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Seen.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Semkath.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Shin.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/SwashKaf.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/SyriacWa.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Tah.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Taw.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/TehMarbu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Teth.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Waw.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Yeh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/YehBarre.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/YehWithT.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Yudh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/YudhHe.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Zain.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jg/Zhain.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/JoinC/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jt/C.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jt/D.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jt/R.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jt/T.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Jt/U.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/LOE/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/AI.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/AL.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/B2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/BA.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/BB.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/BK.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/CB.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/CJ.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/CL.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/CM.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/CP.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/CR.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/EX.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/GL.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/H2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/H3.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/HL.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/HY.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/ID.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/IN.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/IS.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/JL.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/JT.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/JV.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/LF.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/NL.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/NS.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/NU.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/OP.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/PO.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/PR.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/QU.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/SA.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/SG.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/SP.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/SY.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/WJ.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/XX.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lb/ZW.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Lower/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Math/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/NChar/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/NFCQC/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/NFDQC/N.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/NFDQC/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/NFKCQC/M.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/NFKCQC/N.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/NFKCQC/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/NFKDQC/N.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nt/Di.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nt/Nu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/%%PERL_VER%%.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/0.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/10.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/100.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/10000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/100000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/10000000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/10000002.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/11.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/11_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/12.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/13.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/13_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/14.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/15.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/15_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/16.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/17.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/17_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/18.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/19.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1_10.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1_16.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1_3.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1_4.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1_5.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1_6.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1_7.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1_8.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/1_9.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/20.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/200.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/2000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/20000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/21.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/22.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/23.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/24.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/25.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/26.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/27.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/28.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/29.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/2_3.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/2_5.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/3.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/30.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/300.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/3000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/30000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/31.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/32.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/33.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/34.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/35.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/36.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/37.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/38.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/39.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/3_16.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/3_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/3_4.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/3_5.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/3_8.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/4.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/40.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/400.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/4000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/40000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/41.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/42.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/43.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/44.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/45.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/46.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/47.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/48.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/49.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/4_5.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/5.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/50.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/500.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/5000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/50000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/5_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/5_6.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/5_8.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/6.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/60.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/600.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/6000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/60000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/7.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/70.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/700.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/7000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/70000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/7_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/7_8.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/8.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/80.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/800.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/8000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/80000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/9.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/90.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/900.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/9000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/90000.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/9_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/NaN.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Nv/_1_2.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/PatSyn/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/PatWS/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/Alnum.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/Any.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/Assigned.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/Blank.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/Graph.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PerlSpac.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PerlWord.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PosixAln.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PosixAlp.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PosixBla.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PosixCnt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PosixDig.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PosixGra.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PosixLow.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PosixPri.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PosixPun.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PosixSpa.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/PosixUpp.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/Print.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/SpacePer.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/Title.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/VertSpac.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/Word.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/XPosixPu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/_PerlIDS.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/_PerlNon.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/_PerlQuo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/_XBegin.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/_XExtend.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Perl/_XLVLVTV.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/QMark/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Radical/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/AT.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/CL.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/EX.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/FO.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/LE.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/LO.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/SC.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/SE.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/ST.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/Sp.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/UP.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SB/XX.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/SD/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/STerm/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Arab.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Armn.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Beng.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Bopo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Buhd.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Cprt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Deva.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Geor.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Gujr.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Guru.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Han.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Hang.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Hano.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Hira.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Kana.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Kthi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Linb.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Mand.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Mong.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Orya.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Phag.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Syrc.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Tagb.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Takr.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Tglg.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Thaa.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Yi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Zinh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Sc/Zyyy.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Arab.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Armi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Armn.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Avst.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Bali.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Bamu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Batk.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Beng.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Bopo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Brah.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Brai.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Bugi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Buhd.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Cakm.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Cans.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Cari.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Cham.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Cher.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Copt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Cprt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Cyrl.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Deva.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Dsrt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Egyp.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Ethi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Geor.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Glag.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Goth.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Grek.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Gujr.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Guru.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Han.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Hang.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Hano.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Hebr.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Hira.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Ital.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Java.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Kali.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Kana.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Khar.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Khmr.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Knda.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Kthi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Lana.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Lao.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Latn.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Lepc.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Limb.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Linb.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Lisu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Lyci.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Lydi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Mand.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Merc.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Mero.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Miao.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Mlym.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Mong.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Mtei.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Mymr.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Nko.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Ogam.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Olck.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Orkh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Orya.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Osma.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Phag.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Phli.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Phnx.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Prti.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Rjng.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Runr.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Samr.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Sarb.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Saur.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Shaw.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Shrd.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Sinh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Sora.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Sund.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Sylo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Syrc.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Tagb.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Takr.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Tale.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Talu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Taml.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Tavt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Telu.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Tfng.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Tglg.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Thaa.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Thai.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Tibt.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Ugar.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Vai.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Xpeo.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Xsux.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Yi.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Zinh.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Zyyy.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Scx/Zzzz.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Space/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Term/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/UIdeo/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/Upper/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/VS/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/WB/FO.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/WB/KA.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/WB/LE.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/WB/MB.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/WB/ML.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/WB/MN.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/WB/NL.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/WB/NU.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/WB/XX.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/XIDC/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/lib/XIDS/Y.pl Xlib/perl5/%%PERL_VER%%/unicore/version Xlib/perl5/%%PERL_VER%%/utf8.pm Xlib/perl5/%%PERL_VER%%/utf8_heavy.pl Xlib/perl5/%%PERL_VER%%/vars.pm Xlib/perl5/%%PERL_VER%%/version.pm Xlib/perl5/%%PERL_VER%%/version.pod Xlib/perl5/%%PERL_VER%%/version/Internals.pod Xlib/perl5/%%PERL_VER%%/vmsish.pm Xlib/perl5/%%PERL_VER%%/warnings.pm Xlib/perl5/%%PERL_VER%%/warnings/register.pm X@dirrm lib/perl5/%%PERL_VER%%/warnings X@dirrm lib/perl5/%%PERL_VER%%/version X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/XIDS X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/XIDC X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/WB X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/VS X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Upper X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/UIdeo X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Term X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Space X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Scx X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Sc X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/STerm X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/SD X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/SB X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Radical X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/QMark X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Perl X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/PatWS X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/PatSyn X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Nv X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Nt X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/NFKDQC X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/NFKCQC X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/NFDQC X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/NFCQC X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/NChar X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Math X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Lower X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Lb X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/LOE X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Jt X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/JoinC X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Jg X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/In X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Ideo X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/IDST X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/IDSB X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/IDS X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/IDC X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Hyphen X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Hst X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Hex X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/GrBase X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Gc X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/GCB X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Ext X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Ea X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Dt X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Dia X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Dep X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Dash X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/DI X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/CompEx X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Ccc X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Cased X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/CWU X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/CWT X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/CWL X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/CWKCF X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/CWCM X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/CWCF X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/CI X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/CE X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Blk X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/BidiM X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/BidiC X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Bc X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Alpha X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/Age X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib/AHex X@dirrm lib/perl5/%%PERL_VER%%/unicore/lib X@dirrm lib/perl5/%%PERL_VER%%/unicore/To X@dirrm lib/perl5/%%PERL_VER%%/unicore X@dirrm lib/perl5/%%PERL_VER%%/pod X@dirrm lib/perl5/%%PERL_VER%%/perl/man/man3 X@dirrm lib/perl5/%%PERL_VER%%/perl/man X@dirrm lib/perl5/%%PERL_VER%%/perl X@dirrm lib/perl5/%%PERL_VER%%/overload X@dirrm lib/perl5/%%PERL_VER%%/man/man3 X@dirrm lib/perl5/%%PERL_VER%%/man X@dirrm lib/perl5/%%PERL_VER%%/mach/threads X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/threads/shared X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/threads X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/sdbm X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/re X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/mro X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/attributes X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/arybase X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Unicode/Normalize X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Unicode/Collate X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Unicode X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Time/Piece X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Time/HiRes X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Time X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Tie/Hash/NamedCapture X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Tie/Hash X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Tie X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Text/Soundex X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Text X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Sys/Syslog X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Sys/Hostname X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Sys X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Storable X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Socket X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/SDBM_File X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/PerlIO/via X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/PerlIO/scalar X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/PerlIO/mmap X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/PerlIO/encoding X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/PerlIO X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/POSIX X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Opcode X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/NDBM_File X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Math/BigInt/FastCalc X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Math/BigInt X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Math X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/MIME/Base64 X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/MIME X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/List/Util X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/List X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/IPC/SysV X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/IPC X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/IO X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/I18N/Langinfo X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/I18N X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Hash/Util/FieldHash X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Hash/Util X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Hash X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Filter/Util/Call X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Filter/Util X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Filter X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/File/Glob X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/File X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Fcntl X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Encode/Unicode X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Encode/TW X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Encode/Symbol X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Encode/KR X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Encode/JP X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Encode/EBCDIC X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Encode/CN X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Encode/Byte X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Encode X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Digest/SHA X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Digest/MD5 X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Digest X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Devel/Peek X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Devel/PPPort X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Devel X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Data/Dumper X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Data X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/DB_File X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Cwd X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Compress/Raw/Zlib X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Compress/Raw/Bzip2 X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Compress/Raw X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/Compress X@dirrm lib/perl5/%%PERL_VER%%/mach/auto/B X@dirrm lib/perl5/%%PERL_VER%%/mach/auto X@dirrm lib/perl5/%%PERL_VER%%/mach/Unicode/Collate X@dirrm lib/perl5/%%PERL_VER%%/mach/Unicode X@dirrm lib/perl5/%%PERL_VER%%/mach/Time X@dirrm lib/perl5/%%PERL_VER%%/mach/Tie/Hash X@dirrm lib/perl5/%%PERL_VER%%/mach/Tie X@dirrm lib/perl5/%%PERL_VER%%/mach/Text X@dirrm lib/perl5/%%PERL_VER%%/mach/Sys X@dirrm lib/perl5/%%PERL_VER%%/mach/Scalar/Util X@dirrm lib/perl5/%%PERL_VER%%/mach/Scalar X@dirrm lib/perl5/%%PERL_VER%%/mach/PerlIO X@dirrm lib/perl5/%%PERL_VER%%/mach/Math/BigInt X@dirrm lib/perl5/%%PERL_VER%%/mach/Math X@dirrm lib/perl5/%%PERL_VER%%/mach/MIME X@dirrm lib/perl5/%%PERL_VER%%/mach/List/Util X@dirrm lib/perl5/%%PERL_VER%%/mach/List X@dirrm lib/perl5/%%PERL_VER%%/mach/IPC X@dirrm lib/perl5/%%PERL_VER%%/mach/IO/Socket X@dirrm lib/perl5/%%PERL_VER%%/mach/IO X@dirrm lib/perl5/%%PERL_VER%%/mach/I18N X@dirrm lib/perl5/%%PERL_VER%%/mach/Hash/Util X@dirrm lib/perl5/%%PERL_VER%%/mach/Hash X@dirrm lib/perl5/%%PERL_VER%%/mach/Filter/Util X@dirrm lib/perl5/%%PERL_VER%%/mach/Filter X@dirrm lib/perl5/%%PERL_VER%%/mach/File/Spec X@dirrm lib/perl5/%%PERL_VER%%/mach/File X@dirrm lib/perl5/%%PERL_VER%%/mach/Encode/Unicode X@dirrm lib/perl5/%%PERL_VER%%/mach/Encode/MIME/Header X@dirrm lib/perl5/%%PERL_VER%%/mach/Encode/MIME X@dirrm lib/perl5/%%PERL_VER%%/mach/Encode/KR X@dirrm lib/perl5/%%PERL_VER%%/mach/Encode/JP X@dirrm lib/perl5/%%PERL_VER%%/mach/Encode/CN X@dirrm lib/perl5/%%PERL_VER%%/mach/Encode X@dirrm lib/perl5/%%PERL_VER%%/mach/Digest X@dirrm lib/perl5/%%PERL_VER%%/mach/Devel X@dirrm lib/perl5/%%PERL_VER%%/mach/Data X@dirrm lib/perl5/%%PERL_VER%%/mach/Compress/Raw X@dirrm lib/perl5/%%PERL_VER%%/mach/Compress X@dirrm lib/perl5/%%PERL_VER%%/mach/CORE X@dirrm lib/perl5/%%PERL_VER%%/mach/B X@dirrm lib/perl5/%%PERL_VER%%/mach X@dirrm lib/perl5/%%PERL_VER%%/inc/latest X@dirrm lib/perl5/%%PERL_VER%%/inc X@dirrm lib/perl5/%%PERL_VER%%/encoding X@dirrm lib/perl5/%%PERL_VER%%/autodie/exception X@dirrm lib/perl5/%%PERL_VER%%/autodie X@dirrm lib/perl5/%%PERL_VER%%/Version X@dirrm lib/perl5/%%PERL_VER%%/User X@dirrm lib/perl5/%%PERL_VER%%/Unicode/Collate/Locale X@dirrm lib/perl5/%%PERL_VER%%/Unicode/Collate/CJK X@dirrm lib/perl5/%%PERL_VER%%/Unicode/Collate X@dirrm lib/perl5/%%PERL_VER%%/Unicode X@dirrm lib/perl5/%%PERL_VER%%/Time X@dirrm lib/perl5/%%PERL_VER%%/Tie X@dirrm lib/perl5/%%PERL_VER%%/Thread X@dirrm lib/perl5/%%PERL_VER%%/Text X@dirrm lib/perl5/%%PERL_VER%%/Test/Builder/Tester X@dirrm lib/perl5/%%PERL_VER%%/Test/Builder X@dirrm lib/perl5/%%PERL_VER%%/Test X@dirrm lib/perl5/%%PERL_VER%%/Term/UI X@dirrm lib/perl5/%%PERL_VER%%/Term X@dirrm lib/perl5/%%PERL_VER%%/TAP/Parser/YAMLish X@dirrm lib/perl5/%%PERL_VER%%/TAP/Parser/SourceHandler X@dirrm lib/perl5/%%PERL_VER%%/TAP/Parser/Scheduler X@dirrm lib/perl5/%%PERL_VER%%/TAP/Parser/Result X@dirrm lib/perl5/%%PERL_VER%%/TAP/Parser/Iterator X@dirrm lib/perl5/%%PERL_VER%%/TAP/Parser X@dirrm lib/perl5/%%PERL_VER%%/TAP/Harness X@dirrm lib/perl5/%%PERL_VER%%/TAP/Formatter/File X@dirrm lib/perl5/%%PERL_VER%%/TAP/Formatter/Console X@dirrm lib/perl5/%%PERL_VER%%/TAP/Formatter X@dirrm lib/perl5/%%PERL_VER%%/TAP X@dirrm lib/perl5/%%PERL_VER%%/Search X@dirrm lib/perl5/%%PERL_VER%%/Pod/Text X@dirrm lib/perl5/%%PERL_VER%%/Pod/Simple X@dirrm lib/perl5/%%PERL_VER%%/Pod/Perldoc X@dirrm lib/perl5/%%PERL_VER%%/Pod X@dirrm lib/perl5/%%PERL_VER%%/PerlIO/via X@dirrm lib/perl5/%%PERL_VER%%/PerlIO X@dirrm lib/perl5/%%PERL_VER%%/Perl X@dirrm lib/perl5/%%PERL_VER%%/Parse/CPAN X@dirrm lib/perl5/%%PERL_VER%%/Parse X@dirrm lib/perl5/%%PERL_VER%%/Params X@dirrm lib/perl5/%%PERL_VER%%/Package X@dirrm lib/perl5/%%PERL_VER%%/Object X@dirrm lib/perl5/%%PERL_VER%%/Net/FTP X@dirrm lib/perl5/%%PERL_VER%%/Net X@dirrm lib/perl5/%%PERL_VER%%/Module/Pluggable X@dirrm lib/perl5/%%PERL_VER%%/Module/Load X@dirrm lib/perl5/%%PERL_VER%%/Module/Build/Platform X@dirrm lib/perl5/%%PERL_VER%%/Module/Build X@dirrm lib/perl5/%%PERL_VER%%/Module X@dirrm lib/perl5/%%PERL_VER%%/Memoize X@dirrm lib/perl5/%%PERL_VER%%/Math/BigInt X@dirrm lib/perl5/%%PERL_VER%%/Math/BigFloat X@dirrm lib/perl5/%%PERL_VER%%/Math X@dirrm lib/perl5/%%PERL_VER%%/Log/Message X@dirrm lib/perl5/%%PERL_VER%%/Log X@dirrm lib/perl5/%%PERL_VER%%/Locale/Maketext X@dirrm lib/perl5/%%PERL_VER%%/Locale/Codes X@dirrm lib/perl5/%%PERL_VER%%/Locale X@dirrm lib/perl5/%%PERL_VER%%/JSON/PP X@dirrm lib/perl5/%%PERL_VER%%/JSON X@dirrm lib/perl5/%%PERL_VER%%/IPC X@dirrm lib/perl5/%%PERL_VER%%/IO/Uncompress/Adapter X@dirrm lib/perl5/%%PERL_VER%%/IO/Uncompress X@dirrm lib/perl5/%%PERL_VER%%/IO/Compress/Zlib X@dirrm lib/perl5/%%PERL_VER%%/IO/Compress/Zip X@dirrm lib/perl5/%%PERL_VER%%/IO/Compress/Gzip X@dirrm lib/perl5/%%PERL_VER%%/IO/Compress/Base X@dirrm lib/perl5/%%PERL_VER%%/IO/Compress/Adapter X@dirrm lib/perl5/%%PERL_VER%%/IO/Compress X@dirrm lib/perl5/%%PERL_VER%%/IO X@dirrm lib/perl5/%%PERL_VER%%/I18N/LangTags X@dirrm lib/perl5/%%PERL_VER%%/I18N X@dirrm lib/perl5/%%PERL_VER%%/HTTP X@dirrm lib/perl5/%%PERL_VER%%/Getopt X@dirrm lib/perl5/%%PERL_VER%%/Filter X@dirrm lib/perl5/%%PERL_VER%%/File X@dirrm lib/perl5/%%PERL_VER%%/ExtUtils/Typemaps X@dirrm lib/perl5/%%PERL_VER%%/ExtUtils/ParseXS X@dirrm lib/perl5/%%PERL_VER%%/ExtUtils/MakeMaker X@dirrm lib/perl5/%%PERL_VER%%/ExtUtils/Liblist X@dirrm lib/perl5/%%PERL_VER%%/ExtUtils/Constant X@dirrm lib/perl5/%%PERL_VER%%/ExtUtils/Command X@dirrm lib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform/Windows X@dirrm lib/perl5/%%PERL_VER%%/ExtUtils/CBuilder/Platform X@dirrm lib/perl5/%%PERL_VER%%/ExtUtils/CBuilder X@dirrm lib/perl5/%%PERL_VER%%/ExtUtils X@dirrm lib/perl5/%%PERL_VER%%/Exporter X@dirrm lib/perl5/%%PERL_VER%%/Encode X@dirrm lib/perl5/%%PERL_VER%%/Digest X@dirrm lib/perl5/%%PERL_VER%%/Devel X@dirrm lib/perl5/%%PERL_VER%%/DBM_Filter X@dirrm lib/perl5/%%PERL_VER%%/Config X@dirrm lib/perl5/%%PERL_VER%%/Compress X@dirrm lib/perl5/%%PERL_VER%%/Class X@dirrm lib/perl5/%%PERL_VER%%/Carp X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Shell/Default/Plugins X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Shell/Default X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Shell X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Module/Author X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Module X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Utils X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Source/SQLite X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Source X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Internals/Constants X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Internals X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Dist/Build X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Dist X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Configure X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS/Backend X@dirrm lib/perl5/%%PERL_VER%%/CPANPLUS X@dirrm lib/perl5/%%PERL_VER%%/CPAN/Meta X@dirrm lib/perl5/%%PERL_VER%%/CPAN/LWP X@dirrm lib/perl5/%%PERL_VER%%/CPAN/Kwalify X@dirrm lib/perl5/%%PERL_VER%%/CPAN/HTTP X@dirrm lib/perl5/%%PERL_VER%%/CPAN/FTP X@dirrm lib/perl5/%%PERL_VER%%/CPAN/Exception X@dirrm lib/perl5/%%PERL_VER%%/CPAN/API X@dirrm lib/perl5/%%PERL_VER%%/CPAN X@dirrm lib/perl5/%%PERL_VER%%/CGI X@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/ExtUtils X@dirrm lib/perl5/%%PERL_VER%%/BSDPAN/BSDPAN X@dirrm lib/perl5/%%PERL_VER%%/BSDPAN X@dirrm lib/perl5/%%PERL_VER%%/B/Lint X@dirrm lib/perl5/%%PERL_VER%%/B X@dirrm lib/perl5/%%PERL_VER%%/Attribute X@dirrm lib/perl5/%%PERL_VER%%/Archive/Tar X@dirrm lib/perl5/%%PERL_VER%%/Archive X@dirrm lib/perl5/%%PERL_VER%%/App/Prove/State/Result X@dirrm lib/perl5/%%PERL_VER%%/App/Prove/State X@dirrm lib/perl5/%%PERL_VER%%/App/Prove X@dirrm lib/perl5/%%PERL_VER%%/App X@dirrm lib/perl5/%%PERL_VER%% X@dirrm %%SITE_PERL%%/mach/auto X@dirrm %%SITE_PERL%%/mach X@dirrm %%SITE_PERL%%/auto X@dirrm %%SITE_PERL%% X@dirrm lib/perl5/site_perl X@dirrm lib/perl5 ee8ed5b6442e5029a56cde59530a88cb echo x - perl5.15/distinfo sed 's/^X//' >perl5.15/distinfo << 'e64e828894f663af6b306a3386821510' XSHA256 (perl/perl-5.15.8.tar.bz2) = 284427a115ac12f1f5bf6853ecbb31cf6dc59c527ec176f9a777c0309d81b4d7 XSIZE (perl/perl-5.15.8.tar.bz2) = 13959268 XSHA256 (perl/BSDPAN-20111107.tar.bz2) = 2f03218a592dc65ebfdc3c6b9394d91dcf4c53aa5290a08458b837baad5a21f9 XSIZE (perl/BSDPAN-20111107.tar.bz2) = 8448 e64e828894f663af6b306a3386821510 echo x - perl5.15/pkg-descr sed 's/^X//' >perl5.15/pkg-descr << '6ed78f692558f05d3d4ee482d9661489' XPerl is a language that combines some of the features of C, sed, awk and Xshell. See the manual page for more hype. There are also many books Xpublished by O'Reilly & Assoc. See pod/perlbook.pod for more Xinformation. X XWWW: http://www.perl.org/ 6ed78f692558f05d3d4ee482d9661489 exit --- perl-5.15.8.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 20:30:19 2012 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 07FCD106567E for ; Thu, 1 Mar 2012 20:30:19 +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 D261F8FC2C for ; Thu, 1 Mar 2012 20:30:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21KUI1f032457 for ; Thu, 1 Mar 2012 20:30:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21KUIMj032454; Thu, 1 Mar 2012 20:30:18 GMT (envelope-from gnats) Date: Thu, 1 Mar 2012 20:30:18 GMT Message-Id: <201203012030.q21KUIMj032454@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "Dan Langille" Cc: Subject: Re: ports/165398: [PATCH] sysutils/bacula-server: upgrade to 5.2.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Dan Langille List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2012 20:30:19 -0000 The following reply was made to PR ports/165398; it has been noted by GNATS. From: "Dan Langille" To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/165398: [PATCH] sysutils/bacula-server: upgrade to 5.2.6 Date: Thu, 1 Mar 2012 15:29:39 -0500 approved by maintainer. -- Dan Langille -- http://langille.org/ From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 20:44:59 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D33E51065673; Thu, 1 Mar 2012 20:44:59 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A9DF48FC14; Thu, 1 Mar 2012 20:44:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21KixnY051515; Thu, 1 Mar 2012 20:44:59 GMT (envelope-from pgollucci@freefall.freebsd.org) Received: (from pgollucci@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21Kixf2051511; Thu, 1 Mar 2012 20:44:59 GMT (envelope-from pgollucci) Date: Thu, 1 Mar 2012 20:44:59 GMT Message-Id: <201203012044.q21Kixf2051511@freefall.freebsd.org> To: pgollucci@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pgollucci@FreeBSD.org From: pgollucci@FreeBSD.org Cc: Subject: Re: ports/165594: [exp-run], then [repo-copy], then [NEW PORT] lang/perl5.15: Practical Extraction and Report Language 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: Thu, 01 Mar 2012 20:44:59 -0000 Synopsis: [exp-run], then [repo-copy], then [NEW PORT] lang/perl5.15: Practical Extraction and Report Language Responsible-Changed-From-To: freebsd-ports-bugs->pgollucci Responsible-Changed-By: pgollucci Responsible-Changed-When: Thu Mar 1 20:44:59 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165594 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 20:45:53 2012 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 A9E861065674; Thu, 1 Mar 2012 20:45:53 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8119D8FC0A; Thu, 1 Mar 2012 20:45:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21Kjrto051834; Thu, 1 Mar 2012 20:45:53 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21KjqaB051829; Thu, 1 Mar 2012 20:45:52 GMT (envelope-from crees) Date: Thu, 1 Mar 2012 20:45:52 GMT Message-Id: <201203012045.q21KjqaB051829@freefall.freebsd.org> To: dan@langille.org, hsn@sendmail.cz, crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/165398: [PATCH] sysutils/bacula-server: upgrade to 5.2.6 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: Thu, 01 Mar 2012 20:45:53 -0000 Synopsis: [PATCH] sysutils/bacula-server: upgrade to 5.2.6 State-Changed-From-To: feedback->open State-Changed-By: crees State-Changed-When: Thu Mar 1 20:45:52 UTC 2012 State-Changed-Why: Maintainer has approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=165398 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 21:40:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DDB88106566B for ; Thu, 1 Mar 2012 21:40:03 +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 AFDA98FC14 for ; Thu, 1 Mar 2012 21:40:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21Le3gd098601 for ; Thu, 1 Mar 2012 21:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21Le3Dp098600; Thu, 1 Mar 2012 21:40:03 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 21:40:03 GMT Resent-Message-Id: <201203012140.q21Le3Dp098600@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, Neil Darlow Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 572291065673 for ; Thu, 1 Mar 2012 21:33:58 +0000 (UTC) (envelope-from neil@darlow.co.uk) Received: from relay.darlow.co.uk (relay.darlow.co.uk [195.3.137.233]) by mx1.freebsd.org (Postfix) with ESMTP id BEF888FC15 for ; Thu, 1 Mar 2012 21:33:57 +0000 (UTC) Received: from bumblebee.darlow.co.uk (cpc8-bigg3-2-0-cust42.9-2.cable.virginmedia.com [62.252.155.43]) by relay.darlow.co.uk (8.14.4/8.14.4) with ESMTP id q21LXr8U022581 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=OK) for ; Thu, 1 Mar 2012 21:33:53 GMT (envelope-from neil@darlow.co.uk) Received: from ratchet.darlow.co.uk (ratchet.darlow.co.uk [192.168.1.4]) by bumblebee.darlow.co.uk (Postfix) with ESMTP id 3TzRjF0GPMz13tm for ; Thu, 1 Mar 2012 21:33:53 +0000 (GMT) Received: by ratchet.darlow.co.uk (Postfix, from userid 1011) id 3TzRjD6hQHzBL39; Thu, 1 Mar 2012 21:33:52 +0000 (GMT) Message-Id: <3TzRjD6hQHzBL39@ratchet.darlow.co.uk> Date: Thu, 1 Mar 2012 21:33:52 +0000 (GMT) From: Neil Darlow To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165596: sysutils/bacula-client pkg_info -L displays non-existent documentation X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Neil Darlow List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2012 21:40:04 -0000 >Number: 165596 >Category: ports >Synopsis: sysutils/bacula-client pkg_info -L displays non-existent documentation >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 21:40:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Neil Darlow >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD ratchet.darlow.co.uk 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Wed Jan 4 17:14:11 GMT 2012 root@ratchet.darlow.co.uk:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The file list produced by pkg_info -L bacula-client-5.2.3 shows entries in /usr/local/share/doc but that directory and those files do not exist. >How-To-Repeat: $ pkg_info -L bacula-client-5.2.3 Files: /usr/local/man/man8/bacula-fd.8.gz /usr/local/man/man8/bconsole.8.gz /usr/local/lib/libbac.la /usr/local/lib/libbac.so /usr/local/lib/libbac.so.5 /usr/local/lib/libbaccfg.la /usr/local/lib/libbaccfg.so /usr/local/lib/libbaccfg.so.5 /usr/local/lib/libbacfind.la /usr/local/lib/libbacfind.so /usr/local/lib/libbacfind.so.5 /usr/local/lib/libbacpy.la /usr/local/lib/libbacpy.so /usr/local/lib/libbacpy.so.5 /usr/local/lib/bpipe-fd.so /usr/local/sbin/bacula-fd /usr/local/sbin/bconsole /usr/local/etc/rc.d/bacula-fd /usr/local/etc/bconsole.conf.sample /usr/local/etc/bacula-fd.conf.sample /usr/local/share/doc/bacula/VERIFYING /usr/local/share/doc/bacula/technotes /usr/local/share/doc/bacula/ChangeLog /usr/local/share/doc/bacula/README /usr/local/share/doc/bacula/ReleaseNotes /usr/local/share/doc/bacula/LICENSE /usr/local/share/doc/bacula/INSTALL $ ls /usr/local/share/doc/bacula ls: /usr/local/share/doc/bacula: No such file or directory >Fix: Correct port to install the missing directory and files. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 21:48:46 2012 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 705D2106566B; Thu, 1 Mar 2012 21:48:46 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 485858FC14; Thu, 1 Mar 2012 21:48:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21Lmk1Q007412; Thu, 1 Mar 2012 21:48:46 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21LmkFj007408; Thu, 1 Mar 2012 21:48:46 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 21:48:46 GMT Message-Id: <201203012148.q21LmkFj007408@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tabthorpe@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165596: sysutils/bacula-client pkg_info -L displays non-existent documentation 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: Thu, 01 Mar 2012 21:48:46 -0000 Synopsis: sysutils/bacula-client pkg_info -L displays non-existent documentation Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 21:48:45 UTC 2012 Responsible-Changed-Why: tabthorpe@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165596 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 21:50:05 2012 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 A76FD1065676 for ; Thu, 1 Mar 2012 21:50:05 +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 660128FC24 for ; Thu, 1 Mar 2012 21:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21Lo5Or007738 for ; Thu, 1 Mar 2012 21:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21Lo5es007737; Thu, 1 Mar 2012 21:50:05 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 21:50:05 GMT Resent-Message-Id: <201203012150.q21Lo5es007737@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, Seiji Ariga Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC894106564A for ; Thu, 1 Mar 2012 21:43:31 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id BC52C8FC15 for ; Thu, 1 Mar 2012 21:43:31 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q21LhVC7021083 for ; Thu, 1 Mar 2012 21:43:31 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q21LhVGR021079; Thu, 1 Mar 2012 21:43:31 GMT (envelope-from nobody) Message-Id: <201203012143.q21LhVGR021079@red.freebsd.org> Date: Thu, 1 Mar 2012 21:43:31 GMT From: Seiji Ariga To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165597: MASTER_SITES for emulators/virtualbox-ose is out-dated 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: Thu, 01 Mar 2012 21:50:05 -0000 >Number: 165597 >Category: ports >Synopsis: MASTER_SITES for emulators/virtualbox-ose is out-dated >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 21:50:05 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Seiji Ariga >Release: FreeBSD 9.0 >Organization: >Environment: FreeBSD decoy.khaotic.net 9.0-STABLE FreeBSD 9.0-STABLE #0: Wed Feb 15 03:10:24 EST 2012 root@decoy.khaotic.net:/usr/obj/usr/src/sys/DECOY amd64 >Description: sun.com becomes oracle.com. >How-To-Repeat: Make port. >Fix: --- Makefile.orig 2012-03-01 16:41:09.000000000 -0500 +++ Makefile 2012-03-01 16:41:49.000000000 -0500 @@ -11,7 +11,7 @@ MASTER_SITES= http://tmp.chruetertee.ch/ \ http://freebsd.unixfreunde.de/sources/ \ http://disasterarea.chruetertee.ch/ \ - http://dlc.sun.com/virtualbox/${VBOX_GUEST_VER}/:guestadditions + http://dlc.oracle.com/virtualbox/${VBOX_GUEST_VER}/:guestadditions DISTFILES= VirtualBox-${DISTVERSION}${EXTRACT_SUFX} ${GADISTFILES} EXTRACT_ONLY= VirtualBox-${DISTVERSION}${EXTRACT_SUFX} >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 22:02:02 2012 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 A054C106567C; Thu, 1 Mar 2012 22:02:02 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 785708FC0C; Thu, 1 Mar 2012 22:02:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21M22s8024293; Thu, 1 Mar 2012 22:02:02 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21M22lU024289; Thu, 1 Mar 2012 22:02:02 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 22:02:02 GMT Message-Id: <201203012202.q21M22lU024289@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vbox@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165597: MASTER_SITES for emulators/virtualbox-ose is out-dated 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: Thu, 01 Mar 2012 22:02:02 -0000 Synopsis: MASTER_SITES for emulators/virtualbox-ose is out-dated Responsible-Changed-From-To: freebsd-ports-bugs->vbox Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 22:02:01 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165597 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 22:10:10 2012 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 86D9C106564A for ; Thu, 1 Mar 2012 22:10:10 +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 5DBB38FC14 for ; Thu, 1 Mar 2012 22:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21MAA67025064 for ; Thu, 1 Mar 2012 22:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21MAA4d025063; Thu, 1 Mar 2012 22:10:10 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 22:10:10 GMT Resent-Message-Id: <201203012210.q21MAA4d025063@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, "4721@hushmail.com" <4721@hushmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 03B90106566B for ; Thu, 1 Mar 2012 22:08:56 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CE26A8FC08 for ; Thu, 1 Mar 2012 22:08:55 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q21M8tsw069842 for ; Thu, 1 Mar 2012 22:08:55 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q21M8tdV069841; Thu, 1 Mar 2012 22:08:55 GMT (envelope-from nobody) Message-Id: <201203012208.q21M8tdV069841@red.freebsd.org> Date: Thu, 1 Mar 2012 22:08:55 GMT From: "4721@hushmail.com" <4721@hushmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165598: [patch] upgrade sysutils/dvdisaster to 0.72.3 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: Thu, 01 Mar 2012 22:10:10 -0000 >Number: 165598 >Category: ports >Synopsis: [patch] upgrade sysutils/dvdisaster to 0.72.3 >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: Thu Mar 01 22:10:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: 4721@hushmail.com >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: sysutils/dvdisaster/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/dvdisaster/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- sysutils/dvdisaster/Makefile 18 Sep 2011 20:52:02 -0000 1.18 +++ sysutils/dvdisaster/Makefile 1 Mar 2012 22:04:05 -0000 @@ -6,7 +6,7 @@ # PORTNAME= dvdisaster -PORTVERSION= 0.72.2 +PORTVERSION= 0.72.3 CATEGORIES= sysutils MASTER_SITES= SF \ http://dvdisaster.net/downloads/ Index: sysutils/dvdisaster/distinfo =================================================================== RCS file: /home/ncvs/ports/sysutils/dvdisaster/distinfo,v retrieving revision 1.9 diff -u -r1.9 distinfo --- sysutils/dvdisaster/distinfo 18 Sep 2011 20:52:02 -0000 1.9 +++ sysutils/dvdisaster/distinfo 1 Mar 2012 22:04:05 -0000 @@ -1,2 +1,2 @@ -SHA256 (dvdisaster-0.72.2.tar.bz2) = 62d00c399c99a3bba493405174aeb96bd8c2d428d01d24b46858a55531b725ae -SIZE (dvdisaster-0.72.2.tar.bz2) = 4145193 +SHA256 (dvdisaster-0.72.3.tar.bz2) = 8009f4a53275dfef30dc291d715bd47a823ab42e89a1aea347cb24f9fa7be1bd +SIZE (dvdisaster-0.72.3.tar.bz2) = 4168126 Index: sysutils/dvdisaster/pkg-message =================================================================== RCS file: /home/ncvs/ports/sysutils/dvdisaster/pkg-message,v retrieving revision 1.1 diff -u -r1.1 pkg-message --- sysutils/dvdisaster/pkg-message 18 Sep 2011 20:52:35 -0000 1.1 +++ sysutils/dvdisaster/pkg-message 1 Mar 2012 22:04:05 -0000 @@ -1,3 +1,4 @@ -Note that dvdisaster tries to read /dev/pass* to list available CD/DVD drives, -so the program will not detect any available drives if the user running -dvdisaster does not have permissions to read /dev/pass* +Note that dvdisaster accesses drives via /dev/pass*, so the user running +dvdisaster must have read and write permission to the /dev/pass* device that +the target optical drive uses. (View which /dev/pass* goes to drive with +camcontrol devlist) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 22:11:14 2012 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 432F910656EC; Thu, 1 Mar 2012 22:11:14 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1A5E38FC0A; Thu, 1 Mar 2012 22:11:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21MBDp8031210; Thu, 1 Mar 2012 22:11:13 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21MBDDb031192; Thu, 1 Mar 2012 22:11:13 GMT (envelope-from scheidell) Date: Thu, 1 Mar 2012 22:11:13 GMT Message-Id: <201203012211.q21MBDDb031192@freefall.freebsd.org> To: dan@langille.org, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165398: [PATCH] sysutils/bacula-server: upgrade to 5.2.6 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: Thu, 01 Mar 2012 22:11:14 -0000 Synopsis: [PATCH] sysutils/bacula-server: upgrade to 5.2.6 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Thu Mar 1 22:11:13 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165398 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 22:19:39 2012 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 1A3DA106567A; Thu, 1 Mar 2012 22:19:39 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E67F28FC1A; Thu, 1 Mar 2012 22:19:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21MJcw4035343; Thu, 1 Mar 2012 22:19:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21MJcfI035339; Thu, 1 Mar 2012 22:19:38 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 22:19:38 GMT Message-Id: <201203012219.q21MJcfI035339@freefall.freebsd.org> To: 4721@hushmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165598: [patch] upgrade sysutils/dvdisaster to 0.72.3 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: Thu, 01 Mar 2012 22:19:39 -0000 Synopsis: [patch] upgrade sysutils/dvdisaster to 0.72.3 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Mar 1 22:19:38 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165598 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 22:20:11 2012 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 14FDE1065679 for ; Thu, 1 Mar 2012 22:20:11 +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 C1D948FC20 for ; Thu, 1 Mar 2012 22:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21MK9Hr035517 for ; Thu, 1 Mar 2012 22:20:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21MK9BC035516; Thu, 1 Mar 2012 22:20:09 GMT (envelope-from gnats) Resent-Date: Thu, 1 Mar 2012 22:20:09 GMT Resent-Message-Id: <201203012220.q21MK9BC035516@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, Olivier Cochard-Labbé Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6E639106567B for ; Thu, 1 Mar 2012 22:12:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5E1BE8FC12 for ; Thu, 1 Mar 2012 22:12:33 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q21MCW7J070538 for ; Thu, 1 Mar 2012 22:12:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q21MCWbn070537; Thu, 1 Mar 2012 22:12:32 GMT (envelope-from nobody) Message-Id: <201203012212.q21MCWbn070537@red.freebsd.org> Date: Thu, 1 Mar 2012 22:12:32 GMT From: Olivier Cochard-Labbé To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165599: [x11/xkeyboard-config] x11/xkbcomp as a RUN_DEPENDS 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: Thu, 01 Mar 2012 22:20:11 -0000 >Number: 165599 >Category: ports >Synopsis: [x11/xkeyboard-config] x11/xkbcomp as a RUN_DEPENDS >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Mar 01 22:20:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Olivier Cochard-Labbé >Release: 9.0 >Organization: BSD Media Center >Environment: FreeBSD laptop.bsdrp.net 9.0-RELEASE FreeBSD 9.0-RELEASE #2: Sat Jan 7 19:01:08 CET 2012 root@laptop.bsdrp.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Hi all, On my system (9.0-amd64), if I install x11/xorg-minimal from port, It's work great but if I install my self generated xorg-minimal package, it didn't start: Xorg complain about missing xkbcomp in its log file. Looking the dependency tree, I've seen that x11/xkeyboard-config include x11/xkbcomp as a BUILD_DEPENDS only (this why using the package method didn't install x11/xkbcomp). Should it be fix as RUN_DEPENDS ? On the ports mailing-list another user report the same when it not using the default qwerty layout. >How-To-Repeat: Generate the pkg of x11/xorg-minimal, and install the pkg (and all its dependency) on a fresh install and try to start xorg using other keyboard layout than the default qwerty: Xorg failed to start and complain about missing xkbcomp. >Fix: Applying the Makefile patch that replace BUILD_DEPENDS by a RUN_DEPENDS. Patch attached with submission follows: --- Makefile.orig 2012-03-01 23:10:14.000000000 +0100 +++ Makefile 2012-03-01 23:10:24.000000000 +0100 @@ -15,7 +15,7 @@ LICENSE= MIT -BUILD_DEPENDS= xkbcomp:${PORTSDIR}/x11/xkbcomp +RUN_DEPENDS= xkbcomp:${PORTSDIR}/x11/xkbcomp XORG_CAT= data >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 22:20:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D6D911065670 for ; Thu, 1 Mar 2012 22:20:12 +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 8B1C08FC12 for ; Thu, 1 Mar 2012 22:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21MKCrr035594 for ; Thu, 1 Mar 2012 22:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21MKCQH035593; Thu, 1 Mar 2012 22:20:12 GMT (envelope-from gnats) Date: Thu, 1 Mar 2012 22:20:12 GMT Message-Id: <201203012220.q21MKCQH035593@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/165598: [patch] upgrade sysutils/dvdisaster to 0.72.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2012 22:20:12 -0000 The following reply was made to PR ports/165598; it has been noted by GNATS. From: Edwin Groothuis To: chalpin@cs.wisc.edu Cc: bug-followup@FreeBSD.org Subject: Re: ports/165598: [patch] upgrade sysutils/dvdisaster to 0.72.3 Date: Thu, 1 Mar 2012 22:19:36 UT Maintainer of sysutils/dvdisaster, Please note that PR ports/165598 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165598 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 22:26:11 2012 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 A5B18106567F; Thu, 1 Mar 2012 22:26:11 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7DD098FC1B; Thu, 1 Mar 2012 22:26:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21MQBwI044208; Thu, 1 Mar 2012 22:26:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21MQBfB044204; Thu, 1 Mar 2012 22:26:11 GMT (envelope-from edwin) Date: Thu, 1 Mar 2012 22:26:11 GMT Message-Id: <201203012226.q21MQBfB044204@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-x11@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165599: [x11/xkeyboard-config] x11/xkbcomp as a RUN_DEPENDS 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: Thu, 01 Mar 2012 22:26:11 -0000 Synopsis: [x11/xkeyboard-config] x11/xkbcomp as a RUN_DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Thu Mar 1 22:26:11 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165599 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 22:40:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AEB75106566C for ; Thu, 1 Mar 2012 22:40:12 +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 9E3698FC23 for ; Thu, 1 Mar 2012 22:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21MeCWQ055131 for ; Thu, 1 Mar 2012 22:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21MeCAE055128; Thu, 1 Mar 2012 22:40:12 GMT (envelope-from gnats) Date: Thu, 1 Mar 2012 22:40:12 GMT Message-Id: <201203012240.q21MeCAE055128@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Corey Halpin Cc: Subject: Re: ports/165598: [patch] upgrade sysutils/dvdisaster to 0.72.3 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Corey Halpin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Mar 2012 22:40:12 -0000 The following reply was made to PR ports/165598; it has been noted by GNATS. From: Corey Halpin To: bug-followup@FreeBSD.ORG Cc: Subject: Re: ports/165598: [patch] upgrade sysutils/dvdisaster to 0.72.3 Date: Thu, 1 Mar 2012 16:24:56 -0600 --OXfL5xGRrasGEqWY Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Approve. ~crh On 2012-03-01, Edwin Groothuis wrote: >Maintainer of sysutils/dvdisaster, > >Please note that PR ports/165598 has just been submitted. > >If it contains a patch for an upgrade, an enhancement or a bug fix >you agree on, reply to this email stating that you approve the patch >and a committer will take care of it. > >The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/165598 > >--=20 >Edwin Groothuis via the GNATS Auto Assign Tool >edwin@FreeBSD.org > --OXfL5xGRrasGEqWY Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.18 (FreeBSD) iF4EAREIAAYFAk9P9zcACgkQR8PgTIRJoTVR+wD+JtFstWlaiH3K16iBTov3i66q 2zjbmVlgqlpi2YGtcUMA/Ao8KTuiUZsbWHg3HcrcfzLaAVm/tfY2nrMF8pSoMGO9 =36G+ -----END PGP SIGNATURE----- --OXfL5xGRrasGEqWY-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 22:55:12 2012 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 DEA84106564A; Thu, 1 Mar 2012 22:55:12 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B61468FC08; Thu, 1 Mar 2012 22:55:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21MtCHe072163; Thu, 1 Mar 2012 22:55:12 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21MtCqG072159; Thu, 1 Mar 2012 22:55:12 GMT (envelope-from scheidell) Date: Thu, 1 Mar 2012 22:55:12 GMT Message-Id: <201203012255.q21MtCqG072159@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165316: New port: www/etomite-cms PHP based content management system 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: Thu, 01 Mar 2012 22:55:13 -0000 Synopsis: New port: www/etomite-cms PHP based content management system Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Thu Mar 1 22:55:12 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165316 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 23:30:50 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 025F3106564A; Thu, 1 Mar 2012 23:30:50 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CDE9E8FC13; Thu, 1 Mar 2012 23:30:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21NUnTM003392; Thu, 1 Mar 2012 23:30:49 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21NUn7f003382; Thu, 1 Mar 2012 23:30:49 GMT (envelope-from scheidell) Date: Thu, 1 Mar 2012 23:30:49 GMT Message-Id: <201203012330.q21NUn7f003382@freefall.freebsd.org> To: scheidell@FreeBSD.org, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165316: New port: www/etomite-cms PHP based content management system 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: Thu, 01 Mar 2012 23:30:50 -0000 Synopsis: New port: www/etomite-cms PHP based content management system Responsible-Changed-From-To: scheidell->freebsd-ports-bugs Responsible-Changed-By: scheidell Responsible-Changed-When: Thu Mar 1 23:28:38 UTC 2012 Responsible-Changed-Why: Sorry, back to pool. submitter might want to subscribe to ports@ fix typos, make sure he uses tabs and not spaces (and doesn't cut paste) rethinks structure (don't use www/portname_vportversion for wwwdir, use WWWDIR, has all the right built in macros. run portlint -N then portlint -abt before submitting again. http://www.freebsd.org/cgi/query-pr.cgi?pr=165316 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Mar 1 23:34:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 04B38106564A; Thu, 1 Mar 2012 23:34:04 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D102E8FC08; Thu, 1 Mar 2012 23:34:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q21NY3hA009907; Thu, 1 Mar 2012 23:34:03 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q21NY3D6009903; Thu, 1 Mar 2012 23:34:03 GMT (envelope-from scheidell) Date: Thu, 1 Mar 2012 23:34:03 GMT Message-Id: <201203012334.q21NY3D6009903@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165468: New port: mail/notmuch 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: Thu, 01 Mar 2012 23:34:04 -0000 Synopsis: New port: mail/notmuch Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Thu Mar 1 23:34:03 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165468 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 00:08:29 2012 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 750C61065672; Fri, 2 Mar 2012 00:08:29 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4C4D98FC0C; Fri, 2 Mar 2012 00:08:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2208TeC040681; Fri, 2 Mar 2012 00:08:29 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2208SQB040677; Fri, 2 Mar 2012 00:08:28 GMT (envelope-from linimon) Date: Fri, 2 Mar 2012 00:08:28 GMT Message-Id: <201203020008.q2208SQB040677@freefall.freebsd.org> To: chalpin@cs.wisc.edu, 4721@hushmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/165598: [patch] upgrade sysutils/dvdisaster to 0.72.3 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, 02 Mar 2012 00:08:29 -0000 Synopsis: [patch] upgrade sysutils/dvdisaster to 0.72.3 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Fri Mar 2 00:08:17 UTC 2012 State-Changed-Why: Maintainer approved. http://www.freebsd.org/cgi/query-pr.cgi?pr=165598 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 00:10:14 2012 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 0C7701065687 for ; Fri, 2 Mar 2012 00:10:14 +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 B0B658FC1C for ; Fri, 2 Mar 2012 00:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q220ADWC040845 for ; Fri, 2 Mar 2012 00:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q220ADlV040844; Fri, 2 Mar 2012 00:10:13 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 00:10:13 GMT Resent-Message-Id: <201203020010.q220ADlV040844@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, Hirohisa Yamaguchi Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 00671106564A for ; Fri, 2 Mar 2012 00:03:42 +0000 (UTC) (envelope-from umq@ueo.co.jp) Received: from msa04b.plala.or.jp (msa04.plala.or.jp [IPv6:2400:7800:0:5010::4]) by mx1.freebsd.org (Postfix) with ESMTP id 38AF68FC08 for ; Fri, 2 Mar 2012 00:03:40 +0000 (UTC) Received: from terpsichore.kaumoge.org ([118.16.87.28]) by msa04b.plala.or.jp with ESMTP id <20120302000318.TOQJ6839.msa04b.plala.or.jp@terpsichore.kaumoge.org> for ; Fri, 2 Mar 2012 09:03:18 +0900 Received: from calliope.kaumoge.org (calliope.kaumoge.org [192.168.24.120]) by terpsichore.kaumoge.org (8.14.4/8.14.4/20101205) with ESMTP id q2203Eju007658 for ; Fri, 2 Mar 2012 09:03:16 +0900 (JST) (envelope-from umq@ueo.co.jp) Message-Id: <868vjjuawx.wl%umq@ueo.co.jp> Date: Fri, 02 Mar 2012 09:03:10 +0900 From: Hirohisa Yamaguchi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165601: [maintainer] mail/opendkim update to 2.5.0.1 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, 02 Mar 2012 00:10:14 -0000 >Number: 165601 >Category: ports >Synopsis: [maintainer] mail/opendkim update to 2.5.0.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 00:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Hirohisa Yamaguchi >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD calliope.****.org 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The new version of mail/opendkim 2.5.0.1 is available. This version just fixes a unit test bug which is contained in the previous PR ports/165583. So, update is not necessary. This PR is just for making portscout (or other similar services) happy. >How-To-Repeat: N/A >Fix: The patch follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/opendkim/Makefile,v retrieving revision 1.12 diff -p -u -r1.12 Makefile --- Makefile 1 Mar 2012 17:38:23 -0000 1.12 +++ Makefile 1 Mar 2012 23:45:31 -0000 @@ -5,25 +5,27 @@ # $FreeBSD: ports/mail/opendkim/Makefile,v 1.12 2012/03/01 17:38:23 scheidell Exp $ # -PORTNAME= opendkim -PORTVERSION= 2.5.0 -CATEGORIES= mail security -MASTER_SITES= SF +PORTNAME= opendkim +PORTVERSION= 2.5.0.1 +CATEGORIES= mail security +MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME} \ ${PORTNAME}/Previous%20Releases -MAINTAINER= umq@ueo.co.jp -COMMENT= DKIM library and milter implementation +MAINTAINER= umq@ueo.co.jp +COMMENT= DKIM library and milter implementation -LICENSE= BSD SENDMAIL -LICENSE_COMB= multi -LICENSE_FILE= ${WRKSRC}/LICENSE +LICENSE= BSD SENDMAIL +LICENSE_COMB= multi +LICENSE_FILE= ${WRKSRC}/LICENSE LICENSE_FILE_SENDMAIL= ${WRKSRC}/LICENSE.Sendmail LICENSE_GROUPS_SENDMAIL= FSF OSI LICENSE_NAME_SENDMAIL= Sendmail Open Source License LICENSE_PERMS_SENDMAIL= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:S/.1$$//} + GNU_CONFIGURE= yes USE_OPENSSL= yes USE_LDCONFIG= yes @@ -48,9 +50,9 @@ MAKE_ARGS+= pkgconfigdir="${PREFIX}/libd .include .if defined(WITH_FILTER) && !defined(WITHOUT_FILTER) -USE_RC_SUBR= milter-opendkim -MAN5+= opendkim.conf.5 -MAN8+= opendkim.8 +USE_RC_SUBR= milter-opendkim +MAN5+= opendkim.conf.5 +MAN8+= opendkim.8 PLIST_SUB+= FILTER="" SUB_FILES= pkg-message WITHOUT_MILTER_CFLAGS= yes @@ -63,7 +65,7 @@ PLIST_SUB+= FILTER="@comment " .endif .if defined(WITH_GNUTLS) -LIB_DEPENDS+= gnutls.47:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= gnutls.47:${PORTSDIR}/security/gnutls CONFIGURE_ARGS+= --with-gnutls=${LOCALBASE} .else CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE} Index: distinfo =================================================================== RCS file: /home/ncvs/ports/mail/opendkim/distinfo,v retrieving revision 1.9 diff -p -u -r1.9 distinfo --- distinfo 1 Mar 2012 17:38:23 -0000 1.9 +++ distinfo 1 Mar 2012 23:45:31 -0000 @@ -1,2 +1,2 @@ -SHA256 (opendkim-2.5.0.tar.gz) = 5c17a5c82936495b35bc12b32438ebd7b7a624e3389fcac672f7d2ec5bdc8981 -SIZE (opendkim-2.5.0.tar.gz) = 1465356 +SHA256 (opendkim-2.5.0.1.tar.gz) = a1423fbd7b28fddee3cc51ffe550393cca44c32ac049c867ff86e984b787eeb6 +SIZE (opendkim-2.5.0.1.tar.gz) = 1465386 Index: files/patch-libopendkim_tests_t-test75.c =================================================================== RCS file: files/patch-libopendkim_tests_t-test75.c diff -N files/patch-libopendkim_tests_t-test75.c --- files/patch-libopendkim_tests_t-test75.c 1 Mar 2012 17:38:24 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,32 +0,0 @@ ---- ./libopendkim/tests/t-test75.c.orig 2012-03-01 08:52:30.000000000 +0900 -+++ ./libopendkim/tests/t-test75.c 2012-03-01 15:50:21.000000000 +0900 -@@ -52,6 +52,14 @@ - dkim_query_t qtype = DKIM_QUERY_FILE; - unsigned char hdr[MAXHEADER + 1]; - -+#ifdef USE_GNUTLS -+ (void) gnutls_global_init(); -+#endif /* USE_GNUTLS */ -+ -+ /* instantiate the library */ -+ lib = dkim_init(NULL, NULL); -+ assert(lib != NULL); -+ - if (!dkim_libfeature(lib, DKIM_FEATURE_PARSE_TIME)) - { - printf("*** Date: value extraction SKIPPED\n"); -@@ -62,14 +70,6 @@ - printf("*** Date: value extraction\n"); - } - --#ifdef USE_GNUTLS -- (void) gnutls_global_init(); --#endif /* USE_GNUTLS */ -- -- /* instantiate the library */ -- lib = dkim_init(NULL, NULL); -- assert(lib != NULL); -- - #ifdef TEST_KEEP_FILES - /* set flags */ - flags = (DKIM_LIBFLAGS_TMPFILES|DKIM_LIBFLAGS_KEEPFILES); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 00:27:13 2012 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 1D768106566B; Fri, 2 Mar 2012 00:27:13 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E9FF08FC1A; Fri, 2 Mar 2012 00:27:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q220RCSw059193; Fri, 2 Mar 2012 00:27:12 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q220RCfe059189; Fri, 2 Mar 2012 00:27:12 GMT (envelope-from jgh) Date: Fri, 2 Mar 2012 00:27:12 GMT Message-Id: <201203020027.q220RCfe059189@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165601: [maintainer] mail/opendkim update to 2.5.0.1 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, 02 Mar 2012 00:27:13 -0000 Synopsis: [maintainer] mail/opendkim update to 2.5.0.1 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Fri Mar 2 00:27:12 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165601 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 01:00:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7A36310656AE for ; Fri, 2 Mar 2012 01:00:29 +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 E9AA78FC29 for ; Fri, 2 Mar 2012 01:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2210NQY087601 for ; Fri, 2 Mar 2012 01:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2210NEg087595; Fri, 2 Mar 2012 01:00:23 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 01:00:23 GMT Resent-Message-Id: <201203020100.q2210NEg087595@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, Joe barbish Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E2A6A106566B for ; Fri, 2 Mar 2012 00:51:51 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B89718FC13 for ; Fri, 2 Mar 2012 00:51:51 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q220ppNm055214 for ; Fri, 2 Mar 2012 00:51:51 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q220ppUA055213; Fri, 2 Mar 2012 00:51:51 GMT (envelope-from nobody) Message-Id: <201203020051.q220ppUA055213@red.freebsd.org> Date: Fri, 2 Mar 2012 00:51:51 GMT From: Joe barbish To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165603: [maintainer update] sysutils/qjail update for 9.0 install path 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, 02 Mar 2012 01:00:29 -0000 >Number: 165603 >Category: ports >Synopsis: [maintainer update] sysutils/qjail update for 9.0 install path >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 01:00:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Joe barbish >Release: 9.0 >Organization: none >Environment: >Description: Changed qjail to work with new path and single base file install format now used in 9.0. Added blank line to front and end of pkg-message because it was getting lost in the port make install log and missed by the installer. distinfo counts changed as normal. Makefile changes for new portversion. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN qjail-1.1.1/Makefile qjail-1.2/Makefile --- qjail-1.1.1/Makefile 2012-03-02 08:15:54.000000000 -0500 +++ qjail-1.2/Makefile 2012-03-02 08:13:48.000000000 -0500 @@ -1,17 +1,16 @@ -# New ports collection makefile for: qjail -# Date created: July 22 2010 +# Ports collection makefile for: qjail +# Date created: March 01 2012 # Whom: Joe Barbish # # $FreeBSD: ports/sysutils/qjail/Makefile,v 1.3 2011/09/11 11:58:32 crees Exp $ PORTNAME= qjail -PORTVERSION= 1.1 -PORTREVISION= 1 +PORTVERSION= 1.2 CATEGORIES= sysutils MASTER_SITES= SF/${PORTNAME} MAINTAINER= qjail@a1poweruser.com -COMMENT= Utility to quickly deploy and manage large numbers of jails +COMMENT= Utility to quickly deploy and manage jails LICENSE= BSD diff -ruN qjail-1.1.1/distinfo qjail-1.2/distinfo --- qjail-1.1.1/distinfo 2012-03-02 08:15:54.000000000 -0500 +++ qjail-1.2/distinfo 2012-03-02 08:13:48.000000000 -0500 @@ -1,2 +1,2 @@ -SHA256 (qjail-1.1.tar.bz2) = c7e32a3081357c9a5e2a62b85180bb2f3526ca138592e42f90624a0f34cea58d -SIZE (qjail-1.1.tar.bz2) = 40292 +SHA256 (qjail-1.2.tar.bz2) = 55ec579ccc0a9dd5f4ba631ea0455ccce2c2850f1fb8a4d8bed09d7292f88ccd +SIZE (qjail-1.2.tar.bz2) = 41057 diff -ruN qjail-1.1.1/pkg-message qjail-1.2/pkg-message --- qjail-1.1.1/pkg-message 2012-03-02 08:15:54.000000000 -0500 +++ qjail-1.2/pkg-message 2012-03-02 08:13:48.000000000 -0500 @@ -1,5 +1,7 @@ +# Use the qjail utility to deploy small or large numbers of jails quickly. First issue "rehash" command to enable the qjail command (if using csh). Then issue "man qjail-intro" to read the qjail introduction. After reading that do "man qjail" for the usage details. +# >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 01:01:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 999211065678; Fri, 2 Mar 2012 01:01:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 70F7F8FC1E; Fri, 2 Mar 2012 01:01:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2211CmO091440; Fri, 2 Mar 2012 01:01:12 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2211CR5091432; Fri, 2 Mar 2012 01:01:12 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 01:01:12 GMT Message-Id: <201203020101.q2211CR5091432@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165603: [maintainer update] sysutils/qjail update for 9.0 install path 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, 02 Mar 2012 01:01:12 -0000 Synopsis: [maintainer update] sysutils/qjail update for 9.0 install path Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Fri Mar 2 01:01:11 UTC 2012 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165603 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 01:01:18 2012 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 2D9AD1065675; Fri, 2 Mar 2012 01:01:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 053F48FC13; Fri, 2 Mar 2012 01:01:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2211HJm091811; Fri, 2 Mar 2012 01:01:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2211H50091807; Fri, 2 Mar 2012 01:01:17 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 01:01:17 GMT Message-Id: <201203020101.q2211H50091807@freefall.freebsd.org> To: fbsd8@a1poweruser.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165603: [maintainer update] sysutils/qjail update for 9.0 install path 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, 02 Mar 2012 01:01:18 -0000 Synopsis: [maintainer update] sysutils/qjail update for 9.0 install path State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Mar 2 01:01:17 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165603 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 01:03:32 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9F0D21065670; Fri, 2 Mar 2012 01:03:32 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 765808FC08; Fri, 2 Mar 2012 01:03:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2213Wtu096322; Fri, 2 Mar 2012 01:03:32 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2213W0N096318; Fri, 2 Mar 2012 01:03:32 GMT (envelope-from jgh) Date: Fri, 2 Mar 2012 01:03:32 GMT Message-Id: <201203020103.q2213W0N096318@freefall.freebsd.org> To: qjail@a1poweruser.com, jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165603: [maintainer update] sysutils/qjail update for 9.0 install path 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, 02 Mar 2012 01:03:32 -0000 Synopsis: [maintainer update] sysutils/qjail update for 9.0 install path Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Fri Mar 2 01:03:31 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165603 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 01:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C3EE8106566B for ; Fri, 2 Mar 2012 01:20:08 +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 A1C2F8FC13 for ; Fri, 2 Mar 2012 01:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q221K8Gg007495 for ; Fri, 2 Mar 2012 01:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q221K8Hb007494; Fri, 2 Mar 2012 01:20:08 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 01:20:08 GMT Resent-Message-Id: <201203020120.q221K8Hb007494@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, "RandomUser" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DCBD1106564A for ; Fri, 2 Mar 2012 01:13:53 +0000 (UTC) (envelope-from rannumgen@globaleyes.net) Received: from mail.ll.net (smtp.ll.net [38.100.110.136]) by mx1.freebsd.org (Postfix) with ESMTP id A4D228FC16 for ; Fri, 2 Mar 2012 01:13:53 +0000 (UTC) Received: from freebsd1.localnet (unknown [50.44.196.179]) (Authenticated sender: rannumgen@globaleyes.net) by mail.ll.net (Postfix) with ESMTPA id 54239FDC2; Thu, 1 Mar 2012 18:54:34 -0600 (CST) Message-Id: <1330649701.11562@freebsd1.localnet> Date: Thu, 1 Mar 2012 18:55:01 -0600 From: "RandomUser" To: "FreeBSD gnats submit" X-Send-Pr-Version: gtk-send-pr 0.4.9 Cc: rannumgen@globaleyes.net Subject: ports/165604: databases/mysql55-server cmake patches to properly use OpenSSL 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, 02 Mar 2012 01:20:08 -0000 >Number: 165604 >Category: ports >Synopsis: databases/mysql55-server cmake patches to properly use OpenSSL >Confidential: no >Severity: non-critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 01:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: RandomUser >Release: 7.4-STABLE >Organization: >Environment: 7.4-STABLE FreeBSD 7.4-STABLE #2: Tue Dec 20 10:55:34 CST 2011 openssl-1.0.0_9 (userland) openSSL 0.9.8q (base) >Description: Without several patches to MySQL cmake files/environment, none of the OpenSSL libraries are used (base or userland). Even with the "-DWITH_SSL" flag, the bundled "yassl" doesn't get used. Hence - MySQL55 does NOT get compiled with ANY SSL capability. The cmake patches are not OS specific (had to use them in Solaris 10 as well). NOTE: a new Makefile variable "WITH_USR_LOCAL" was used to distinguish between "base" OpenSSL and "userland" OpenSSL. There probably is a better method for achieving this distinction. P.S. cmake patch was derived from an Internet post about MySQL + CMAKE + OpenSSL compile problems, but I have lost the reference. Make output validation of cmake infernal process for finding (base) OpenSSL: -- Found OpenSSL: /usr/lib/libssl.so;/usr/lib/libcrypto.so -- OPENSSL_INCLUDE_DIR = /usr/include -- OPENSSL_LIBRARIES = /usr/lib/libssl.so;/usr/lib/libcrypto.so -- Looking for SHA512_DIGEST_LENGTH -- Looking for SHA512_DIGEST_LENGTH - found Results are similar for (userland) OpenSSL (with "/usr/local/..."). LDD vaLidation of OpenSSL inclusion: ldd `which mysql` /usr/local/bin/mysql: libreadline.so.7 => /lib/libreadline.so.7 (0x282c6000) libz.so.4 => /lib/libz.so.4 (0x282f8000) libssl.so.7 => /usr/local/lib/libssl.so.7 (0x2830a000) libcrypto.so.7 => /usr/local/lib/libcrypto.so.7 (0x28358000) libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x284bb000) libm.so.5 => /lib/libm.so.5 (0x285af000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x285c5000) libthr.so.3 => /lib/libthr.so.3 (0x285d0000) libc.so.7 => /lib/libc.so.7 (0x285e5000) libncurses.so.7 => /lib/libncurses.so.7 (0x286eb000) ldd /usr/local/libexec/mysqld /usr/local/libexec/mysqld: libz.so.4 => /lib/libz.so.4 (0x287e0000) libwrap.so.5 => /usr/lib/libwrap.so.5 (0x287f2000) libcrypt.so.4 => /lib/libcrypt.so.4 (0x287f9000) libssl.so.7 => /usr/local/lib/libssl.so.7 (0x28812000) libcrypto.so.7 => /usr/local/lib/libcrypto.so.7 (0x28860000) libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x289c3000) libm.so.5 => /lib/libm.so.5 (0x28ab7000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x28acd000) libthr.so.3 => /lib/libthr.so.3 (0x28ad8000) libc.so.7 => /lib/libc.so.7 (0x28aed000 >How-To-Repeat: >Fix: Makefile.diffs ================ --- Makefile.orig 2012-02-29 14:14:17.000000000 -0600 +++ Makefile 2012-02-29 14:41:14.000000000 -0600 @@ -48,7 +48,12 @@ .include .if !defined(WITHOUT_OPENSSL) -CMAKE_ARGS+= -DWITH_SSL=bundled +CMAKE_ARGS+= -DWITH_SSL=system +.if defined(WITH_USR_LOCAL_SSL) +CMAKE_ARGS+= -DCMAKE_INCLUDE_PATH=/usr/local/include \ + -DCMAKE_LIBRARY_PATH=/usr/local/lib +MAKE_ENV+= PKG_CONFIG_PATH=/usr/local/libdata/pkgconfig +.endif .endif .if defined(WITH_FASTMTX) CMAKE_ARGS+= -DWITH_FAST_MUTEXES=1 ====================== files/patch-cmake_ssl.cmake ====================== --- cmake/ssl.cmake.orig 2011-12-16 13:52:07.000000000 -0600 +++ cmake/ssl.cmake 2012-02-29 11:36:24.000000000 -0600 @@ -64,11 +64,14 @@ MYSQL_USE_BUNDLED_SSL() ELSEIF(WITH_SSL STREQUAL "system" OR WITH_SSL STREQUAL "yes") # Check for system library - SET(OPENSSL_FIND_QUIETLY TRUE) +# SET(OPENSSL_FIND_QUIETLY TRUE) INCLUDE(FindOpenSSL) + MESSAGE(STATUS "OPENSSL_INCLUDE_DIR = ${OPENSSL_INCLUDE_DIR}") + MESSAGE(STATUS "OPENSSL_LIBRARIES = ${OPENSSL_LIBRARIES}") FIND_LIBRARY(CRYPTO_LIBRARY crypto) MARK_AS_ADVANCED(CRYPTO_LIBRARY) INCLUDE(CheckSymbolExists) + SET(CMAKE_REQUIRED_INCLUDES ${OPENSSL_INCLUDE_DIR}) CHECK_SYMBOL_EXISTS(SHA512_DIGEST_LENGTH "openssl/sha.h" HAVE_SHA512_DIGEST_LENGTH) IF(OPENSSL_FOUND AND CRYPTO_LIBRARY AND HAVE_SHA512_DIGEST_LENGTH) ======================== >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 01:20:19 2012 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 0748C106566B; Fri, 2 Mar 2012 01:20:19 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CD7DB8FC19; Fri, 2 Mar 2012 01:20:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q221KI82007700; Fri, 2 Mar 2012 01:20:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q221KIAY007696; Fri, 2 Mar 2012 01:20:18 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 01:20:18 GMT Message-Id: <201203020120.q221KIAY007696@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165604: databases/mysql55-server cmake patches to properly use OpenSSL 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, 02 Mar 2012 01:20:19 -0000 Synopsis: databases/mysql55-server cmake patches to properly use OpenSSL Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 01:20:18 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165604 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 03:30:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8486F106564A for ; Fri, 2 Mar 2012 03:30:08 +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 3C0BE8FC13 for ; Fri, 2 Mar 2012 03:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q223U8hf026178 for ; Fri, 2 Mar 2012 03:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q223U8hv026167; Fri, 2 Mar 2012 03:30:08 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 03:30:08 GMT Resent-Message-Id: <201203020330.q223U8hv026167@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, "Philip M. Gollucci" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7381C106564A for ; Fri, 2 Mar 2012 03:23:15 +0000 (UTC) (envelope-from pgollucci@frieza.p6m7g8.net) Received: from frieza.p6m7g8.net (wsip-174-79-184-239.dc.dc.cox.net [174.79.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id 8CFE58FC17 for ; Fri, 2 Mar 2012 03:23:14 +0000 (UTC) Received: from frieza.p6m7g8.net (localhost [127.0.0.1]) by frieza.p6m7g8.net (8.14.5/8.14.4) with ESMTP id q223NDCh047922 for ; Fri, 2 Mar 2012 03:23:13 GMT (envelope-from pgollucci@frieza.p6m7g8.net) Received: (from pgollucci@localhost) by frieza.p6m7g8.net (8.14.5/8.14.5/Submit) id q223NDbM047921; Fri, 2 Mar 2012 03:23:13 GMT (envelope-from pgollucci) Message-Id: <201203020323.q223NDbM047921@frieza.p6m7g8.net> Date: Fri, 2 Mar 2012 03:23:13 GMT From: "Philip M. Gollucci" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165605: [exp-run]: remove ports broken with < perl 5.12, cleanup PERL_LEVEL < perl 5.12, remove regression-test to centralize them X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Philip M. Gollucci" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 03:30:08 -0000 >Number: 165605 >Category: ports >Synopsis: [exp-run]: remove ports broken with < perl 5.12, cleanup PERL_LEVEL < perl 5.12, remove regression-test to centralize them >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 03:30:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Philip M. Gollucci >Release: FreeBSD 10.0-CURRENT amd64 >Organization: RideCharge Inc. >Environment: System: FreeBSD frieza.p6m7g8.net 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r232017M: Thu Feb 23 06:34:14 UTC 2012 root@frieza.p6m7g8.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: --- 10-CURRENT-amd64-perl begins here --- Index: archivers/p5-Archive-Any/Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/p5-Archive-Any/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- archivers/p5-Archive-Any/Makefile 12 Feb 2012 02:04:00 -0000 1.5 +++ archivers/p5-Archive-Any/Makefile 1 Mar 2012 21:39:38 -0000 @@ -29,10 +29,4 @@ MAN3= Archive::Any.3 Archive::Any::Plugin.3 \ Archive::Any::Plugin::Tar.3 Archive::Any::Plugin::Zip.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-Archive-Tar>=0.22:${PORTSDIR}/archivers/p5-Archive-Tar -.endif - -.include +.include Index: archivers/p5-Archive-Extract/Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/p5-Archive-Extract/Makefile,v retrieving revision 1.30 diff -u -r1.30 Makefile --- archivers/p5-Archive-Extract/Makefile 21 Feb 2012 04:45:14 -0000 1.30 +++ archivers/p5-Archive-Extract/Makefile 1 Mar 2012 21:39:58 -0000 @@ -21,15 +21,6 @@ .include -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Locale-Maketext-Simple>=0:${PORTSDIR}/devel/p5-Locale-Maketext-Simple \ - p5-Module-Load-Conditional>=0.04:${PORTSDIR}/devel/p5-Module-Load-Conditional \ - p5-Params-Check>=0.07:${PORTSDIR}/devel/p5-Params-Check -RUN_DEPENDS+= p5-Locale-Maketext-Simple>=0:${PORTSDIR}/devel/p5-Locale-Maketext-Simple \ - p5-Module-Load-Conditional>=0.04:${PORTSDIR}/devel/p5-Module-Load-Conditional \ - p5-Params-Check>=0.07:${PORTSDIR}/devel/p5-Params-Check -.endif - .if ${PERL_LEVEL} < 501400 BUILD_DEPENDS+= p5-IPC-Cmd>=0.64:${PORTSDIR}/devel/p5-IPC-Cmd RUN_DEPENDS+= p5-IPC-Cmd>=0.64:${PORTSDIR}/devel/p5-IPC-Cmd Index: archivers/p5-Archive-Extract-Libarchive/Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/p5-Archive-Extract-Libarchive/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- archivers/p5-Archive-Extract-Libarchive/Makefile 15 Feb 2012 05:07:21 -0000 1.4 +++ archivers/p5-Archive-Extract-Libarchive/Makefile 1 Mar 2012 21:40:23 -0000 @@ -25,10 +25,4 @@ MAN3= Archive::Extract::Libarchive.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -.endif - -.include +.include Index: archivers/p5-Archive-Peek/Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/p5-Archive-Peek/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- archivers/p5-Archive-Peek/Makefile 21 Nov 2011 19:16:40 -0000 1.2 +++ archivers/p5-Archive-Peek/Makefile 2 Mar 2012 03:17:17 -0000 @@ -26,7 +26,4 @@ MAN3= Archive::Peek.3 -regression-test: build - cd ${WRKSRC}/ && ${MAKE} test - .include Index: archivers/p5-Archive-Tar/Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/p5-Archive-Tar/Makefile,v retrieving revision 1.54 diff -u -r1.54 Makefile --- archivers/p5-Archive-Tar/Makefile 22 Nov 2011 09:37:07 -0000 1.54 +++ archivers/p5-Archive-Tar/Makefile 1 Mar 2012 21:42:14 -0000 @@ -23,32 +23,12 @@ OPTIONS= TEXT_DIFF "Text::Diff support for ptardiff" off -.include - .if defined(WITH_TEXT_DIFF) RUN_DEPENDS+= ${SITE_PERL}/Text/Diff.pm:${PORTSDIR}/textproc/p5-Text-Diff .endif -.if ${PERL_LEVEL} < 500904 -RUN_DEPENDS+= p5-Package-Constants>=0:${PORTSDIR}/devel/p5-Package-Constants -.endif - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Zlib>=1.01:${PORTSDIR}/archivers/p5-IO-Zlib \ - p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.if ${PERL_LEVEL} >= 501000 -PLIST_SUB+= EXE_FILES="@comment " -.else -PLIST_SUB+= EXE_FILES="" -MAN1= ptardiff.1 ptar.1 -.endif - post-patch: @${REINPLACE_CMD} -e 's/5.009/5.666/' ${WRKSRC}/Makefile.PL -.if ${PERL_LEVEL} >= 501000 @${REINPLACE_CMD} -e '/EXE_FILES/d' ${WRKSRC}/Makefile.PL -.endif -.include +.include Index: archivers/p5-Archive-Tar/pkg-plist =================================================================== RCS file: /home/ncvs/ports/archivers/p5-Archive-Tar/pkg-plist,v retrieving revision 1.7 diff -u -r1.7 pkg-plist --- archivers/p5-Archive-Tar/pkg-plist 28 Mar 2009 20:45:07 -0000 1.7 +++ archivers/p5-Archive-Tar/pkg-plist 1 Mar 2012 21:42:08 -0000 @@ -1,5 +1,5 @@ -%%EXE_FILES%%bin/ptar -%%EXE_FILES%%bin/ptardiff +bin/ptar +bin/ptardiff %%SITE_PERL%%/Archive/Tar.pm %%SITE_PERL%%/Archive/Tar/Constant.pm %%SITE_PERL%%/Archive/Tar/File.pm Index: archivers/p5-Archive-Zip/Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/p5-Archive-Zip/Makefile,v retrieving revision 1.39 diff -u -r1.39 Makefile --- archivers/p5-Archive-Zip/Makefile 8 Feb 2012 14:01:30 -0000 1.39 +++ archivers/p5-Archive-Zip/Makefile 1 Mar 2012 21:42:22 -0000 @@ -19,11 +19,4 @@ MAN3= Archive::Zip.3 Archive::Zip::Tree.3 Archive::Zip::FAQ.3 Archive::Zip::MemberRead.3 -.include - -.if ${PERL_LEVEL} < 500903 -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: archivers/p5-IO-Zlib/Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/p5-IO-Zlib/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- archivers/p5-IO-Zlib/Makefile 21 Sep 2010 07:56:33 -0000 1.13 +++ archivers/p5-IO-Zlib/Makefile 1 Mar 2012 21:42:29 -0000 @@ -19,11 +19,4 @@ PERL_CONFIGURE= yes MAN3= IO::Zlib.3 -.include - -.if ${PERL_LEVEL} < 500903 -BUILD_DEPENDS= p5-IO-Compress>=2:${PORTSDIR}/archivers/p5-IO-Compress -RUN_DEPENDS= p5-IO-Compress>=2:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: archivers/p5-POE-Filter-Zlib/Makefile =================================================================== RCS file: /home/ncvs/ports/archivers/p5-POE-Filter-Zlib/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- archivers/p5-POE-Filter-Zlib/Makefile 21 Sep 2010 07:56:33 -0000 1.17 +++ archivers/p5-POE-Filter-Zlib/Makefile 1 Mar 2012 21:42:37 -0000 @@ -24,10 +24,4 @@ MAN3= POE::Filter::Zlib.3 \ POE::Filter::Zlib::Stream.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: astro/p5-Astro-SpaceTrack/Makefile =================================================================== RCS file: /home/ncvs/ports/astro/p5-Astro-SpaceTrack/Makefile,v retrieving revision 1.37 diff -u -r1.37 Makefile --- astro/p5-Astro-SpaceTrack/Makefile 24 Feb 2012 09:53:40 -0000 1.37 +++ astro/p5-Astro-SpaceTrack/Makefile 1 Mar 2012 21:42:48 -0000 @@ -32,14 +32,4 @@ MAN1= SpaceTrack.1 MAN3= Astro::SpaceTrack.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-IO-Compress>=0:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: astro/p5-Astro-satpass/Makefile =================================================================== RCS file: /home/ncvs/ports/astro/p5-Astro-satpass/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- astro/p5-Astro-satpass/Makefile 22 Jan 2012 13:13:50 -0000 1.23 +++ astro/p5-Astro-satpass/Makefile 1 Mar 2012 21:43:07 -0000 @@ -63,10 +63,4 @@ RUN_DEPENDS+= p5-SOAP-Lite>=0:${PORTSDIR}/net/p5-SOAP-Lite .endif -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: audio/p5-Audio-MPD/Makefile =================================================================== RCS file: /home/ncvs/ports/audio/p5-Audio-MPD/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- audio/p5-Audio-MPD/Makefile 25 Nov 2011 07:38:57 -0000 1.14 +++ audio/p5-Audio-MPD/Makefile 1 Mar 2012 22:58:16 -0000 @@ -29,7 +29,7 @@ TEST_DEPENDS= p5-Test-Corpus-Audio-MPD>=1.113282:${PORTSDIR}/audio/p5-Test-Corpus-Audio-MPD -PERL_MODBUILD= 5.10.0+ +PERL_MODBUILD= yes MAN1= mpd-dynamic.1 \ mpd-rate.1 @@ -38,10 +38,4 @@ Audio::MPD::Playlist.3 \ Audio::MPD::Types.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: audio/p5-tagged/Makefile =================================================================== RCS file: /home/ncvs/ports/audio/p5-tagged/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- audio/p5-tagged/Makefile 21 Sep 2010 07:56:33 -0000 1.11 +++ audio/p5-tagged/Makefile 1 Mar 2012 21:43:21 -0000 @@ -23,11 +23,4 @@ CONFLICTS= p5-MP3-Tag-0.* -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: biology/p5-Bio-Das/Makefile =================================================================== RCS file: /home/ncvs/ports/biology/p5-Bio-Das/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- biology/p5-Bio-Das/Makefile 21 Sep 2010 07:56:34 -0000 1.24 +++ biology/p5-Bio-Das/Makefile 1 Mar 2012 21:43:53 -0000 @@ -34,10 +34,4 @@ Bio::Das::Request::Types.3 Bio::Das::Segment.3 Bio::Das::Stylesheet.3 \ Bio::Das::Type.3 Bio::Das::TypeHandler.3 Bio::Das::Util.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: chinese/p5-Encode-HanConvert/Makefile =================================================================== RCS file: /home/ncvs/ports/chinese/p5-Encode-HanConvert/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- chinese/p5-Encode-HanConvert/Makefile 15 Feb 2009 05:20:35 -0000 1.14 +++ chinese/p5-Encode-HanConvert/Makefile 2 Mar 2012 03:17:22 -0000 @@ -19,7 +19,4 @@ MAN1= b2g.pl.1 g2b.pl.1 -regression-test: - cd ${WRKSRC} && ${MAKE} test - .include Index: comms/p5-SMS-Send/Makefile =================================================================== RCS file: /home/ncvs/ports/comms/p5-SMS-Send/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- comms/p5-SMS-Send/Makefile 12 Mar 2008 17:30:28 -0000 1.5 +++ comms/p5-SMS-Send/Makefile 1 Mar 2012 21:44:01 -0000 @@ -26,10 +26,4 @@ SMS::Send::Driver.3 \ SMS::Send::Test.3 -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Module-Pluggable>=2.5:${PORTSDIR}/devel/p5-Module-Pluggable -.endif - -.include +.include Index: comms/p5-SMS-Send-TW-Socket2Air/Makefile =================================================================== RCS file: /home/ncvs/ports/comms/p5-SMS-Send-TW-Socket2Air/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- comms/p5-SMS-Send-TW-Socket2Air/Makefile 4 Feb 2010 20:21:04 -0000 1.2 +++ comms/p5-SMS-Send-TW-Socket2Air/Makefile 1 Mar 2012 21:44:07 -0000 @@ -24,10 +24,4 @@ MAN3= SMS::Send::TW::Socket2Air.3 -.include - -.if ${PERL_LEVEL} < 501001 -IGNORE= perl 5.10 or above is required -.endif - -.include +.include Index: comms/p5-SMS-Send-TW-chtsns/Makefile =================================================================== RCS file: /home/ncvs/ports/comms/p5-SMS-Send-TW-chtsns/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- comms/p5-SMS-Send-TW-chtsns/Makefile 11 Feb 2010 17:01:57 -0000 1.2 +++ comms/p5-SMS-Send-TW-chtsns/Makefile 1 Mar 2012 22:59:15 -0000 @@ -21,7 +21,7 @@ p5-Text-Iconv>=0:${PORTSDIR}/converters/p5-Text-Iconv BUILD_DEPENDS= ${RUN_DEPENDS} -PERL_CONFIGURE= 5.10+ +PERL_CONFIGURE= yes MAN3= SMS::Send::TW::chtsns.3 Index: converters/p5-Convert-ASCII-Armour/Makefile =================================================================== RCS file: /home/ncvs/ports/converters/p5-Convert-ASCII-Armour/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- converters/p5-Convert-ASCII-Armour/Makefile 21 Sep 2010 07:56:34 -0000 1.10 +++ converters/p5-Convert-ASCII-Armour/Makefile 1 Mar 2012 21:44:14 -0000 @@ -19,11 +19,4 @@ MAN3= Convert::ASCII::Armour.3 Convert::ASCII::Armor.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: converters/p5-Encode/Makefile =================================================================== RCS file: /home/ncvs/ports/converters/p5-Encode/Makefile,v retrieving revision 1.34 diff -u -r1.34 Makefile --- converters/p5-Encode/Makefile 17 Sep 2011 06:48:47 -0000 1.34 +++ converters/p5-Encode/Makefile 2 Mar 2012 03:17:26 -0000 @@ -43,7 +43,4 @@ @${FIND} ${WRKSRC}/ -name Makefile -exec \ ${REINPLACE_CMD} -e 's,^CC =,CC ?=,' {} \; -regression-test: - cd ${WRKSRC} && ${MAKE} test - .include Index: converters/p5-Unicode-String/Makefile =================================================================== RCS file: /home/ncvs/ports/converters/p5-Unicode-String/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- converters/p5-Unicode-String/Makefile 17 Sep 2011 06:48:47 -0000 1.13 +++ converters/p5-Unicode-String/Makefile 1 Mar 2012 21:44:38 -0000 @@ -16,12 +16,6 @@ PERL_CONFIGURE= yes -.include - -.if ${PERL_LEVEL} < 500804 -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 -.endif - MAN3= Unicode::CharName.3 Unicode::String.3 -.include +.include Index: databases/p5-BSON/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-BSON/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- databases/p5-BSON/Makefile 15 Dec 2011 09:23:15 -0000 1.6 +++ databases/p5-BSON/Makefile 1 Mar 2012 21:45:22 -0000 @@ -37,10 +37,4 @@ BSON::Time.3 \ BSON::Timestamp.3 -.include - -.if ${PERL_LEVEL} < 501200 -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: databases/p5-Cache-Memcached-Fast/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-Cache-Memcached-Fast/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- databases/p5-Cache-Memcached-Fast/Makefile 17 Sep 2011 07:06:24 -0000 1.15 +++ databases/p5-Cache-Memcached-Fast/Makefile 1 Mar 2012 21:45:28 -0000 @@ -19,11 +19,4 @@ MAN3= Cache::Memcached::Fast.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: databases/p5-Class-DBI-Lite/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-Class-DBI-Lite/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- databases/p5-Class-DBI-Lite/Makefile 1 Mar 2012 08:22:23 -0000 1.26 +++ databases/p5-Class-DBI-Lite/Makefile 1 Mar 2012 21:45:34 -0000 @@ -41,10 +41,4 @@ Class::DBI::Lite::TableInfo.3 \ Class::DBI::Lite::Tutorial.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.77:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: databases/p5-DBD-Pg/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBD-Pg/Makefile,v retrieving revision 1.96 diff -u -r1.96 Makefile --- databases/p5-DBD-Pg/Makefile 7 Oct 2011 11:22:33 -0000 1.96 +++ databases/p5-DBD-Pg/Makefile 1 Mar 2012 21:45:42 -0000 @@ -36,11 +36,4 @@ @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: databases/p5-DBIx-Class/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Class/Makefile,v retrieving revision 1.71 diff -u -r1.71 Makefile --- databases/p5-DBIx-Class/Makefile 30 Nov 2011 12:18:25 -0000 1.71 +++ databases/p5-DBIx-Class/Makefile 1 Mar 2012 21:45:59 -0000 @@ -187,15 +187,4 @@ RUN_DEPENDS+= p5-SQL-Translator>=0.09.004:${PORTSDIR}/databases/p5-SQL-Translator .endif -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-File-Temp>=0.22:${PORTSDIR}/devel/p5-File-Temp -RUN_DEPENDS+= p5-File-Path>=2.07:${PORTSDIR}/devel/p5-File-Path -.endif - -.if ${PERL_LEVEL} < 501200 -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: databases/p5-DBIx-Class-EncodedColumn/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Class-EncodedColumn/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- databases/p5-DBIx-Class-EncodedColumn/Makefile 15 Dec 2011 15:30:38 -0000 1.14 +++ databases/p5-DBIx-Class-EncodedColumn/Makefile 1 Mar 2012 21:46:35 -0000 @@ -33,20 +33,10 @@ DBIx::Class::EncodedColumn::Crypt::OpenPGP.3 \ DBIx::Class::EncodedColumn::Digest.3 -post-extract: - @${PERL} -i -ne 'print unless m,^build_requires, || m,^feature, .. m,;,' ${WRKSRC}/Makefile.PL - OPTIONS= SHA "Digest::SHA Support" On \ BLOWFISH "Blowfish Support?" On \ OPENPGP "Crypt::OpenPGP (gpg) Support" On -.include - -.if defined(WITH_SHA) -. if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -. endif -.endif .if defined(WITH_BLOWFISH) RUN_DEPENDS+= p5-Crypt-Eksblowfish>=0:${PORTSDIR}/security/p5-Crypt-Eksblowfish .endif @@ -55,4 +45,7 @@ p5-Crypt-CAST5_PP>=0:${PORTSDIR}/security/p5-Crypt-CAST5_PP .endif -.include +post-extract: + @${PERL} -i -ne 'print unless m,^build_requires, || m,^feature, .. m,;,' ${WRKSRC}/Makefile.PL + +.include Index: databases/p5-DBIx-Class-QueryProfiler/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Class-QueryProfiler/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- databases/p5-DBIx-Class-QueryProfiler/Makefile 26 Oct 2011 15:07:40 -0000 1.8 +++ databases/p5-DBIx-Class-QueryProfiler/Makefile 1 Mar 2012 21:46:43 -0000 @@ -26,12 +26,4 @@ MAN3= DBIx::Class::QueryProfiler.3 -.include - -.if ${PERL_LEVEL} < 501001 - -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: databases/p5-DBIx-Class-Schema-Loader/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Class-Schema-Loader/Makefile,v retrieving revision 1.57 diff -u -r1.57 Makefile --- databases/p5-DBIx-Class-Schema-Loader/Makefile 8 Feb 2012 02:31:35 -0000 1.57 +++ databases/p5-DBIx-Class-Schema-Loader/Makefile 1 Mar 2012 21:46:51 -0000 @@ -117,10 +117,4 @@ USE_SQLITE= yes .endif -.include - -.if ${PERL_LEVEL} < 501200 -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: databases/p5-DBIx-Class-Schema-PopulateMore/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Class-Schema-PopulateMore/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- databases/p5-DBIx-Class-Schema-PopulateMore/Makefile 24 Jan 2012 09:56:25 -0000 1.2 +++ databases/p5-DBIx-Class-Schema-PopulateMore/Makefile 1 Mar 2012 21:47:01 -0000 @@ -55,13 +55,6 @@ .include -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Module-Pluggable>=3.9:${PORTSDIR}/devel/p5-Module-Pluggable \ - p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-Module-Pluggable>=3.9:${PORTSDIR}/devel/p5-Module-Pluggable \ - p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - .if ${PERL_LEVEL} < 501400 TEST_DEPENDS+= p5-Test-Simple>=0.98:${PORTSDIR}/devel/p5-Test-Simple .endif Index: databases/p5-DBIx-QueryLog/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-QueryLog/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- databases/p5-DBIx-QueryLog/Makefile 28 Feb 2012 20:28:36 -0000 1.2 +++ databases/p5-DBIx-QueryLog/Makefile 1 Mar 2012 21:47:20 -0000 @@ -14,8 +14,7 @@ MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for logging queries for DBI -RUN_DEPENDS= \ - p5-DBI>0:${PORTSDIR}/databases/p5-DBI +RUN_DEPENDS= p5-DBI>0:${PORTSDIR}/databases/p5-DBI BUILD_DEPENDS= ${RUN_DEPENDS} TEST_DEPENDS= p5-Test-Requires>=0:${PORTSDIR}/devel/p5-Test-Requires Index: databases/p5-DBIx-Sunny/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBIx-Sunny/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- databases/p5-DBIx-Sunny/Makefile 12 Feb 2012 02:04:25 -0000 1.3 +++ databases/p5-DBIx-Sunny/Makefile 1 Mar 2012 21:47:28 -0000 @@ -39,12 +39,4 @@ MAN3= DBIx::Sunny.3 \ DBIx::Sunny::Schema.3 -.include - -.if ${PERL_LEVEL} < 501001 - -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: databases/p5-DBM-Deep/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-DBM-Deep/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- databases/p5-DBM-Deep/Makefile 28 Feb 2012 17:05:25 -0000 1.12 +++ databases/p5-DBM-Deep/Makefile 1 Mar 2012 21:47:34 -0000 @@ -32,10 +32,4 @@ DBM::Deep::Iterator::File::Index.3 DBM::Deep::Null.3 \ DBM::Deep::Engine::File.3 DBM::Deep::Sector::File.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: databases/p5-Jifty-DBI/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-Jifty-DBI/Makefile,v retrieving revision 1.35 diff -u -r1.35 Makefile --- databases/p5-Jifty-DBI/Makefile 26 Jan 2012 17:47:03 -0000 1.35 +++ databases/p5-Jifty-DBI/Makefile 1 Mar 2012 21:47:41 -0000 @@ -82,11 +82,4 @@ Jifty::DBI::Schema.3 \ Jifty::DBI::SchemaGenerator.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: databases/p5-MongoDB/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-MongoDB/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- databases/p5-MongoDB/Makefile 9 Jan 2012 15:40:55 -0000 1.17 +++ databases/p5-MongoDB/Makefile 1 Mar 2012 21:47:53 -0000 @@ -53,10 +53,4 @@ MongoDB::Timestamp.3 \ MongoDB::Tutorial.3 -.include - -.if ${PERL_LEVEL} < 500809 -TEST_DEPENDS+= p5-File-Temp>=0.17:${PORTSDIR}/devel/p5-File-Temp -.endif - -.include +.include Index: databases/p5-ORLite/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-ORLite/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- databases/p5-ORLite/Makefile 7 Jan 2012 20:54:51 -0000 1.13 +++ databases/p5-ORLite/Makefile 1 Mar 2012 21:48:14 -0000 @@ -27,16 +27,4 @@ MAN3= ORLite.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-File-Temp>=0.20:${PORTSDIR}/devel/p5-File-Temp -RUN_DEPENDS+= p5-File-Temp>=0.20:${PORTSDIR}/devel/p5-File-Temp -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-File-Path>=2.08:${PORTSDIR}/devel/p5-File-Path -RUN_DEPENDS+= p5-File-Path>=2.08:${PORTSDIR}/devel/p5-File-Path -.endif - -.include +.include Index: databases/p5-Prophet/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-Prophet/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- databases/p5-Prophet/Makefile 18 Dec 2011 19:22:25 -0000 1.5 +++ databases/p5-Prophet/Makefile 1 Mar 2012 21:48:22 -0000 @@ -95,11 +95,4 @@ Prophet::Replica::sqlite.3 \ Prophet::Meta::Types.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -RUN_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: databases/p5-Redis/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-Redis/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- databases/p5-Redis/Makefile 13 Jan 2012 04:18:15 -0000 1.7 +++ databases/p5-Redis/Makefile 1 Mar 2012 21:48:30 -0000 @@ -27,14 +27,4 @@ MAN3= Redis.3 Redis::Hash.3 Redis::List.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-IPC-Cmd>=0:${PORTSDIR}/devel/p5-IPC-Cmd -.endif - -.if ${PERL_LEVEL} < 501000 -TEST_DEPENDS+= p5-Test-Simple>=0.96:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: databases/p5-SQL-Translator/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-SQL-Translator/Makefile,v retrieving revision 1.29 diff -u -r1.29 Makefile --- databases/p5-SQL-Translator/Makefile 29 Jan 2012 21:20:26 -0000 1.29 +++ databases/p5-SQL-Translator/Makefile 2 Mar 2012 03:17:33 -0000 @@ -113,9 +113,6 @@ post-patch: @${FIND} ${WRKSRC} -name "*.orig" -delete -regression-test: build - cd ${WRKSRC}/ && ${MAKE} test - .include .if defined(WITH_DIAGRAM) Index: databases/p5-SQLite-Work/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/p5-SQLite-Work/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- databases/p5-SQLite-Work/Makefile 8 Sep 2011 08:36:30 -0000 1.9 +++ databases/p5-SQLite-Work/Makefile 1 Mar 2012 21:48:43 -0000 @@ -35,10 +35,4 @@ post-patch: ${CHMOD} u+w ${WRKSRC}/Makefile.PL -.include - -.if ${PERL_LEVEL} < 500807 -RUN_DEPENDS+= p5-CGI.pm>=3.10:${PORTSDIR}/www/p5-CGI.pm -.endif - -.include +.include Index: devel/p5-Algorithm-Evolutionary/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Algorithm-Evolutionary/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- devel/p5-Algorithm-Evolutionary/Makefile 1 Sep 2011 13:23:02 -0000 1.25 +++ devel/p5-Algorithm-Evolutionary/Makefile 1 Mar 2012 21:49:58 -0000 @@ -116,11 +116,4 @@ Algorithm::Evolutionary::Wheel.3 \ Algorithm::Evolutionary::XML.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: devel/p5-Any-Moose-Convert/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Any-Moose-Convert/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/p5-Any-Moose-Convert/Makefile 23 Sep 2011 19:46:35 -0000 1.3 +++ devel/p5-Any-Moose-Convert/Makefile 1 Mar 2012 21:50:05 -0000 @@ -25,10 +25,4 @@ MAN3= Any::Moose::Convert.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-AnyEvent-Filesys-Notify/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-AnyEvent-Filesys-Notify/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/p5-AnyEvent-Filesys-Notify/Makefile 3 Feb 2012 20:59:30 -0000 1.3 +++ devel/p5-AnyEvent-Filesys-Notify/Makefile 1 Mar 2012 21:50:12 -0000 @@ -33,10 +33,4 @@ AnyEvent::Filesys::Notify::Role::Linux.3 \ AnyEvent::Filesys::Notify::Role::Mac.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-autodie>0:${PORTSDIR}/devel/p5-autodie -.endif - -.include +.include Index: devel/p5-App-CLI/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-App-CLI/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- devel/p5-App-CLI/Makefile 21 Jan 2012 17:37:18 -0000 1.11 +++ devel/p5-App-CLI/Makefile 1 Mar 2012 21:50:22 -0000 @@ -18,13 +18,4 @@ MAN3= App::CLI.3 App::CLI::Command.3 App::CLI::Command::Help.3 App::CLI::Helper.3 -.include - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS= p5-Getopt-Long>=2.35:${PORTSDIR}/devel/p5-Getopt-Long \ - p5-Locale-Maketext-Simple>0:${PORTSDIR}/devel/p5-Locale-Maketext-Simple \ - p5-Pod-Simple>0:${PORTSDIR}/textproc/p5-Pod-Simple -RUN_DEPENDS:= ${BUILD_DEPENDS} -.endif - -.include +.include Index: devel/p5-App-GitGot/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-App-GitGot/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- devel/p5-App-GitGot/Makefile 13 Dec 2011 08:25:49 -0000 1.9 +++ devel/p5-App-GitGot/Makefile 1 Mar 2012 21:50:30 -0000 @@ -64,10 +64,4 @@ App::GitGot::Repo.3 \ App::GitGot::Repo::Git.3 -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-autodie>=0:${PORTSDIR}/devel/p5-autodie -.endif - -.include +.include Index: devel/p5-App-GitHub/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-App-GitHub/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-App-GitHub/Makefile 19 Feb 2012 15:15:49 -0000 1.2 +++ devel/p5-App-GitHub/Makefile 1 Mar 2012 21:50:37 -0000 @@ -27,10 +27,4 @@ MAN1= github.pl.1 MAN3= App::GitHub.3 -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-IPC-Cmd>=0:${PORTSDIR}/devel/p5-IPC-Cmd -.endif - -.include +.include Index: devel/p5-AutoLoader/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-AutoLoader/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- devel/p5-AutoLoader/Makefile 22 Jan 2012 12:52:31 -0000 1.11 +++ devel/p5-AutoLoader/Makefile 2 Mar 2012 03:17:36 -0000 @@ -18,7 +18,4 @@ MAN3= AutoLoader.3 AutoSplit.3 -regression-test: - cd ${WRKSRC} && ${MAKE} test - .include Index: devel/p5-B-Hooks-EndOfScope/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-B-Hooks-EndOfScope/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- devel/p5-B-Hooks-EndOfScope/Makefile 24 Feb 2012 10:04:11 -0000 1.10 +++ devel/p5-B-Hooks-EndOfScope/Makefile 1 Mar 2012 21:50:43 -0000 @@ -25,10 +25,4 @@ MAN3= B::Hooks::EndOfScope.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.89:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-B-Hooks-OP-Check/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-B-Hooks-OP-Check/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- devel/p5-B-Hooks-OP-Check/Makefile 17 Sep 2011 07:06:26 -0000 1.7 +++ devel/p5-B-Hooks-OP-Check/Makefile 1 Mar 2012 21:50:51 -0000 @@ -20,11 +20,4 @@ MAN3= B::Hooks::OP::Check.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: devel/p5-B-Hooks-Parser/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-B-Hooks-Parser/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/p5-B-Hooks-Parser/Makefile 7 Feb 2012 15:10:31 -0000 1.5 +++ devel/p5-B-Hooks-Parser/Makefile 1 Mar 2012 21:50:57 -0000 @@ -25,11 +25,4 @@ MAN3= B::Hooks::Parser.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: devel/p5-B-Size/Makefile =================================================================== RCS file: devel/p5-B-Size/Makefile diff -N devel/p5-B-Size/Makefile --- devel/p5-B-Size/Makefile 4 Feb 2010 15:39:22 -0000 1.12 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,29 +0,0 @@ -# New ports collection makefile for: p5-B-Size -# Date created: 12 dec 2004 -# Whom: Andrey Chernov -# -# $FreeBSD: ports/devel/p5-B-Size/Makefile,v 1.12 2010/02/04 15:39:22 pgollucci Exp $ -# - -PORTNAME= B-Size -PORTVERSION= 0.09 -CATEGORIES= devel perl5 -MASTER_SITES= CPAN -PKGNAMEPREFIX= p5- - -MAINTAINER= perl@FreeBSD.org -COMMENT= Tools to measure size of Perl OPs and [SAV]Vs - -MAKE_JOBS_SAFE= yes - -PERL_CONFIGURE= yes - -MAN3= B::Size.3 B::TerseSize.3 - -.include - -.if ${PERL_LEVEL} >= 501000 -BROKEN= Does not build with perl >= 5.10 -.endif - -.include Index: devel/p5-B-Size/distinfo =================================================================== RCS file: devel/p5-B-Size/distinfo diff -N devel/p5-B-Size/distinfo --- devel/p5-B-Size/distinfo 17 May 2011 11:04:20 -0000 1.6 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,2 +0,0 @@ -SHA256 (B-Size-0.09.tar.gz) = fc0a077ce9d0e0799a441fc14518891e995ffbff7727c06440419067af75d472 -SIZE (B-Size-0.09.tar.gz) = 10695 Index: devel/p5-B-Size/pkg-descr =================================================================== RCS file: devel/p5-B-Size/pkg-descr diff -N devel/p5-B-Size/pkg-descr --- devel/p5-B-Size/pkg-descr 12 Dec 2004 16:42:33 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,4 +0,0 @@ -B::Size Measure size of Perl OPs and SVs -B::TerseSize Printing info about ops and their (estimated) size - -WWW: http://search.cpan.org/dist/B-Size/ Index: devel/p5-B-Size/pkg-plist =================================================================== RCS file: devel/p5-B-Size/pkg-plist diff -N devel/p5-B-Size/pkg-plist --- devel/p5-B-Size/pkg-plist 22 Jan 2006 01:47:01 -0000 1.3 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,8 +0,0 @@ -%%SITE_PERL%%/%%PERL_ARCH%%/B/Size.pm -%%SITE_PERL%%/%%PERL_ARCH%%/B/TerseSize.pm -%%SITE_PERL%%/%%PERL_ARCH%%/auto/B/Size/Size.bs -%%SITE_PERL%%/%%PERL_ARCH%%/auto/B/Size/Size.so -%%SITE_PERL%%/%%PERL_ARCH%%/auto/B/Size/.packlist -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/B/Size -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/B -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/B Index: devel/p5-B-Utils/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-B-Utils/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- devel/p5-B-Utils/Makefile 28 Nov 2011 09:13:23 -0000 1.15 +++ devel/p5-B-Utils/Makefile 1 Mar 2012 21:51:53 -0000 @@ -24,10 +24,4 @@ PERL_CONFIGURE= yes -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -.endif - -.include +.include Index: devel/p5-BSD-devstat/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-BSD-devstat/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/p5-BSD-devstat/Makefile 4 Apr 2010 07:54:41 -0000 1.3 +++ devel/p5-BSD-devstat/Makefile 2 Mar 2012 03:17:40 -0000 @@ -19,7 +19,4 @@ MAN3= BSD::devstat.3 -regression-test: - cd ${WRKSRC} && make test - .include Index: devel/p5-BZ-Client/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-BZ-Client/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- devel/p5-BZ-Client/Makefile 15 Feb 2012 02:42:19 -0000 1.7 +++ devel/p5-BZ-Client/Makefile 1 Mar 2012 22:58:16 -0000 @@ -22,7 +22,7 @@ TEST_DEPENDS= p5-libwww>=0:${PORTSDIR}/www/p5-libwww \ p5-DateTime-Format-ISO8601>=0:${PORTSDIR}/devel/p5-DateTime-Format-ISO8601 -PERL_CONFIGURE= 5.10.1+ +PERL_CONFIGURE= yes MAN3= BZ::Client.3 BZ::Client::API.3 BZ::Client::Bug.3 \ BZ::Client::Bugzilla.3 BZ::Client::Exception.3 \ Index: devel/p5-Bread-Board/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Bread-Board/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- devel/p5-Bread-Board/Makefile 13 Feb 2012 09:46:58 -0000 1.9 +++ devel/p5-Bread-Board/Makefile 1 Mar 2012 21:52:03 -0000 @@ -87,10 +87,4 @@ .else .endif -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Bread-Board-Declare/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Bread-Board-Declare/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/p5-Bread-Board-Declare/Makefile 13 Feb 2012 04:45:33 -0000 1.3 +++ devel/p5-Bread-Board-Declare/Makefile 1 Mar 2012 21:52:10 -0000 @@ -40,10 +40,4 @@ Bread::Board::Declare::Role::Object.3 \ Bread::Board::Declare::Role::Service.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-CPAN-Checksums/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-CPAN-Checksums/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/p5-CPAN-Checksums/Makefile 11 Feb 2012 22:33:25 -0000 1.6 +++ devel/p5-CPAN-Checksums/Makefile 1 Mar 2012 21:52:22 -0000 @@ -23,15 +23,6 @@ PERL_CONFIGURE= YES -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Compress/Bzip2.pm:${PORTSDIR}/archivers/p5-IO-Compress \ - ${SITE_PERL}/${PERL_ARCH}/Digest/SHA.pm:${PORTSDIR}/security/p5-Digest-SHA -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Compress/Bzip2.pm:${PORTSDIR}/archivers/p5-IO-Compress \ - ${SITE_PERL}/${PERL_ARCH}/Digest/SHA.pm:${PORTSDIR}/security/p5-Digest-SHA -.endif - MAN3= CPAN::Checksums.3 -.include +.include Index: devel/p5-CPAN-Meta/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-CPAN-Meta/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- devel/p5-CPAN-Meta/Makefile 24 Feb 2012 10:00:57 -0000 1.19 +++ devel/p5-CPAN-Meta/Makefile 1 Mar 2012 21:52:36 -0000 @@ -27,15 +27,6 @@ .include -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-version>=0.82:${PORTSDIR}/devel/p5-version -RUN_DEPENDS+= p5-version>=0.82:${PORTSDIR}/devel/p5-version -.endif - .if ${PERL_LEVEL} < 501400 BUILD_DEPENDS+= p5-CPAN-Meta-YAML>=0.002:${PORTSDIR}/devel/p5-CPAN-Meta-YAML \ p5-JSON-PP>=2.27103:${PORTSDIR}/converters/p5-JSON-PP \ Index: devel/p5-CPAN-Mini/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-CPAN-Mini/Makefile,v retrieving revision 1.28 diff -u -r1.28 Makefile --- devel/p5-CPAN-Mini/Makefile 26 Aug 2011 13:28:32 -0000 1.28 +++ devel/p5-CPAN-Mini/Makefile 1 Mar 2012 21:52:43 -0000 @@ -26,10 +26,4 @@ MAN1= minicpan.1 MAN3= CPAN::Mini.3 CPAN::Mini::App.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: devel/p5-CPAN-YACSmoke/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-CPAN-YACSmoke/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/p5-CPAN-YACSmoke/Makefile 15 Nov 2008 06:40:06 -0000 1.4 +++ devel/p5-CPAN-YACSmoke/Makefile 1 Mar 2012 21:52:50 -0000 @@ -30,15 +30,4 @@ CPAN::YACSmoke::Plugin::SmokeDB.3 \ CPAN::YACSmoke::Plugin::Recent.3 -.include - -.if ${PERL_LEVEL} < 500806 -RUN_DEPENDS+= p5-PathTools>=0.88:${PORTSDIR}/devel/p5-PathTools -.endif - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-CPANPLUS>=0:${PORTSDIR}/devel/p5-CPANPLUS \ - p5-Module-Pluggable>=2.5:${PORTSDIR}/devel/p5-Module-Pluggable -.endif - -.include +.include Index: devel/p5-CPANPLUS/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-CPANPLUS/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- devel/p5-CPANPLUS/Makefile 29 Jan 2010 03:01:27 -0000 1.16 +++ devel/p5-CPANPLUS/Makefile 1 Mar 2012 21:54:12 -0000 @@ -60,38 +60,6 @@ CPANPLUS::Shell::Default::Plugins::Source.3 \ CPANPLUS::inc.3 -.include - -.if ${PERL_LEVEL} < 500904 -RUN_DEPENDS+= p5-Module-Load>=0.10:${PORTSDIR}/devel/p5-Module-Load \ - p5-Module-Loaded>=0.01:${PORTSDIR}/devel/p5-Module-Loaded \ - p5-Package-Constants>=0.01:${PORTSDIR}/devel/p5-Package-Constants -.endif - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Archive-Extract>=0.16:${PORTSDIR}/archivers/p5-Archive-Extract \ - p5-IPC-Cmd>=0.36:${PORTSDIR}/devel/p5-IPC-Cmd \ - p5-Locale-Maketext-Simple>=0.01:${PORTSDIR}/devel/p5-Locale-Maketext-Simple \ - p5-Log-Message>=0.01:${PORTSDIR}/devel/p5-Log-Message \ - p5-Object-Accessor>=0.32:${PORTSDIR}/devel/p5-Object-Accessor \ - p5-Params-Check>=0.22:${PORTSDIR}/devel/p5-Params-Check -.endif - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-File-Fetch>=0.13_04:${PORTSDIR}/ftp/p5-File-Fetch \ - p5-Module-Load-Conditional>=0.18:${PORTSDIR}/devel/p5-Module-Load-Conditional \ - p5-Term-UI>=0.18:${PORTSDIR}/devel/p5-Term-UI -PLIST_SUB+= EXE_FILES="" -MAN1= cpanp.1 cpan2dist.1 -.else -PLIST_SUB+= EXE_FILES="@comment " -.endif - -post-patch: -.if ${PERL_LEVEL} >= 501000 - @${REINPLACE_CMD} -e 's/5.009/5.666/; /install_script/d' ${WRKSRC}/Makefile.PL -.endif - .if defined(WITH_TEST_REPORTER) RUN_DEPENDS+= ${SITE_PERL}/Test/Reporter.pm:${PORTSDIR}/devel/p5-Test-Reporter .endif @@ -100,4 +68,7 @@ RUN_DEPENDS+= ${SITE_PERL}/YAML.pm:${PORTSDIR}/textproc/p5-YAML .endif -.include +post-patch: + @${REINPLACE_CMD} -e 's/5.009/5.666/; /install_script/d' ${WRKSRC}/Makefile.PL + +.include Index: devel/p5-CPANPLUS/pkg-plist =================================================================== RCS file: /home/ncvs/ports/devel/p5-CPANPLUS/pkg-plist,v retrieving revision 1.7 diff -u -r1.7 pkg-plist --- devel/p5-CPANPLUS/pkg-plist 28 Mar 2009 20:45:07 -0000 1.7 +++ devel/p5-CPANPLUS/pkg-plist 1 Mar 2012 21:53:56 -0000 @@ -1,6 +1,3 @@ -%%EXE_FILES%%bin/cpan2dist -%%EXE_FILES%%bin/cpanp -%%EXE_FILES%%bin/cpanp-run-perl %%SITE_PERL%%/CPANPLUS.pm %%SITE_PERL%%/CPANPLUS/Backend.pm %%SITE_PERL%%/CPANPLUS/Backend/RV.pm Index: devel/p5-CPANPLUS-Dist-Build/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-CPANPLUS-Dist-Build/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- devel/p5-CPANPLUS-Dist-Build/Makefile 17 Feb 2012 18:16:08 -0000 1.23 +++ devel/p5-CPANPLUS-Dist-Build/Makefile 1 Mar 2012 21:54:22 -0000 @@ -21,30 +21,4 @@ MAN3= CPANPLUS::Dist::Build.3 CPANPLUS::Dist::Build::Constants.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-CPANPLUS>=0.84:${PORTSDIR}/devel/p5-CPANPLUS \ - p5-ExtUtils-Install>=1.42:${PORTSDIR}/devel/p5-ExtUtils-Install \ - p5-Locale-Maketext-Simple>=0:${PORTSDIR}/devel/p5-Locale-Maketext-Simple \ - p5-Params-Check>=0.26:${PORTSDIR}/devel/p5-Params-Check -RUN_DEPENDS+= p5-CPANPLUS>=0.84:${PORTSDIR}/devel/p5-CPANPLUS \ - p5-ExtUtils-Install>=1.42:${PORTSDIR}/devel/p5-ExtUtils-Install \ - p5-Locale-Maketext-Simple>=0:${PORTSDIR}/devel/p5-Locale-Maketext-Simple \ - p5-Params-Check>=0.26:${PORTSDIR}/devel/p5-Params-Check -.endif - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-IPC-Cmd>=0.42:${PORTSDIR}/devel/p5-IPC-Cmd \ - p5-Module-Build>=0.3200:${PORTSDIR}/devel/p5-Module-Build \ - p5-Module-Load>=0.16:${PORTSDIR}/devel/p5-Module-Load \ - p5-Module-Load-Conditional>=0.30:${PORTSDIR}/devel/p5-Module-Load-Conditional \ - p5-Module-Pluggable>=3.8:${PORTSDIR}/devel/p5-Module-Pluggable -RUN_DEPENDS+= p5-IPC-Cmd>=0.42:${PORTSDIR}/devel/p5-IPC-Cmd \ - p5-Module-Build>=0.3200:${PORTSDIR}/devel/p5-Module-Build \ - p5-Module-Load>=0.16:${PORTSDIR}/devel/p5-Module-Load \ - p5-Module-Load-Conditional>=0.30:${PORTSDIR}/devel/p5-Module-Load-Conditional \ - p5-Module-Pluggable>=3.8:${PORTSDIR}/devel/p5-Module-Pluggable -.endif - -.include +.include Index: devel/p5-Cache-AgainstFile/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Cache-AgainstFile/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-Cache-AgainstFile/Makefile 10 May 2010 02:39:55 -0000 1.1 +++ devel/p5-Cache-AgainstFile/Makefile 2 Mar 2012 03:17:43 -0000 @@ -28,7 +28,4 @@ Cache::AgainstFile::Base.3 \ Cache::AgainstFile::CacheModule.3 -regression-test: - cd ${WRKSRC} && ${MAKE} test - .include Index: devel/p5-Carp-Always-Color/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Carp-Always-Color/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-Carp-Always-Color/Makefile 20 Sep 2011 08:54:11 -0000 1.1 +++ devel/p5-Carp-Always-Color/Makefile 1 Mar 2012 21:54:30 -0000 @@ -23,14 +23,4 @@ Carp::Always::Color::HTML.3 \ Carp::Always::Color::Term.3 -.include - -.if ${PERL_LEVEL} < 500808 -BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.30:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker -.endif - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Class-Accessor-Complex/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Class-Accessor-Complex/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-Class-Accessor-Complex/Makefile 12 Feb 2012 02:05:29 -0000 1.2 +++ devel/p5-Class-Accessor-Complex/Makefile 1 Mar 2012 21:54:40 -0000 @@ -26,10 +26,4 @@ MAN3= Class::Accessor::Complex.3 -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: devel/p5-Class-Accessor-Grouped/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Class-Accessor-Grouped/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- devel/p5-Class-Accessor-Grouped/Makefile 26 Dec 2011 17:08:01 -0000 1.23 +++ devel/p5-Class-Accessor-Grouped/Makefile 1 Mar 2012 21:54:50 -0000 @@ -30,10 +30,4 @@ MAN3= Class::Accessor::Grouped.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Class-Load-XS/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Class-Load-XS/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/p5-Class-Load-XS/Makefile 9 Feb 2012 02:35:29 -0000 1.3 +++ devel/p5-Class-Load-XS/Makefile 1 Mar 2012 21:54:56 -0000 @@ -26,10 +26,4 @@ MAN3= Class::Load::XS.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Class-Tom/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Class-Tom/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- devel/p5-Class-Tom/Makefile 21 Sep 2010 16:08:06 -0000 1.14 +++ devel/p5-Class-Tom/Makefile 1 Mar 2012 21:55:03 -0000 @@ -23,11 +23,4 @@ MAN3= Class::Tom.3 -.include - -.if ${PERL_LEVEL} < 500703 -RUN_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -BUILD_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -.endif - -.include +.include Index: devel/p5-Config-AutoConf/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Config-AutoConf/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/p5-Config-AutoConf/Makefile 10 Feb 2012 03:38:43 -0000 1.5 +++ devel/p5-Config-AutoConf/Makefile 1 Mar 2012 21:55:09 -0000 @@ -24,11 +24,4 @@ MAN3= Config::AutoConf.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0.23:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -RUN_DEPENDS+= p5-ExtUtils-CBuilder>=0.23:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -.endif - -.include +.include Index: devel/p5-Config-JSON/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Config-JSON/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- devel/p5-Config-JSON/Makefile 1 Oct 2011 19:21:15 -0000 1.10 +++ devel/p5-Config-JSON/Makefile 1 Mar 2012 21:55:16 -0000 @@ -25,10 +25,4 @@ PERL_CONFIGURE= Yes MAN3= Config::JSON.3 -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-version>=0.72.03:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: devel/p5-Config-Model/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Config-Model/Makefile,v retrieving revision 1.81 diff -u -r1.81 Makefile --- devel/p5-Config-Model/Makefile 29 Feb 2012 14:55:39 -0000 1.81 +++ devel/p5-Config-Model/Makefile 1 Mar 2012 22:59:23 -0000 @@ -45,7 +45,7 @@ p5-Test-Warn>=0:${PORTSDIR}/devel/p5-Test-Warn \ p5-Test-Command>=0:${PORTSDIR}/devel/p5-Test-Command -PERL_MODBUILD= 5.10+ +PERL_MODBUILD= yes MAN1= cme.1 config-edit.1 MAN3= Config::Model.3 \ @@ -164,11 +164,4 @@ Config::Model::models::Multistrap::Section.3 \ Config::Model::models::PopCon.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-File-Path>=2.07:${PORTSDIR}/devel/p5-File-Path -RUN_DEPENDS+= p5-File-Path>=2.07:${PORTSDIR}/devel/p5-File-Path -.endif - -.include +.include Index: devel/p5-Config-Std/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Config-Std/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/p5-Config-Std/Makefile 17 Feb 2009 03:38:57 -0000 1.6 +++ devel/p5-Config-Std/Makefile 1 Mar 2012 21:55:28 -0000 @@ -22,10 +22,4 @@ MAN3= Config::Std.3 -.include - -.if ${PERL_LEVEL} < 500900 -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: devel/p5-Const-Fast/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Const-Fast/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- devel/p5-Const-Fast/Makefile 29 Feb 2012 14:55:33 -0000 1.9 +++ devel/p5-Const-Fast/Makefile 1 Mar 2012 21:55:34 -0000 @@ -27,10 +27,4 @@ MAN3= Const::Fast.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Data-Clone/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Data-Clone/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-Data-Clone/Makefile 4 Oct 2011 18:58:31 -0000 1.1 +++ devel/p5-Data-Clone/Makefile 1 Mar 2012 21:55:42 -0000 @@ -20,17 +20,4 @@ MAN3= Data::Clone.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort -RUN_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -RUN_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -.endif - -.include +.include Index: devel/p5-Data-Dump-Streamer/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Data-Dump-Streamer/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- devel/p5-Data-Dump-Streamer/Makefile 10 Jan 2012 19:52:54 -0000 1.27 +++ devel/p5-Data-Dump-Streamer/Makefile 1 Mar 2012 21:55:47 -0000 @@ -25,10 +25,4 @@ MAN3= Data::Dump::Streamer.3 DDS.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: devel/p5-Data-Dumper-Simple/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Data-Dumper-Simple/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/p5-Data-Dumper-Simple/Makefile 17 Apr 2008 14:25:02 -0000 1.6 +++ devel/p5-Data-Dumper-Simple/Makefile 1 Mar 2012 21:55:54 -0000 @@ -18,11 +18,4 @@ MAN3= Data::Dumper::Simple.3 -.include - -.if ${PERL_LEVEL} < 500805 -BUILD_DEPENDS+= ${SITE_PERL}/Filter/Simple.pm:${PORTSDIR}/textproc/p5-Filter-Simple -RUN_DEPENDS+= ${BUILD_DEPENDS} -.endif - -.include +.include Index: devel/p5-Data-Printer/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Data-Printer/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/p5-Data-Printer/Makefile 15 Feb 2012 05:07:55 -0000 1.6 +++ devel/p5-Data-Printer/Makefile 1 Mar 2012 21:56:08 -0000 @@ -40,10 +40,6 @@ .include -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - .if ${PERL_LEVEL} < 501400 BUILD_DEPENDS+= p5-Term-ANSIColor>=3:${PORTSDIR}/devel/p5-Term-ANSIColor RUN_DEPENDS+= p5-Term-ANSIColor>=3:${PORTSDIR}/devel/p5-Term-ANSIColor Index: devel/p5-Data-Random/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Data-Random/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/p5-Data-Random/Makefile 15 Nov 2011 15:48:53 -0000 1.5 +++ devel/p5-Data-Random/Makefile 1 Mar 2012 21:56:16 -0000 @@ -33,10 +33,4 @@ RUN_DEPENDS+= p5-GD>=0:${PORTSDIR}/graphics/p5-GD .endif -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Data-Section-Simple/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Data-Section-Simple/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-Data-Section-Simple/Makefile 22 Sep 2011 17:36:44 -0000 1.2 +++ devel/p5-Data-Section-Simple/Makefile 2 Mar 2012 03:01:46 -0000 @@ -18,10 +18,4 @@ MAN3= Data::Section::Simple.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Data-Serializer/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Data-Serializer/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- devel/p5-Data-Serializer/Makefile 18 Jun 2011 09:05:17 -0000 1.25 +++ devel/p5-Data-Serializer/Makefile 1 Mar 2012 21:56:40 -0000 @@ -38,10 +38,4 @@ Data::Serializer::XML::Simple.3 Data::Serializer::YAML.3 \ Data::Serializer::YAML::Syck.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: devel/p5-Data-Stream-Bulk/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Data-Stream-Bulk/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/p5-Data-Stream-Bulk/Makefile 14 Feb 2012 15:16:23 -0000 1.6 +++ devel/p5-Data-Stream-Bulk/Makefile 1 Mar 2012 21:56:46 -0000 @@ -41,10 +41,4 @@ Data::Stream::Bulk::Path::Class.3 \ Data::Stream::Bulk::Util.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Data-Throttler-Memcached/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Data-Throttler-Memcached/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/p5-Data-Throttler-Memcached/Makefile 19 Feb 2012 14:40:15 -0000 1.3 +++ devel/p5-Data-Throttler-Memcached/Makefile 1 Mar 2012 21:56:52 -0000 @@ -27,11 +27,4 @@ MAN3= Data::Throttler::Memcached.3 \ Data::Throttler::BucketChain::Memcached.3 -.include - -.if ${PERL_LEVEL} < 500703 -RUN_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -BUILD_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -.endif - -.include +.include Index: devel/p5-Data-Validator/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Data-Validator/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/p5-Data-Validator/Makefile 17 Feb 2012 18:07:14 -0000 1.4 +++ devel/p5-Data-Validator/Makefile 1 Mar 2012 21:56:59 -0000 @@ -31,10 +31,4 @@ Data::Validator::Role::Sequenced.3 \ Data::Validator::Role::StrictSequenced.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Data-Visitor/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Data-Visitor/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- devel/p5-Data-Visitor/Makefile 13 Feb 2012 04:43:12 -0000 1.26 +++ devel/p5-Data-Visitor/Makefile 1 Mar 2012 21:57:05 -0000 @@ -29,10 +29,4 @@ MAN3= Data::Visitor.3 \ Data::Visitor::Callback.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-DateTime/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-DateTime/Makefile,v retrieving revision 1.60 diff -u -r1.60 Makefile --- devel/p5-DateTime/Makefile 7 Jan 2012 16:58:17 -0000 1.60 +++ devel/p5-DateTime/Makefile 1 Mar 2012 21:57:20 -0000 @@ -39,10 +39,4 @@ @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-DateTime-Astro/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-DateTime-Astro/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-DateTime-Astro/Makefile 15 Feb 2012 05:59:29 -0000 1.2 +++ devel/p5-DateTime-Astro/Makefile 1 Mar 2012 21:57:30 -0000 @@ -31,17 +31,7 @@ MAN3= DateTime::Astro.3 \ DateTime::Event::SolarTerm.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -.endif - post-configure: @${REINPLACE_CMD} -e '/^INC = / s|$$| -I${LOCALBASE}/include|' ${WRKSRC}/Makefile -.include +.include Index: devel/p5-DateTime-TimeZone/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-DateTime-TimeZone/Makefile,v retrieving revision 1.99 diff -u -r1.99 Makefile --- devel/p5-DateTime-TimeZone/Makefile 8 Nov 2011 08:34:12 -0000 1.99 +++ devel/p5-DateTime-TimeZone/Makefile 1 Mar 2012 21:57:45 -0000 @@ -36,14 +36,4 @@ @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif -.include - -.if ${PERL_LEVEL} < 500806 -RUN_DEPENDS+= p5-PathTools>=3:${PORTSDIR}/devel/p5-PathTools -.endif - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-parent>=0.223:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: devel/p5-Devel-Arena/Makefile =================================================================== RCS file: devel/p5-Devel-Arena/Makefile diff -N devel/p5-Devel-Arena/Makefile --- devel/p5-Devel-Arena/Makefile 17 Sep 2011 06:48:53 -0000 1.11 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,27 +0,0 @@ -# New ports collection makefile for: Devel-Arena -# Date created: 13 May 2005 -# Whom: Sergey Skvortsov -# -# $FreeBSD: ports/devel/p5-Devel-Arena/Makefile,v 1.11 2011/09/17 06:48:53 sunpoet Exp $ -# - -PORTNAME= Devel-Arena -PORTVERSION= 0.23 -CATEGORIES= devel perl5 -MASTER_SITES= CPAN -PKGNAMEPREFIX= p5- - -MAINTAINER= skv@FreeBSD.org -COMMENT= Perl extension for inspecting the core's arena structures - -PERL_CONFIGURE= yes - -MAN3= Devel::Arena.3 - -.include - -.if ${PERL_LEVEL} >= 501000 -BROKEN= Does not build with perl >= 5.10 -.endif - -.include Index: devel/p5-Devel-Arena/distinfo =================================================================== RCS file: devel/p5-Devel-Arena/distinfo diff -N devel/p5-Devel-Arena/distinfo --- devel/p5-Devel-Arena/distinfo 3 Jul 2011 14:57:04 -0000 1.7 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,2 +0,0 @@ -SHA256 (Devel-Arena-0.23.tar.gz) = 8afa77a368b3ff368ab2c30300f60fb01d8bd3284d901b2cdaf465cbdae38185 -SIZE (Devel-Arena-0.23.tar.gz) = 42191 Index: devel/p5-Devel-Arena/pkg-descr =================================================================== RCS file: devel/p5-Devel-Arena/pkg-descr diff -N devel/p5-Devel-Arena/pkg-descr --- devel/p5-Devel-Arena/pkg-descr 13 May 2005 07:38:31 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,3 +0,0 @@ -Inspect the arena structures that perl uses for SV allocation. - -WWW: http://search.cpan.org/dist/Devel-Arena/ Index: devel/p5-Devel-Arena/pkg-plist =================================================================== RCS file: devel/p5-Devel-Arena/pkg-plist diff -N devel/p5-Devel-Arena/pkg-plist --- devel/p5-Devel-Arena/pkg-plist 22 Jan 2006 01:47:28 -0000 1.2 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,7 +0,0 @@ -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Devel/Arena/.packlist -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Devel/Arena/Arena.bs -%%SITE_PERL%%/%%PERL_ARCH%%/auto/Devel/Arena/Arena.so -%%SITE_PERL%%/%%PERL_ARCH%%/Devel/Arena.pm -@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Devel/Arena -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/Devel -@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Devel Index: devel/p5-Devel-CallChecker/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Devel-CallChecker/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-Devel-CallChecker/Makefile 12 Feb 2012 03:11:17 -0000 1.2 +++ devel/p5-Devel-CallChecker/Makefile 1 Mar 2012 21:58:13 -0000 @@ -24,10 +24,4 @@ MAN3= Devel::CallChecker.3 -.include - -.if ${PERL_LEVEL} < 501000 -TEST_DEPENDS+= p5-ExtUtils-CBuilder>=0.1500:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -.endif - -.include +.include Index: devel/p5-Devel-CheckOS/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Devel-CheckOS/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/p5-Devel-CheckOS/Makefile 24 Sep 2011 17:28:32 -0000 1.5 +++ devel/p5-Devel-CheckOS/Makefile 1 Mar 2012 21:58:21 -0000 @@ -83,11 +83,4 @@ Devel::CheckOS.3 \ Devel::CheckOS::Families.3 -.include - -.if ${PERL_LEVEL} == 501000 -BUILD_DEPENDS+= p5-File-Temp>=0.19:${PORTSDIR}/devel/p5-File-Temp -RUN_DEPENDS+= p5-File-Temp>=0.19:${PORTSDIR}/devel/p5-File-Temp -.endif - -.include +.include Index: devel/p5-Devel-Declare/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Devel-Declare/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- devel/p5-Devel-Declare/Makefile 24 Feb 2012 12:28:29 -0000 1.23 +++ devel/p5-Devel-Declare/Makefile 1 Mar 2012 21:58:34 -0000 @@ -27,10 +27,4 @@ MAN3= Devel::Declare.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Digest-TransformPath/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Digest-TransformPath/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/p5-Digest-TransformPath/Makefile 21 Sep 2010 16:08:07 -0000 1.4 +++ devel/p5-Digest-TransformPath/Makefile 1 Mar 2012 21:58:53 -0000 @@ -19,14 +19,4 @@ MAN3= Digest::TransformPath.3 -test: build - (@cd ${WRKSRC} && make test) - -.include - -.if ${PERL_LEVEL} < 500809 -RUN_DEPENDS+= p5-Digest-MD5>=2.36:${PORTSDIR}/security/p5-Digest-MD5 -BUILD_DEPENDS+= p5-Digest-MD5>=2.36:${PORTSDIR}/security/p5-Digest-MD5 -.endif - -.include +.include Index: devel/p5-Dist-CheckConflicts/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Dist-CheckConflicts/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-Dist-CheckConflicts/Makefile 17 Jul 2011 07:28:22 -0000 1.2 +++ devel/p5-Dist-CheckConflicts/Makefile 1 Mar 2012 21:59:05 -0000 @@ -23,14 +23,8 @@ TEST_DEPENDS= p5-Test-Fatal>=0:${PORTSDIR}/devel/p5-Test-Fatal -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - PERL_CONFIGURE= YES MAN3= Dist::CheckConflicts.3 -.include +.include Index: devel/p5-DynaLoader-Functions/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-DynaLoader-Functions/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-DynaLoader-Functions/Makefile 8 Feb 2012 05:15:02 -0000 1.1 +++ devel/p5-DynaLoader-Functions/Makefile 1 Mar 2012 21:59:12 -0000 @@ -21,11 +21,4 @@ MAN3= DynaLoader::Functions.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: devel/p5-Eval-Closure/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Eval-Closure/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/p5-Eval-Closure/Makefile 10 Feb 2012 03:10:49 -0000 1.4 +++ devel/p5-Eval-Closure/Makefile 1 Mar 2012 21:59:18 -0000 @@ -31,10 +31,4 @@ MAN3= Eval::Closure.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-ExtUtils-CBuilder/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-ExtUtils-CBuilder/Makefile,v retrieving revision 1.34 diff -u -r1.34 Makefile --- devel/p5-ExtUtils-CBuilder/Makefile 24 Feb 2012 10:06:53 -0000 1.34 +++ devel/p5-ExtUtils-CBuilder/Makefile 1 Mar 2012 21:59:23 -0000 @@ -32,11 +32,6 @@ .include -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-IPC-Cmd>=0:${PORTSDIR}/devel/p5-IPC-Cmd -RUN_DEPENDS+= p5-IPC-Cmd>=0:${PORTSDIR}/devel/p5-IPC-Cmd -.endif - .if ${PERL_LEVEL} < 501400 BUILD_DEPENDS+= p5-Perl-OSType>=0:${PORTSDIR}/devel/p5-Perl-OSType RUN_DEPENDS+= p5-Perl-OSType>=0:${PORTSDIR}/devel/p5-Perl-OSType Index: devel/p5-ExtUtils-MakeMaker/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-ExtUtils-MakeMaker/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- devel/p5-ExtUtils-MakeMaker/Makefile 12 Dec 2011 16:25:42 -0000 1.24 +++ devel/p5-ExtUtils-MakeMaker/Makefile 1 Mar 2012 21:59:30 -0000 @@ -32,13 +32,6 @@ .include -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-ExtUtils-Command>=1.16:${PORTSDIR}/devel/p5-ExtUtils-Command \ - p5-ExtUtils-Install>=1.52:${PORTSDIR}/devel/p5-ExtUtils-Install -RUN_DEPENDS+= p5-ExtUtils-Command>=1.16:${PORTSDIR}/devel/p5-ExtUtils-Command \ - p5-ExtUtils-Install>=1.52:${PORTSDIR}/devel/p5-ExtUtils-Install -.endif - .if ${PERL_LEVEL} < 501400 BUILD_DEPENDS+= p5-ExtUtils-Manifest>=1.58:${PORTSDIR}/devel/p5-ExtUtils-Manifest \ p5-version>=0.88:${PORTSDIR}/devel/p5-version Index: devel/p5-ExtUtils-ParseXS/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-ExtUtils-ParseXS/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- devel/p5-ExtUtils-ParseXS/Makefile 14 Dec 2011 11:31:36 -0000 1.22 +++ devel/p5-ExtUtils-ParseXS/Makefile 1 Mar 2012 21:59:58 -0000 @@ -25,13 +25,7 @@ ExtUtils::Typemaps::OutputMap.3 \ ExtUtils::Typemaps::Type.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -.endif - post-patch: @${REINPLACE_CMD} -e '/EXE_FILES/d' ${WRKSRC}/Makefile.PL -.include +.include Index: devel/p5-File-Find-Rule-Perl/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-File-Find-Rule-Perl/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- devel/p5-File-Find-Rule-Perl/Makefile 21 Nov 2011 19:24:13 -0000 1.7 +++ devel/p5-File-Find-Rule-Perl/Makefile 2 Mar 2012 03:17:46 -0000 @@ -23,7 +23,4 @@ MAN3= File::Find::Rule::Perl.3 -regression-test: build - cd ${WRKSRC}/ && ${MAKE} test - .include Index: devel/p5-File-HStore/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-File-HStore/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- devel/p5-File-HStore/Makefile 21 Sep 2010 16:08:07 -0000 1.7 +++ devel/p5-File-HStore/Makefile 1 Mar 2012 22:00:05 -0000 @@ -19,11 +19,4 @@ MAN3= File::HStore.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA -BUILD_DEPENDS+= p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: devel/p5-File-HomeDir-PathClass/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-File-HomeDir-PathClass/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-File-HomeDir-PathClass/Makefile 12 Oct 2011 10:37:01 -0000 1.1 +++ devel/p5-File-HomeDir-PathClass/Makefile 1 Mar 2012 22:58:16 -0000 @@ -22,14 +22,8 @@ p5-Path-Class>=0:${PORTSDIR}/devel/p5-Path-Class \ p5-Sub-Exporter>=0:${PORTSDIR}/devel/p5-Sub-Exporter -PERL_MODBUILD= 5.10.0+ +PERL_MODBUILD= yes MAN3= File::HomeDir::PathClass.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-File-MMagic-XS/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-File-MMagic-XS/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- devel/p5-File-MMagic-XS/Makefile 8 Dec 2011 07:27:46 -0000 1.8 +++ devel/p5-File-MMagic-XS/Makefile 1 Mar 2012 22:00:22 -0000 @@ -19,14 +19,4 @@ MAN3= File::MMagic::XS.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -.endif - -.include +.include Index: devel/p5-File-MimeInfo/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-File-MimeInfo/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- devel/p5-File-MimeInfo/Makefile 21 Jan 2012 17:38:02 -0000 1.14 +++ devel/p5-File-MimeInfo/Makefile 2 Mar 2012 03:17:50 -0000 @@ -29,7 +29,4 @@ File::MimeInfo::Rox.3 \ File::MimeInfo.3 -regression-test: - cd ${WRKSRC} && ${PERL5} ${PL_BUILD} test - .include Index: devel/p5-File-Pid-Quick/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-File-Pid-Quick/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-File-Pid-Quick/Makefile 8 May 2010 08:54:22 -0000 1.1 +++ devel/p5-File-Pid-Quick/Makefile 2 Mar 2012 03:17:54 -0000 @@ -19,7 +19,4 @@ MAN3= File::Pid::Quick.3 -regression-test: - cd ${WRKSRC} && ${MAKE} test - .include Index: devel/p5-FileHandle-Unget/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-FileHandle-Unget/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- devel/p5-FileHandle-Unget/Makefile 21 Jan 2012 17:38:03 -0000 1.11 +++ devel/p5-FileHandle-Unget/Makefile 1 Mar 2012 22:00:29 -0000 @@ -18,11 +18,4 @@ MAN3= FileHandle::Unget.3 -.include - -.if ${PERL_LEVEL} < 500805 -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Scalar/Util.pm:${PORTSDIR}/lang/p5-Scalar-List-Utils -RUN_DEPENDS:= ${BUILD_DEPENDS} -.endif - -.include +.include Index: devel/p5-Getopt-Compact-WithCmd/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Getopt-Compact-WithCmd/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-Getopt-Compact-WithCmd/Makefile 29 Feb 2012 16:05:51 -0000 1.1 +++ devel/p5-Getopt-Compact-WithCmd/Makefile 1 Mar 2012 22:00:34 -0000 @@ -26,11 +26,6 @@ .include -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Getopt-Long>=2.38:${PORTSDIR}/devel/p5-Getopt-Long -RUN_DEPENDS+= p5-Getopt-Long>=2.38:${PORTSDIR}/devel/p5-Getopt-Long -.endif - .if ${PERL_LEVEL} < 501400 TEST_DEPENDS+= p5-Test-Simple>=0.96:${PORTSDIR}/devel/p5-Test-Simple .endif Index: devel/p5-Getopt-Euclid/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Getopt-Euclid/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/p5-Getopt-Euclid/Makefile 8 Sep 2011 08:36:32 -0000 1.6 +++ devel/p5-Getopt-Euclid/Makefile 1 Mar 2012 22:00:42 -0000 @@ -20,11 +20,4 @@ MAN3= Getopt::Euclid.3 Getopt::Euclid::HierDemo.3 -.include - -.if ${PERL_LEVEL} < 500900 -BUILD_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: devel/p5-Git-PurePerl/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Git-PurePerl/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- devel/p5-Git-PurePerl/Makefile 20 Jun 2011 08:36:07 -0000 1.8 +++ devel/p5-Git-PurePerl/Makefile 1 Mar 2012 22:00:48 -0000 @@ -27,11 +27,4 @@ MAN3= Git::PurePerl.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: devel/p5-Hash-FieldHash/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Hash-FieldHash/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/p5-Hash-FieldHash/Makefile 19 Oct 2011 13:01:18 -0000 1.3 +++ devel/p5-Hash-FieldHash/Makefile 1 Mar 2012 22:01:01 -0000 @@ -20,21 +20,4 @@ MAN3= Hash::FieldHash.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-MRO-Compat>=0.10:${PORTSDIR}/devel/p5-MRO-Compat -RUN_DEPENDS+= p5-MRO-Compat>=0.10:${PORTSDIR}/devel/p5-MRO-Compat -.endif - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort \ - p5-parent>=0.221:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0.221:${PORTSDIR}/devel/p5-parent -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -.endif - -.include +.include Index: devel/p5-IO-Prompt/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-IO-Prompt/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- devel/p5-IO-Prompt/Makefile 21 Nov 2011 19:46:13 -0000 1.8 +++ devel/p5-IO-Prompt/Makefile 2 Mar 2012 03:17:57 -0000 @@ -24,7 +24,4 @@ MAN3= IO::Prompt.3 -regression-test: build - cd ${WRKSRC}/ && ${MAKE} test - .include Index: devel/p5-IO-Toolkit/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-IO-Toolkit/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- devel/p5-IO-Toolkit/Makefile 17 Sep 2011 06:48:56 -0000 1.7 +++ devel/p5-IO-Toolkit/Makefile 1 Mar 2012 22:01:29 -0000 @@ -23,11 +23,4 @@ MAN3= IO::Toolkit.3 -.include - -.if ${PERL_LEVEL} < 500703 -RUN_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -BUILD_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -.endif - .include Index: devel/p5-IPC-Cmd/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-IPC-Cmd/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- devel/p5-IPC-Cmd/Makefile 3 Sep 2011 14:15:27 -0000 1.19 +++ devel/p5-IPC-Cmd/Makefile 1 Mar 2012 22:01:59 -0000 @@ -15,20 +15,11 @@ MAINTAINER= tobez@FreeBSD.org COMMENT= Finding and running system commands made easy -COMMON_DEPENDS= p5-IPC-Run>=0.55:${PORTSDIR}/devel/p5-IPC-Run -BUILD_DEPENDS= ${COMMON_DEPENDS} -RUN_DEPENDS= ${COMMON_DEPENDS} +BUILD_DEPENDS= p5-IPC-Run>=0.55:${PORTSDIR}/devel/p5-IPC-Run +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes MAN3= IPC::Cmd.3 -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Locale-Maketext-Simple>=0:${PORTSDIR}/devel/p5-Locale-Maketext-Simple \ - p5-Module-Load-Conditional>=0:${PORTSDIR}/devel/p5-Module-Load-Conditional \ - p5-Params-Check>=0.20:${PORTSDIR}/devel/p5-Params-Check -.endif - -.include +.include Index: devel/p5-JSON-RPC/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-JSON-RPC/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/p5-JSON-RPC/Makefile 15 Feb 2012 22:19:09 -0000 1.5 +++ devel/p5-JSON-RPC/Makefile 1 Mar 2012 22:02:10 -0000 @@ -41,11 +41,6 @@ .include -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - .if ${PERL_LEVEL} < 501400 TEST_DEPENDS+= p5-Test-Simple>=0.98:${PORTSDIR}/devel/p5-Test-Simple .endif Index: devel/p5-Lexical-Var/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Lexical-Var/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/p5-Lexical-Var/Makefile 25 Feb 2012 17:01:49 -0000 1.3 +++ devel/p5-Lexical-Var/Makefile 1 Mar 2012 22:02:32 -0000 @@ -18,20 +18,7 @@ MAN3= Lexical::Sub.3 Lexical::Var.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0.1500:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-Lexical-SealRequireHints>=0.006:${PORTSDIR}/devel/p5-Lexical-SealRequireHints -RUN_DEPENDS+= p5-Lexical-SealRequireHints>=0.006:${PORTSDIR}/devel/p5-Lexical-SealRequireHints -.endif - post-patch: -.if ${PERL_LEVEL} >= 501200 @${REINPLACE_CMD} -e '/Lexical::SealRequireHints/d' ${WRKSRC}/Build.PL ${WRKSRC}/lib/Lexical/Var.pm -.endif -.include +.include Index: devel/p5-List-AllUtils/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-List-AllUtils/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-List-AllUtils/Makefile 24 Feb 2012 10:15:26 -0000 1.2 +++ devel/p5-List-AllUtils/Makefile 1 Mar 2012 22:02:38 -0000 @@ -21,10 +21,4 @@ MAN3= List::AllUtils.3 -.include - -.if ${PERL_LEVEL} < 501000 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-List-Rotation-Cycle/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-List-Rotation-Cycle/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- devel/p5-List-Rotation-Cycle/Makefile 28 Aug 2009 17:36:50 -0000 1.7 +++ devel/p5-List-Rotation-Cycle/Makefile 1 Mar 2012 22:02:45 -0000 @@ -20,11 +20,4 @@ PERL_CONFIGURE= yes -.include - -.if ${PERL_LEVEL} < 500703 -BUILD_DEPENDS+= p5-Memoize>=0:${PORTSDIR}/devel/p5-Memoize -RUN_DEPENDS+= p5-Memoize>=0:${PORTSDIR}/devel/p5-Memoize -.endif - -.include +.include Index: devel/p5-Log-Dispatch-Dir/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Log-Dispatch-Dir/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-Log-Dispatch-Dir/Makefile 19 Feb 2012 04:04:26 -0000 1.2 +++ devel/p5-Log-Dispatch-Dir/Makefile 1 Mar 2012 22:58:16 -0000 @@ -25,7 +25,7 @@ p5-Probe-Perl>=0:${PORTSDIR}/sysutils/p5-Probe-Perl \ p5-Taint-Util>=0:${PORTSDIR}/devel/p5-Taint-Util -PERL_MODBUILD= 5.10.0+ +PERL_MODBUILD= yes MAN3= Log::Dispatch::Dir.3 Index: devel/p5-Log-Log4perl/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Log-Log4perl/Makefile,v retrieving revision 1.60 diff -u -r1.60 Makefile --- devel/p5-Log-Log4perl/Makefile 5 Feb 2012 12:22:35 -0000 1.60 +++ devel/p5-Log-Log4perl/Makefile 2 Mar 2012 03:18:01 -0000 @@ -71,7 +71,4 @@ Log::Log4perl::Util::Semaphore.3 \ Log::Log4perl::Util::TimeTracker.3 -regression-test: build - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} test - .include Index: devel/p5-MetaCPAN-API/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-MetaCPAN-API/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-MetaCPAN-API/Makefile 12 Feb 2012 03:37:42 -0000 1.2 +++ devel/p5-MetaCPAN-API/Makefile 2 Mar 2012 03:18:08 -0000 @@ -33,9 +33,4 @@ MetaCPAN::API::Release.3 \ MetaCPAN::API::Source.3 -.if defined(MAINTAINER_MODE) -regression-test: build - cd ${WRKSRC} && ${PERL5} ${PL_BUILD} test -.endif - .include Index: devel/p5-Mixin-Linewise/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Mixin-Linewise/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- devel/p5-Mixin-Linewise/Makefile 6 Feb 2012 23:34:56 -0000 1.8 +++ devel/p5-Mixin-Linewise/Makefile 1 Mar 2012 22:03:07 -0000 @@ -19,22 +19,17 @@ LICENSE= ART10 GPLv1 LICENSE_COMB= dual -.include - BUILD_DEPENDS+= p5-Sub-Exporter>=0.900:${PORTSDIR}/devel/p5-Sub-Exporter \ p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String RUN_DEPENDS+= p5-Sub-Exporter>=0.900:${PORTSDIR}/devel/p5-Sub-Exporter \ p5-IO-String>=0:${PORTSDIR}/devel/p5-IO-String -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - PERL_CONFIGURE= yes MAN3= Mixin::Linewise::Readers.3 \ Mixin::Linewise::Writers.3 \ Mixin::Linewise.3 + PLIST_FILES+= %%SITE_PERL%%/Mixin/Linewise/Readers.pm \ %%SITE_PERL%%/Mixin/Linewise/Writers.pm \ %%SITE_PERL%%/Mixin/Linewise.pm \ @@ -44,4 +39,4 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Mixin/Linewise \ %%SITE_PERL%%/%%PERL_ARCH%%/auto/Mixin -.include +.include Index: devel/p5-Module-Build/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-Build/Makefile,v retrieving revision 1.66 diff -u -r1.66 Makefile --- devel/p5-Module-Build/Makefile 1 Mar 2012 11:35:40 -0000 1.66 +++ devel/p5-Module-Build/Makefile 1 Mar 2012 22:03:28 -0000 @@ -54,24 +54,6 @@ .include -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Test-Harness>=3.16:${PORTSDIR}/devel/p5-Test-Harness -MAN1= config_data.1 -PLIST_FILES= bin/config_data -.endif - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-ExtUtils-Install>=1.54:${PORTSDIR}/devel/p5-ExtUtils-Install -RUN_DEPENDS+= p5-ExtUtils-Install>=1.54:${PORTSDIR}/devel/p5-ExtUtils-Install -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0.27:${PORTSDIR}/devel/p5-ExtUtils-CBuilder \ - p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -RUN_DEPENDS+= p5-ExtUtils-CBuilder>=0.27:${PORTSDIR}/devel/p5-ExtUtils-CBuilder \ - p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -.endif - .if ${PERL_LEVEL} < 501400 BUILD_DEPENDS+= p5-CPAN-Meta>=2.110420:${PORTSDIR}/devel/p5-CPAN-Meta \ p5-CPAN-Meta-YAML>=0.003:${PORTSDIR}/devel/p5-CPAN-Meta-YAML \ @@ -88,11 +70,9 @@ .endif post-patch: -.if ${PERL_LEVEL} >= 501000 @${RM} -f ${WRKSRC}/bin/config_data @${REINPLACE_CMD} -e '/script_files/d' ${WRKSRC}/Build.PL @${REINPLACE_CMD} -e '/^bin\/config_data/d' ${WRKSRC}/MANIFEST -.endif post-install: .if !defined(NOPORTDOCS) Index: devel/p5-Module-CPANTS-Analyse/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-CPANTS-Analyse/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- devel/p5-Module-CPANTS-Analyse/Makefile 11 May 2010 05:32:02 -0000 1.9 +++ devel/p5-Module-CPANTS-Analyse/Makefile 1 Mar 2012 22:03:40 -0000 @@ -51,15 +51,4 @@ Module::CPANTS::Kwalitee::Uses.3 \ Module::CPANTS::Kwalitee::Version.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-Pod-Simple>=0:${PORTSDIR}/textproc/p5-Pod-Simple \ - p5-Archive-Tar>=1.30:${PORTSDIR}/archivers/p5-Archive-Tar -.endif - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Module-Pluggable>=2.96:${PORTSDIR}/devel/p5-Module-Pluggable -.endif - -.include +.include Index: devel/p5-Module-CoreList/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-CoreList/Makefile,v retrieving revision 1.48 diff -u -r1.48 Makefile --- devel/p5-Module-CoreList/Makefile 5 Feb 2012 12:16:26 -0000 1.48 +++ devel/p5-Module-CoreList/Makefile 2 Mar 2012 03:18:11 -0000 @@ -21,7 +21,4 @@ post-patch: @${REINPLACE_CMD} -e '/corelist/d' ${WRKSRC}/Makefile.PL -regression-test: build - @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} test - .include Index: devel/p5-Module-Depends/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-Depends/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-Module-Depends/Makefile 19 Mar 2010 13:10:51 -0000 1.2 +++ devel/p5-Module-Depends/Makefile 1 Mar 2012 22:03:46 -0000 @@ -22,10 +22,4 @@ MAN3= Module::Depends::Intrusive.3 Module::Depends.3 -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-Parse-CPAN-Meta>=0:${PORTSDIR}/devel/p5-Parse-CPAN-Meta -.endif - -.include +.include Index: devel/p5-Module-Implementation/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-Implementation/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/p5-Module-Implementation/Makefile 20 Feb 2012 03:12:40 -0000 1.4 +++ devel/p5-Module-Implementation/Makefile 1 Mar 2012 22:03:52 -0000 @@ -28,10 +28,4 @@ MAN3= Module::Implementation.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Module-Install/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-Install/Makefile,v retrieving revision 1.44 diff -u -r1.44 Makefile --- devel/p5-Module-Install/Makefile 28 Feb 2012 14:32:45 -0000 1.44 +++ devel/p5-Module-Install/Makefile 1 Mar 2012 22:04:03 -0000 @@ -46,22 +46,4 @@ Module::Install::Share.3 \ Module::Install::With.3 -.include - -.if ${PERL_LEVEL} == 501000 -BUILD_DEPENDS+= p5-Module-CoreList>=2.17:${PORTSDIR}/devel/p5-Module-CoreList -RUN_DEPENDS+= p5-Module-CoreList>=2.17:${PORTSDIR}/devel/p5-Module-CoreList -.endif - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Archive-Tar>=1.44:${PORTSDIR}/archivers/p5-Archive-Tar \ - p5-Devel-PPPort>=3.16:${PORTSDIR}/devel/p5-Devel-PPPort \ - p5-Module-Build>=0.29:${PORTSDIR}/devel/p5-Module-Build \ - p5-Parse-CPAN-Meta>=1.39:${PORTSDIR}/devel/p5-Parse-CPAN-Meta -RUN_DEPENDS+= p5-Archive-Tar>=1.44:${PORTSDIR}/archivers/p5-Archive-Tar \ - p5-Devel-PPPort>=3.16:${PORTSDIR}/devel/p5-Devel-PPPort \ - p5-Module-Build>=0.29:${PORTSDIR}/devel/p5-Module-Build \ - p5-Parse-CPAN-Meta>=1.39:${PORTSDIR}/devel/p5-Parse-CPAN-Meta -.endif - -.include +.include Index: devel/p5-Module-Install-XSUtil/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-Install-XSUtil/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/p5-Module-Install-XSUtil/Makefile 20 Oct 2011 11:02:18 -0000 1.6 +++ devel/p5-Module-Install-XSUtil/Makefile 1 Mar 2012 22:04:11 -0000 @@ -23,16 +23,4 @@ MAN3= Module::Install::XSUtil.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort \ - p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple \ - p5-XSLoader>=0.10:${PORTSDIR}/devel/p5-XSLoader -.endif - -.if ${PERL_LEVEL} < 501200 -TEST_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -.endif - -.include +.include Index: devel/p5-Module-Load-Conditional/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-Load-Conditional/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- devel/p5-Module-Load-Conditional/Makefile 9 Sep 2011 10:09:32 -0000 1.24 +++ devel/p5-Module-Load-Conditional/Makefile 1 Mar 2012 22:04:19 -0000 @@ -33,16 +33,4 @@ @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Module-Load>=0.11:${PORTSDIR}/devel/p5-Module-Load -.endif - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Locale-Maketext-Simple>=0:${PORTSDIR}/devel/p5-Locale-Maketext-Simple \ - p5-Params-Check>=0:${PORTSDIR}/devel/p5-Params-Check \ - p5-version>=0.69:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: devel/p5-Module-Pluggable/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-Pluggable/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- devel/p5-Module-Pluggable/Makefile 31 Mar 2009 10:43:19 -0000 1.25 +++ devel/p5-Module-Pluggable/Makefile 1 Mar 2012 22:04:26 -0000 @@ -20,13 +20,7 @@ Module::Pluggable.3 \ Module::Pluggable::Object.3 -.include - -.if ${PERL_LEVEL} < 500806 -RUN_DEPENDS+= p5-PathTools>=3.0:${PORTSDIR}/devel/p5-PathTools -.endif - post-patch: @${PERL} -pi -e '$$_="" if /INST_LIB/' ${WRKSRC}/Makefile.PL -.include +.include Index: devel/p5-Module-Pluggable-Ordered/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-Pluggable-Ordered/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- devel/p5-Module-Pluggable-Ordered/Makefile 6 Oct 2011 20:51:29 -0000 1.10 +++ devel/p5-Module-Pluggable-Ordered/Makefile 1 Mar 2012 22:04:36 -0000 @@ -22,10 +22,4 @@ MAN3= Module::Pluggable::Ordered.3 -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Module-Pluggable>=1.9:${PORTSDIR}/devel/p5-Module-Pluggable -.endif - -.include +.include Index: devel/p5-Module-ScanDeps/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Module-ScanDeps/Makefile,v retrieving revision 1.51 diff -u -r1.51 Makefile --- devel/p5-Module-ScanDeps/Makefile 22 Jan 2012 12:52:18 -0000 1.51 +++ devel/p5-Module-ScanDeps/Makefile 1 Mar 2012 22:04:48 -0000 @@ -25,17 +25,4 @@ 's|/usr/bin/perl|${PERL}|' ${WRKSRC}/script/scandeps.pl \ ${WRKSRC}/Makefile.PL -regression-test: - cd ${WRKSRC} && ${MAKE} test - -.include - -.if ${PERL_LEVEL} < 500904 -RUN_DEPENDS+= p5-Module-Build>=0:${PORTSDIR}/devel/p5-Module-Build -.endif - -.if ${PERL_LEVEL} < 500900 -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: devel/p5-Moose/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Moose/Makefile,v retrieving revision 1.103 diff -u -r1.103 Makefile --- devel/p5-Moose/Makefile 8 Feb 2012 02:36:29 -0000 1.103 +++ devel/p5-Moose/Makefile 1 Mar 2012 22:04:58 -0000 @@ -194,10 +194,4 @@ post-install: @${CAT} ${PKGDIR}/pkg-message -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-MooseX-Attribute-Chained/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-MooseX-Attribute-Chained/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-MooseX-Attribute-Chained/Makefile 24 Jan 2012 09:20:12 -0000 1.1 +++ devel/p5-MooseX-Attribute-Chained/Makefile 1 Mar 2012 22:05:04 -0000 @@ -28,10 +28,4 @@ MooseX::ChainedAccessors::Accessor.3 \ MooseX::Traits::Attribute::Chained.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-MooseX-Getopt/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-MooseX-Getopt/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- devel/p5-MooseX-Getopt/Makefile 10 Feb 2012 03:09:21 -0000 1.26 +++ devel/p5-MooseX-Getopt/Makefile 1 Mar 2012 22:05:11 -0000 @@ -42,10 +42,4 @@ MooseX::Getopt::ProcessedArgv.3 \ MooseX::Getopt::Strict.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-MooseX-Log-Log4perl/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-MooseX-Log-Log4perl/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- devel/p5-MooseX-Log-Log4perl/Makefile 18 Feb 2012 18:03:37 -0000 1.6 +++ devel/p5-MooseX-Log-Log4perl/Makefile 2 Mar 2012 03:18:14 -0000 @@ -29,7 +29,4 @@ post-patch: @${PERL} -pi -e '$$_="" if m/auto_install/' ${WRKSRC}/Makefile.PL -regression-test: build - cd ${WRKSRC}/ && ${MAKE} test - .include Index: devel/p5-MooseX-MarkAsMethods/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-MooseX-MarkAsMethods/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-MooseX-MarkAsMethods/Makefile 5 Nov 2011 15:00:46 -0000 1.2 +++ devel/p5-MooseX-MarkAsMethods/Makefile 1 Mar 2012 22:05:16 -0000 @@ -25,10 +25,4 @@ MAN3= MooseX::MarkAsMethods.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.92:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-MooseX-MethodAttributes/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-MooseX-MethodAttributes/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- devel/p5-MooseX-MethodAttributes/Makefile 15 Feb 2012 05:09:51 -0000 1.16 +++ devel/p5-MooseX-MethodAttributes/Makefile 1 Mar 2012 22:05:22 -0000 @@ -42,10 +42,4 @@ MooseX::MethodAttributes::Role::Meta::Role::Application.3 \ MooseX::MethodAttributes::Role::Meta::Role::Application::Summation.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-MooseX-POE/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-MooseX-POE/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- devel/p5-MooseX-POE/Makefile 26 Jan 2012 14:53:49 -0000 1.18 +++ devel/p5-MooseX-POE/Makefile 1 Mar 2012 22:05:32 -0000 @@ -44,10 +44,4 @@ post-extract: @${PERL} -i -ne 'print unless m,build_requires,' ${WRKSRC}/Makefile.PL -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.90:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-MooseX-StrictConstructor/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-MooseX-StrictConstructor/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- devel/p5-MooseX-StrictConstructor/Makefile 15 Feb 2012 20:38:47 -0000 1.10 +++ devel/p5-MooseX-StrictConstructor/Makefile 1 Mar 2012 22:05:54 -0000 @@ -27,10 +27,4 @@ MooseX::StrictConstructor::Trait::Class.3 \ MooseX::StrictConstructor::Trait::Method::Constructor.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-MooseX-Types-Perl/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-MooseX-Types-Perl/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/p5-MooseX-Types-Perl/Makefile 7 Jan 2012 20:55:10 -0000 1.3 +++ devel/p5-MooseX-Types-Perl/Makefile 1 Mar 2012 22:06:57 -0000 @@ -24,11 +24,6 @@ .include -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-version>=0.82:${PORTSDIR}/devel/p5-version -RUN_DEPENDS+= p5-version>=0.82:${PORTSDIR}/devel/p5-version -.endif - .if ${PERL_LEVEL} < 501400 TEST_DEPENDS+= p5-Test-Simple>=0.96:${PORTSDIR}/devel/p5-Test-Simple .endif Index: devel/p5-Mouse/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Mouse/Makefile,v retrieving revision 1.62 diff -u -r1.62 Makefile --- devel/p5-Mouse/Makefile 10 Oct 2011 03:38:04 -0000 1.62 +++ devel/p5-Mouse/Makefile 1 Mar 2012 22:07:05 -0000 @@ -61,17 +61,4 @@ post-extract: @${PERL} -i -ne 'print unless m,build_requires,' ${WRKSRC}/Makefile.PL -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort -RUN_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -RUN_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -.endif - -.include +.include Index: devel/p5-MouseX-App-Cmd/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-MouseX-App-Cmd/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-MouseX-App-Cmd/Makefile 12 Dec 2011 11:25:50 -0000 1.1 +++ devel/p5-MouseX-App-Cmd/Makefile 1 Mar 2012 22:07:11 -0000 @@ -31,10 +31,4 @@ MAN3= MouseX::App::Cmd.3 \ MouseX::App::Cmd::Command.3 -.include - -.if ${PERL_LEVEL} < 501200 -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-MouseX-Foreign/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-MouseX-Foreign/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/p5-MouseX-Foreign/Makefile 18 Oct 2011 16:35:14 -0000 1.5 +++ devel/p5-MouseX-Foreign/Makefile 1 Mar 2012 22:07:19 -0000 @@ -30,10 +30,4 @@ MouseX::Foreign::Meta::Role::Method::Destructor.3 \ MouseX::NonMoose.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Multiplex-CMD/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Multiplex-CMD/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-Multiplex-CMD/Makefile 18 Apr 2011 10:05:47 -0000 1.1 +++ devel/p5-Multiplex-CMD/Makefile 1 Mar 2012 22:07:25 -0000 @@ -19,10 +19,4 @@ MAN3= Multiplex::CMD.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: devel/p5-Object-Pluggable/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Object-Pluggable/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/p5-Object-Pluggable/Makefile 7 Aug 2011 04:30:03 -0000 1.3 +++ devel/p5-Object-Pluggable/Makefile 1 Mar 2012 22:07:37 -0000 @@ -27,12 +27,6 @@ Object::Pluggable::Constants.3 \ Object::Pluggable::Pipeline.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Pod-Parser>=1.36:${PORTSDIR}/textproc/p5-Pod-Parser -.endif - post-install: .ifndef(NOPORTEXAMPLES) @${ECHO_MSG} "===> Installing examples for ${PKGNAME}" @@ -40,4 +34,4 @@ ${INSTALL_SCRIPT} ${WRKSRC}/examples/* ${EXAMPLESDIR}/ .endif -.include +.include Index: devel/p5-PAR/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-PAR/Makefile,v retrieving revision 1.51 diff -u -r1.51 Makefile --- devel/p5-PAR/Makefile 23 Jan 2012 04:17:08 -0000 1.51 +++ devel/p5-PAR/Makefile 1 Mar 2012 22:07:44 -0000 @@ -29,13 +29,4 @@ PAR::SetupProgname.3 \ PAR::SetupTemp.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -regression-test: - cd ${WRKSRC} && ${MAKE} test - -.include +.include Index: devel/p5-PAR-Packer/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-PAR-Packer/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- devel/p5-PAR-Packer/Makefile 23 Jan 2012 04:31:07 -0000 1.21 +++ devel/p5-PAR-Packer/Makefile 1 Mar 2012 22:07:51 -0000 @@ -42,10 +42,4 @@ PAR::Packer.3 \ PAR::StrippedPARL::Base.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: devel/p5-POE/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-POE/Makefile,v retrieving revision 1.63 diff -u -r1.63 Makefile --- devel/p5-POE/Makefile 16 Dec 2011 13:55:17 -0000 1.63 +++ devel/p5-POE/Makefile 1 Mar 2012 22:08:01 -0000 @@ -48,12 +48,6 @@ POE::Wheel::ReadWrite.3 POE::Wheel::Run.3 \ POE::Wheel::SocketFactory.3 -.include -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-IO>=1.24:${PORTSDIR}/devel/p5-IO -RUN_DEPENDS+= p5-IO>=1.24:${PORTSDIR}/devel/p5-IO -.endif - post-install: .ifndef(NOPORTEXAMPLES) @${ECHO_MSG} "===> Installing examples for ${PKGNAME}" @@ -61,7 +55,4 @@ ${INSTALL_SCRIPT} ${WRKSRC}/examples/* ${EXAMPLESDIR} .endif -test: build - @(cd ${WRKSRC}; make test) - -.include +.include Index: devel/p5-POE-API-Peek/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-POE-API-Peek/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- devel/p5-POE-API-Peek/Makefile 12 Jan 2012 19:27:00 -0000 1.19 +++ devel/p5-POE-API-Peek/Makefile 2 Mar 2012 03:18:17 -0000 @@ -28,7 +28,4 @@ MAN3= POE::API::Peek.3 -regression-test: - @(cd ${WRKSRC} && ${PERL} ${CONFIGURE_SCRIPT} && ${MAKE} test) - .include Index: devel/p5-POE-Component-DirWatch/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-POE-Component-DirWatch/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- devel/p5-POE-Component-DirWatch/Makefile 21 Jan 2012 17:38:44 -0000 1.9 +++ devel/p5-POE-Component-DirWatch/Makefile 2 Mar 2012 03:18:19 -0000 @@ -30,7 +30,4 @@ POE::Component::DirWatch::Role::Signatures.3 \ POE::Component::DirWatch::Unmodified.3 -regression-test: - @(cd ${WRKSRC} && ${PERL} ${CONFIGURE_SCRIPT} && ${MAKE} test) - .include Index: devel/p5-Package-Stash/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Package-Stash/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- devel/p5-Package-Stash/Makefile 7 Oct 2011 11:22:38 -0000 1.21 +++ devel/p5-Package-Stash/Makefile 1 Mar 2012 22:08:12 -0000 @@ -35,10 +35,4 @@ MAN3= Package::Stash.3 \ Package::Stash::PP.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Package-Stash-XS/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Package-Stash-XS/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/p5-Package-Stash-XS/Makefile 17 Sep 2011 07:06:29 -0000 1.5 +++ devel/p5-Package-Stash-XS/Makefile 1 Mar 2012 22:08:17 -0000 @@ -24,10 +24,4 @@ MAN3= Package::Stash::XS.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Params-Check/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Params-Check/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- devel/p5-Params-Check/Makefile 15 Aug 2011 09:07:39 -0000 1.9 +++ devel/p5-Params-Check/Makefile 1 Mar 2012 22:08:26 -0000 @@ -27,10 +27,4 @@ @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Locale-Maketext-Simple>=0:${PORTSDIR}/devel/p5-Locale-Maketext-Simple -.endif - -.include +.include Index: devel/p5-Params-Classify/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Params-Classify/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- devel/p5-Params-Classify/Makefile 16 Nov 2010 23:16:50 -0000 1.13 +++ devel/p5-Params-Classify/Makefile 1 Mar 2012 22:08:32 -0000 @@ -18,10 +18,4 @@ MAN3= Params::Classify.3 -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: devel/p5-Params-Util/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Params-Util/Makefile,v retrieving revision 1.29 diff -u -r1.29 Makefile --- devel/p5-Params-Util/Makefile 1 Mar 2012 11:30:30 -0000 1.29 +++ devel/p5-Params-Util/Makefile 1 Mar 2012 22:08:38 -0000 @@ -18,10 +18,4 @@ MAN3= Params::Util.3 -.include - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0.2700:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -.endif - -.include +.include Index: devel/p5-Params-Validate/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Params-Validate/Makefile,v retrieving revision 1.52 diff -u -r1.52 Makefile --- devel/p5-Params-Validate/Makefile 11 Feb 2012 02:05:14 -0000 1.52 +++ devel/p5-Params-Validate/Makefile 1 Mar 2012 22:08:45 -0000 @@ -28,15 +28,4 @@ MAN3= Attribute::Params::Validate.3 \ Params::Validate.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Attribute-Handlers>=0.79:${PORTSDIR}/devel/p5-Attribute-Handlers -RUN_DEPENDS+= p5-Attribute-Handlers>=0.79:${PORTSDIR}/devel/p5-Attribute-Handlers -.endif - -.if ${PERL_LEVEL} < 501000 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Parse-CPAN-Packages/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Parse-CPAN-Packages/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- devel/p5-Parse-CPAN-Packages/Makefile 21 Nov 2011 18:34:35 -0000 1.15 +++ devel/p5-Parse-CPAN-Packages/Makefile 1 Mar 2012 22:08:56 -0000 @@ -30,13 +30,4 @@ Parse::CPAN::Packages::Distribution.3 \ Parse::CPAN::Packages::Package.3 -regression-test: build - cd ${WRKSRC}/ && ${MAKE} test - -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: devel/p5-Parse-RecDescent/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Parse-RecDescent/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- devel/p5-Parse-RecDescent/Makefile 21 Jun 2011 06:58:12 -0000 1.27 +++ devel/p5-Parse-RecDescent/Makefile 1 Mar 2012 22:09:15 -0000 @@ -16,8 +16,6 @@ MAINTAINER= tobez@FreeBSD.org COMMENT= A recursive descent parsing framework for Perl -BUILD_DEPENDS= ${RUN_DEPENDS} - PERL_CONFIGURE= YES MAN3= Parse::RecDescent.3 @@ -28,10 +26,4 @@ ${INSTALL_DATA} ${WRKSRC}/tutorial/* ${DOCSDIR}/tutorial .endif -.include - -.if ${PERL_LEVEL} < 500900 -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: devel/p5-Path-Dispatcher/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Path-Dispatcher/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/p5-Path-Dispatcher/Makefile 30 Jan 2012 21:54:59 -0000 1.4 +++ devel/p5-Path-Dispatcher/Makefile 1 Mar 2012 22:09:24 -0000 @@ -49,10 +49,4 @@ Path::Dispatcher::Rule::Regex.3 \ Path::Dispatcher::Dispatch.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Perl-Version/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Perl-Version/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/p5-Perl-Version/Makefile 16 Mar 2011 15:26:28 -0000 1.5 +++ devel/p5-Perl-Version/Makefile 1 Mar 2012 22:09:36 -0000 @@ -16,18 +16,11 @@ RUN_DEPENDS= p5-File-Slurp>=9999.12:${PORTSDIR}/devel/p5-File-Slurp \ p5-Scalar-List-Utils>=0:${PORTSDIR}/lang/p5-Scalar-List-Utils -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes MAN1= perl-reversion.1 MAN3= Perl::Version.3 -.include - -.if ${PERL_LEVEL} < 5.008007 -RUN_DEPENDS+= p5-Pod-Parser>=1.3:${PORTSDIR}/textproc/p5-Pod-Parser -BUILD_DEPENDS+= p5-Pod-Parser>=1.3:${PORTSDIR}/textproc/p5-Pod-Parser -.endif - -.include +.include Index: devel/p5-PerlIO-Layers/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-PerlIO-Layers/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-PerlIO-Layers/Makefile 17 Sep 2011 07:09:03 -0000 1.2 +++ devel/p5-PerlIO-Layers/Makefile 1 Mar 2012 22:09:47 -0000 @@ -21,15 +21,4 @@ MAN3= PerlIO::Layers.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0:${PORTSDIR}/devel/p5-ExtUtils-CBuilder \ - p5-Module-Build>=0.2800:${PORTSDIR}/devel/p5-Module-Build -.endif - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.82:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-PerlIO-Util/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-PerlIO-Util/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/p5-PerlIO-Util/Makefile 23 Sep 2011 19:04:00 -0000 1.3 +++ devel/p5-PerlIO-Util/Makefile 1 Mar 2012 22:09:54 -0000 @@ -26,14 +26,4 @@ PerlIO::reverse.3 \ PerlIO::tee.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -.endif - -.include +.include Index: devel/p5-PerlIO-via-MD5/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-PerlIO-via-MD5/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/p5-PerlIO-via-MD5/Makefile 17 Sep 2011 06:49:02 -0000 1.5 +++ devel/p5-PerlIO-via-MD5/Makefile 1 Mar 2012 22:10:10 -0000 @@ -16,15 +16,7 @@ COMMENT= PerlIO layer for creating an MD5 digest of a file PERL_CONFIGURE= yes -USE_PERL5_REASON= requires PerlIO, which was introduced in Perl 5.8.0. Install lang/perl5.8 and try again MAN3= PerlIO::via::MD5.3 -.include - -.if ${PERL_LEVEL} < 500703 -RUN_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -BUILD_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -.endif - -.include +.include Index: devel/p5-Pod-Coverage-TrustPod/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Pod-Coverage-TrustPod/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/p5-Pod-Coverage-TrustPod/Makefile 12 Jul 2011 18:37:10 -0000 1.4 +++ devel/p5-Pod-Coverage-TrustPod/Makefile 1 Mar 2012 22:10:41 -0000 @@ -18,21 +18,13 @@ LICENSE= ART10 GPLv1 LICENSE_COMB= dual -.include - -BUILD_DEPENDS+= p5-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Pod-Coverage \ - p5-Pod-Eventual>=0:${PORTSDIR}/textproc/p5-Pod-Eventual -RUN_DEPENDS+= p5-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Pod-Coverage \ +BUILD_DEPENDS= p5-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Pod-Coverage \ p5-Pod-Eventual>=0:${PORTSDIR}/textproc/p5-Pod-Eventual - -TEST_DEPENDS+= p5-Test-Pod>=1.41:${PORTSDIR}/devel/p5-Test-Pod - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-Test-Pod>=1.41:${PORTSDIR}/devel/p5-Test-Pod PERL_CONFIGURE= yes MAN3= Pod::Coverage::TrustPod.3 -.include +.include Index: devel/p5-Regexp-Grammars/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Regexp-Grammars/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-Regexp-Grammars/Makefile 15 Nov 2010 00:52:46 -0000 1.2 +++ devel/p5-Regexp-Grammars/Makefile 1 Mar 2012 22:59:42 -0000 @@ -14,7 +14,7 @@ MAINTAINER= citric@cubicone.tmetic.com COMMENT= Add grammatical parsing features to Perl 5.10 regexes -PERL_MODBUILD= 5.10+ +PERL_MODBUILD= yes MAN3= Regexp::Grammars.3 Index: devel/p5-SVN-Mirror/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-SVN-Mirror/Makefile,v retrieving revision 1.44 diff -u -r1.44 Makefile --- devel/p5-SVN-Mirror/Makefile 21 Jan 2012 17:38:58 -0000 1.44 +++ devel/p5-SVN-Mirror/Makefile 2 Mar 2012 03:18:22 -0000 @@ -31,7 +31,4 @@ MAN1= svm.1 MAN3= SVN::Mirror.3 -regression-test: - cd ${WRKSRC} && ${MAKE} test - .include Index: devel/p5-SVN-S4/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-SVN-S4/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- devel/p5-SVN-S4/Makefile 14 Jun 2011 19:35:08 -0000 1.18 +++ devel/p5-SVN-S4/Makefile 2 Mar 2012 03:18:25 -0000 @@ -41,7 +41,4 @@ SVN::S4::ViewSpec.3 \ SVN::S4::WorkProp.3 -regression-test: - @(cd ${WRKSRC} && ${PERL} ${CONFIGURE_SCRIPT} && ${MAKE} test) - .include Index: devel/p5-SVN-Simple/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-SVN-Simple/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- devel/p5-SVN-Simple/Makefile 21 Jan 2012 17:38:58 -0000 1.17 +++ devel/p5-SVN-Simple/Makefile 2 Mar 2012 03:18:32 -0000 @@ -22,9 +22,6 @@ MAN3= SVN::Simple::Edit.3 SVN::Simple::Editor.3 -regression-test: - cd ${WRKSRC} && ${MAKE} test - .include .if ${ARCH} == "powerpc" Index: devel/p5-Smart-Comments/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Smart-Comments/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- devel/p5-Smart-Comments/Makefile 20 Jun 2011 08:36:13 -0000 1.9 +++ devel/p5-Smart-Comments/Makefile 1 Mar 2012 22:10:49 -0000 @@ -20,14 +20,4 @@ MAN3= Smart::Comments.3 -.include - -.if ${PERL_LEVEL} < 500900 -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Text-Balanced>=2:${PORTSDIR}/textproc/p5-Text-Balanced -.endif - -.include +.include Index: devel/p5-Sys-Info-Base/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Sys-Info-Base/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-Sys-Info-Base/Makefile 10 Oct 2011 00:14:29 -0000 1.1 +++ devel/p5-Sys-Info-Base/Makefile 2 Mar 2012 03:18:36 -0000 @@ -27,7 +27,4 @@ Sys::Info::Driver.3 \ Sys::Info::OS.3 -regression-test test: build - cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE} test - .include Index: devel/p5-Term-ProgressBar/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Term-ProgressBar/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- devel/p5-Term-ProgressBar/Makefile 17 Feb 2012 18:13:10 -0000 1.17 +++ devel/p5-Term-ProgressBar/Makefile 1 Mar 2012 22:11:04 -0000 @@ -34,10 +34,4 @@ @${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} .endif -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.80:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Term-UI/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Term-UI/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- devel/p5-Term-UI/Makefile 23 Dec 2011 21:22:15 -0000 1.9 +++ devel/p5-Term-UI/Makefile 1 Mar 2012 22:11:10 -0000 @@ -18,15 +18,4 @@ MAN3= Term::UI.3 Term::UI::History.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Locale-Maketext-Simple>=0:${PORTSDIR}/devel/p5-Locale-Maketext-Simple \ - p5-Log-Message-Simple>=0:${PORTSDIR}/devel/p5-Log-Message-Simple \ - p5-Params-Check>=0:${PORTSDIR}/devel/p5-Params-Check -RUN_DEPENDS+= p5-Locale-Maketext-Simple>=0:${PORTSDIR}/devel/p5-Locale-Maketext-Simple \ - p5-Log-Message-Simple>=0:${PORTSDIR}/devel/p5-Log-Message-Simple \ - p5-Params-Check>=0:${PORTSDIR}/devel/p5-Params-Check -.endif - -.include +.include Index: devel/p5-Test-Exception-LessClever/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Test-Exception-LessClever/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-Test-Exception-LessClever/Makefile 4 Oct 2011 16:34:48 -0000 1.1 +++ devel/p5-Test-Exception-LessClever/Makefile 1 Mar 2012 22:11:23 -0000 @@ -21,11 +21,4 @@ MAN3= Test::Exception::LessClever.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -RUN_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Test-InDistDir/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Test-InDistDir/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-Test-InDistDir/Makefile 5 Oct 2011 20:07:39 -0000 1.1 +++ devel/p5-Test-InDistDir/Makefile 2 Mar 2012 03:18:39 -0000 @@ -19,7 +19,4 @@ MAN3= Test::InDistDir.3 -regression-test: build - cd ${WRKSRC}/ && ${MAKE} test - .include Index: devel/p5-Test-Inline/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Test-Inline/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- devel/p5-Test-Inline/Makefile 22 Nov 2010 13:04:40 -0000 1.27 +++ devel/p5-Test-Inline/Makefile 1 Mar 2012 22:11:56 -0000 @@ -24,7 +24,7 @@ p5-File-chmod>=0.31:${PORTSDIR}/devel/p5-File-chmod \ p5-Params-Util>=0.21:${PORTSDIR}/devel/p5-Params-Util \ p5-Pod-Tests>=0.18:${PORTSDIR}/devel/p5-Pod-Tests -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} BUILD_DEPENDS+= p5-Test-ClassAPI>=1.02:${PORTSDIR}/devel/p5-Test-ClassAPI \ p5-Test-Script>=1.02:${PORTSDIR}/devel/p5-Test-Script @@ -41,10 +41,4 @@ Test::Inline::Script.3 \ Test::Inline::Section.3 -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Scalar-List-Utils>=1.19:${PORTSDIR}/lang/p5-Scalar-List-Utils -.endif - -.include +.include Index: devel/p5-Test-Pod/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Test-Pod/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- devel/p5-Test-Pod/Makefile 10 Mar 2011 03:38:13 -0000 1.25 +++ devel/p5-Test-Pod/Makefile 1 Mar 2012 22:12:06 -0000 @@ -19,10 +19,4 @@ MAN3= Test::Pod.3 -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Pod-Simple>=3.05:${PORTSDIR}/textproc/p5-Pod-Simple -.endif - -.include +.include Index: devel/p5-Test-Script/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Test-Script/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- devel/p5-Test-Script/Makefile 26 Nov 2009 10:06:10 -0000 1.5 +++ devel/p5-Test-Script/Makefile 1 Mar 2012 22:12:18 -0000 @@ -17,16 +17,10 @@ RUN_DEPENDS= p5-IPC-Run3>=0.034:${PORTSDIR}/devel/p5-IPC-Run3 \ p5-Probe-Perl>=0.01:${PORTSDIR}/sysutils/p5-Probe-Perl -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes MAN3= Test::Script.3 -.include - -.if ${PERL_LEVEL} < 500808 -BUILD_DEPENDS+= p5-Test-Simple>=0.62:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-Test-Spec/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Test-Spec/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-Test-Spec/Makefile 31 Jan 2012 11:59:15 -0000 1.2 +++ devel/p5-Test-Spec/Makefile 1 Mar 2012 22:12:24 -0000 @@ -28,10 +28,4 @@ MAN3= Test::Spec.3 \ Test::Spec::Mocks.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= Test-Harness>=0:${PORTSDIR}/devel/p5-Test-Harness -.endif - -.include +.include Index: devel/p5-Test-TCP/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Test-TCP/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- devel/p5-Test-TCP/Makefile 22 Feb 2012 23:11:16 -0000 1.20 +++ devel/p5-Test-TCP/Makefile 1 Mar 2012 22:12:34 -0000 @@ -15,9 +15,8 @@ MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for testing TCP program -RUN_DEPENDS= \ - p5-Test-SharedFork>=0.19:${PORTSDIR}/devel/p5-Test-SharedFork -BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Test-SharedFork>=0.19:${PORTSDIR}/devel/p5-Test-SharedFork +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes Index: devel/p5-Test-Trap/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Test-Trap/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-Test-Trap/Makefile 10 Sep 2011 06:41:42 -0000 1.2 +++ devel/p5-Test-Trap/Makefile 1 Mar 2012 22:12:42 -0000 @@ -28,11 +28,4 @@ Test::Trap::Builder::SystemSafe.3 \ Test::Trap::Builder::TempFile.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: devel/p5-Tree-Simple-VisitorFactory/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-Tree-Simple-VisitorFactory/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- devel/p5-Tree-Simple-VisitorFactory/Makefile 21 Jan 2012 17:39:15 -0000 1.13 +++ devel/p5-Tree-Simple-VisitorFactory/Makefile 1 Mar 2012 22:12:50 -0000 @@ -41,10 +41,4 @@ PERL_CONFIGURE= yes -.include - -.if ${PERL_LEVEL} < 500703 -BUILD_DEPENDS+= p5-Scalar-Util>=1.10:${PORTSDIR}/lang/p5-Scalar-List-Utils -.endif - -.include +.include Index: devel/p5-XS-Object-Magic/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-XS-Object-Magic/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/p5-XS-Object-Magic/Makefile 5 Nov 2011 15:03:43 -0000 1.1 +++ devel/p5-XS-Object-Magic/Makefile 1 Mar 2012 22:12:58 -0000 @@ -24,11 +24,4 @@ MAN3= XS::Object::Magic.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: devel/p5-lib-abs/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-lib-abs/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/p5-lib-abs/Makefile 6 Jun 2010 20:15:46 -0000 1.2 +++ devel/p5-lib-abs/Makefile 1 Mar 2012 22:13:04 -0000 @@ -18,11 +18,4 @@ MAN3= lib::abs.3 -.include - -.if ${PERL_LEVEL} < 500808 -BUILD_DEPENDS+= p5-PathTools>=3.12:${PORTSDIR}/devel/p5-PathTools -RUN_DEPENDS+= p5-PathTools>=3.12:${PORTSDIR}/devel/p5-PathTools -.endif - -.include +.include Index: devel/p5-namespace-clean/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-namespace-clean/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- devel/p5-namespace-clean/Makefile 28 Dec 2011 14:39:44 -0000 1.13 +++ devel/p5-namespace-clean/Makefile 1 Mar 2012 22:13:11 -0000 @@ -24,10 +24,4 @@ MAN3= namespace::clean.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: devel/p5-parent/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-parent/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- devel/p5-parent/Makefile 6 May 2011 14:15:40 -0000 1.8 +++ devel/p5-parent/Makefile 2 Mar 2012 03:18:47 -0000 @@ -19,7 +19,4 @@ MAN3= parent.3 -regression-test: - cd ${WRKSRC} && ${MAKE} test - .include Index: devel/p5-uni-perl/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/p5-uni-perl/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/p5-uni-perl/Makefile 20 Jun 2011 08:36:19 -0000 1.4 +++ devel/p5-uni-perl/Makefile 1 Mar 2012 22:58:16 -0000 @@ -20,7 +20,7 @@ p5-lib-abs>=0.90:${PORTSDIR}/devel/p5-lib-abs BUILD_DEPENDS= ${RUN_DEPENDS} -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN3= uni::perl.3 Index: dns/p5-Net-DNS/Makefile =================================================================== RCS file: /home/ncvs/ports/dns/p5-Net-DNS/Makefile,v retrieving revision 1.79 diff -u -r1.79 Makefile --- dns/p5-Net-DNS/Makefile 15 Feb 2012 09:44:39 -0000 1.79 +++ dns/p5-Net-DNS/Makefile 1 Mar 2012 22:13:52 -0000 @@ -55,12 +55,6 @@ PORTDOCS= * -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA -.endif - .if !defined(WITHOUT_IPV6) RUN_DEPENDS+= ${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-Socket-INET6 .endif @@ -78,4 +72,4 @@ @${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/ .endif -.include +.include Index: dns/p5-Net-DNS-SEC/Makefile =================================================================== RCS file: /home/ncvs/ports/dns/p5-Net-DNS-SEC/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- dns/p5-Net-DNS-SEC/Makefile 13 Mar 2010 08:25:54 -0000 1.23 +++ dns/p5-Net-DNS-SEC/Makefile 1 Mar 2012 22:14:06 -0000 @@ -22,7 +22,7 @@ p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1 \ p5-MIME-Base32>=0:${PORTSDIR}/converters/p5-MIME-Base32 \ p5-Net-DNS>=0.64:${PORTSDIR}/dns/p5-Net-DNS -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes @@ -33,10 +33,4 @@ Net::DNS::RR::NSEC.3 Net::DNS::RR::DNSKEY.3 \ Net::DNS::RR::NSEC3.3 Net::DNS::RR::NSEC3PARAM.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-Digest-SHA>=5.23:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: dns/p5-Net-Domain-ExpireDate/Makefile =================================================================== RCS file: /home/ncvs/ports/dns/p5-Net-Domain-ExpireDate/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- dns/p5-Net-Domain-ExpireDate/Makefile 6 Nov 2011 14:27:45 -0000 1.23 +++ dns/p5-Net-Domain-ExpireDate/Makefile 1 Mar 2012 22:14:16 -0000 @@ -24,10 +24,4 @@ post-patch: @${FIND} ${WRKSRC} -name "*.orig" -delete -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Time/Piece.pm:${PORTSDIR}/devel/p5-Time-Piece -.endif - -.include +.include Index: dns/p5-POE-Component-Resolver/Makefile =================================================================== RCS file: /home/ncvs/ports/dns/p5-POE-Component-Resolver/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- dns/p5-POE-Component-Resolver/Makefile 7 Aug 2011 04:39:14 -0000 1.4 +++ dns/p5-POE-Component-Resolver/Makefile 1 Mar 2012 22:14:25 -0000 @@ -29,13 +29,4 @@ MAN3= POE::Component::Resolver.3 \ POE::Component::Resolver::Sidecar.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Storable>=2.18:${PORTSDIR}/devel/p5-Storable \ - p5-Time-HiRes>=1.9711:${PORTSDIR}/devel/p5-Time-HiRes -RUN_DEPENDS+= p5-Storable>=2.18:${PORTSDIR}/devel/p5-Storable \ - p5-Time-HiRes>=1.9711:${PORTSDIR}/devel/p5-Time-HiRes -.endif - -.include +.include Index: editors/p5-Padre/Makefile =================================================================== RCS file: /home/ncvs/ports/editors/p5-Padre/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- editors/p5-Padre/Makefile 31 May 2010 01:58:42 -0000 1.20 +++ editors/p5-Padre/Makefile 1 Mar 2012 22:58:16 -0000 @@ -79,7 +79,7 @@ WX_UNICODE= yes USE_DISPLAY= yes PERL_CONFIGURE= yes -USE_PERL5= 5.8.5+ +USE_PERL5= yes USE_GETTEXT= yes MAKE_JOBS_UNSAFE= yes @@ -94,26 +94,6 @@ IGNORE= needs an existing installation of Perl built with WITH_THREADS=yes .endif -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Pod-Simple>=3.07:${PORTSDIR}/textproc/p5-Pod-Simple -.endif - -.if ${PERL_LEVEL} >= 501000 && ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Encode>=2.26:${PORTSDIR}/converters/p5-Encode \ - p5-Thread-Queue>=2.11:${PORTSDIR}/devel/p5-Thread-Queue \ - p5-threads>=1.71:${PORTSDIR}/devel/p5-threads \ - p5-threads-shared>=1.26:${PORTSDIR}/devel/p5-threads-shared -RUN_DEPENDS+= p5-Encode>=2.26:${PORTSDIR}/converters/p5-Encode \ - p5-Thread-Queue>=2.11:${PORTSDIR}/devel/p5-Thread-Queue \ - p5-threads>=1.71:${PORTSDIR}/devel/p5-threads \ - p5-threads-shared>=1.26:${PORTSDIR}/devel/p5-threads-shared -.endif - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-ExtUtils-Manifest>=1.56:${PORTSDIR}/devel/p5-ExtUtils-Manifest -RUN_DEPENDS+= p5-ExtUtils-Manifest>=1.56:${PORTSDIR}/devel/p5-ExtUtils-Manifest -.endif - MAN3= Padre.3 \ Padre::Action.3 \ Padre::Action::Debug.3 \ Index: ftp/p5-File-Fetch/Makefile =================================================================== RCS file: /home/ncvs/ports/ftp/p5-File-Fetch/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- ftp/p5-File-Fetch/Makefile 25 Mar 2011 15:04:51 -0000 1.14 +++ ftp/p5-File-Fetch/Makefile 1 Mar 2012 22:14:56 -0000 @@ -18,14 +18,4 @@ MAN3= File::Fetch.3 -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-IPC-Cmd>=0.42:${PORTSDIR}/devel/p5-IPC-Cmd \ - p5-Locale-Maketext-Simple>=0:${PORTSDIR}/devel/p5-Locale-Maketext-Simple \ - p5-Module-Load-Conditional>=0.04:${PORTSDIR}/devel/p5-Module-Load-Conditional \ - p5-Params-Check>=0.07:${PORTSDIR}/devel/p5-Params-Check -BUILD_DEPENDS:= ${RUN_DEPENDS} -.endif - -.include +.include Index: ftp/p5-Net-FTPServer/Makefile =================================================================== RCS file: /home/ncvs/ports/ftp/p5-Net-FTPServer/Makefile,v retrieving revision 1.35 diff -u -r1.35 Makefile --- ftp/p5-Net-FTPServer/Makefile 21 Sep 2010 07:56:36 -0000 1.35 +++ ftp/p5-Net-FTPServer/Makefile 1 Mar 2012 22:15:18 -0000 @@ -22,7 +22,7 @@ p5-DBI>=0:${PORTSDIR}/databases/p5-DBI \ p5-File-Sync>=0:${PORTSDIR}/devel/p5-File-Sync \ p5-IO-stringy>=1.126:${PORTSDIR}/devel/p5-IO-stringy -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} MAKE_ENV+= NOCONF=1 PERL_CONFIGURE= yes @@ -55,12 +55,6 @@ PORTDOCS= * PORTEXAMPLES= ftpd.conf -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - post-patch: @${REINPLACE_CMD} -e "s/root,root/root,wheel/" \ -e "s,/usr/sbin,${PREFIX}/sbin," \ @@ -81,4 +75,4 @@ .endif @${CAT} ${PKGMESSAGE} -.include +.include Index: ftp/p5-SOAP-Transport-FTP/Makefile =================================================================== RCS file: /home/ncvs/ports/ftp/p5-SOAP-Transport-FTP/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- ftp/p5-SOAP-Transport-FTP/Makefile 22 Aug 2011 16:22:19 -0000 1.1 +++ ftp/p5-SOAP-Transport-FTP/Makefile 1 Mar 2012 22:15:26 -0000 @@ -21,10 +21,4 @@ MAN3= SOAP::Transport::FTP.3 -.include - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-Module-Build>=0.3600:${PORTSDIR}/devel/p5-Module-Build -.endif - -.include +.include Index: graphics/p5-CAD-Drawing/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/p5-CAD-Drawing/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- graphics/p5-CAD-Drawing/Makefile 21 Sep 2010 09:39:54 -0000 1.12 +++ graphics/p5-CAD-Drawing/Makefile 1 Mar 2012 22:15:41 -0000 @@ -21,7 +21,7 @@ ${SITE_PERL}/${PERL_ARCH}/Image/Magick.pm:${PORTSDIR}/graphics/ImageMagick \ ${SITE_PERL}/Stream/FileInputStream.pm:${PORTSDIR}/devel/p5-Stream \ ${SITE_PERL}/Math/Geometry/Planar.pm:${PORTSDIR}/math/p5-Math-Geometry-Planar -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} MAN3= CAD::Drawing.3 \ CAD::Drawing::Calculate.3 \ @@ -38,10 +38,4 @@ PERL_MODBUILD= yes -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: graphics/p5-Geometry-Primitive/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/p5-Geometry-Primitive/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- graphics/p5-Geometry-Primitive/Makefile 8 Sep 2011 08:36:36 -0000 1.13 +++ graphics/p5-Geometry-Primitive/Makefile 1 Mar 2012 22:15:47 -0000 @@ -37,10 +37,4 @@ Geometry::Primitive::Rectangle.3 \ Geometry::Primitive::Shape.3 -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-Math-Complex>=1.56:${PORTSDIR}/math/p5-Math-Complex -.endif - -.include +.include Index: graphics/p5-Graph-ReadWrite/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/p5-Graph-ReadWrite/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- graphics/p5-Graph-ReadWrite/Makefile 15 Feb 2012 05:53:41 -0000 1.8 +++ graphics/p5-Graph-ReadWrite/Makefile 1 Mar 2012 22:15:55 -0000 @@ -36,11 +36,4 @@ post-patch: @${REINPLACE_CMD} -e 's|Graph-ReadWrite|Graph::ReadWrite|' ${WRKSRC}/Makefile.PL -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: graphics/p5-GraphViz/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/p5-GraphViz/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- graphics/p5-GraphViz/Makefile 12 Feb 2012 03:37:45 -0000 1.20 +++ graphics/p5-GraphViz/Makefile 2 Mar 2012 03:18:51 -0000 @@ -37,9 +37,4 @@ GraphViz::Small.3 \ GraphViz::XML.3 -.if defined(MAINTAINER_MODE) -regression-test: build - cd ${WRKSRC} && ${MAKE} test -.endif - .include Index: graphics/p5-GraphViz2/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/p5-GraphViz2/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- graphics/p5-GraphViz2/Makefile 17 Dec 2011 15:05:36 -0000 1.2 +++ graphics/p5-GraphViz2/Makefile 1 Mar 2012 22:16:04 -0000 @@ -56,15 +56,6 @@ .include -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-File-Temp>=0.22:${PORTSDIR}/devel/p5-File-Temp -RUN_DEPENDS+= p5-File-Temp>=0.22:${PORTSDIR}/devel/p5-File-Temp -.endif - -.if ${PERL_LEVEL} < 501200 -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - .if ${PERL_LEVEL} < 501400 BUILD_DEPENDS+= p5-HTTP-Tiny>=0.012:${PORTSDIR}/www/p5-HTTP-Tiny \ p5-PathTools>=3.3300:${PORTSDIR}/devel/p5-PathTools \ Index: graphics/p5-Image-Info/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/p5-Image-Info/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- graphics/p5-Image-Info/Makefile 22 Feb 2012 07:19:35 -0000 1.25 +++ graphics/p5-Image-Info/Makefile 1 Mar 2012 22:16:11 -0000 @@ -35,11 +35,4 @@ Image::Info::XBM.3 \ Image::Info::XPM.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-IO-Compress>=0:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=0:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: graphics/p5-Image-Pngslimmer/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/p5-Image-Pngslimmer/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- graphics/p5-Image-Pngslimmer/Makefile 21 Sep 2010 07:56:36 -0000 1.19 +++ graphics/p5-Image-Pngslimmer/Makefile 1 Mar 2012 22:16:17 -0000 @@ -19,11 +19,4 @@ MAN3= Image::Pngslimmer.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: graphics/p5-Image-Size/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/p5-Image-Size/Makefile,v retrieving revision 1.45 diff -u -r1.45 Makefile --- graphics/p5-Image-Size/Makefile 21 Sep 2010 07:56:36 -0000 1.45 +++ graphics/p5-Image-Size/Makefile 1 Mar 2012 22:16:23 -0000 @@ -20,11 +20,4 @@ MAN1= imgsize.1 MAN3= Image::Size.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: graphics/p5-PGPLOT/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/p5-PGPLOT/Makefile,v retrieving revision 1.45 diff -u -r1.45 Makefile --- graphics/p5-PGPLOT/Makefile 20 Jan 2012 17:27:58 -0000 1.45 +++ graphics/p5-PGPLOT/Makefile 2 Mar 2012 03:19:08 -0000 @@ -33,10 +33,4 @@ cd ${WRKSRC}/ && ${INSTALL_DATA} LICENSE test* ${EXAMPLESDIR}/ .endif -.if defined(MAINTAINER_MODE) && !defined(BATCH) -check regression-test test: build - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} \ - ${_MAKE_JOBS} ${MAKE_ARGS} test -.endif - .include Index: graphics/p5-SWF-File/Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/p5-SWF-File/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- graphics/p5-SWF-File/Makefile 21 Sep 2010 07:56:36 -0000 1.22 +++ graphics/p5-SWF-File/Makefile 1 Mar 2012 22:16:31 -0000 @@ -32,11 +32,4 @@ post-configure: @${PERL} -pi -e 's/^(POD2MAN_EXE.*)$$/\1 --lax/;' ${WRKSRC}/Makefile -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: japanese/p5-Mail-SpamAssassin/Makefile =================================================================== RCS file: /home/ncvs/ports/japanese/p5-Mail-SpamAssassin/Makefile,v retrieving revision 1.28 diff -u -r1.28 Makefile --- japanese/p5-Mail-SpamAssassin/Makefile 15 Jan 2012 21:04:10 -0000 1.28 +++ japanese/p5-Mail-SpamAssassin/Makefile 1 Mar 2012 22:17:14 -0000 @@ -74,16 +74,6 @@ .include -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Archive-Tar>=1.23:${PORTSDIR}/archivers/p5-Archive-Tar \ - p5-IO-Zlib>=1.04:${PORTSDIR}/archivers/p5-IO-Zlib \ - p5-Test-Harness>=3.16:${PORTSDIR}/devel/p5-Test-Harness -.endif - .if defined (WITH_SPAMC) CONFIGURE_ARGS+= BUILD_SPAMC=yes .else @@ -125,21 +115,12 @@ .if defined(WITH_RAZOR) RUN_DEPENDS+= razor-agents>=2.84:${PORTSDIR}/mail/razor-agents -.else -.if ${PERL_LEVEL} < 501000 -.if !defined(WITH_DKIM) -RUN_DEPENDS+= p5-Digest-SHA1>=2.11:${PORTSDIR}/security/p5-Digest-SHA1 -.endif -.endif .endif .if defined(WITH_DKIM) -RUN_DEPENDS+= ${SITE_PERL}/IO/Socket/SSL.pm:${PORTSDIR}/security/p5-IO-Socket-SSL -. if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Digest/SHA.pm:${PORTSDIR}/security/p5-Digest-SHA -. endif -RUN_DEPENDS+= p5-Mail-DKIM>=0.37:${PORTSDIR}/mail/p5-Mail-DKIM -RUN_DEPENDS+= p5-Crypt-OpenSSL-RSA>=0.26_1:${PORTSDIR}/security/p5-Crypt-OpenSSL-RSA +RUN_DEPENDS+= ${SITE_PERL}/IO/Socket/SSL.pm:${PORTSDIR}/security/p5-IO-Socket-SSL \ + p5-Mail-DKIM>=0.37:${PORTSDIR}/mail/p5-Mail-DKIM \ + p5-Crypt-OpenSSL-RSA>=0.26_1:${PORTSDIR}/security/p5-Crypt-OpenSSL-RSA .endif .if defined(WITH_SACOMPILE) Index: lang/p5-Marpa/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/p5-Marpa/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- lang/p5-Marpa/Makefile 1 Dec 2011 09:46:08 -0000 1.2 +++ lang/p5-Marpa/Makefile 1 Mar 2012 22:58:16 -0000 @@ -21,7 +21,7 @@ RUN_DEPENDS= p5-HTML-Parser>=3.64:${PORTSDIR}/www/p5-HTML-Parser \ p5-PPI>=1.206:${PORTSDIR}/textproc/p5-PPI -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN3= Marpa::Advanced::Algorithm.3 \ Marpa::Advanced::Bibliography.3 \ @@ -38,10 +38,4 @@ Marpa::Support.3 \ Marpa::Tracing.3 -.include - -.if ${PERL_LEVEL} < 501200 -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: lang/p5-Marpa-PP/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/p5-Marpa-PP/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- lang/p5-Marpa-PP/Makefile 23 Nov 2011 17:22:25 -0000 1.2 +++ lang/p5-Marpa-PP/Makefile 1 Mar 2012 22:58:16 -0000 @@ -17,13 +17,12 @@ BUILD_DEPENDS= p5-PPI>=1.206:${PORTSDIR}/textproc/p5-PPI \ p5-Task-Weaken>=0:${PORTSDIR}/devel/p5-Task-Weaken -BUILD_DEPENDS= p5-PPI>=1.206:${PORTSDIR}/textproc/p5-PPI \ - p5-Task-Weaken>=0:${PORTSDIR}/devel/p5-Task-Weaken +RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Weaken>=3.004000:${PORTSDIR}/devel/p5-Test-Weaken # PERL_CONFIGURE failed on Perl 5.12.4 -PERL_MODBUILD= 5.10.0+ +PERL_MODBUILD= yes MAN3= Marpa::PP.3 \ Marpa::PP::Advanced::Bibliography.3 \ @@ -40,19 +39,4 @@ Marpa::PP::Tracing.3 \ Marpa::PP::Vocabulary.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.21:${PORTSDIR}/lang/p5-Scalar-List-Utils -RUN_DEPENDS+= p5-Scalar-List-Utils>=1.21:${PORTSDIR}/lang/p5-Scalar-List-Utils -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-Data-Dumper>=2.125:${PORTSDIR}/devel/p5-Data-Dumper \ - p5-Storable>=2.21:${PORTSDIR}/devel/p5-Storable -RUN_DEPENDS+= p5-Data-Dumper>=2.125:${PORTSDIR}/devel/p5-Data-Dumper \ - p5-Storable>=2.21:${PORTSDIR}/devel/p5-Storable -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: lang/p5-Marpa-XS/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/p5-Marpa-XS/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- lang/p5-Marpa-XS/Makefile 29 Feb 2012 15:33:14 -0000 1.7 +++ lang/p5-Marpa-XS/Makefile 1 Mar 2012 22:58:16 -0000 @@ -27,7 +27,7 @@ TEST_DEPENDS= p5-Test-Weaken>=3.004000:${PORTSDIR}/devel/p5-Test-Weaken -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN3= Marpa::XS.3 \ Marpa::XS::Advanced::Bibliography.3 \ Index: lang/p5-Parse-Perl/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/p5-Parse-Perl/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- lang/p5-Parse-Perl/Makefile 17 Feb 2012 08:56:28 -0000 1.4 +++ lang/p5-Parse-Perl/Makefile 1 Mar 2012 22:18:17 -0000 @@ -23,10 +23,4 @@ Parse::Perl::CopHintsHash.3 \ Parse::Perl::Environment.3 -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: lang/p5-TryCatch/Makefile =================================================================== RCS file: /home/ncvs/ports/lang/p5-TryCatch/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- lang/p5-TryCatch/Makefile 17 Sep 2011 07:06:32 -0000 1.5 +++ lang/p5-TryCatch/Makefile 1 Mar 2012 22:18:34 -0000 @@ -46,10 +46,4 @@ p5-B-Hooks-OP-PPAddr>=0.03:${PORTSDIR}/devel/p5-B-Hooks-OP-PPAddr .endif -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: mail/p5-Email-MIME/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/p5-Email-MIME/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- mail/p5-Email-MIME/Makefile 21 Nov 2011 18:39:09 -0000 1.23 +++ mail/p5-Email-MIME/Makefile 2 Mar 2012 03:19:12 -0000 @@ -28,7 +28,4 @@ Email::MIME::Header.3 \ Email::MIME::Modifier.3 -regression-test: build - cd ${WRKSRC}/ && ${MAKE} test - .include Index: mail/p5-FuzzyOcr/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/p5-FuzzyOcr/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- mail/p5-FuzzyOcr/Makefile 21 Feb 2012 19:52:08 -0000 1.13 +++ mail/p5-FuzzyOcr/Makefile 1 Mar 2012 22:23:38 -0000 @@ -50,12 +50,6 @@ %%EXAMPLESDIR%%/FuzzyOcr.cf %%EXAMPLESDIR%%/FuzzyOcr.words PLIST_DIRS= %%EXAMPLESDIR%% -.include - -.if ${PERL_LEVEL} < 500703 -RUN_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -.endif - post-patch: @${REINPLACE_CMD} -e 's,/usr/bin,${LOCALBASE}/bin,g' \ -e 's,/bin/grep,/usr/bin/grep,g' \ @@ -82,4 +76,4 @@ .endif @${CAT} ${PKGMESSAGE} -.include +.include Index: mail/p5-Mail-DKIM/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/p5-Mail-DKIM/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- mail/p5-Mail-DKIM/Makefile 15 Dec 2010 23:08:56 -0000 1.24 +++ mail/p5-Mail-DKIM/Makefile 1 Mar 2012 22:23:47 -0000 @@ -43,11 +43,4 @@ post-install: ${INSTALL_SCRIPT} ${WRKSRC}/scripts/dkim*.pl ${PREFIX}/bin -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA -BUILD_DEPENDS+= p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: mail/p5-Mail-Graph/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/p5-Mail-Graph/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- mail/p5-Mail-Graph/Makefile 21 Sep 2010 07:56:37 -0000 1.13 +++ mail/p5-Mail-Graph/Makefile 1 Mar 2012 22:24:04 -0000 @@ -19,7 +19,7 @@ ${SITE_PERL}/GD/Graph.pm:${PORTSDIR}/graphics/p5-GD-Graph \ ${SITE_PERL}/GD/Text.pm:${PORTSDIR}/graphics/p5-GD-TextUtil \ ${SITE_PERL}/Date/Calc.pm:${PORTSDIR}/devel/p5-Date-Calc -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes EXAMPLESCRIPT= samples/*pl @@ -40,10 +40,4 @@ ${INSTALL_SCRIPT} ${EXAMPLEOUTPUT} ${EXAMPLESDIR}/output && \ ${INSTALL_SCRIPT} ${EXAMPLEARCHIVE} ${EXAMPLESDIR}/archive -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: mail/p5-Mail-SpamAssassin/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/p5-Mail-SpamAssassin/Makefile,v retrieving revision 1.148 diff -u -r1.148 Makefile --- mail/p5-Mail-SpamAssassin/Makefile 7 Feb 2012 15:17:28 -0000 1.148 +++ mail/p5-Mail-SpamAssassin/Makefile 1 Mar 2012 22:24:28 -0000 @@ -65,16 +65,6 @@ .include -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Archive-Tar>=1.23:${PORTSDIR}/archivers/p5-Archive-Tar \ - p5-IO-Zlib>=1.04:${PORTSDIR}/archivers/p5-IO-Zlib \ - p5-Test-Harness>=3.16:${PORTSDIR}/devel/p5-Test-Harness -.endif - .if defined (WITH_SPAMC) CONFIGURE_ARGS+= BUILD_SPAMC=yes .else @@ -114,15 +104,7 @@ RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg .endif -.if defined(WITH_RAZOR) RUN_DEPENDS+= razor-agents>=2.84:${PORTSDIR}/mail/razor-agents -.else -.if ${PERL_LEVEL} < 501000 -.if !defined(WITH_DKIM) -RUN_DEPENDS+= p5-Digest-SHA1>=2.11:${PORTSDIR}/security/p5-Digest-SHA1 -.endif -.endif -.endif .if defined(WITH_DKIM) RUN_DEPENDS+= ${SITE_PERL}/IO/Socket/SSL.pm:${PORTSDIR}/security/p5-IO-Socket-SSL Index: mail/p5-Net-POP3-SSLWrapper/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/p5-Net-POP3-SSLWrapper/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- mail/p5-Net-POP3-SSLWrapper/Makefile 29 May 2011 12:45:31 -0000 1.2 +++ mail/p5-Net-POP3-SSLWrapper/Makefile 1 Mar 2012 22:24:34 -0000 @@ -21,11 +21,4 @@ MAN3= Net::POP3::SSLWrapper.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: mail/p5-SES/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/p5-SES/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- mail/p5-SES/Makefile 7 Feb 2012 07:37:23 -0000 1.5 +++ mail/p5-SES/Makefile 1 Mar 2012 22:24:50 -0000 @@ -43,10 +43,4 @@ cd ${WRKSRC} && ${INSTALL_SCRIPT} ${SCRIPTS} ${PREFIX}/bin/ ${INSTALL_DATA} ${WRKSRC}/SES.pm ${PREFIX}/${SITE_PERL_REL}/ -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: math/p5-Math-GSL/Makefile =================================================================== RCS file: /home/ncvs/ports/math/p5-Math-GSL/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- math/p5-Math-GSL/Makefile 14 Jan 2012 14:41:46 -0000 1.27 +++ math/p5-Math-GSL/Makefile 2 Mar 2012 03:08:51 -0000 @@ -82,9 +82,4 @@ BROKEN= Does not compile on sparc64 .endif -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-version>=0.77:${PORTSDIR}/devel/p5-version -RUN_DEPENDS+= p5-version>=0.77:${PORTSDIR}/devel/p5-version -.endif - .include Index: math/p5-Math-Prime-XS/Makefile =================================================================== RCS file: /home/ncvs/ports/math/p5-Math-Prime-XS/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- math/p5-Math-Prime-XS/Makefile 24 Nov 2011 16:41:47 -0000 1.3 +++ math/p5-Math-Prime-XS/Makefile 1 Mar 2012 22:25:15 -0000 @@ -24,10 +24,4 @@ MAN3= Math::Prime::XS.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -.endif - -.include +.include Index: math/p5-Math-RPN/Makefile =================================================================== RCS file: /home/ncvs/ports/math/p5-Math-RPN/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- math/p5-Math-RPN/Makefile 12 Dec 2011 09:06:54 -0000 1.4 +++ math/p5-Math-RPN/Makefile 1 Mar 2012 22:25:20 -0000 @@ -21,10 +21,4 @@ MAN3= Math::RPN.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.50:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker -.endif - -.include +.include Index: math/p5-bignum/Makefile =================================================================== RCS file: /home/ncvs/ports/math/p5-bignum/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- math/p5-bignum/Makefile 20 Aug 2011 21:13:38 -0000 1.5 +++ math/p5-bignum/Makefile 1 Mar 2012 22:25:29 -0000 @@ -21,13 +21,4 @@ bignum.3 \ bigrat.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Math-BigInt>=1.880:${PORTSDIR}/math/p5-Math-BigInt \ - p5-Math-BigRat>=0.21:${PORTSDIR}/math/p5-Math-BigRat -RUN_DEPENDS+= p5-Math-BigInt>=1.880:${PORTSDIR}/math/p5-Math-BigInt \ - p5-Math-BigRat>=0.21:${PORTSDIR}/math/p5-Math-BigRat -.endif - -.include +.include Index: misc/p5-Bot-Training/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Bot-Training/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- misc/p5-Bot-Training/Makefile 24 Jul 2011 13:52:32 -0000 1.1 +++ misc/p5-Bot-Training/Makefile 1 Mar 2012 23:00:07 -0000 @@ -31,7 +31,7 @@ RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= 5.10+ +PERL_CONFIGURE= yes MAN1= bot-training.1 Index: misc/p5-Bot-Training-MegaHAL/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Bot-Training-MegaHAL/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- misc/p5-Bot-Training-MegaHAL/Makefile 28 Jul 2011 07:10:28 -0000 1.1 +++ misc/p5-Bot-Training-MegaHAL/Makefile 1 Mar 2012 22:58:16 -0000 @@ -22,7 +22,7 @@ RUN_DEPENDS= p5-Any-Moose>=0:${PORTSDIR}/devel/p5-Any-Moose \ p5-Bot-Training>=0:${PORTSDIR}/misc/p5-Bot-Training -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN3= Bot::Training::MegaHAL.3 Index: misc/p5-Bot-Training-StarCraft/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Bot-Training-StarCraft/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- misc/p5-Bot-Training-StarCraft/Makefile 9 Aug 2011 13:34:21 -0000 1.1 +++ misc/p5-Bot-Training-StarCraft/Makefile 1 Mar 2012 22:58:16 -0000 @@ -22,7 +22,7 @@ RUN_DEPENDS= p5-Any-Moose>=0:${PORTSDIR}/devel/p5-Any-Moose \ p5-Bot-Training>=0:${PORTSDIR}/misc/p5-Bot-Training -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN3= Bot::Training::StarCraft.3 Index: misc/p5-Geo-Coder-Bing/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Geo-Coder-Bing/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- misc/p5-Geo-Coder-Bing/Makefile 20 Oct 2011 06:42:06 -0000 1.1 +++ misc/p5-Geo-Coder-Bing/Makefile 1 Mar 2012 22:25:54 -0000 @@ -29,10 +29,4 @@ MAN3= Geo::Coder::Bing.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.82:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: misc/p5-Geo-Coder-Geocoder-US/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Geo-Coder-Geocoder-US/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- misc/p5-Geo-Coder-Geocoder-US/Makefile 7 Jan 2012 16:59:05 -0000 1.2 +++ misc/p5-Geo-Coder-Geocoder-US/Makefile 1 Mar 2012 22:26:00 -0000 @@ -26,10 +26,4 @@ MAN3= Geo::Coder::Geocoder::US.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: misc/p5-Geo-Coder-Many/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Geo-Coder-Many/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- misc/p5-Geo-Coder-Many/Makefile 20 Oct 2011 06:50:39 -0000 1.1 +++ misc/p5-Geo-Coder-Many/Makefile 1 Mar 2012 22:58:16 -0000 @@ -32,7 +32,7 @@ p5-Test-MockObject>=0:${PORTSDIR}/devel/p5-Test-MockObject \ p5-Test-Pod-Coverage>=0:${PORTSDIR}/devel/p5-Test-Pod-Coverage -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN3= Geo::Coder::Many.3 \ Geo::Coder::Many::Bing.3 \ Index: misc/p5-Geo-Coder-Mapquest/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Geo-Coder-Mapquest/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- misc/p5-Geo-Coder-Mapquest/Makefile 20 Oct 2011 06:43:57 -0000 1.1 +++ misc/p5-Geo-Coder-Mapquest/Makefile 1 Mar 2012 22:26:11 -0000 @@ -29,10 +29,4 @@ MAN3= Geo::Coder::Mapquest.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.82:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: misc/p5-Geo-Coder-Multimap/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Geo-Coder-Multimap/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- misc/p5-Geo-Coder-Multimap/Makefile 20 Oct 2011 06:44:44 -0000 1.1 +++ misc/p5-Geo-Coder-Multimap/Makefile 1 Mar 2012 22:26:17 -0000 @@ -27,10 +27,4 @@ MAN3= Geo::Coder::Multimap.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.82:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: misc/p5-Geo-Coder-Navteq/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Geo-Coder-Navteq/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- misc/p5-Geo-Coder-Navteq/Makefile 20 Oct 2011 06:45:30 -0000 1.1 +++ misc/p5-Geo-Coder-Navteq/Makefile 1 Mar 2012 22:26:23 -0000 @@ -25,10 +25,4 @@ MAN3= Geo::Coder::Navteq.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.82:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: misc/p5-Geo-Coder-OSM/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Geo-Coder-OSM/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- misc/p5-Geo-Coder-OSM/Makefile 20 Oct 2011 06:46:04 -0000 1.1 +++ misc/p5-Geo-Coder-OSM/Makefile 1 Mar 2012 22:26:30 -0000 @@ -27,10 +27,4 @@ MAN3= Geo::Coder::OSM.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.82:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: misc/p5-Geo-Coder-Ovi/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Geo-Coder-Ovi/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- misc/p5-Geo-Coder-Ovi/Makefile 5 Nov 2011 15:30:32 -0000 1.2 +++ misc/p5-Geo-Coder-Ovi/Makefile 1 Mar 2012 22:26:36 -0000 @@ -27,10 +27,4 @@ MAN3= Geo::Coder::Ovi.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.82:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: misc/p5-Geo-Coder-PlaceFinder/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Geo-Coder-PlaceFinder/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- misc/p5-Geo-Coder-PlaceFinder/Makefile 20 Oct 2011 06:47:34 -0000 1.1 +++ misc/p5-Geo-Coder-PlaceFinder/Makefile 1 Mar 2012 22:26:42 -0000 @@ -27,10 +27,4 @@ MAN3= Geo::Coder::PlaceFinder.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.82:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: misc/p5-Geo-Coder-TomTom/Makefile =================================================================== RCS file: /home/ncvs/ports/misc/p5-Geo-Coder-TomTom/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- misc/p5-Geo-Coder-TomTom/Makefile 20 Oct 2011 06:48:40 -0000 1.1 +++ misc/p5-Geo-Coder-TomTom/Makefile 1 Mar 2012 22:26:48 -0000 @@ -27,10 +27,4 @@ MAN3= Geo::Coder::TomTom.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.82:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: multimedia/p5-Audio-M4P/Makefile =================================================================== RCS file: /home/ncvs/ports/multimedia/p5-Audio-M4P/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- multimedia/p5-Audio-M4P/Makefile 7 Jul 2010 14:43:26 -0000 1.1 +++ multimedia/p5-Audio-M4P/Makefile 2 Mar 2012 03:19:16 -0000 @@ -27,7 +27,4 @@ Audio::M4P::Decrypt.3 \ Audio::M4P::QuickTime.3 -regression-test: build - @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} test - .include Index: multimedia/p5-Umph-Prompt/Makefile =================================================================== RCS file: /home/ncvs/ports/multimedia/p5-Umph-Prompt/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- multimedia/p5-Umph-Prompt/Makefile 27 Sep 2011 15:27:02 -0000 1.1 +++ multimedia/p5-Umph-Prompt/Makefile 1 Mar 2012 22:58:16 -0000 @@ -14,7 +14,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= An interactive prompt module for umph and similar programs -PERL_CONFIGURE= 5.10.1+ +PERL_CONFIGURE= yes PROJECTHOST= umph Index: multimedia/p5-Video-Info/Makefile =================================================================== RCS file: /home/ncvs/ports/multimedia/p5-Video-Info/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- multimedia/p5-Video-Info/Makefile 3 Aug 2011 06:14:45 -0000 1.8 +++ multimedia/p5-Video-Info/Makefile 1 Mar 2012 22:27:06 -0000 @@ -23,11 +23,4 @@ MAN3= Video::Info.3 -.include - -post-patch: -.if ${PERL_LEVEL} < 500803 - ${PERL} -pi -e '$$_="" if m{5.008|warnings}' ${WRKSRC}/Makefile.PL ${WRKSRC}/lib/Video/Info.pm -.endif - -.include +.include Index: net/p5-AnyEvent-RabbitMQ/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-AnyEvent-RabbitMQ/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- net/p5-AnyEvent-RabbitMQ/Makefile 30 Oct 2011 11:04:47 -0000 1.1 +++ net/p5-AnyEvent-RabbitMQ/Makefile 2 Mar 2012 03:19:20 -0000 @@ -31,9 +31,4 @@ MAN3= AnyEvent::RabbitMQ.3 \ AnyEvent::RabbitMQ::Channel.3 -.if defined(MAINTAINER_MODE) -regression-test: build - cd ${WRKSRC} && ${MAKE} test -.endif - .include Index: net/p5-AnyEvent-Twitter/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-AnyEvent-Twitter/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- net/p5-AnyEvent-Twitter/Makefile 18 Oct 2011 01:50:49 -0000 1.6 +++ net/p5-AnyEvent-Twitter/Makefile 1 Mar 2012 22:27:30 -0000 @@ -26,10 +26,4 @@ MAN3= AnyEvent::Twitter.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: net/p5-AnyMQ-AMQP/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-AnyMQ-AMQP/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- net/p5-AnyMQ-AMQP/Makefile 30 Oct 2011 11:55:56 -0000 1.1 +++ net/p5-AnyMQ-AMQP/Makefile 2 Mar 2012 03:19:26 -0000 @@ -28,9 +28,4 @@ MAN3= AnyMQ::AMQP.3 -.if defined(MAINTAINER_MODE) -regression-test: build - cd ${WRKSRC} && ${MAKE} test -.endif - .include Index: net/p5-Crypt-DH-GMP/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Crypt-DH-GMP/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- net/p5-Crypt-DH-GMP/Makefile 17 Nov 2011 15:24:18 -0000 1.6 +++ net/p5-Crypt-DH-GMP/Makefile 1 Mar 2012 22:27:37 -0000 @@ -28,14 +28,4 @@ post-patch: ${REINPLACE_CMD} -e 's#%%LOCALBASE%%#${LOCALBASE}#g' ${WRKSRC}/Makefile.PL -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Devel-PPPort>=3.19:${PORTSDIR}/devel/p5-Devel-PPPort -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-ExtUtils-ParseXS>=2.21:${PORTSDIR}/devel/p5-ExtUtils-ParseXS -.endif - -.include +.include Index: net/p5-Geo-IPfree/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Geo-IPfree/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- net/p5-Geo-IPfree/Makefile 21 Jan 2012 17:38:06 -0000 1.17 +++ net/p5-Geo-IPfree/Makefile 1 Mar 2012 22:27:44 -0000 @@ -18,11 +18,4 @@ MAN3= Geo::IPfree.3 -.include - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS= p5-Memoize>=0:${PORTSDIR}/devel/p5-Memoize -RUN_DEPENDS:= ${BUILD_DEPENDS} -.endif - -.include +.include Index: net/p5-Google-SAML-Request/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Google-SAML-Request/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- net/p5-Google-SAML-Request/Makefile 7 Jan 2012 18:33:42 -0000 1.5 +++ net/p5-Google-SAML-Request/Makefile 1 Mar 2012 22:27:51 -0000 @@ -25,10 +25,4 @@ MAN3= Google::SAML::Request.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: net/p5-Google-SAML-Response/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Google-SAML-Response/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- net/p5-Google-SAML-Response/Makefile 18 Aug 2010 11:09:20 -0000 1.5 +++ net/p5-Google-SAML-Response/Makefile 1 Mar 2012 22:27:56 -0000 @@ -28,10 +28,4 @@ MAN3= Google::SAML::Response.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-Digest-SHA>0:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: net/p5-Net-Amazon/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-Amazon/Makefile,v retrieving revision 1.34 diff -u -r1.34 Makefile --- net/p5-Net-Amazon/Makefile 29 Oct 2011 12:39:10 -0000 1.34 +++ net/p5-Net-Amazon/Makefile 1 Mar 2012 22:28:29 -0000 @@ -21,20 +21,10 @@ ${SITE_PERL}/URI.pm:${PORTSDIR}/net/p5-URI \ ${SITE_PERL}/XML/Simple.pm:${PORTSDIR}/textproc/p5-XML-Simple \ ${SITE_PERL}/Log/Log4perl.pm:${PORTSDIR}/devel/p5-Log-Log4perl -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes .include "Makefile.man" -.include - -.if ${PERL_LEVEL} < 500805 -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Time/HiRes.pm:${PORTSDIR}/devel/p5-Time-HiRes -.endif - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: net/p5-Net-Amazon-AWSSign/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-Amazon-AWSSign/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- net/p5-Net-Amazon-AWSSign/Makefile 14 Jan 2012 19:12:17 -0000 1.3 +++ net/p5-Net-Amazon-AWSSign/Makefile 1 Mar 2012 22:28:36 -0000 @@ -21,10 +21,4 @@ MAN3= Net::Amazon::AWSSign.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: net/p5-Net-Amazon-S3/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-Amazon-S3/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- net/p5-Net-Amazon-S3/Makefile 21 Dec 2011 12:41:57 -0000 1.25 +++ net/p5-Net-Amazon-S3/Makefile 1 Mar 2012 22:28:45 -0000 @@ -58,10 +58,4 @@ Net::Amazon::S3::Request.3 \ Net::Amazon::S3::Request::CreateBucket.3 -.include - -.if ${PERL_LEVEL} < 500904 -RUN_DEPENDS+= p5-IO>=1.14:${PORTSDIR}/devel/p5-IO -.endif - -.include +.include Index: net/p5-Net-Appliance-Session/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-Appliance-Session/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- net/p5-Net-Appliance-Session/Makefile 28 Feb 2012 17:21:23 -0000 1.4 +++ net/p5-Net-Appliance-Session/Makefile 1 Mar 2012 22:28:51 -0000 @@ -25,10 +25,4 @@ MAN3= Net::Appliance::Session.3 \ Net::Appliance::Session::APIv2.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: net/p5-Net-CLI-Interact/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-CLI-Interact/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- net/p5-Net-CLI-Interact/Makefile 28 Feb 2012 17:20:50 -0000 1.4 +++ net/p5-Net-CLI-Interact/Makefile 1 Mar 2012 22:28:57 -0000 @@ -42,10 +42,4 @@ Net::CLI::Interact::Transport::Serial.3 \ Net::CLI::Interact::Transport::Telnet.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: net/p5-Net-GrowlClient/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-GrowlClient/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- net/p5-Net-GrowlClient/Makefile 21 Sep 2010 16:08:09 -0000 1.3 +++ net/p5-Net-GrowlClient/Makefile 1 Mar 2012 22:29:03 -0000 @@ -20,11 +20,4 @@ MAN3= Net::GrowlClient.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA -BUILD_DEPENDS+= p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: net/p5-Net-HTTP/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-HTTP/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- net/p5-Net-HTTP/Makefile 19 Feb 2012 10:51:43 -0000 1.7 +++ net/p5-Net-HTTP/Makefile 1 Mar 2012 22:29:10 -0000 @@ -29,13 +29,4 @@ Net::HTTPS.3 \ Net::HTTP::NB.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Compress-Raw-Zlib>=0:${PORTSDIR}/archivers/p5-Compress-Raw-Zlib \ - p5-IO-Compress>=0:${PORTSDIR}/archivers/p5-IO-Compress -RUN_DEPENDS+= p5-Compress-Raw-Zlib>=0:${PORTSDIR}/archivers/p5-Compress-Raw-Zlib \ - p5-IO-Compress>=0:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: net/p5-Net-OAuth/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-OAuth/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- net/p5-Net-OAuth/Makefile 1 Mar 2012 19:13:37 -0000 1.21 +++ net/p5-Net-OAuth/Makefile 1 Mar 2012 22:29:18 -0000 @@ -49,11 +49,4 @@ Net::OAuth::XauthAccessTokenRequest.3 \ Net::OAuth::YahooAccessTokenRefreshRequest.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Encode>=2.35:${PORTSDIR}/converters/p5-Encode -RUN_DEPENDS+= p5-Encode>=2.35:${PORTSDIR}/converters/p5-Encode -.endif - -.include +.include Index: net/p5-Net-OpenID-Consumer/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-OpenID-Consumer/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- net/p5-Net-OpenID-Consumer/Makefile 12 Feb 2012 03:37:47 -0000 1.9 +++ net/p5-Net-OpenID-Consumer/Makefile 1 Mar 2012 22:29:32 -0000 @@ -26,16 +26,4 @@ MAN3= Net::OpenID::Association.3 Net::OpenID::ClaimedIdentity.3 \ Net::OpenID::Consumer.3 Net::OpenID::VerifiedIdentity.3 -.if defined(MAINTAINER_MODE) -regression-test: build - cd ${WRKSRC} && ${MAKE} test -.endif - -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -RUN_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: net/p5-Net-SAP/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-SAP/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- net/p5-Net-SAP/Makefile 21 Sep 2010 07:56:38 -0000 1.11 +++ net/p5-Net-SAP/Makefile 1 Mar 2012 22:29:39 -0000 @@ -23,11 +23,4 @@ MAN1= psapd.1 MAN3= Net::SAP.3 Net::SAP::Packet.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: net/p5-Net-Todoist/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-Todoist/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- net/p5-Net-Todoist/Makefile 16 Nov 2010 03:15:29 -0000 1.2 +++ net/p5-Net-Todoist/Makefile 1 Mar 2012 22:29:45 -0000 @@ -21,10 +21,4 @@ MAN3= Net::Todoist.3 -.include - -.if ${PERL_LEVEL} < 500903 -BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.31:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker -.endif - -.include +.include Index: net/p5-Net-Twitter/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Net-Twitter/Makefile,v retrieving revision 1.38 diff -u -r1.38 Makefile --- net/p5-Net-Twitter/Makefile 18 Dec 2011 09:01:24 -0000 1.38 +++ net/p5-Net-Twitter/Makefile 1 Mar 2012 22:29:51 -0000 @@ -59,10 +59,4 @@ Net::Twitter::Role::SimulateCursors.3 \ Net::Twitter::Role::WrapError.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: net/p5-RPC-XML/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-RPC-XML/Makefile,v retrieving revision 1.28 diff -u -r1.28 Makefile --- net/p5-RPC-XML/Makefile 17 Sep 2011 07:06:34 -0000 1.28 +++ net/p5-RPC-XML/Makefile 1 Mar 2012 22:29:57 -0000 @@ -34,10 +34,4 @@ RPC::XML::Procedure.3 \ RPC::XML::Server.3 -.include - -.if ${PERL_LEVEL} < 501200 -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: net/p5-S3/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-S3/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- net/p5-S3/Makefile 29 Feb 2008 00:46:40 -0000 1.5 +++ net/p5-S3/Makefile 1 Mar 2012 22:30:03 -0000 @@ -31,10 +31,4 @@ ${INSTALL_DATA} ${WRKSRC}/S3.pm ${PREFIX}/${SITE_PERL_REL} ${INSTALL_SCRIPT} ${WRKSRC}/s3-*.pl ${PREFIX}/bin -.include - -.if ${PERL_LEVEL} < 500703 -RUN_DEPENDS+= p5-MIME-Base64>=0:${PORTSDIR}/converters/p5-MIME-Base64 -.endif - -.include +.include Index: net/p5-SOAP-Lite/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-SOAP-Lite/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- net/p5-SOAP-Lite/Makefile 6 Dec 2011 04:10:19 -0000 1.26 +++ net/p5-SOAP-Lite/Makefile 1 Mar 2012 22:30:10 -0000 @@ -62,14 +62,8 @@ XMLRPC::Transport::POP3.3 \ XMLRPC::Transport::TCP.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - post-patch: @${REINPLACE_CMD} -i '' -e 's|^#!.*perl|#!${PERL}|' \ ${WRKSRC}/bin/* ${WRKSRC}/t/*.t ${WRKSRC}/t/*.pl -.include +.include Index: net/p5-SOAP-Lite-060/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-SOAP-Lite-060/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- net/p5-SOAP-Lite-060/Makefile 21 Sep 2010 07:56:38 -0000 1.4 +++ net/p5-SOAP-Lite-060/Makefile 1 Mar 2012 22:30:18 -0000 @@ -53,14 +53,8 @@ XMLRPC::Transport::POP3.3 \ XMLRPC::Transport::TCP.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - post-patch: @${REINPLACE_CMD} -i '' -e 's|^#!.*perl|#!${PERL}|' \ ${WRKSRC}/bin/* ${WRKSRC}/t/* -.include +.include Index: net/p5-Socket/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Socket/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- net/p5-Socket/Makefile 22 Feb 2012 07:20:25 -0000 1.6 +++ net/p5-Socket/Makefile 1 Mar 2012 22:30:29 -0000 @@ -21,10 +21,6 @@ .include -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -.endif - .if ${PERL_LEVEL} < 501400 BUILD_DEPENDS+= p5-ExtUtils-Constant>=0.23:${PORTSDIR}/devel/p5-ExtUtils-Constant .endif Index: net/p5-Socket-GetAddrInfo/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Socket-GetAddrInfo/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- net/p5-Socket-GetAddrInfo/Makefile 27 Nov 2011 05:55:22 -0000 1.10 +++ net/p5-Socket-GetAddrInfo/Makefile 1 Mar 2012 22:30:43 -0000 @@ -12,7 +12,7 @@ PKGNAMEPREFIX= p5- MAINTAINER= sahil@FreeBSD.org -COMMENT= RFC 2553's getaddrinfo and getnameinfo functions +COMMENT= RFC 2553 getaddrinfo and getnameinfo functions BUILD_DEPENDS= p5-ExtUtils-CChecker>=0.06:${PORTSDIR}/devel/p5-ExtUtils-CChecker @@ -27,10 +27,6 @@ .include -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Module-Build>=0:${PORTSDIR}/devel/p5-Module-Build -.endif - .if ${PERL_LEVEL} < 501400 PLIST_SUB+= OLD_PERL="" NEW_PERL="@comment " .else Index: net/p5-Socket-Multicast6/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-Socket-Multicast6/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- net/p5-Socket-Multicast6/Makefile 7 Jul 2010 00:06:59 -0000 1.3 +++ net/p5-Socket-Multicast6/Makefile 1 Mar 2012 22:30:49 -0000 @@ -20,10 +20,4 @@ MAN3= Socket::Multicast6.3 -.include - -.if ${PERL_LEVEL} < 500903 -BUILD_DEPENDS+= p5-ExtUtils-CBuilder>=0:${PORTSDIR}/devel/p5-ExtUtils-CBuilder -.endif - -.include +.include Index: net/p5-URI-Query/Makefile =================================================================== RCS file: /home/ncvs/ports/net/p5-URI-Query/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- net/p5-URI-Query/Makefile 23 Sep 2011 19:41:07 -0000 1.1 +++ net/p5-URI-Query/Makefile 1 Mar 2012 22:30:55 -0000 @@ -21,10 +21,4 @@ MAN3= URI::Query.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: net-im/p5-Net-Async-XMPP/Makefile =================================================================== RCS file: /home/ncvs/ports/net-im/p5-Net-Async-XMPP/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- net-im/p5-Net-Async-XMPP/Makefile 11 Mar 2011 11:06:44 -0000 1.2 +++ net-im/p5-Net-Async-XMPP/Makefile 1 Mar 2012 22:31:29 -0000 @@ -27,10 +27,4 @@ Net::Async::XMPP::Protocol.3 \ Net::Async::XMPP::Server.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: net-im/p5-Net-XMPP/Makefile =================================================================== RCS file: /home/ncvs/ports/net-im/p5-Net-XMPP/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- net-im/p5-Net-XMPP/Makefile 24 Aug 2011 07:20:34 -0000 1.8 +++ net-im/p5-Net-XMPP/Makefile 1 Mar 2012 22:31:38 -0000 @@ -41,14 +41,4 @@ Net::XMPP::Roster.3 \ Net::XMPP::Stanza.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.92:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-Module-Build>=0.3603:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: net-im/p5-Protocol-XMPP/Makefile =================================================================== RCS file: /home/ncvs/ports/net-im/p5-Protocol-XMPP/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- net-im/p5-Protocol-XMPP/Makefile 11 Mar 2011 11:07:49 -0000 1.2 +++ net-im/p5-Protocol-XMPP/Makefile 1 Mar 2012 22:31:44 -0000 @@ -54,11 +54,4 @@ Protocol::XMPP::TextElement.3 \ Protocol::XMPP::User.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Module-Load>=0:${PORTSDIR}/devel/p5-Module-Load \ - p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: net-im/p5-SOAP-Transport-JABBER/Makefile =================================================================== RCS file: /home/ncvs/ports/net-im/p5-SOAP-Transport-JABBER/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- net-im/p5-SOAP-Transport-JABBER/Makefile 22 Aug 2011 16:24:00 -0000 1.1 +++ net-im/p5-SOAP-Transport-JABBER/Makefile 1 Mar 2012 22:31:50 -0000 @@ -23,10 +23,4 @@ MAN3= SOAP::Transport::JABBER.3 -.include - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-Module-Build>=0.3600:${PORTSDIR}/devel/p5-Module-Build -.endif - -.include +.include Index: net-mgmt/p5-FusionInventory-Agent/Makefile =================================================================== RCS file: /home/ncvs/ports/net-mgmt/p5-FusionInventory-Agent/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- net-mgmt/p5-FusionInventory-Agent/Makefile 7 Jan 2012 10:52:49 -0000 1.3 +++ net-mgmt/p5-FusionInventory-Agent/Makefile 1 Mar 2012 22:32:56 -0000 @@ -52,11 +52,4 @@ FusionInventory::Agent::XML::Query::Inventory.3 \ FusionInventory::Agent::XML::Query::SimpleMessage.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-IO-Compress>=0:${PORTSDIR}/archivers/p5-IO-Compress -RUN_DEPENDS+= p5-IO-Compress>=0:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: net-p2p/p5-Net-BitTorrent/Makefile =================================================================== RCS file: /home/ncvs/ports/net-p2p/p5-Net-BitTorrent/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- net-p2p/p5-Net-BitTorrent/Makefile 12 Jun 2011 18:40:20 -0000 1.11 +++ net-p2p/p5-Net-BitTorrent/Makefile 1 Mar 2012 22:33:47 -0000 @@ -38,14 +38,4 @@ Net::BitTorrent::Util.3 \ Net::BitTorrent::Version.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Digest-SHA>=5.45:${PORTSDIR}/security/p5-Digest-SHA \ - p5-Module-Build>=0.3:${PORTSDIR}/devel/p5-Module-Build \ - p5-version>=0.74:${PORTSDIR}/devel/p5-version -RUN_DEPENDS+= p5-Digest-SHA>=5.45:${PORTSDIR}/security/p5-Digest-SHA \ - p5-version>=0.74:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: net-p2p/p5-Net-DirectConnect/Makefile =================================================================== RCS file: /home/ncvs/ports/net-p2p/p5-Net-DirectConnect/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- net-p2p/p5-Net-DirectConnect/Makefile 24 Dec 2011 00:03:19 -0000 1.6 +++ net-p2p/p5-Net-DirectConnect/Makefile 1 Mar 2012 22:33:53 -0000 @@ -28,11 +28,4 @@ MAN1= dcget.1 dcshare.1 MAN3= Net::DirectConnect.3 Net::DirectConnect::filelist.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-IO-Compress>=0:${PORTSDIR}/archivers/p5-IO-Compress -RUN_DEPENDS+= p5-IO-Compress>=0:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: ports-mgmt/p5-App-Pm2Port/Makefile =================================================================== RCS file: /home/ncvs/ports/ports-mgmt/p5-App-Pm2Port/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- ports-mgmt/p5-App-Pm2Port/Makefile 21 Jan 2012 17:37:18 -0000 1.8 +++ ports-mgmt/p5-App-Pm2Port/Makefile 1 Mar 2012 22:58:16 -0000 @@ -21,7 +21,7 @@ subversion>=0:${PORTSDIR}/devel/subversion RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN1= pm2port.1 MAN3= App::Pm2Port.3 Index: print/p5-PostScript-PPD/Makefile =================================================================== RCS file: /home/ncvs/ports/print/p5-PostScript-PPD/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- print/p5-PostScript-PPD/Makefile 21 Oct 2011 13:57:46 -0000 1.1 +++ print/p5-PostScript-PPD/Makefile 1 Mar 2012 22:34:02 -0000 @@ -18,11 +18,4 @@ MAN3= PostScript::PPD.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-IO-Compress>=2:${PORTSDIR}/archivers/p5-IO-Compress -RUN_DEPENDS+= p5-IO-Compress>=2:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: print/p5-Text-PDF/Makefile =================================================================== RCS file: /home/ncvs/ports/print/p5-Text-PDF/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- print/p5-Text-PDF/Makefile 21 Sep 2010 07:56:39 -0000 1.17 +++ print/p5-Text-PDF/Makefile 1 Mar 2012 22:34:11 -0000 @@ -26,13 +26,6 @@ Text::PDF::Utils.3 Text::PDF::TTFont.3 Text::PDF::Number.3 \ Text::PDF::Null.3 Text::PDF.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - post-patch: @${RM} -f ${WRKSRC}/pm_to_blib @@ -40,4 +33,4 @@ @${MKDIR} ${SITE_PERL}/Text/PDF/examples @${INSTALL_DATA} ${WRKSRC}/examples/* ${SITE_PERL}/Text/PDF/examples -.include +.include Index: security/p5-Authen-Bitcard/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Authen-Bitcard/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- security/p5-Authen-Bitcard/Makefile 14 Jun 2011 16:33:21 -0000 1.7 +++ security/p5-Authen-Bitcard/Makefile 1 Mar 2012 22:34:46 -0000 @@ -23,10 +23,4 @@ MAN3= Authen::Bitcard.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: security/p5-Authen-Simple/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Authen-Simple/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- security/p5-Authen-Simple/Makefile 17 Sep 2011 06:50:13 -0000 1.8 +++ security/p5-Authen-Simple/Makefile 1 Mar 2012 22:34:52 -0000 @@ -29,10 +29,4 @@ PERL_MODBUILD= yes -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: security/p5-Crypt-OpenPGP/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Crypt-OpenPGP/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- security/p5-Crypt-OpenPGP/Makefile 10 Jan 2011 12:03:14 -0000 1.22 +++ security/p5-Crypt-OpenPGP/Makefile 1 Mar 2012 22:34:59 -0000 @@ -48,13 +48,7 @@ Crypt::OpenPGP::Trust.3 Crypt::OpenPGP::Certificate.3 \ Crypt::OpenPGP::Message.3 Crypt::OpenPGP::KeyServer.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - post-patch: @${RM} -f ${WRKSRC}/lib/Crypt/OpenPGP/Ciphertext.pm.orig -.include +.include Index: security/p5-Crypt-OpenSSL-CA/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Crypt-OpenSSL-CA/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- security/p5-Crypt-OpenSSL-CA/Makefile 12 Dec 2011 13:08:21 -0000 1.2 +++ security/p5-Crypt-OpenSSL-CA/Makefile 1 Mar 2012 22:35:07 -0000 @@ -32,10 +32,4 @@ Crypt::OpenSSL::CA::Inline::C.3 \ Crypt::OpenSSL::CA::Resources.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Module-Build>=0.2900:${PORTSDIR}/devel/p5-Module-Build -.endif - -.include +.include Index: security/p5-Crypt-OpenSSL-RSA/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Crypt-OpenSSL-RSA/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- security/p5-Crypt-OpenSSL-RSA/Makefile 27 Aug 2011 11:05:24 -0000 1.27 +++ security/p5-Crypt-OpenSSL-RSA/Makefile 2 Mar 2012 03:19:29 -0000 @@ -25,7 +25,4 @@ MAN3= Crypt::OpenSSL::RSA.3 -regression-test: build - cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_ARGS} test - .include Index: security/p5-Crypt-PBKDF2/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Crypt-PBKDF2/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- security/p5-Crypt-PBKDF2/Makefile 8 Sep 2011 08:36:39 -0000 1.2 +++ security/p5-Crypt-PBKDF2/Makefile 1 Mar 2012 22:35:14 -0000 @@ -30,14 +30,4 @@ Crypt::PBKDF2::Hash::HMACSHA1.3 \ Crypt::PBKDF2::Hash::HMACSHA2.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-Digest>=1.16:${PORTSDIR}/security/p5-Digest -.endif - -.include +.include Index: security/p5-Crypt-SaltedHash/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Crypt-SaltedHash/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- security/p5-Crypt-SaltedHash/Makefile 21 Jun 2011 06:58:19 -0000 1.10 +++ security/p5-Crypt-SaltedHash/Makefile 1 Mar 2012 22:35:21 -0000 @@ -17,16 +17,4 @@ MAN3= Crypt::SaltedHash.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-Digest>=1.16:${PORTSDIR}/security/p5-Digest -BUILD_DEPENDS+= p5-Digest>=1.16:${PORTSDIR}/security/p5-Digest -.endif - -.if ${PERL_LEVEL} < 500703 -RUN_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -BUILD_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -.endif - -.include +.include Index: security/p5-Crypt-Simple/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Crypt-Simple/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- security/p5-Crypt-Simple/Makefile 21 Sep 2010 16:08:10 -0000 1.3 +++ security/p5-Crypt-Simple/Makefile 1 Mar 2012 22:35:28 -0000 @@ -24,14 +24,4 @@ MAN3= Crypt::Simple.3 -.include - -.if ${PERL_LEVEL} < 500703 -RUN_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -.endif - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: security/p5-Data-Entropy/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Data-Entropy/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- security/p5-Data-Entropy/Makefile 12 Jun 2011 17:54:10 -0000 1.12 +++ security/p5-Data-Entropy/Makefile 1 Mar 2012 22:35:34 -0000 @@ -29,10 +29,4 @@ Data::Entropy::RawSource::RandomnumbersInfo.3 \ Data::Entropy::Source.3 -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: security/p5-Digest-MD5/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Digest-MD5/Makefile,v retrieving revision 1.42 diff -u -r1.42 Makefile --- security/p5-Digest-MD5/Makefile 8 Oct 2010 07:37:25 -0000 1.42 +++ security/p5-Digest-MD5/Makefile 1 Mar 2012 22:35:40 -0000 @@ -18,10 +18,4 @@ MAN3= Digest::MD5.3 -.include - -.if ${PERL_LEVEL} < 500803 -RUN_DEPENDS+= ${SITE_PERL}/Digest/base.pm:${PORTSDIR}/security/p5-Digest -.endif - -.include +.include Index: security/p5-Digest-SHA/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Digest-SHA/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- security/p5-Digest-SHA/Makefile 29 Feb 2012 16:16:54 -0000 1.23 +++ security/p5-Digest-SHA/Makefile 1 Mar 2012 22:36:19 -0000 @@ -21,18 +21,7 @@ MAN3= Digest::SHA.3 -.include - -.if ${PERL_LEVEL} >= 501000 -PLIST_SUB+= EXE_FILES="@comment " -.else -PLIST_SUB+= EXE_FILES="" -MAN1= shasum.1 -.endif - post-patch: -.if ${PERL_LEVEL} >= 501000 @${REINPLACE_CMD} -e '/EXE_FILES/d' ${WRKSRC}/Makefile.PL -.endif -.include +.include Index: security/p5-Digest-SHA/pkg-plist =================================================================== RCS file: /home/ncvs/ports/security/p5-Digest-SHA/pkg-plist,v retrieving revision 1.4 diff -u -r1.4 pkg-plist --- security/p5-Digest-SHA/pkg-plist 28 Mar 2009 20:45:09 -0000 1.4 +++ security/p5-Digest-SHA/pkg-plist 1 Mar 2012 22:36:13 -0000 @@ -1,4 +1,3 @@ -%%EXE_FILES%%bin/shasum %%SITE_PERL%%/%%PERL_ARCH%%/Digest/SHA.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/SHA/.packlist %%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/SHA/SHA.bs Index: security/p5-Digest-SHA-PurePerl/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Digest-SHA-PurePerl/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- security/p5-Digest-SHA-PurePerl/Makefile 26 Jan 2012 08:44:57 -0000 1.22 +++ security/p5-Digest-SHA-PurePerl/Makefile 1 Mar 2012 22:36:50 -0000 @@ -16,23 +16,8 @@ MAN3= Digest::SHA::PurePerl.3 -.include - -.if ${PERL_LEVEL} < 500803 -RUN_DEPENDS+= ${SITE_PERL}/Digest/base.pm:${PORTSDIR}/security/p5-Digest -.endif - -.if ${PERL_LEVEL} >= 501000 -PLIST_SUB+= EXE_FILES="@comment " -.else -PLIST_SUB+= EXE_FILES="" -MAN1= shasum.1 -.endif - post-patch: -.if ${PERL_LEVEL} >= 501000 @${REINPLACE_CMD} -e '/EXE_FILES/d' ${WRKSRC}/Makefile.PL -.endif .if !defined(NOPORTEXAMPLES) post-install: @@ -40,4 +25,4 @@ @${INSTALL_DATA} ${WRKSRC}/examples/dups ${EXAMPLESDIR} .endif -.include +.include Index: security/p5-Digest-SHA-PurePerl/pkg-plist =================================================================== RCS file: /home/ncvs/ports/security/p5-Digest-SHA-PurePerl/pkg-plist,v retrieving revision 1.5 diff -u -r1.5 pkg-plist --- security/p5-Digest-SHA-PurePerl/pkg-plist 28 Mar 2009 20:45:09 -0000 1.5 +++ security/p5-Digest-SHA-PurePerl/pkg-plist 1 Mar 2012 22:36:47 -0000 @@ -1,4 +1,3 @@ -%%EXE_FILES%%bin/shasum %%SITE_PERL%%/Digest/SHA/PurePerl.pm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/SHA/PurePerl/.packlist @dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Digest/SHA/PurePerl/ Index: security/p5-Digest-SHA1/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Digest-SHA1/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- security/p5-Digest-SHA1/Makefile 5 Jul 2010 01:57:48 -0000 1.17 +++ security/p5-Digest-SHA1/Makefile 1 Mar 2012 22:36:56 -0000 @@ -18,11 +18,4 @@ MAN3= Digest::SHA1.3 -.include - -.if ${PERL_LEVEL} < 500803 -BUILD_DEPENDS+= p5-Digest>=1.00:${PORTSDIR}/security/p5-Digest -RUN_DEPENDS+= p5-Digest>=1.00:${PORTSDIR}/security/p5-Digest -.endif - -.include +.include Index: security/p5-IO-Socket-SSL/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-IO-Socket-SSL/Makefile,v retrieving revision 1.62 diff -u -r1.62 Makefile --- security/p5-IO-Socket-SSL/Makefile 23 Feb 2012 14:04:08 -0000 1.62 +++ security/p5-IO-Socket-SSL/Makefile 2 Mar 2012 03:19:48 -0000 @@ -41,7 +41,4 @@ RUN_DEPENDS+= ${SITE_PERL}/IO/Socket/INET6.pm:${PORTSDIR}/net/p5-IO-Socket-INET6 .endif -regression-test: - @(cd ${WRKSRC} && ${PERL} ${CONFIGURE_SCRIPT} && ${MAKE} test) - .include Index: security/p5-Module-Signature/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Module-Signature/Makefile,v retrieving revision 1.29 diff -u -r1.29 Makefile --- security/p5-Module-Signature/Makefile 15 Feb 2012 07:52:25 -0000 1.29 +++ security/p5-Module-Signature/Makefile 1 Mar 2012 22:37:08 -0000 @@ -25,11 +25,4 @@ MAN1= cpansign.1 MAN3= Module::Signature.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -RUN_DEPENDS+= p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA -.endif - -.include +.include Index: security/p5-Net-OpenID-Common/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Net-OpenID-Common/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- security/p5-Net-OpenID-Common/Makefile 10 Nov 2011 02:21:18 -0000 1.2 +++ security/p5-Net-OpenID-Common/Makefile 2 Mar 2012 03:19:51 -0000 @@ -38,9 +38,4 @@ Net::OpenID::Yadis.3 \ Net::OpenID::Yadis::Service.3 -.if defined(MAINTAINER_MODE) -regression-test: build - cd ${WRKSRC} && ${MAKE} test -.endif - .include Index: security/p5-Net-SinFP/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-Net-SinFP/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- security/p5-Net-SinFP/Makefile 22 Mar 2011 13:09:02 -0000 1.16 +++ security/p5-Net-SinFP/Makefile 2 Mar 2012 03:20:06 -0000 @@ -65,8 +65,6 @@ post-patch: @${REINPLACE_CMD} -e 's/.*EXE_FILES.*//' ${WRKSRC}/${CONFIGURE_SCRIPT} -regression-test: - @(cd ${WRKSRC} && ${PERL} ${CONFIGURE_SCRIPT} && ${MAKE} test) .endif ONLY_FOR_ARCHS= i386 amd64 alpha Index: security/p5-POE-Component-SSLify/Makefile =================================================================== RCS file: /home/ncvs/ports/security/p5-POE-Component-SSLify/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- security/p5-POE-Component-SSLify/Makefile 7 Oct 2011 11:22:42 -0000 1.15 +++ security/p5-POE-Component-SSLify/Makefile 1 Mar 2012 22:37:14 -0000 @@ -28,16 +28,4 @@ POE::Component::SSLify::ClientHandle.3 \ POE::Component::SSLify::ServerHandle.3 -.include - -.if ${PERL_LEVEL} < 500809 -BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.31:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker -RUN_DEPENDS+= p5-ExtUtils-MakeMaker>=6.31:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker -.endif - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-IO>=1.28:${PORTSDIR}/devel/p5-IO -RUN_DEPENDS+= p5-IO>=1.28:${PORTSDIR}/devel/p5-IO -.endif - -.include +.include Index: shells/p5-Bash-Completion/Makefile =================================================================== RCS file: /home/ncvs/ports/shells/p5-Bash-Completion/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- shells/p5-Bash-Completion/Makefile 23 Oct 2011 07:40:59 -0000 1.1 +++ shells/p5-Bash-Completion/Makefile 1 Mar 2012 22:37:51 -0000 @@ -36,10 +36,6 @@ .include -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - .if ${PERL_LEVEL} < 501400 TEST_DEPENDS+= p5-Test-Simple>=0.98:${PORTSDIR}/devel/p5-Test-Simple .endif Index: sysutils/p5-Brackup/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/p5-Brackup/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- sysutils/p5-Brackup/Makefile 7 Jan 2012 21:21:32 -0000 1.11 +++ sysutils/p5-Brackup/Makefile 1 Mar 2012 22:38:37 -0000 @@ -54,14 +54,4 @@ Brackup::Target::Riak.3 \ Brackup::Target::Sftp.3 -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-File-Temp>=0.17:${PORTSDIR}/devel/p5-File-Temp -.endif - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-ExtUtils-Manifest>=1.52:${PORTSDIR}/devel/p5-ExtUtils-Manifest -.endif - -.include +.include Index: sysutils/p5-MogileFS-Utils/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/p5-MogileFS-Utils/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- sysutils/p5-MogileFS-Utils/Makefile 29 Jan 2012 01:18:20 -0000 1.15 +++ sysutils/p5-MogileFS-Utils/Makefile 1 Mar 2012 22:38:57 -0000 @@ -17,8 +17,7 @@ BUILD_DEPENDS= p5-MogileFS-Client>=1.14:${PORTSDIR}/sysutils/p5-MogileFS-Client \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww -RUN_DEPENDS= p5-MogileFS-Client>=1.14:${PORTSDIR}/sysutils/p5-MogileFS-Client \ - p5-libwww>=0:${PORTSDIR}/www/p5-libwww +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes @@ -35,13 +34,7 @@ mogupload.1 MAN3= MogileFS::Utils.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-IO-Compress>=0:${PORTSDIR}/archivers/p5-IO-Compress -.endif - post-patch: @${REINPLACE_CMD} -e '/NAME/ s|MogileFS-Utils|MogileFS::Utils|' ${WRKSRC}/Makefile.PL -.include +.include Index: sysutils/p5-Monitor-Simple/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/p5-Monitor-Simple/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- sysutils/p5-Monitor-Simple/Makefile 16 Nov 2011 18:28:42 -0000 1.2 +++ sysutils/p5-Monitor-Simple/Makefile 1 Mar 2012 22:39:03 -0000 @@ -38,11 +38,4 @@ Monitor::Simple::UserAgent.3 \ Monitor::Simple::Utils.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Getopt-Long>=2.38:${PORTSDIR}/devel/p5-Getopt-Long -RUN_DEPENDS+= p5-Getopt-Long>=2.38:${PORTSDIR}/devel/p5-Getopt-Long -.endif - -.include +.include Index: sysutils/p5-arclog/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/p5-arclog/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- sysutils/p5-arclog/Makefile 21 Sep 2010 07:56:40 -0000 1.4 +++ sysutils/p5-arclog/Makefile 1 Mar 2012 22:39:16 -0000 @@ -20,7 +20,7 @@ p5-Compress-Bzip2>=0:${PORTSDIR}/archivers/p5-Compress-Bzip2 \ p5-File-MMagic>=0:${PORTSDIR}/devel/p5-File-MMagic \ p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes MAN1= arclog.1 @@ -29,10 +29,4 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/arclog/.packlist PLIST_DIRS= %%SITE_PERL%%/%%PERL_ARCH%%/auto/arclog -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: sysutils/p5-reslog/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/p5-reslog/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- sysutils/p5-reslog/Makefile 21 Sep 2010 07:56:40 -0000 1.4 +++ sysutils/p5-reslog/Makefile 1 Mar 2012 22:39:28 -0000 @@ -19,7 +19,7 @@ RUN_DEPENDS= p5-Compress-Bzip2>=0:${PORTSDIR}/archivers/p5-Compress-Bzip2 \ p5-File-MMagic>=0:${PORTSDIR}/devel/p5-File-MMagic \ p5-Term-ReadKey>=0:${PORTSDIR}/devel/p5-Term-ReadKey -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes MAN1= reslog.1 @@ -28,10 +28,4 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/reslog/.packlist PLIST_DIRS= %%SITE_PERL%%/%%PERL_ARCH%%/auto/reslog -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: textproc/p5-CSS-Minifier-XS/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-CSS-Minifier-XS/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- textproc/p5-CSS-Minifier-XS/Makefile 17 Sep 2011 07:06:35 -0000 1.9 +++ textproc/p5-CSS-Minifier-XS/Makefile 1 Mar 2012 22:41:21 -0000 @@ -18,10 +18,4 @@ MAN3= CSS::Minifier::XS.3 -.include - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-Module-Build>=0.3500:${PORTSDIR}/devel/p5-Module-Build -.endif - -.include +.include Index: textproc/p5-Excel-Template/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Excel-Template/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- textproc/p5-Excel-Template/Makefile 8 Feb 2012 19:51:45 -0000 1.10 +++ textproc/p5-Excel-Template/Makefile 1 Mar 2012 22:41:31 -0000 @@ -56,11 +56,4 @@ Excel::Template::Iterator.3 \ Excel::Template::TextObject.3 -.include - -.if ${PERL_LEVEL} < 500800 -RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/Unicode/String.pm:${PORTSDIR}/converters/p5-Unicode-String -CONFIGURE_ARGS+= USE_UNICODE=1 -.endif - -.include +.include Index: textproc/p5-Geo-Parse-OSM/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Geo-Parse-OSM/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- textproc/p5-Geo-Parse-OSM/Makefile 21 Jun 2011 06:58:20 -0000 1.3 +++ textproc/p5-Geo-Parse-OSM/Makefile 1 Mar 2012 22:41:37 -0000 @@ -28,11 +28,4 @@ Geo::Parse::OSM::Multipass.3 \ Geo::Parse::OSM::Singlepass.3 -.include - -.if ${PERL_LEVEL} < 500903 -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: textproc/p5-HTML-Format/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-HTML-Format/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- textproc/p5-HTML-Format/Makefile 26 Feb 2012 18:36:27 -0000 1.17 +++ textproc/p5-HTML-Format/Makefile 1 Mar 2012 22:41:52 -0000 @@ -20,8 +20,7 @@ BUILD_DEPENDS= p5-Font-AFM>=0:${PORTSDIR}/x11-fonts/p5-Font-AFM \ p5-HTML-Tree>=3.15:${PORTSDIR}/www/p5-HTML-Tree -RUN_DEPENDS= p5-Font-AFM>=0:${PORTSDIR}/x11-fonts/p5-Font-AFM \ - p5-HTML-Tree>=3.15:${PORTSDIR}/www/p5-HTML-Tree +RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-File-Slurp>=0:${PORTSDIR}/devel/p5-File-Slurp PERL_MODBUILD= yes Index: textproc/p5-HTML-HTML5-Entities/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-HTML-HTML5-Entities/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- textproc/p5-HTML-HTML5-Entities/Makefile 20 Jan 2012 13:16:15 -0000 1.2 +++ textproc/p5-HTML-HTML5-Entities/Makefile 1 Mar 2012 22:41:59 -0000 @@ -25,10 +25,4 @@ MAN3= HTML::HTML5::Entities.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: textproc/p5-Hailo/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Hailo/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- textproc/p5-Hailo/Makefile 20 Sep 2011 10:09:14 -0000 1.2 +++ textproc/p5-Hailo/Makefile 1 Mar 2012 22:58:16 -0000 @@ -45,7 +45,7 @@ p5-Test-Script-Run>=0.04:${PORTSDIR}/devel/p5-Test-Script-Run \ p5-Test-Synopsis>=0.06:${PORTSDIR}/devel/p5-Test-Synopsis -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN1= hailo.1 Index: textproc/p5-JavaScript-Minifier-XS/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-JavaScript-Minifier-XS/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- textproc/p5-JavaScript-Minifier-XS/Makefile 17 Sep 2011 07:06:35 -0000 1.9 +++ textproc/p5-JavaScript-Minifier-XS/Makefile 1 Mar 2012 22:42:13 -0000 @@ -18,10 +18,4 @@ MAN3= JavaScript::Minifier::XS.3 -.include - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-Module-Build>=0.3500:${PORTSDIR}/devel/p5-Module-Build -.endif - -.include +.include Index: textproc/p5-KinoSearch/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-KinoSearch/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- textproc/p5-KinoSearch/Makefile 17 Sep 2011 06:50:14 -0000 1.13 +++ textproc/p5-KinoSearch/Makefile 1 Mar 2012 22:42:18 -0000 @@ -114,11 +114,4 @@ KinoSearch::Util::ToolSet.3 \ KinoSearch::Util::VerifyArgs.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: textproc/p5-Lingua-EN-NamedEntity/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Lingua-EN-NamedEntity/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- textproc/p5-Lingua-EN-NamedEntity/Makefile 21 Sep 2010 07:56:41 -0000 1.6 +++ textproc/p5-Lingua-EN-NamedEntity/Makefile 1 Mar 2012 22:42:37 -0000 @@ -17,16 +17,10 @@ RUN_DEPENDS= ${SITE_PERL}/Lingua/Stem/En.pm:${PORTSDIR}/textproc/p5-Lingua-Stem \ ${SITE_PERL}/LWP/Simple.pm:${PORTSDIR}/www/p5-libwww -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes MAN3= Lingua::EN::NamedEntity.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: textproc/p5-Marpa-HTML/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Marpa-HTML/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- textproc/p5-Marpa-HTML/Makefile 28 Dec 2011 15:51:12 -0000 1.5 +++ textproc/p5-Marpa-HTML/Makefile 1 Mar 2012 22:58:16 -0000 @@ -19,26 +19,16 @@ BUILD_DEPENDS= p5-HTML-Parser>=3.64:${PORTSDIR}/www/p5-HTML-Parser \ p5-Marpa-PP>=0.012:${PORTSDIR}/lang/p5-Marpa-PP \ p5-Marpa-XS>=0.026:${PORTSDIR}/lang/p5-Marpa-XS -RUN_DEPENDS= p5-HTML-Parser>=3.64:${PORTSDIR}/www/p5-HTML-Parser \ - p5-Marpa-PP>=0.012:${PORTSDIR}/lang/p5-Marpa-PP \ - p5-Marpa-XS>=0.026:${PORTSDIR}/lang/p5-Marpa-XS +RUN_DEPENDS:= ${BUILD_DEPENDS} -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN1= html_fmt.1 \ html_score.1 MAN3= Marpa::HTML.3 \ Marpa::HTML::Support.3 -.include - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-Data-Dumper>=2.125:${PORTSDIR}/devel/p5-Data-Dumper -RUN_DEPENDS+= p5-Data-Dumper>=2.125:${PORTSDIR}/devel/p5-Data-Dumper -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - post-patch: @${REINPLACE_CMD} -e 's|lib/Marpa/Support.pod|lib/Marpa/HTML/Support.pod|' ${WRKSRC}/Build.PL -.include +.include Index: textproc/p5-PDF-API2/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-PDF-API2/Makefile,v retrieving revision 1.54 diff -u -r1.54 Makefile --- textproc/p5-PDF-API2/Makefile 17 Sep 2011 06:49:15 -0000 1.54 +++ textproc/p5-PDF-API2/Makefile 1 Mar 2012 22:43:06 -0000 @@ -62,11 +62,4 @@ PDF::API2::Resource::XObject::Image::TIFF.3 \ PDF::API2::Util.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: textproc/p5-PPI/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-PPI/Makefile,v retrieving revision 1.28 diff -u -r1.28 Makefile --- textproc/p5-PPI/Makefile 12 Jun 2011 16:02:17 -0000 1.28 +++ textproc/p5-PPI/Makefile 1 Mar 2012 22:43:14 -0000 @@ -116,11 +116,4 @@ PPI::Transform.3 \ PPI::Transform::UpdateCopyright.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.20:${PORTSDIR}/lang/p5-Scalar-List-Utils -RUN_DEPENDS+= p5-Scalar-List-Utils>=1.20:${PORTSDIR}/lang/p5-Scalar-List-Utils -.endif - -.include +.include Index: textproc/p5-PPIx-Regexp/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-PPIx-Regexp/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- textproc/p5-PPIx-Regexp/Makefile 27 Jan 2012 09:38:43 -0000 1.10 +++ textproc/p5-PPIx-Regexp/Makefile 1 Mar 2012 22:43:22 -0000 @@ -81,10 +81,4 @@ PPIx::Regexp::Tokenizer.3 \ PPIx::Regexp::Util.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: textproc/p5-Perl-MinimumVersion/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Perl-MinimumVersion/Makefile,v retrieving revision 1.16 diff -u -r1.16 Makefile --- textproc/p5-Perl-MinimumVersion/Makefile 17 Sep 2011 07:06:36 -0000 1.16 +++ textproc/p5-Perl-MinimumVersion/Makefile 1 Mar 2012 22:43:37 -0000 @@ -20,7 +20,7 @@ p5-Perl-Critic>=1.10.4:${PORTSDIR}/textproc/p5-Perl-Critic \ p5-Params-Util>=0.25:${PORTSDIR}/devel/p5-Params-Util \ p5-version>=0.76:${PORTSDIR}/devel/p5-version -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes @@ -30,8 +30,4 @@ post-patch: @${PERL} -pi -e '$$_="" if m/Test::/' ${WRKSRC}/Makefile.PL -.include -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-Scalar-List-Utils>=1.20:${PORTSDIR}/lang/p5-Scalar-List-Utils -.endif -.include +.include Index: textproc/p5-Pod-POM/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Pod-POM/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- textproc/p5-Pod-POM/Makefile 8 Jan 2012 10:17:01 -0000 1.9 +++ textproc/p5-Pod-POM/Makefile 1 Mar 2012 22:43:49 -0000 @@ -44,11 +44,4 @@ Pod::POM::View::Pod.3 \ Pod::POM::View::Text.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: textproc/p5-Pod-ProjectDocs/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Pod-ProjectDocs/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- textproc/p5-Pod-ProjectDocs/Makefile 1 Sep 2011 13:07:56 -0000 1.14 +++ textproc/p5-Pod-ProjectDocs/Makefile 1 Mar 2012 22:43:55 -0000 @@ -32,11 +32,4 @@ MAN1= pod2projdocs.1 MAN3= Pod::ProjectDocs.3 -.include - -.if ${PERL_LEVEL} < 500808 -BUILD_DEPENDS+= p5-Pod-Parser>=1.32:${PORTSDIR}/textproc/p5-Pod-Parser -RUN_DEPENDS+= p5-Pod-Parser>=1.32:${PORTSDIR}/textproc/p5-Pod-Parser -.endif - -.include +.include Index: textproc/p5-Pod-Simple/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Pod-Simple/Makefile,v retrieving revision 1.29 diff -u -r1.29 Makefile --- textproc/p5-Pod-Simple/Makefile 27 Aug 2011 11:03:09 -0000 1.29 +++ textproc/p5-Pod-Simple/Makefile 1 Mar 2012 22:44:02 -0000 @@ -44,11 +44,4 @@ Pod::Simple::XHTML.3 \ Pod::Simple::XMLOutStream.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS= p5-Pod-Escapes>=1.04:${PORTSDIR}/textproc/p5-Pod-Escapes -BUILD_DEPENDS= p5-Pod-Escapes>=1.04:${PORTSDIR}/textproc/p5-Pod-Escapes -.endif - -.include +.include Index: textproc/p5-Pod-Strip/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Pod-Strip/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- textproc/p5-Pod-Strip/Makefile 13 Apr 2009 05:38:50 -0000 1.2 +++ textproc/p5-Pod-Strip/Makefile 1 Mar 2012 22:44:09 -0000 @@ -20,11 +20,4 @@ MAN3= Pod::Strip.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-Pod-Simple>=3.00:${PORTSDIR}/textproc/p5-Pod-Simple -BUILD_DEPENDS+= ${RUN_DEPENDS} -.endif - -.include +.include Index: textproc/p5-Pod-Tree/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Pod-Tree/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- textproc/p5-Pod-Tree/Makefile 23 Jun 2010 08:24:54 -0000 1.10 +++ textproc/p5-Pod-Tree/Makefile 1 Mar 2012 22:44:25 -0000 @@ -18,7 +18,7 @@ RUN_DEPENDS= p5-HTML-Stream>=1.49:${PORTSDIR}/www/p5-HTML-Stream \ p5-IO-String>=1:${PORTSDIR}/devel/p5-IO-String \ p5-Text-Template>=1:${PORTSDIR}/textproc/p5-Text-Template -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes @@ -41,10 +41,4 @@ ${REINPLACE_CMD} -e '/pod2html/d' ${WRKSRC}/MANIFEST ${RM} ${WRKSRC}/t/pod2html.t -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-Pod-Escapes>=1.02:${PORTSDIR}/textproc/p5-Pod-Escapes -.endif - -.include +.include Index: textproc/p5-String-ToIdentifier-EN/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-String-ToIdentifier-EN/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- textproc/p5-String-ToIdentifier-EN/Makefile 1 Mar 2012 08:24:59 -0000 1.2 +++ textproc/p5-String-ToIdentifier-EN/Makefile 1 Mar 2012 22:44:45 -0000 @@ -17,10 +17,7 @@ BUILD_DEPENDS= p5-Lingua-EN-Inflect-Phrase>=0.07:${PORTSDIR}/textproc/p5-Lingua-EN-Inflect-Phrase \ p5-Text-Unidecode>=0.04:${PORTSDIR}/converters/p5-Text-Unidecode \ p5-namespace-clean>=0.20:${PORTSDIR}/devel/p5-namespace-clean -RUN_DEPENDS= p5-Lingua-EN-Inflect-Phrase>=0.07:${PORTSDIR}/textproc/p5-Lingua-EN-Inflect-Phrase \ - p5-Text-Unidecode>=0.04:${PORTSDIR}/converters/p5-Text-Unidecode \ - p5-namespace-clean>=0.20:${PORTSDIR}/devel/p5-namespace-clean - +RUN_DEPENDS:= ${BUILD_DEPENDS} TEST_DEPENDS= p5-Test-Pod>=1.14:${PORTSDIR}/devel/p5-Test-Pod \ p5-Test-Pod-Coverage>=1.04:${PORTSDIR}/devel/p5-Test-Pod-Coverage @@ -29,10 +26,4 @@ MAN3= String::ToIdentifier::EN.3 \ String::ToIdentifier::EN::Unicode.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.92:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: textproc/p5-Template-Plugin-Filter-Minify-CSS/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Template-Plugin-Filter-Minify-CSS/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/p5-Template-Plugin-Filter-Minify-CSS/Makefile 4 Sep 2011 09:26:08 -0000 1.1 +++ textproc/p5-Template-Plugin-Filter-Minify-CSS/Makefile 1 Mar 2012 22:44:56 -0000 @@ -24,10 +24,4 @@ MAN3= Template::Plugin::Filter::Minify::CSS.3 -.include - -.if ${PERL_LEVEL} < 500808 -BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.30:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker -.endif - -.include +.include Index: textproc/p5-Template-Plugin-Filter-Minify-CSS-XS/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Template-Plugin-Filter-Minify-CSS-XS/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/p5-Template-Plugin-Filter-Minify-CSS-XS/Makefile 4 Sep 2011 09:30:44 -0000 1.1 +++ textproc/p5-Template-Plugin-Filter-Minify-CSS-XS/Makefile 1 Mar 2012 22:45:02 -0000 @@ -24,10 +24,4 @@ MAN3= Template::Plugin::Filter::Minify::CSS::XS.3 -.include - -.if ${PERL_LEVEL} < 500808 -BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.30:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker -.endif - -.include +.include Index: textproc/p5-Template-Plugin-Filter-Minify-JavaScript/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Template-Plugin-Filter-Minify-JavaScript/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/p5-Template-Plugin-Filter-Minify-JavaScript/Makefile 4 Sep 2011 09:31:23 -0000 1.1 +++ textproc/p5-Template-Plugin-Filter-Minify-JavaScript/Makefile 1 Mar 2012 22:45:11 -0000 @@ -24,10 +24,4 @@ MAN3= Template::Plugin::Filter::Minify::JavaScript.3 -.include - -.if ${PERL_LEVEL} < 500808 -BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.30:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker -.endif - -.include +.include Index: textproc/p5-Template-Plugin-Filter-Minify-JavaScript-XS/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Template-Plugin-Filter-Minify-JavaScript-XS/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/p5-Template-Plugin-Filter-Minify-JavaScript-XS/Makefile 4 Sep 2011 09:31:57 -0000 1.1 +++ textproc/p5-Template-Plugin-Filter-Minify-JavaScript-XS/Makefile 1 Mar 2012 22:45:18 -0000 @@ -24,10 +24,4 @@ MAN3= Template::Plugin::Filter::Minify::JavaScript::XS.3 -.include - -.if ${PERL_LEVEL} < 500808 -BUILD_DEPENDS+= p5-ExtUtils-MakeMaker>=6.30:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker -.endif - -.include +.include Index: textproc/p5-Text-ASCIITable/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Text-ASCIITable/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- textproc/p5-Text-ASCIITable/Makefile 4 Jan 2012 06:40:10 -0000 1.8 +++ textproc/p5-Text-ASCIITable/Makefile 2 Mar 2012 03:20:10 -0000 @@ -31,7 +31,4 @@ @${ECHO_MSG} "===> Example installed in ${EXAMPLESDIR}." .endif -regression-test: build - cd ${WRKSRC}/ && ./Build test - .include Index: textproc/p5-Text-Padding/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Text-Padding/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/p5-Text-Padding/Makefile 12 Oct 2011 18:21:11 -0000 1.1 +++ textproc/p5-Text-Padding/Makefile 1 Mar 2012 22:58:16 -0000 @@ -22,14 +22,8 @@ p5-MooseX-Has-Sugar>=0:${PORTSDIR}/devel/p5-MooseX-Has-Sugar \ p5-Text-Truncate>=0:${PORTSDIR}/textproc/p5-Text-Truncate -PERL_MODBUILD= 5.12.0+ +PERL_MODBUILD= yes MAN3= Text::Padding.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: textproc/p5-Text-Quote/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Text-Quote/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- textproc/p5-Text-Quote/Makefile 17 Sep 2011 06:49:17 -0000 1.4 +++ textproc/p5-Text-Quote/Makefile 1 Mar 2012 22:45:30 -0000 @@ -23,10 +23,4 @@ MAN3= Text::Quote.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: textproc/p5-Text-VimColor/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Text-VimColor/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- textproc/p5-Text-VimColor/Makefile 5 Nov 2011 16:58:15 -0000 1.9 +++ textproc/p5-Text-VimColor/Makefile 1 Mar 2012 22:45:45 -0000 @@ -29,10 +29,6 @@ .include -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - .if ${PERL_LEVEL} < 501400 BUILD_DEPENDS+= p5-Term-ANSIColor>=3:${PORTSDIR}/devel/p5-Term-ANSIColor RUN_DEPENDS+= p5-Term-ANSIColor>=3:${PORTSDIR}/devel/p5-Term-ANSIColor Index: textproc/p5-Tk-Pod/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-Tk-Pod/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/p5-Tk-Pod/Makefile 10 Oct 2011 03:21:33 -0000 1.1 +++ textproc/p5-Tk-Pod/Makefile 1 Mar 2012 22:45:51 -0000 @@ -33,11 +33,4 @@ Tk::Pod::Util.3 \ Tk::Pod_usage.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Pod-Simple>=0:${PORTSDIR}/textproc/p5-Pod-Simple -RUN_DEPENDS+= p5-Pod-Simple>=0:${PORTSDIR}/textproc/p5-Pod-Simple -.endif - -.include +.include Index: textproc/p5-URI-Find/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-URI-Find/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- textproc/p5-URI-Find/Makefile 5 Nov 2011 16:09:05 -0000 1.19 +++ textproc/p5-URI-Find/Makefile 1 Mar 2012 22:45:57 -0000 @@ -23,10 +23,4 @@ MAN3= URI::Find.3 \ URI::Find::Schemeless.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: textproc/p5-XML-Feed/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-XML-Feed/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- textproc/p5-XML-Feed/Makefile 30 Sep 2011 02:05:38 -0000 1.27 +++ textproc/p5-XML-Feed/Makefile 1 Mar 2012 22:46:08 -0000 @@ -38,10 +38,4 @@ XML::Feed::Enclosure.3 \ XML::Feed::Entry.3 -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable -.endif - -.include +.include Index: textproc/p5-XML-Generator/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-XML-Generator/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- textproc/p5-XML-Generator/Makefile 12 Sep 2011 18:26:07 -0000 1.8 +++ textproc/p5-XML-Generator/Makefile 2 Mar 2012 03:20:13 -0000 @@ -23,7 +23,4 @@ MAN3= XML::Generator.3 XML::Generator::DOM.3 -regression-test test: - @(cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE} test) - .include Index: textproc/p5-XML-LibXML-PrettyPrint/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-XML-LibXML-PrettyPrint/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- textproc/p5-XML-LibXML-PrettyPrint/Makefile 5 Nov 2011 17:09:54 -0000 1.1 +++ textproc/p5-XML-LibXML-PrettyPrint/Makefile 1 Mar 2012 22:58:16 -0000 @@ -21,7 +21,7 @@ p5-XML-LibXML>=1.62:${PORTSDIR}/textproc/p5-XML-LibXML \ p5-common-sense>=0:${PORTSDIR}/devel/p5-common-sense -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN3= XML::LibXML::PrettyPrint.3 Index: textproc/p5-XML-SAX-Machines/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-XML-SAX-Machines/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- textproc/p5-XML-SAX-Machines/Makefile 21 Jan 2012 17:39:29 -0000 1.14 +++ textproc/p5-XML-SAX-Machines/Makefile 2 Mar 2012 03:20:18 -0000 @@ -26,9 +26,6 @@ XML::SAX::Machines.3 XML::SAX::Machines::ConfigHelper.3 \ XML::SAX::Manifold.3 XML::SAX::Pipeline.3 XML::SAX::Tap.3 -regression-test: build - ${MAKE} -C ${WRKSRC} test - post-install: .ifndef(NOPORTEXAMPLES) @${ECHO_MSG} "===> Installing examples for ${PKGNAME}" Index: textproc/p5-XML-Stream/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-XML-Stream/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- textproc/p5-XML-Stream/Makefile 8 Jan 2012 19:05:23 -0000 1.25 +++ textproc/p5-XML-Stream/Makefile 1 Mar 2012 22:46:19 -0000 @@ -28,14 +28,4 @@ XML::Stream::Parser::DTD.3 \ XML::Stream::Tree.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.92:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-Module-Build>=0.3603:${PORTSDIR}/devel/p5-Module-Build -.endif - -.include +.include Index: textproc/p5-podlators/Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/p5-podlators/Makefile,v retrieving revision 1.30 diff -u -r1.30 Makefile --- textproc/p5-podlators/Makefile 13 Oct 2010 23:02:20 -0000 1.30 +++ textproc/p5-podlators/Makefile 1 Mar 2012 22:46:24 -0000 @@ -24,10 +24,4 @@ post-patch: ${REINPLACE_CMD} -e '/pod2text/d;s/man1pod.*pod2man.*//' ${WRKSRC}/Makefile.PL -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-Pod-Simple>=3.06:${PORTSDIR}/textproc/p5-Pod-Simple -.endif - .include Index: www/p5-Apache-ASP/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Apache-ASP/Makefile,v retrieving revision 1.32 diff -u -r1.32 Makefile --- www/p5-Apache-ASP/Makefile 1 Jan 2012 21:04:10 -0000 1.32 +++ www/p5-Apache-ASP/Makefile 1 Mar 2012 22:48:19 -0000 @@ -42,10 +42,4 @@ Bundle::Apache::ASP.3 \ Bundle::Apache::ASP::Extra.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-IO-Compress>=0:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: www/p5-Blog-Spam/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Blog-Spam/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- www/p5-Blog-Spam/Makefile 20 Jun 2011 09:22:07 -0000 1.2 +++ www/p5-Blog-Spam/Makefile 1 Mar 2012 22:48:25 -0000 @@ -49,10 +49,4 @@ Blog::Spam::Plugin::wordcount.3 \ Blog::Spam::Server.3 -.include - -.if ${PERL_LEVEL} < 500809 -RUN_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable -.endif - -.include +.include Index: www/p5-Business-PayPal/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Business-PayPal/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- www/p5-Business-PayPal/Makefile 21 Sep 2010 16:08:11 -0000 1.9 +++ www/p5-Business-PayPal/Makefile 1 Mar 2012 22:48:36 -0000 @@ -17,16 +17,10 @@ RUN_DEPENDS= p5-Net-SSLeay>=1.35:${PORTSDIR}/security/p5-Net-SSLeay \ p5-CGI.pm>=3.49:${PORTSDIR}/www/p5-CGI.pm -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes MAN3= Business::PayPal.3 -.include - -.if ${PERL_LEVEL} < 500703 -RUN_DEPENDS+= p5-Digest-MD5>=2.16:${PORTSDIR}/security/p5-Digest-MD5 -.endif - -.include +.include Index: www/p5-CGI-Application-Dispatch/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-CGI-Application-Dispatch/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- www/p5-CGI-Application-Dispatch/Makefile 19 Oct 2011 05:51:21 -0000 1.4 +++ www/p5-CGI-Application-Dispatch/Makefile 1 Mar 2012 22:48:43 -0000 @@ -33,11 +33,4 @@ CGI::Application::Dispatch::PSGI.3 \ CGI::Application::Dispatch::Regexp.3 -.include - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-version>=0.82:${PORTSDIR}/devel/p5-version -RUN_DEPENDS+= p5-version>=0.82:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: www/p5-CGI-Compress-Gzip/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-CGI-Compress-Gzip/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- www/p5-CGI-Compress-Gzip/Makefile 21 Sep 2010 07:56:42 -0000 1.3 +++ www/p5-CGI-Compress-Gzip/Makefile 1 Mar 2012 22:48:49 -0000 @@ -24,11 +24,4 @@ MAN3= CGI::Compress::Gzip.3 \ CGI::Compress::Gzip::FileHandle.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: www/p5-CGI-SpeedyCGI/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-CGI-SpeedyCGI/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- www/p5-CGI-SpeedyCGI/Makefile 1 Jan 2012 16:47:40 -0000 1.20 +++ www/p5-CGI-SpeedyCGI/Makefile 1 Mar 2012 22:49:04 -0000 @@ -36,10 +36,8 @@ @${PERL} -pi -e 's,APXS=apxs,APXS=${APXS},;' \ ${WRKSRC}/mod_speedycgi/Makefile.tmpl ${CP} ${FILESDIR}/speedy_dump.c ${WRKSRC}/speedy_dump/ -.if ${PERL_LEVEL} >= 501000 @${REINPLACE_CMD} -i '' -e 's=New(123,=Newx(=g' \ ${WRKSRC}/src/speedy_backend_main.h -.endif post-configure: @${PERL} -pi -e 's,^PREFIX = /usr$$,PREFIX = ${PREFIX},g;' \ Index: www/p5-CSS-DOM/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-CSS-DOM/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- www/p5-CSS-DOM/Makefile 17 Sep 2011 07:06:37 -0000 1.9 +++ www/p5-CSS-DOM/Makefile 1 Mar 2012 22:49:11 -0000 @@ -43,10 +43,4 @@ CSS::DOM::Value::List.3 \ CSS::DOM::Value::Primitive.3 \ -.include - -.if ${PERL_LEVEL} < 500807 -RUN_DEPENDS+= p5-Encode>=2.1:${PORTSDIR}/converters/p5-Encode -.endif - -.include +.include Index: www/p5-Catalyst-Action-REST/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Action-REST/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- www/p5-Catalyst-Action-REST/Makefile 29 Feb 2012 14:56:24 -0000 1.24 +++ www/p5-Catalyst-Action-REST/Makefile 1 Mar 2012 22:49:18 -0000 @@ -48,10 +48,4 @@ Catalyst::TraitFor::Request::REST.3 \ Catalyst::TraitFor::Request::REST::ForBrowsers.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: www/p5-Catalyst-Authentication-Credential-OpenID/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Authentication-Credential-OpenID/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- www/p5-Catalyst-Authentication-Credential-OpenID/Makefile 8 Jan 2012 13:49:06 -0000 1.3 +++ www/p5-Catalyst-Authentication-Credential-OpenID/Makefile 1 Mar 2012 22:49:24 -0000 @@ -30,11 +30,4 @@ MAN3= Catalyst::Authentication::Credential::OpenID.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: www/p5-Catalyst-Devel/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Devel/Makefile,v retrieving revision 1.26 diff -u -r1.26 Makefile --- www/p5-Catalyst-Devel/Makefile 26 Oct 2011 09:24:27 -0000 1.26 +++ www/p5-Catalyst-Devel/Makefile 1 Mar 2012 22:49:32 -0000 @@ -42,10 +42,4 @@ Catalyst::Restarter::Win32.3 \ Module::Install::Catalyst.3 -.include - -.if ${PERL_LEVEL} < 501200 -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: www/p5-Catalyst-Model-DBIC-Schema/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Model-DBIC-Schema/Makefile,v retrieving revision 1.44 diff -u -r1.44 Makefile --- www/p5-Catalyst-Model-DBIC-Schema/Makefile 9 Jan 2012 21:45:52 -0000 1.44 +++ www/p5-Catalyst-Model-DBIC-Schema/Makefile 1 Mar 2012 22:49:38 -0000 @@ -50,10 +50,4 @@ post-extract: @${PERL} -i.bak -ne 'print unless m,^feature, .. m,;$$,' ${WRKSRC}/Makefile.PL -.include - -.if ${PERL_LEVEL} < 501200 -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: www/p5-Catalyst-Model-Memcached/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Model-Memcached/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- www/p5-Catalyst-Model-Memcached/Makefile 26 Mar 2010 01:28:23 -0000 1.1 +++ www/p5-Catalyst-Model-Memcached/Makefile 1 Mar 2012 22:58:16 -0000 @@ -19,7 +19,7 @@ p5-Catalyst-Runtime>=5.8:${PORTSDIR}/www/p5-Catalyst-Runtime BUILD_DEPENDS= ${RUN_DEPENDS} -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN3= Catalyst::Model::Memcached.3 Index: www/p5-Catalyst-Plugin-Authentication/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Plugin-Authentication/Makefile,v retrieving revision 1.35 diff -u -r1.35 Makefile --- www/p5-Catalyst-Plugin-Authentication/Makefile 13 Jan 2012 04:48:29 -0000 1.35 +++ www/p5-Catalyst-Plugin-Authentication/Makefile 1 Mar 2012 22:49:48 -0000 @@ -50,10 +50,4 @@ Catalyst::Plugin::Authentication::User.3 \ Catalyst::Plugin::Authentication::User::Hash.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: www/p5-Catalyst-Plugin-Session-FastMmap/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Plugin-Session-FastMmap/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- www/p5-Catalyst-Plugin-Session-FastMmap/Makefile 21 Nov 2011 20:03:43 -0000 1.8 +++ www/p5-Catalyst-Plugin-Session-FastMmap/Makefile 2 Mar 2012 03:20:20 -0000 @@ -28,7 +28,4 @@ MAN3= Catalyst::Plugin::Session::FastMmap.3 -regression-test: build - cd ${WRKSRC}/ && ${MAKE} test - .include Index: www/p5-Catalyst-Plugin-Static/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Plugin-Static/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- www/p5-Catalyst-Plugin-Static/Makefile 21 Nov 2011 20:10:24 -0000 1.10 +++ www/p5-Catalyst-Plugin-Static/Makefile 2 Mar 2012 03:20:30 -0000 @@ -25,7 +25,4 @@ MAN3= Catalyst::Plugin::Static.3 -regression-test: build - cd ${WRKSRC}/ && ${MAKE} test - .include Index: www/p5-Catalyst-Plugin-Unicode-Encoding/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Plugin-Unicode-Encoding/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- www/p5-Catalyst-Plugin-Unicode-Encoding/Makefile 22 Dec 2011 15:59:56 -0000 1.6 +++ www/p5-Catalyst-Plugin-Unicode-Encoding/Makefile 1 Mar 2012 22:49:56 -0000 @@ -25,10 +25,4 @@ MAN3= Catalyst::Plugin::Unicode::Encoding.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: www/p5-Catalyst-Runtime/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-Runtime/Makefile,v retrieving revision 1.48 diff -u -r1.48 Makefile --- www/p5-Catalyst-Runtime/Makefile 19 Feb 2012 04:03:08 -0000 1.48 +++ www/p5-Catalyst-Runtime/Makefile 1 Mar 2012 22:50:02 -0000 @@ -107,11 +107,4 @@ post-install: @${CAT} ${PKGDIR}/pkg-message -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -RUN_DEPENDS+= p5-Module-Pluggable>=3.9:${PORTSDIR}/devel/p5-Module-Pluggable -.endif - -.include +.include Index: www/p5-Catalyst-View-Email/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-View-Email/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- www/p5-Catalyst-View-Email/Makefile 8 Jan 2012 13:29:21 -0000 1.18 +++ www/p5-Catalyst-View-Email/Makefile 1 Mar 2012 22:50:08 -0000 @@ -36,11 +36,4 @@ Catalyst::View::Email.3 \ Catalyst::View::Email::Template.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: www/p5-Catalyst-View-Mason/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Catalyst-View-Mason/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- www/p5-Catalyst-View-Mason/Makefile 8 Jan 2012 13:30:21 -0000 1.14 +++ www/p5-Catalyst-View-Mason/Makefile 1 Mar 2012 22:50:14 -0000 @@ -26,11 +26,4 @@ MAN3= Catalyst::Helper::View::Mason.3 \ Catalyst::View::Mason.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: www/p5-FCGI-Client/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-FCGI-Client/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- www/p5-FCGI-Client/Makefile 9 Oct 2011 01:17:03 -0000 1.6 +++ www/p5-FCGI-Client/Makefile 1 Mar 2012 22:50:30 -0000 @@ -15,10 +15,9 @@ MAINTAINER= kuriyama@FreeBSD.org COMMENT= Perl extension for fastcgi protocol client library -RUN_DEPENDS= \ - p5-Any-Moose>=0.1:${PORTSDIR}/devel/p5-Any-Moose \ +RUN_DEPENDS= p5-Any-Moose>=0.1:${PORTSDIR}/devel/p5-Any-Moose \ p5-Try-Tiny>0:${PORTSDIR}/lang/p5-Try-Tiny -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes @@ -29,10 +28,4 @@ FCGI::Client::RecordFactory.3 \ FCGI::Client::RecordHeader.3 -.include - -.if ${PERL_LEVEL} <= 501000 -RUN_DEPENDS+= p5-autodie>0:${PORTSDIR}/devel/p5-autodie -.endif - -.include +.include Index: www/p5-FCGI-Engine/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-FCGI-Engine/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- www/p5-FCGI-Engine/Makefile 6 Oct 2011 17:23:58 -0000 1.3 +++ www/p5-FCGI-Engine/Makefile 1 Mar 2012 22:50:46 -0000 @@ -44,10 +44,4 @@ Plack::Server::FCGI::Engine.3 \ Plack::Server::FCGI::Engine::ProcManager.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: www/p5-FEAR-API/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-FEAR-API/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- www/p5-FEAR-API/Makefile 8 Sep 2011 13:20:13 -0000 1.9 +++ www/p5-FEAR-API/Makefile 1 Mar 2012 22:50:54 -0000 @@ -53,10 +53,4 @@ FEAR::API::Filters.3 \ FEAR::API::Document.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: www/p5-Feersum/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Feersum/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- www/p5-Feersum/Makefile 10 Sep 2011 17:50:30 -0000 1.4 +++ www/p5-Feersum/Makefile 1 Mar 2012 22:51:03 -0000 @@ -39,15 +39,4 @@ Feersum::Runner.3 \ Plack::Handler::Feersum.3 -.include - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.19:${PORTSDIR}/lang/p5-Scalar-List-Utils -RUN_DEPENDS+= p5-Scalar-List-Utils>=1.19:${PORTSDIR}/lang/p5-Scalar-List-Utils -.endif - -.if ${PERL_LEVEL} < 501200 -TEST_DEPENDS+= p5-Test-Simple>=0.94:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: www/p5-HTTP-Body/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-HTTP-Body/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- www/p5-HTTP-Body/Makefile 5 Dec 2011 07:13:09 -0000 1.23 +++ www/p5-HTTP-Body/Makefile 1 Mar 2012 22:51:15 -0000 @@ -34,10 +34,4 @@ HTTP::Body::XForms.3 \ HTTP::Body::XFormsMultipart.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.86:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: www/p5-HTTP-Cache-Transparent/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-HTTP-Cache-Transparent/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- www/p5-HTTP-Cache-Transparent/Makefile 25 Jul 2010 23:26:12 -0000 1.7 +++ www/p5-HTTP-Cache-Transparent/Makefile 1 Mar 2012 22:51:21 -0000 @@ -20,10 +20,4 @@ PERL_CONFIGURE= yes MAN3= HTTP::Cache::Transparent.3 -.include - -.if ${PERL_LEVEL} < 500800 -BROKEN= Does not compile with perl ${PERL_VERSION} -.endif - -.include +.include Index: www/p5-HTTP-Message/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-HTTP-Message/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- www/p5-HTTP-Message/Makefile 19 Feb 2012 10:52:38 -0000 1.4 +++ www/p5-HTTP-Message/Makefile 1 Mar 2012 22:51:29 -0000 @@ -35,16 +35,4 @@ HTTP::Response.3 \ HTTP::Status.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Compress-Raw-Zlib>=0:${PORTSDIR}/archivers/p5-Compress-Raw-Zlib -RUN_DEPENDS+= p5-Compress-Raw-Zlib>=0:${PORTSDIR}/archivers/p5-Compress-Raw-Zlib -.endif - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-IO-Compress>=2.021:${PORTSDIR}/archivers/p5-IO-Compress -RUN_DEPENDS+= p5-IO-Compress>=2.021:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: www/p5-HTTP-Response-Encoding/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-HTTP-Response-Encoding/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- www/p5-HTTP-Response-Encoding/Makefile 12 Jan 2012 02:01:30 -0000 1.5 +++ www/p5-HTTP-Response-Encoding/Makefile 1 Mar 2012 22:51:35 -0000 @@ -26,10 +26,4 @@ MAN3= HTTP::Response::Encoding.3 -.include - -.if ${PERL_LEVEL} < 500805 -RUN_DEPENDS+= p5-Encode>=2:${PORTSDIR}/converters/p5-Encode -.endif - -.include +.include Index: www/p5-Jifty/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Jifty/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- www/p5-Jifty/Makefile 27 Sep 2011 01:35:03 -0000 1.24 +++ www/p5-Jifty/Makefile 1 Mar 2012 22:51:46 -0000 @@ -99,13 +99,7 @@ .include "Makefile.man" -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - post-patch: ${REINPLACE_CMD} -e '/auto_install/d' ${WRKSRC}/Makefile.PL -.include +.include Index: www/p5-LWP-Authen-Wsse/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-LWP-Authen-Wsse/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- www/p5-LWP-Authen-Wsse/Makefile 21 Jan 2012 17:38:20 -0000 1.7 +++ www/p5-LWP-Authen-Wsse/Makefile 1 Mar 2012 22:51:52 -0000 @@ -22,10 +22,4 @@ MAN3= LWP::Authen::Wsse.3 -.include - -.if ${PERL_LEVEL} < 500805 -BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 -.endif - -.include +.include Index: www/p5-Markup-Perl/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Markup-Perl/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- www/p5-Markup-Perl/Makefile 20 Jun 2011 09:22:11 -0000 1.4 +++ www/p5-Markup-Perl/Makefile 1 Mar 2012 22:51:57 -0000 @@ -21,10 +21,4 @@ MAN3= Markup::Perl.3 -.include - -.if ${PERL_LEVEL} < 500805 -RUN_DEPENDS= ${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm -.endif - -.include +.include Index: www/p5-MojoMojo/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-MojoMojo/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- www/p5-MojoMojo/Makefile 7 Oct 2011 11:22:46 -0000 1.13 +++ www/p5-MojoMojo/Makefile 1 Mar 2012 22:52:06 -0000 @@ -243,11 +243,4 @@ RUN_DEPENDS+= p5-Text-Emoticon-MSN>=0:${PORTSDIR}/textproc/p5-Text-Emoticon-MSN .endif -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-Encode>=2.31:${PORTSDIR}/converters/p5-Encode \ - p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: www/p5-Mojolicious/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Mojolicious/Makefile,v retrieving revision 1.20 diff -u -r1.20 Makefile --- www/p5-Mojolicious/Makefile 22 Feb 2012 18:12:38 -0000 1.20 +++ www/p5-Mojolicious/Makefile 1 Mar 2012 22:58:16 -0000 @@ -18,7 +18,7 @@ LICENSE_FILES= ${WRKSRC}/LICENSE -PERL_CONFIGURE= 5.10.1+ +PERL_CONFIGURE= yes MAN1= hypnotoad.1 \ mojo.1 \ Index: www/p5-Mojolicious-Plugin-Database/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Mojolicious-Plugin-Database/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- www/p5-Mojolicious-Plugin-Database/Makefile 16 Jun 2011 17:42:51 -0000 1.2 +++ www/p5-Mojolicious-Plugin-Database/Makefile 1 Mar 2012 22:52:12 -0000 @@ -25,10 +25,4 @@ MAN3= Mojolicious::Plugin::Database.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: www/p5-Mojolicious-Plugin-Mongodb/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Mojolicious-Plugin-Mongodb/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- www/p5-Mojolicious-Plugin-Mongodb/Makefile 16 Jun 2011 18:03:47 -0000 1.2 +++ www/p5-Mojolicious-Plugin-Mongodb/Makefile 1 Mar 2012 22:52:18 -0000 @@ -25,10 +25,4 @@ MAN3= Mojolicious::Plugin::Mongodb.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: www/p5-Net-FreshBooks-API/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Net-FreshBooks-API/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- www/p5-Net-FreshBooks-API/Makefile 21 Oct 2011 02:42:03 -0000 1.9 +++ www/p5-Net-FreshBooks-API/Makefile 1 Mar 2012 22:52:24 -0000 @@ -55,10 +55,6 @@ .include -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-Module-Build>=0.3601:${PORTSDIR}/devel/p5-Module-Build -.endif - .if ${PERL_LEVEL} < 501400 RUN_DEPENDS+= p5-parent>=0.224:${PORTSDIR}/devel/p5-parent TEST_DEPENDS+= p5-Test-Simple>=0.98:${PORTSDIR}/devel/p5-Test-Simple Index: www/p5-Perlanet/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Perlanet/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- www/p5-Perlanet/Makefile 20 Jun 2011 09:22:12 -0000 1.3 +++ www/p5-Perlanet/Makefile 1 Mar 2012 22:52:30 -0000 @@ -44,10 +44,4 @@ Perlanet::Trait::Tidy.3 \ Perlanet::Trait::YAMLConfig.3 -.include - -.if ${PERL_LEVEL} < 508000 -RUN_DEPENDS+= p5-Scalar-List-Utils>=0:${PORTSDIR}/lang/p5-Scalar-List-Utils -.endif - -.include +.include Index: www/p5-Plack-Middleware-Expires/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Plack-Middleware-Expires/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- www/p5-Plack-Middleware-Expires/Makefile 9 Mar 2011 16:42:38 -0000 1.1 +++ www/p5-Plack-Middleware-Expires/Makefile 1 Mar 2012 22:52:36 -0000 @@ -22,10 +22,4 @@ MAN3= Plack::Middleware::Expires.3 -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: www/p5-Plack-Middleware-XForwardedFor/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Plack-Middleware-XForwardedFor/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- www/p5-Plack-Middleware-XForwardedFor/Makefile 12 Dec 2011 10:19:32 -0000 1.2 +++ www/p5-Plack-Middleware-XForwardedFor/Makefile 1 Mar 2012 22:52:43 -0000 @@ -23,11 +23,4 @@ MAN3= Plack::Middleware::XForwardedFor.3 -.include - -.if ${PERL_LEVEL} < 501200 -BUILD_DEPENDS+= p5-parent>=0.223:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0.223:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: www/p5-Plack-Test-ExternalServer/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Plack-Test-ExternalServer/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- www/p5-Plack-Test-ExternalServer/Makefile 27 Aug 2011 10:50:25 -0000 1.1 +++ www/p5-Plack-Test-ExternalServer/Makefile 1 Mar 2012 22:52:49 -0000 @@ -28,10 +28,4 @@ MAN3= Plack::Test::ExternalServer.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.89:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: www/p5-Pod-Site/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Pod-Site/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- www/p5-Pod-Site/Makefile 22 Jul 2011 21:12:30 -0000 1.3 +++ www/p5-Pod-Site/Makefile 1 Mar 2012 22:52:58 -0000 @@ -40,15 +40,4 @@ p5-Test-Pod-Coverage>=1.06:${PORTSDIR}/devel/p5-Test-Pod-Coverage .endif -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-File-Path>=2.07:${PORTSDIR}/devel/p5-File-Path -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.if ${PERL_LEVEL} < 501200 -RUN_DEPENDS+= p5-Pod-Simple>=3.12:${PORTSDIR}/textproc/p5-Pod-Simple -.endif - -.include +.include Index: www/p5-Router-Simple/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Router-Simple/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- www/p5-Router-Simple/Makefile 2 Dec 2011 06:31:04 -0000 1.1 +++ www/p5-Router-Simple/Makefile 1 Mar 2012 22:53:04 -0000 @@ -26,12 +26,4 @@ Router::Simple::Route.3 \ Router::Simple::SubMapper.3 -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: www/p5-Tatsumaki/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Tatsumaki/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- www/p5-Tatsumaki/Makefile 12 Jan 2012 03:15:35 -0000 1.6 +++ www/p5-Tatsumaki/Makefile 1 Mar 2012 22:53:10 -0000 @@ -35,10 +35,4 @@ MAN3= Tatsumaki.3 \ Tatsumaki::MessageQueue.3 -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: www/p5-URI-Fetch/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-URI-Fetch/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- www/p5-URI-Fetch/Makefile 1 Dec 2011 10:40:55 -0000 1.15 +++ www/p5-URI-Fetch/Makefile 1 Mar 2012 22:53:30 -0000 @@ -28,13 +28,7 @@ MAN3= URI::Fetch.3 \ URI::Fetch::Response.3 -.include - -.if !defined(WITHOUT_ZLIB) -. if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -. endif -.endif +.include .if defined(WITH_CACHE) RUN_DEPENDS+= p5-Cache>=0:${PORTSDIR}/devel/p5-Cache @@ -43,4 +37,4 @@ post-patch: ${PERL} -pi -e '$$_ = "" if m|auto_install|' ${WRKSRC}/Makefile.PL -.include +.include Index: www/p5-URI-Title/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-URI-Title/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- www/p5-URI-Title/Makefile 7 Sep 2011 09:45:50 -0000 1.4 +++ www/p5-URI-Title/Makefile 1 Mar 2012 22:53:57 -0000 @@ -15,22 +15,15 @@ MAINTAINER= tobez@FreeBSD.org COMMENT= Get the titles of things on the web in a sensible way -COMMON_DEPENDS= p5-File-Type>=0.22:${PORTSDIR}/devel/p5-File-Type \ +BUILD_DEPENDS= p5-File-Type>=0.22:${PORTSDIR}/devel/p5-File-Type \ p5-HTML-Parser>=3.45:${PORTSDIR}/www/p5-HTML-Parser \ p5-Image-Size>0:${PORTSDIR}/graphics/p5-Image-Size \ p5-MP3-Info>0:${PORTSDIR}/audio/p5-MP3-Info \ p5-libwww>0:${PORTSDIR}/www/p5-libwww -BUILD_DEPENDS= ${COMMON_DEPENDS} -RUN_DEPENDS= ${COMMON_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes MAN3= URI::Title.3 -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Module-Pluggable>=1.2:${PORTSDIR}/devel/p5-Module-Pluggable -.endif - -.include +.include Index: www/p5-WWW-AtMovies-TV/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-WWW-AtMovies-TV/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- www/p5-WWW-AtMovies-TV/Makefile 8 Sep 2011 13:20:15 -0000 1.5 +++ www/p5-WWW-AtMovies-TV/Makefile 1 Mar 2012 22:54:09 -0000 @@ -19,16 +19,10 @@ RUN_DEPENDS= p5-HTML-TableExtract>=2.1:${PORTSDIR}/www/p5-HTML-TableExtract \ p5-Moose>=0.55:${PORTSDIR}/devel/p5-Moose \ p5-WWW-Mechanize>=1.34:${PORTSDIR}/www/p5-WWW-Mechanize -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes MAN3= WWW::AtMovies::TV.3 -.include - -.if ${PERL_LEVEL} < 501001 -RUN_DEPENDS+= p5-version>=0.76:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: www/p5-WWW-Baseball-NPB/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-WWW-Baseball-NPB/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- www/p5-WWW-Baseball-NPB/Makefile 21 Jan 2012 17:39:18 -0000 1.5 +++ www/p5-WWW-Baseball-NPB/Makefile 1 Mar 2012 22:54:15 -0000 @@ -21,10 +21,4 @@ MAN3= WWW::Baseball::NPB.3 WWW::Baseball::NPB::Game.3 -.include - -.if ${PERL_LEVEL} < 500805 -BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 -.endif - -.include +.include Index: www/p5-WWW-Contact/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-WWW-Contact/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- www/p5-WWW-Contact/Makefile 9 Nov 2011 09:11:13 -0000 1.6 +++ www/p5-WWW-Contact/Makefile 1 Mar 2012 22:54:22 -0000 @@ -49,10 +49,4 @@ WWW::Contact::Rediffmail.3 \ WWW::Contact::Yahoo.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.90:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: www/p5-WWW-Facebook-API/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-WWW-Facebook-API/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- www/p5-WWW-Facebook-API/Makefile 30 Jun 2011 08:22:17 -0000 1.12 +++ www/p5-WWW-Facebook-API/Makefile 1 Mar 2012 22:54:28 -0000 @@ -53,10 +53,4 @@ WWW::Facebook::API::Users.3 \ WWW::Facebook::API::Video.3 -.include - -.if ${PERL_LEVEL} < 501000 -RUN_DEPENDS+= p5-version>=0:${PORTSDIR}/devel/p5-version -.endif - -.include +.include Index: www/p5-WWW-Mechanize-GZip/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-WWW-Mechanize-GZip/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- www/p5-WWW-Mechanize-GZip/Makefile 21 Sep 2010 07:56:43 -0000 1.4 +++ www/p5-WWW-Mechanize-GZip/Makefile 1 Mar 2012 22:54:34 -0000 @@ -22,11 +22,4 @@ MAN3= WWW::Mechanize::GZip.3 -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -BUILD_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: www/p5-WWW-Mechanize-Pluggable/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-WWW-Mechanize-Pluggable/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- www/p5-WWW-Mechanize-Pluggable/Makefile 30 Dec 2011 18:13:13 -0000 1.12 +++ www/p5-WWW-Mechanize-Pluggable/Makefile 1 Mar 2012 22:54:41 -0000 @@ -33,10 +33,4 @@ WWW::Mechanize::Plugin::Cookbook.3 \ WWW::Mechanize::Plugin::HelloWorld.3 -.include - -.if ${PERL_LEVEL} < 500809 -RUN_DEPENDS+= p5-Module-Pluggable>=0:${PORTSDIR}/devel/p5-Module-Pluggable -.endif - -.include +.include Index: www/p5-WWW-Mechanize-Shell/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-WWW-Mechanize-Shell/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- www/p5-WWW-Mechanize-Shell/Makefile 8 Jan 2012 13:48:04 -0000 1.19 +++ www/p5-WWW-Mechanize-Shell/Makefile 1 Mar 2012 22:54:49 -0000 @@ -52,11 +52,4 @@ @${ECHO_MSG} "===> Documentation installed in ${EXAMPLESDIR}." .endif -.include - -.if ${PERL_LEVEL} < 501001 -BUILD_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -RUN_DEPENDS+= p5-parent>=0:${PORTSDIR}/devel/p5-parent -.endif - -.include +.include Index: www/p5-WWW-Plurk/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-WWW-Plurk/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- www/p5-WWW-Plurk/Makefile 17 Sep 2009 13:18:56 -0000 1.3 +++ www/p5-WWW-Plurk/Makefile 1 Mar 2012 22:55:03 -0000 @@ -20,7 +20,7 @@ p5-JSON>=2.00:${PORTSDIR}/converters/p5-JSON \ p5-Math-Base36>=0:${PORTSDIR}/math/p5-Math-Base36 \ p5-libwww>=0:${PORTSDIR}/www/p5-libwww -BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS:= ${RUN_DEPENDS} BUILD_DEPENDS+= p5-Test-Deep>=0:${PORTSDIR}/devel/p5-Test-Deep PERL_CONFIGURE= yes @@ -30,10 +30,4 @@ post-patch: ${FIND} ${WRKSRC} -name "*.orig" -delete -.include - -.if ${PERL_LEVEL} < 500905 -RUN_DEPENDS+= p5-Time-Piece>=0:${PORTSDIR}/devel/p5-Time-Piece -.endif - -.include +.include Index: www/p5-WWW-iTunesConnect/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-WWW-iTunesConnect/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- www/p5-WWW-iTunesConnect/Makefile 24 Sep 2010 00:18:34 -0000 1.5 +++ www/p5-WWW-iTunesConnect/Makefile 1 Mar 2012 22:55:17 -0000 @@ -14,7 +14,7 @@ DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} MAINTAINER= bfoz@bfoz.net -COMMENT= Client interface for Apple's iTunes Connect service +COMMENT= Client interface for Apples iTunes Connect service RUN_DEPENDS= p5-HTML-Tree>=0:${PORTSDIR}/www/p5-HTML-Tree \ p5-libwww>=5.829:${PORTSDIR}/www/p5-libwww \ @@ -31,10 +31,4 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW/iTunesConnect \ %%SITE_PERL%%/%%PERL_ARCH%%/auto/WWW -.include - -.if ${PERL_LEVEL} < 500903 -RUN_DEPENDS+= p5-IO-Compress>=2.017:${PORTSDIR}/archivers/p5-IO-Compress -.endif - -.include +.include Index: x11-toolkits/p5-Alien-wxWidgets/Makefile =================================================================== RCS file: /home/ncvs/ports/x11-toolkits/p5-Alien-wxWidgets/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- x11-toolkits/p5-Alien-wxWidgets/Makefile 17 Sep 2011 06:50:17 -0000 1.12 +++ x11-toolkits/p5-Alien-wxWidgets/Makefile 1 Mar 2012 22:55:33 -0000 @@ -24,10 +24,6 @@ .include -.if ${PERL_LEVEL} < 500809 -BUILD_DEPENDS+= ${SITE_PERL}/Module/Pluggable.pm:${PORTSDIR}/devel/p5-Module-Pluggable -.endif - .if defined(WITH_UNICODE) WX_UNICODE= yes WX_UNI= uni_ Index: x11-toolkits/p5-Tk-Action/Makefile =================================================================== RCS file: /home/ncvs/ports/x11-toolkits/p5-Tk-Action/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- x11-toolkits/p5-Tk-Action/Makefile 10 Oct 2011 03:26:26 -0000 1.1 +++ x11-toolkits/p5-Tk-Action/Makefile 1 Mar 2012 22:58:16 -0000 @@ -24,7 +24,7 @@ p5-MooseX-SemiAffordanceAccessor>=0:${PORTSDIR}/devel/p5-MooseX-SemiAffordanceAccessor \ p5-Tk-Sugar>=0:${PORTSDIR}/x11-toolkits/p5-Tk-Sugar -PERL_CONFIGURE= 5.10.0+ +PERL_CONFIGURE= yes MAN3= Tk::Action.3 Index: x11-toolkits/p5-Tk-Role-Dialog/Makefile =================================================================== RCS file: /home/ncvs/ports/x11-toolkits/p5-Tk-Role-Dialog/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- x11-toolkits/p5-Tk-Role-Dialog/Makefile 10 Oct 2011 03:27:37 -0000 1.1 +++ x11-toolkits/p5-Tk-Role-Dialog/Makefile 1 Mar 2012 22:58:16 -0000 @@ -28,14 +28,8 @@ p5-Tk-Role-HasWidgets>=${PORTVERSION}:${PORTSDIR}/x11-toolkits/p5-Tk-Role-HasWidgets \ p5-Tk-Sugar>=0:${PORTSDIR}/x11-toolkits/p5-Tk-Sugar -PERL_MODBUILD= 5.10.0+ +PERL_MODBUILD= yes MAN3= Tk::Role::Dialog.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: x11-toolkits/p5-Tk-Role-HasWidgets/Makefile =================================================================== RCS file: /home/ncvs/ports/x11-toolkits/p5-Tk-Role-HasWidgets/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- x11-toolkits/p5-Tk-Role-HasWidgets/Makefile 10 Oct 2011 03:23:56 -0000 1.1 +++ x11-toolkits/p5-Tk-Role-HasWidgets/Makefile 1 Mar 2012 22:58:16 -0000 @@ -20,14 +20,8 @@ RUN_DEPENDS= p5-Moose>=0.92:${PORTSDIR}/devel/p5-Moose \ p5-MooseX-Has-Sugar>=0:${PORTSDIR}/devel/p5-MooseX-Has-Sugar -PERL_MODBUILD= 5.10.0+ +PERL_MODBUILD= yes MAN3= Tk::Role::HasWidgets.3 -.include - -.if ${PERL_LEVEL} < 501001 -TEST_DEPENDS+= p5-Test-Simple>=0.88:${PORTSDIR}/devel/p5-Test-Simple -.endif - -.include +.include Index: x11-toolkits/p5-Wx-Perl-ProcessStream/Makefile =================================================================== RCS file: /home/ncvs/ports/x11-toolkits/p5-Wx-Perl-ProcessStream/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- x11-toolkits/p5-Wx-Perl-ProcessStream/Makefile 16 May 2010 09:19:40 -0000 1.11 +++ x11-toolkits/p5-Wx-Perl-ProcessStream/Makefile 1 Mar 2012 22:55:59 -0000 @@ -25,10 +25,4 @@ MAN3= Wx::Perl::ProcessStream.3 -.include - -.if ${PERL_LEVEL} < 501000 -BUILD_DEPENDS+= p5-Archive-Tar>=0:${PORTSDIR}/archivers/p5-Archive-Tar -.endif - -.include +.include --- 10-CURRENT-amd64-perl ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 03:34:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0F388106566B; Fri, 2 Mar 2012 03:34:21 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D9AF18FC0A; Fri, 2 Mar 2012 03:34:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q223YKZX036448; Fri, 2 Mar 2012 03:34:20 GMT (envelope-from pgollucci@freefall.freebsd.org) Received: (from pgollucci@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q223YKGJ036444; Fri, 2 Mar 2012 03:34:20 GMT (envelope-from pgollucci) Date: Fri, 2 Mar 2012 03:34:20 GMT Message-Id: <201203020334.q223YKGJ036444@freefall.freebsd.org> To: pgollucci@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pgollucci@FreeBSD.org From: pgollucci@FreeBSD.org Cc: Subject: Re: ports/165605: [exp-run]: remove ports broken with < perl 5.12, cleanup PERL_LEVEL < perl 5.12, remove regression-test to centralize them 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, 02 Mar 2012 03:34:21 -0000 Synopsis: [exp-run]: remove ports broken with < perl 5.12, cleanup PERL_LEVEL < perl 5.12, remove regression-test to centralize them Responsible-Changed-From-To: freebsd-ports-bugs->pgollucci Responsible-Changed-By: pgollucci Responsible-Changed-When: Fri Mar 2 03:34:20 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165605 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 03:40:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C805B106564A for ; Fri, 2 Mar 2012 03:40:12 +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 A06D18FC0C for ; Fri, 2 Mar 2012 03:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q223eC0A037089 for ; Fri, 2 Mar 2012 03:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q223eCVq037088; Fri, 2 Mar 2012 03:40:12 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 03:40:12 GMT Resent-Message-Id: <201203020340.q223eCVq037088@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, Douglas William Thrift Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5AAA1065676 for ; Fri, 2 Mar 2012 03:38:12 +0000 (UTC) (envelope-from douglas@slowhand.douglasthrift.net) Received: from slowhand.douglasthrift.net (slowhand.douglasthrift.net [69.55.236.40]) by mx1.freebsd.org (Postfix) with ESMTP id A161B8FC0C for ; Fri, 2 Mar 2012 03:38:12 +0000 (UTC) Received: from slowhand.douglasthrift.net (douglas@slowhand.douglasthrift.net [69.55.236.40]) by slowhand.douglasthrift.net (8.14.5/8.14.5) with ESMTP id q223cBbe006967 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Thu, 1 Mar 2012 19:38:12 -0800 (PST) (envelope-from douglas@slowhand.douglasthrift.net) Received: (from douglas@localhost) by slowhand.douglasthrift.net (8.14.5/8.14.5/Submit) id q223cBJt006959; Thu, 1 Mar 2012 19:38:11 -0800 (PST) (envelope-from douglas) Message-Id: <201203020338.q223cBJt006959@slowhand.douglasthrift.net> Date: Thu, 1 Mar 2012 19:38:11 -0800 (PST) From: Douglas William Thrift To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165606: Update port: security/py-keyring Upgrade to 0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Douglas William Thrift List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 03:40:12 -0000 >Number: 165606 >Category: ports >Synopsis: Update port: security/py-keyring Upgrade to 0.8 >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: Fri Mar 02 03:40:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Douglas William Thrift >Release: FreeBSD 8.0-RELEASE-p6 amd64 >Organization: >Environment: System: FreeBSD slowhand.douglasthrift.net 8.0-RELEASE-p6 FreeBSD 8.0-RELEASE-p6 #2: Wed Sep 28 21:40:42 PDT 2011 user@jail8.johncompanies.com:/usr/obj/usr/src/sys/jail8 amd64 >Description: Upgraded security/py-keyring to 0.8. https://redports.org/buildarchive/20120225232347-42641/ >From CHANGES.txt: --- 0.8 --- * Mac OS X keyring backend now uses subprocess calls to the `security` command instead of calling the API, which with the latest updates, no longer allows Python to invoke from a virtualenv. Fixes issue #13. * When using file-based storage, the keyring files are no longer stored in the user's home directory, but are instead stored in platform-friendly locations (`%localappdata%\Python Keyring` on Windows and according to the freedesktop.org Base Dir Specification (`$XDG_DATA_HOME/python_keyring` or `$HOME/.local/share/python_keyring`) on other operating systems). This fixes #21. *Backward Compatibility Notice* Due to the new storage location for file-based keyrings, keyring 0.8 supports backward compatibility by automatically moving the password files to the updated location. In general, users can upgrade to 0.8 and continue to operate normally. Any applications that customize the storage location or make assumptions about the storage location will need to take this change into consideration. Additionally, after upgrading to 0.8, it is not possible to downgrade to 0.7 without manually moving configuration files. In 1.0, the backward compatibilty will be removed. >How-To-Repeat: >Fix: --- py-keyring.2012-02-25T233215Z.diff begins here --- diff -Nrux .svn -x work /usr/ports/security/py-keyring/Makefile py-keyring/Makefile --- /usr/ports/security/py-keyring/Makefile 2012-02-21 13:47:27.000000000 -0800 +++ py-keyring/Makefile 2012-02-25 14:18:23.000000000 -0800 @@ -6,7 +6,7 @@ # PORTNAME= keyring -PORTVERSION= 0.7.1 +PORTVERSION= 0.8 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -Nrux .svn -x work /usr/ports/security/py-keyring/distinfo py-keyring/distinfo --- /usr/ports/security/py-keyring/distinfo 2012-02-21 13:47:27.000000000 -0800 +++ py-keyring/distinfo 2012-02-25 14:18:49.000000000 -0800 @@ -1,2 +1,2 @@ -SHA256 (keyring-0.7.1.zip) = 11487ff2549adfdb1203c113fca56f778aee54e9a0cec2e5d8cbb7289179cf1f -SIZE (keyring-0.7.1.zip) = 40304 +SHA256 (keyring-0.8.zip) = 0880615b5e5250d5a6dc75069a40f40e1234eac3d4ed709022deb0b977d5f5a6 +SIZE (keyring-0.8.zip) = 42532 diff -Nrux .svn -x work /usr/ports/security/py-keyring/pkg-plist py-keyring/pkg-plist --- /usr/ports/security/py-keyring/pkg-plist 2012-02-21 13:47:27.000000000 -0800 +++ py-keyring/pkg-plist 2012-02-25 14:20:59.000000000 -0800 @@ -52,6 +52,12 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/escape.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/escape.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/escape.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/loc_compat.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/loc_compat.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/loc_compat.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/platform.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/platform.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/platform.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/properties.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/properties.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/keyring/util/properties.pyo --- py-keyring.2012-02-25T233215Z.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 03:47:44 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C074B1065673; Fri, 2 Mar 2012 03:47:44 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 985488FC0A; Fri, 2 Mar 2012 03:47:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q223linV045570; Fri, 2 Mar 2012 03:47:44 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q223li6j045566; Fri, 2 Mar 2012 03:47:44 GMT (envelope-from jgh) Date: Fri, 2 Mar 2012 03:47:44 GMT Message-Id: <201203020347.q223li6j045566@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165606: Update port: security/py-keyring Upgrade to 0.8 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, 02 Mar 2012 03:47:44 -0000 Synopsis: Update port: security/py-keyring Upgrade to 0.8 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Fri Mar 2 03:47:44 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165606 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 04:00:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 25CF01065673 for ; Fri, 2 Mar 2012 04:00:30 +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 360728FC16 for ; Fri, 2 Mar 2012 04:00:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2240SJo054336 for ; Fri, 2 Mar 2012 04:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2240SQN054333; Fri, 2 Mar 2012 04:00:28 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 04:00:28 GMT Resent-Message-Id: <201203020400.q2240SQN054333@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, Douglas William Thrift Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A07721065674 for ; Fri, 2 Mar 2012 03:50:53 +0000 (UTC) (envelope-from douglas@douglasthrift.net) Received: from slowhand.douglasthrift.net (slowhand.douglasthrift.net [69.55.236.40]) by mx1.freebsd.org (Postfix) with ESMTP id 618148FC19 for ; Fri, 2 Mar 2012 03:50:53 +0000 (UTC) Received: from localhost (laguna.douglasthrift.net [68.6.64.103]) (authenticated bits=0) by slowhand.douglasthrift.net (8.14.5/8.14.5) with ESMTP id q223omXY040773 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NOT) for ; Thu, 1 Mar 2012 19:50:52 -0800 (PST) (envelope-from douglas@douglasthrift.net) Message-Id: <201203020350.q223omXY040773@slowhand.douglasthrift.net> Date: Thu, 1 Mar 2012 19:50:52 -0800 (PST) From: Douglas William Thrift To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165607: Update port: sysutils/psmisc Upgrade to 22.16 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Douglas William Thrift List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 04:00:30 -0000 >Number: 165607 >Category: ports >Synopsis: Update port: sysutils/psmisc Upgrade to 22.16 >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: Fri Mar 02 04:00:27 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Douglas William Thrift >Release: FreeBSD 8.2-RELEASE-p6 amd64 >Organization: >Environment: System: FreeBSD justonenight.douglasthrift.net 8.2-RELEASE-p6 FreeBSD 8.2-RELEASE-p6 #7: Sun Jan 8 02:49:17 PST 2012 root@justonenight.douglasthrift.net:/usr/obj/usr/src/sys/FURTHERONUPTHEROAD amd64 >Description: Upgraded sysutils/psmisc to 22.16. https://redports.org/buildarchive/20120228041943-39370/ >From ChangeLog: Changes in 22.16 ================ * Use strncpy for COMM_LEN and make it 18 characters to cover brackets in name. * don't change COMM_LEN, it breaks matching long commands Debian #661145 * Enable some harden AM_CFLAGS by default, use configure option --disable-harden-flags to not use it. >How-To-Repeat: >Fix: --- psmisc.2012-03-02T034833Z.diff begins here --- diff -Nrux .svn -x work /usr/ports/sysutils/psmisc/Makefile psmisc/Makefile --- /usr/ports/sysutils/psmisc/Makefile 2012-02-20 20:06:30.000000000 -0800 +++ psmisc/Makefile 2012-02-27 19:10:22.000000000 -0800 @@ -6,7 +6,7 @@ # PORTNAME= psmisc -PORTVERSION= 22.15 +PORTVERSION= 22.16 CATEGORIES= sysutils MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/ diff -Nrux .svn -x work /usr/ports/sysutils/psmisc/distinfo psmisc/distinfo --- /usr/ports/sysutils/psmisc/distinfo 2012-02-20 20:06:30.000000000 -0800 +++ psmisc/distinfo 2012-02-27 19:11:19.436614732 -0800 @@ -1,2 +1,2 @@ -SHA256 (psmisc-22.15.tar.gz) = 5fbe908618d7ccf08164a733a361ce9823355fd0da754e53982d842158973754 -SIZE (psmisc-22.15.tar.gz) = 390766 +SHA256 (psmisc-22.16.tar.gz) = ae426d7238e5353fdf51b1d313897c2bbed0023e66e5b4af2be9cd03d87a9d01 +SIZE (psmisc-22.16.tar.gz) = 465138 --- psmisc.2012-03-02T034833Z.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 04:05:00 2012 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 056C8106564A; Fri, 2 Mar 2012 04:05:00 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D1D908FC14; Fri, 2 Mar 2012 04:04:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2244xa3062878; Fri, 2 Mar 2012 04:04:59 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2244x5o062874; Fri, 2 Mar 2012 04:04:59 GMT (envelope-from jgh) Date: Fri, 2 Mar 2012 04:04:59 GMT Message-Id: <201203020404.q2244x5o062874@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165607: Update port: sysutils/psmisc Upgrade to 22.16 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, 02 Mar 2012 04:05:00 -0000 Synopsis: Update port: sysutils/psmisc Upgrade to 22.16 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Fri Mar 2 04:04:58 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165607 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 04:10:13 2012 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 A1192106566B for ; Fri, 2 Mar 2012 04:10:13 +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 167D78FC14 for ; Fri, 2 Mar 2012 04:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q224ACoL063148 for ; Fri, 2 Mar 2012 04:10:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q224ACYB063147; Fri, 2 Mar 2012 04:10:12 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 04:10:12 GMT Resent-Message-Id: <201203020410.q224ACYB063147@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, "Philip M. Gollucci" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E59E10656D7 for ; Fri, 2 Mar 2012 04:05:15 +0000 (UTC) (envelope-from pgollucci@frieza.p6m7g8.net) Received: from frieza.p6m7g8.net (wsip-174-79-184-239.dc.dc.cox.net [174.79.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id 00E8C8FC15 for ; Fri, 2 Mar 2012 04:05:07 +0000 (UTC) Received: from frieza.p6m7g8.net (localhost [127.0.0.1]) by frieza.p6m7g8.net (8.14.5/8.14.4) with ESMTP id q22457Dj027937 for ; Fri, 2 Mar 2012 04:05:07 GMT (envelope-from pgollucci@frieza.p6m7g8.net) Received: (from pgollucci@localhost) by frieza.p6m7g8.net (8.14.5/8.14.5/Submit) id q224577q027936; Fri, 2 Mar 2012 04:05:07 GMT (envelope-from pgollucci) Message-Id: <201203020405.q224577q027936@frieza.p6m7g8.net> Date: Fri, 2 Mar 2012 04:05:07 GMT From: "Philip M. Gollucci" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165608: [patch]: remove the remaining 6.x conditionals X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Philip M. Gollucci" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 04:10:13 -0000 >Number: 165608 >Category: ports >Synopsis: [patch]: remove the remaining 6.x conditionals >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 04:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Philip M. Gollucci >Release: FreeBSD 10.0-CURRENT amd64 >Organization: RideCharge Inc. >Environment: System: FreeBSD frieza.p6m7g8.net 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r232017M: Thu Feb 23 06:34:14 UTC 2012 root@frieza.p6m7g8.net:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Probably doesn't need a -exp run, but just another set of eyes. make indexes passes >How-To-Repeat: >Fix: --- osversion-6.diff begins here --- Index: emulators/dynamips-community/Makefile =================================================================== RCS file: /home/ncvs/ports/emulators/dynamips-community/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- emulators/dynamips-community/Makefile 10 Nov 2011 05:56:18 -0000 1.3 +++ emulators/dynamips-community/Makefile 2 Mar 2012 03:29:16 -0000 @@ -63,7 +63,7 @@ .endif # It required libpcap version 0.9.4 or is higher. -.if ${OSVERSION} < 602100 || (${OSVERSION} >= 700000 && ${OSVERSION} < 700021) +.if (${OSVERSION} >= 700000 && ${OSVERSION} < 700021) BUILD_DEPENDS+= ${LOCALBASE}/lib/libpcap.a:${PORTSDIR}/net/libpcap MAKE_ENV+= PCAP_LIB=${LOCALBASE}/lib/libpcap.a #.warning Do not overlook, make libpcap with LIBPCAP_OVERWRITE_BASE parameter, for use with shared library. Index: mail/spamilter/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/spamilter/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- mail/spamilter/Makefile 15 Oct 2010 22:12:42 -0000 1.27 +++ mail/spamilter/Makefile 2 Mar 2012 03:29:53 -0000 @@ -57,7 +57,7 @@ LDFLAGS+= -L${LOCALBASE}/lib .endif -.if ${OSVERSION} >= 700015 || (${OSVERSION} < 700000 && ${OSVERSION} >= 601103) +.if ${OSVERSION} >= 700015 CONFIGURE_ARGS+= --have-resn .endif Index: net/ipw-firmware/Makefile =================================================================== RCS file: /home/ncvs/ports/net/ipw-firmware/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- net/ipw-firmware/Makefile 7 Oct 2007 02:56:19 -0000 1.23 +++ net/ipw-firmware/Makefile 2 Mar 2012 03:30:26 -0000 @@ -38,11 +38,7 @@ OPTIONS+= CONTROL "Install ${DRIVERNAME}control(8) utility" on .endif -.if ${OSVERSION} > 600023 OPTIONS+= MODULE "Install ${DRIVERNAME}(4) kernel module (very old snapshot)" off -.else -OPTIONS+= MODULE "Install ${DRIVERNAME}(4) kernel module (very old snapshot)" on -.endif # Override PREFIX to install ${DRIVERNAME}control(8) somewhere we hope it'll # be available soon enough. Index: net/mpd-l2tp-ipv6pd-client/Makefile =================================================================== RCS file: /home/ncvs/ports/net/mpd-l2tp-ipv6pd-client/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- net/mpd-l2tp-ipv6pd-client/Makefile 3 Jun 2011 17:31:55 -0000 1.6 +++ net/mpd-l2tp-ipv6pd-client/Makefile 2 Mar 2012 03:30:43 -0000 @@ -66,7 +66,7 @@ PKGMESSAGE= ${WRKDIR}/pkg-message -.if ${OSVERSION} < 602106 || (${OSVERSION} >= 700000 && ${OSVERSION} < 700031) +.if (${OSVERSION} >= 700000 && ${OSVERSION} < 700031) IGNORE= does not work with old ng_ksocket .endif Index: net-im/libpurple/Makefile =================================================================== RCS file: /home/ncvs/ports/net-im/libpurple/Makefile,v retrieving revision 1.107 diff -u -r1.107 Makefile --- net-im/libpurple/Makefile 10 Dec 2011 22:40:08 -0000 1.107 +++ net-im/libpurple/Makefile 2 Mar 2012 03:30:55 -0000 @@ -93,7 +93,7 @@ .include -.if ${OSVERSION} > 700032 || (${OSVERSION} < 700000 && ${OSVERSION} > 602106) +.if ${OSVERSION} > 700032 || ${OSVERSION} < 700000 CFLAGS+= -D_XOPEN_SOURCE_EXTENDED .endif Index: net-mgmt/spectools/Makefile =================================================================== RCS file: /home/ncvs/ports/net-mgmt/spectools/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- net-mgmt/spectools/Makefile 10 Nov 2011 05:38:31 -0000 1.17 +++ net-mgmt/spectools/Makefile 2 Mar 2012 03:31:24 -0000 @@ -48,9 +48,7 @@ .include -.if ${OSVERSION} < 602101 -IGNORE= is unsupported on systems prior to FreeBSD v602101 -.elif ${OSVERSION} > 700000 && ${OSVERSION} < 700027 +.if ${OSVERSION} > 700000 && ${OSVERSION} < 700027 IGNORE= is unsupported on systems prior to FreeBSD v700027 .endif Index: news/tin/Makefile =================================================================== RCS file: /home/ncvs/ports/news/tin/Makefile,v retrieving revision 1.160 diff -u -r1.160 Makefile --- news/tin/Makefile 15 Feb 2012 13:47:30 -0000 1.160 +++ news/tin/Makefile 2 Mar 2012 03:31:35 -0000 @@ -43,7 +43,7 @@ .include -.if ${OSVERSION} < 602107 || (${OSVERSION} >= 700000 && ${OSVERSION} < 700033) +.if (${OSVERSION} >= 700000 && ${OSVERSION} < 700033) TIN_SCREEN?= ncurses .else TIN_SCREEN?= ncursesw Index: security/ike/Makefile =================================================================== RCS file: /home/ncvs/ports/security/ike/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- security/ike/Makefile 16 Oct 2011 11:07:29 -0000 1.13 +++ security/ike/Makefile 2 Mar 2012 03:32:12 -0000 @@ -68,12 +68,6 @@ . if ${OSVERSION} < 800000 @${ECHO_MSG} "===> -------------------------------------------------------------------------" @${ECHO_MSG} "===> WARNING: You will need to patch your kernel for NAT-T functionality!" -. if ${OSVERSION} < 600000 - @${ECHO_MSG} "===> There is no known NAT-T patch for FreeBSD 1 - 5!!!" -. endif -. if ${OSVERSION} > 600000 && ${OSVERSION} < 699999 - @${ECHO_MSG} "===> http://ipsec-tools.sf.net/freebsd6-natt.diff" -. endif . if ${OSVERSION} > 700000 && ${OSVERSION} < 799999 @${ECHO_MSG} "===> http://people.freebsd.org/~vanhu/NAT-T/patch-natt-7.2-2009-05-12.diff" . endif Index: shells/tcsh_nls/Makefile =================================================================== RCS file: /home/ncvs/ports/shells/tcsh_nls/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- shells/tcsh_nls/Makefile 26 Feb 2006 06:52:04 -0000 1.2 +++ shells/tcsh_nls/Makefile 2 Mar 2012 03:32:22 -0000 @@ -63,7 +63,7 @@ .include -.if (${OSVERSION} >= 700000 && ${OSVERSION} < 700014) || ${OSVERSION} < 600105 +.if (${OSVERSION} >= 700000 && ${OSVERSION} < 700014) IGNORE= needs FreeBSD 6.1 or 7 .endif Index: sysutils/devcpu/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/devcpu/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- sysutils/devcpu/Makefile 18 Nov 2011 23:30:12 -0000 1.14 +++ sysutils/devcpu/Makefile 2 Mar 2012 03:32:32 -0000 @@ -38,10 +38,6 @@ .include -.if ${OSVERSION} < 601000 -IGNORE= not supported -.endif - .if ${OSVERSION} >= 701102 IGNORE= already included into base system .endif Index: www/lynx/Makefile =================================================================== RCS file: /home/ncvs/ports/www/lynx/Makefile,v retrieving revision 1.135 diff -u -r1.135 Makefile --- www/lynx/Makefile 31 May 2010 02:01:27 -0000 1.135 +++ www/lynx/Makefile 2 Mar 2012 03:33:21 -0000 @@ -35,7 +35,7 @@ .include -.if ${OSVERSION} < 602107 || (${OSVERSION} >= 700000 && ${OSVERSION} < 700033) +.if (${OSVERSION} >= 700000 && ${OSVERSION} < 700033) CONFIGURE_ARGS+= --with-screen=ncurses .else CONFIGURE_ARGS+= --with-screen=ncursesw Index: www/lynx-current/Makefile =================================================================== RCS file: /home/ncvs/ports/www/lynx-current/Makefile,v retrieving revision 1.197 diff -u -r1.197 Makefile --- www/lynx-current/Makefile 3 Sep 2011 12:00:52 -0000 1.197 +++ www/lynx-current/Makefile 2 Mar 2012 03:33:27 -0000 @@ -42,7 +42,7 @@ .include -.if ${OSVERSION} < 602107 || (${OSVERSION} >= 700000 && ${OSVERSION} < 700033) +.if (${OSVERSION} >= 700000 && ${OSVERSION} < 700033) CONFIGURE_ARGS+= --with-screen=ncurses .else CONFIGURE_ARGS+= --with-screen=ncursesw --- osversion-6.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 04:19:03 2012 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 9276D106566C; Fri, 2 Mar 2012 04:19:03 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6A3FE8FC0C; Fri, 2 Mar 2012 04:19:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q224J3GB073065; Fri, 2 Mar 2012 04:19:03 GMT (envelope-from pgollucci@freefall.freebsd.org) Received: (from pgollucci@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q224J3wk073060; Fri, 2 Mar 2012 04:19:03 GMT (envelope-from pgollucci) Date: Fri, 2 Mar 2012 04:19:03 GMT Message-Id: <201203020419.q224J3wk073060@freefall.freebsd.org> To: pgollucci@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pgollucci@FreeBSD.org From: pgollucci@FreeBSD.org Cc: Subject: Re: ports/165608: [patch]: remove the remaining 6.x conditionals 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, 02 Mar 2012 04:19:03 -0000 Synopsis: [patch]: remove the remaining 6.x conditionals Responsible-Changed-From-To: freebsd-ports-bugs->pgollucci Responsible-Changed-By: pgollucci Responsible-Changed-When: Fri Mar 2 04:19:02 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165608 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 04:40:11 2012 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 03BF5106564A for ; Fri, 2 Mar 2012 04:40:11 +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 D2A328FC15 for ; Fri, 2 Mar 2012 04:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q224eAau092781 for ; Fri, 2 Mar 2012 04:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q224eAAE092780; Fri, 2 Mar 2012 04:40:10 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 04:40:10 GMT Resent-Message-Id: <201203020440.q224eAAE092780@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, "Philip M. Gollucci" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5A8C01065673 for ; Fri, 2 Mar 2012 04:39:38 +0000 (UTC) (envelope-from pgollucci@frieza.p6m7g8.net) Received: from frieza.p6m7g8.net (wsip-174-79-184-239.dc.dc.cox.net [174.79.184.239]) by mx1.freebsd.org (Postfix) with ESMTP id F105E8FC0C for ; Fri, 2 Mar 2012 04:39:37 +0000 (UTC) Received: from frieza.p6m7g8.net (localhost [127.0.0.1]) by frieza.p6m7g8.net (8.14.5/8.14.4) with ESMTP id q224dbkc033275 for ; Fri, 2 Mar 2012 04:39:37 GMT (envelope-from pgollucci@frieza.p6m7g8.net) Received: (from pgollucci@localhost) by frieza.p6m7g8.net (8.14.5/8.14.5/Submit) id q224daRi033274; Fri, 2 Mar 2012 04:39:37 GMT (envelope-from pgollucci) Message-Id: <201203020439.q224daRi033274@frieza.p6m7g8.net> Date: Fri, 2 Mar 2012 04:39:37 GMT From: "Philip M. Gollucci" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165609: DISTNAME= PORTNAME-PORTVERSION is not needed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Philip M. Gollucci" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 04:40:11 -0000 >Number: 165609 >Category: ports >Synopsis: DISTNAME= PORTNAME-PORTVERSION is not needed >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 04:40:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Philip M. Gollucci >Release: FreeBSD 10.0-CURRENT amd64 >Organization: RideCharge Inc. >Environment: >Description: Checked by make makesum which resulted in no deltas >How-To-Repeat: >Fix: --- dn begins here --- Index: audio/autotalent/Makefile =================================================================== RCS file: /home/ncvs/ports/audio/autotalent/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- audio/autotalent/Makefile 14 Apr 2011 06:34:30 -0000 1.2 +++ audio/autotalent/Makefile 2 Mar 2012 04:28:11 -0000 @@ -8,7 +8,6 @@ PORTVERSION= 0.2 CATEGORIES= audio MASTER_SITES= http://web.mit.edu/tbaran/www/ -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= r.neese@gmail.com COMMENT= A real-time pitch correction plugin for ladspa Index: databases/py-couchdb/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/py-couchdb/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- databases/py-couchdb/Makefile 19 Mar 2011 19:04:21 -0000 1.1 +++ databases/py-couchdb/Makefile 2 Mar 2012 04:28:11 -0000 @@ -10,7 +10,6 @@ CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= ${PORTNAME}-${PORTVERSION} DIST_SUBDIR= python MAINTAINER= niwi@niwi.be Index: devel/bsdlibdwarf/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/bsdlibdwarf/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- devel/bsdlibdwarf/Makefile 16 Jan 2012 21:11:10 -0000 1.2 +++ devel/bsdlibdwarf/Makefile 2 Mar 2012 04:28:11 -0000 @@ -10,7 +10,6 @@ CATEGORIES= devel MASTER_SITES= ftp://ftp.lysator.liu.se/%SUBDIR%/ MASTER_SITE_SUBDIR= pub/${PORTNAME} -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= zeising@daemonic.se COMMENT= BSD licensed implementation of libdwarf Index: devel/eric4/Makefile =================================================================== RCS file: /home/ncvs/ports/devel/eric4/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- devel/eric4/Makefile 21 Jan 2012 17:37:07 -0000 1.18 +++ devel/eric4/Makefile 2 Mar 2012 04:28:11 -0000 @@ -6,7 +6,6 @@ # CATEGORIES= devel python -DISTNAME= ${PORTNAME}-${PORTVERSION} LICENSE_FILE= ${WRKSRC}/LICENSE.GPL3 Index: net/hostapd/Makefile =================================================================== RCS file: /home/ncvs/ports/net/hostapd/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- net/hostapd/Makefile 10 Nov 2011 05:38:31 -0000 1.3 +++ net/hostapd/Makefile 2 Mar 2012 04:28:11 -0000 @@ -9,7 +9,6 @@ PORTVERSION= 0.7.3 CATEGORIES= net MASTER_SITES= http://hostap.epitest.fi/releases/ -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= leres@ee.lbl.gov COMMENT= IEEE 802.11 AP, IEEE 802.1X/WPA/WPA2/EAP/RADIUS Authenticator Index: net/relayd/Makefile =================================================================== RCS file: /home/ncvs/ports/net/relayd/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- net/relayd/Makefile 7 Sep 2011 12:14:40 -0000 1.19 +++ net/relayd/Makefile 2 Mar 2012 04:28:11 -0000 @@ -17,7 +17,6 @@ LICENSE= BSD -DISTNAME= ${PORTNAME}-${PORTVERSION} USE_BZIP2= yes MANCOMPRESSED= yes Index: net/torsocks/Makefile =================================================================== RCS file: /home/ncvs/ports/net/torsocks/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- net/torsocks/Makefile 27 Jan 2012 17:36:58 -0000 1.11 +++ net/torsocks/Makefile 2 Mar 2012 04:28:11 -0000 @@ -9,7 +9,6 @@ CATEGORIES= net security MASTER_SITES= GOOGLE_CODE \ http://tor.reactor-xg.kiev.ua/files/ -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= andy.lavr@gmail.com COMMENT= Most SOCKS-friendly applications way with Tor Index: sysutils/downtimed/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/downtimed/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- sysutils/downtimed/Makefile 30 May 2011 20:12:07 -0000 1.3 +++ sysutils/downtimed/Makefile 2 Mar 2012 04:28:11 -0000 @@ -10,7 +10,6 @@ CATEGORIES= sysutils MASTER_SITES= http://dist.epipe.com/${PORTNAME}/ \ http://launchpadlibrarian.net/65433766/ -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= snabb@epipe.com COMMENT= System downtime monitoring and reporting tool Index: sysutils/nvramtool/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/nvramtool/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- sysutils/nvramtool/Makefile 18 Mar 2011 05:06:07 -0000 1.1 +++ sysutils/nvramtool/Makefile 2 Mar 2012 04:28:11 -0000 @@ -9,7 +9,6 @@ PORTVERSION= r6440 CATEGORIES= sysutils MASTER_SITES= http://www.zonov.org/${PORTNAME}/ -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= andrey@zonov.org COMMENT= A utility for reading, writing the contents of CMOS memory Index: www/fusionpbx/Makefile =================================================================== RCS file: /home/ncvs/ports/www/fusionpbx/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- www/fusionpbx/Makefile 31 Jan 2011 15:35:20 -0000 1.1 +++ www/fusionpbx/Makefile 2 Mar 2012 04:28:11 -0000 @@ -10,7 +10,6 @@ CATEGORIES= www MASTER_SITES= http://www.fusionpbx.com/downloads/ \ ${MASTER_SITE_GOOGLE_CODE} -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= r.neese@gmail.com COMMENT= Fusionpbx PHP5 Graphical User Interface for FreeSwitch Index: www/grails/Makefile =================================================================== RCS file: /home/ncvs/ports/www/grails/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- www/grails/Makefile 28 Dec 2010 07:52:41 -0000 1.12 +++ www/grails/Makefile 2 Mar 2012 04:28:11 -0000 @@ -10,7 +10,6 @@ CATEGORIES= www java MASTER_SITES= http://dist.codehaus.org/grails/ \ http://dist.springframework.org.s3.amazonaws.com/release/GRAILS/ -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= mjs@bur.st COMMENT= Web framework built on Groovy Index: www/p5-Mojolicious-Plugin-Database/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Mojolicious-Plugin-Database/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- www/p5-Mojolicious-Plugin-Database/Makefile 16 Jun 2011 17:42:51 -0000 1.2 +++ www/p5-Mojolicious-Plugin-Database/Makefile 2 Mar 2012 04:28:11 -0000 @@ -10,7 +10,6 @@ CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= perl@FreeBSD.org COMMENT= Handling of DBI based connections in Mojolicious Index: www/p5-Mojolicious-Plugin-Mongodb/Makefile =================================================================== RCS file: /home/ncvs/ports/www/p5-Mojolicious-Plugin-Mongodb/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- www/p5-Mojolicious-Plugin-Mongodb/Makefile 16 Jun 2011 18:03:47 -0000 1.2 +++ www/p5-Mojolicious-Plugin-Mongodb/Makefile 2 Mar 2012 04:28:11 -0000 @@ -10,7 +10,6 @@ CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= perl@FreeBSD.org COMMENT= Use MongoDB in Mojolicious Index: www/xoops/Makefile =================================================================== RCS file: /home/ncvs/ports/www/xoops/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- www/xoops/Makefile 26 Dec 2011 06:27:31 -0000 1.14 +++ www/xoops/Makefile 2 Mar 2012 04:28:11 -0000 @@ -9,7 +9,6 @@ PORTVERSION= 2.5.4 CATEGORIES= www MASTER_SITES= SF/${PORTNAME}/XOOPS%20Core%20%28stable%20releases%29/XOOPS_${PORTVERSION} -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= wen@FreeBSD.org COMMENT= A Dynamic Web CMS Index: x11-wm/e17-module-eooorg/Makefile =================================================================== RCS file: /home/ncvs/ports/x11-wm/e17-module-eooorg/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- x11-wm/e17-module-eooorg/Makefile 11 Aug 2011 19:20:10 -0000 1.3 +++ x11-wm/e17-module-eooorg/Makefile 2 Mar 2012 04:28:11 -0000 @@ -10,7 +10,6 @@ CATEGORIES= x11-wm enlightenment MASTER_SITES= http://files.roorback.net/e17/2011-01-29/modules/ PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= magik@roorback.net COMMENT= OpenOffice.org preload module for e17 Index: x11-wm/e17-module-itask/Makefile =================================================================== RCS file: /home/ncvs/ports/x11-wm/e17-module-itask/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- x11-wm/e17-module-itask/Makefile 11 Aug 2011 19:20:12 -0000 1.2 +++ x11-wm/e17-module-itask/Makefile 2 Mar 2012 04:28:11 -0000 @@ -10,7 +10,6 @@ CATEGORIES= x11-wm enlightenment MASTER_SITES= http://files.roorback.net/e17/2011-01-29/modules/ PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= magik@roorback.net COMMENT= MS Windows like taskbar module for e17 Index: x11-wm/e17-module-itask-ng/Makefile =================================================================== RCS file: /home/ncvs/ports/x11-wm/e17-module-itask-ng/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- x11-wm/e17-module-itask-ng/Makefile 11 Aug 2011 19:20:12 -0000 1.4 +++ x11-wm/e17-module-itask-ng/Makefile 2 Mar 2012 04:28:11 -0000 @@ -10,7 +10,6 @@ CATEGORIES= x11-wm enlightenment MASTER_SITES= http://files.roorback.net/e17/2011-01-29/modules/ PKGNAMEPREFIX= e17-module- -DISTNAME= ${PORTNAME}-${PORTVERSION} MAINTAINER= magik@roorback.net COMMENT= MacOS X like taskbar module for e17 --- dn ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 04:41:02 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0DDCB1065670; Fri, 2 Mar 2012 04:41:02 +0000 (UTC) (envelope-from pgollucci@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D9CFC8FC08; Fri, 2 Mar 2012 04:41:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q224f1s6096140; Fri, 2 Mar 2012 04:41:01 GMT (envelope-from pgollucci@freefall.freebsd.org) Received: (from pgollucci@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q224f1aa096131; Fri, 2 Mar 2012 04:41:01 GMT (envelope-from pgollucci) Date: Fri, 2 Mar 2012 04:41:01 GMT Message-Id: <201203020441.q224f1aa096131@freefall.freebsd.org> To: pgollucci@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pgollucci@FreeBSD.org From: pgollucci@FreeBSD.org Cc: Subject: Re: ports/165609: DISTNAME= PORTNAME-PORTVERSION is not needed 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, 02 Mar 2012 04:41:02 -0000 Synopsis: DISTNAME= PORTNAME-PORTVERSION is not needed Responsible-Changed-From-To: freebsd-ports-bugs->pgollucci Responsible-Changed-By: pgollucci Responsible-Changed-When: Fri Mar 2 04:41:01 UTC 2012 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165609 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 06:07:27 2012 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 DF7871065672; Fri, 2 Mar 2012 06:07:27 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B78258FC08; Fri, 2 Mar 2012 06:07:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2267RQk073655; Fri, 2 Mar 2012 06:07:27 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2267Rte073651; Fri, 2 Mar 2012 06:07:27 GMT (envelope-from wen) Date: Fri, 2 Mar 2012 06:07:27 GMT Message-Id: <201203020607.q2267Rte073651@freefall.freebsd.org> To: chalpin@cs.wisc.edu, wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wen@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/165598: [patch] upgrade sysutils/dvdisaster to 0.72.3 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, 02 Mar 2012 06:07:28 -0000 Synopsis: [patch] upgrade sysutils/dvdisaster to 0.72.3 Responsible-Changed-From-To: freebsd-ports-bugs->wen Responsible-Changed-By: wen Responsible-Changed-When: Fri Mar 2 06:07:27 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165598 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 06:40:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1BAFB106564A for ; Fri, 2 Mar 2012 06:40:10 +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 CED758FC13 for ; Fri, 2 Mar 2012 06:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q226e9b7003289 for ; Fri, 2 Mar 2012 06:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q226e9mm003288; Fri, 2 Mar 2012 06:40:09 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 06:40:09 GMT Resent-Message-Id: <201203020640.q226e9mm003288@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, Seiji Ariga Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 833AC106566B for ; Fri, 2 Mar 2012 06:35:30 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 731B68FC16 for ; Fri, 2 Mar 2012 06:35:30 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q226ZUos002261 for ; Fri, 2 Mar 2012 06:35:30 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q226ZUlv002260; Fri, 2 Mar 2012 06:35:30 GMT (envelope-from nobody) Message-Id: <201203020635.q226ZUlv002260@red.freebsd.org> Date: Fri, 2 Mar 2012 06:35:30 GMT From: Seiji Ariga To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165611: www/emacs-w3m is broken with "WITHOUT_SHIMBUN" 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, 02 Mar 2012 06:40:10 -0000 >Number: 165611 >Category: ports >Synopsis: www/emacs-w3m is broken with "WITHOUT_SHIMBUN" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 06:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Seiji Ariga >Release: FreeBSD-9.0 >Organization: >Environment: FreeBSD decoy.khaotic.net 9.0-STABLE FreeBSD 9.0-STABLE #0: Wed Feb 15 03:10:24 EST 2012 root@host.khaotic.net:/usr/obj/usr/src/sys/HOST amd64 >Description: When you try to compile www/emacs-w3m with "WITHOUT_SHIMBUN" set, it fails. >How-To-Repeat: /usr/ports/www/emacs-w3m$ sudo make ===> License GPLv2 accepted by the user ===> Extracting for emacs-w3m-emacs23-1.4.423.b.20101224_4 => SHA256 Checksum OK for emacs-w3m-1.4.423-20101224.tar.bz2. ===> Patching for emacs-w3m-emacs23-1.4.423.b.20101224_4 ===> Applying extra patch /usr/ports/www/emacs-w3m/files/extra-patch-Makefile.in cannot open /usr/ports/www/emacs-w3m/files/extra-patch-Makefile.in: No such file or directory*** Error code 2 Stop in /usr/ports/www/emacs-w3m. >Fix: --- www/emacs-w3m/Makefile.orig 2012-03-02 01:27:35.000000000 -0500 +++ www/emacs-w3m/Makefile 2012-03-02 01:27:26.000000000 -0500 @@ -49,7 +49,6 @@ DOCSDIR_JA= ${PREFIX}/share/doc/ja/${PORTNAME} .if defined(WITHOUT_SHIMBUN) -EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-Makefile.in SHIMBUN= "@comment " WITHOUT_OCTET_VIEWER= yes .else >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 06:40:53 2012 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 6564D1065672; Fri, 2 Mar 2012 06:40:53 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3D8288FC0A; Fri, 2 Mar 2012 06:40:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q226erXV005333; Fri, 2 Mar 2012 06:40:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q226ervN005327; Fri, 2 Mar 2012 06:40:53 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 06:40:53 GMT Message-Id: <201203020640.q226ervN005327@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nobutaka@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165611: www/emacs-w3m is broken with "WITHOUT_SHIMBUN" 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, 02 Mar 2012 06:40:53 -0000 Synopsis: www/emacs-w3m is broken with "WITHOUT_SHIMBUN" Responsible-Changed-From-To: freebsd-ports-bugs->nobutaka Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 06:40:52 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165611 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 06:41:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A3B321065751; Fri, 2 Mar 2012 06:41:07 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7A06F8FC18; Fri, 2 Mar 2012 06:41:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q226f7AR006645; Fri, 2 Mar 2012 06:41:07 GMT (envelope-from wen@freefall.freebsd.org) Received: (from wen@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q226f7Sb006636; Fri, 2 Mar 2012 06:41:07 GMT (envelope-from wen) Date: Fri, 2 Mar 2012 06:41:07 GMT Message-Id: <201203020641.q226f7Sb006636@freefall.freebsd.org> To: emikulic@gmail.com, wen@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: wen@FreeBSD.org Cc: Subject: Re: ports/165578: [patch] Update port: net-mgmt/darkstat to 3.0.715 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, 02 Mar 2012 06:41:07 -0000 Synopsis: [patch] Update port: net-mgmt/darkstat to 3.0.715 State-Changed-From-To: open->closed State-Changed-By: wen State-Changed-When: Fri Mar 2 06:41:06 UTC 2012 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=165578 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 06:50:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AB3E3106564A for ; Fri, 2 Mar 2012 06:50:15 +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 9ABB28FC08 for ; Fri, 2 Mar 2012 06:50:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q226oF59015506 for ; Fri, 2 Mar 2012 06:50:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q226oFrZ015505; Fri, 2 Mar 2012 06:50:15 GMT (envelope-from gnats) Date: Fri, 2 Mar 2012 06:50:15 GMT Message-Id: <201203020650.q226oFrZ015505@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/165578: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 06:50:15 -0000 The following reply was made to PR ports/165578; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/165578: commit references a PR Date: Fri, 2 Mar 2012 06:40:59 +0000 (UTC) wen 2012-03-02 06:40:50 UTC FreeBSD ports repository Modified files: net-mgmt/darkstat Makefile distinfo net-mgmt/darkstat/files darkstat.in Log: - Update to 3.0.715 PR: ports/165578 Submitted by: Emil Mikulic (maintainer) Revision Changes Path 1.33 +1 -1 ports/net-mgmt/darkstat/Makefile 1.23 +2 -2 ports/net-mgmt/darkstat/distinfo 1.7 +3 -3 ports/net-mgmt/darkstat/files/darkstat.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" From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 06:50:16 2012 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 4C339106566B for ; Fri, 2 Mar 2012 06:50:16 +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 0FE528FC12 for ; Fri, 2 Mar 2012 06:50:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q226oFG9015515 for ; Fri, 2 Mar 2012 06:50:15 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q226oFAL015514; Fri, 2 Mar 2012 06:50:15 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 06:50:15 GMT Resent-Message-Id: <201203020650.q226oFAL015514@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, Seiji Ariga Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 686D1106564A for ; Fri, 2 Mar 2012 06:49:40 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 586378FC08 for ; Fri, 2 Mar 2012 06:49:40 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q226ne5x020385 for ; Fri, 2 Mar 2012 06:49:40 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q226neMf020384; Fri, 2 Mar 2012 06:49:40 GMT (envelope-from nobody) Message-Id: <201203020649.q226neMf020384@red.freebsd.org> Date: Fri, 2 Mar 2012 06:49:40 GMT From: Seiji Ariga To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165612: japanese/mozc-el needs version bump to follow Emacs23 update 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, 02 Mar 2012 06:50:16 -0000 >Number: 165612 >Category: ports >Synopsis: japanese/mozc-el needs version bump to follow Emacs23 update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 06:50:15 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Seiji Ariga >Release: FreeBSD-9.0 >Organization: >Environment: FreeBSD decoy.khaotic.net 9.0-STABLE FreeBSD 9.0-STABLE #0: Wed Feb 15 03:10:24 EST 2012 root@host.khaotic.net:/usr/obj/usr/src/sys/HOST amd64 >Description: To follow recent editors/emacs update (23.3 -> 23.4), japanese/mozc-el needs to be reinstalled. >How-To-Repeat: Run update Emacs 23.4 without reinstalling japanese/mozc-el. ---- Warning (initialization): An error occurred while loading `/home/user/.emacs.d/init.el': File error: Cannot open load file, mozc To ensure normal operation, you should investigate and remove the cause of the error in your initialization file. Start Emacs with the `--debug-init' option to view a complete error backtrace. ---- >Fix: increment PORTREVISION --- japanese/mozc-el/Makefile.orig 2012-03-02 01:48:08.000000000 -0500 +++ japanese/mozc-el/Makefile 2012-03-02 01:46:43.000000000 -0500 @@ -6,6 +6,7 @@ # PKGNAMESUFFIX= -el-${EMACS_PORT_NAME} +PORTREVISION= 1 COMMENT= Mozc for GNU Emacs MASTERDIR= ${.CURDIR}/../../japanese/mozc-server >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 06:50:31 2012 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 8652B106568C; Fri, 2 Mar 2012 06:50:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5E8538FC1D; Fri, 2 Mar 2012 06:50:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q226oVR4015671; Fri, 2 Mar 2012 06:50:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q226oVpO015667; Fri, 2 Mar 2012 06:50:31 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 06:50:31 GMT Message-Id: <201203020650.q226oVpO015667@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, daichi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165612: japanese/mozc-el needs version bump to follow Emacs23 update 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, 02 Mar 2012 06:50:31 -0000 Synopsis: japanese/mozc-el needs version bump to follow Emacs23 update Responsible-Changed-From-To: freebsd-ports-bugs->daichi Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 06:50:30 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165612 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 07:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D01011065691 for ; Fri, 2 Mar 2012 07:50:10 +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 A9DA48FC14 for ; Fri, 2 Mar 2012 07:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q227oAeX094154 for ; Fri, 2 Mar 2012 07:50:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q227oAaD094153; Fri, 2 Mar 2012 07:50:10 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 07:50:10 GMT Resent-Message-Id: <201203020750.q227oAaD094153@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, Andrej Zverev Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D3D2D106566B for ; Fri, 2 Mar 2012 07:40:57 +0000 (UTC) (envelope-from az@sunner.semmy.ru) Received: from sunner.semmy.ru (sunner.semmy.ru [IPv6:2a00:14d0:0:20::3]) by mx1.freebsd.org (Postfix) with ESMTP id 113A28FC08 for ; Fri, 2 Mar 2012 07:40:52 +0000 (UTC) Received: from az by sunner.semmy.ru with local (Exim 4.77 (FreeBSD)) (envelope-from ) id 1S3N6h-0008lY-5j for FreeBSD-gnats-submit@freebsd.org; Fri, 02 Mar 2012 11:40:51 +0400 Message-Id: Date: Fri, 02 Mar 2012 11:40:51 +0400 From: Andrej Zverev Sender: Andrej Zverev To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165613: [UPDATE] www/openx to 2.8.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Andrej Zverev List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 07:50:10 -0000 >Number: 165613 >Category: ports >Synopsis: [UPDATE] www/openx to 2.8.8 >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 07:50:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Andrej Zverev >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: >Description: Current version of OpenX contain some security problem. This information was obtained from this URL: http://blog.openx.org/12/security-matters-3/ As I can see they changed something with sessions handling and accurate with HTML escaping. So they don't touch DB schema. >How-To-Repeat: >Fix: Apply patch, same patch can be found here: http://people.freebsd.org/~az/openx.diff --- openx.diff begins here --- Index: openx/Makefile =================================================================== RCS file: /home/pcvs/ports/www/openx/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- openx/Makefile 26 Sep 2010 13:33:40 -0000 1.10 +++ openx/Makefile 2 Mar 2012 07:27:11 -0000 @@ -6,14 +6,15 @@ # PORTNAME= openx -PORTVERSION= 2.8.7 +PORTVERSION= 2.8.8 CATEGORIES= www MASTER_SITES= http://download.openx.org/ -LICENSE= GPLv2 MAINTAINER= meritus@innervision.pl COMMENT= Free, opensource ad server in PHP +LICENSE= GPLv2 + USE_BZIP2= yes NO_BUILD= yes SUB_LIST+= PKGNAME=${PKGNAME} @@ -35,5 +36,4 @@ post-install: @${CAT} ${PKGMESSAGE} - .include Index: openx/distinfo =================================================================== RCS file: /home/pcvs/ports/www/openx/distinfo,v retrieving revision 1.11 diff -u -r1.11 distinfo --- openx/distinfo 19 Mar 2011 12:34:53 -0000 1.11 +++ openx/distinfo 2 Mar 2012 07:27:11 -0000 @@ -1,2 +1,2 @@ -SHA256 (openx-2.8.7.tar.bz2) = e0a52033e6ee197353991c52716250c1187716141d29cdadca6c26500d4e29b1 -SIZE (openx-2.8.7.tar.bz2) = 9608906 +SHA256 (openx-2.8.8.tar.bz2) = 3521a71085979424f7e405f99c3ab2bcc835381b0863903e2aa196a87e366f7d +SIZE (openx-2.8.8.tar.bz2) = 9614228 Index: openx/pkg-plist =================================================================== RCS file: /home/pcvs/ports/www/openx/pkg-plist,v retrieving revision 1.8 diff -u -r1.8 pkg-plist --- openx/pkg-plist 26 Sep 2010 13:33:40 -0000 1.8 +++ openx/pkg-plist 2 Mar 2012 07:27:13 -0000 @@ -1,3750 +1,3771 @@ %%WWWDIR%%/COPYRIGHT.txt -%%WWWDIR%%/LICENSE.txt -%%WWWDIR%%/POLICY.txt -%%WWWDIR%%/README.txt -%%WWWDIR%%/RELEASE_NOTES.txt -%%WWWDIR%%/TERMS.txt -%%WWWDIR%%/TRANSLATIONS.txt -%%WWWDIR%%/UPGRADE.txt %%WWWDIR%%/adclick.php -%%WWWDIR%%/adframe.php -%%WWWDIR%%/adg.js -%%WWWDIR%%/adimage.php -%%WWWDIR%%/adjs.php -%%WWWDIR%%/adlayer.php -%%WWWDIR%%/adpopup.php -%%WWWDIR%%/adview.php -%%WWWDIR%%/adx.js -%%WWWDIR%%/adxmlrpc.php +%%WWWDIR%%/TRANSLATIONS.txt +%%WWWDIR%%/README.txt %%WWWDIR%%/constants.php %%WWWDIR%%/etc/.htaccess -%%WWWDIR%%/etc/changes/ConfigMigration.php -%%WWWDIR%%/etc/changes/EncodingMigration.php -%%WWWDIR%%/etc/changes/StatMigration.php -%%WWWDIR%%/etc/changes/UserMigration.php -%%WWWDIR%%/etc/changes/changes_tables_core_100.xml -%%WWWDIR%%/etc/changes/changes_tables_core_108.xml -%%WWWDIR%%/etc/changes/changes_tables_core_121.xml -%%WWWDIR%%/etc/changes/changes_tables_core_122.xml -%%WWWDIR%%/etc/changes/changes_tables_core_123.xml -%%WWWDIR%%/etc/changes/changes_tables_core_124.xml -%%WWWDIR%%/etc/changes/changes_tables_core_125.xml -%%WWWDIR%%/etc/changes/changes_tables_core_126.xml -%%WWWDIR%%/etc/changes/changes_tables_core_127.xml -%%WWWDIR%%/etc/changes/changes_tables_core_128.xml -%%WWWDIR%%/etc/changes/changes_tables_core_129.xml -%%WWWDIR%%/etc/changes/changes_tables_core_12934a.xml -%%WWWDIR%%/etc/changes/changes_tables_core_130.xml -%%WWWDIR%%/etc/changes/changes_tables_core_131.xml +%%WWWDIR%%/etc/core.pgsql.php +%%WWWDIR%%/etc/dist.conf.php +%%WWWDIR%%/etc/tables_temp_statistics.xml +%%WWWDIR%%/etc/sim.conf.php +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-582.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-536.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-531.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-12934a.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-122.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-543.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-308.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-125.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-544.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-538.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-603.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-099.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-323.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-324.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-513.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-604.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-100.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-613.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-334.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-399.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-325.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-605.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-512.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-602.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-515.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-322.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-108.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-temp-priority-501.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-612.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-505.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-332.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-530.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-584.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-199.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-300.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-537.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-583.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-124.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-temp-priority-501.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-539.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-542.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-123.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-505.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-612.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-332.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-325.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-512.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-605.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-515.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-602.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-049.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-108.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-322.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-124.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-539.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-123.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-542.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-584.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-530.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-199.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-583.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-537.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-308.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-543.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-122.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-544.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-125.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-temp-priority-500.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-538.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-536.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-582.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-531.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-613.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-100.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-334.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-399.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-603.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-323.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-324.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-604.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-513.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-126.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-547.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-121.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-540.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-532.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-128.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-temp-statistics-501.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-131.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-535.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-581.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-329.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-610.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-12934.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-507.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-330.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-609.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-327.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-607.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-510.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-600.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-506.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-611.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-328.bin +%%WWWDIR%%/etc/xmlcache/cache_etc_tables-core.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-608.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-331.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-336.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-516.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-601.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-321.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-326.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-511.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-606.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-541.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-546.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-127.bin +%%WWWDIR%%/etc/xmlcache/cache_etc_tables-temp-priority.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-548.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-129.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-580.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-130.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-534.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-533.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-601.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-516.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-321.bin +%%WWWDIR%%/etc/xmlcache/cache_etc_tables-temp-statistics.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-326.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-606.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-511.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-328.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-611.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-506.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-331.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-608.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-336.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-129.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-548.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-temp-statistics-500.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-130.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-534.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-580.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-533.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-541.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-127.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-546.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-532.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-128.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-581.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-131.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-535.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-547.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-126.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-540.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-121.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-327.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-510.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-607.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-12934a.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-600.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-500.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-507.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-610.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-329.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-temp-statistics-501.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-609.bin +%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-330.bin +%%WWWDIR%%/etc/curl-ca-bundle.crt +%%WWWDIR%%/etc/database_action.xml +%%WWWDIR%%/etc/permanentcache/cache_adnetworks_getcategories.bin +%%WWWDIR%%/etc/permanentcache/cache_adnetworks_getcountries.bin +%%WWWDIR%%/etc/permanentcache/cache_adnetworks_getlanguages.bin +%%WWWDIR%%/etc/default_plugins.php +%%WWWDIR%%/etc/plugins/openXDeliveryLimitations.zip +%%WWWDIR%%/etc/plugins/openXMaxMindGeoIP.zip +%%WWWDIR%%/etc/plugins/openXWorkflow.zip +%%WWWDIR%%/etc/plugins/openXMarket.zip +%%WWWDIR%%/etc/plugins/openXDeliveryCacheStore.zip +%%WWWDIR%%/etc/plugins/openX3rdPartyServers.zip +%%WWWDIR%%/etc/plugins/openXBannerTypes.zip +%%WWWDIR%%/etc/plugins/openXDeliveryLog.zip +%%WWWDIR%%/etc/plugins/openXReports.zip +%%WWWDIR%%/etc/plugins/openXVideoAds.zip +%%WWWDIR%%/etc/plugins/openXInvocationTags.zip +%%WWWDIR%%/etc/upgrade_action.xml +%%WWWDIR%%/etc/tables_core.xml +%%WWWDIR%%/etc/tables_temp_priority.xml +%%WWWDIR%%/etc/changes/migration_tables_core_128.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.67-beta-rc1.xml %%WWWDIR%%/etc/changes/changes_tables_core_199.xml -%%WWWDIR%%/etc/changes/changes_tables_core_308.xml -%%WWWDIR%%/etc/changes/changes_tables_core_321.xml -%%WWWDIR%%/etc/changes/changes_tables_core_322.xml -%%WWWDIR%%/etc/changes/changes_tables_core_323.xml -%%WWWDIR%%/etc/changes/changes_tables_core_324.xml -%%WWWDIR%%/etc/changes/changes_tables_core_325.xml -%%WWWDIR%%/etc/changes/changes_tables_core_326.xml -%%WWWDIR%%/etc/changes/changes_tables_core_327.xml -%%WWWDIR%%/etc/changes/changes_tables_core_328.xml -%%WWWDIR%%/etc/changes/changes_tables_core_329.xml -%%WWWDIR%%/etc/changes/changes_tables_core_330.xml -%%WWWDIR%%/etc/changes/changes_tables_core_331.xml -%%WWWDIR%%/etc/changes/changes_tables_core_332.xml -%%WWWDIR%%/etc/changes/changes_tables_core_334.xml -%%WWWDIR%%/etc/changes/changes_tables_core_336.xml -%%WWWDIR%%/etc/changes/changes_tables_core_399.xml -%%WWWDIR%%/etc/changes/changes_tables_core_505.xml -%%WWWDIR%%/etc/changes/changes_tables_core_506.xml -%%WWWDIR%%/etc/changes/changes_tables_core_507.xml -%%WWWDIR%%/etc/changes/changes_tables_core_510.xml -%%WWWDIR%%/etc/changes/changes_tables_core_511.xml -%%WWWDIR%%/etc/changes/changes_tables_core_512.xml -%%WWWDIR%%/etc/changes/changes_tables_core_513.xml -%%WWWDIR%%/etc/changes/changes_tables_core_515.xml -%%WWWDIR%%/etc/changes/changes_tables_core_516.xml -%%WWWDIR%%/etc/changes/changes_tables_core_530.xml -%%WWWDIR%%/etc/changes/changes_tables_core_531.xml -%%WWWDIR%%/etc/changes/changes_tables_core_532.xml -%%WWWDIR%%/etc/changes/changes_tables_core_533.xml -%%WWWDIR%%/etc/changes/changes_tables_core_534.xml -%%WWWDIR%%/etc/changes/changes_tables_core_535.xml -%%WWWDIR%%/etc/changes/changes_tables_core_536.xml -%%WWWDIR%%/etc/changes/changes_tables_core_537.xml -%%WWWDIR%%/etc/changes/changes_tables_core_538.xml -%%WWWDIR%%/etc/changes/changes_tables_core_539.xml -%%WWWDIR%%/etc/changes/changes_tables_core_540.xml -%%WWWDIR%%/etc/changes/changes_tables_core_541.xml -%%WWWDIR%%/etc/changes/changes_tables_core_542.xml -%%WWWDIR%%/etc/changes/changes_tables_core_543.xml -%%WWWDIR%%/etc/changes/changes_tables_core_544.xml -%%WWWDIR%%/etc/changes/changes_tables_core_546.xml -%%WWWDIR%%/etc/changes/changes_tables_core_547.xml -%%WWWDIR%%/etc/changes/changes_tables_core_548.xml -%%WWWDIR%%/etc/changes/changes_tables_core_580.xml -%%WWWDIR%%/etc/changes/changes_tables_core_581.xml -%%WWWDIR%%/etc/changes/changes_tables_core_582.xml -%%WWWDIR%%/etc/changes/changes_tables_core_583.xml +%%WWWDIR%%/etc/changes/schema_tables_core_128.xml +%%WWWDIR%%/etc/changes/tasks/openads_upgrade_task_Maintenance_Priority.php +%%WWWDIR%%/etc/changes/tasks/openads_upgrade_task_Recompile_Acls.php +%%WWWDIR%%/etc/changes/tasks/openads_upgrade_task_Rebuild_Banner_Cache.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.4.xml +%%WWWDIR%%/etc/changes/migration_tables_core_535.php %%WWWDIR%%/etc/changes/changes_tables_core_584.xml -%%WWWDIR%%/etc/changes/changes_tables_core_600.xml -%%WWWDIR%%/etc/changes/changes_tables_core_601.xml -%%WWWDIR%%/etc/changes/changes_tables_core_602.xml -%%WWWDIR%%/etc/changes/changes_tables_core_603.xml -%%WWWDIR%%/etc/changes/changes_tables_core_604.xml -%%WWWDIR%%/etc/changes/changes_tables_core_605.xml -%%WWWDIR%%/etc/changes/changes_tables_core_606.xml -%%WWWDIR%%/etc/changes/changes_tables_core_607.xml -%%WWWDIR%%/etc/changes/changes_tables_core_608.xml -%%WWWDIR%%/etc/changes/changes_tables_core_609.xml -%%WWWDIR%%/etc/changes/changes_tables_core_610.xml -%%WWWDIR%%/etc/changes/changes_tables_core_611.xml -%%WWWDIR%%/etc/changes/changes_tables_core_612.xml -%%WWWDIR%%/etc/changes/changes_tables_core_613.xml -%%WWWDIR%%/etc/changes/changes_tables_temp_priority_501.xml -%%WWWDIR%%/etc/changes/changes_tables_temp_statistics_501.xml -%%WWWDIR%%/etc/changes/migration_tables_core_100.php -%%WWWDIR%%/etc/changes/migration_tables_core_108.php +%%WWWDIR%%/etc/changes/schema_tables_core_535.xml +%%WWWDIR%%/etc/changes/migration_tables_core_532.php +%%WWWDIR%%/etc/changes/changes_tables_core_583.xml +%%WWWDIR%%/etc/changes/schema_tables_core_532.xml %%WWWDIR%%/etc/changes/migration_tables_core_121.php -%%WWWDIR%%/etc/changes/migration_tables_core_122.php -%%WWWDIR%%/etc/changes/migration_tables_core_123.php -%%WWWDIR%%/etc/changes/migration_tables_core_124.php -%%WWWDIR%%/etc/changes/migration_tables_core_125.php +%%WWWDIR%%/etc/changes/migration_tables_core_540.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.67-beta-rc8.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.26-beta-rc3.xml +%%WWWDIR%%/etc/changes/schema_tables_core_121.xml +%%WWWDIR%%/etc/changes/schema_tables_core_540.xml %%WWWDIR%%/etc/changes/migration_tables_core_126.php -%%WWWDIR%%/etc/changes/migration_tables_core_127.php -%%WWWDIR%%/etc/changes/migration_tables_core_128.php -%%WWWDIR%%/etc/changes/migration_tables_core_129.php -%%WWWDIR%%/etc/changes/migration_tables_core_12934a.php -%%WWWDIR%%/etc/changes/migration_tables_core_130.php -%%WWWDIR%%/etc/changes/migration_tables_core_131.php -%%WWWDIR%%/etc/changes/migration_tables_core_199.php -%%WWWDIR%%/etc/changes/migration_tables_core_308.php -%%WWWDIR%%/etc/changes/migration_tables_core_321.php -%%WWWDIR%%/etc/changes/migration_tables_core_322.php -%%WWWDIR%%/etc/changes/migration_tables_core_323.php -%%WWWDIR%%/etc/changes/migration_tables_core_324.php -%%WWWDIR%%/etc/changes/migration_tables_core_325.php -%%WWWDIR%%/etc/changes/migration_tables_core_326.php +%%WWWDIR%%/etc/changes/migration_tables_core_547.php +%%WWWDIR%%/etc/changes/schema_tables_core_126.xml +%%WWWDIR%%/etc/changes/schema_tables_core_547.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.11-dev.xml +%%WWWDIR%%/etc/changes/changes_tables_core_605.xml +%%WWWDIR%%/etc/changes/changes_tables_core_512.xml +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.5.67-beta-rc8.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.24-beta-rc3.xml +%%WWWDIR%%/etc/changes/schema_tables_core_12934a.xml +%%WWWDIR%%/etc/changes/migration_tables_temp_priority_501.php +%%WWWDIR%%/etc/changes/changes_tables_core_108.xml +%%WWWDIR%%/etc/changes/schema_tables_core_327.xml %%WWWDIR%%/etc/changes/migration_tables_core_327.php -%%WWWDIR%%/etc/changes/migration_tables_core_328.php -%%WWWDIR%%/etc/changes/migration_tables_core_329.php -%%WWWDIR%%/etc/changes/migration_tables_core_330.php -%%WWWDIR%%/etc/changes/migration_tables_core_331.php -%%WWWDIR%%/etc/changes/migration_tables_core_332.php -%%WWWDIR%%/etc/changes/migration_tables_core_334.php -%%WWWDIR%%/etc/changes/migration_tables_core_336.php -%%WWWDIR%%/etc/changes/migration_tables_core_399.php -%%WWWDIR%%/etc/changes/migration_tables_core_505.php -%%WWWDIR%%/etc/changes/migration_tables_core_506.php +%%WWWDIR%%/etc/changes/changes_tables_core_602.xml +%%WWWDIR%%/etc/changes/changes_tables_core_515.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.61.xml +%%WWWDIR%%/etc/changes/migration_tables_core_610.php %%WWWDIR%%/etc/changes/migration_tables_core_507.php -%%WWWDIR%%/etc/changes/migration_tables_core_510.php +%%WWWDIR%%/etc/changes/schema_tables_core_329.xml +%%WWWDIR%%/etc/changes/schema_tables_core_610.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.13.xml +%%WWWDIR%%/etc/changes/schema_tables_core_507.xml +%%WWWDIR%%/etc/changes/migration_tables_core_329.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.8.4-rc4.xml +%%WWWDIR%%/etc/changes/changes_tables_core_332.xml +%%WWWDIR%%/etc/changes/prescript_openads_upgrade_2.3.33-beta-rc4.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.14.xml +%%WWWDIR%%/etc/changes/schema_tables_core_500.xml +%%WWWDIR%%/etc/changes/changes_tables_core_323.xml +%%WWWDIR%%/etc/changes/schema_tables_core_511.xml +%%WWWDIR%%/etc/changes/schema_tables_core_606.xml %%WWWDIR%%/etc/changes/migration_tables_core_511.php -%%WWWDIR%%/etc/changes/migration_tables_core_512.php -%%WWWDIR%%/etc/changes/migration_tables_core_513.php -%%WWWDIR%%/etc/changes/migration_tables_core_514.php -%%WWWDIR%%/etc/changes/migration_tables_core_515.php +%%WWWDIR%%/etc/changes/migration_tables_core_606.php +%%WWWDIR%%/etc/changes/schema_tables_core_516.xml +%%WWWDIR%%/etc/changes/schema_tables_core_601.xml %%WWWDIR%%/etc/changes/migration_tables_core_516.php -%%WWWDIR%%/etc/changes/migration_tables_core_530.php -%%WWWDIR%%/etc/changes/migration_tables_core_531.php -%%WWWDIR%%/etc/changes/migration_tables_core_532.php -%%WWWDIR%%/etc/changes/migration_tables_core_533.php -%%WWWDIR%%/etc/changes/migration_tables_core_534.php -%%WWWDIR%%/etc/changes/migration_tables_core_535.php -%%WWWDIR%%/etc/changes/migration_tables_core_536.php -%%WWWDIR%%/etc/changes/migration_tables_core_537.php -%%WWWDIR%%/etc/changes/migration_tables_core_538.php -%%WWWDIR%%/etc/changes/migration_tables_core_539.php -%%WWWDIR%%/etc/changes/migration_tables_core_540.php -%%WWWDIR%%/etc/changes/migration_tables_core_541.php -%%WWWDIR%%/etc/changes/migration_tables_core_542.php -%%WWWDIR%%/etc/changes/migration_tables_core_543.php -%%WWWDIR%%/etc/changes/migration_tables_core_544.php -%%WWWDIR%%/etc/changes/migration_tables_core_546.php -%%WWWDIR%%/etc/changes/migration_tables_core_547.php -%%WWWDIR%%/etc/changes/migration_tables_core_548.php -%%WWWDIR%%/etc/changes/migration_tables_core_580.php -%%WWWDIR%%/etc/changes/migration_tables_core_581.php -%%WWWDIR%%/etc/changes/migration_tables_core_582.php -%%WWWDIR%%/etc/changes/migration_tables_core_583.php -%%WWWDIR%%/etc/changes/migration_tables_core_584.php -%%WWWDIR%%/etc/changes/migration_tables_core_600.php %%WWWDIR%%/etc/changes/migration_tables_core_601.php -%%WWWDIR%%/etc/changes/migration_tables_core_602.php -%%WWWDIR%%/etc/changes/migration_tables_core_603.php -%%WWWDIR%%/etc/changes/migration_tables_core_604.php -%%WWWDIR%%/etc/changes/migration_tables_core_605.php -%%WWWDIR%%/etc/changes/migration_tables_core_606.php -%%WWWDIR%%/etc/changes/migration_tables_core_607.php -%%WWWDIR%%/etc/changes/migration_tables_core_608.php -%%WWWDIR%%/etc/changes/migration_tables_core_609.php -%%WWWDIR%%/etc/changes/migration_tables_core_610.php -%%WWWDIR%%/etc/changes/migration_tables_core_611.php -%%WWWDIR%%/etc/changes/migration_tables_core_612.php -%%WWWDIR%%/etc/changes/migration_tables_core_613.php -%%WWWDIR%%/etc/changes/migration_tables_temp_priority_501.php -%%WWWDIR%%/etc/changes/openads_upgrade_2.0.11_to_2.3.32_beta.xml +%%WWWDIR%%/etc/changes/changes_tables_core_324.xml +%%WWWDIR%%/etc/changes/migration_tables_core_336.php +%%WWWDIR%%/etc/changes/schema_tables_core_336.xml %%WWWDIR%%/etc/changes/openads_upgrade_2.1.29_to_2.3.32_beta.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.3.31_to_2.3.32_beta.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.3.33-beta-rc4.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.3.34_to_2.3.38_beta.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.3.36-beta-rc1.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.1.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.13.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.14.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.2.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.4.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.41.xml +%%WWWDIR%%/etc/changes/changes_tables_core_613.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.8.1-rc10.xml +%%WWWDIR%%/etc/changes/migration_tables_core_331.php +%%WWWDIR%%/etc/changes/schema_tables_core_608.xml +%%WWWDIR%%/etc/changes/schema_tables_core_331.xml +%%WWWDIR%%/etc/changes/migration_tables_core_608.php %%WWWDIR%%/etc/changes/openads_upgrade_2.5.42.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.43.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.44.xml +%%WWWDIR%%/etc/changes/changes_tables_core_536.xml %%WWWDIR%%/etc/changes/openads_upgrade_2.5.45.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.46.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.48.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.49.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.5.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.50-beta-rc1.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.61.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.67-beta-rc1.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.67-beta-rc3.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.67-beta-rc7.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.67-beta-rc8.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.5.8.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.11-dev.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.12.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.24-beta-rc2.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.24-beta-rc3.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.26-beta-rc3.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.26-beta-rc5.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.30-beta-rc4.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.30-beta-rc5.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.31-beta-rc1.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.31-beta-rc2.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.31-beta-rc4.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.6.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.7.8-dev.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.8.1-rc10.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.8.1-rc4.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.8.2-rc11.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.8.2-rc2.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.8.2-rc8.xml +%%WWWDIR%%/etc/changes/schema_tables_core_580.xml +%%WWWDIR%%/etc/changes/schema_tables_core_130.xml +%%WWWDIR%%/etc/changes/migration_tables_core_580.php +%%WWWDIR%%/etc/changes/migration_tables_core_130.php +%%WWWDIR%%/etc/changes/changes_tables_core_531.xml +%%WWWDIR%%/etc/changes/EncodingMigration.php +%%WWWDIR%%/etc/changes/changes_tables_core_122.xml +%%WWWDIR%%/etc/changes/changes_tables_core_543.xml +%%WWWDIR%%/etc/changes/changes_tables_core_538.xml %%WWWDIR%%/etc/changes/openads_upgrade_2.8.2-rc9.xml +%%WWWDIR%%/etc/changes/changes_tables_core_125.xml +%%WWWDIR%%/etc/changes/schema_tables_core_12934.xml +%%WWWDIR%%/etc/changes/changes_tables_core_544.xml +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.8.2-rc8.php +%%WWWDIR%%/etc/changes/changes_tables_core_100.xml +%%WWWDIR%%/etc/changes/migration_tables_core_611.php +%%WWWDIR%%/etc/changes/migration_tables_core_506.php +%%WWWDIR%%/etc/changes/schema_tables_core_328.xml +%%WWWDIR%%/etc/changes/schema_tables_core_611.xml +%%WWWDIR%%/etc/changes/changes_tables_core_399.xml +%%WWWDIR%%/etc/changes/schema_tables_core_506.xml +%%WWWDIR%%/etc/changes/migration_tables_core_328.php %%WWWDIR%%/etc/changes/openads_upgrade_2.8.4-rc2.xml -%%WWWDIR%%/etc/changes/openads_upgrade_2.8.4-rc4.xml -%%WWWDIR%%/etc/changes/openads_upgrade_array.txt -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.0.11_to_2.3.32_beta.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.1.29_to_2.3.32_beta.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.3.31_to_2.3.32_beta.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.3.36-beta-rc1.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.5.67-beta-rc3.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.5.67-beta-rc8.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.11-dev.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.12.php +%%WWWDIR%%/etc/changes/changes_tables_core_334.xml +%%WWWDIR%%/etc/changes/schema_tables_core_326.xml +%%WWWDIR%%/etc/changes/migration_tables_core_326.php +%%WWWDIR%%/etc/changes/changes_tables_core_603.xml %%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.26-beta-rc5.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.30-beta-rc4.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.30-beta-rc5.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.31-beta-rc1.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.31-beta-rc4.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.8.1-rc10.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.8.1-rc4.php -%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.8.2-rc8.php -%%WWWDIR%%/etc/changes/prescript_openads_upgrade_2.0.11_to_2.3.32_beta.php -%%WWWDIR%%/etc/changes/prescript_openads_upgrade_2.3.33-beta-rc4.php -%%WWWDIR%%/etc/changes/prescript_tables_core_399.php -%%WWWDIR%%/etc/changes/schema_tables_core_049.xml -%%WWWDIR%%/etc/changes/schema_tables_core_099.xml -%%WWWDIR%%/etc/changes/schema_tables_core_100.xml -%%WWWDIR%%/etc/changes/schema_tables_core_108.xml -%%WWWDIR%%/etc/changes/schema_tables_core_121.xml -%%WWWDIR%%/etc/changes/schema_tables_core_122.xml -%%WWWDIR%%/etc/changes/schema_tables_core_123.xml -%%WWWDIR%%/etc/changes/schema_tables_core_124.xml -%%WWWDIR%%/etc/changes/schema_tables_core_125.xml -%%WWWDIR%%/etc/changes/schema_tables_core_126.xml +%%WWWDIR%%/etc/changes/changes_tables_core_604.xml +%%WWWDIR%%/etc/changes/changes_tables_core_513.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.24-beta-rc2.xml +%%WWWDIR%%/etc/changes/schema_tables_core_321.xml +%%WWWDIR%%/etc/changes/migration_tables_core_321.php +%%WWWDIR%%/etc/changes/migration_tables_core_127.php +%%WWWDIR%%/etc/changes/migration_tables_core_546.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.26-beta-rc5.xml +%%WWWDIR%%/etc/changes/changes_tables_core_308.xml %%WWWDIR%%/etc/changes/schema_tables_core_127.xml -%%WWWDIR%%/etc/changes/schema_tables_core_128.xml +%%WWWDIR%%/etc/changes/schema_tables_core_546.xml +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.0.11_to_2.3.32_beta.php +%%WWWDIR%%/etc/changes/migration_tables_core_541.php +%%WWWDIR%%/etc/changes/schema_tables_core_541.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.8-dev.xml +%%WWWDIR%%/etc/changes/migration_tables_core_533.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.2.xml +%%WWWDIR%%/etc/changes/changes_tables_core_582.xml +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.8.1-rc4.php +%%WWWDIR%%/etc/changes/schema_tables_core_533.xml +%%WWWDIR%%/etc/changes/migration_tables_core_12934a.php +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.8.1-rc10.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.67-beta-rc7.xml +%%WWWDIR%%/etc/changes/migration_tables_core_129.php +%%WWWDIR%%/etc/changes/migration_tables_core_548.php %%WWWDIR%%/etc/changes/schema_tables_core_129.xml -%%WWWDIR%%/etc/changes/schema_tables_core_12934.xml -%%WWWDIR%%/etc/changes/schema_tables_core_12934a.xml -%%WWWDIR%%/etc/changes/schema_tables_core_130.xml +%%WWWDIR%%/etc/changes/schema_tables_core_548.xml +%%WWWDIR%%/etc/changes/migration_tables_core_534.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.5.xml +%%WWWDIR%%/etc/changes/schema_tables_core_534.xml +%%WWWDIR%%/etc/changes/changes_tables_core_539.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.12.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.8.2-rc8.xml +%%WWWDIR%%/etc/changes/changes_tables_core_124.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.31-beta-rc1.xml +%%WWWDIR%%/etc/changes/changes_tables_core_123.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.3.34_to_2.3.38_beta.xml +%%WWWDIR%%/etc/changes/changes_tables_core_542.xml +%%WWWDIR%%/etc/changes/schema_tables_core_581.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.44.xml %%WWWDIR%%/etc/changes/schema_tables_core_131.xml -%%WWWDIR%%/etc/changes/schema_tables_core_199.xml -%%WWWDIR%%/etc/changes/schema_tables_core_300.xml -%%WWWDIR%%/etc/changes/schema_tables_core_308.xml -%%WWWDIR%%/etc/changes/schema_tables_core_321.xml -%%WWWDIR%%/etc/changes/schema_tables_core_322.xml -%%WWWDIR%%/etc/changes/schema_tables_core_323.xml -%%WWWDIR%%/etc/changes/schema_tables_core_324.xml -%%WWWDIR%%/etc/changes/schema_tables_core_325.xml -%%WWWDIR%%/etc/changes/schema_tables_core_326.xml -%%WWWDIR%%/etc/changes/schema_tables_core_327.xml -%%WWWDIR%%/etc/changes/schema_tables_core_328.xml -%%WWWDIR%%/etc/changes/schema_tables_core_329.xml +%%WWWDIR%%/etc/changes/migration_tables_core_581.php +%%WWWDIR%%/etc/changes/migration_tables_core_131.php +%%WWWDIR%%/etc/changes/changes_tables_core_530.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.43.xml +%%WWWDIR%%/etc/changes/changes_tables_core_537.xml +%%WWWDIR%%/etc/changes/changes_tables_temp_priority_501.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.3.33-beta-rc4.xml +%%WWWDIR%%/etc/changes/migration_tables_core_330.php +%%WWWDIR%%/etc/changes/schema_tables_core_609.xml %%WWWDIR%%/etc/changes/schema_tables_core_330.xml -%%WWWDIR%%/etc/changes/schema_tables_core_331.xml -%%WWWDIR%%/etc/changes/schema_tables_core_332.xml +%%WWWDIR%%/etc/changes/migration_tables_core_609.php +%%WWWDIR%%/etc/changes/changes_tables_core_505.xml +%%WWWDIR%%/etc/changes/changes_tables_core_612.xml +%%WWWDIR%%/etc/changes/schema_tables_core_600.xml +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.31-beta-rc1.php +%%WWWDIR%%/etc/changes/migration_tables_core_600.php +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.11-dev.php +%%WWWDIR%%/etc/changes/changes_tables_core_325.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.8.1-rc4.xml +%%WWWDIR%%/etc/changes/changes_tables_core_322.xml +%%WWWDIR%%/etc/changes/schema_tables_core_510.xml +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.3.31_to_2.3.32_beta.php +%%WWWDIR%%/etc/changes/schema_tables_core_607.xml +%%WWWDIR%%/etc/changes/migration_tables_core_510.php +%%WWWDIR%%/etc/changes/migration_tables_core_607.php +%%WWWDIR%%/etc/changes/changes_tables_core_541.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.49.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.3.31_to_2.3.32_beta.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.8.2-rc11.xml +%%WWWDIR%%/etc/changes/migration_tables_core_308.php +%%WWWDIR%%/etc/changes/StatMigration.php +%%WWWDIR%%/etc/changes/changes_tables_core_546.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.31-beta-rc2.xml +%%WWWDIR%%/etc/changes/changes_tables_core_127.xml +%%WWWDIR%%/etc/changes/schema_tables_core_308.xml +%%WWWDIR%%/etc/changes/changes_tables_core_534.xml +%%WWWDIR%%/etc/changes/changes_tables_core_548.xml +%%WWWDIR%%/etc/changes/changes_tables_core_129.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.30-beta-rc5.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.8.2-rc2.xml +%%WWWDIR%%/etc/changes/schema_tables_core_582.xml +%%WWWDIR%%/etc/changes/migration_tables_core_582.php +%%WWWDIR%%/etc/changes/changes_tables_core_533.xml +%%WWWDIR%%/etc/changes/migration_tables_core_334.php %%WWWDIR%%/etc/changes/schema_tables_core_334.xml -%%WWWDIR%%/etc/changes/schema_tables_core_336.xml +%%WWWDIR%%/etc/changes/changes_tables_core_328.xml +%%WWWDIR%%/etc/changes/migration_tables_core_399.php +%%WWWDIR%%/etc/changes/changes_tables_core_506.xml %%WWWDIR%%/etc/changes/schema_tables_core_399.xml -%%WWWDIR%%/etc/changes/schema_tables_core_500.xml -%%WWWDIR%%/etc/changes/schema_tables_core_505.xml -%%WWWDIR%%/etc/changes/schema_tables_core_506.xml -%%WWWDIR%%/etc/changes/schema_tables_core_507.xml -%%WWWDIR%%/etc/changes/schema_tables_core_510.xml -%%WWWDIR%%/etc/changes/schema_tables_core_511.xml -%%WWWDIR%%/etc/changes/schema_tables_core_512.xml +%%WWWDIR%%/etc/changes/changes_tables_core_611.xml +%%WWWDIR%%/etc/changes/schema_tables_core_100.xml +%%WWWDIR%%/etc/changes/migration_tables_core_100.php +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.30-beta-rc5.php +%%WWWDIR%%/etc/changes/changes_tables_core_321.xml %%WWWDIR%%/etc/changes/schema_tables_core_513.xml -%%WWWDIR%%/etc/changes/schema_tables_core_515.xml -%%WWWDIR%%/etc/changes/schema_tables_core_516.xml -%%WWWDIR%%/etc/changes/schema_tables_core_530.xml -%%WWWDIR%%/etc/changes/schema_tables_core_531.xml -%%WWWDIR%%/etc/changes/schema_tables_core_532.xml -%%WWWDIR%%/etc/changes/schema_tables_core_533.xml -%%WWWDIR%%/etc/changes/schema_tables_core_534.xml -%%WWWDIR%%/etc/changes/schema_tables_core_535.xml -%%WWWDIR%%/etc/changes/schema_tables_core_536.xml -%%WWWDIR%%/etc/changes/schema_tables_core_537.xml -%%WWWDIR%%/etc/changes/schema_tables_core_538.xml -%%WWWDIR%%/etc/changes/schema_tables_core_539.xml -%%WWWDIR%%/etc/changes/schema_tables_core_540.xml -%%WWWDIR%%/etc/changes/schema_tables_core_541.xml -%%WWWDIR%%/etc/changes/schema_tables_core_542.xml -%%WWWDIR%%/etc/changes/schema_tables_core_543.xml -%%WWWDIR%%/etc/changes/schema_tables_core_544.xml -%%WWWDIR%%/etc/changes/schema_tables_core_546.xml -%%WWWDIR%%/etc/changes/schema_tables_core_547.xml -%%WWWDIR%%/etc/changes/schema_tables_core_548.xml -%%WWWDIR%%/etc/changes/schema_tables_core_580.xml -%%WWWDIR%%/etc/changes/schema_tables_core_581.xml -%%WWWDIR%%/etc/changes/schema_tables_core_582.xml -%%WWWDIR%%/etc/changes/schema_tables_core_583.xml -%%WWWDIR%%/etc/changes/schema_tables_core_584.xml -%%WWWDIR%%/etc/changes/schema_tables_core_600.xml -%%WWWDIR%%/etc/changes/schema_tables_core_601.xml -%%WWWDIR%%/etc/changes/schema_tables_core_602.xml -%%WWWDIR%%/etc/changes/schema_tables_core_603.xml %%WWWDIR%%/etc/changes/schema_tables_core_604.xml -%%WWWDIR%%/etc/changes/schema_tables_core_605.xml -%%WWWDIR%%/etc/changes/schema_tables_core_606.xml -%%WWWDIR%%/etc/changes/schema_tables_core_607.xml -%%WWWDIR%%/etc/changes/schema_tables_core_608.xml -%%WWWDIR%%/etc/changes/schema_tables_core_609.xml -%%WWWDIR%%/etc/changes/schema_tables_core_610.xml -%%WWWDIR%%/etc/changes/schema_tables_core_611.xml +%%WWWDIR%%/etc/changes/migration_tables_core_513.php +%%WWWDIR%%/etc/changes/migration_tables_core_604.php +%%WWWDIR%%/etc/changes/schema_tables_core_603.xml +%%WWWDIR%%/etc/changes/migration_tables_core_514.php +%%WWWDIR%%/etc/changes/migration_tables_core_603.php +%%WWWDIR%%/etc/changes/changes_tables_core_326.xml +%%WWWDIR%%/etc/changes/schema_tables_temp_statistics_500.xml +%%WWWDIR%%/etc/changes/migration_tables_core_612.php +%%WWWDIR%%/etc/changes/migration_tables_core_505.php %%WWWDIR%%/etc/changes/schema_tables_core_612.xml -%%WWWDIR%%/etc/changes/schema_tables_core_613.xml -%%WWWDIR%%/etc/changes/schema_tables_temp_priority_500.xml +%%WWWDIR%%/etc/changes/schema_tables_core_505.xml +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.5.67-beta-rc3.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.50-beta-rc1.xml +%%WWWDIR%%/etc/changes/changes_tables_core_609.xml +%%WWWDIR%%/etc/changes/changes_tables_core_330.xml +%%WWWDIR%%/etc/changes/schema_tables_core_049.xml +%%WWWDIR%%/etc/changes/changes_tables_core_607.xml +%%WWWDIR%%/etc/changes/changes_tables_core_510.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.0.11_to_2.3.32_beta.xml +%%WWWDIR%%/etc/changes/schema_tables_core_322.xml +%%WWWDIR%%/etc/changes/migration_tables_core_322.php +%%WWWDIR%%/etc/changes/schema_tables_core_325.xml +%%WWWDIR%%/etc/changes/migration_tables_core_325.php +%%WWWDIR%%/etc/changes/changes_tables_core_600.xml +%%WWWDIR%%/etc/changes/migration_tables_core_542.php +%%WWWDIR%%/etc/changes/migration_tables_core_123.php +%%WWWDIR%%/etc/changes/schema_tables_core_542.xml +%%WWWDIR%%/etc/changes/ConfigMigration.php +%%WWWDIR%%/etc/changes/schema_tables_core_123.xml +%%WWWDIR%%/etc/changes/prescript_openads_upgrade_2.0.11_to_2.3.32_beta.php +%%WWWDIR%%/etc/changes/migration_tables_core_124.php +%%WWWDIR%%/etc/changes/schema_tables_core_124.xml +%%WWWDIR%%/etc/changes/UserMigration.php +%%WWWDIR%%/etc/changes/changes_tables_core_12934a.xml +%%WWWDIR%%/etc/changes/migration_tables_core_539.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.8.xml +%%WWWDIR%%/etc/changes/schema_tables_core_539.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.67-beta-rc3.xml +%%WWWDIR%%/etc/changes/migration_tables_core_537.php +%%WWWDIR%%/etc/changes/schema_tables_core_537.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.1.xml +%%WWWDIR%%/etc/changes/migration_tables_core_530.php +%%WWWDIR%%/etc/changes/changes_tables_core_131.xml +%%WWWDIR%%/etc/changes/changes_tables_core_581.xml +%%WWWDIR%%/etc/changes/schema_tables_core_530.xml +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.12.php %%WWWDIR%%/etc/changes/schema_tables_temp_priority_501.xml -%%WWWDIR%%/etc/changes/schema_tables_temp_statistics_500.xml +%%WWWDIR%%/etc/changes/schema_tables_core_515.xml +%%WWWDIR%%/etc/changes/schema_tables_core_602.xml +%%WWWDIR%%/etc/changes/migration_tables_core_515.php +%%WWWDIR%%/etc/changes/migration_tables_core_602.php +%%WWWDIR%%/etc/changes/changes_tables_core_327.xml +%%WWWDIR%%/etc/changes/schema_tables_core_108.xml %%WWWDIR%%/etc/changes/schema_tables_temp_statistics_501.xml -%%WWWDIR%%/etc/changes/tasks/openads_upgrade_task_Maintenance_Priority.php -%%WWWDIR%%/etc/changes/tasks/openads_upgrade_task_Rebuild_Banner_Cache.php -%%WWWDIR%%/etc/changes/tasks/openads_upgrade_task_Recompile_Acls.php +%%WWWDIR%%/etc/changes/migration_tables_core_108.php +%%WWWDIR%%/etc/changes/schema_tables_core_512.xml +%%WWWDIR%%/etc/changes/schema_tables_core_605.xml +%%WWWDIR%%/etc/changes/migration_tables_core_512.php +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.31-beta-rc4.php +%%WWWDIR%%/etc/changes/migration_tables_core_605.php +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.7.30-beta-rc4.php +%%WWWDIR%%/etc/changes/migration_tables_core_332.php +%%WWWDIR%%/etc/changes/schema_tables_core_332.xml +%%WWWDIR%%/etc/changes/prescript_tables_core_399.php +%%WWWDIR%%/etc/changes/changes_tables_core_329.xml +%%WWWDIR%%/etc/changes/changes_tables_core_507.xml +%%WWWDIR%%/etc/changes/changes_tables_core_610.xml +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.1.29_to_2.3.32_beta.php +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.30-beta-rc4.xml +%%WWWDIR%%/etc/changes/schema_tables_core_300.xml +%%WWWDIR%%/etc/changes/schema_tables_core_583.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.46.xml +%%WWWDIR%%/etc/changes/migration_tables_core_583.php +%%WWWDIR%%/etc/changes/changes_tables_core_532.xml +%%WWWDIR%%/etc/changes/schema_tables_core_584.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.41.xml +%%WWWDIR%%/etc/changes/migration_tables_core_584.php +%%WWWDIR%%/etc/changes/changes_tables_core_535.xml +%%WWWDIR%%/etc/changes/schema_tables_core_199.xml +%%WWWDIR%%/etc/changes/migration_tables_core_199.php +%%WWWDIR%%/etc/changes/changes_tables_core_128.xml +%%WWWDIR%%/etc/changes/openads_upgrade_array.txt +%%WWWDIR%%/etc/changes/changes_tables_core_547.xml +%%WWWDIR%%/etc/changes/changes_tables_core_126.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.31-beta-rc4.xml +%%WWWDIR%%/etc/changes/changes_tables_core_540.xml +%%WWWDIR%%/etc/changes/changes_tables_core_121.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.5.48.xml %%WWWDIR%%/etc/changes/tools/DeliveryLimitationsMigration_128_324.php -%%WWWDIR%%/etc/core.pgsql.php -%%WWWDIR%%/etc/curl-ca-bundle.crt -%%WWWDIR%%/etc/database_action.xml -%%WWWDIR%%/etc/default_plugins.php -%%WWWDIR%%/etc/dist.conf.php -%%WWWDIR%%/etc/permanentcache/cache_adnetworks_getcategories.bin -%%WWWDIR%%/etc/permanentcache/cache_adnetworks_getcountries.bin -%%WWWDIR%%/etc/permanentcache/cache_adnetworks_getlanguages.bin -%%WWWDIR%%/etc/plugins/openX3rdPartyServers.zip -%%WWWDIR%%/etc/plugins/openXBannerTypes.zip -%%WWWDIR%%/etc/plugins/openXDeliveryCacheStore.zip -%%WWWDIR%%/etc/plugins/openXDeliveryLimitations.zip -%%WWWDIR%%/etc/plugins/openXDeliveryLog.zip -%%WWWDIR%%/etc/plugins/openXInvocationTags.zip -%%WWWDIR%%/etc/plugins/openXMarket.zip -%%WWWDIR%%/etc/plugins/openXMaxMindGeoIP.zip -%%WWWDIR%%/etc/plugins/openXReports.zip -%%WWWDIR%%/etc/plugins/openXVideoAds.zip -%%WWWDIR%%/etc/plugins/openXWorkflow.zip -%%WWWDIR%%/etc/sim.conf.php -%%WWWDIR%%/etc/tables_core.xml -%%WWWDIR%%/etc/tables_temp_priority.xml -%%WWWDIR%%/etc/tables_temp_statistics.xml -%%WWWDIR%%/etc/upgrade_action.xml -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-100.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-108.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-121.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-122.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-123.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-124.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-125.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-126.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-127.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-128.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-129.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-12934a.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-130.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-131.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-199.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-308.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-321.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-322.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-323.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-324.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-325.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-326.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-327.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-328.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-329.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-330.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-331.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-332.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-334.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-336.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-399.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-505.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-506.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-507.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-510.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-511.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-512.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-513.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-515.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-516.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-530.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-531.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-532.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-533.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-534.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-535.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-536.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-537.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-538.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-539.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-540.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-541.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-542.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-543.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-544.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-546.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-547.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-548.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-580.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-581.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-582.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-583.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-584.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-600.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-601.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-602.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-603.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-604.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-605.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-606.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-607.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-608.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-609.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-610.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-611.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-612.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-core-613.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-temp-priority-501.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_changes-tables-temp-statistics-501.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-049.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-099.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-100.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-108.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-121.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-122.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-123.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-124.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-125.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-126.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-127.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-128.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-129.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-12934.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-12934a.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-130.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-131.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-199.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-300.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-308.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-321.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-322.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-323.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-324.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-325.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-326.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-327.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-328.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-329.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-330.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-331.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-332.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-334.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-336.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-399.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-500.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-505.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-506.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-507.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-510.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-511.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-512.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-513.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-515.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-516.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-530.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-531.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-532.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-533.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-534.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-535.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-536.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-537.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-538.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-539.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-540.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-541.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-542.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-543.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-544.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-546.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-547.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-548.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-580.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-581.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-582.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-583.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-584.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-600.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-601.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-602.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-603.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-604.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-605.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-606.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-607.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-608.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-609.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-610.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-611.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-612.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-core-613.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-temp-priority-500.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-temp-priority-501.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-temp-statistics-500.bin -%%WWWDIR%%/etc/xmlcache/cache_etc-changes_schema-tables-temp-statistics-501.bin -%%WWWDIR%%/etc/xmlcache/cache_etc_tables-core.bin -%%WWWDIR%%/etc/xmlcache/cache_etc_tables-temp-priority.bin -%%WWWDIR%%/etc/xmlcache/cache_etc_tables-temp-statistics.bin -%%WWWDIR%%/index.php -%%WWWDIR%%/init-delivery-parse.php -%%WWWDIR%%/init-delivery.php -%%WWWDIR%%/init-parse.php +%%WWWDIR%%/etc/changes/migration_tables_core_531.php +%%WWWDIR%%/etc/changes/changes_tables_core_130.xml +%%WWWDIR%%/etc/changes/changes_tables_core_580.xml +%%WWWDIR%%/etc/changes/schema_tables_core_531.xml +%%WWWDIR%%/etc/changes/changes_tables_temp_statistics_501.xml +%%WWWDIR%%/etc/changes/schema_tables_temp_priority_500.xml +%%WWWDIR%%/etc/changes/migration_tables_core_536.php +%%WWWDIR%%/etc/changes/schema_tables_core_536.xml +%%WWWDIR%%/etc/changes/migration_tables_core_544.php +%%WWWDIR%%/etc/changes/migration_tables_core_125.php +%%WWWDIR%%/etc/changes/schema_tables_core_544.xml +%%WWWDIR%%/etc/changes/schema_tables_core_125.xml +%%WWWDIR%%/etc/changes/migration_tables_core_538.php +%%WWWDIR%%/etc/changes/schema_tables_core_538.xml +%%WWWDIR%%/etc/changes/migration_tables_core_543.php +%%WWWDIR%%/etc/changes/migration_tables_core_122.php +%%WWWDIR%%/etc/changes/schema_tables_core_543.xml +%%WWWDIR%%/etc/changes/schema_tables_core_122.xml +%%WWWDIR%%/etc/changes/postscript_openads_upgrade_2.3.36-beta-rc1.php +%%WWWDIR%%/etc/changes/schema_tables_core_324.xml +%%WWWDIR%%/etc/changes/migration_tables_core_324.php +%%WWWDIR%%/etc/changes/changes_tables_core_601.xml +%%WWWDIR%%/etc/changes/changes_tables_core_516.xml +%%WWWDIR%%/etc/changes/changes_tables_core_606.xml +%%WWWDIR%%/etc/changes/changes_tables_core_511.xml +%%WWWDIR%%/etc/changes/schema_tables_core_099.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.3.36-beta-rc1.xml +%%WWWDIR%%/etc/changes/schema_tables_core_323.xml +%%WWWDIR%%/etc/changes/migration_tables_core_323.php +%%WWWDIR%%/etc/changes/changes_tables_core_608.xml +%%WWWDIR%%/etc/changes/changes_tables_core_331.xml +%%WWWDIR%%/etc/changes/migration_tables_core_613.php +%%WWWDIR%%/etc/changes/schema_tables_core_613.xml +%%WWWDIR%%/etc/changes/changes_tables_core_336.xml +%%WWWDIR%%/etc/changes/openads_upgrade_2.7.6.xml +%%WWWDIR%%/adx.js %%WWWDIR%%/init.php -%%WWWDIR%%/lib/.htaccess -%%WWWDIR%%/lib/JSON/JSON.php -%%WWWDIR%%/lib/Max.php -%%WWWDIR%%/lib/OA.php -%%WWWDIR%%/lib/OA/Admin/DaySpan.php -%%WWWDIR%%/lib/OA/Admin/ExcelWriter.php -%%WWWDIR%%/lib/OA/Admin/Help.php -%%WWWDIR%%/lib/OA/Admin/Menu.php -%%WWWDIR%%/lib/OA/Admin/Menu/CompoundChecker.php -%%WWWDIR%%/lib/OA/Admin/Menu/IChecker.php -%%WWWDIR%%/lib/OA/Admin/Menu/Section.php -%%WWWDIR%%/lib/OA/Admin/Menu/SectionAccountChecker.php -%%WWWDIR%%/lib/OA/Admin/Menu/SectionCheckerFilter.php -%%WWWDIR%%/lib/OA/Admin/Menu/SectionPermissionChecker.php -%%WWWDIR%%/lib/OA/Admin/Menu/SectionTypeFilter.php -%%WWWDIR%%/lib/OA/Admin/Menu/config.php -%%WWWDIR%%/lib/OA/Admin/NumberFormat.php -%%WWWDIR%%/lib/OA/Admin/Option.php -%%WWWDIR%%/lib/OA/Admin/PasswordRecovery.php -%%WWWDIR%%/lib/OA/Admin/Reports/Export.php -%%WWWDIR%%/lib/OA/Admin/Reports/Generate.php -%%WWWDIR%%/lib/OA/Admin/Reports/Index.php -%%WWWDIR%%/lib/OA/Admin/Settings.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Common.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Daily.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Common.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/CommonCrossEntity.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/CommonCrossHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/CommonEntity.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/CommonHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserAffiliateHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserAffiliates.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserCampaigns.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserDaily.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserZoneHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateBannerHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateCampaignHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateCampaigns.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateDaily.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateZones.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/BannerAffiliateHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/BannerAffiliates.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/BannerDaily.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/BannerHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/BannerZoneHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignAffiliateHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignAffiliates.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignBanners.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignDaily.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignZoneHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/GlobalAdvertiser.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/GlobalAffiliates.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/GlobalDaily.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/GlobalHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/ZoneBannerHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/ZoneCampaignHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/ZoneCampaigns.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/ZoneDaily.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/ZoneHistory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Flexy.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/themes/breakdown_by_date.html -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/themes/breakdown_by_entity.html -%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/themes/breakdown_by_week.html -%%WWWDIR%%/lib/OA/Admin/Statistics/Factory.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Fields/Delivery.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Fields/Delivery/Affiliates.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Fields/Delivery/Default.php -%%WWWDIR%%/lib/OA/Admin/Statistics/Flexy.php -%%WWWDIR%%/lib/OA/Admin/Statistics/History.php -%%WWWDIR%%/lib/OA/Admin/Template.php -%%WWWDIR%%/lib/OA/Admin/TemplatePlugin.php -%%WWWDIR%%/lib/OA/Admin/UI.php -%%WWWDIR%%/lib/OA/Admin/UI/AccountSwitch.php -%%WWWDIR%%/lib/OA/Admin/UI/CampaignZoneLink.php -%%WWWDIR%%/lib/OA/Admin/UI/Field/AuditDaySpanField.php -%%WWWDIR%%/lib/OA/Admin/UI/NotificationManager.php -%%WWWDIR%%/lib/OA/Admin/UI/Search.php -%%WWWDIR%%/lib/OA/Admin/UI/SmartyInserts.php -%%WWWDIR%%/lib/OA/Admin/UI/UserAccess.php -%%WWWDIR%%/lib/OA/Admin/UI/component/ArrayRenderer.php -%%WWWDIR%%/lib/OA/Admin/UI/component/CustomFormElement.php -%%WWWDIR%%/lib/OA/Admin/UI/component/CustomPluginFormElement.php -%%WWWDIR%%/lib/OA/Admin/UI/component/Form.php -%%WWWDIR%%/lib/OA/Admin/UI/component/FormBreak.php -%%WWWDIR%%/lib/OA/Admin/UI/component/FormControls.php -%%WWWDIR%%/lib/OA/Admin/UI/component/Html.php -%%WWWDIR%%/lib/OA/Admin/UI/component/Page.php -%%WWWDIR%%/lib/OA/Admin/UI/component/PluginPage.php -%%WWWDIR%%/lib/OA/Admin/UI/component/PluginScriptFormElement.php -%%WWWDIR%%/lib/OA/Admin/UI/component/ScriptFormElement.php -%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/AbstractDecorator.php -%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/Decorator.php -%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/DecoratorFactory.php -%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/DecoratorRegistry.php -%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/HTMLTagDecorator.php -%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/ProcessingDecorator.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/BaseQuickFormRuleToJQueryRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/DecimalPlaces.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/Equal.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/JQueryValidationRuleBuilder.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/Max.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/Min.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormDecimalPlacesAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormDigitsRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormEmailRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormEqualRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormMaxLengthRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormMaxRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormMinLengthRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormMinRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormNonZeroRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormNumberRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormRequiredRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormRuleToJQueryRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormUniqueRuleAdaptor.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/RuleAdaptorRegistry.php -%%WWWDIR%%/lib/OA/Admin/UI/component/rule/Unique.php -%%WWWDIR%%/lib/OA/Admin/UI/model/EntityBreadcrumbModel.php -%%WWWDIR%%/lib/OA/Admin/UI/model/EntityBreadcrumbSegment.php -%%WWWDIR%%/lib/OA/Admin/UI/model/InventoryPageHeaderModelBuilder.php -%%WWWDIR%%/lib/OA/Admin/UI/model/PageHeaderModel.php -%%WWWDIR%%/lib/OA/Algorithm/Dependency.php -%%WWWDIR%%/lib/OA/Algorithm/Dependency/Item.php -%%WWWDIR%%/lib/OA/Algorithm/Dependency/Ordered.php -%%WWWDIR%%/lib/OA/Algorithm/Dependency/Source.php -%%WWWDIR%%/lib/OA/Algorithm/Dependency/Source/HoA.php -%%WWWDIR%%/lib/OA/Auth.php -%%WWWDIR%%/lib/OA/BaseObjectWithErrors.php -%%WWWDIR%%/lib/OA/Cache.php -%%WWWDIR%%/lib/OA/Cache/DeliveryCacheCommon.php -%%WWWDIR%%/lib/OA/Cache/DeliveryCacheManager.php -%%WWWDIR%%/lib/OA/Central.php -%%WWWDIR%%/lib/OA/Central/AdNetworks.php -%%WWWDIR%%/lib/OA/Central/Common.php -%%WWWDIR%%/lib/OA/Central/CurrencyFX.php -%%WWWDIR%%/lib/OA/Central/Dashboard.php -%%WWWDIR%%/lib/OA/Central/M2M.php -%%WWWDIR%%/lib/OA/Central/M2MProtectedRpc.php -%%WWWDIR%%/lib/OA/Central/M2MTicketProviderImpl.php -%%WWWDIR%%/lib/OA/Central/RpcMapper.php -%%WWWDIR%%/lib/OA/Central/SimpleFunctionCache.php -%%WWWDIR%%/lib/OA/Creative.php -%%WWWDIR%%/lib/OA/Creative/File.php -%%WWWDIR%%/lib/OA/Creative/File/Image.php -%%WWWDIR%%/lib/OA/Creative/File/RichMedia.php -%%WWWDIR%%/lib/OA/Creative/File/Swf.php -%%WWWDIR%%/lib/OA/DB.php -%%WWWDIR%%/lib/OA/DB/AdvisoryLock.php -%%WWWDIR%%/lib/OA/DB/AdvisoryLock/file.php -%%WWWDIR%%/lib/OA/DB/AdvisoryLock/mysql.php -%%WWWDIR%%/lib/OA/DB/AdvisoryLock/pgsql.php -%%WWWDIR%%/lib/OA/DB/Charset.php -%%WWWDIR%%/lib/OA/DB/Charset/mysql.php -%%WWWDIR%%/lib/OA/DB/Charset/pgsql.php -%%WWWDIR%%/lib/OA/DB/CustomDatatypes/mysql.php -%%WWWDIR%%/lib/OA/DB/CustomDatatypes/mysql_info.php -%%WWWDIR%%/lib/OA/DB/CustomDatatypes/pgsql.php -%%WWWDIR%%/lib/OA/DB/CustomDatatypes/pgsql_info.php -%%WWWDIR%%/lib/OA/DB/DataObject/Generator.php -%%WWWDIR%%/lib/OA/DB/Distributed.php -%%WWWDIR%%/lib/OA/DB/Sql.php -%%WWWDIR%%/lib/OA/DB/Table.php -%%WWWDIR%%/lib/OA/DB/Table/Core.php -%%WWWDIR%%/lib/OA/DB/Table/Priority.php -%%WWWDIR%%/lib/OA/DB/Table/Statistics.php -%%WWWDIR%%/lib/OA/DB/XmlCache.php -%%WWWDIR%%/lib/OA/Dal.php -%%WWWDIR%%/lib/OA/Dal/ApplicationVariables.php -%%WWWDIR%%/lib/OA/Dal/Central/AdNetworks.php -%%WWWDIR%%/lib/OA/Dal/Central/Common.php -%%WWWDIR%%/lib/OA/Dal/Central/M2M.php -%%WWWDIR%%/lib/OA/Dal/Central/Rpc.php -%%WWWDIR%%/lib/OA/Dal/DataGenerator.php -%%WWWDIR%%/lib/OA/Dal/Delivery.php -%%WWWDIR%%/lib/OA/Dal/Delivery/mysql.php -%%WWWDIR%%/lib/OA/Dal/Delivery/pgsql.php -%%WWWDIR%%/lib/OA/Dal/Delivery/xmlrpc.php -%%WWWDIR%%/lib/OA/Dal/Links.php -%%WWWDIR%%/lib/OA/Dal/Maintenance/Common.php -%%WWWDIR%%/lib/OA/Dal/Maintenance/Priority.php -%%WWWDIR%%/lib/OA/Dal/Maintenance/UI.php -%%WWWDIR%%/lib/OA/Dal/PasswordRecovery.php -%%WWWDIR%%/lib/OA/Dal/Statistics.php -%%WWWDIR%%/lib/OA/Dal/Statistics/Advertiser.php -%%WWWDIR%%/lib/OA/Dal/Statistics/Agency.php -%%WWWDIR%%/lib/OA/Dal/Statistics/Banner.php -%%WWWDIR%%/lib/OA/Dal/Statistics/Campaign.php -%%WWWDIR%%/lib/OA/Dal/Statistics/Publisher.php -%%WWWDIR%%/lib/OA/Dal/Statistics/Zone.php -%%WWWDIR%%/lib/OA/Dashboard/Feed.php -%%WWWDIR%%/lib/OA/Dashboard/Graph.php -%%WWWDIR%%/lib/OA/Dashboard/Widget.php -%%WWWDIR%%/lib/OA/Dashboard/Widgets/Audit.php -%%WWWDIR%%/lib/OA/Dashboard/Widgets/BlogFeed.php -%%WWWDIR%%/lib/OA/Dashboard/Widgets/CampaignOverview.php -%%WWWDIR%%/lib/OA/Dashboard/Widgets/Disabled.php -%%WWWDIR%%/lib/OA/Dashboard/Widgets/ForumFeed.php -%%WWWDIR%%/lib/OA/Dashboard/Widgets/GraphOAC.php -%%WWWDIR%%/lib/OA/Dashboard/Widgets/GraphOAP.php -%%WWWDIR%%/lib/OA/Dashboard/Widgets/Index.php -%%WWWDIR%%/lib/OA/Dashboard/Widgets/Reload.php -%%WWWDIR%%/lib/OA/Dll.php -%%WWWDIR%%/lib/OA/Dll/Advertiser.php -%%WWWDIR%%/lib/OA/Dll/AdvertiserInfo.php -%%WWWDIR%%/lib/OA/Dll/Agency.php -%%WWWDIR%%/lib/OA/Dll/AgencyInfo.php -%%WWWDIR%%/lib/OA/Dll/Audit.php -%%WWWDIR%%/lib/OA/Dll/Banner.php -%%WWWDIR%%/lib/OA/Dll/BannerInfo.php -%%WWWDIR%%/lib/OA/Dll/Campaign.php -%%WWWDIR%%/lib/OA/Dll/CampaignInfo.php -%%WWWDIR%%/lib/OA/Dll/Channel.php -%%WWWDIR%%/lib/OA/Dll/ChannelInfo.php -%%WWWDIR%%/lib/OA/Dll/Publisher.php -%%WWWDIR%%/lib/OA/Dll/PublisherInfo.php -%%WWWDIR%%/lib/OA/Dll/TargetingInfo.php -%%WWWDIR%%/lib/OA/Dll/Tracker.php -%%WWWDIR%%/lib/OA/Dll/TrackerInfo.php -%%WWWDIR%%/lib/OA/Dll/User.php -%%WWWDIR%%/lib/OA/Dll/UserInfo.php -%%WWWDIR%%/lib/OA/Dll/Variable.php -%%WWWDIR%%/lib/OA/Dll/VariableInfo.php -%%WWWDIR%%/lib/OA/Dll/Zone.php -%%WWWDIR%%/lib/OA/Dll/ZoneInfo.php -%%WWWDIR%%/lib/OA/Email.php -%%WWWDIR%%/lib/OA/Info.php -%%WWWDIR%%/lib/OA/Maintenance/Auto.php -%%WWWDIR%%/lib/OA/Maintenance/Priority.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/Ad.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/AllocateZoneImpressions.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/ECPMCommon.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/ECPMforContract.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/ECPMforRemnant.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/GetRequiredAdImpressions.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/GetRequiredAdImpressionsDaily.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/GetRequiredAdImpressionsLifetime.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/PriorityCompensation.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/DeliveryLimitation.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/DeliveryLimitation/Common.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/DeliveryLimitation/Empty.php -%%WWWDIR%%/lib/OA/Maintenance/Priority/DeliveryLimitation/Factory.php -%%WWWDIR%%/lib/OA/Maintenance/Pruning.php -%%WWWDIR%%/lib/OA/Maintenance/Regenerate.php -%%WWWDIR%%/lib/OA/Maintenance/RollupStats.php -%%WWWDIR%%/lib/OA/Maintenance/Status.php -%%WWWDIR%%/lib/OA/PermanentCache.php -%%WWWDIR%%/lib/OA/Permission.php -%%WWWDIR%%/lib/OA/Permission/SystemUser.php -%%WWWDIR%%/lib/OA/Permission/User.php -%%WWWDIR%%/lib/OA/Preferences.php -%%WWWDIR%%/lib/OA/ServiceLocator.php -%%WWWDIR%%/lib/OA/Session.php -%%WWWDIR%%/lib/OA/Sync.php -%%WWWDIR%%/lib/OA/Task.php -%%WWWDIR%%/lib/OA/Task/Runner.php -%%WWWDIR%%/lib/OA/Upgrade/BaseUpgradeAuditor.php -%%WWWDIR%%/lib/OA/Upgrade/Configuration.php -%%WWWDIR%%/lib/OA/Upgrade/DB_Integrity.php -%%WWWDIR%%/lib/OA/Upgrade/DB_Upgrade.php -%%WWWDIR%%/lib/OA/Upgrade/DB_UpgradeAuditor.php -%%WWWDIR%%/lib/OA/Upgrade/EnvironmentManager.php -%%WWWDIR%%/lib/OA/Upgrade/Login.php -%%WWWDIR%%/lib/OA/Upgrade/Migration.php -%%WWWDIR%%/lib/OA/Upgrade/Upgrade.php -%%WWWDIR%%/lib/OA/Upgrade/UpgradeAuditor.php -%%WWWDIR%%/lib/OA/Upgrade/UpgradeLogger.php -%%WWWDIR%%/lib/OA/Upgrade/UpgradePackageParser.php -%%WWWDIR%%/lib/OA/Upgrade/UpgradePluginImport.php -%%WWWDIR%%/lib/OA/Upgrade/VersionController.php -%%WWWDIR%%/lib/OA/Upgrade/phpAdsNew.php -%%WWWDIR%%/lib/OA/XmlRpcClient.php -%%WWWDIR%%/lib/OX.php -%%WWWDIR%%/lib/OX/Admin/Redirect.php -%%WWWDIR%%/lib/OX/Admin/Timezones.php -%%WWWDIR%%/lib/OX/Admin/UI/Controller/BaseController.php -%%WWWDIR%%/lib/OX/Admin/UI/Controller/Request.php -%%WWWDIR%%/lib/OX/Admin/UI/Event/EventContext.php -%%WWWDIR%%/lib/OX/Admin/UI/Event/EventDispatcher.php -%%WWWDIR%%/lib/OX/Admin/UI/Hooks.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/AdminLoginForm.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/BaseForm.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/ConfigForm.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/DbForm.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/InstallController.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/InstallStatus.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/InstallUtils.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/SkipSsoForm.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/SsoErrorBuilder.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/SsoLoginForm.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/SsoSignupForm.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/SystemCheckModelBuilder.php -%%WWWDIR%%/lib/OX/Admin/UI/Install/Wizard.php -%%WWWDIR%%/lib/OX/Admin/UI/Minify/Server.php -%%WWWDIR%%/lib/OX/Admin/UI/SessionStorage.php -%%WWWDIR%%/lib/OX/Admin/UI/Storage.php -%%WWWDIR%%/lib/OX/Admin/UI/ViewHooks.php -%%WWWDIR%%/lib/OX/Admin/UI/Wizard.php -%%WWWDIR%%/lib/OX/Admin/UI/WizardSteps.php -%%WWWDIR%%/lib/OX/Dal/Maintenance/Statistics.php -%%WWWDIR%%/lib/OX/Dal/Maintenance/Statistics/Factory.php -%%WWWDIR%%/lib/OX/Dal/Maintenance/Statistics/Mysql.php -%%WWWDIR%%/lib/OX/Dal/Maintenance/Statistics/Pgsql.php -%%WWWDIR%%/lib/OX/Dal/Market/MarketPluginTools.php -%%WWWDIR%%/lib/OX/Dal/Market/RegistrationClient.php -%%WWWDIR%%/lib/OX/Extension.php -%%WWWDIR%%/lib/OX/Extension/3rdPartyServers/3rdPartyServers.php -%%WWWDIR%%/lib/OX/Extension/ExtensionCommon.php -%%WWWDIR%%/lib/OX/Extension/ExtensionDelivery.php -%%WWWDIR%%/lib/OX/Extension/admin.php -%%WWWDIR%%/lib/OX/Extension/api/Api.php -%%WWWDIR%%/lib/OX/Extension/authentication/authentication.php -%%WWWDIR%%/lib/OX/Extension/bannerTypeHtml/bannerTypeHtml.php -%%WWWDIR%%/lib/OX/Extension/bannerTypeHtml/bannerTypeHtmlDelivery.php -%%WWWDIR%%/lib/OX/Extension/bannerTypeText/bannerTypeText.php -%%WWWDIR%%/lib/OX/Extension/bannerTypeText/bannerTypeTextDelivery.php -%%WWWDIR%%/lib/OX/Extension/deliveryAdRender.php -%%WWWDIR%%/lib/OX/Extension/deliveryAdSelect.php -%%WWWDIR%%/lib/OX/Extension/deliveryAdSelect/DeliveryAdSelect.php -%%WWWDIR%%/lib/OX/Extension/deliveryCacheStore/DeliveryCacheStore.php -%%WWWDIR%%/lib/OX/Extension/deliveryCacheStore/deliveryCacheStoreDelivery.php -%%WWWDIR%%/lib/OX/Extension/deliveryDataPrepare.php -%%WWWDIR%%/lib/OX/Extension/deliveryLimitations.php -%%WWWDIR%%/lib/OX/Extension/deliveryLimitations/DeliveryLimitations.php -%%WWWDIR%%/lib/OX/Extension/deliveryLimitations/DeliveryLimitationsArrayData.php -%%WWWDIR%%/lib/OX/Extension/deliveryLimitations/DeliveryLimitationsCommaSeparatedData.php -%%WWWDIR%%/lib/OX/Extension/deliveryLimitations/DeliveryLimitationsResourceData.php -%%WWWDIR%%/lib/OX/Extension/deliveryLog.php -%%WWWDIR%%/lib/OX/Extension/deliveryLog/AggregateBucketProcessingStrategyMysql.php -%%WWWDIR%%/lib/OX/Extension/deliveryLog/AggregateBucketProcessingStrategyPgsql.php -%%WWWDIR%%/lib/OX/Extension/deliveryLog/BucketProcessingStrategy.php -%%WWWDIR%%/lib/OX/Extension/deliveryLog/BucketProcessingStrategyFactory.php -%%WWWDIR%%/lib/OX/Extension/deliveryLog/DB/Common.php -%%WWWDIR%%/lib/OX/Extension/deliveryLog/DB/Pgsql.php -%%WWWDIR%%/lib/OX/Extension/deliveryLog/DeliveryLog.php -%%WWWDIR%%/lib/OX/Extension/deliveryLog/RawBucketProcessingStrategyMysql.php -%%WWWDIR%%/lib/OX/Extension/deliveryLog/RawBucketProcessingStrategyPgsql.php -%%WWWDIR%%/lib/OX/Extension/deliveryLog/Setup.php -%%WWWDIR%%/lib/OX/Extension/deliveryTrackerRender.php -%%WWWDIR%%/lib/OX/Extension/invocationTags.php -%%WWWDIR%%/lib/OX/Extension/invocationTags/InvocationTags.php -%%WWWDIR%%/lib/OX/Extension/invocationTags/InvocationTagsOptions.php -%%WWWDIR%%/lib/OX/Extension/maintenancePriorityTask/MaintenancePriorityTask.php -%%WWWDIR%%/lib/OX/Extension/maintenanceStatisticsTask/MaintenanceStatisticsTask.php -%%WWWDIR%%/lib/OX/Extension/reports/Reports.php -%%WWWDIR%%/lib/OX/Extension/reports/ReportsScope.php -%%WWWDIR%%/lib/OX/Extension/reports/default.plugin.conf.php -%%WWWDIR%%/lib/OX/M2M/AbstractService.php -%%WWWDIR%%/lib/OX/M2M/M2MDataProvider.php -%%WWWDIR%%/lib/OX/M2M/M2MProtectedRpc.php -%%WWWDIR%%/lib/OX/M2M/M2MService.php -%%WWWDIR%%/lib/OX/M2M/M2MServiceImpl.php -%%WWWDIR%%/lib/OX/M2M/M2MTicketProvider.php -%%WWWDIR%%/lib/OX/M2M/M2MTicketProviderImpl.php -%%WWWDIR%%/lib/OX/M2M/PearXmlRpcCustomClientException.php -%%WWWDIR%%/lib/OX/M2M/PearXmlRpcCustomClientExecutor.php -%%WWWDIR%%/lib/OX/M2M/XmlRpcErrorCodes.php -%%WWWDIR%%/lib/OX/M2M/XmlRpcExecutor.php -%%WWWDIR%%/lib/OX/M2M/ZendXmlRpcExecutor.php -%%WWWDIR%%/lib/OX/Maintenance.php -%%WWWDIR%%/lib/OX/Maintenance/Distributed.php -%%WWWDIR%%/lib/OX/Maintenance/Priority/Campaign.php -%%WWWDIR%%/lib/OX/Maintenance/Priority/Zone.php -%%WWWDIR%%/lib/OX/Maintenance/Statistics.php -%%WWWDIR%%/lib/OX/Maintenance/Statistics/MigrateBucketData.php -%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task.php -%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/DeduplicateConversions.php -%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/LogCompletion.php -%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/ManageCampaigns.php -%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/ManageConversions.php -%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/SetUpdateRequirements.php -%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/SummariseFinal.php -%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/SummariseIntermediate.php -%%WWWDIR%%/lib/OX/Maintenance/Statistics/TestAndCorrect.php -%%WWWDIR%%/lib/OX/OperationInterval.php -%%WWWDIR%%/lib/OX/PC/API/SimpleClient.php -%%WWWDIR%%/lib/OX/PC/API/SimpleClientException.php -%%WWWDIR%%/lib/OX/Plugin/Component.php -%%WWWDIR%%/lib/OX/Plugin/ComponentGroupManager.php -%%WWWDIR%%/lib/OX/Plugin/ParserBase.php -%%WWWDIR%%/lib/OX/Plugin/ParserComponentGroup.php -%%WWWDIR%%/lib/OX/Plugin/ParserPlugin.php -%%WWWDIR%%/lib/OX/Plugin/PluginExport.php -%%WWWDIR%%/lib/OX/Plugin/PluginManager.php -%%WWWDIR%%/lib/OX/Plugin/UpgradeComponentGroup.php -%%WWWDIR%%/lib/OX/Translation.php -%%WWWDIR%%/lib/OX/Upgrade/InstallConfig.php -%%WWWDIR%%/lib/OX/Upgrade/InstallPlugin/Controller.php -%%WWWDIR%%/lib/OX/Upgrade/MarketClientFactory.php -%%WWWDIR%%/lib/OX/Upgrade/PostUpgradeTask/Controller.php -%%WWWDIR%%/lib/OX/Upgrade/PostUpgradeTask/MessagesCollector.php -%%WWWDIR%%/lib/OX/Upgrade/Util/Job.php -%%WWWDIR%%/lib/OX/Upgrade/Util/PlatformHashManager.php -%%WWWDIR%%/lib/OX/Util/CodeMunger.php -%%WWWDIR%%/lib/OX/Util/ConnectionUtils.php -%%WWWDIR%%/lib/OX/Util/Utils.php -%%WWWDIR%%/lib/Zend/Exception.php -%%WWWDIR%%/lib/Zend/Http/Client.php -%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Curl.php -%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Exception.php -%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Interface.php -%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Proxy.php -%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Socket.php -%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Test.php -%%WWWDIR%%/lib/Zend/Http/Client/Exception.php -%%WWWDIR%%/lib/Zend/Http/Cookie.php -%%WWWDIR%%/lib/Zend/Http/CookieJar.php -%%WWWDIR%%/lib/Zend/Http/Exception.php -%%WWWDIR%%/lib/Zend/Http/Response.php -%%WWWDIR%%/lib/Zend/Loader.php -%%WWWDIR%%/lib/Zend/Locale.php -%%WWWDIR%%/lib/Zend/Locale/Data.php -%%WWWDIR%%/lib/Zend/Locale/Data/Translation.php -%%WWWDIR%%/lib/Zend/Locale/Data/cs.xml -%%WWWDIR%%/lib/Zend/Locale/Data/de.xml -%%WWWDIR%%/lib/Zend/Locale/Data/en.xml -%%WWWDIR%%/lib/Zend/Locale/Data/es.xml -%%WWWDIR%%/lib/Zend/Locale/Data/fa.xml -%%WWWDIR%%/lib/Zend/Locale/Data/fr.xml -%%WWWDIR%%/lib/Zend/Locale/Data/he.xml -%%WWWDIR%%/lib/Zend/Locale/Data/hu.xml -%%WWWDIR%%/lib/Zend/Locale/Data/id.xml -%%WWWDIR%%/lib/Zend/Locale/Data/it.xml -%%WWWDIR%%/lib/Zend/Locale/Data/ja.xml -%%WWWDIR%%/lib/Zend/Locale/Data/ko.xml -%%WWWDIR%%/lib/Zend/Locale/Data/nl.xml -%%WWWDIR%%/lib/Zend/Locale/Data/pl.xml -%%WWWDIR%%/lib/Zend/Locale/Data/pt_BR.xml -%%WWWDIR%%/lib/Zend/Locale/Data/root.xml -%%WWWDIR%%/lib/Zend/Locale/Data/ru.xml -%%WWWDIR%%/lib/Zend/Locale/Data/tr.xml -%%WWWDIR%%/lib/Zend/Locale/Data/zh_CN.xml -%%WWWDIR%%/lib/Zend/Locale/Exception.php -%%WWWDIR%%/lib/Zend/Locale/Format.php -%%WWWDIR%%/lib/Zend/Locale/Math.php -%%WWWDIR%%/lib/Zend/Locale/Math/Exception.php -%%WWWDIR%%/lib/Zend/Locale/Math/PhpMath.php -%%WWWDIR%%/lib/Zend/Registry.php -%%WWWDIR%%/lib/Zend/Translate.php -%%WWWDIR%%/lib/Zend/Translate/Adapter.php -%%WWWDIR%%/lib/Zend/Translate/Adapter/Array.php -%%WWWDIR%%/lib/Zend/Translate/Adapter/Csv.php -%%WWWDIR%%/lib/Zend/Translate/Adapter/Gettext.php -%%WWWDIR%%/lib/Zend/Translate/Adapter/Qt.php -%%WWWDIR%%/lib/Zend/Translate/Adapter/Tbx.php -%%WWWDIR%%/lib/Zend/Translate/Adapter/Tmx.php -%%WWWDIR%%/lib/Zend/Translate/Adapter/Xliff.php -%%WWWDIR%%/lib/Zend/Translate/Adapter/XmlTm.php -%%WWWDIR%%/lib/Zend/Translate/Exception.php -%%WWWDIR%%/lib/Zend/Uri.php -%%WWWDIR%%/lib/Zend/Uri/Exception.php -%%WWWDIR%%/lib/Zend/Uri/Http.php -%%WWWDIR%%/lib/Zend/Validate/Abstract.php -%%WWWDIR%%/lib/Zend/Validate/Alnum.php -%%WWWDIR%%/lib/Zend/Validate/Alpha.php -%%WWWDIR%%/lib/Zend/Validate/Barcode.php -%%WWWDIR%%/lib/Zend/Validate/Barcode/Ean13.php -%%WWWDIR%%/lib/Zend/Validate/Barcode/UpcA.php -%%WWWDIR%%/lib/Zend/Validate/Between.php -%%WWWDIR%%/lib/Zend/Validate/Ccnum.php -%%WWWDIR%%/lib/Zend/Validate/Date.php -%%WWWDIR%%/lib/Zend/Validate/Digits.php -%%WWWDIR%%/lib/Zend/Validate/EmailAddress.php -%%WWWDIR%%/lib/Zend/Validate/Exception.php -%%WWWDIR%%/lib/Zend/Validate/Float.php -%%WWWDIR%%/lib/Zend/Validate/GreaterThan.php -%%WWWDIR%%/lib/Zend/Validate/Hex.php -%%WWWDIR%%/lib/Zend/Validate/Hostname.php -%%WWWDIR%%/lib/Zend/Validate/Hostname/At.php -%%WWWDIR%%/lib/Zend/Validate/Hostname/Ch.php -%%WWWDIR%%/lib/Zend/Validate/Hostname/De.php -%%WWWDIR%%/lib/Zend/Validate/Hostname/Fi.php -%%WWWDIR%%/lib/Zend/Validate/Hostname/Hu.php -%%WWWDIR%%/lib/Zend/Validate/Hostname/Interface.php -%%WWWDIR%%/lib/Zend/Validate/Hostname/Li.php -%%WWWDIR%%/lib/Zend/Validate/Hostname/No.php -%%WWWDIR%%/lib/Zend/Validate/Hostname/Se.php -%%WWWDIR%%/lib/Zend/Validate/Identical.php -%%WWWDIR%%/lib/Zend/Validate/InArray.php -%%WWWDIR%%/lib/Zend/Validate/Int.php -%%WWWDIR%%/lib/Zend/Validate/Interface.php -%%WWWDIR%%/lib/Zend/Validate/Ip.php -%%WWWDIR%%/lib/Zend/Validate/LessThan.php -%%WWWDIR%%/lib/Zend/Validate/NotEmpty.php -%%WWWDIR%%/lib/Zend/Validate/Regex.php -%%WWWDIR%%/lib/Zend/Validate/StringLength.php -%%WWWDIR%%/lib/Zend/XmlRpc/Client.php -%%WWWDIR%%/lib/Zend/XmlRpc/Client/Exception.php -%%WWWDIR%%/lib/Zend/XmlRpc/Client/FaultException.php -%%WWWDIR%%/lib/Zend/XmlRpc/Client/HttpException.php -%%WWWDIR%%/lib/Zend/XmlRpc/Client/IntrospectException.php -%%WWWDIR%%/lib/Zend/XmlRpc/Client/ServerIntrospection.php -%%WWWDIR%%/lib/Zend/XmlRpc/Client/ServerProxy.php -%%WWWDIR%%/lib/Zend/XmlRpc/Exception.php -%%WWWDIR%%/lib/Zend/XmlRpc/Fault.php -%%WWWDIR%%/lib/Zend/XmlRpc/Request.php -%%WWWDIR%%/lib/Zend/XmlRpc/Request/Http.php -%%WWWDIR%%/lib/Zend/XmlRpc/Request/Stdin.php -%%WWWDIR%%/lib/Zend/XmlRpc/Response.php -%%WWWDIR%%/lib/Zend/XmlRpc/Response/Http.php -%%WWWDIR%%/lib/Zend/XmlRpc/Server.php -%%WWWDIR%%/lib/Zend/XmlRpc/Server/Cache.php -%%WWWDIR%%/lib/Zend/XmlRpc/Server/Exception.php -%%WWWDIR%%/lib/Zend/XmlRpc/Server/Fault.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/Array.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/Base64.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/Boolean.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/Collection.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/DateTime.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/Double.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/Exception.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/Integer.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/Nil.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/Scalar.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/String.php -%%WWWDIR%%/lib/Zend/XmlRpc/Value/Struct.php -%%WWWDIR%%/lib/fonts/Bitstream/COPYRIGHT.TXT -%%WWWDIR%%/lib/fonts/Bitstream/Vera.ttf -%%WWWDIR%%/lib/fonts/Bitstream/VeraBd.ttf -%%WWWDIR%%/lib/java-xmlrpc-2.0/commons-codec-1.3.jar -%%WWWDIR%%/lib/java-xmlrpc-2.0/commons-httpclient-2.0.2.jar -%%WWWDIR%%/lib/java-xmlrpc-2.0/xmlrpc-2.0.jar -%%WWWDIR%%/lib/java-xmlrpc/commons-codec-1.3.jar -%%WWWDIR%%/lib/java-xmlrpc/commons-httpclient-3.0.1.jar -%%WWWDIR%%/lib/java-xmlrpc/commons-logging-1.1.jar -%%WWWDIR%%/lib/java-xmlrpc/ws-commons-util-1.0.2.jar -%%WWWDIR%%/lib/java-xmlrpc/xmlrpc-client-3.1.jar -%%WWWDIR%%/lib/java-xmlrpc/xmlrpc-common-3.1.jar -%%WWWDIR%%/lib/junit/junit.jar -%%WWWDIR%%/lib/max/Admin/Cache.php -%%WWWDIR%%/lib/max/Admin/DB.php -%%WWWDIR%%/lib/max/Admin/Geotargeting.php -%%WWWDIR%%/lib/max/Admin/Inventory/TrackerAppend.php -%%WWWDIR%%/lib/max/Admin/Inventory/themes/TrackerAppend.html -%%WWWDIR%%/lib/max/Admin/Invocation.php -%%WWWDIR%%/lib/max/Admin/Invocation/Publisher.php -%%WWWDIR%%/lib/max/Admin/Languages.php -%%WWWDIR%%/lib/max/Admin/UI/Field.php -%%WWWDIR%%/lib/max/Admin/UI/Field/AdvertiserIdField.php -%%WWWDIR%%/lib/max/Admin/UI/Field/CampaignSelectionField.php -%%WWWDIR%%/lib/max/Admin/UI/Field/ChannelIdField.php -%%WWWDIR%%/lib/max/Admin/UI/Field/DaySpanField.php -%%WWWDIR%%/lib/max/Admin/UI/Field/DropdownField.php -%%WWWDIR%%/lib/max/Admin/UI/Field/OrganisationSelectionField.php -%%WWWDIR%%/lib/max/Admin/UI/Field/PublisherIdField.php -%%WWWDIR%%/lib/max/Admin/UI/Field/SheetSelectionField.php -%%WWWDIR%%/lib/max/Admin/UI/Field/TextField.php -%%WWWDIR%%/lib/max/Admin/UI/Field/TrackerField.php -%%WWWDIR%%/lib/max/Admin/UI/Field/ZoneIdField.php -%%WWWDIR%%/lib/max/Admin/UI/Field/ZoneScopeField.php -%%WWWDIR%%/lib/max/Admin/UI/FieldFactory.php -%%WWWDIR%%/lib/max/Admin/UI/OrganisationScope.php -%%WWWDIR%%/lib/max/Admin_DA.php -%%WWWDIR%%/lib/max/Dal/Admin/Acls.php -%%WWWDIR%%/lib/max/Dal/Admin/Affiliates.php -%%WWWDIR%%/lib/max/Dal/Admin/Agency.php -%%WWWDIR%%/lib/max/Dal/Admin/Banners.php -%%WWWDIR%%/lib/max/Dal/Admin/Campaigns.php -%%WWWDIR%%/lib/max/Dal/Admin/Channel.php -%%WWWDIR%%/lib/max/Dal/Admin/Clients.php -%%WWWDIR%%/lib/max/Dal/Admin/Data_intermediate_ad.php -%%WWWDIR%%/lib/max/Dal/Admin/Session.php -%%WWWDIR%%/lib/max/Dal/Admin/Trackers.php -%%WWWDIR%%/lib/max/Dal/Admin/Variables.php -%%WWWDIR%%/lib/max/Dal/Admin/Zones.php -%%WWWDIR%%/lib/max/Dal/Common.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Account_preference_assoc.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Account_user_assoc.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Account_user_permission_assoc.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Accounts.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Acls.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Acls_channel.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Ad_category_assoc.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Ad_zone_assoc.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Affiliates.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Affiliates_extra.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Agency.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Application_variable.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Audit.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Banners.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Campaigns.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Campaigns_trackers.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Category.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Channel.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Clients.php -%%WWWDIR%%/lib/max/Dal/DataObjects/DB_DataObjectCommon.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Data_intermediate_ad.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Data_intermediate_ad_connection.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Data_intermediate_ad_variable_value.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Data_summary_ad_hourly.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Data_summary_ad_zone_assoc.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Data_summary_zone_impression_history.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Images.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Log_maintenance_forecasting.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Log_maintenance_priority.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Log_maintenance_statistics.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Password_recovery.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Placement_zone_assoc.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Preferences.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Session.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Targetstats.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Tracker_append.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Trackers.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Upgrade_action.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Userlog.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Users.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Variable_publisher.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Variables.php -%%WWWDIR%%/lib/max/Dal/DataObjects/Zones.php -%%WWWDIR%%/lib/max/Dal/DataObjects/db_schema.ini -%%WWWDIR%%/lib/max/Dal/DataObjects/db_schema.links.ini -%%WWWDIR%%/lib/max/Dal/Delivery.php -%%WWWDIR%%/lib/max/Dal/Entities.php -%%WWWDIR%%/lib/max/Dal/Inventory/Trackers.php -%%WWWDIR%%/lib/max/Dal/Statistics.php -%%WWWDIR%%/lib/max/Dal/data/TestOfDeliverymysql.php -%%WWWDIR%%/lib/max/DateRange.php -%%WWWDIR%%/lib/max/Delivery/XML-RPC.php -%%WWWDIR%%/lib/max/Delivery/adRender.php -%%WWWDIR%%/lib/max/Delivery/adSelect.php -%%WWWDIR%%/lib/max/Delivery/base64.php -%%WWWDIR%%/lib/max/Delivery/cache.php -%%WWWDIR%%/lib/max/Delivery/common.php -%%WWWDIR%%/lib/max/Delivery/cookie.php -%%WWWDIR%%/lib/max/Delivery/flash.php -%%WWWDIR%%/lib/max/Delivery/google.php -%%WWWDIR%%/lib/max/Delivery/image.php -%%WWWDIR%%/lib/max/Delivery/javascript.php -%%WWWDIR%%/lib/max/Delivery/limitations.delivery.php -%%WWWDIR%%/lib/max/Delivery/limitations.php -%%WWWDIR%%/lib/max/Delivery/log.php -%%WWWDIR%%/lib/max/Delivery/querystring.php -%%WWWDIR%%/lib/max/Delivery/remotehost.php -%%WWWDIR%%/lib/max/Delivery/templates/ag-uncompressed.js -%%WWWDIR%%/lib/max/Delivery/templates/ag.js -%%WWWDIR%%/lib/max/Delivery/tracker.php -%%WWWDIR%%/lib/max/ErrorHandler.php -%%WWWDIR%%/lib/max/FileScanner.php -%%WWWDIR%%/lib/max/Plugin.php -%%WWWDIR%%/lib/max/Plugin/Common.php -%%WWWDIR%%/lib/max/Plugin/Translation.php -%%WWWDIR%%/lib/max/SqlBuilder.php -%%WWWDIR%%/lib/max/Util/ArrayUtils.php -%%WWWDIR%%/lib/max/deliverycache/cache-file.inc.php -%%WWWDIR%%/lib/max/language/Loader.php -%%WWWDIR%%/lib/max/language/ar/default.lang.php -%%WWWDIR%%/lib/max/language/ar/index.lang.php -%%WWWDIR%%/lib/max/language/ar/installer.lang.php -%%WWWDIR%%/lib/max/language/ar/invocation.lang.php -%%WWWDIR%%/lib/max/language/ar/maintenance.lang.php -%%WWWDIR%%/lib/max/language/ar/settings-help.lang.php -%%WWWDIR%%/lib/max/language/ar/settings.lang.php -%%WWWDIR%%/lib/max/language/ar/userlog.lang.php -%%WWWDIR%%/lib/max/language/bg/default.lang.php -%%WWWDIR%%/lib/max/language/bg/index.lang.php -%%WWWDIR%%/lib/max/language/bg/invocation.lang.php -%%WWWDIR%%/lib/max/language/bg/maintenance.lang.php -%%WWWDIR%%/lib/max/language/bg/settings.lang.php -%%WWWDIR%%/lib/max/language/bg/userlog.lang.php -%%WWWDIR%%/lib/max/language/cs/default.lang.php -%%WWWDIR%%/lib/max/language/cs/index.lang.php -%%WWWDIR%%/lib/max/language/cs/invocation.lang.php -%%WWWDIR%%/lib/max/language/cs/maintenance.lang.php -%%WWWDIR%%/lib/max/language/cs/report.lang.php -%%WWWDIR%%/lib/max/language/cs/settings-help.lang.php -%%WWWDIR%%/lib/max/language/cs/settings.lang.php -%%WWWDIR%%/lib/max/language/cs/userlog.lang.php -%%WWWDIR%%/lib/max/language/cy/default.lang.php -%%WWWDIR%%/lib/max/language/cy/index.lang.php -%%WWWDIR%%/lib/max/language/cy/invocation.lang.php -%%WWWDIR%%/lib/max/language/cy/maintenance.lang.php -%%WWWDIR%%/lib/max/language/cy/settings.lang.php -%%WWWDIR%%/lib/max/language/cy/userlog.lang.php -%%WWWDIR%%/lib/max/language/da/default.lang.php -%%WWWDIR%%/lib/max/language/da/index.lang.php -%%WWWDIR%%/lib/max/language/da/installer.lang.php -%%WWWDIR%%/lib/max/language/da/invocation.lang.php -%%WWWDIR%%/lib/max/language/da/maintenance.lang.php -%%WWWDIR%%/lib/max/language/da/settings-help.lang.php -%%WWWDIR%%/lib/max/language/da/settings.lang.php -%%WWWDIR%%/lib/max/language/da/userlog.lang.php -%%WWWDIR%%/lib/max/language/de/default.lang.php -%%WWWDIR%%/lib/max/language/de/index.lang.php -%%WWWDIR%%/lib/max/language/de/installer.lang.php -%%WWWDIR%%/lib/max/language/de/invocation.lang.php -%%WWWDIR%%/lib/max/language/de/maintenance.lang.php -%%WWWDIR%%/lib/max/language/de/report.lang.php -%%WWWDIR%%/lib/max/language/de/settings-help.lang.php -%%WWWDIR%%/lib/max/language/de/settings.lang.php -%%WWWDIR%%/lib/max/language/de/userlog.lang.php -%%WWWDIR%%/lib/max/language/el/default.lang.php -%%WWWDIR%%/lib/max/language/el/index.lang.php -%%WWWDIR%%/lib/max/language/el/invocation.lang.php -%%WWWDIR%%/lib/max/language/el/maintenance.lang.php -%%WWWDIR%%/lib/max/language/el/settings.lang.php -%%WWWDIR%%/lib/max/language/el/userlog.lang.php -%%WWWDIR%%/lib/max/language/en/default.lang.php -%%WWWDIR%%/lib/max/language/en/index.lang.php -%%WWWDIR%%/lib/max/language/en/installer.lang.php -%%WWWDIR%%/lib/max/language/en/invocation.lang.php -%%WWWDIR%%/lib/max/language/en/maintenance.lang.php -%%WWWDIR%%/lib/max/language/en/report.lang.php -%%WWWDIR%%/lib/max/language/en/settings-help.lang.php -%%WWWDIR%%/lib/max/language/en/settings.lang.php -%%WWWDIR%%/lib/max/language/en/timezones.lang.php -%%WWWDIR%%/lib/max/language/en/userlog.lang.php -%%WWWDIR%%/lib/max/language/es/default.lang.php -%%WWWDIR%%/lib/max/language/es/index.lang.php -%%WWWDIR%%/lib/max/language/es/installer.lang.php -%%WWWDIR%%/lib/max/language/es/invocation.lang.php -%%WWWDIR%%/lib/max/language/es/maintenance.lang.php -%%WWWDIR%%/lib/max/language/es/report.lang.php -%%WWWDIR%%/lib/max/language/es/settings-help.lang.php -%%WWWDIR%%/lib/max/language/es/settings.lang.php -%%WWWDIR%%/lib/max/language/es/userlog.lang.php -%%WWWDIR%%/lib/max/language/fa/default.lang.php -%%WWWDIR%%/lib/max/language/fa/index.lang.php -%%WWWDIR%%/lib/max/language/fa/installer.lang.php -%%WWWDIR%%/lib/max/language/fa/invocation.lang.php -%%WWWDIR%%/lib/max/language/fa/maintenance.lang.php -%%WWWDIR%%/lib/max/language/fa/report.lang.php -%%WWWDIR%%/lib/max/language/fa/settings-help.lang.php -%%WWWDIR%%/lib/max/language/fa/settings.lang.php -%%WWWDIR%%/lib/max/language/fa/userlog.lang.php -%%WWWDIR%%/lib/max/language/fr/default.lang.php -%%WWWDIR%%/lib/max/language/fr/index.lang.php -%%WWWDIR%%/lib/max/language/fr/installer.lang.php -%%WWWDIR%%/lib/max/language/fr/invocation.lang.php -%%WWWDIR%%/lib/max/language/fr/maintenance.lang.php -%%WWWDIR%%/lib/max/language/fr/report.lang.php -%%WWWDIR%%/lib/max/language/fr/settings-help.lang.php -%%WWWDIR%%/lib/max/language/fr/settings.lang.php -%%WWWDIR%%/lib/max/language/fr/userlog.lang.php -%%WWWDIR%%/lib/max/language/he/default.lang.php -%%WWWDIR%%/lib/max/language/he/index.lang.php -%%WWWDIR%%/lib/max/language/he/invocation.lang.php -%%WWWDIR%%/lib/max/language/he/maintenance.lang.php -%%WWWDIR%%/lib/max/language/he/report.lang.php -%%WWWDIR%%/lib/max/language/he/settings-help.lang.php -%%WWWDIR%%/lib/max/language/he/settings.lang.php -%%WWWDIR%%/lib/max/language/he/userlog.lang.php -%%WWWDIR%%/lib/max/language/hu/default.lang.php -%%WWWDIR%%/lib/max/language/hu/index.lang.php -%%WWWDIR%%/lib/max/language/hu/installer.lang.php -%%WWWDIR%%/lib/max/language/hu/invocation.lang.php -%%WWWDIR%%/lib/max/language/hu/maintenance.lang.php -%%WWWDIR%%/lib/max/language/hu/report.lang.php -%%WWWDIR%%/lib/max/language/hu/settings-help.lang.php -%%WWWDIR%%/lib/max/language/hu/settings.lang.php -%%WWWDIR%%/lib/max/language/hu/userlog.lang.php -%%WWWDIR%%/lib/max/language/id/default.lang.php -%%WWWDIR%%/lib/max/language/id/index.lang.php -%%WWWDIR%%/lib/max/language/id/installer.lang.php -%%WWWDIR%%/lib/max/language/id/invocation.lang.php -%%WWWDIR%%/lib/max/language/id/maintenance.lang.php -%%WWWDIR%%/lib/max/language/id/report.lang.php -%%WWWDIR%%/lib/max/language/id/settings-help.lang.php -%%WWWDIR%%/lib/max/language/id/settings.lang.php -%%WWWDIR%%/lib/max/language/id/userlog.lang.php -%%WWWDIR%%/lib/max/language/it/default.lang.php -%%WWWDIR%%/lib/max/language/it/index.lang.php -%%WWWDIR%%/lib/max/language/it/installer.lang.php -%%WWWDIR%%/lib/max/language/it/invocation.lang.php -%%WWWDIR%%/lib/max/language/it/maintenance.lang.php -%%WWWDIR%%/lib/max/language/it/report.lang.php -%%WWWDIR%%/lib/max/language/it/res-continent.lang.php -%%WWWDIR%%/lib/max/language/it/res-iso3166.lang.php -%%WWWDIR%%/lib/max/language/it/res-iso639.lang.php -%%WWWDIR%%/lib/max/language/it/settings-help.lang.php -%%WWWDIR%%/lib/max/language/it/settings.lang.php -%%WWWDIR%%/lib/max/language/it/userlog.lang.php -%%WWWDIR%%/lib/max/language/ja/default.lang.php -%%WWWDIR%%/lib/max/language/ja/index.lang.php -%%WWWDIR%%/lib/max/language/ja/installer.lang.php -%%WWWDIR%%/lib/max/language/ja/invocation.lang.php -%%WWWDIR%%/lib/max/language/ja/maintenance.lang.php -%%WWWDIR%%/lib/max/language/ja/report.lang.php -%%WWWDIR%%/lib/max/language/ja/settings-help.lang.php -%%WWWDIR%%/lib/max/language/ja/settings.lang.php -%%WWWDIR%%/lib/max/language/ja/userlog.lang.php -%%WWWDIR%%/lib/max/language/ko/default.lang.php -%%WWWDIR%%/lib/max/language/ko/index.lang.php -%%WWWDIR%%/lib/max/language/ko/invocation.lang.php -%%WWWDIR%%/lib/max/language/ko/maintenance.lang.php -%%WWWDIR%%/lib/max/language/ko/report.lang.php -%%WWWDIR%%/lib/max/language/ko/settings-help.lang.php -%%WWWDIR%%/lib/max/language/ko/settings.lang.php -%%WWWDIR%%/lib/max/language/ko/userlog.lang.php -%%WWWDIR%%/lib/max/language/lt/default.lang.php -%%WWWDIR%%/lib/max/language/lt/index.lang.php -%%WWWDIR%%/lib/max/language/lt/installer.lang.php -%%WWWDIR%%/lib/max/language/lt/invocation.lang.php -%%WWWDIR%%/lib/max/language/lt/maintenance.lang.php -%%WWWDIR%%/lib/max/language/lt/report.lang.php -%%WWWDIR%%/lib/max/language/lt/settings-help.lang.php -%%WWWDIR%%/lib/max/language/lt/settings.lang.php -%%WWWDIR%%/lib/max/language/lt/userlog.lang.php -%%WWWDIR%%/lib/max/language/ms/default.lang.php -%%WWWDIR%%/lib/max/language/ms/index.lang.php -%%WWWDIR%%/lib/max/language/ms/installer.lang.php -%%WWWDIR%%/lib/max/language/ms/invocation.lang.php -%%WWWDIR%%/lib/max/language/ms/maintenance.lang.php -%%WWWDIR%%/lib/max/language/ms/settings.lang.php -%%WWWDIR%%/lib/max/language/ms/userlog.lang.php -%%WWWDIR%%/lib/max/language/nb/default.lang.php -%%WWWDIR%%/lib/max/language/nb/index.lang.php -%%WWWDIR%%/lib/max/language/nb/maintenance.lang.php -%%WWWDIR%%/lib/max/language/nb/settings.lang.php -%%WWWDIR%%/lib/max/language/nb/userlog.lang.php -%%WWWDIR%%/lib/max/language/nl/default.lang.php -%%WWWDIR%%/lib/max/language/nl/index.lang.php -%%WWWDIR%%/lib/max/language/nl/installer.lang.php -%%WWWDIR%%/lib/max/language/nl/invocation.lang.php -%%WWWDIR%%/lib/max/language/nl/maintenance.lang.php -%%WWWDIR%%/lib/max/language/nl/report.lang.php -%%WWWDIR%%/lib/max/language/nl/settings-help.lang.php -%%WWWDIR%%/lib/max/language/nl/settings.lang.php -%%WWWDIR%%/lib/max/language/nl/userlog.lang.php -%%WWWDIR%%/lib/max/language/pl/default.lang.php -%%WWWDIR%%/lib/max/language/pl/index.lang.php -%%WWWDIR%%/lib/max/language/pl/installer.lang.php -%%WWWDIR%%/lib/max/language/pl/invocation.lang.php -%%WWWDIR%%/lib/max/language/pl/maintenance.lang.php -%%WWWDIR%%/lib/max/language/pl/report.lang.php -%%WWWDIR%%/lib/max/language/pl/settings-help.lang.php -%%WWWDIR%%/lib/max/language/pl/settings.lang.php -%%WWWDIR%%/lib/max/language/pl/userlog.lang.php -%%WWWDIR%%/lib/max/language/pt_BR/default.lang.php -%%WWWDIR%%/lib/max/language/pt_BR/index.lang.php -%%WWWDIR%%/lib/max/language/pt_BR/installer.lang.php -%%WWWDIR%%/lib/max/language/pt_BR/invocation.lang.php -%%WWWDIR%%/lib/max/language/pt_BR/maintenance.lang.php -%%WWWDIR%%/lib/max/language/pt_BR/report.lang.php -%%WWWDIR%%/lib/max/language/pt_BR/settings-help.lang.php -%%WWWDIR%%/lib/max/language/pt_BR/settings.lang.php -%%WWWDIR%%/lib/max/language/pt_BR/userlog.lang.php -%%WWWDIR%%/lib/max/language/pt_PT/default.lang.php -%%WWWDIR%%/lib/max/language/pt_PT/index.lang.php -%%WWWDIR%%/lib/max/language/pt_PT/installer.lang.php -%%WWWDIR%%/lib/max/language/pt_PT/invocation.lang.php -%%WWWDIR%%/lib/max/language/pt_PT/maintenance.lang.php -%%WWWDIR%%/lib/max/language/pt_PT/report.lang.php -%%WWWDIR%%/lib/max/language/pt_PT/settings-help.lang.php -%%WWWDIR%%/lib/max/language/pt_PT/settings.lang.php -%%WWWDIR%%/lib/max/language/pt_PT/userlog.lang.php -%%WWWDIR%%/lib/max/language/ro/default.lang.php -%%WWWDIR%%/lib/max/language/ro/index.lang.php -%%WWWDIR%%/lib/max/language/ro/installer.lang.php -%%WWWDIR%%/lib/max/language/ro/invocation.lang.php -%%WWWDIR%%/lib/max/language/ro/maintenance.lang.php -%%WWWDIR%%/lib/max/language/ro/report.lang.php -%%WWWDIR%%/lib/max/language/ro/settings-help.lang.php -%%WWWDIR%%/lib/max/language/ro/settings.lang.php -%%WWWDIR%%/lib/max/language/ro/userlog.lang.php -%%WWWDIR%%/lib/max/language/ru/default.lang.php -%%WWWDIR%%/lib/max/language/ru/index.lang.php -%%WWWDIR%%/lib/max/language/ru/installer.lang.php -%%WWWDIR%%/lib/max/language/ru/invocation.lang.php -%%WWWDIR%%/lib/max/language/ru/maintenance.lang.php -%%WWWDIR%%/lib/max/language/ru/report.lang.php -%%WWWDIR%%/lib/max/language/ru/settings-help.lang.php -%%WWWDIR%%/lib/max/language/ru/settings.lang.php -%%WWWDIR%%/lib/max/language/ru/userlog.lang.php -%%WWWDIR%%/lib/max/language/sk/default.lang.php -%%WWWDIR%%/lib/max/language/sk/index.lang.php -%%WWWDIR%%/lib/max/language/sk/invocation.lang.php -%%WWWDIR%%/lib/max/language/sk/maintenance.lang.php -%%WWWDIR%%/lib/max/language/sk/settings.lang.php -%%WWWDIR%%/lib/max/language/sk/userlog.lang.php -%%WWWDIR%%/lib/max/language/sl/default.lang.php -%%WWWDIR%%/lib/max/language/sl/index.lang.php -%%WWWDIR%%/lib/max/language/sl/installer.lang.php -%%WWWDIR%%/lib/max/language/sl/invocation.lang.php -%%WWWDIR%%/lib/max/language/sl/maintenance.lang.php -%%WWWDIR%%/lib/max/language/sl/report.lang.php -%%WWWDIR%%/lib/max/language/sl/settings-help.lang.php -%%WWWDIR%%/lib/max/language/sl/settings.lang.php -%%WWWDIR%%/lib/max/language/sl/userlog.lang.php -%%WWWDIR%%/lib/max/language/sq/default.lang.php -%%WWWDIR%%/lib/max/language/sq/index.lang.php -%%WWWDIR%%/lib/max/language/sv/default.lang.php -%%WWWDIR%%/lib/max/language/sv/index.lang.php -%%WWWDIR%%/lib/max/language/sv/installer.lang.php -%%WWWDIR%%/lib/max/language/sv/invocation.lang.php -%%WWWDIR%%/lib/max/language/sv/maintenance.lang.php -%%WWWDIR%%/lib/max/language/sv/settings.lang.php -%%WWWDIR%%/lib/max/language/sv/userlog.lang.php -%%WWWDIR%%/lib/max/language/tr/default.lang.php -%%WWWDIR%%/lib/max/language/tr/index.lang.php -%%WWWDIR%%/lib/max/language/tr/invocation.lang.php -%%WWWDIR%%/lib/max/language/tr/maintenance.lang.php -%%WWWDIR%%/lib/max/language/tr/report.lang.php -%%WWWDIR%%/lib/max/language/tr/settings-help.lang.php -%%WWWDIR%%/lib/max/language/tr/settings.lang.php -%%WWWDIR%%/lib/max/language/tr/userlog.lang.php -%%WWWDIR%%/lib/max/language/uk/default.lang.php -%%WWWDIR%%/lib/max/language/uk/index.lang.php -%%WWWDIR%%/lib/max/language/uk/invocation.lang.php -%%WWWDIR%%/lib/max/language/uk/maintenance.lang.php -%%WWWDIR%%/lib/max/language/uk/settings.lang.php -%%WWWDIR%%/lib/max/language/uk/userlog.lang.php -%%WWWDIR%%/lib/max/language/unsupported/unsupported.zip -%%WWWDIR%%/lib/max/language/zh_CN/default.lang.php -%%WWWDIR%%/lib/max/language/zh_CN/index.lang.php -%%WWWDIR%%/lib/max/language/zh_CN/installer.lang.php -%%WWWDIR%%/lib/max/language/zh_CN/invocation.lang.php -%%WWWDIR%%/lib/max/language/zh_CN/maintenance.lang.php -%%WWWDIR%%/lib/max/language/zh_CN/report.lang.php -%%WWWDIR%%/lib/max/language/zh_CN/settings-help.lang.php -%%WWWDIR%%/lib/max/language/zh_CN/settings.lang.php -%%WWWDIR%%/lib/max/language/zh_CN/userlog.lang.php -%%WWWDIR%%/lib/max/language/zh_TW/default.lang.php -%%WWWDIR%%/lib/max/language/zh_TW/index.lang.php -%%WWWDIR%%/lib/max/language/zh_TW/installer.lang.php -%%WWWDIR%%/lib/max/language/zh_TW/invocation.lang.php -%%WWWDIR%%/lib/max/language/zh_TW/maintenance.lang.php -%%WWWDIR%%/lib/max/language/zh_TW/settings-help.lang.php -%%WWWDIR%%/lib/max/language/zh_TW/settings.lang.php -%%WWWDIR%%/lib/max/language/zh_TW/userlog.lang.php -%%WWWDIR%%/lib/max/other/capping/lib-capping.inc.php -%%WWWDIR%%/lib/max/other/common.php -%%WWWDIR%%/lib/max/other/html.php -%%WWWDIR%%/lib/max/other/lib-acl.inc.php -%%WWWDIR%%/lib/max/other/lib-geo.inc.php -%%WWWDIR%%/lib/max/other/lib-io.inc.php -%%WWWDIR%%/lib/max/other/lib-userlog.inc.php -%%WWWDIR%%/lib/max/other/stats.php -%%WWWDIR%%/lib/max/resources/emailBugReport.php -%%WWWDIR%%/lib/max/resources/res-continent.inc.php -%%WWWDIR%%/lib/max/resources/res-iab.inc.php -%%WWWDIR%%/lib/max/resources/res-iso3166.inc.php -%%WWWDIR%%/lib/max/resources/res-iso639.inc.php -%%WWWDIR%%/lib/max/resources/res-useragent.inc.php -%%WWWDIR%%/lib/max/resources/res-usstates.inc.php -%%WWWDIR%%/lib/minify/HTTP/ConditionalGet.php -%%WWWDIR%%/lib/minify/HTTP/Encoder.php -%%WWWDIR%%/lib/minify/JSMin.php -%%WWWDIR%%/lib/minify/Minify.php -%%WWWDIR%%/lib/minify/Minify/Build.php -%%WWWDIR%%/lib/minify/Minify/CSS.php -%%WWWDIR%%/lib/minify/Minify/CSS/UriRewriter.php -%%WWWDIR%%/lib/minify/Minify/Cache/File.php -%%WWWDIR%%/lib/minify/Minify/Cache/Memcache.php -%%WWWDIR%%/lib/minify/Minify/CommentPreserver.php -%%WWWDIR%%/lib/minify/Minify/Controller/Base.php -%%WWWDIR%%/lib/minify/Minify/Controller/Files.php -%%WWWDIR%%/lib/minify/Minify/Controller/Groups.php -%%WWWDIR%%/lib/minify/Minify/Controller/MinApp.php -%%WWWDIR%%/lib/minify/Minify/Controller/Page.php -%%WWWDIR%%/lib/minify/Minify/Controller/Version1.php -%%WWWDIR%%/lib/minify/Minify/HTML.php -%%WWWDIR%%/lib/minify/Minify/ImportProcessor.php -%%WWWDIR%%/lib/minify/Minify/Javascript.php -%%WWWDIR%%/lib/minify/Minify/Lines.php -%%WWWDIR%%/lib/minify/Minify/Packer.php -%%WWWDIR%%/lib/minify/Minify/Source.php -%%WWWDIR%%/lib/minify/Minify/YUICompressor.php -%%WWWDIR%%/lib/minify/Solar/Dir.php -%%WWWDIR%%/lib/pclzip/gnu-lgpl.txt -%%WWWDIR%%/lib/pclzip/pclzip.lib.php -%%WWWDIR%%/lib/pclzip/readme.txt -%%WWWDIR%%/lib/pear/.depdb -%%WWWDIR%%/lib/pear/.depdblock -%%WWWDIR%%/lib/pear/Archive/Tar.php -%%WWWDIR%%/lib/pear/Cache/Lite.php -%%WWWDIR%%/lib/pear/Cache/Lite/File.php -%%WWWDIR%%/lib/pear/Cache/Lite/Function.php -%%WWWDIR%%/lib/pear/Cache/Lite/Output.php -%%WWWDIR%%/lib/pear/Config.php -%%WWWDIR%%/lib/pear/Config/Container.php -%%WWWDIR%%/lib/pear/Config/Container/Apache.php -%%WWWDIR%%/lib/pear/Config/Container/GenericConf.php -%%WWWDIR%%/lib/pear/Config/Container/IniCommented.php -%%WWWDIR%%/lib/pear/Config/Container/IniFile.php -%%WWWDIR%%/lib/pear/Config/Container/PHPArray.php -%%WWWDIR%%/lib/pear/Config/Container/XML.php -%%WWWDIR%%/lib/pear/Console/Getopt.php -%%WWWDIR%%/lib/pear/DB.php -%%WWWDIR%%/lib/pear/DB/DataObject.php -%%WWWDIR%%/lib/pear/DB/DataObject/Cast.php -%%WWWDIR%%/lib/pear/DB/DataObject/Error.php -%%WWWDIR%%/lib/pear/DB/DataObject/Generator.php -%%WWWDIR%%/lib/pear/DB/DataObject/createTables.php -%%WWWDIR%%/lib/pear/DB/QueryTool.php -%%WWWDIR%%/lib/pear/DB/QueryTool/EasyJoin.php -%%WWWDIR%%/lib/pear/DB/QueryTool/Query.php -%%WWWDIR%%/lib/pear/DB/QueryTool/Result.php -%%WWWDIR%%/lib/pear/DB/QueryTool/Result/Object.php -%%WWWDIR%%/lib/pear/DB/common.php -%%WWWDIR%%/lib/pear/DB/dbase.php -%%WWWDIR%%/lib/pear/DB/fbsql.php -%%WWWDIR%%/lib/pear/DB/ibase.php -%%WWWDIR%%/lib/pear/DB/ifx.php -%%WWWDIR%%/lib/pear/DB/msql.php -%%WWWDIR%%/lib/pear/DB/mssql.php -%%WWWDIR%%/lib/pear/DB/mysql.php -%%WWWDIR%%/lib/pear/DB/mysql_SGL.php -%%WWWDIR%%/lib/pear/DB/mysqli.php -%%WWWDIR%%/lib/pear/DB/oci8.php -%%WWWDIR%%/lib/pear/DB/odbc.php -%%WWWDIR%%/lib/pear/DB/pgsql.php -%%WWWDIR%%/lib/pear/DB/sqlite.php -%%WWWDIR%%/lib/pear/DB/storage.php -%%WWWDIR%%/lib/pear/DB/sybase.php -%%WWWDIR%%/lib/pear/Date.php -%%WWWDIR%%/lib/pear/Date/Calc.php -%%WWWDIR%%/lib/pear/Date/Human.php -%%WWWDIR%%/lib/pear/Date/Span.php -%%WWWDIR%%/lib/pear/Date/TimeZone.php -%%WWWDIR%%/lib/pear/HTML/Common.php -%%WWWDIR%%/lib/pear/HTML/QuickForm.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/Array.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/ArraySmarty.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/Default.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/ITDynamic.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/ITStatic.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/Object.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/ObjectFlexy.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/QuickHtml.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Callback.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Compare.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Email.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Range.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Regex.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Required.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/RuleRegistry.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/advcheckbox.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/autocomplete.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/button.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/checkbox.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/date.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/element.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/file.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/group.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/header.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/hidden.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/hiddenselect.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/hierselect.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/html.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/image.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/input.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/link.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/password.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/radio.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/reset.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/select.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/static.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/submit.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/text.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/textarea.php -%%WWWDIR%%/lib/pear/HTML/QuickForm/xbutton.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Assign.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Flexy.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Flexy/Flexy.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Flexy/Tag.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/BodyOnly.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/Mail.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/Math.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/Php.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/RtfSimpleTags.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/SimpleTags.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/Xml.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/SmartyConvertor.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Standard.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Standard/Flexy.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Standard/Tag.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Element.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Element/Xul.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Factory.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Plugin.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Plugin/Savant.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/SmartyAPI.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Test.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Else.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/End.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/EndTag.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Foreach.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/If.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Method.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Processing.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Tag.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Text.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Var.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Tokenizer.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Translator.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Tree.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/compileAll.php -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/example.ini -%%WWWDIR%%/lib/pear/HTML/Template/Flexy/templates/translator.html -%%WWWDIR%%/lib/pear/HTML/Template/IT.php -%%WWWDIR%%/lib/pear/HTML/Template/ITX.php -%%WWWDIR%%/lib/pear/HTML/Template/IT_Error.php -%%WWWDIR%%/lib/pear/HTML/TreeMenu.php -%%WWWDIR%%/lib/pear/HTML/docs/example.php -%%WWWDIR%%/lib/pear/HTML/docs/map_fs.php -%%WWWDIR%%/lib/pear/HTTP/Request.php -%%WWWDIR%%/lib/pear/Image/Canvas.php -%%WWWDIR%%/lib/pear/Image/Canvas/Color.php -%%WWWDIR%%/lib/pear/Image/Canvas/Fonts/README -%%WWWDIR%%/lib/pear/Image/Canvas/Fonts/arial.ttf -%%WWWDIR%%/lib/pear/Image/Canvas/Fonts/fontmap.txt -%%WWWDIR%%/lib/pear/Image/Canvas/Fonts/verdana.ttf -%%WWWDIR%%/lib/pear/Image/Canvas/GD.php -%%WWWDIR%%/lib/pear/Image/Canvas/GD/JPG.php -%%WWWDIR%%/lib/pear/Image/Canvas/GD/PNG.php -%%WWWDIR%%/lib/pear/Image/Canvas/ImageMap.php -%%WWWDIR%%/lib/pear/Image/Canvas/PDF.php -%%WWWDIR%%/lib/pear/Image/Canvas/SVG.php -%%WWWDIR%%/lib/pear/Image/Canvas/Tool.php -%%WWWDIR%%/lib/pear/Image/Canvas/WithMap.php -%%WWWDIR%%/lib/pear/Image/Color.php -%%WWWDIR%%/lib/pear/Image/Graph.php -%%WWWDIR%%/lib/pear/Image/Graph/Axis.php -%%WWWDIR%%/lib/pear/Image/Graph/Axis/Category.php -%%WWWDIR%%/lib/pear/Image/Graph/Axis/Logarithmic.php -%%WWWDIR%%/lib/pear/Image/Graph/Axis/Marker/Area.php -%%WWWDIR%%/lib/pear/Image/Graph/Axis/Marker/Line.php -%%WWWDIR%%/lib/pear/Image/Graph/Axis/Radar.php -%%WWWDIR%%/lib/pear/Image/Graph/Common.php -%%WWWDIR%%/lib/pear/Image/Graph/Config.php -%%WWWDIR%%/lib/pear/Image/Graph/Constants.php -%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor.php -%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Array.php -%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Currency.php -%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Date.php -%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Formatted.php -%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Function.php -%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/NumberText.php -%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/RomanNumerals.php -%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Sequential.php -%%WWWDIR%%/lib/pear/Image/Graph/DataSelector.php -%%WWWDIR%%/lib/pear/Image/Graph/DataSelector/EveryNthPoint.php -%%WWWDIR%%/lib/pear/Image/Graph/DataSelector/NoZeros.php -%%WWWDIR%%/lib/pear/Image/Graph/DataSelector/Values.php -%%WWWDIR%%/lib/pear/Image/Graph/Dataset.php -%%WWWDIR%%/lib/pear/Image/Graph/Dataset/Function.php -%%WWWDIR%%/lib/pear/Image/Graph/Dataset/Random.php -%%WWWDIR%%/lib/pear/Image/Graph/Dataset/Sequential.php -%%WWWDIR%%/lib/pear/Image/Graph/Dataset/Trivial.php -%%WWWDIR%%/lib/pear/Image/Graph/Dataset/VectorFunction.php -%%WWWDIR%%/lib/pear/Image/Graph/Element.php -%%WWWDIR%%/lib/pear/Image/Graph/Figure/Circle.php -%%WWWDIR%%/lib/pear/Image/Graph/Figure/Ellipse.php -%%WWWDIR%%/lib/pear/Image/Graph/Figure/Polygon.php -%%WWWDIR%%/lib/pear/Image/Graph/Figure/Rectangle.php -%%WWWDIR%%/lib/pear/Image/Graph/Fill.php -%%WWWDIR%%/lib/pear/Image/Graph/Fill/Array.php -%%WWWDIR%%/lib/pear/Image/Graph/Fill/Gradient.php -%%WWWDIR%%/lib/pear/Image/Graph/Fill/Image.php -%%WWWDIR%%/lib/pear/Image/Graph/Font.php -%%WWWDIR%%/lib/pear/Image/Graph/Grid.php -%%WWWDIR%%/lib/pear/Image/Graph/Grid/Bars.php -%%WWWDIR%%/lib/pear/Image/Graph/Grid/Lines.php -%%WWWDIR%%/lib/pear/Image/Graph/Grid/Polar.php -%%WWWDIR%%/lib/pear/Image/Graph/Images/Icons/pinpoint.png -%%WWWDIR%%/lib/pear/Image/Graph/Images/Icons/pinpointr.png -%%WWWDIR%%/lib/pear/Image/Graph/Images/Maps/README -%%WWWDIR%%/lib/pear/Image/Graph/Layout.php -%%WWWDIR%%/lib/pear/Image/Graph/Layout/Horizontal.php -%%WWWDIR%%/lib/pear/Image/Graph/Layout/Matrix.php -%%WWWDIR%%/lib/pear/Image/Graph/Layout/Vertical.php -%%WWWDIR%%/lib/pear/Image/Graph/Legend.php -%%WWWDIR%%/lib/pear/Image/Graph/Line/Array.php -%%WWWDIR%%/lib/pear/Image/Graph/Line/Dashed.php -%%WWWDIR%%/lib/pear/Image/Graph/Line/Dotted.php -%%WWWDIR%%/lib/pear/Image/Graph/Line/Formatted.php -%%WWWDIR%%/lib/pear/Image/Graph/Line/Solid.php -%%WWWDIR%%/lib/pear/Image/Graph/Logo.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Array.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Asterisk.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Average.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Box.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Bubble.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Circle.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Cross.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Diamond.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Icon.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Pinpoint.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Plus.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Pointing.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Pointing/Angular.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Pointing/Radial.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/ReversePinpoint.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Star.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Triangle.php -%%WWWDIR%%/lib/pear/Image/Graph/Marker/Value.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Area.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Band.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Bar.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/BoxWhisker.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/CandleStick.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Dot.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Fit/Line.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Impulse.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Line.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Odo.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Pie.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Radar.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Smoothed/Area.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Smoothed/Bezier.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Smoothed/Line.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Smoothed/Radar.php -%%WWWDIR%%/lib/pear/Image/Graph/Plot/Step.php -%%WWWDIR%%/lib/pear/Image/Graph/Plotarea.php -%%WWWDIR%%/lib/pear/Image/Graph/Plotarea/Element.php -%%WWWDIR%%/lib/pear/Image/Graph/Plotarea/Map.php -%%WWWDIR%%/lib/pear/Image/Graph/Plotarea/Radar.php -%%WWWDIR%%/lib/pear/Image/Graph/Simple.php -%%WWWDIR%%/lib/pear/Image/Graph/Title.php -%%WWWDIR%%/lib/pear/Image/Graph/Tool.php -%%WWWDIR%%/lib/pear/Log.php -%%WWWDIR%%/lib/pear/Log/composite.php -%%WWWDIR%%/lib/pear/Log/console.php -%%WWWDIR%%/lib/pear/Log/daemon.php -%%WWWDIR%%/lib/pear/Log/display.php -%%WWWDIR%%/lib/pear/Log/error_log.php -%%WWWDIR%%/lib/pear/Log/file.php -%%WWWDIR%%/lib/pear/Log/firebug.php -%%WWWDIR%%/lib/pear/Log/mail.php -%%WWWDIR%%/lib/pear/Log/mcal.php -%%WWWDIR%%/lib/pear/Log/mdb2.php -%%WWWDIR%%/lib/pear/Log/null.php -%%WWWDIR%%/lib/pear/Log/observer.php -%%WWWDIR%%/lib/pear/Log/sql.php -%%WWWDIR%%/lib/pear/Log/sqlite.php -%%WWWDIR%%/lib/pear/Log/syslog.php -%%WWWDIR%%/lib/pear/Log/win.php -%%WWWDIR%%/lib/pear/MDB2.php -%%WWWDIR%%/lib/pear/MDB2/Date.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Datatype/Common.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Datatype/mysql.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Datatype/mysqli.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Datatype/pgsql.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Function/Common.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Function/mysql.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Function/mysqli.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Function/pgsql.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Manager/Common.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Manager/mysql.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Manager/mysqli.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Manager/pgsql.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Native/Common.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Native/mysql.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Native/mysqli.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Native/pgsql.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Reverse/Common.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Reverse/mysql.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Reverse/mysqli.php -%%WWWDIR%%/lib/pear/MDB2/Driver/Reverse/pgsql.php -%%WWWDIR%%/lib/pear/MDB2/Driver/mysql.php -%%WWWDIR%%/lib/pear/MDB2/Driver/mysqli.php -%%WWWDIR%%/lib/pear/MDB2/Driver/pgsql.php -%%WWWDIR%%/lib/pear/MDB2/Extended.php -%%WWWDIR%%/lib/pear/MDB2/Iterator.php -%%WWWDIR%%/lib/pear/MDB2/LOB.php -%%WWWDIR%%/lib/pear/MDB2/Schema.php -%%WWWDIR%%/lib/pear/MDB2/Schema/Parser.php -%%WWWDIR%%/lib/pear/MDB2/Schema/ParserChangeset.php -%%WWWDIR%%/lib/pear/MDB2/Schema/ParserDictionary.php -%%WWWDIR%%/lib/pear/MDB2/Schema/Reserved/ibase.php -%%WWWDIR%%/lib/pear/MDB2/Schema/Reserved/mssql.php -%%WWWDIR%%/lib/pear/MDB2/Schema/Reserved/mysql.php -%%WWWDIR%%/lib/pear/MDB2/Schema/Reserved/oci8.php -%%WWWDIR%%/lib/pear/MDB2/Schema/Reserved/pgsql.php -%%WWWDIR%%/lib/pear/MDB2/Schema/Validate.php -%%WWWDIR%%/lib/pear/MDB2/Schema/Writer.php -%%WWWDIR%%/lib/pear/MDB2/Schema/WriterChangeset.php -%%WWWDIR%%/lib/pear/Net/IPv4.php -%%WWWDIR%%/lib/pear/Net/Socket.php -%%WWWDIR%%/lib/pear/Net/URL.php -%%WWWDIR%%/lib/pear/Numbers/Roman.php -%%WWWDIR%%/lib/pear/Numbers/Words.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.bg.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.cs.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.de.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.dk.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.ee.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.en_100.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.en_GB.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.en_US.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.es.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.es_AR.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.fr.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.fr_BE.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.he.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.hu_HU.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.id.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.it_IT.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.lt.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.pl.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.pt_BR.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.ru.php -%%WWWDIR%%/lib/pear/Numbers/Words/lang.sv.php -%%WWWDIR%%/lib/pear/OLE.php -%%WWWDIR%%/lib/pear/OLE/OLE.php -%%WWWDIR%%/lib/pear/OLE/PPS.php -%%WWWDIR%%/lib/pear/OLE/PPS/File.php -%%WWWDIR%%/lib/pear/OLE/PPS/Root.php -%%WWWDIR%%/lib/pear/OS/Guess.php -%%WWWDIR%%/lib/pear/PEAR.php -%%WWWDIR%%/lib/pear/PEAR/Autoloader.php -%%WWWDIR%%/lib/pear/PEAR/Builder.php -%%WWWDIR%%/lib/pear/PEAR/ChannelFile.php -%%WWWDIR%%/lib/pear/PEAR/ChannelFile/Parser.php -%%WWWDIR%%/lib/pear/PEAR/Command.php -%%WWWDIR%%/lib/pear/PEAR/Command/Auth.php -%%WWWDIR%%/lib/pear/PEAR/Command/Auth.xml -%%WWWDIR%%/lib/pear/PEAR/Command/Build.php -%%WWWDIR%%/lib/pear/PEAR/Command/Build.xml -%%WWWDIR%%/lib/pear/PEAR/Command/Channels.php -%%WWWDIR%%/lib/pear/PEAR/Command/Channels.xml -%%WWWDIR%%/lib/pear/PEAR/Command/Common.php -%%WWWDIR%%/lib/pear/PEAR/Command/Config.php -%%WWWDIR%%/lib/pear/PEAR/Command/Config.xml -%%WWWDIR%%/lib/pear/PEAR/Command/Install.php -%%WWWDIR%%/lib/pear/PEAR/Command/Install.xml -%%WWWDIR%%/lib/pear/PEAR/Command/Mirror.php -%%WWWDIR%%/lib/pear/PEAR/Command/Mirror.xml -%%WWWDIR%%/lib/pear/PEAR/Command/Package.php -%%WWWDIR%%/lib/pear/PEAR/Command/Package.xml -%%WWWDIR%%/lib/pear/PEAR/Command/Pickle.php -%%WWWDIR%%/lib/pear/PEAR/Command/Pickle.xml -%%WWWDIR%%/lib/pear/PEAR/Command/Registry.php -%%WWWDIR%%/lib/pear/PEAR/Command/Registry.xml -%%WWWDIR%%/lib/pear/PEAR/Command/Remote.php -%%WWWDIR%%/lib/pear/PEAR/Command/Remote.xml -%%WWWDIR%%/lib/pear/PEAR/Command/Test.php -%%WWWDIR%%/lib/pear/PEAR/Command/Test.xml -%%WWWDIR%%/lib/pear/PEAR/Common.php -%%WWWDIR%%/lib/pear/PEAR/Config.php -%%WWWDIR%%/lib/pear/PEAR/Dependency.php -%%WWWDIR%%/lib/pear/PEAR/Dependency2.php -%%WWWDIR%%/lib/pear/PEAR/DependencyDB.php -%%WWWDIR%%/lib/pear/PEAR/Downloader.php -%%WWWDIR%%/lib/pear/PEAR/Downloader/Package.php -%%WWWDIR%%/lib/pear/PEAR/ErrorStack.php -%%WWWDIR%%/lib/pear/PEAR/Exception.php -%%WWWDIR%%/lib/pear/PEAR/Frontend.php -%%WWWDIR%%/lib/pear/PEAR/Frontend/CLI.php -%%WWWDIR%%/lib/pear/PEAR/Installer.php -%%WWWDIR%%/lib/pear/PEAR/Installer/Role.php -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Common.php -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Data.php -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Data.xml -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Doc.php -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Doc.xml -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Ext.php -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Ext.xml -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Php.php -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Php.xml -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Script.php -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Script.xml -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Src.php -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Src.xml -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Test.php -%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Test.xml -%%WWWDIR%%/lib/pear/PEAR/PackageFile.php -%%WWWDIR%%/lib/pear/PEAR/PackageFile/Generator/v1.php -%%WWWDIR%%/lib/pear/PEAR/PackageFile/Generator/v2.php -%%WWWDIR%%/lib/pear/PEAR/PackageFile/Parser/v1.php -%%WWWDIR%%/lib/pear/PEAR/PackageFile/Parser/v2.php -%%WWWDIR%%/lib/pear/PEAR/PackageFile/v1.php -%%WWWDIR%%/lib/pear/PEAR/PackageFile/v2.php -%%WWWDIR%%/lib/pear/PEAR/PackageFile/v2/Validator.php -%%WWWDIR%%/lib/pear/PEAR/PackageFile/v2/rw.php -%%WWWDIR%%/lib/pear/PEAR/Packager.php -%%WWWDIR%%/lib/pear/PEAR/REST.php -%%WWWDIR%%/lib/pear/PEAR/REST/10.php -%%WWWDIR%%/lib/pear/PEAR/REST/11.php -%%WWWDIR%%/lib/pear/PEAR/Registry.php -%%WWWDIR%%/lib/pear/PEAR/Remote.php -%%WWWDIR%%/lib/pear/PEAR/RunTest.php -%%WWWDIR%%/lib/pear/PEAR/Task/Common.php -%%WWWDIR%%/lib/pear/PEAR/Task/Postinstallscript.php -%%WWWDIR%%/lib/pear/PEAR/Task/Postinstallscript/rw.php -%%WWWDIR%%/lib/pear/PEAR/Task/Replace.php -%%WWWDIR%%/lib/pear/PEAR/Task/Replace/rw.php -%%WWWDIR%%/lib/pear/PEAR/Task/Unixeol.php -%%WWWDIR%%/lib/pear/PEAR/Task/Unixeol/rw.php -%%WWWDIR%%/lib/pear/PEAR/Task/Windowseol.php -%%WWWDIR%%/lib/pear/PEAR/Task/Windowseol/rw.php -%%WWWDIR%%/lib/pear/PEAR/Validate.php -%%WWWDIR%%/lib/pear/PEAR/Validator/PECL.php -%%WWWDIR%%/lib/pear/PEAR/XMLParser.php -%%WWWDIR%%/lib/pear/Pager.php -%%WWWDIR%%/lib/pear/Pager/Common.php -%%WWWDIR%%/lib/pear/Pager/HtmlWidgets.php -%%WWWDIR%%/lib/pear/Pager/Jumping.php -%%WWWDIR%%/lib/pear/Pager/Pager.php -%%WWWDIR%%/lib/pear/Pager/Sliding.php -%%WWWDIR%%/lib/pear/Services/ExchangeRates.php -%%WWWDIR%%/lib/pear/Services/ExchangeRates/Common.php -%%WWWDIR%%/lib/pear/Services/ExchangeRates/Countries_UN.php -%%WWWDIR%%/lib/pear/Services/ExchangeRates/Currencies_UN.php -%%WWWDIR%%/lib/pear/Services/ExchangeRates/Rates_ECB.php -%%WWWDIR%%/lib/pear/Services/ExchangeRates/Rates_NBI.php -%%WWWDIR%%/lib/pear/Services/ExchangeRates/Rates_NBP.php -%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer.php -%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/BIFFwriter.php -%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/Format.php -%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/Parser.php -%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/Validator.php -%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/Workbook.php -%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/Worksheet.php -%%WWWDIR%%/lib/pear/Structures/Graph.php -%%WWWDIR%%/lib/pear/Structures/Graph/Manipulator/AcyclicTest.php -%%WWWDIR%%/lib/pear/Structures/Graph/Manipulator/TopologicalSorter.php -%%WWWDIR%%/lib/pear/Structures/Graph/Node.php -%%WWWDIR%%/lib/pear/System.php -%%WWWDIR%%/lib/pear/Text/Password.php -%%WWWDIR%%/lib/pear/XML/Parser.php -%%WWWDIR%%/lib/pear/XML/Parser/Simple.php -%%WWWDIR%%/lib/pear/XML/RPC.php -%%WWWDIR%%/lib/pear/XML/RPC/Dump.php -%%WWWDIR%%/lib/pear/XML/RPC/Server.php -%%WWWDIR%%/lib/pear/XML/RSS.php -%%WWWDIR%%/lib/pear/XML/Tree.php -%%WWWDIR%%/lib/pear/XML/Tree/Node.php -%%WWWDIR%%/lib/pear/pearcmd.php -%%WWWDIR%%/lib/pear/peclcmd.php -%%WWWDIR%%/lib/smarty/Config_File.class.php -%%WWWDIR%%/lib/smarty/Smarty.class.php -%%WWWDIR%%/lib/smarty/Smarty_Compiler.class.php -%%WWWDIR%%/lib/smarty/debug.tpl -%%WWWDIR%%/lib/smarty/internals/core.assemble_plugin_filepath.php -%%WWWDIR%%/lib/smarty/internals/core.assign_smarty_interface.php -%%WWWDIR%%/lib/smarty/internals/core.create_dir_structure.php -%%WWWDIR%%/lib/smarty/internals/core.display_debug_console.php -%%WWWDIR%%/lib/smarty/internals/core.get_include_path.php -%%WWWDIR%%/lib/smarty/internals/core.get_microtime.php -%%WWWDIR%%/lib/smarty/internals/core.get_php_resource.php -%%WWWDIR%%/lib/smarty/internals/core.is_secure.php -%%WWWDIR%%/lib/smarty/internals/core.is_trusted.php -%%WWWDIR%%/lib/smarty/internals/core.load_plugins.php -%%WWWDIR%%/lib/smarty/internals/core.load_resource_plugin.php -%%WWWDIR%%/lib/smarty/internals/core.process_cached_inserts.php -%%WWWDIR%%/lib/smarty/internals/core.process_compiled_include.php -%%WWWDIR%%/lib/smarty/internals/core.read_cache_file.php -%%WWWDIR%%/lib/smarty/internals/core.rm_auto.php -%%WWWDIR%%/lib/smarty/internals/core.rmdir.php -%%WWWDIR%%/lib/smarty/internals/core.run_insert_handler.php -%%WWWDIR%%/lib/smarty/internals/core.smarty_include_php.php -%%WWWDIR%%/lib/smarty/internals/core.write_cache_file.php -%%WWWDIR%%/lib/smarty/internals/core.write_compiled_include.php -%%WWWDIR%%/lib/smarty/internals/core.write_compiled_resource.php -%%WWWDIR%%/lib/smarty/internals/core.write_file.php -%%WWWDIR%%/lib/smarty/plugins/block.textformat.php -%%WWWDIR%%/lib/smarty/plugins/compiler.assign.php -%%WWWDIR%%/lib/smarty/plugins/function.assign_debug_info.php -%%WWWDIR%%/lib/smarty/plugins/function.config_load.php -%%WWWDIR%%/lib/smarty/plugins/function.counter.php -%%WWWDIR%%/lib/smarty/plugins/function.cycle.php -%%WWWDIR%%/lib/smarty/plugins/function.debug.php -%%WWWDIR%%/lib/smarty/plugins/function.eval.php -%%WWWDIR%%/lib/smarty/plugins/function.fetch.php -%%WWWDIR%%/lib/smarty/plugins/function.html_checkboxes.php -%%WWWDIR%%/lib/smarty/plugins/function.html_image.php -%%WWWDIR%%/lib/smarty/plugins/function.html_options.php -%%WWWDIR%%/lib/smarty/plugins/function.html_radios.php -%%WWWDIR%%/lib/smarty/plugins/function.html_select_date.php -%%WWWDIR%%/lib/smarty/plugins/function.html_select_time.php -%%WWWDIR%%/lib/smarty/plugins/function.html_table.php -%%WWWDIR%%/lib/smarty/plugins/function.mailto.php -%%WWWDIR%%/lib/smarty/plugins/function.math.php -%%WWWDIR%%/lib/smarty/plugins/function.popup.php -%%WWWDIR%%/lib/smarty/plugins/function.popup_init.php -%%WWWDIR%%/lib/smarty/plugins/modifier.capitalize.php -%%WWWDIR%%/lib/smarty/plugins/modifier.cat.php -%%WWWDIR%%/lib/smarty/plugins/modifier.count_characters.php -%%WWWDIR%%/lib/smarty/plugins/modifier.count_paragraphs.php -%%WWWDIR%%/lib/smarty/plugins/modifier.count_sentences.php -%%WWWDIR%%/lib/smarty/plugins/modifier.count_words.php -%%WWWDIR%%/lib/smarty/plugins/modifier.date_format.php -%%WWWDIR%%/lib/smarty/plugins/modifier.debug_print_var.php -%%WWWDIR%%/lib/smarty/plugins/modifier.default.php -%%WWWDIR%%/lib/smarty/plugins/modifier.escape.php -%%WWWDIR%%/lib/smarty/plugins/modifier.indent.php -%%WWWDIR%%/lib/smarty/plugins/modifier.lower.php -%%WWWDIR%%/lib/smarty/plugins/modifier.nl2br.php -%%WWWDIR%%/lib/smarty/plugins/modifier.regex_replace.php -%%WWWDIR%%/lib/smarty/plugins/modifier.replace.php -%%WWWDIR%%/lib/smarty/plugins/modifier.spacify.php -%%WWWDIR%%/lib/smarty/plugins/modifier.string_format.php -%%WWWDIR%%/lib/smarty/plugins/modifier.strip.php -%%WWWDIR%%/lib/smarty/plugins/modifier.strip_tags.php -%%WWWDIR%%/lib/smarty/plugins/modifier.truncate.php -%%WWWDIR%%/lib/smarty/plugins/modifier.upper.php -%%WWWDIR%%/lib/smarty/plugins/modifier.wordwrap.php -%%WWWDIR%%/lib/smarty/plugins/outputfilter.trimwhitespace.php -%%WWWDIR%%/lib/smarty/plugins/shared.escape_special_chars.php -%%WWWDIR%%/lib/smarty/plugins/shared.make_timestamp.php -%%WWWDIR%%/lib/templates/admin/account-switch-search.html -%%WWWDIR%%/lib/templates/admin/admin-access.html -%%WWWDIR%%/lib/templates/admin/admin-search.html -%%WWWDIR%%/lib/templates/admin/admin-user-start.html -%%WWWDIR%%/lib/templates/admin/admin-user.html -%%WWWDIR%%/lib/templates/admin/adsense-accounts.html -%%WWWDIR%%/lib/templates/admin/adsense-create.html -%%WWWDIR%%/lib/templates/admin/adsense-edit.html -%%WWWDIR%%/lib/templates/admin/adsense-link.html -%%WWWDIR%%/lib/templates/admin/adsense-start.html -%%WWWDIR%%/lib/templates/admin/adsense-terms.html -%%WWWDIR%%/lib/templates/admin/advertiser-access.html -%%WWWDIR%%/lib/templates/admin/advertiser-edit.html -%%WWWDIR%%/lib/templates/admin/advertiser-index-list.html -%%WWWDIR%%/lib/templates/admin/advertiser-index.html -%%WWWDIR%%/lib/templates/admin/advertiser-trackers-list.html -%%WWWDIR%%/lib/templates/admin/advertiser-trackers.html -%%WWWDIR%%/lib/templates/admin/advertiser-user-start.html -%%WWWDIR%%/lib/templates/admin/advertiser-user.html -%%WWWDIR%%/lib/templates/admin/affiliate-access.html -%%WWWDIR%%/lib/templates/admin/affiliate-edit.html -%%WWWDIR%%/lib/templates/admin/affiliate-user-start.html -%%WWWDIR%%/lib/templates/admin/affiliate-user.html -%%WWWDIR%%/lib/templates/admin/agency-access.html -%%WWWDIR%%/lib/templates/admin/agency-edit.html -%%WWWDIR%%/lib/templates/admin/agency-user-start.html -%%WWWDIR%%/lib/templates/admin/agency-user.html -%%WWWDIR%%/lib/templates/admin/ajax/find-other-networks.html -%%WWWDIR%%/lib/templates/admin/banner-edit.html -%%WWWDIR%%/lib/templates/admin/banner-index-list.html -%%WWWDIR%%/lib/templates/admin/banner-index.html -%%WWWDIR%%/lib/templates/admin/campaign-edit.html -%%WWWDIR%%/lib/templates/admin/campaign-index-list.html -%%WWWDIR%%/lib/templates/admin/campaign-index.html -%%WWWDIR%%/lib/templates/admin/campaign-zone-panel-filters.html -%%WWWDIR%%/lib/templates/admin/campaign-zone-zones.html -%%WWWDIR%%/lib/templates/admin/campaign-zone.html -%%WWWDIR%%/lib/templates/admin/captcha-dialog.html -%%WWWDIR%%/lib/templates/admin/channel-edit.html -%%WWWDIR%%/lib/templates/admin/channel-index-list.html -%%WWWDIR%%/lib/templates/admin/channel-index.html -%%WWWDIR%%/lib/templates/admin/confirmation-dialog.html -%%WWWDIR%%/lib/templates/admin/dashboard/audit.html -%%WWWDIR%%/lib/templates/admin/dashboard/campaign-overview.html -%%WWWDIR%%/lib/templates/admin/dashboard/disabled.html -%%WWWDIR%%/lib/templates/admin/dashboard/error.html -%%WWWDIR%%/lib/templates/admin/dashboard/feed.html -%%WWWDIR%%/lib/templates/admin/dashboard/graph.html -%%WWWDIR%%/lib/templates/admin/dashboard/iframe.html -%%WWWDIR%%/lib/templates/admin/dashboard/login.html -%%WWWDIR%%/lib/templates/admin/dashboard/main.html -%%WWWDIR%%/lib/templates/admin/dashboard/reload.html -%%WWWDIR%%/lib/templates/admin/edit-table/create.html -%%WWWDIR%%/lib/templates/admin/edit-table/custom-adnetworks.html -%%WWWDIR%%/lib/templates/admin/edit-table/custom-country-language.html -%%WWWDIR%%/lib/templates/admin/edit-table/custom-link.html -%%WWWDIR%%/lib/templates/admin/edit-table/custom-user-availability-check.html -%%WWWDIR%%/lib/templates/admin/edit-table/hidden.html -%%WWWDIR%%/lib/templates/admin/edit-table/main.html -%%WWWDIR%%/lib/templates/admin/form/custom-advertiser-signup-dialog.html -%%WWWDIR%%/lib/templates/admin/form/custom-banner-backup-note.html -%%WWWDIR%%/lib/templates/admin/form/custom-banner-iab-note.html -%%WWWDIR%%/lib/templates/admin/form/custom-banner-upload.html -%%WWWDIR%%/lib/templates/admin/form/custom-campaign-date-limit-both-set-note.html -%%WWWDIR%%/lib/templates/admin/form/custom-campaign-inactive-note.html -%%WWWDIR%%/lib/templates/admin/form/custom-campaign-remaining-click.html -%%WWWDIR%%/lib/templates/admin/form/custom-campaign-remaining-conv.html -%%WWWDIR%%/lib/templates/admin/form/custom-campaign-remaining-impr.html -%%WWWDIR%%/lib/templates/admin/form/custom-campaign-type-note.html -%%WWWDIR%%/lib/templates/admin/form/custom-capping-callout.html -%%WWWDIR%%/lib/templates/admin/form/custom-contract-ecpm-note.html -%%WWWDIR%%/lib/templates/admin/form/custom-country-language.html -%%WWWDIR%%/lib/templates/admin/form/custom-date-campaign-date-limit-set-note.html -%%WWWDIR%%/lib/templates/admin/form/custom-minimum-impressions-note.html -%%WWWDIR%%/lib/templates/admin/form/custom-pricing-campaign-date-limit-set-note.html -%%WWWDIR%%/lib/templates/admin/form/custom-remnant-ecpm-note.html -%%WWWDIR%%/lib/templates/admin/form/element-raw.html -%%WWWDIR%%/lib/templates/admin/form/elements.html -%%WWWDIR%%/lib/templates/admin/form/form.html -%%WWWDIR%%/lib/templates/admin/form/general-errors.html -%%WWWDIR%%/lib/templates/admin/layout/branding.html -%%WWWDIR%%/lib/templates/admin/layout/breadcrumbs-title.html -%%WWWDIR%%/lib/templates/admin/layout/content-footer.html -%%WWWDIR%%/lib/templates/admin/layout/content-header.html -%%WWWDIR%%/lib/templates/admin/layout/links-container.html -%%WWWDIR%%/lib/templates/admin/layout/main.html -%%WWWDIR%%/lib/templates/admin/layout/messages.html -%%WWWDIR%%/lib/templates/admin/layout/navigation.html -%%WWWDIR%%/lib/templates/admin/layout/scripts.html -%%WWWDIR%%/lib/templates/admin/layout/search.html -%%WWWDIR%%/lib/templates/admin/layout/section-navigation.html -%%WWWDIR%%/lib/templates/admin/layout/sidebar.html -%%WWWDIR%%/lib/templates/admin/layout/styles.html -%%WWWDIR%%/lib/templates/admin/login.html -%%WWWDIR%%/lib/templates/admin/option.html -%%WWWDIR%%/lib/templates/admin/options/break.html -%%WWWDIR%%/lib/templates/admin/options/checkbox.html -%%WWWDIR%%/lib/templates/admin/options/checkdependancies.html -%%WWWDIR%%/lib/templates/admin/options/endsection.html -%%WWWDIR%%/lib/templates/admin/options/gettype.html -%%WWWDIR%%/lib/templates/admin/options/hiddencheckbox.html -%%WWWDIR%%/lib/templates/admin/options/locked.html -%%WWWDIR%%/lib/templates/admin/options/padlock.html -%%WWWDIR%%/lib/templates/admin/options/password.html -%%WWWDIR%%/lib/templates/admin/options/plaintext.html -%%WWWDIR%%/lib/templates/admin/options/select.html -%%WWWDIR%%/lib/templates/admin/options/startsection.html -%%WWWDIR%%/lib/templates/admin/options/statscolumns.html -%%WWWDIR%%/lib/templates/admin/options/text.html -%%WWWDIR%%/lib/templates/admin/options/textarea.html -%%WWWDIR%%/lib/templates/admin/options/url.html -%%WWWDIR%%/lib/templates/admin/passthrough.html -%%WWWDIR%%/lib/templates/admin/plugin-export.html -%%WWWDIR%%/lib/templates/admin/plugin-group-index-list.html -%%WWWDIR%%/lib/templates/admin/plugin-group-preferences.html -%%WWWDIR%%/lib/templates/admin/plugin-group-settings.html -%%WWWDIR%%/lib/templates/admin/plugin-group-switcher.html -%%WWWDIR%%/lib/templates/admin/plugin-group-view.html -%%WWWDIR%%/lib/templates/admin/plugin-index.html -%%WWWDIR%%/lib/templates/admin/plugin-report.html -%%WWWDIR%%/lib/templates/admin/plugin-uninstall.html -%%WWWDIR%%/lib/templates/admin/plugin-view.html -%%WWWDIR%%/lib/templates/admin/terms-dialog.html -%%WWWDIR%%/lib/templates/admin/tracker-edit.html -%%WWWDIR%%/lib/templates/admin/user-access.html -%%WWWDIR%%/lib/templates/admin/user-link-start.html -%%WWWDIR%%/lib/templates/admin/user-link.html -%%WWWDIR%%/lib/templates/admin/userlog-audit-detailed.html -%%WWWDIR%%/lib/templates/admin/userlog-index.html -%%WWWDIR%%/lib/templates/admin/website-index-list.html -%%WWWDIR%%/lib/templates/admin/website-index.html -%%WWWDIR%%/lib/templates/admin/zone-advanced.html -%%WWWDIR%%/lib/templates/admin/zone-edit.html -%%WWWDIR%%/lib/templates/admin/zone-index-list.html -%%WWWDIR%%/lib/templates/admin/zone-index.html -%%WWWDIR%%/lib/util/file/file.php -%%WWWDIR%%/lib/wact/db/dataspace.inc.php -%%WWWDIR%%/lib/wact/db/db.inc.php -%%WWWDIR%%/lib/wact/db/dbqueryinterface.inc.php -%%WWWDIR%%/lib/wact/db/drivers/mdb2.inc.php -%%WWWDIR%%/lib/wact/db/drivers/mysql.inc.php -%%WWWDIR%%/lib/wact/db/drivers/pear.inc.php -%%WWWDIR%%/lib/wact/db/error.inc.php -%%WWWDIR%%/lib/wact/db/interfaces/connection.inc.php -%%WWWDIR%%/lib/wact/db/interfaces/pageddataset.php -%%WWWDIR%%/lib/wact/db/interfaces/pager.php -%%WWWDIR%%/lib/wact/db/interfaces/record.php -%%WWWDIR%%/lib/wact/db/interfaces/recordset.php -%%WWWDIR%%/lib/wact/db/mdbc.inc.php -%%WWWDIR%%/lib/xajax.inc.php -%%WWWDIR%%/lib/xajax/LICENSE.txt -%%WWWDIR%%/lib/xajax/README.txt -%%WWWDIR%%/lib/xajax/lib/activex_off.js -%%WWWDIR%%/lib/xajax/xajax.inc.php -%%WWWDIR%%/lib/xajax/xajaxCompress.php -%%WWWDIR%%/lib/xajax/xajaxResponse.inc.php -%%WWWDIR%%/lib/xajax/xajax_js/xajax.js -%%WWWDIR%%/lib/xajax/xajax_js/xajax_uncompressed.js -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/LICENSE -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/openads-api-xmlrpc.jar -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/AbstractService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Advertiser.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/AdvertiserService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Agency.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/AgencyService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Banner.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/BannerService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Campaign.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/CampaignService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/LogonService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/OpenAdsApiXmlRpcProxy.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Publisher.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/PublisherService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Zone.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/ZoneService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/LICENSE -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/openads-api-xmlrpc.jar -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/AbstractService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Advertiser.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/AdvertiserService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Agency.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/AgencyService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Banner.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/BannerService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Campaign.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/CampaignService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/LogonService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/OpenAdsApiXmlRpcProxy.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Publisher.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/PublisherService.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Zone.java -%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/ZoneService.java -%%WWWDIR%%/lib/xmlrpc/php/AdvertiserInfo.php -%%WWWDIR%%/lib/xmlrpc/php/AgencyInfo.php -%%WWWDIR%%/lib/xmlrpc/php/BannerInfo.php -%%WWWDIR%%/lib/xmlrpc/php/CampaignInfo.php -%%WWWDIR%%/lib/xmlrpc/php/ChannelInfo.php -%%WWWDIR%%/lib/xmlrpc/php/Info.php -%%WWWDIR%%/lib/xmlrpc/php/PublisherInfo.php -%%WWWDIR%%/lib/xmlrpc/php/TargetingInfo.php -%%WWWDIR%%/lib/xmlrpc/php/UserInfo.php -%%WWWDIR%%/lib/xmlrpc/php/XmlRpcUtils.php -%%WWWDIR%%/lib/xmlrpc/php/ZoneInfo.php -%%WWWDIR%%/lib/xmlrpc/php/openads-api-xmlrpc.inc.php -%%WWWDIR%%/lib/xmlrpc/php/openads-xmlrpc.inc.php -%%WWWDIR%%/maintenance/maintenance-distributed.php -%%WWWDIR%%/maintenance/maintenance.php -%%WWWDIR%%/memory.php -%%WWWDIR%%/phpadsnew.inc.php -%%WWWDIR%%/pre-check.php -%%WWWDIR%%/robots.txt -%%WWWDIR%%/scripts/.htaccess -%%WWWDIR%%/scripts/maintenance/maintenance-distributed.php -%%WWWDIR%%/scripts/maintenance/maintenance.php -%%WWWDIR%%/scripts/maintenance/plot-maintenance-times/README.txt -%%WWWDIR%%/scripts/maintenance/plot-maintenance-times/extract -%%WWWDIR%%/scripts/maintenance/plot-maintenance-times/plot -%%WWWDIR%%/scripts/maintenance/tools/migrateBucketData.php -%%WWWDIR%%/scripts/maintenance/tools/republish.php -%%WWWDIR%%/scripts/maintenance/tools/rollupStats.php -%%WWWDIR%%/scripts/maintenance/tools/statisticsTestAndCorrect.php -%%WWWDIR%%/scripts/maintenance/translationStrings.php -%%WWWDIR%%/scripts/rpm/core-upgrade.php -%%WWWDIR%%/scripts/rpm/lib-rpm.php -%%WWWDIR%%/scripts/rpm/plugin-upgrade.php -%%WWWDIR%%/var/.htaccess -%%WWWDIR%%/var/UPGRADE -%%WWWDIR%%/var/cache/README.txt -%%WWWDIR%%/var/plugins/README.txt -%%WWWDIR%%/variables.php -%%WWWDIR%%/www/admin/account-index.php -%%WWWDIR%%/www/admin/account-preferences-banner.php -%%WWWDIR%%/www/admin/account-preferences-campaign-email-reports.php -%%WWWDIR%%/www/admin/account-preferences-campaign.php -%%WWWDIR%%/www/admin/account-preferences-index.php -%%WWWDIR%%/www/admin/account-preferences-plugin.php -%%WWWDIR%%/www/admin/account-preferences-timezone.php -%%WWWDIR%%/www/admin/account-preferences-tracker.php -%%WWWDIR%%/www/admin/account-preferences-user-interface.php -%%WWWDIR%%/www/admin/account-settings-banner-delivery.php -%%WWWDIR%%/www/admin/account-settings-banner-logging.php -%%WWWDIR%%/www/admin/account-settings-banner-storage.php -%%WWWDIR%%/www/admin/account-settings-database.php -%%WWWDIR%%/www/admin/account-settings-debug.php -%%WWWDIR%%/www/admin/account-settings-email.php -%%WWWDIR%%/www/admin/account-settings-geotargeting.php -%%WWWDIR%%/www/admin/account-settings-index.php -%%WWWDIR%%/www/admin/account-settings-maintenance.php -%%WWWDIR%%/www/admin/account-settings-plugins.php -%%WWWDIR%%/www/admin/account-settings-tracking.php -%%WWWDIR%%/www/admin/account-settings-update.php -%%WWWDIR%%/www/admin/account-settings-user-interface.php -%%WWWDIR%%/www/admin/account-switch-search.php -%%WWWDIR%%/www/admin/account-switch.php -%%WWWDIR%%/www/admin/account-user-email.php -%%WWWDIR%%/www/admin/account-user-index.php -%%WWWDIR%%/www/admin/account-user-name-language-timezone.php -%%WWWDIR%%/www/admin/account-user-name-language.php -%%WWWDIR%%/www/admin/account-user-password.php +%%WWWDIR%%/adframe.php +%%WWWDIR%%/adlayer.php +%%WWWDIR%%/www/admin/run-mpe-xajax.php +%%WWWDIR%%/www/admin/campaign-modify.php +%%WWWDIR%%/www/admin/agency-access.php %%WWWDIR%%/www/admin/admin-access.php -%%WWWDIR%%/www/admin/admin-generate.php -%%WWWDIR%%/www/admin/admin-search.php -%%WWWDIR%%/www/admin/admin-user-start.php -%%WWWDIR%%/www/admin/admin-user-unlink.php -%%WWWDIR%%/www/admin/admin-user.php -%%WWWDIR%%/www/admin/adsense-accounts.php -%%WWWDIR%%/www/admin/adsense-create.php -%%WWWDIR%%/www/admin/adsense-edit.php -%%WWWDIR%%/www/admin/adsense-link.php +%%WWWDIR%%/www/admin/advertiser-user-unlink.php +%%WWWDIR%%/www/admin/maintenance-appendcode-check.php +%%WWWDIR%%/www/admin/campaign-zone.php +%%WWWDIR%%/www/admin/account-settings-index.php +%%WWWDIR%%/www/admin/install-runtask.php +%%WWWDIR%%/www/admin/md5.js +%%WWWDIR%%/www/admin/index.php +%%WWWDIR%%/www/admin/banner-swf.php +%%WWWDIR%%/www/admin/website-index.php +%%WWWDIR%%/www/admin/lib-maintenance.inc.php %%WWWDIR%%/www/admin/advertiser-access.php -%%WWWDIR%%/www/admin/advertiser-campaigns.php -%%WWWDIR%%/www/admin/advertiser-delete.php -%%WWWDIR%%/www/admin/advertiser-edit.php -%%WWWDIR%%/www/admin/advertiser-index.php -%%WWWDIR%%/www/admin/advertiser-trackers.php +%%WWWDIR%%/www/admin/logout.php +%%WWWDIR%%/www/admin/banner-delete.php +%%WWWDIR%%/www/admin/lib-append.inc.php +%%WWWDIR%%/www/admin/inventory-retrieve.php +%%WWWDIR%%/www/admin/precheck/openx_logo.gif +%%WWWDIR%%/www/admin/precheck/list_element.gif +%%WWWDIR%%/www/admin/precheck/body_piksel.gif %%WWWDIR%%/www/admin/advertiser-user-start.php -%%WWWDIR%%/www/admin/advertiser-user-unlink.php +%%WWWDIR%%/www/admin/agency-index.php +%%WWWDIR%%/www/admin/maintenance-cache-rebuild.php %%WWWDIR%%/www/admin/advertiser-user.php -%%WWWDIR%%/www/admin/affiliate-access.php -%%WWWDIR%%/www/admin/affiliate-advsetup.php -%%WWWDIR%%/www/admin/affiliate-channels.php -%%WWWDIR%%/www/admin/affiliate-delete.php -%%WWWDIR%%/www/admin/affiliate-edit.php -%%WWWDIR%%/www/admin/affiliate-invocation.php -%%WWWDIR%%/www/admin/affiliate-preview.php -%%WWWDIR%%/www/admin/affiliate-user-start.php -%%WWWDIR%%/www/admin/affiliate-user-unlink.php -%%WWWDIR%%/www/admin/affiliate-user.php -%%WWWDIR%%/www/admin/affiliate-zones.php -%%WWWDIR%%/www/admin/agency-access.php +%%WWWDIR%%/www/admin/regenerate-platformhash.php +%%WWWDIR%%/www/admin/account-user-email.php +%%WWWDIR%%/www/admin/lib-storage.inc.php +%%WWWDIR%%/www/admin/advertiser-campaigns.php +%%WWWDIR%%/www/admin/banner-htmlpreview.php +%%WWWDIR%%/www/admin/lib-data-statistics.inc.php +%%WWWDIR%%/www/admin/currencyFX-list.php +%%WWWDIR%%/www/admin/tracker-append.php +%%WWWDIR%%/www/admin/zone-include.php +%%WWWDIR%%/www/admin/admin-search.php +%%WWWDIR%%/www/admin/campaign-zone-link.php %%WWWDIR%%/www/admin/agency-delete.php -%%WWWDIR%%/www/admin/agency-edit.php -%%WWWDIR%%/www/admin/agency-index.php +%%WWWDIR%%/www/admin/lib-sessions.inc.php +%%WWWDIR%%/www/admin/maintenance-index.php +%%WWWDIR%%/www/admin/campaign-edit.php +%%WWWDIR%%/www/admin/account-settings-email.php +%%WWWDIR%%/www/admin/channel-edit.php +%%WWWDIR%%/www/admin/maintenance-updates-js.php +%%WWWDIR%%/www/admin/account-user-name-language-timezone.php +%%WWWDIR%%/www/admin/plugin-preferences.php +%%WWWDIR%%/www/admin/account-preferences-banner.php +%%WWWDIR%%/www/admin/campaign-trackers.php +%%WWWDIR%%/www/admin/advertiser-index.php +%%WWWDIR%%/www/admin/numberFormat.js.php +%%WWWDIR%%/www/admin/maintenance-cache.php +%%WWWDIR%%/www/admin/advertiser-delete.php %%WWWDIR%%/www/admin/agency-user-start.php +%%WWWDIR%%/www/admin/account-user-index.php +%%WWWDIR%%/www/admin/account-settings-user-interface.php +%%WWWDIR%%/www/admin/robots.txt +%%WWWDIR%%/www/admin/maintenance-plugins.php +%%WWWDIR%%/www/admin/lib-prefs.inc.php +%%WWWDIR%%/www/admin/lib-zones.inc.php +%%WWWDIR%%/www/admin/zone-edit.php +%%WWWDIR%%/www/admin/plugin-settings.php +%%WWWDIR%%/www/admin/agency-edit.php +%%WWWDIR%%/www/admin/userlog-audit-detailed.php +%%WWWDIR%%/www/admin/maintenance-acls.php +%%WWWDIR%%/www/admin/zone-modify.php +%%WWWDIR%%/www/admin/lib-gui.inc.php +%%WWWDIR%%/www/admin/admin-user-unlink.php +%%WWWDIR%%/www/admin/account-settings-geotargeting.php +%%WWWDIR%%/www/admin/tracker-delete.php +%%WWWDIR%%/www/admin/account-preferences-campaign-email-reports.php +%%WWWDIR%%/www/admin/banner-edit.php %%WWWDIR%%/www/admin/agency-user-unlink.php -%%WWWDIR%%/www/admin/agency-user.php -%%WWWDIR%%/www/admin/assets/css/chrome-rtl.css -%%WWWDIR%%/www/admin/assets/css/chrome.css -%%WWWDIR%%/www/admin/assets/css/dashboard-widget-ie.css -%%WWWDIR%%/www/admin/assets/css/dashboard-widget.css -%%WWWDIR%%/www/admin/assets/css/icons.css -%%WWWDIR%%/www/admin/assets/css/install-ie.css -%%WWWDIR%%/www/admin/assets/css/install.css -%%WWWDIR%%/www/admin/assets/css/interface-ltr.css -%%WWWDIR%%/www/admin/assets/css/interface-rtl.css -%%WWWDIR%%/www/admin/assets/css/jquery.autocomplete.css -%%WWWDIR%%/www/admin/assets/css/jquery.jqmodal.css -%%WWWDIR%%/www/admin/assets/css/message.css -%%WWWDIR%%/www/admin/assets/css/oa.help.css -%%WWWDIR%%/www/admin/assets/css/preview.css -%%WWWDIR%%/www/admin/assets/css/table.css -%%WWWDIR%%/www/admin/assets/images/accountswitcher-footer.png -%%WWWDIR%%/www/admin/assets/images/accountswitcher-gradient.png +%%WWWDIR%%/www/admin/affiliate-edit.php +%%WWWDIR%%/www/admin/maintenance-banners-check.php +%%WWWDIR%%/www/admin/account-preferences-tracker.php +%%WWWDIR%%/www/admin/banner-acl.php +%%WWWDIR%%/www/admin/run-mpe.php +%%WWWDIR%%/www/admin/tracker-campaigns.php +%%WWWDIR%%/www/admin/maintenance-menus.php +%%WWWDIR%%/www/admin/banner-advanced.php +%%WWWDIR%%/www/admin/lib-html-header.inc.php +%%WWWDIR%%/www/admin/channel-modify.php +%%WWWDIR%%/www/admin/account-settings-debug.php +%%WWWDIR%%/www/admin/lib-gdcolors.inc.php +%%WWWDIR%%/www/admin/userlog-maintenance.php +%%WWWDIR%%/www/admin/assets/min.php +%%WWWDIR%%/www/admin/assets/images/arrow-right.gif +%%WWWDIR%%/www/admin/assets/images/colorpicker.png +%%WWWDIR%%/www/admin/assets/images/icon-advertiser.gif +%%WWWDIR%%/www/admin/assets/images/icon-settings.gif +%%WWWDIR%%/www/admin/assets/images/box-1.gif +%%WWWDIR%%/www/admin/assets/images/wizard-lead-out.png +%%WWWDIR%%/www/admin/assets/images/ltr/icon-undo.gif +%%WWWDIR%%/www/admin/assets/images/ltr/stab-bu.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-corner-000063.gif +%%WWWDIR%%/www/admin/assets/images/ltr/stab-bg.gif +%%WWWDIR%%/www/admin/assets/images/ltr/triangle-l.gif +%%WWWDIR%%/www/admin/assets/images/ltr/caret-rs.gif +%%WWWDIR%%/www/admin/assets/images/ltr/background.gif +%%WWWDIR%%/www/admin/assets/images/ltr/stab-ub.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-ffffff.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-dd.gif +%%WWWDIR%%/www/admin/assets/images/ltr/stab-msu.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-s.gif +%%WWWDIR%%/www/admin/assets/images/ltr/stab-bs.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-DD0000.gif +%%WWWDIR%%/www/admin/assets/images/ltr/go_blue.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-ffffff.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-eb.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-DD0000.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-bg.gif +%%WWWDIR%%/www/admin/assets/images/ltr/stab-sb.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-3399ff.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-000063.gif +%%WWWDIR%%/www/admin/assets/images/ltr/stab-muu.gif +%%WWWDIR%%/www/admin/assets/images/ltr/preloader.gif +%%WWWDIR%%/www/admin/assets/images/ltr/stab-eu.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-3399ff.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-000063.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-eeeeee.gif +%%WWWDIR%%/www/admin/assets/images/ltr/stab-mus.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-CC0000.gif +%%WWWDIR%%/www/admin/assets/images/ltr/go.gif +%%WWWDIR%%/www/admin/assets/images/ltr/icon-update.gif +%%WWWDIR%%/www/admin/assets/images/ltr/stab-es.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-d.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-eeeeee.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-CC0000.gif +%%WWWDIR%%/www/admin/assets/images/ltr/tab-sb.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-external-large.png +%%WWWDIR%%/www/admin/assets/images/icon-websites-large.png +%%WWWDIR%%/www/admin/assets/images/icon-weekly.gif +%%WWWDIR%%/www/admin/assets/images/icon-clipboard.gif +%%WWWDIR%%/www/admin/assets/images/tab-lead-out.gif +%%WWWDIR%%/www/admin/assets/images/install-terms.png +%%WWWDIR%%/www/admin/assets/images/icon-advertiser-duplicate.png +%%WWWDIR%%/www/admin/assets/images/icon-textzone.gif +%%WWWDIR%%/www/admin/assets/images/icon-website.png +%%WWWDIR%%/www/admin/assets/images/icon-advertiser-remove.png +%%WWWDIR%%/www/admin/assets/images/icon-statistics.gif +%%WWWDIR%%/www/admin/assets/images/bug.gif +%%WWWDIR%%/www/admin/assets/images/icon-probability.png +%%WWWDIR%%/www/admin/assets/images/icon-banner.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-duplicate.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-to-campaign.png +%%WWWDIR%%/www/admin/assets/images/cropmark-tr.gif +%%WWWDIR%%/www/admin/assets/images/icon-date.gif +%%WWWDIR%%/www/admin/assets/images/indicator-blue-small-transparent.gif +%%WWWDIR%%/www/admin/assets/images/logo-marketplace.png +%%WWWDIR%%/www/admin/assets/images/table-bg.gif +%%WWWDIR%%/www/admin/assets/images/icon-direct-select-large.png +%%WWWDIR%%/www/admin/assets/images/icon-interstitial.gif +%%WWWDIR%%/www/admin/assets/images/tab-body.gif +%%WWWDIR%%/www/admin/assets/images/custom-horizontal.png +%%WWWDIR%%/www/admin/assets/images/button-arrow-right.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-click-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-large.png +%%WWWDIR%%/www/admin/assets/images/information.gif +%%WWWDIR%%/www/admin/assets/images/break-el.gif +%%WWWDIR%%/www/admin/assets/images/icon-tracker-duplicate.png +%%WWWDIR%%/www/admin/assets/images/icon-duplicate-acl.gif +%%WWWDIR%%/www/admin/assets/images/login-welcome.gif +%%WWWDIR%%/www/admin/assets/images/pixel.gif +%%WWWDIR%%/www/admin/assets/images/corners.png +%%WWWDIR%%/www/admin/assets/images/progress-bg.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-probability.gif +%%WWWDIR%%/www/admin/assets/images/caret-ds.gif +%%WWWDIR%%/www/admin/assets/images/icon-activate.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-email-d.gif +%%WWWDIR%%/www/admin/assets/images/white-control-corners.png %%WWWDIR%%/www/admin/assets/images/accountswitcher-header.png -%%WWWDIR%%/www/admin/assets/images/accountswitcher-shadow.png -%%WWWDIR%%/www/admin/assets/images/ajax-loader-clock.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-floating.png +%%WWWDIR%%/www/admin/assets/images/icon-banners-large.png +%%WWWDIR%%/www/admin/assets/images/icon-bannerlink-large.png +%%WWWDIR%%/www/admin/assets/images/icon-dummy-large.png +%%WWWDIR%%/www/admin/assets/images/triangle-u-d.gif +%%WWWDIR%%/www/admin/assets/images/logo-bk.png +%%WWWDIR%%/www/admin/assets/images/icon-affiliate-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-advertiser-openx.png %%WWWDIR%%/www/admin/assets/images/ajax-loader-transparent.gif -%%WWWDIR%%/www/admin/assets/images/arrow-d.gif -%%WWWDIR%%/www/admin/assets/images/arrow-l.gif -%%WWWDIR%%/www/admin/assets/images/arrow-left-disabled.gif -%%WWWDIR%%/www/admin/assets/images/arrow-left.gif +%%WWWDIR%%/www/admin/assets/images/break-l.gif +%%WWWDIR%%/www/admin/assets/images/panel-corners.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-html-large.png +%%WWWDIR%%/www/admin/assets/images/cropmark-bl.gif +%%WWWDIR%%/www/admin/assets/images/icon-channel.gif +%%WWWDIR%%/www/admin/assets/images/icon-tracker-d.gif +%%WWWDIR%%/www/admin/assets/images/triangle-d.gif +%%WWWDIR%%/www/admin/assets/images/dropdown-left.png +%%WWWDIR%%/www/admin/assets/images/icon-move-campaign.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-text-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-calendar.gif +%%WWWDIR%%/www/admin/assets/images/icon-acl-add.gif +%%WWWDIR%%/www/admin/assets/images/icon-advertisers.png +%%WWWDIR%%/www/admin/assets/images/install-finished.png +%%WWWDIR%%/www/admin/assets/images/icon-zone-click.gif +%%WWWDIR%%/www/admin/assets/images/help-icon.gif +%%WWWDIR%%/www/admin/assets/images/market-zone-optin.gif +%%WWWDIR%%/www/admin/assets/images/button-navigation.gif +%%WWWDIR%%/www/admin/assets/images/panel-background.png +%%WWWDIR%%/www/admin/assets/images/line-gradient.gif +%%WWWDIR%%/www/admin/assets/images/error.gif +%%WWWDIR%%/www/admin/assets/images/icon-deactivate.png +%%WWWDIR%%/www/admin/assets/images/message-arrow-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-setup.gif +%%WWWDIR%%/www/admin/assets/images/icon-move-tracker.gif +%%WWWDIR%%/www/admin/assets/images/caret-r.gif +%%WWWDIR%%/www/admin/assets/images/icon-no-acl.gif +%%WWWDIR%%/www/admin/assets/images/content-bg.png +%%WWWDIR%%/www/admin/assets/images/icon-zone-floating-large.png +%%WWWDIR%%/www/admin/assets/images/accountswitcher-gradient.png +%%WWWDIR%%/www/admin/assets/images/button-arrow-right-disabled.gif +%%WWWDIR%%/www/admin/assets/images/icon-filetype-gif.gif +%%WWWDIR%%/www/admin/assets/images/warning.gif +%%WWWDIR%%/www/admin/assets/images/dashboard_teaser_transparent.jpg +%%WWWDIR%%/www/admin/assets/images/dashboard/dashboard-preview.jpg +%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayRight.png +%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayFooter.png +%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayHeader.gif +%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayLeft.png +%%WWWDIR%%/www/admin/assets/images/dashboard/widgetLoginButton.gif +%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayCenter.gif +%%WWWDIR%%/www/admin/assets/images/dashboard/dashboardBg.gif +%%WWWDIR%%/www/admin/assets/images/dashboard/key.gif +%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayLeft.gif +%%WWWDIR%%/www/admin/assets/images/dashboard/user_green.gif +%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayFooter.gif +%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayRight.gif +%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayHeader.png +%%WWWDIR%%/www/admin/assets/images/rtl/caret-rs.gif +%%WWWDIR%%/www/admin/assets/images/rtl/triangle-l.gif +%%WWWDIR%%/www/admin/assets/images/rtl/tab-s.gif +%%WWWDIR%%/www/admin/assets/images/rtl/icon-undo.gif +%%WWWDIR%%/www/admin/assets/images/rtl/background.gif +%%WWWDIR%%/www/admin/assets/images/rtl/stab-es.gif +%%WWWDIR%%/www/admin/assets/images/rtl/stab-msu.gif +%%WWWDIR%%/www/admin/assets/images/rtl/tab-bg.gif +%%WWWDIR%%/www/admin/assets/images/rtl/tab-eb.gif +%%WWWDIR%%/www/admin/assets/images/rtl/stab-sb.gif +%%WWWDIR%%/www/admin/assets/images/rtl/tab-ew.gif +%%WWWDIR%%/www/admin/assets/images/rtl/stab-eu.gif +%%WWWDIR%%/www/admin/assets/images/rtl/tab-dd.gif +%%WWWDIR%%/www/admin/assets/images/rtl/go_blue.gif +%%WWWDIR%%/www/admin/assets/images/rtl/stab-bs.gif +%%WWWDIR%%/www/admin/assets/images/rtl/stab-muu.gif +%%WWWDIR%%/www/admin/assets/images/rtl/stab-ub.gif +%%WWWDIR%%/www/admin/assets/images/rtl/tab-d.gif +%%WWWDIR%%/www/admin/assets/images/rtl/stab-bg.gif +%%WWWDIR%%/www/admin/assets/images/rtl/stab-mus.gif +%%WWWDIR%%/www/admin/assets/images/rtl/tab-sb.gif +%%WWWDIR%%/www/admin/assets/images/rtl/stab-bu.gif +%%WWWDIR%%/www/admin/assets/images/rtl/go.gif +%%WWWDIR%%/www/admin/assets/images/rtl/icon-update.gif +%%WWWDIR%%/www/admin/assets/images/icon-help.gif +%%WWWDIR%%/www/admin/assets/images/icon-tracker-to-advertiser.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign.png +%%WWWDIR%%/www/admin/assets/images/icon-time.gif +%%WWWDIR%%/www/admin/assets/images/caret-u.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-html.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-add-disabled.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-link.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-add-disabled.png +%%WWWDIR%%/www/admin/assets/images/icon-zone.png +%%WWWDIR%%/www/admin/assets/images/dropdown-right.gif +%%WWWDIR%%/www/admin/assets/images/icon-campaign-disabled.png +%%WWWDIR%%/www/admin/assets/images/icon-campaigns-openx-large.png +%%WWWDIR%%/www/admin/assets/images/icon-zone-video-instream.png +%%WWWDIR%%/www/admin/assets/images/icon-checkmark.gif +%%WWWDIR%%/www/admin/assets/images/section-link.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-email-large.png +%%WWWDIR%%/www/admin/assets/images/icon-advertiser-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-email.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-unlink.png +%%WWWDIR%%/www/admin/assets/images/tick.gif +%%WWWDIR%%/www/admin/assets/images/icon-tracker-add.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-large.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-external-disabled.png +%%WWWDIR%%/www/admin/assets/images/indicator-blue-big.gif +%%WWWDIR%%/www/admin/assets/images/control-background.png +%%WWWDIR%%/www/admin/assets/images/filter-panel-left.png +%%WWWDIR%%/www/admin/assets/images/button-arrow-left-disabled.gif +%%WWWDIR%%/www/admin/assets/images/icon-campaign-to-banner.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-stored.gif +%%WWWDIR%%/www/admin/assets/images/icon-move-channel.gif +%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel.png +%%WWWDIR%%/www/admin/assets/images/icon-mail.gif +%%WWWDIR%%/www/admin/assets/images/pencil.gif +%%WWWDIR%%/www/admin/assets/images/icon-channel-d.gif %%WWWDIR%%/www/admin/assets/images/arrow-r.gif -%%WWWDIR%%/www/admin/assets/images/arrow-right-disabled.gif -%%WWWDIR%%/www/admin/assets/images/arrow-right.gif +%%WWWDIR%%/www/admin/assets/images/icon-tracker.gif +%%WWWDIR%%/www/admin/assets/images/icon-campaigns-openx.png +%%WWWDIR%%/www/admin/assets/images/icon-popup-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-campaign-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-linked.gif +%%WWWDIR%%/www/admin/assets/images/icon-advertiser-add.png +%%WWWDIR%%/www/admin/assets/images/install/benefit_cash.png +%%WWWDIR%%/www/admin/assets/images/install/benefit_forum.png +%%WWWDIR%%/www/admin/assets/images/install/benefit_plugins.png +%%WWWDIR%%/www/admin/assets/images/install/benefit_security.png +%%WWWDIR%%/www/admin/assets/images/market-welcome.gif +%%WWWDIR%%/www/admin/assets/images/filter-panel-body.png %%WWWDIR%%/www/admin/assets/images/arrow-u.gif -%%WWWDIR%%/www/admin/assets/images/arrowwh-d.gif -%%WWWDIR%%/www/admin/assets/images/background-gradient.gif +%%WWWDIR%%/www/admin/assets/images/icon-filetype-jpg.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-text.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-text-disabled.png +%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-remove.png +%%WWWDIR%%/www/admin/assets/images/watermark.gif +%%WWWDIR%%/www/admin/assets/images/ruler-top.gif +%%WWWDIR%%/www/admin/assets/images/ruler-left.gif +%%WWWDIR%%/www/admin/assets/images/form-background.gif +%%WWWDIR%%/www/admin/assets/images/icon-tracker-large.png %%WWWDIR%%/www/admin/assets/images/box-0.gif -%%WWWDIR%%/www/admin/assets/images/box-1.gif -%%WWWDIR%%/www/admin/assets/images/break-el.gif -%%WWWDIR%%/www/admin/assets/images/break-l.gif -%%WWWDIR%%/www/admin/assets/images/break.gif -%%WWWDIR%%/www/admin/assets/images/bug-fam.png -%%WWWDIR%%/www/admin/assets/images/bug.gif -%%WWWDIR%%/www/admin/assets/images/button-arrow-left-disabled.gif -%%WWWDIR%%/www/admin/assets/images/button-arrow-left.gif -%%WWWDIR%%/www/admin/assets/images/button-arrow-right-disabled.gif -%%WWWDIR%%/www/admin/assets/images/button-arrow-right.gif -%%WWWDIR%%/www/admin/assets/images/button-navigation.gif -%%WWWDIR%%/www/admin/assets/images/caret-d.gif -%%WWWDIR%%/www/admin/assets/images/caret-ds.gif -%%WWWDIR%%/www/admin/assets/images/caret-l.gif -%%WWWDIR%%/www/admin/assets/images/caret-r.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-add-large.png +%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-remove-large.png +%%WWWDIR%%/www/admin/assets/images/icon-warning-large.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-add.png +%%WWWDIR%%/www/admin/assets/images/spacer.gif +%%WWWDIR%%/www/admin/assets/images/section-lead-in-plain.gif +%%WWWDIR%%/www/admin/assets/images/step.png +%%WWWDIR%%/www/admin/assets/images/icon-zone-to-website.png %%WWWDIR%%/www/admin/assets/images/caret-t.gif -%%WWWDIR%%/www/admin/assets/images/caret-u.gif -%%WWWDIR%%/www/admin/assets/images/colorpicker.png -%%WWWDIR%%/www/admin/assets/images/content-bg.png -%%WWWDIR%%/www/admin/assets/images/control-background.png -%%WWWDIR%%/www/admin/assets/images/control-corners.png -%%WWWDIR%%/www/admin/assets/images/corners.png -%%WWWDIR%%/www/admin/assets/images/cropmark-bl.gif -%%WWWDIR%%/www/admin/assets/images/cropmark-br.gif -%%WWWDIR%%/www/admin/assets/images/cropmark-tl.gif -%%WWWDIR%%/www/admin/assets/images/cropmark-tr.gif +%%WWWDIR%%/www/admin/assets/images/bug-fam.png +%%WWWDIR%%/www/admin/assets/images/icon-website-add-large.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-disabled.png +%%WWWDIR%%/www/admin/assets/images/arrow-left.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-link-large.png +%%WWWDIR%%/www/admin/assets/images/icon-x-grey.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-email-disabled.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-new.gif +%%WWWDIR%%/www/admin/assets/images/icon-size.gif +%%WWWDIR%%/www/admin/assets/images/icon-direct-select-remove.png +%%WWWDIR%%/www/admin/assets/images/install-search.png +%%WWWDIR%%/www/admin/assets/images/icon-acl-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-add-large.png +%%WWWDIR%%/www/admin/assets/images/searchfull.png +%%WWWDIR%%/www/admin/assets/images/icon-zone-remove.png +%%WWWDIR%%/www/admin/assets/images/icon-websites.png +%%WWWDIR%%/www/admin/assets/images/icon-move-channel-agency.gif +%%WWWDIR%%/www/admin/assets/images/icon-generatecode.gif +%%WWWDIR%%/www/admin/assets/images/icon-cross.gif +%%WWWDIR%%/www/admin/assets/images/icon-interstitial-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-stored-d.gif +%%WWWDIR%%/www/admin/assets/images/header-dropdown-right.gif +%%WWWDIR%%/www/admin/assets/images/openads-sites-captcha.gif +%%WWWDIR%%/www/admin/assets/images/icon-tag.png +%%WWWDIR%%/www/admin/assets/images/filter-panel-right.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-remove.png +%%WWWDIR%%/www/admin/assets/images/dropdown-background.png %%WWWDIR%%/www/admin/assets/images/cross.gif -%%WWWDIR%%/www/admin/assets/images/cross.png +%%WWWDIR%%/www/admin/assets/images/icon-recycle-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-website-to-zone.png +%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-add-large.png +%%WWWDIR%%/www/admin/assets/images/excel.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-add.png +%%WWWDIR%%/www/admin/assets/images/icon-filetype-zip.gif +%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-add.png +%%WWWDIR%%/www/admin/assets/images/icon-direct-select-add.png +%%WWWDIR%%/www/admin/assets/images/install-configuration.png +%%WWWDIR%%/www/admin/assets/images/icon-advertisers-large.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-openx-add-large.png +%%WWWDIR%%/www/admin/assets/images/section-body.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-large.png +%%WWWDIR%%/www/admin/assets/images/icon-edit.gif +%%WWWDIR%%/www/admin/assets/images/icon-filetype-swf.gif +%%WWWDIR%%/www/admin/assets/images/wrench.gif +%%WWWDIR%%/www/admin/assets/images/table-header.png +%%WWWDIR%%/www/admin/assets/images/padlock-open.gif +%%WWWDIR%%/www/admin/assets/images/icon-targeting-channels.png +%%WWWDIR%%/www/admin/assets/images/arrow-right-disabled.gif +%%WWWDIR%%/www/admin/assets/images/icon-magnifying-glass.gif +%%WWWDIR%%/www/admin/assets/images/icon-statistics-large.png +%%WWWDIR%%/www/admin/assets/images/install-error-small.gif +%%WWWDIR%%/www/admin/assets/images/icon-filetype-mov.gif +%%WWWDIR%%/www/admin/assets/images/icon-advertiser-large.png +%%WWWDIR%%/www/admin/assets/images/icon-cross.png +%%WWWDIR%%/www/admin/assets/images/icon-delivery.png +%%WWWDIR%%/www/admin/assets/images/icon-cross-d.gif +%%WWWDIR%%/www/admin/assets/images/cropmark-br.gif +%%WWWDIR%%/www/admin/assets/images/icon-duplicate-tracker.gif +%%WWWDIR%%/www/admin/assets/images/icon-shortcut-zone.png +%%WWWDIR%%/www/admin/assets/images/icon-edit-disabled.gif +%%WWWDIR%%/www/admin/assets/images/openads.png +%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-duplicate.png +%%WWWDIR%%/www/admin/assets/images/header.png +%%WWWDIR%%/www/admin/assets/images/icon-back.gif +%%WWWDIR%%/www/admin/assets/images/plugin_delete.gif +%%WWWDIR%%/www/admin/assets/images/header-background.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-text.png +%%WWWDIR%%/www/admin/assets/images/icon-zone-video-instream-disabled.png %%WWWDIR%%/www/admin/assets/images/custom-both.png -%%WWWDIR%%/www/admin/assets/images/custom-horizontal.png -%%WWWDIR%%/www/admin/assets/images/custom-vertical.png -%%WWWDIR%%/www/admin/assets/images/dark-control-corners.png -%%WWWDIR%%/www/admin/assets/images/dashboard-graph-bg.gif -%%WWWDIR%%/www/admin/assets/images/dashboard/dashboard-preview.jpg -%%WWWDIR%%/www/admin/assets/images/dashboard/dashboardBg.gif -%%WWWDIR%%/www/admin/assets/images/dashboard/key.gif -%%WWWDIR%%/www/admin/assets/images/dashboard/user_green.gif -%%WWWDIR%%/www/admin/assets/images/dashboard/widgetLoginButton.gif -%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayCenter.gif -%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayFooter.gif -%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayFooter.png -%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayHeader.gif -%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayHeader.png -%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayLeft.gif -%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayLeft.png -%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayRight.gif -%%WWWDIR%%/www/admin/assets/images/dashboard/widgetOverlayRight.png -%%WWWDIR%%/www/admin/assets/images/dashboard_teaser_transparent.jpg -%%WWWDIR%%/www/admin/assets/images/dropdown-background.png -%%WWWDIR%%/www/admin/assets/images/dropdown-left.gif -%%WWWDIR%%/www/admin/assets/images/dropdown-left.png -%%WWWDIR%%/www/admin/assets/images/dropdown-right.gif -%%WWWDIR%%/www/admin/assets/images/dropdown-right.png -%%WWWDIR%%/www/admin/assets/images/error.gif +%%WWWDIR%%/www/admin/assets/images/message.gif +%%WWWDIR%%/www/admin/assets/images/install-busy.gif +%%WWWDIR%%/www/admin/assets/images/icon-zoom.gif +%%WWWDIR%%/www/admin/assets/images/icon-connection.gif +%%WWWDIR%%/www/admin/assets/images/icon-website-add.png +%%WWWDIR%%/www/admin/assets/images/icon-calendar-d.gif +%%WWWDIR%%/www/admin/assets/images/section-lead-in.gif +%%WWWDIR%%/www/admin/assets/images/arrowwh-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-website-duplicate.png +%%WWWDIR%%/www/admin/assets/images/info.gif +%%WWWDIR%%/www/admin/assets/images/header-corners.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-external.png +%%WWWDIR%%/www/admin/assets/images/caret-l.gif +%%WWWDIR%%/www/admin/assets/images/section-lead-out.gif +%%WWWDIR%%/www/admin/assets/images/icon-warning.gif +%%WWWDIR%%/www/admin/assets/images/icon-move-zone.gif +%%WWWDIR%%/www/admin/assets/images/accountswitcher-shadow.png +%%WWWDIR%%/www/admin/assets/images/indicator.gif %%WWWDIR%%/www/admin/assets/images/errormessage.gif -%%WWWDIR%%/www/admin/assets/images/excel.gif -%%WWWDIR%%/www/admin/assets/images/filter-panel-body.png -%%WWWDIR%%/www/admin/assets/images/filter-panel-left.png -%%WWWDIR%%/www/admin/assets/images/filter-panel-right.png -%%WWWDIR%%/www/admin/assets/images/flags/ad.gif -%%WWWDIR%%/www/admin/assets/images/flags/ae.gif -%%WWWDIR%%/www/admin/assets/images/flags/af.gif -%%WWWDIR%%/www/admin/assets/images/flags/ag.gif -%%WWWDIR%%/www/admin/assets/images/flags/al.gif -%%WWWDIR%%/www/admin/assets/images/flags/am.gif -%%WWWDIR%%/www/admin/assets/images/flags/an.gif -%%WWWDIR%%/www/admin/assets/images/flags/ao.gif -%%WWWDIR%%/www/admin/assets/images/flags/ap.gif -%%WWWDIR%%/www/admin/assets/images/flags/ar.gif -%%WWWDIR%%/www/admin/assets/images/flags/at.gif -%%WWWDIR%%/www/admin/assets/images/flags/au.gif -%%WWWDIR%%/www/admin/assets/images/flags/az.gif -%%WWWDIR%%/www/admin/assets/images/flags/ba.gif -%%WWWDIR%%/www/admin/assets/images/flags/bb.gif -%%WWWDIR%%/www/admin/assets/images/flags/bd.gif -%%WWWDIR%%/www/admin/assets/images/flags/be.gif -%%WWWDIR%%/www/admin/assets/images/flags/bf.gif -%%WWWDIR%%/www/admin/assets/images/flags/bg.gif -%%WWWDIR%%/www/admin/assets/images/flags/bh.gif -%%WWWDIR%%/www/admin/assets/images/flags/bi.gif -%%WWWDIR%%/www/admin/assets/images/flags/bj.gif -%%WWWDIR%%/www/admin/assets/images/flags/bn.gif -%%WWWDIR%%/www/admin/assets/images/flags/bo.gif -%%WWWDIR%%/www/admin/assets/images/flags/br.gif -%%WWWDIR%%/www/admin/assets/images/flags/bs.gif -%%WWWDIR%%/www/admin/assets/images/flags/bt.gif -%%WWWDIR%%/www/admin/assets/images/flags/bw.gif -%%WWWDIR%%/www/admin/assets/images/flags/by.gif -%%WWWDIR%%/www/admin/assets/images/flags/bz.gif -%%WWWDIR%%/www/admin/assets/images/flags/ca.gif -%%WWWDIR%%/www/admin/assets/images/flags/cd.gif +%%WWWDIR%%/www/admin/assets/images/cross.png +%%WWWDIR%%/www/admin/assets/images/icon-zone-duplicate.png +%%WWWDIR%%/www/admin/assets/images/triangle-d-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-text-disabled.png +%%WWWDIR%%/www/admin/assets/images/icon-conversion.gif +%%WWWDIR%%/www/admin/assets/images/button-arrow-left.gif +%%WWWDIR%%/www/admin/assets/images/icon-stop-large.png +%%WWWDIR%%/www/admin/assets/images/install-database-tick.png +%%WWWDIR%%/www/admin/assets/images/icon-hideinactivate.gif +%%WWWDIR%%/www/admin/assets/images/dropdown-right.png +%%WWWDIR%%/www/admin/assets/images/market-auction.gif +%%WWWDIR%%/www/admin/assets/images/icon-direct-select-add-large.png +%%WWWDIR%%/www/admin/assets/images/icon-filetype-png.gif +%%WWWDIR%%/www/admin/assets/images/dashboard-graph-bg.gif +%%WWWDIR%%/www/admin/assets/images/icon-recycle.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone.gif +%%WWWDIR%%/www/admin/assets/images/icon-filetype-rpm.gif +%%WWWDIR%%/www/admin/assets/images/icon-textzone-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-affiliate.gif +%%WWWDIR%%/www/admin/assets/images/arrow-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-html.gif +%%WWWDIR%%/www/admin/assets/images/logo.png +%%WWWDIR%%/www/admin/assets/images/logo-wtag.png +%%WWWDIR%%/www/admin/assets/images/icon-mouse.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-remove.png +%%WWWDIR%%/www/admin/assets/images/install-welcome.png +%%WWWDIR%%/www/admin/assets/images/icon-popup.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-video-overlay.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-openx-large.png +%%WWWDIR%%/www/admin/assets/images/icon-popup-under.gif +%%WWWDIR%%/www/admin/assets/images/icon-refresh.png +%%WWWDIR%%/www/admin/assets/images/cropmark-tl.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-html-disabled.png +%%WWWDIR%%/www/admin/assets/images/icon-zone-email.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-openx-add.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-duplicate.png +%%WWWDIR%%/www/admin/assets/images/tools.gif +%%WWWDIR%%/www/admin/assets/images/icon-campaign-list.png +%%WWWDIR%%/www/admin/assets/images/install-tasks.png +%%WWWDIR%%/www/admin/assets/images/break.gif +%%WWWDIR%%/www/admin/assets/images/indicator-blue-small.gif +%%WWWDIR%%/www/admin/assets/images/icon-tracker.png +%%WWWDIR%%/www/admin/assets/images/icon-tag-large.png +%%WWWDIR%%/www/admin/assets/images/help.gif +%%WWWDIR%%/www/admin/assets/images/loading.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-text.gif +%%WWWDIR%%/www/admin/assets/images/logo-s.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-html-d.gif +%%WWWDIR%%/www/admin/assets/images/icon-website-large.png +%%WWWDIR%%/www/admin/assets/images/icon-duplicate-banner.gif +%%WWWDIR%%/www/admin/assets/images/icon-campaigns.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-new.gif +%%WWWDIR%%/www/admin/assets/images/icon-shortcut-website.png +%%WWWDIR%%/www/admin/assets/images/flags/ng.gif +%%WWWDIR%%/www/admin/assets/images/flags/gt.gif %%WWWDIR%%/www/admin/assets/images/flags/cf.gif -%%WWWDIR%%/www/admin/assets/images/flags/cg.gif -%%WWWDIR%%/www/admin/assets/images/flags/ch.gif -%%WWWDIR%%/www/admin/assets/images/flags/ci.gif -%%WWWDIR%%/www/admin/assets/images/flags/cl.gif -%%WWWDIR%%/www/admin/assets/images/flags/cm.gif -%%WWWDIR%%/www/admin/assets/images/flags/cn.gif -%%WWWDIR%%/www/admin/assets/images/flags/co.gif -%%WWWDIR%%/www/admin/assets/images/flags/cr.gif -%%WWWDIR%%/www/admin/assets/images/flags/cu.gif -%%WWWDIR%%/www/admin/assets/images/flags/cv.gif -%%WWWDIR%%/www/admin/assets/images/flags/cy.gif -%%WWWDIR%%/www/admin/assets/images/flags/cz.gif -%%WWWDIR%%/www/admin/assets/images/flags/de.gif +%%WWWDIR%%/www/admin/assets/images/flags/my.gif %%WWWDIR%%/www/admin/assets/images/flags/dj.gif -%%WWWDIR%%/www/admin/assets/images/flags/dk.gif +%%WWWDIR%%/www/admin/assets/images/flags/si.gif +%%WWWDIR%%/www/admin/assets/images/flags/il.gif %%WWWDIR%%/www/admin/assets/images/flags/dm.gif -%%WWWDIR%%/www/admin/assets/images/flags/do.gif -%%WWWDIR%%/www/admin/assets/images/flags/dz.gif -%%WWWDIR%%/www/admin/assets/images/flags/ec.gif -%%WWWDIR%%/www/admin/assets/images/flags/ee.gif -%%WWWDIR%%/www/admin/assets/images/flags/eg.gif -%%WWWDIR%%/www/admin/assets/images/flags/er.gif -%%WWWDIR%%/www/admin/assets/images/flags/es.gif -%%WWWDIR%%/www/admin/assets/images/flags/et.gif -%%WWWDIR%%/www/admin/assets/images/flags/eu.gif -%%WWWDIR%%/www/admin/assets/images/flags/fi.gif -%%WWWDIR%%/www/admin/assets/images/flags/fj.gif -%%WWWDIR%%/www/admin/assets/images/flags/fm.gif -%%WWWDIR%%/www/admin/assets/images/flags/fr.gif +%%WWWDIR%%/www/admin/assets/images/flags/sn.gif +%%WWWDIR%%/www/admin/assets/images/flags/ca.gif +%%WWWDIR%%/www/admin/assets/images/flags/co.gif +%%WWWDIR%%/www/admin/assets/images/flags/ni.gif +%%WWWDIR%%/www/admin/assets/images/flags/ch.gif +%%WWWDIR%%/www/admin/assets/images/flags/py.gif +%%WWWDIR%%/www/admin/assets/images/flags/ie.gif +%%WWWDIR%%/www/admin/assets/images/flags/mw.gif +%%WWWDIR%%/www/admin/assets/images/flags/sg.gif +%%WWWDIR%%/www/admin/assets/images/flags/ml.gif %%WWWDIR%%/www/admin/assets/images/flags/ga.gif -%%WWWDIR%%/www/admin/assets/images/flags/gb.gif -%%WWWDIR%%/www/admin/assets/images/flags/gd.gif -%%WWWDIR%%/www/admin/assets/images/flags/ge.gif +%%WWWDIR%%/www/admin/assets/images/flags/nr.gif +%%WWWDIR%%/www/admin/assets/images/flags/pe.gif +%%WWWDIR%%/www/admin/assets/images/flags/tw.gif +%%WWWDIR%%/www/admin/assets/images/flags/mk.gif %%WWWDIR%%/www/admin/assets/images/flags/gh.gif -%%WWWDIR%%/www/admin/assets/images/flags/gi.gif -%%WWWDIR%%/www/admin/assets/images/flags/gm.gif +%%WWWDIR%%/www/admin/assets/images/flags/cz.gif +%%WWWDIR%%/www/admin/assets/images/flags/pk.gif +%%WWWDIR%%/www/admin/assets/images/flags/sr.gif +%%WWWDIR%%/www/admin/assets/images/flags/za.gif +%%WWWDIR%%/www/admin/assets/images/flags/pl.gif +%%WWWDIR%%/www/admin/assets/images/flags/va.gif +%%WWWDIR%%/www/admin/assets/images/flags/lc.gif +%%WWWDIR%%/www/admin/assets/images/flags/kh.gif +%%WWWDIR%%/www/admin/assets/images/flags/fi.gif +%%WWWDIR%%/www/admin/assets/images/flags/ae.gif +%%WWWDIR%%/www/admin/assets/images/flags/al.gif +%%WWWDIR%%/www/admin/assets/images/flags/br.gif +%%WWWDIR%%/www/admin/assets/images/flags/kz.gif +%%WWWDIR%%/www/admin/assets/images/flags/bi.gif +%%WWWDIR%%/www/admin/assets/images/flags/lv.gif +%%WWWDIR%%/www/admin/assets/images/flags/ee.gif +%%WWWDIR%%/www/admin/assets/images/flags/ap.gif +%%WWWDIR%%/www/admin/assets/images/flags/bn.gif +%%WWWDIR%%/www/admin/assets/images/flags/ro.gif +%%WWWDIR%%/www/admin/assets/images/flags/fr.gif +%%WWWDIR%%/www/admin/assets/images/flags/bg.gif +%%WWWDIR%%/www/admin/assets/images/flags/iq.gif +%%WWWDIR%%/www/admin/assets/images/flags/mc.gif %%WWWDIR%%/www/admin/assets/images/flags/gn.gif -%%WWWDIR%%/www/admin/assets/images/flags/gq.gif +%%WWWDIR%%/www/admin/assets/images/flags/jo.gif +%%WWWDIR%%/www/admin/assets/images/flags/gi.gif +%%WWWDIR%%/www/admin/assets/images/flags/nz.gif +%%WWWDIR%%/www/admin/assets/images/flags/md.gif +%%WWWDIR%%/www/admin/assets/images/flags/st.gif +%%WWWDIR%%/www/admin/assets/images/flags/cu.gif +%%WWWDIR%%/www/admin/assets/images/flags/tv.gif +%%WWWDIR%%/www/admin/assets/images/flags/mm.gif +%%WWWDIR%%/www/admin/assets/images/flags/cr.gif +%%WWWDIR%%/www/admin/assets/images/flags/ci.gif +%%WWWDIR%%/www/admin/assets/images/flags/tj.gif +%%WWWDIR%%/www/admin/assets/images/flags/id.gif +%%WWWDIR%%/www/admin/assets/images/flags/mv.gif +%%WWWDIR%%/www/admin/assets/images/flags/de.gif +%%WWWDIR%%/www/admin/assets/images/flags/ws.gif +%%WWWDIR%%/www/admin/assets/images/flags/zr.gif +%%WWWDIR%%/www/admin/assets/images/flags/sa.gif +%%WWWDIR%%/www/admin/assets/images/flags/no.gif +%%WWWDIR%%/www/admin/assets/images/flags/cn.gif +%%WWWDIR%%/www/admin/assets/images/flags/tm.gif +%%WWWDIR%%/www/admin/assets/images/flags/so.gif +%%WWWDIR%%/www/admin/assets/images/flags/na.gif %%WWWDIR%%/www/admin/assets/images/flags/gr.gif -%%WWWDIR%%/www/admin/assets/images/flags/gt.gif -%%WWWDIR%%/www/admin/assets/images/flags/gw.gif -%%WWWDIR%%/www/admin/assets/images/flags/gy.gif +%%WWWDIR%%/www/admin/assets/images/flags/cg.gif +%%WWWDIR%%/www/admin/assets/images/flags/ye.gif +%%WWWDIR%%/www/admin/assets/images/flags/td.gif +%%WWWDIR%%/www/admin/assets/images/flags/mx.gif +%%WWWDIR%%/www/admin/assets/images/flags/dk.gif +%%WWWDIR%%/www/admin/assets/images/flags/bf.gif +%%WWWDIR%%/www/admin/assets/images/flags/ly.gif %%WWWDIR%%/www/admin/assets/images/flags/hk.gif -%%WWWDIR%%/www/admin/assets/images/flags/hn.gif -%%WWWDIR%%/www/admin/assets/images/flags/hr.gif -%%WWWDIR%%/www/admin/assets/images/flags/ht.gif -%%WWWDIR%%/www/admin/assets/images/flags/hu.gif -%%WWWDIR%%/www/admin/assets/images/flags/id.gif -%%WWWDIR%%/www/admin/assets/images/flags/ie.gif -%%WWWDIR%%/www/admin/assets/images/flags/il.gif -%%WWWDIR%%/www/admin/assets/images/flags/in.gif -%%WWWDIR%%/www/admin/assets/images/flags/iq.gif -%%WWWDIR%%/www/admin/assets/images/flags/ir.gif -%%WWWDIR%%/www/admin/assets/images/flags/is.gif -%%WWWDIR%%/www/admin/assets/images/flags/it.gif -%%WWWDIR%%/www/admin/assets/images/flags/jm.gif -%%WWWDIR%%/www/admin/assets/images/flags/jo.gif -%%WWWDIR%%/www/admin/assets/images/flags/jp.gif -%%WWWDIR%%/www/admin/assets/images/flags/ke.gif +%%WWWDIR%%/www/admin/assets/images/flags/kr.gif +%%WWWDIR%%/www/admin/assets/images/flags/ba.gif +%%WWWDIR%%/www/admin/assets/images/flags/ec.gif +%%WWWDIR%%/www/admin/assets/images/flags/bo.gif +%%WWWDIR%%/www/admin/assets/images/flags/uk.gif +%%WWWDIR%%/www/admin/assets/images/flags/bh.gif +%%WWWDIR%%/www/admin/assets/images/flags/vu.gif +%%WWWDIR%%/www/admin/assets/images/flags/vn.gif +%%WWWDIR%%/www/admin/assets/images/flags/am.gif +%%WWWDIR%%/www/admin/assets/images/flags/bs.gif +%%WWWDIR%%/www/admin/assets/images/flags/bt.gif %%WWWDIR%%/www/admin/assets/images/flags/kg.gif -%%WWWDIR%%/www/admin/assets/images/flags/kh.gif +%%WWWDIR%%/www/admin/assets/images/flags/lk.gif +%%WWWDIR%%/www/admin/assets/images/flags/uy.gif +%%WWWDIR%%/www/admin/assets/images/flags/bz.gif %%WWWDIR%%/www/admin/assets/images/flags/ki.gif -%%WWWDIR%%/www/admin/assets/images/flags/km.gif -%%WWWDIR%%/www/admin/assets/images/flags/kn.gif -%%WWWDIR%%/www/admin/assets/images/flags/kp.gif -%%WWWDIR%%/www/admin/assets/images/flags/kr.gif -%%WWWDIR%%/www/admin/assets/images/flags/kw.gif -%%WWWDIR%%/www/admin/assets/images/flags/kz.gif -%%WWWDIR%%/www/admin/assets/images/flags/la.gif +%%WWWDIR%%/www/admin/assets/images/flags/ru.gif +%%WWWDIR%%/www/admin/assets/images/flags/ad.gif %%WWWDIR%%/www/admin/assets/images/flags/lb.gif -%%WWWDIR%%/www/admin/assets/images/flags/lc.gif -%%WWWDIR%%/www/admin/assets/images/flags/li.gif -%%WWWDIR%%/www/admin/assets/images/flags/lk.gif -%%WWWDIR%%/www/admin/assets/images/flags/lr.gif +%%WWWDIR%%/www/admin/assets/images/flags/kn.gif +%%WWWDIR%%/www/admin/assets/images/flags/ua.gif +%%WWWDIR%%/www/admin/assets/images/flags/bb.gif +%%WWWDIR%%/www/admin/assets/images/flags/be.gif +%%WWWDIR%%/www/admin/assets/images/flags/eg.gif %%WWWDIR%%/www/admin/assets/images/flags/lt.gif -%%WWWDIR%%/www/admin/assets/images/flags/lu.gif -%%WWWDIR%%/www/admin/assets/images/flags/lv.gif -%%WWWDIR%%/www/admin/assets/images/flags/ly.gif -%%WWWDIR%%/www/admin/assets/images/flags/ma.gif -%%WWWDIR%%/www/admin/assets/images/flags/mc.gif -%%WWWDIR%%/www/admin/assets/images/flags/md.gif +%%WWWDIR%%/www/admin/assets/images/flags/au.gif +%%WWWDIR%%/www/admin/assets/images/flags/ar.gif +%%WWWDIR%%/www/admin/assets/images/flags/om.gif +%%WWWDIR%%/www/admin/assets/images/flags/bw.gif +%%WWWDIR%%/www/admin/assets/images/flags/an.gif +%%WWWDIR%%/www/admin/assets/images/flags/us.gif +%%WWWDIR%%/www/admin/assets/images/flags/qa.gif +%%WWWDIR%%/www/admin/assets/images/flags/vc.gif +%%WWWDIR%%/www/admin/assets/images/flags/la.gif +%%WWWDIR%%/www/admin/assets/images/flags/er.gif +%%WWWDIR%%/www/admin/assets/images/flags/km.gif +%%WWWDIR%%/www/admin/assets/images/flags/uz.gif +%%WWWDIR%%/www/admin/assets/images/flags/by.gif +%%WWWDIR%%/www/admin/assets/images/flags/eu.gif +%%WWWDIR%%/www/admin/assets/images/flags/ht.gif +%%WWWDIR%%/www/admin/assets/images/flags/ag.gif %%WWWDIR%%/www/admin/assets/images/flags/mg.gif -%%WWWDIR%%/www/admin/assets/images/flags/mk.gif -%%WWWDIR%%/www/admin/assets/images/flags/ml.gif -%%WWWDIR%%/www/admin/assets/images/flags/mm.gif +%%WWWDIR%%/www/admin/assets/images/flags/ir.gif +%%WWWDIR%%/www/admin/assets/images/flags/gm.gif %%WWWDIR%%/www/admin/assets/images/flags/mn.gif -%%WWWDIR%%/www/admin/assets/images/flags/mo.gif -%%WWWDIR%%/www/admin/assets/images/flags/mr.gif -%%WWWDIR%%/www/admin/assets/images/flags/mt.gif -%%WWWDIR%%/www/admin/assets/images/flags/mu.gif -%%WWWDIR%%/www/admin/assets/images/flags/mv.gif -%%WWWDIR%%/www/admin/assets/images/flags/mw.gif -%%WWWDIR%%/www/admin/assets/images/flags/mx.gif -%%WWWDIR%%/www/admin/assets/images/flags/my.gif -%%WWWDIR%%/www/admin/assets/images/flags/mz.gif -%%WWWDIR%%/www/admin/assets/images/flags/na.gif -%%WWWDIR%%/www/admin/assets/images/flags/ne.gif -%%WWWDIR%%/www/admin/assets/images/flags/ng.gif -%%WWWDIR%%/www/admin/assets/images/flags/ni.gif -%%WWWDIR%%/www/admin/assets/images/flags/nl.gif -%%WWWDIR%%/www/admin/assets/images/flags/no.gif +%%WWWDIR%%/www/admin/assets/images/flags/zm.gif %%WWWDIR%%/www/admin/assets/images/flags/np.gif -%%WWWDIR%%/www/admin/assets/images/flags/nr.gif -%%WWWDIR%%/www/admin/assets/images/flags/nz.gif -%%WWWDIR%%/www/admin/assets/images/flags/om.gif -%%WWWDIR%%/www/admin/assets/images/flags/pa.gif -%%WWWDIR%%/www/admin/assets/images/flags/pe.gif +%%WWWDIR%%/www/admin/assets/images/flags/tr.gif +%%WWWDIR%%/www/admin/assets/images/flags/gd.gif +%%WWWDIR%%/www/admin/assets/images/flags/cv.gif %%WWWDIR%%/www/admin/assets/images/flags/pg.gif -%%WWWDIR%%/www/admin/assets/images/flags/ph.gif -%%WWWDIR%%/www/admin/assets/images/flags/pk.gif -%%WWWDIR%%/www/admin/assets/images/flags/pl.gif -%%WWWDIR%%/www/admin/assets/images/flags/pr.gif -%%WWWDIR%%/www/admin/assets/images/flags/pt.gif -%%WWWDIR%%/www/admin/assets/images/flags/py.gif -%%WWWDIR%%/www/admin/assets/images/flags/qa.gif -%%WWWDIR%%/www/admin/assets/images/flags/ro.gif -%%WWWDIR%%/www/admin/assets/images/flags/ru.gif -%%WWWDIR%%/www/admin/assets/images/flags/rw.gif -%%WWWDIR%%/www/admin/assets/images/flags/sa.gif +%%WWWDIR%%/www/admin/assets/images/flags/dz.gif +%%WWWDIR%%/www/admin/assets/images/flags/sy.gif +%%WWWDIR%%/www/admin/assets/images/flags/mr.gif %%WWWDIR%%/www/admin/assets/images/flags/sb.gif -%%WWWDIR%%/www/admin/assets/images/flags/sc.gif -%%WWWDIR%%/www/admin/assets/images/flags/sd.gif +%%WWWDIR%%/www/admin/assets/images/flags/nl.gif +%%WWWDIR%%/www/admin/assets/images/flags/cm.gif +%%WWWDIR%%/www/admin/assets/images/flags/tn.gif +%%WWWDIR%%/www/admin/assets/images/flags/mu.gif %%WWWDIR%%/www/admin/assets/images/flags/se.gif -%%WWWDIR%%/www/admin/assets/images/flags/sg.gif -%%WWWDIR%%/www/admin/assets/images/flags/si.gif +%%WWWDIR%%/www/admin/assets/images/flags/ne.gif +%%WWWDIR%%/www/admin/assets/images/flags/cd.gif +%%WWWDIR%%/www/admin/assets/images/flags/tg.gif %%WWWDIR%%/www/admin/assets/images/flags/sk.gif +%%WWWDIR%%/www/admin/assets/images/flags/in.gif +%%WWWDIR%%/www/admin/assets/images/flags/do.gif %%WWWDIR%%/www/admin/assets/images/flags/sl.gif +%%WWWDIR%%/www/admin/assets/images/flags/gq.gif +%%WWWDIR%%/www/admin/assets/images/flags/jp.gif +%%WWWDIR%%/www/admin/assets/images/flags/pr.gif +%%WWWDIR%%/www/admin/assets/images/flags/fj.gif +%%WWWDIR%%/www/admin/assets/images/flags/rw.gif +%%WWWDIR%%/www/admin/assets/images/flags/ve.gif +%%WWWDIR%%/www/admin/assets/images/flags/et.gif +%%WWWDIR%%/www/admin/assets/images/flags/hu.gif +%%WWWDIR%%/www/admin/assets/images/flags/af.gif +%%WWWDIR%%/www/admin/assets/images/flags/es.gif +%%WWWDIR%%/www/admin/assets/images/flags/hr.gif +%%WWWDIR%%/www/admin/assets/images/flags/fm.gif +%%WWWDIR%%/www/admin/assets/images/flags/ao.gif +%%WWWDIR%%/www/admin/assets/images/flags/ke.gif +%%WWWDIR%%/www/admin/assets/images/flags/li.gif +%%WWWDIR%%/www/admin/assets/images/flags/lr.gif +%%WWWDIR%%/www/admin/assets/images/flags/bj.gif +%%WWWDIR%%/www/admin/assets/images/flags/lu.gif +%%WWWDIR%%/www/admin/assets/images/flags/at.gif +%%WWWDIR%%/www/admin/assets/images/flags/ug.gif +%%WWWDIR%%/www/admin/assets/images/flags/bd.gif +%%WWWDIR%%/www/admin/assets/images/flags/kw.gif +%%WWWDIR%%/www/admin/assets/images/flags/az.gif +%%WWWDIR%%/www/admin/assets/images/flags/hn.gif +%%WWWDIR%%/www/admin/assets/images/flags/kp.gif %%WWWDIR%%/www/admin/assets/images/flags/sm.gif -%%WWWDIR%%/www/admin/assets/images/flags/sn.gif -%%WWWDIR%%/www/admin/assets/images/flags/so.gif -%%WWWDIR%%/www/admin/assets/images/flags/sr.gif -%%WWWDIR%%/www/admin/assets/images/flags/st.gif -%%WWWDIR%%/www/admin/assets/images/flags/sv.gif -%%WWWDIR%%/www/admin/assets/images/flags/sy.gif -%%WWWDIR%%/www/admin/assets/images/flags/td.gif -%%WWWDIR%%/www/admin/assets/images/flags/tg.gif +%%WWWDIR%%/www/admin/assets/images/flags/gw.gif +%%WWWDIR%%/www/admin/assets/images/flags/pt.gif +%%WWWDIR%%/www/admin/assets/images/flags/mz.gif +%%WWWDIR%%/www/admin/assets/images/flags/gy.gif %%WWWDIR%%/www/admin/assets/images/flags/th.gif -%%WWWDIR%%/www/admin/assets/images/flags/tj.gif -%%WWWDIR%%/www/admin/assets/images/flags/tm.gif -%%WWWDIR%%/www/admin/assets/images/flags/tn.gif +%%WWWDIR%%/www/admin/assets/images/flags/mt.gif +%%WWWDIR%%/www/admin/assets/images/flags/sd.gif +%%WWWDIR%%/www/admin/assets/images/flags/zw.gif +%%WWWDIR%%/www/admin/assets/images/flags/sc.gif +%%WWWDIR%%/www/admin/assets/images/flags/cl.gif %%WWWDIR%%/www/admin/assets/images/flags/to.gif -%%WWWDIR%%/www/admin/assets/images/flags/tr.gif +%%WWWDIR%%/www/admin/assets/images/flags/ge.gif +%%WWWDIR%%/www/admin/assets/images/flags/yu.gif %%WWWDIR%%/www/admin/assets/images/flags/tt.gif -%%WWWDIR%%/www/admin/assets/images/flags/tv.gif -%%WWWDIR%%/www/admin/assets/images/flags/tw.gif +%%WWWDIR%%/www/admin/assets/images/flags/mo.gif +%%WWWDIR%%/www/admin/assets/images/flags/gb.gif +%%WWWDIR%%/www/admin/assets/images/flags/pa.gif +%%WWWDIR%%/www/admin/assets/images/flags/is.gif +%%WWWDIR%%/www/admin/assets/images/flags/ma.gif +%%WWWDIR%%/www/admin/assets/images/flags/jm.gif +%%WWWDIR%%/www/admin/assets/images/flags/cy.gif +%%WWWDIR%%/www/admin/assets/images/flags/ph.gif %%WWWDIR%%/www/admin/assets/images/flags/tz.gif -%%WWWDIR%%/www/admin/assets/images/flags/ua.gif -%%WWWDIR%%/www/admin/assets/images/flags/ug.gif -%%WWWDIR%%/www/admin/assets/images/flags/uk.gif -%%WWWDIR%%/www/admin/assets/images/flags/us.gif -%%WWWDIR%%/www/admin/assets/images/flags/uy.gif -%%WWWDIR%%/www/admin/assets/images/flags/uz.gif -%%WWWDIR%%/www/admin/assets/images/flags/va.gif -%%WWWDIR%%/www/admin/assets/images/flags/vc.gif -%%WWWDIR%%/www/admin/assets/images/flags/ve.gif -%%WWWDIR%%/www/admin/assets/images/flags/vn.gif -%%WWWDIR%%/www/admin/assets/images/flags/vu.gif -%%WWWDIR%%/www/admin/assets/images/flags/ws.gif -%%WWWDIR%%/www/admin/assets/images/flags/ye.gif -%%WWWDIR%%/www/admin/assets/images/flags/yu.gif -%%WWWDIR%%/www/admin/assets/images/flags/za.gif -%%WWWDIR%%/www/admin/assets/images/flags/zm.gif -%%WWWDIR%%/www/admin/assets/images/flags/zr.gif -%%WWWDIR%%/www/admin/assets/images/flags/zw.gif -%%WWWDIR%%/www/admin/assets/images/form-background.gif -%%WWWDIR%%/www/admin/assets/images/go.gif -%%WWWDIR%%/www/admin/assets/images/grad-1.gif -%%WWWDIR%%/www/admin/assets/images/header-background.gif -%%WWWDIR%%/www/admin/assets/images/header-corners.png +%%WWWDIR%%/www/admin/assets/images/flags/it.gif +%%WWWDIR%%/www/admin/assets/images/flags/sv.gif +%%WWWDIR%%/www/admin/assets/images/dropdown-left.gif +%%WWWDIR%%/www/admin/assets/images/logout-close.png +%%WWWDIR%%/www/admin/assets/images/icon-overview.gif +%%WWWDIR%%/www/admin/assets/images/icon-duplicate-zone.gif %%WWWDIR%%/www/admin/assets/images/header-dropdown-background.png %%WWWDIR%%/www/admin/assets/images/header-dropdown-left.gif -%%WWWDIR%%/www/admin/assets/images/header-dropdown-right.gif -%%WWWDIR%%/www/admin/assets/images/header.png -%%WWWDIR%%/www/admin/assets/images/help-background.gif -%%WWWDIR%%/www/admin/assets/images/help-book.gif -%%WWWDIR%%/www/admin/assets/images/help-close.gif -%%WWWDIR%%/www/admin/assets/images/help-icon.gif -%%WWWDIR%%/www/admin/assets/images/help.gif -%%WWWDIR%%/www/admin/assets/images/icon-acl-add.gif -%%WWWDIR%%/www/admin/assets/images/icon-acl-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-acl.gif -%%WWWDIR%%/www/admin/assets/images/icon-activate.gif -%%WWWDIR%%/www/admin/assets/images/icon-activate.png -%%WWWDIR%%/www/admin/assets/images/icon-advertiser-add-large.png -%%WWWDIR%%/www/admin/assets/images/icon-advertiser-add.png -%%WWWDIR%%/www/admin/assets/images/icon-advertiser-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-advertiser-duplicate.png -%%WWWDIR%%/www/admin/assets/images/icon-advertiser-large.png -%%WWWDIR%%/www/admin/assets/images/icon-advertiser-new.gif -%%WWWDIR%%/www/admin/assets/images/icon-advertiser-oa.png -%%WWWDIR%%/www/admin/assets/images/icon-advertiser-openx.png -%%WWWDIR%%/www/admin/assets/images/icon-advertiser-remove.png -%%WWWDIR%%/www/admin/assets/images/icon-advertiser-to-campaign.png -%%WWWDIR%%/www/admin/assets/images/icon-advertiser.gif -%%WWWDIR%%/www/admin/assets/images/icon-advertiser.png -%%WWWDIR%%/www/admin/assets/images/icon-advertisers-large.png -%%WWWDIR%%/www/admin/assets/images/icon-advertisers.png -%%WWWDIR%%/www/admin/assets/images/icon-affiliate-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-affiliate-new.gif -%%WWWDIR%%/www/admin/assets/images/icon-affiliate.gif -%%WWWDIR%%/www/admin/assets/images/icon-back.gif -%%WWWDIR%%/www/admin/assets/images/icon-banner-add-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-add-large.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-add.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-duplicate.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-external-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-external-large.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-external.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-html-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-banner-html-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-html-large.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-html.gif -%%WWWDIR%%/www/admin/assets/images/icon-banner-html.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-large.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-list.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-new.gif -%%WWWDIR%%/www/admin/assets/images/icon-banner-remove.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-stored-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-banner-stored.gif -%%WWWDIR%%/www/admin/assets/images/icon-banner-text-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-banner-text-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-text-large.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-text.gif -%%WWWDIR%%/www/admin/assets/images/icon-banner-text.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-to-campaign.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-unlink.png -%%WWWDIR%%/www/admin/assets/images/icon-banner-url-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-banner-url.gif -%%WWWDIR%%/www/admin/assets/images/icon-banner.png -%%WWWDIR%%/www/admin/assets/images/icon-bannerlink-large.png -%%WWWDIR%%/www/admin/assets/images/icon-banners-large.png -%%WWWDIR%%/www/admin/assets/images/icon-banners.png -%%WWWDIR%%/www/admin/assets/images/icon-calendar-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-calendar.gif -%%WWWDIR%%/www/admin/assets/images/icon-campaign-add-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-add-large.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-add.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-campaign-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-duplicate.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-large.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-link.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-list.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-new.gif -%%WWWDIR%%/www/admin/assets/images/icon-campaign-openx-add-large.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-openx-add.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-openx-large.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-openx.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-remove-large.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-remove.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-to-advertiser.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign-to-banner.png -%%WWWDIR%%/www/admin/assets/images/icon-campaign.gif -%%WWWDIR%%/www/admin/assets/images/icon-campaign.png -%%WWWDIR%%/www/admin/assets/images/icon-campaigns-large.png -%%WWWDIR%%/www/admin/assets/images/icon-campaigns-openx-large.png -%%WWWDIR%%/www/admin/assets/images/icon-campaigns-openx.png -%%WWWDIR%%/www/admin/assets/images/icon-campaigns.png -%%WWWDIR%%/www/admin/assets/images/icon-channel-add.gif -%%WWWDIR%%/www/admin/assets/images/icon-channel-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-channel.gif -%%WWWDIR%%/www/admin/assets/images/icon-checkmark.gif -%%WWWDIR%%/www/admin/assets/images/icon-clipboard.gif -%%WWWDIR%%/www/admin/assets/images/icon-connection.gif -%%WWWDIR%%/www/admin/assets/images/icon-conversion.gif -%%WWWDIR%%/www/admin/assets/images/icon-cross-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-cross.gif -%%WWWDIR%%/www/admin/assets/images/icon-cross.png -%%WWWDIR%%/www/admin/assets/images/icon-date.gif -%%WWWDIR%%/www/admin/assets/images/icon-deactivate.gif -%%WWWDIR%%/www/admin/assets/images/icon-deactivate.png -%%WWWDIR%%/www/admin/assets/images/icon-delivery.png -%%WWWDIR%%/www/admin/assets/images/icon-direct-select-add-large.png -%%WWWDIR%%/www/admin/assets/images/icon-direct-select-add.png -%%WWWDIR%%/www/admin/assets/images/icon-direct-select-large.png -%%WWWDIR%%/www/admin/assets/images/icon-direct-select-remove.png -%%WWWDIR%%/www/admin/assets/images/icon-direct-select.png -%%WWWDIR%%/www/admin/assets/images/icon-dummy-large.png -%%WWWDIR%%/www/admin/assets/images/icon-duplicate-acl.gif -%%WWWDIR%%/www/admin/assets/images/icon-duplicate-banner.gif -%%WWWDIR%%/www/admin/assets/images/icon-duplicate-channel.gif -%%WWWDIR%%/www/admin/assets/images/icon-duplicate-tracker.gif -%%WWWDIR%%/www/admin/assets/images/icon-duplicate-zone.gif -%%WWWDIR%%/www/admin/assets/images/icon-edit-disabled.gif -%%WWWDIR%%/www/admin/assets/images/icon-edit.gif -%%WWWDIR%%/www/admin/assets/images/icon-filetype-gif.gif -%%WWWDIR%%/www/admin/assets/images/icon-filetype-jpg.gif -%%WWWDIR%%/www/admin/assets/images/icon-filetype-mov.gif -%%WWWDIR%%/www/admin/assets/images/icon-filetype-png.gif -%%WWWDIR%%/www/admin/assets/images/icon-filetype-rpm.gif -%%WWWDIR%%/www/admin/assets/images/icon-filetype-swf.gif -%%WWWDIR%%/www/admin/assets/images/icon-filetype-zip.gif -%%WWWDIR%%/www/admin/assets/images/icon-generatecode.gif -%%WWWDIR%%/www/admin/assets/images/icon-help.gif -%%WWWDIR%%/www/admin/assets/images/icon-hideinactivate.gif +%%WWWDIR%%/www/admin/assets/images/caret-d.gif +%%WWWDIR%%/www/admin/assets/images/ajax-loader-clock.gif %%WWWDIR%%/www/admin/assets/images/icon-history.png -%%WWWDIR%%/www/admin/assets/images/icon-interstitial-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-interstitial.gif -%%WWWDIR%%/www/admin/assets/images/icon-magnifying-glass.gif -%%WWWDIR%%/www/admin/assets/images/icon-mail.gif -%%WWWDIR%%/www/admin/assets/images/icon-mouse.gif -%%WWWDIR%%/www/admin/assets/images/icon-move-banner.gif -%%WWWDIR%%/www/admin/assets/images/icon-move-campaign.gif -%%WWWDIR%%/www/admin/assets/images/icon-move-channel-agency.gif -%%WWWDIR%%/www/admin/assets/images/icon-move-channel.gif -%%WWWDIR%%/www/admin/assets/images/icon-move-tracker.gif -%%WWWDIR%%/www/admin/assets/images/icon-move-zone.gif -%%WWWDIR%%/www/admin/assets/images/icon-no-acl.gif -%%WWWDIR%%/www/admin/assets/images/icon-overview-light.gif -%%WWWDIR%%/www/admin/assets/images/icon-overview.gif -%%WWWDIR%%/www/admin/assets/images/icon-popup-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-popup-over.gif -%%WWWDIR%%/www/admin/assets/images/icon-popup-under.gif -%%WWWDIR%%/www/admin/assets/images/icon-popup.gif -%%WWWDIR%%/www/admin/assets/images/icon-probability.png -%%WWWDIR%%/www/admin/assets/images/icon-recycle-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-recycle.gif -%%WWWDIR%%/www/admin/assets/images/icon-refresh.png -%%WWWDIR%%/www/admin/assets/images/icon-settings.gif -%%WWWDIR%%/www/admin/assets/images/icon-setup.gif -%%WWWDIR%%/www/admin/assets/images/icon-shortcut-website.png -%%WWWDIR%%/www/admin/assets/images/icon-shortcut-zone.png -%%WWWDIR%%/www/admin/assets/images/icon-size.gif -%%WWWDIR%%/www/admin/assets/images/icon-statistics-large.png -%%WWWDIR%%/www/admin/assets/images/icon-statistics.gif -%%WWWDIR%%/www/admin/assets/images/icon-statistics.png -%%WWWDIR%%/www/admin/assets/images/icon-stop-large.png -%%WWWDIR%%/www/admin/assets/images/icon-stop.gif -%%WWWDIR%%/www/admin/assets/images/icon-tag-large.png -%%WWWDIR%%/www/admin/assets/images/icon-tag.png -%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-add-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-add-large.png -%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-add.png -%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-duplicate.png -%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-large.png -%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-remove-large.png -%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-remove.png -%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel.png +%%WWWDIR%%/www/admin/assets/images/icon-banner-add.png %%WWWDIR%%/www/admin/assets/images/icon-targeting-channels-large.png -%%WWWDIR%%/www/admin/assets/images/icon-targeting-channels.png -%%WWWDIR%%/www/admin/assets/images/icon-textzone-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-textzone.gif -%%WWWDIR%%/www/admin/assets/images/icon-time.gif -%%WWWDIR%%/www/admin/assets/images/icon-tracker-add-large.png -%%WWWDIR%%/www/admin/assets/images/icon-tracker-add.png -%%WWWDIR%%/www/admin/assets/images/icon-tracker-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-tracker-duplicate.png -%%WWWDIR%%/www/admin/assets/images/icon-tracker-large.png -%%WWWDIR%%/www/admin/assets/images/icon-tracker-new.gif -%%WWWDIR%%/www/admin/assets/images/icon-tracker-to-advertiser.png -%%WWWDIR%%/www/admin/assets/images/icon-tracker.gif -%%WWWDIR%%/www/admin/assets/images/icon-tracker.png +%%WWWDIR%%/www/admin/assets/images/accountswitcher-footer.png +%%WWWDIR%%/www/admin/assets/images/icon-affiliate-new.gif +%%WWWDIR%%/www/admin/assets/images/icon-deactivate.gif +%%WWWDIR%%/www/admin/assets/images/control-corners.png +%%WWWDIR%%/www/admin/assets/images/icon-acl.gif +%%WWWDIR%%/www/admin/assets/images/go.gif +%%WWWDIR%%/www/admin/assets/images/tab-link.gif +%%WWWDIR%%/www/admin/assets/images/icon-direct-select.png +%%WWWDIR%%/www/admin/assets/images/arrow-left-disabled.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-link.png +%%WWWDIR%%/www/admin/assets/images/icon-zone-new.gif +%%WWWDIR%%/www/admin/assets/images/icon-campaign.gif %%WWWDIR%%/www/admin/assets/images/icon-tracking-large.png -%%WWWDIR%%/www/admin/assets/images/icon-warning-large.png -%%WWWDIR%%/www/admin/assets/images/icon-warning.gif -%%WWWDIR%%/www/admin/assets/images/icon-website-add-large.png -%%WWWDIR%%/www/admin/assets/images/icon-website-add.png -%%WWWDIR%%/www/admin/assets/images/icon-website-duplicate.png -%%WWWDIR%%/www/admin/assets/images/icon-website-large.png -%%WWWDIR%%/www/admin/assets/images/icon-website-to-zone.png -%%WWWDIR%%/www/admin/assets/images/icon-website.png -%%WWWDIR%%/www/admin/assets/images/icon-websites-large.png -%%WWWDIR%%/www/admin/assets/images/icon-websites.png -%%WWWDIR%%/www/admin/assets/images/icon-weekly.gif -%%WWWDIR%%/www/admin/assets/images/icon-x-grey.gif +%%WWWDIR%%/www/admin/assets/images/step-divider.png +%%WWWDIR%%/www/admin/assets/images/install-login.png +%%WWWDIR%%/www/admin/assets/images/triangle-u.gif %%WWWDIR%%/www/admin/assets/images/icon-x.gif +%%WWWDIR%%/www/admin/assets/images/grad-1.gif +%%WWWDIR%%/www/admin/assets/images/custom-vertical.png +%%WWWDIR%%/www/admin/assets/images/icon-zone-floating-disabled.png %%WWWDIR%%/www/admin/assets/images/icon-zone-add-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-add-large.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-add.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-click-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-zone-click.gif -%%WWWDIR%%/www/admin/assets/images/icon-zone-d.gif +%%WWWDIR%%/www/admin/assets/images/listIcon.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-url-d.gif +%%WWWDIR%%/www/admin/assets/images/install-error.png +%%WWWDIR%%/www/admin/assets/images/help-book.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-text-large.png %%WWWDIR%%/www/admin/assets/images/icon-zone-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-duplicate.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-email-d.gif -%%WWWDIR%%/www/admin/assets/images/icon-zone-email-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-email-large.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-email.gif -%%WWWDIR%%/www/admin/assets/images/icon-zone-email.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-floating-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-floating-large.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-floating.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-large.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-link-large.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-link.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-linked.gif -%%WWWDIR%%/www/admin/assets/images/icon-zone-new.gif -%%WWWDIR%%/www/admin/assets/images/icon-zone-probability.gif -%%WWWDIR%%/www/admin/assets/images/icon-zone-remove.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-text-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-text-large.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-text.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-to-website.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-video-instream-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-video-instream.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-video-overlay-disabled.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-video-overlay.png -%%WWWDIR%%/www/admin/assets/images/icon-zone-w.gif -%%WWWDIR%%/www/admin/assets/images/icon-zone.gif -%%WWWDIR%%/www/admin/assets/images/icon-zone.png +%%WWWDIR%%/www/admin/assets/images/icon-advertiser.png +%%WWWDIR%%/www/admin/assets/images/install-database.png %%WWWDIR%%/www/admin/assets/images/icon-zones-large.png +%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-large.png %%WWWDIR%%/www/admin/assets/images/icon-zones.png -%%WWWDIR%%/www/admin/assets/images/icon-zoom.gif -%%WWWDIR%%/www/admin/assets/images/indent.gif -%%WWWDIR%%/www/admin/assets/images/indicator-blue-big.gif -%%WWWDIR%%/www/admin/assets/images/indicator-blue-small-transparent.gif -%%WWWDIR%%/www/admin/assets/images/indicator-blue-small.gif -%%WWWDIR%%/www/admin/assets/images/indicator.gif -%%WWWDIR%%/www/admin/assets/images/info.gif -%%WWWDIR%%/www/admin/assets/images/information.gif -%%WWWDIR%%/www/admin/assets/images/install-busy.gif -%%WWWDIR%%/www/admin/assets/images/install-configuration.png -%%WWWDIR%%/www/admin/assets/images/install-database-tick.png -%%WWWDIR%%/www/admin/assets/images/install-database.png -%%WWWDIR%%/www/admin/assets/images/install-error-small.gif -%%WWWDIR%%/www/admin/assets/images/install-error.png -%%WWWDIR%%/www/admin/assets/images/install-finished.png -%%WWWDIR%%/www/admin/assets/images/install-login.png -%%WWWDIR%%/www/admin/assets/images/install-search.png %%WWWDIR%%/www/admin/assets/images/install-systemcheck.png -%%WWWDIR%%/www/admin/assets/images/install-tasks.png -%%WWWDIR%%/www/admin/assets/images/install-terms.png -%%WWWDIR%%/www/admin/assets/images/install-welcome.png -%%WWWDIR%%/www/admin/assets/images/install/benefit_cash.png -%%WWWDIR%%/www/admin/assets/images/install/benefit_forum.png -%%WWWDIR%%/www/admin/assets/images/install/benefit_plugins.png -%%WWWDIR%%/www/admin/assets/images/install/benefit_security.png -%%WWWDIR%%/www/admin/assets/images/line-gradient.gif -%%WWWDIR%%/www/admin/assets/images/listIcon.gif -%%WWWDIR%%/www/admin/assets/images/listIconFirst.gif -%%WWWDIR%%/www/admin/assets/images/loading.gif -%%WWWDIR%%/www/admin/assets/images/login-welcome.gif +%%WWWDIR%%/www/admin/assets/images/icon-stop.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-url.gif +%%WWWDIR%%/www/admin/assets/images/icon-tracker-add-large.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-openx.png +%%WWWDIR%%/www/admin/assets/images/padlock-closed.gif +%%WWWDIR%%/www/admin/assets/images/icon-statistics.png +%%WWWDIR%%/www/admin/assets/images/icon-targeting-channel-add-disabled.png +%%WWWDIR%%/www/admin/assets/images/icon-banners.png +%%WWWDIR%%/www/admin/assets/images/background-gradient.gif +%%WWWDIR%%/www/admin/assets/images/icon-banner-list.png +%%WWWDIR%%/www/admin/assets/images/icon-advertiser-oa.png +%%WWWDIR%%/www/admin/assets/images/icon-tracker-new.gif +%%WWWDIR%%/www/admin/assets/images/icon-campaign-to-advertiser.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-remove-large.png +%%WWWDIR%%/www/admin/assets/images/icon-duplicate-channel.gif +%%WWWDIR%%/www/admin/assets/images/arrow-l.gif +%%WWWDIR%%/www/admin/assets/images/icon-advertiser-new.gif +%%WWWDIR%%/www/admin/assets/images/message-background.png +%%WWWDIR%%/www/admin/assets/images/help-close.gif +%%WWWDIR%%/www/admin/assets/images/icon-campaigns-large.png +%%WWWDIR%%/www/admin/assets/images/icon-move-banner.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-w.gif +%%WWWDIR%%/www/admin/assets/images/icon-zone-video-overlay-disabled.png +%%WWWDIR%%/www/admin/assets/images/indent.gif +%%WWWDIR%%/www/admin/assets/images/icon-advertiser-to-campaign.png +%%WWWDIR%%/www/admin/assets/images/icon-zone-text-large.png +%%WWWDIR%%/www/admin/assets/images/icon-activate.png %%WWWDIR%%/www/admin/assets/images/logo-adserver.png -%%WWWDIR%%/www/admin/assets/images/logo-bk.png -%%WWWDIR%%/www/admin/assets/images/logo-marketplace.png -%%WWWDIR%%/www/admin/assets/images/logo-s.png -%%WWWDIR%%/www/admin/assets/images/logo-wtag.png -%%WWWDIR%%/www/admin/assets/images/logo.png -%%WWWDIR%%/www/admin/assets/images/logout-close.png +%%WWWDIR%%/www/admin/assets/images/help-background.gif +%%WWWDIR%%/www/admin/assets/images/icon-channel-add.gif %%WWWDIR%%/www/admin/assets/images/logout.gif -%%WWWDIR%%/www/admin/assets/images/ltr/background.gif -%%WWWDIR%%/www/admin/assets/images/ltr/caret-rs.gif -%%WWWDIR%%/www/admin/assets/images/ltr/go.gif -%%WWWDIR%%/www/admin/assets/images/ltr/go_blue.gif -%%WWWDIR%%/www/admin/assets/images/ltr/icon-undo.gif -%%WWWDIR%%/www/admin/assets/images/ltr/icon-update.gif -%%WWWDIR%%/www/admin/assets/images/ltr/preloader.gif -%%WWWDIR%%/www/admin/assets/images/ltr/stab-bg.gif -%%WWWDIR%%/www/admin/assets/images/ltr/stab-bs.gif -%%WWWDIR%%/www/admin/assets/images/ltr/stab-bu.gif -%%WWWDIR%%/www/admin/assets/images/ltr/stab-es.gif -%%WWWDIR%%/www/admin/assets/images/ltr/stab-eu.gif -%%WWWDIR%%/www/admin/assets/images/ltr/stab-msu.gif -%%WWWDIR%%/www/admin/assets/images/ltr/stab-mus.gif -%%WWWDIR%%/www/admin/assets/images/ltr/stab-muu.gif -%%WWWDIR%%/www/admin/assets/images/ltr/stab-sb.gif -%%WWWDIR%%/www/admin/assets/images/ltr/stab-ub.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-bg.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-000063.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-3399ff.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-CC0000.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-DD0000.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-eeeeee.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-bottomleftcorner-ffffff.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-corner-000063.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-d.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-dd.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-eb.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-s.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-sb.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-000063.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-3399ff.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-CC0000.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-DD0000.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-eeeeee.gif -%%WWWDIR%%/www/admin/assets/images/ltr/tab-toprightcorner-ffffff.gif -%%WWWDIR%%/www/admin/assets/images/ltr/triangle-l.gif -%%WWWDIR%%/www/admin/assets/images/market-auction.gif -%%WWWDIR%%/www/admin/assets/images/market-campaign-optin.gif -%%WWWDIR%%/www/admin/assets/images/market-welcome.gif -%%WWWDIR%%/www/admin/assets/images/market-zone-optin.gif -%%WWWDIR%%/www/admin/assets/images/message-arrow-d.gif -%%WWWDIR%%/www/admin/assets/images/message-background.png -%%WWWDIR%%/www/admin/assets/images/message.gif -%%WWWDIR%%/www/admin/assets/images/openads-sites-captcha.gif -%%WWWDIR%%/www/admin/assets/images/openads.png -%%WWWDIR%%/www/admin/assets/images/padlock-closed.gif -%%WWWDIR%%/www/admin/assets/images/padlock-open.gif -%%WWWDIR%%/www/admin/assets/images/panel-background.png -%%WWWDIR%%/www/admin/assets/images/panel-corners.png -%%WWWDIR%%/www/admin/assets/images/pencil.gif -%%WWWDIR%%/www/admin/assets/images/pixel.gif -%%WWWDIR%%/www/admin/assets/images/plugin_delete.gif -%%WWWDIR%%/www/admin/assets/images/progress-bg.gif -%%WWWDIR%%/www/admin/assets/images/rtl/background.gif -%%WWWDIR%%/www/admin/assets/images/rtl/caret-rs.gif -%%WWWDIR%%/www/admin/assets/images/rtl/go.gif -%%WWWDIR%%/www/admin/assets/images/rtl/go_blue.gif -%%WWWDIR%%/www/admin/assets/images/rtl/icon-undo.gif -%%WWWDIR%%/www/admin/assets/images/rtl/icon-update.gif -%%WWWDIR%%/www/admin/assets/images/rtl/stab-bg.gif -%%WWWDIR%%/www/admin/assets/images/rtl/stab-bs.gif -%%WWWDIR%%/www/admin/assets/images/rtl/stab-bu.gif -%%WWWDIR%%/www/admin/assets/images/rtl/stab-es.gif -%%WWWDIR%%/www/admin/assets/images/rtl/stab-eu.gif -%%WWWDIR%%/www/admin/assets/images/rtl/stab-msu.gif -%%WWWDIR%%/www/admin/assets/images/rtl/stab-mus.gif -%%WWWDIR%%/www/admin/assets/images/rtl/stab-muu.gif -%%WWWDIR%%/www/admin/assets/images/rtl/stab-sb.gif -%%WWWDIR%%/www/admin/assets/images/rtl/stab-ub.gif -%%WWWDIR%%/www/admin/assets/images/rtl/tab-bg.gif -%%WWWDIR%%/www/admin/assets/images/rtl/tab-d.gif -%%WWWDIR%%/www/admin/assets/images/rtl/tab-dd.gif -%%WWWDIR%%/www/admin/assets/images/rtl/tab-eb.gif -%%WWWDIR%%/www/admin/assets/images/rtl/tab-ew.gif -%%WWWDIR%%/www/admin/assets/images/rtl/tab-s.gif -%%WWWDIR%%/www/admin/assets/images/rtl/tab-sb.gif -%%WWWDIR%%/www/admin/assets/images/rtl/triangle-l.gif -%%WWWDIR%%/www/admin/assets/images/ruler-left.gif -%%WWWDIR%%/www/admin/assets/images/ruler-top.gif -%%WWWDIR%%/www/admin/assets/images/searchfull.png -%%WWWDIR%%/www/admin/assets/images/section-body.gif -%%WWWDIR%%/www/admin/assets/images/section-lead-in-plain.gif -%%WWWDIR%%/www/admin/assets/images/section-lead-in.gif -%%WWWDIR%%/www/admin/assets/images/section-lead-out.gif -%%WWWDIR%%/www/admin/assets/images/section-link.gif -%%WWWDIR%%/www/admin/assets/images/spacer.gif -%%WWWDIR%%/www/admin/assets/images/step-divider.png -%%WWWDIR%%/www/admin/assets/images/step.png -%%WWWDIR%%/www/admin/assets/images/tab-body.gif -%%WWWDIR%%/www/admin/assets/images/tab-lead-in.gif -%%WWWDIR%%/www/admin/assets/images/tab-lead-out.gif -%%WWWDIR%%/www/admin/assets/images/tab-link.gif -%%WWWDIR%%/www/admin/assets/images/table-bg.gif -%%WWWDIR%%/www/admin/assets/images/table-header.png -%%WWWDIR%%/www/admin/assets/images/tick.gif -%%WWWDIR%%/www/admin/assets/images/tools.gif -%%WWWDIR%%/www/admin/assets/images/triangle-d-d.gif -%%WWWDIR%%/www/admin/assets/images/triangle-d.gif -%%WWWDIR%%/www/admin/assets/images/triangle-u-d.gif -%%WWWDIR%%/www/admin/assets/images/triangle-u.gif -%%WWWDIR%%/www/admin/assets/images/warning.gif -%%WWWDIR%%/www/admin/assets/images/watermark.gif -%%WWWDIR%%/www/admin/assets/images/white-control-corners.png +%%WWWDIR%%/www/admin/assets/images/listIconFirst.gif +%%WWWDIR%%/www/admin/assets/images/icon-advertiser-add-large.png +%%WWWDIR%%/www/admin/assets/images/icon-popup-over.gif %%WWWDIR%%/www/admin/assets/images/wizard-lead-in.png -%%WWWDIR%%/www/admin/assets/images/wizard-lead-out.png -%%WWWDIR%%/www/admin/assets/images/wrench.gif -%%WWWDIR%%/www/admin/assets/js/IE7.js -%%WWWDIR%%/www/admin/assets/js/boxrow.js -%%WWWDIR%%/www/admin/assets/js/datecheck.js -%%WWWDIR%%/www/admin/assets/js/effects.core.js -%%WWWDIR%%/www/admin/assets/js/formValidation.js -%%WWWDIR%%/www/admin/assets/js/jquery-1.2.3.js -%%WWWDIR%%/www/admin/assets/js/jquery-1.2.6-mod.js -%%WWWDIR%%/www/admin/assets/js/jquery.autocomplete.js -%%WWWDIR%%/www/admin/assets/js/jquery.bgiframe.js -%%WWWDIR%%/www/admin/assets/js/jquery.delegate-1.1.min.js -%%WWWDIR%%/www/admin/assets/js/jquery.dimensions.js -%%WWWDIR%%/www/admin/assets/js/jquery.example.js -%%WWWDIR%%/www/admin/assets/js/jquery.ifixpng.js +%%WWWDIR%%/www/admin/assets/images/market-campaign-optin.gif +%%WWWDIR%%/www/admin/assets/images/tab-lead-in.gif +%%WWWDIR%%/www/admin/assets/images/dark-control-corners.png +%%WWWDIR%%/www/admin/assets/images/icon-campaign-add-large.png +%%WWWDIR%%/www/admin/assets/images/icon-overview-light.gif %%WWWDIR%%/www/admin/assets/js/jquery.jqmodal.js -%%WWWDIR%%/www/admin/assets/js/jquery.metadata.js -%%WWWDIR%%/www/admin/assets/js/jquery.simplemodal.min.js -%%WWWDIR%%/www/admin/assets/js/jquery.tablesorter.js -%%WWWDIR%%/www/admin/assets/js/jquery.typewatch.js -%%WWWDIR%%/www/admin/assets/js/jquery.validate.js -%%WWWDIR%%/www/admin/assets/js/js-gui.js -%%WWWDIR%%/www/admin/assets/js/js-help.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/ChangeLog +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-openads.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/today-bg.gif +%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/title-bg.gif +%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/hover-bg.gif +%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/normal-bg.gif +%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/theme.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/menuarrow.gif +%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/active-bg.gif +%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/status-bg.gif +%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/rowhover-bg.gif +%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/dark-bg.gif +%%WWWDIR%%/www/admin/assets/js/jscalendar/simple-2.html +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-win2k-2.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/multiple-dates.html +%%WWWDIR%%/www/admin/assets/js/jscalendar/menuarrow.gif %%WWWDIR%%/www/admin/assets/js/jscalendar/README +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-win2k-cold-1.css %%WWWDIR%%/www/admin/assets/js/jscalendar/bugtest-hidden-selects.html -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-blue.css %%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-blue2.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-brown.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-green.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-openads.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-setup.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-blue.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/menuarrow2.gif %%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-setup_stripped.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-system.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-tas.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-win2k-1.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-win2k-2.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-win2k-cold-1.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-win2k-cold-2.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar.php -%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar_stripped.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/dayinfo.html -%%WWWDIR%%/www/admin/assets/js/jscalendar/doc/html/field-button.jpg -%%WWWDIR%%/www/admin/assets/js/jscalendar/doc/html/reference-Z-S.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/doc/html/reference.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/doc/html/reference.html -%%WWWDIR%%/www/admin/assets/js/jscalendar/doc/reference.pdf -%%WWWDIR%%/www/admin/assets/js/jscalendar/img.gif -%%WWWDIR%%/www/admin/assets/js/jscalendar/index.html -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-af.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-du.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-al.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-bg.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-big5-utf8.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-big5.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-br.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-es.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-ru_win_.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-big5.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-bg.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-ca.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-cs-utf8.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-cs-win.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/cn_utf8.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-da.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-sk.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-lt-utf8.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-de.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-du.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-el.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-en.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-es.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-fi.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-fr.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-he-utf8.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-lt.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-pt.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-hr-utf8.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-hr.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-hu.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-it.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-nl.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-big5-utf8.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-jp.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-ro.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-fi.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-zh.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-no.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-lv.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-si.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-sv.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-cs-win.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-hu.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-sp.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-ko-utf8.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-ko.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-lt-utf8.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-lt.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-lv.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-nl.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-no.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-af.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-en.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-hr.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-el.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-cs-utf8.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-pl-utf8.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-pl.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-pt.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-ro.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-fr.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-ru.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-ru_win_.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-si.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-sk.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-sp.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-sv.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-it.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-he-utf8.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-pl.js %%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-tr.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/calendar-zh.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/lang/cn_utf8.js -%%WWWDIR%%/www/admin/assets/js/jscalendar/menuarrow.gif -%%WWWDIR%%/www/admin/assets/js/jscalendar/menuarrow2.gif -%%WWWDIR%%/www/admin/assets/js/jscalendar/multiple-dates.html -%%WWWDIR%%/www/admin/assets/js/jscalendar/release-notes.html -%%WWWDIR%%/www/admin/assets/js/jscalendar/simple-1.html -%%WWWDIR%%/www/admin/assets/js/jscalendar/simple-2.html +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar.js %%WWWDIR%%/www/admin/assets/js/jscalendar/simple-3.html -%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/active-bg.gif -%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/dark-bg.gif -%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/hover-bg.gif -%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/menuarrow.gif -%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/normal-bg.gif -%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/rowhover-bg.gif -%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/status-bg.gif -%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/theme.css -%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/title-bg.gif -%%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua/today-bg.gif +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-tas.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-setup.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-system.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/doc/reference.pdf +%%WWWDIR%%/www/admin/assets/js/jscalendar/doc/html/field-button.jpg +%%WWWDIR%%/www/admin/assets/js/jscalendar/doc/html/reference.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/doc/html/reference.html +%%WWWDIR%%/www/admin/assets/js/jscalendar/doc/html/reference-Z-S.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar_stripped.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/ChangeLog +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-win2k-cold-2.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/simple-1.html %%WWWDIR%%/www/admin/assets/js/jscalendar/test-position.html -%%WWWDIR%%/www/admin/assets/js/numberFormat.php -%%WWWDIR%%/www/admin/assets/js/openads.js -%%WWWDIR%%/www/admin/assets/js/ox.accountswitch.js -%%WWWDIR%%/www/admin/assets/js/ox.dropdown.js -%%WWWDIR%%/www/admin/assets/js/ox.form.js +%%WWWDIR%%/www/admin/assets/js/jscalendar/release-notes.html +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-win2k-1.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-brown.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/dayinfo.html +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar-green.css +%%WWWDIR%%/www/admin/assets/js/jscalendar/calendar.php +%%WWWDIR%%/www/admin/assets/js/jscalendar/img.gif +%%WWWDIR%%/www/admin/assets/js/jscalendar/index.html +%%WWWDIR%%/www/admin/assets/js/jquery.typewatch.js +%%WWWDIR%%/www/admin/assets/js/ox.multicheckbox.js +%%WWWDIR%%/www/admin/assets/js/jquery.tablesorter.js %%WWWDIR%%/www/admin/assets/js/ox.help.js +%%WWWDIR%%/www/admin/assets/js/IE7.js +%%WWWDIR%%/www/admin/assets/js/jquery.metadata.js +%%WWWDIR%%/www/admin/assets/js/jquery.simplemodal.min.js +%%WWWDIR%%/www/admin/assets/js/jquery.autocomplete.js +%%WWWDIR%%/www/admin/assets/js/ox.message.js +%%WWWDIR%%/www/admin/assets/js/jquery-1.2.3.js +%%WWWDIR%%/www/admin/assets/js/ox.ui.js +%%WWWDIR%%/www/admin/assets/js/jquery.dimensions.js +%%WWWDIR%%/www/admin/assets/js/boxrow.js +%%WWWDIR%%/www/admin/assets/js/jquery.delegate-1.1.min.js +%%WWWDIR%%/www/admin/assets/js/effects.core.js +%%WWWDIR%%/www/admin/assets/js/js-gui.js +%%WWWDIR%%/www/admin/assets/js/ox.dropdown.js +%%WWWDIR%%/www/admin/assets/js/ox.table.js +%%WWWDIR%%/www/admin/assets/js/jquery.example.js %%WWWDIR%%/www/admin/assets/js/ox.install.js +%%WWWDIR%%/www/admin/assets/js/datecheck.js +%%WWWDIR%%/www/admin/assets/js/jquery.ifixpng.js +%%WWWDIR%%/www/admin/assets/js/jquery-1.2.6-mod.js +%%WWWDIR%%/www/admin/assets/js/xajax.js +%%WWWDIR%%/www/admin/assets/js/jquery.validate.js +%%WWWDIR%%/www/admin/assets/js/ox.accountswitch.js %%WWWDIR%%/www/admin/assets/js/ox.jobs.js -%%WWWDIR%%/www/admin/assets/js/ox.message.js -%%WWWDIR%%/www/admin/assets/js/ox.multicheckbox.js %%WWWDIR%%/www/admin/assets/js/ox.navigator.js -%%WWWDIR%%/www/admin/assets/js/ox.table.js +%%WWWDIR%%/www/admin/assets/js/numberFormat.php +%%WWWDIR%%/www/admin/assets/js/jquery.bgiframe.js +%%WWWDIR%%/www/admin/assets/js/ox.util.js %%WWWDIR%%/www/admin/assets/js/ox.tablesorter.plugins.js -%%WWWDIR%%/www/admin/assets/js/ox.ui.js +%%WWWDIR%%/www/admin/assets/js/formValidation.js %%WWWDIR%%/www/admin/assets/js/ox.usernamecheck.js -%%WWWDIR%%/www/admin/assets/js/ox.util.js -%%WWWDIR%%/www/admin/assets/js/xajax.js -%%WWWDIR%%/www/admin/assets/min.php +%%WWWDIR%%/www/admin/assets/js/js-help.js +%%WWWDIR%%/www/admin/assets/js/ox.form.js +%%WWWDIR%%/www/admin/assets/js/openads.js %%WWWDIR%%/www/admin/assets/minify-init.php -%%WWWDIR%%/www/admin/banner-acl.php -%%WWWDIR%%/www/admin/banner-activate.php -%%WWWDIR%%/www/admin/banner-advanced.php -%%WWWDIR%%/www/admin/banner-delete.php -%%WWWDIR%%/www/admin/banner-edit.php -%%WWWDIR%%/www/admin/banner-htmlpreview.php -%%WWWDIR%%/www/admin/banner-modify.php -%%WWWDIR%%/www/admin/banner-swf.php +%%WWWDIR%%/www/admin/assets/css/interface-ltr.css +%%WWWDIR%%/www/admin/assets/css/dashboard-widget-ie.css +%%WWWDIR%%/www/admin/assets/css/preview.css +%%WWWDIR%%/www/admin/assets/css/jquery.autocomplete.css +%%WWWDIR%%/www/admin/assets/css/install.css +%%WWWDIR%%/www/admin/assets/css/dashboard-widget.css +%%WWWDIR%%/www/admin/assets/css/interface-rtl.css +%%WWWDIR%%/www/admin/assets/css/jquery.jqmodal.css +%%WWWDIR%%/www/admin/assets/css/table.css +%%WWWDIR%%/www/admin/assets/css/message.css +%%WWWDIR%%/www/admin/assets/css/chrome-rtl.css +%%WWWDIR%%/www/admin/assets/css/chrome.css +%%WWWDIR%%/www/admin/assets/css/icons.css +%%WWWDIR%%/www/admin/assets/css/install-ie.css +%%WWWDIR%%/www/admin/assets/css/oa.help.css +%%WWWDIR%%/www/admin/terms-and-conditions.html %%WWWDIR%%/www/admin/banner-zone.php -%%WWWDIR%%/www/admin/campaign-banners.php -%%WWWDIR%%/www/admin/campaign-delete.php -%%WWWDIR%%/www/admin/campaign-edit.php -%%WWWDIR%%/www/admin/campaign-modify.php -%%WWWDIR%%/www/admin/campaign-trackers.php -%%WWWDIR%%/www/admin/campaign-zone-link.php -%%WWWDIR%%/www/admin/campaign-zone-zones.php -%%WWWDIR%%/www/admin/campaign-zone.php -%%WWWDIR%%/www/admin/channel-acl.php -%%WWWDIR%%/www/admin/channel-delete.php -%%WWWDIR%%/www/admin/channel-edit.php -%%WWWDIR%%/www/admin/channel-index.php -%%WWWDIR%%/www/admin/channel-modify.php -%%WWWDIR%%/www/admin/config.php -%%WWWDIR%%/www/admin/connections-modify.php -%%WWWDIR%%/www/admin/currencyFX-list.php -%%WWWDIR%%/www/admin/dashboard.php -%%WWWDIR%%/www/admin/index.php -%%WWWDIR%%/www/admin/install-plugin.php -%%WWWDIR%%/www/admin/install-runtask.php -%%WWWDIR%%/www/admin/install.php -%%WWWDIR%%/www/admin/inventory-retrieve.php -%%WWWDIR%%/www/admin/lib-append.inc.php -%%WWWDIR%%/www/admin/lib-banner-cache.inc.php -%%WWWDIR%%/www/admin/lib-banner.inc.php -%%WWWDIR%%/www/admin/lib-data-statistics.inc.php -%%WWWDIR%%/www/admin/lib-gd.inc.php -%%WWWDIR%%/www/admin/lib-gdcolors.inc.php -%%WWWDIR%%/www/admin/lib-graph.inc.php -%%WWWDIR%%/www/admin/lib-gui.inc.php -%%WWWDIR%%/www/admin/lib-html-header.inc.php -%%WWWDIR%%/www/admin/lib-maintenance-priority.inc.php -%%WWWDIR%%/www/admin/lib-maintenance.inc.php -%%WWWDIR%%/www/admin/lib-prefs.inc.php -%%WWWDIR%%/www/admin/lib-sessions.inc.php -%%WWWDIR%%/www/admin/lib-size.inc.php +%%WWWDIR%%/www/admin/account-switch-search.php +%%WWWDIR%%/www/admin/lib-gd.inc.php +%%WWWDIR%%/www/admin/password-recovery.php +%%WWWDIR%%/www/admin/zone-advanced.php +%%WWWDIR%%/www/admin/adsense-accounts.php +%%WWWDIR%%/www/admin/account-settings-banner-logging.php +%%WWWDIR%%/www/admin/adsense-edit.php +%%WWWDIR%%/www/admin/stats-conversions.php +%%WWWDIR%%/www/admin/dashboard.php +%%WWWDIR%%/www/admin/install-plugin.php +%%WWWDIR%%/www/admin/advertiser-trackers.php %%WWWDIR%%/www/admin/lib-statistics.inc.php -%%WWWDIR%%/www/admin/lib-storage.inc.php -%%WWWDIR%%/www/admin/lib-swf.inc.php -%%WWWDIR%%/www/admin/lib-zones.inc.php -%%WWWDIR%%/www/admin/logout.php +%%WWWDIR%%/www/admin/report-generate.php +%%WWWDIR%%/www/admin/maintenance-priority.php +%%WWWDIR%%/www/admin/admin-generate.php %%WWWDIR%%/www/admin/maintenance-acl-check.php -%%WWWDIR%%/www/admin/maintenance-acls.php -%%WWWDIR%%/www/admin/maintenance-appendcode-check.php +%%WWWDIR%%/www/admin/campaign-banners.php +%%WWWDIR%%/www/admin/userlog-index.php +%%WWWDIR%%/www/admin/lib-graph.inc.php +%%WWWDIR%%/www/admin/zone-invocation.php +%%WWWDIR%%/www/admin/maintenance-maintenance.php +%%WWWDIR%%/www/admin/stats-showgraph.php +%%WWWDIR%%/www/admin/channel-acl.php +%%WWWDIR%%/www/admin/admin-user-start.php +%%WWWDIR%%/www/admin/adsense-link.php +%%WWWDIR%%/www/admin/updates-history.php +%%WWWDIR%%/www/admin/account-settings-banner-delivery.php +%%WWWDIR%%/www/admin/tracker-invocation.php +%%WWWDIR%%/www/admin/report-generation.php +%%WWWDIR%%/www/admin/advertiser-edit.php +%%WWWDIR%%/www/admin/lib-size.inc.php +%%WWWDIR%%/www/admin/report-index.php %%WWWDIR%%/www/admin/maintenance-appendcodes.php -%%WWWDIR%%/www/admin/maintenance-banners-check.php -%%WWWDIR%%/www/admin/maintenance-banners.php -%%WWWDIR%%/www/admin/maintenance-cache-rebuild.php -%%WWWDIR%%/www/admin/maintenance-cache.php +%%WWWDIR%%/www/admin/affiliate-zones.php +%%WWWDIR%%/www/admin/campaign-delete.php +%%WWWDIR%%/www/admin/account-preferences-index.php +%%WWWDIR%%/www/admin/account-settings-banner-storage.php +%%WWWDIR%%/www/admin/userlog-delete.php +%%WWWDIR%%/www/admin/account-user-name-language.php +%%WWWDIR%%/www/admin/affiliate-user-start.php +%%WWWDIR%%/www/admin/lib-maintenance-priority.inc.php +%%WWWDIR%%/www/admin/account-preferences-timezone.php +%%WWWDIR%%/www/admin/channel-index.php +%%WWWDIR%%/www/admin/userlog-details.php %%WWWDIR%%/www/admin/maintenance-encoding.php -%%WWWDIR%%/www/admin/maintenance-index.php -%%WWWDIR%%/www/admin/maintenance-maintenance.php -%%WWWDIR%%/www/admin/maintenance-menus.php -%%WWWDIR%%/www/admin/maintenance-plugins.php +%%WWWDIR%%/www/admin/adsense-create.php +%%WWWDIR%%/www/admin/banner-modify.php +%%WWWDIR%%/www/admin/account-settings-update.php +%%WWWDIR%%/www/admin/admin-user.php +%%WWWDIR%%/www/admin/account-settings-tracking.php +%%WWWDIR%%/www/admin/account-index.php +%%WWWDIR%%/www/admin/account-preferences-campaign.php +%%WWWDIR%%/www/admin/account-settings-database.php +%%WWWDIR%%/www/admin/channel-delete.php +%%WWWDIR%%/www/admin/privacy-policy.html +%%WWWDIR%%/www/admin/lib-banner.inc.php +%%WWWDIR%%/www/admin/lib-banner-cache.inc.php +%%WWWDIR%%/www/admin/install.php +%%WWWDIR%%/www/admin/user-search.php %%WWWDIR%%/www/admin/maintenance-priority-calculate.php -%%WWWDIR%%/www/admin/maintenance-priority.php +%%WWWDIR%%/www/admin/tracker-edit.php +%%WWWDIR%%/www/admin/account-settings-maintenance.php +%%WWWDIR%%/www/admin/account-preferences-user-interface.php +%%WWWDIR%%/www/admin/config.php +%%WWWDIR%%/www/admin/affiliate-access.php +%%WWWDIR%%/www/admin/updates-product.php +%%WWWDIR%%/www/admin/zone-probability.php +%%WWWDIR%%/www/admin/market/stats.php +%%WWWDIR%%/www/admin/affiliate-user.php +%%WWWDIR%%/www/admin/affiliate-user-unlink.php %%WWWDIR%%/www/admin/maintenance-storage-move.php %%WWWDIR%%/www/admin/maintenance-storage.php -%%WWWDIR%%/www/admin/maintenance-updates-js.php -%%WWWDIR%%/www/admin/market/stats.php -%%WWWDIR%%/www/admin/md5.js -%%WWWDIR%%/www/admin/numberFormat.js.php -%%WWWDIR%%/www/admin/password-recovery.php -%%WWWDIR%%/www/admin/plugin-index.php -%%WWWDIR%%/www/admin/plugin-preferences.php -%%WWWDIR%%/www/admin/plugin-settings.php -%%WWWDIR%%/www/admin/precheck/body_piksel.gif -%%WWWDIR%%/www/admin/precheck/list_element.gif -%%WWWDIR%%/www/admin/precheck/openx_logo.gif -%%WWWDIR%%/www/admin/privacy-policy.html -%%WWWDIR%%/www/admin/regenerate-platformhash.php -%%WWWDIR%%/www/admin/report-generate.php -%%WWWDIR%%/www/admin/report-generation.php -%%WWWDIR%%/www/admin/report-index.php -%%WWWDIR%%/www/admin/robots.txt -%%WWWDIR%%/www/admin/run-mpe-xajax.php -%%WWWDIR%%/www/admin/run-mpe.php -%%WWWDIR%%/www/admin/stats-conversions.php -%%WWWDIR%%/www/admin/stats-showgraph.php +%%WWWDIR%%/www/admin/connections-modify.php +%%WWWDIR%%/www/admin/affiliate-channels.php +%%WWWDIR%%/www/admin/affiliate-preview.php +%%WWWDIR%%/www/admin/lib-swf.inc.php +%%WWWDIR%%/www/admin/maintenance-banners.php +%%WWWDIR%%/www/admin/banner-activate.php +%%WWWDIR%%/www/admin/campaign-zone-zones.php %%WWWDIR%%/www/admin/stats.php -%%WWWDIR%%/www/admin/templates/install/check-step.html -%%WWWDIR%%/www/admin/templates/install/configuration-step.html +%%WWWDIR%%/www/admin/account-preferences-plugin.php +%%WWWDIR%%/www/admin/affiliate-invocation.php +%%WWWDIR%%/www/admin/tracker-modify.php +%%WWWDIR%%/www/admin/templates/wizard-steps.html +%%WWWDIR%%/www/admin/templates/logo.gif +%%WWWDIR%%/www/admin/templates/welcome-publisher.html +%%WWWDIR%%/www/admin/templates/install/tracker.html %%WWWDIR%%/www/admin/templates/install/database-step.html -%%WWWDIR%%/www/admin/templates/install/error-step.html -%%WWWDIR%%/www/admin/templates/install/finish-step.html -%%WWWDIR%%/www/admin/templates/install/jobs-step.html %%WWWDIR%%/www/admin/templates/install/login-step.html -%%WWWDIR%%/www/admin/templates/install/messages.html +%%WWWDIR%%/www/admin/templates/install/error-step.html +%%WWWDIR%%/www/admin/templates/install/configuration-step.html %%WWWDIR%%/www/admin/templates/install/recovery-step.html -%%WWWDIR%%/www/admin/templates/install/register-step.html -%%WWWDIR%%/www/admin/templates/install/registerConfirm-step.html -%%WWWDIR%%/www/admin/templates/install/tracker.html %%WWWDIR%%/www/admin/templates/install/uptodate-step.html +%%WWWDIR%%/www/admin/templates/install/check-step.html +%%WWWDIR%%/www/admin/templates/install/finish-step.html +%%WWWDIR%%/www/admin/templates/install/register-step.html %%WWWDIR%%/www/admin/templates/install/welcome-step.html -%%WWWDIR%%/www/admin/templates/logo.gif +%%WWWDIR%%/www/admin/templates/install/registerConfirm-step.html +%%WWWDIR%%/www/admin/templates/install/messages.html +%%WWWDIR%%/www/admin/templates/install/jobs-step.html %%WWWDIR%%/www/admin/templates/welcome-advertiser.html -%%WWWDIR%%/www/admin/templates/welcome-publisher.html -%%WWWDIR%%/www/admin/templates/wizard-steps.html -%%WWWDIR%%/www/admin/terms-and-conditions.html -%%WWWDIR%%/www/admin/tracker-append.php -%%WWWDIR%%/www/admin/tracker-campaigns.php -%%WWWDIR%%/www/admin/tracker-delete.php -%%WWWDIR%%/www/admin/tracker-edit.php -%%WWWDIR%%/www/admin/tracker-invocation.php -%%WWWDIR%%/www/admin/tracker-modify.php +%%WWWDIR%%/www/admin/affiliate-delete.php %%WWWDIR%%/www/admin/tracker-variables.php -%%WWWDIR%%/www/admin/updates-history.php -%%WWWDIR%%/www/admin/updates-product.php -%%WWWDIR%%/www/admin/user-search.php -%%WWWDIR%%/www/admin/userlog-audit-detailed.php -%%WWWDIR%%/www/admin/userlog-delete.php -%%WWWDIR%%/www/admin/userlog-details.php -%%WWWDIR%%/www/admin/userlog-index.php -%%WWWDIR%%/www/admin/userlog-maintenance.php -%%WWWDIR%%/www/admin/website-index.php -%%WWWDIR%%/www/admin/zone-advanced.php +%%WWWDIR%%/www/admin/account-switch.php +%%WWWDIR%%/www/admin/plugin-index.php +%%WWWDIR%%/www/admin/agency-user.php +%%WWWDIR%%/www/admin/affiliate-advsetup.php +%%WWWDIR%%/www/admin/account-user-password.php +%%WWWDIR%%/www/admin/account-settings-plugins.php %%WWWDIR%%/www/admin/zone-delete.php -%%WWWDIR%%/www/admin/zone-edit.php -%%WWWDIR%%/www/admin/zone-include.php -%%WWWDIR%%/www/admin/zone-invocation.php -%%WWWDIR%%/www/admin/zone-modify.php -%%WWWDIR%%/www/admin/zone-probability.php +%%WWWDIR%%/www/images/robots.txt +%%WWWDIR%%/www/images/1x1.gif +%%WWWDIR%%/www/images/layerstyles/geocities/expand-d.gif +%%WWWDIR%%/www/images/layerstyles/geocities/expand.gif +%%WWWDIR%%/www/images/layerstyles/geocities/collapse.gif +%%WWWDIR%%/www/images/layerstyles/geocities/close.gif +%%WWWDIR%%/www/images/layerstyles/simple/close.gif +%%WWWDIR%%/www/index.php +%%WWWDIR%%/www/api/v1/xmlrpc/UserXmlRpcService.php +%%WWWDIR%%/www/api/v1/xmlrpc/PublisherXmlRpcService.php +%%WWWDIR%%/www/api/v1/xmlrpc/CampaignXmlRpcService.php +%%WWWDIR%%/www/api/v1/xmlrpc/BannerXmlRpcService.php +%%WWWDIR%%/www/api/v1/xmlrpc/PublisherServiceImpl.php +%%WWWDIR%%/www/api/v1/xmlrpc/LogonServiceImpl.php +%%WWWDIR%%/www/api/v1/xmlrpc/AdvertiserXmlRpcService.php +%%WWWDIR%%/www/api/v1/xmlrpc/CampaignServiceImpl.php +%%WWWDIR%%/www/api/v1/xmlrpc/LogonXmlRpcService.php +%%WWWDIR%%/www/api/v1/xmlrpc/AgencyXmlRpcService.php +%%WWWDIR%%/www/api/v1/xmlrpc/AgencyServiceImpl.php +%%WWWDIR%%/www/api/v1/xmlrpc/ZoneXmlRpcService.php +%%WWWDIR%%/www/api/v1/xmlrpc/AdvertiserServiceImpl.php +%%WWWDIR%%/www/api/v1/xmlrpc/BannerServiceImpl.php +%%WWWDIR%%/www/api/v1/xmlrpc/UserServiceImpl.php +%%WWWDIR%%/www/api/v1/xmlrpc/ZoneServiceImpl.php +%%WWWDIR%%/www/api/v1/common/BaseZoneService.php %%WWWDIR%%/www/api/v1/common/BaseAdvertiserService.php %%WWWDIR%%/www/api/v1/common/BaseAgencyService.php %%WWWDIR%%/www/api/v1/common/BaseBannerService.php -%%WWWDIR%%/www/api/v1/common/BaseCampaignService.php -%%WWWDIR%%/www/api/v1/common/BaseLogonService.php -%%WWWDIR%%/www/api/v1/common/BasePublisherService.php %%WWWDIR%%/www/api/v1/common/BaseServiceImpl.php %%WWWDIR%%/www/api/v1/common/BaseUserService.php -%%WWWDIR%%/www/api/v1/common/BaseZoneService.php +%%WWWDIR%%/www/api/v1/common/BasePublisherService.php +%%WWWDIR%%/www/api/v1/common/BaseCampaignService.php +%%WWWDIR%%/www/api/v1/common/BaseLogonService.php %%WWWDIR%%/www/api/v1/common/XmlRpcUtils.php -%%WWWDIR%%/www/api/v1/xmlrpc/AdvertiserServiceImpl.php -%%WWWDIR%%/www/api/v1/xmlrpc/AdvertiserXmlRpcService.php -%%WWWDIR%%/www/api/v1/xmlrpc/AgencyServiceImpl.php -%%WWWDIR%%/www/api/v1/xmlrpc/AgencyXmlRpcService.php -%%WWWDIR%%/www/api/v1/xmlrpc/BannerServiceImpl.php -%%WWWDIR%%/www/api/v1/xmlrpc/BannerXmlRpcService.php -%%WWWDIR%%/www/api/v1/xmlrpc/CampaignServiceImpl.php -%%WWWDIR%%/www/api/v1/xmlrpc/CampaignXmlRpcService.php -%%WWWDIR%%/www/api/v1/xmlrpc/LogonServiceImpl.php -%%WWWDIR%%/www/api/v1/xmlrpc/LogonXmlRpcService.php -%%WWWDIR%%/www/api/v1/xmlrpc/PublisherServiceImpl.php -%%WWWDIR%%/www/api/v1/xmlrpc/PublisherXmlRpcService.php -%%WWWDIR%%/www/api/v1/xmlrpc/UserServiceImpl.php -%%WWWDIR%%/www/api/v1/xmlrpc/UserXmlRpcService.php -%%WWWDIR%%/www/api/v1/xmlrpc/ZoneServiceImpl.php -%%WWWDIR%%/www/api/v1/xmlrpc/ZoneXmlRpcService.php -%%WWWDIR%%/www/api/v2/common/BaseAdvertiserService.php +%%WWWDIR%%/www/api/v2/common/BaseTrackerService.php +%%WWWDIR%%/www/api/v2/common/BaseVariableService.php +%%WWWDIR%%/www/api/v2/common/BasePublisherService.php %%WWWDIR%%/www/api/v2/common/BaseAgencyService.php %%WWWDIR%%/www/api/v2/common/BaseBannerService.php +%%WWWDIR%%/www/api/v2/common/XmlRpcUtils.php %%WWWDIR%%/www/api/v2/common/BaseCampaignService.php %%WWWDIR%%/www/api/v2/common/BaseChannelService.php -%%WWWDIR%%/www/api/v2/common/BaseLogonService.php -%%WWWDIR%%/www/api/v2/common/BasePublisherService.php %%WWWDIR%%/www/api/v2/common/BaseServiceImpl.php -%%WWWDIR%%/www/api/v2/common/BaseTrackerService.php %%WWWDIR%%/www/api/v2/common/BaseUserService.php -%%WWWDIR%%/www/api/v2/common/BaseVariableService.php +%%WWWDIR%%/www/api/v2/common/BaseAdvertiserService.php +%%WWWDIR%%/www/api/v2/common/BaseLogonService.php %%WWWDIR%%/www/api/v2/common/BaseZoneService.php -%%WWWDIR%%/www/api/v2/common/XmlRpcUtils.php -%%WWWDIR%%/www/api/v2/xmlrpc/AdvertiserServiceImpl.php -%%WWWDIR%%/www/api/v2/xmlrpc/AdvertiserXmlRpcService.php %%WWWDIR%%/www/api/v2/xmlrpc/AgencyServiceImpl.php -%%WWWDIR%%/www/api/v2/xmlrpc/AgencyXmlRpcService.php -%%WWWDIR%%/www/api/v2/xmlrpc/BannerServiceImpl.php -%%WWWDIR%%/www/api/v2/xmlrpc/BannerXmlRpcService.php -%%WWWDIR%%/www/api/v2/xmlrpc/CampaignServiceImpl.php +%%WWWDIR%%/www/api/v2/xmlrpc/ZoneXmlRpcService.php %%WWWDIR%%/www/api/v2/xmlrpc/CampaignXmlRpcService.php -%%WWWDIR%%/www/api/v2/xmlrpc/ChannelServiceImpl.php %%WWWDIR%%/www/api/v2/xmlrpc/ChannelXmlRpcService.php -%%WWWDIR%%/www/api/v2/xmlrpc/LogonServiceImpl.php +%%WWWDIR%%/www/api/v2/xmlrpc/BannerServiceImpl.php +%%WWWDIR%%/www/api/v2/xmlrpc/ChannelServiceImpl.php +%%WWWDIR%%/www/api/v2/xmlrpc/AdvertiserXmlRpcService.php +%%WWWDIR%%/www/api/v2/xmlrpc/XmlRpcFrontController.php +%%WWWDIR%%/www/api/v2/xmlrpc/BannerXmlRpcService.php +%%WWWDIR%%/www/api/v2/xmlrpc/VariableServiceImpl.php +%%WWWDIR%%/www/api/v2/xmlrpc/AdvertiserServiceImpl.php +%%WWWDIR%%/www/api/v2/xmlrpc/ZoneServiceImpl.php %%WWWDIR%%/www/api/v2/xmlrpc/LogonXmlRpcService.php -%%WWWDIR%%/www/api/v2/xmlrpc/PublisherServiceImpl.php -%%WWWDIR%%/www/api/v2/xmlrpc/PublisherXmlRpcService.php -%%WWWDIR%%/www/api/v2/xmlrpc/TrackerServiceImpl.php +%%WWWDIR%%/www/api/v2/xmlrpc/index.php %%WWWDIR%%/www/api/v2/xmlrpc/TrackerXmlRpcService.php +%%WWWDIR%%/www/api/v2/xmlrpc/TrackerServiceImpl.php %%WWWDIR%%/www/api/v2/xmlrpc/UserServiceImpl.php -%%WWWDIR%%/www/api/v2/xmlrpc/UserXmlRpcService.php -%%WWWDIR%%/www/api/v2/xmlrpc/VariableServiceImpl.php %%WWWDIR%%/www/api/v2/xmlrpc/VariableXmlRpcService.php -%%WWWDIR%%/www/api/v2/xmlrpc/XmlRpcFrontController.php -%%WWWDIR%%/www/api/v2/xmlrpc/ZoneServiceImpl.php -%%WWWDIR%%/www/api/v2/xmlrpc/ZoneXmlRpcService.php -%%WWWDIR%%/www/api/v2/xmlrpc/index.php -%%WWWDIR%%/www/delivery/ac.php +%%WWWDIR%%/www/api/v2/xmlrpc/UserXmlRpcService.php +%%WWWDIR%%/www/api/v2/xmlrpc/PublisherServiceImpl.php +%%WWWDIR%%/www/api/v2/xmlrpc/CampaignServiceImpl.php +%%WWWDIR%%/www/api/v2/xmlrpc/PublisherXmlRpcService.php +%%WWWDIR%%/www/api/v2/xmlrpc/AgencyXmlRpcService.php +%%WWWDIR%%/www/api/v2/xmlrpc/LogonServiceImpl.php +%%WWWDIR%%/www/robots.txt +%%WWWDIR%%/www/delivery/ck.php +%%WWWDIR%%/www/delivery/tjs.php +%%WWWDIR%%/www/delivery/ajs.php +%%WWWDIR%%/www/delivery/spcjs.php +%%WWWDIR%%/www/delivery/fc.php +%%WWWDIR%%/www/delivery/lg.php +%%WWWDIR%%/www/delivery/ti.php %%WWWDIR%%/www/delivery/afr.php %%WWWDIR%%/www/delivery/ag.php %%WWWDIR%%/www/delivery/ai.php -%%WWWDIR%%/www/delivery/ajs.php -%%WWWDIR%%/www/delivery/al.php +%%WWWDIR%%/www/delivery/fl.js %%WWWDIR%%/www/delivery/alocal.php -%%WWWDIR%%/www/delivery/apu.php -%%WWWDIR%%/www/delivery/avw.php -%%WWWDIR%%/www/delivery/ax.php -%%WWWDIR%%/www/delivery/axmlrpc.php -%%WWWDIR%%/www/delivery/ck.php +%%WWWDIR%%/www/delivery/ac.php %%WWWDIR%%/www/delivery/crossdomain.xml +%%WWWDIR%%/www/delivery/axmlrpc.php +%%WWWDIR%%/www/delivery/ax.php %%WWWDIR%%/www/delivery/dxmlrpc.php -%%WWWDIR%%/www/delivery/fc.php -%%WWWDIR%%/www/delivery/fl.js -%%WWWDIR%%/www/delivery/lg.php -%%WWWDIR%%/www/delivery/robots.txt -%%WWWDIR%%/www/delivery/spc.php -%%WWWDIR%%/www/delivery/spcjs.php -%%WWWDIR%%/www/delivery/ti.php -%%WWWDIR%%/www/delivery/tjs.php +%%WWWDIR%%/www/delivery/avw.php %%WWWDIR%%/www/delivery/tv.php -%%WWWDIR%%/www/images/1x1.gif -%%WWWDIR%%/www/images/layerstyles/geocities/close.gif -%%WWWDIR%%/www/images/layerstyles/geocities/collapse.gif -%%WWWDIR%%/www/images/layerstyles/geocities/expand-d.gif -%%WWWDIR%%/www/images/layerstyles/geocities/expand.gif -%%WWWDIR%%/www/images/layerstyles/simple/close.gif -%%WWWDIR%%/www/images/robots.txt -%%WWWDIR%%/www/index.php -%%WWWDIR%%/www/robots.txt -@dirrm %%WWWDIR%%/www/images/layerstyles/simple -@dirrm %%WWWDIR%%/www/images/layerstyles/geocities -@dirrm %%WWWDIR%%/www/images/layerstyles -@dirrm %%WWWDIR%%/www/images -@dirrm %%WWWDIR%%/www/delivery -@dirrm %%WWWDIR%%/www/api/v2/xmlrpc -@dirrm %%WWWDIR%%/www/api/v2/common -@dirrm %%WWWDIR%%/www/api/v2 -@dirrm %%WWWDIR%%/www/api/v1/xmlrpc -@dirrm %%WWWDIR%%/www/api/v1/common -@dirrm %%WWWDIR%%/www/api/v1 -@dirrm %%WWWDIR%%/www/api -@dirrm %%WWWDIR%%/www/admin/templates/install -@dirrm %%WWWDIR%%/www/admin/templates -@dirrm %%WWWDIR%%/www/admin/precheck -@dirrm %%WWWDIR%%/www/admin/plugins -@dirrm %%WWWDIR%%/www/admin/market -@dirrm %%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua -@dirrm %%WWWDIR%%/www/admin/assets/js/jscalendar/skins -@dirrm %%WWWDIR%%/www/admin/assets/js/jscalendar/lang -@dirrm %%WWWDIR%%/www/admin/assets/js/jscalendar/doc/html -@dirrm %%WWWDIR%%/www/admin/assets/js/jscalendar/doc -@dirrm %%WWWDIR%%/www/admin/assets/js/jscalendar -@dirrm %%WWWDIR%%/www/admin/assets/js -@dirrm %%WWWDIR%%/www/admin/assets/images/rtl -@dirrm %%WWWDIR%%/www/admin/assets/images/ltr -@dirrm %%WWWDIR%%/www/admin/assets/images/install -@dirrm %%WWWDIR%%/www/admin/assets/images/flags -@dirrm %%WWWDIR%%/www/admin/assets/images/dashboard -@dirrm %%WWWDIR%%/www/admin/assets/images -@dirrm %%WWWDIR%%/www/admin/assets/css -@dirrm %%WWWDIR%%/www/admin/assets -@dirrm %%WWWDIR%%/www/admin -@dirrm %%WWWDIR%%/www -@dirrm %%WWWDIR%%/var/templates_compiled -@dirrm %%WWWDIR%%/var/plugins/recover -@dirrm %%WWWDIR%%/var/plugins/DataObjects -@dirrm %%WWWDIR%%/var/plugins -@dirrm %%WWWDIR%%/var/cache -@dirrm %%WWWDIR%%/var -@dirrm %%WWWDIR%%/scripts/rpm -@dirrm %%WWWDIR%%/scripts/maintenance/tools -@dirrm %%WWWDIR%%/scripts/maintenance/plot-maintenance-times -@dirrm %%WWWDIR%%/scripts/maintenance -@dirrm %%WWWDIR%%/scripts -@dirrm %%WWWDIR%%/plugins/reports -@dirrm %%WWWDIR%%/plugins/maintenanceStatisticsTask -@dirrm %%WWWDIR%%/plugins/maintenancePriorityTask -@dirrm %%WWWDIR%%/plugins/invocationTags -@dirrm %%WWWDIR%%/plugins/geoTargeting -@dirrm %%WWWDIR%%/plugins/etc -@dirrm %%WWWDIR%%/plugins/deliveryLog -@dirrm %%WWWDIR%%/plugins/deliveryLimitations -@dirrm %%WWWDIR%%/plugins/deliveryDataPrepare -@dirrm %%WWWDIR%%/plugins/deliveryCacheStore -@dirrm %%WWWDIR%%/plugins/deliveryAdRender -@dirrm %%WWWDIR%%/plugins/bannerTypeText -@dirrm %%WWWDIR%%/plugins/bannerTypeHtml -@dirrm %%WWWDIR%%/plugins/authentication -@dirrm %%WWWDIR%%/plugins/api -@dirrm %%WWWDIR%%/plugins/3rdPartyServers -@dirrm %%WWWDIR%%/plugins -@dirrm %%WWWDIR%%/maintenance -@dirrm %%WWWDIR%%/lib/xmlrpc/php -@dirrm %%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy -@dirrm %%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads -@dirrm %%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org -@dirrm %%WWWDIR%%/lib/xmlrpc/java/ApacheLib3 -@dirrm %%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy -@dirrm %%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads -@dirrm %%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org -@dirrm %%WWWDIR%%/lib/xmlrpc/java/ApacheLib2 -@dirrm %%WWWDIR%%/lib/xmlrpc/java -@dirrm %%WWWDIR%%/lib/xmlrpc -@dirrm %%WWWDIR%%/lib/xajax/xajax_js -@dirrm %%WWWDIR%%/lib/xajax/lib -@dirrm %%WWWDIR%%/lib/xajax -@dirrm %%WWWDIR%%/lib/wact/db/interfaces -@dirrm %%WWWDIR%%/lib/wact/db/drivers -@dirrm %%WWWDIR%%/lib/wact/db -@dirrm %%WWWDIR%%/lib/wact -@dirrm %%WWWDIR%%/lib/util/file -@dirrm %%WWWDIR%%/lib/util -@dirrm %%WWWDIR%%/lib/templates/admin/options -@dirrm %%WWWDIR%%/lib/templates/admin/layout -@dirrm %%WWWDIR%%/lib/templates/admin/install -@dirrm %%WWWDIR%%/lib/templates/admin/form -@dirrm %%WWWDIR%%/lib/templates/admin/edit-table -@dirrm %%WWWDIR%%/lib/templates/admin/dashboard -@dirrm %%WWWDIR%%/lib/templates/admin/ajax -@dirrm %%WWWDIR%%/lib/templates/admin -@dirrm %%WWWDIR%%/lib/templates -@dirrm %%WWWDIR%%/lib/smarty/plugins -@dirrm %%WWWDIR%%/lib/smarty/internals -@dirrm %%WWWDIR%%/lib/smarty -@dirrm %%WWWDIR%%/lib/pear/XML/Tree -@dirrm %%WWWDIR%%/lib/pear/XML/RPC -@dirrm %%WWWDIR%%/lib/pear/XML/Parser -@dirrm %%WWWDIR%%/lib/pear/XML -@dirrm %%WWWDIR%%/lib/pear/Text -@dirrm %%WWWDIR%%/lib/pear/Structures/Graph/Manipulator -@dirrm %%WWWDIR%%/lib/pear/Structures/Graph -@dirrm %%WWWDIR%%/lib/pear/Structures -@dirrm %%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer -@dirrm %%WWWDIR%%/lib/pear/Spreadsheet/Excel -@dirrm %%WWWDIR%%/lib/pear/Spreadsheet -@dirrm %%WWWDIR%%/lib/pear/Services/ExchangeRates -@dirrm %%WWWDIR%%/lib/pear/Services -@dirrm %%WWWDIR%%/lib/pear/Pager -@dirrm %%WWWDIR%%/lib/pear/PEAR/Validator -@dirrm %%WWWDIR%%/lib/pear/PEAR/Task/Windowseol -@dirrm %%WWWDIR%%/lib/pear/PEAR/Task/Unixeol -@dirrm %%WWWDIR%%/lib/pear/PEAR/Task/Replace -@dirrm %%WWWDIR%%/lib/pear/PEAR/Task/Postinstallscript -@dirrm %%WWWDIR%%/lib/pear/PEAR/Task -@dirrm %%WWWDIR%%/lib/pear/PEAR/REST -@dirrm %%WWWDIR%%/lib/pear/PEAR/PackageFile/v2 -@dirrm %%WWWDIR%%/lib/pear/PEAR/PackageFile/Parser -@dirrm %%WWWDIR%%/lib/pear/PEAR/PackageFile/Generator -@dirrm %%WWWDIR%%/lib/pear/PEAR/PackageFile -@dirrm %%WWWDIR%%/lib/pear/PEAR/Installer/Role -@dirrm %%WWWDIR%%/lib/pear/PEAR/Installer -@dirrm %%WWWDIR%%/lib/pear/PEAR/Frontend -@dirrm %%WWWDIR%%/lib/pear/PEAR/Downloader -@dirrm %%WWWDIR%%/lib/pear/PEAR/Command -@dirrm %%WWWDIR%%/lib/pear/PEAR/ChannelFile -@dirrm %%WWWDIR%%/lib/pear/PEAR -@dirrm %%WWWDIR%%/lib/pear/OS -@dirrm %%WWWDIR%%/lib/pear/OLE/PPS -@dirrm %%WWWDIR%%/lib/pear/OLE -@dirrm %%WWWDIR%%/lib/pear/Numbers/Words -@dirrm %%WWWDIR%%/lib/pear/Numbers -@dirrm %%WWWDIR%%/lib/pear/Net -@dirrm %%WWWDIR%%/lib/pear/Mail -@dirrm %%WWWDIR%%/lib/pear/MDB2_Schema -@dirrm %%WWWDIR%%/lib/pear/MDB2/Schema/Reserved -@dirrm %%WWWDIR%%/lib/pear/MDB2/Schema -@dirrm %%WWWDIR%%/lib/pear/MDB2/Driver/Reverse -@dirrm %%WWWDIR%%/lib/pear/MDB2/Driver/Native -@dirrm %%WWWDIR%%/lib/pear/MDB2/Driver/Manager -@dirrm %%WWWDIR%%/lib/pear/MDB2/Driver/Function -@dirrm %%WWWDIR%%/lib/pear/MDB2/Driver/Datatype -@dirrm %%WWWDIR%%/lib/pear/MDB2/Driver -@dirrm %%WWWDIR%%/lib/pear/MDB2 -@dirrm %%WWWDIR%%/lib/pear/Log -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Plotarea -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Plot/Smoothed -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Plot/Fit -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Plot -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Marker/Pointing -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Marker -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Line -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Layout -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Images/Maps -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Images/Icons -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Images -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Grid -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Fill -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Figure -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Dataset -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/DataSelector -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Axis/Marker -@dirrm %%WWWDIR%%/lib/pear/Image/Graph/Axis -@dirrm %%WWWDIR%%/lib/pear/Image/Graph -@dirrm %%WWWDIR%%/lib/pear/Image/Canvas/GD -@dirrm %%WWWDIR%%/lib/pear/Image/Canvas/Fonts -@dirrm %%WWWDIR%%/lib/pear/Image/Canvas -@dirrm %%WWWDIR%%/lib/pear/Image -@dirrm %%WWWDIR%%/lib/pear/HTTP -@dirrm %%WWWDIR%%/lib/pear/HTML/docs -@dirrm %%WWWDIR%%/lib/pear/HTML/Template/Flexy/templates -@dirrm %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token -@dirrm %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Plugin -@dirrm %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Element -@dirrm %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Standard -@dirrm %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex -@dirrm %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Flexy -@dirrm %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler -@dirrm %%WWWDIR%%/lib/pear/HTML/Template/Flexy -@dirrm %%WWWDIR%%/lib/pear/HTML/Template -@dirrm %%WWWDIR%%/lib/pear/HTML/QuickForm/Rule -@dirrm %%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer -@dirrm %%WWWDIR%%/lib/pear/HTML/QuickForm -@dirrm %%WWWDIR%%/lib/pear/HTML -@dirrm %%WWWDIR%%/lib/pear/Date -@dirrm %%WWWDIR%%/lib/pear/DB/QueryTool/Result -@dirrm %%WWWDIR%%/lib/pear/DB/QueryTool -@dirrm %%WWWDIR%%/lib/pear/DB/DataObject -@dirrm %%WWWDIR%%/lib/pear/DB -@dirrm %%WWWDIR%%/lib/pear/Console -@dirrm %%WWWDIR%%/lib/pear/Config/Container -@dirrm %%WWWDIR%%/lib/pear/Config -@dirrm %%WWWDIR%%/lib/pear/Cache/Lite -@dirrm %%WWWDIR%%/lib/pear/Cache -@dirrm %%WWWDIR%%/lib/pear/Archive -@dirrm %%WWWDIR%%/lib/pear -@dirrm %%WWWDIR%%/lib/pclzip -@dirrm %%WWWDIR%%/lib/minify/Solar -@dirrm %%WWWDIR%%/lib/minify/Minify/Controller -@dirrm %%WWWDIR%%/lib/minify/Minify/Cache -@dirrm %%WWWDIR%%/lib/minify/Minify/CSS -@dirrm %%WWWDIR%%/lib/minify/Minify -@dirrm %%WWWDIR%%/lib/minify/HTTP -@dirrm %%WWWDIR%%/lib/minify -@dirrm %%WWWDIR%%/lib/max/resources -@dirrm %%WWWDIR%%/lib/max/other/capping -@dirrm %%WWWDIR%%/lib/max/other -@dirrm %%WWWDIR%%/lib/max/language/zh_TW -@dirrm %%WWWDIR%%/lib/max/language/zh_CN -@dirrm %%WWWDIR%%/lib/max/language/unsupported -@dirrm %%WWWDIR%%/lib/max/language/uk -@dirrm %%WWWDIR%%/lib/max/language/tr -@dirrm %%WWWDIR%%/lib/max/language/sv -@dirrm %%WWWDIR%%/lib/max/language/sq -@dirrm %%WWWDIR%%/lib/max/language/sl -@dirrm %%WWWDIR%%/lib/max/language/sk -@dirrm %%WWWDIR%%/lib/max/language/ru -@dirrm %%WWWDIR%%/lib/max/language/ro -@dirrm %%WWWDIR%%/lib/max/language/pt_PT -@dirrm %%WWWDIR%%/lib/max/language/pt_BR -@dirrm %%WWWDIR%%/lib/max/language/pl -@dirrm %%WWWDIR%%/lib/max/language/nl -@dirrm %%WWWDIR%%/lib/max/language/nb -@dirrm %%WWWDIR%%/lib/max/language/ms -@dirrm %%WWWDIR%%/lib/max/language/lt -@dirrm %%WWWDIR%%/lib/max/language/ko -@dirrm %%WWWDIR%%/lib/max/language/ja -@dirrm %%WWWDIR%%/lib/max/language/it -@dirrm %%WWWDIR%%/lib/max/language/id -@dirrm %%WWWDIR%%/lib/max/language/hu -@dirrm %%WWWDIR%%/lib/max/language/he -@dirrm %%WWWDIR%%/lib/max/language/fr -@dirrm %%WWWDIR%%/lib/max/language/fa -@dirrm %%WWWDIR%%/lib/max/language/es -@dirrm %%WWWDIR%%/lib/max/language/en -@dirrm %%WWWDIR%%/lib/max/language/el -@dirrm %%WWWDIR%%/lib/max/language/de -@dirrm %%WWWDIR%%/lib/max/language/da -@dirrm %%WWWDIR%%/lib/max/language/cy -@dirrm %%WWWDIR%%/lib/max/language/cs -@dirrm %%WWWDIR%%/lib/max/language/bg -@dirrm %%WWWDIR%%/lib/max/language/ar -@dirrm %%WWWDIR%%/lib/max/language -@dirrm %%WWWDIR%%/lib/max/deliverycache -@dirrm %%WWWDIR%%/lib/max/data -@dirrm %%WWWDIR%%/lib/max/Util -@dirrm %%WWWDIR%%/lib/max/Plugin -@dirrm %%WWWDIR%%/lib/max/Delivery/templates -@dirrm %%WWWDIR%%/lib/max/Delivery -@dirrm %%WWWDIR%%/lib/max/Dal/data -@dirrm %%WWWDIR%%/lib/max/Dal/Inventory -@dirrm %%WWWDIR%%/lib/max/Dal/DataObjects -@dirrm %%WWWDIR%%/lib/max/Dal/Admin -@dirrm %%WWWDIR%%/lib/max/Dal -@dirrm %%WWWDIR%%/lib/max/Admin/data -@dirrm %%WWWDIR%%/lib/max/Admin/UI/Field -@dirrm %%WWWDIR%%/lib/max/Admin/UI -@dirrm %%WWWDIR%%/lib/max/Admin/Invocation -@dirrm %%WWWDIR%%/lib/max/Admin/Inventory/themes -@dirrm %%WWWDIR%%/lib/max/Admin/Inventory -@dirrm %%WWWDIR%%/lib/max/Admin -@dirrm %%WWWDIR%%/lib/max -@dirrm %%WWWDIR%%/lib/junit -@dirrm %%WWWDIR%%/lib/java-xmlrpc-2.0 -@dirrm %%WWWDIR%%/lib/java-xmlrpc -@dirrm %%WWWDIR%%/lib/fonts/Bitstream -@dirrm %%WWWDIR%%/lib/fonts -@dirrm %%WWWDIR%%/lib/Zend/XmlRpc/Value -@dirrm %%WWWDIR%%/lib/Zend/XmlRpc/Server -@dirrm %%WWWDIR%%/lib/Zend/XmlRpc/Response -@dirrm %%WWWDIR%%/lib/Zend/XmlRpc/Request -@dirrm %%WWWDIR%%/lib/Zend/XmlRpc/Client -@dirrm %%WWWDIR%%/lib/Zend/XmlRpc -@dirrm %%WWWDIR%%/lib/Zend/Validate/Hostname -@dirrm %%WWWDIR%%/lib/Zend/Validate/Barcode -@dirrm %%WWWDIR%%/lib/Zend/Validate -@dirrm %%WWWDIR%%/lib/Zend/Uri -@dirrm %%WWWDIR%%/lib/Zend/Translate/Adapter -@dirrm %%WWWDIR%%/lib/Zend/Translate -@dirrm %%WWWDIR%%/lib/Zend/Locale/Math -@dirrm %%WWWDIR%%/lib/Zend/Locale/Data -@dirrm %%WWWDIR%%/lib/Zend/Locale -@dirrm %%WWWDIR%%/lib/Zend/Http/Client/Adapter -@dirrm %%WWWDIR%%/lib/Zend/Http/Client -@dirrm %%WWWDIR%%/lib/Zend/Http -@dirrm %%WWWDIR%%/lib/Zend -@dirrm %%WWWDIR%%/lib/OX/Util -@dirrm %%WWWDIR%%/lib/OX/Upgrade/Util -@dirrm %%WWWDIR%%/lib/OX/Upgrade/PostUpgradeTask -@dirrm %%WWWDIR%%/lib/OX/Upgrade/InstallPlugin -@dirrm %%WWWDIR%%/lib/OX/Upgrade -@dirrm %%WWWDIR%%/lib/OX/Plugin -@dirrm %%WWWDIR%%/lib/OX/PC/API -@dirrm %%WWWDIR%%/lib/OX/PC -@dirrm %%WWWDIR%%/lib/OX/Maintenance/Statistics/Task -@dirrm %%WWWDIR%%/lib/OX/Maintenance/Statistics -@dirrm %%WWWDIR%%/lib/OX/Maintenance/Priority -@dirrm %%WWWDIR%%/lib/OX/Maintenance -@dirrm %%WWWDIR%%/lib/OX/M2M -@dirrm %%WWWDIR%%/lib/OX/Extension/reports -@dirrm %%WWWDIR%%/lib/OX/Extension/maintenanceStatisticsTask -@dirrm %%WWWDIR%%/lib/OX/Extension/maintenancePriorityTask -@dirrm %%WWWDIR%%/lib/OX/Extension/invocationTags -@dirrm %%WWWDIR%%/lib/OX/Extension/geoTargeting -@dirrm %%WWWDIR%%/lib/OX/Extension/deliveryLog/DB -@dirrm %%WWWDIR%%/lib/OX/Extension/deliveryLog -@dirrm %%WWWDIR%%/lib/OX/Extension/deliveryLimitations -@dirrm %%WWWDIR%%/lib/OX/Extension/deliveryCacheStore -@dirrm %%WWWDIR%%/lib/OX/Extension/deliveryAdSelect -@dirrm %%WWWDIR%%/lib/OX/Extension/deliveryAdRender -@dirrm %%WWWDIR%%/lib/OX/Extension/bannerTypeText -@dirrm %%WWWDIR%%/lib/OX/Extension/bannerTypeHtml -@dirrm %%WWWDIR%%/lib/OX/Extension/authentication -@dirrm %%WWWDIR%%/lib/OX/Extension/api -@dirrm %%WWWDIR%%/lib/OX/Extension/3rdPartyServers -@dirrm %%WWWDIR%%/lib/OX/Extension -@dirrm %%WWWDIR%%/lib/OX/Dal/Market -@dirrm %%WWWDIR%%/lib/OX/Dal/Maintenance/Statistics -@dirrm %%WWWDIR%%/lib/OX/Dal/Maintenance -@dirrm %%WWWDIR%%/lib/OX/Dal/EntityService -@dirrm %%WWWDIR%%/lib/OX/Dal/DB_DataObjects -@dirrm %%WWWDIR%%/lib/OX/Dal -@dirrm %%WWWDIR%%/lib/OX/Admin/UI/Minify -@dirrm %%WWWDIR%%/lib/OX/Admin/UI/Install -@dirrm %%WWWDIR%%/lib/OX/Admin/UI/Event -@dirrm %%WWWDIR%%/lib/OX/Admin/UI/Controller -@dirrm %%WWWDIR%%/lib/OX/Admin/UI -@dirrm %%WWWDIR%%/lib/OX/Admin -@dirrm %%WWWDIR%%/lib/OX -@dirrm %%WWWDIR%%/lib/OA/Upgrade -@dirrm %%WWWDIR%%/lib/OA/Task -@dirrm %%WWWDIR%%/lib/OA/Permission -@dirrm %%WWWDIR%%/lib/OA/Maintenance/Priority/DeliveryLimitation -@dirrm %%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task -@dirrm %%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer -@dirrm %%WWWDIR%%/lib/OA/Maintenance/Priority -@dirrm %%WWWDIR%%/lib/OA/Maintenance -@dirrm %%WWWDIR%%/lib/OA/Dll -@dirrm %%WWWDIR%%/lib/OA/Dashboard/Widgets -@dirrm %%WWWDIR%%/lib/OA/Dashboard -@dirrm %%WWWDIR%%/lib/OA/Dal/Statistics -@dirrm %%WWWDIR%%/lib/OA/Dal/Maintenance -@dirrm %%WWWDIR%%/lib/OA/Dal/Delivery -@dirrm %%WWWDIR%%/lib/OA/Dal/Central -@dirrm %%WWWDIR%%/lib/OA/Dal -@dirrm %%WWWDIR%%/lib/OA/DB/Table -@dirrm %%WWWDIR%%/lib/OA/DB/DataObject -@dirrm %%WWWDIR%%/lib/OA/DB/CustomDatatypes -@dirrm %%WWWDIR%%/lib/OA/DB/Charset -@dirrm %%WWWDIR%%/lib/OA/DB/AdvisoryLock -@dirrm %%WWWDIR%%/lib/OA/DB -@dirrm %%WWWDIR%%/lib/OA/Creative/File -@dirrm %%WWWDIR%%/lib/OA/Creative -@dirrm %%WWWDIR%%/lib/OA/Central -@dirrm %%WWWDIR%%/lib/OA/Cache -@dirrm %%WWWDIR%%/lib/OA/Algorithm/Dependency/Source -@dirrm %%WWWDIR%%/lib/OA/Algorithm/Dependency -@dirrm %%WWWDIR%%/lib/OA/Algorithm -@dirrm %%WWWDIR%%/lib/OA/Admin/UI/model -@dirrm %%WWWDIR%%/lib/OA/Admin/UI/component/rule -@dirrm %%WWWDIR%%/lib/OA/Admin/UI/component/decorator -@dirrm %%WWWDIR%%/lib/OA/Admin/UI/component -@dirrm %%WWWDIR%%/lib/OA/Admin/UI/Field -@dirrm %%WWWDIR%%/lib/OA/Admin/UI -@dirrm %%WWWDIR%%/lib/OA/Admin/Statistics/themes -@dirrm %%WWWDIR%%/lib/OA/Admin/Statistics/Fields/Delivery -@dirrm %%WWWDIR%%/lib/OA/Admin/Statistics/Fields -@dirrm %%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/themes -@dirrm %%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller -@dirrm %%WWWDIR%%/lib/OA/Admin/Statistics/Delivery -@dirrm %%WWWDIR%%/lib/OA/Admin/Statistics -@dirrm %%WWWDIR%%/lib/OA/Admin/Reports -@dirrm %%WWWDIR%%/lib/OA/Admin/Menu -@dirrm %%WWWDIR%%/lib/OA/Admin -@dirrm %%WWWDIR%%/lib/OA -@dirrm %%WWWDIR%%/lib/JSON -@dirrm %%WWWDIR%%/lib -@dirrm %%WWWDIR%%/etc/xmlcache -@dirrm %%WWWDIR%%/etc/plugins -@dirrm %%WWWDIR%%/etc/permanentcache -@dirrm %%WWWDIR%%/etc/changes/tools -@dirrm %%WWWDIR%%/etc/changes/tasks -@dirrm %%WWWDIR%%/etc/changes -@dirrm %%WWWDIR%%/etc -@dirrm %%WWWDIR%%/docs -@dirrm www/openx +%%WWWDIR%%/www/delivery/apu.php +%%WWWDIR%%/www/delivery/al.php +%%WWWDIR%%/www/delivery/spc.php +%%WWWDIR%%/www/delivery/robots.txt +%%WWWDIR%%/lib/.htaccess +%%WWWDIR%%/lib/OX.php +%%WWWDIR%%/lib/JSON/JSON.php +%%WWWDIR%%/lib/xajax/xajaxCompress.php +%%WWWDIR%%/lib/xajax/xajax_js/xajax.js +%%WWWDIR%%/lib/xajax/xajax_js/xajax_uncompressed.js +%%WWWDIR%%/lib/xajax/README.txt +%%WWWDIR%%/lib/xajax/LICENSE.txt +%%WWWDIR%%/lib/xajax/xajaxResponse.inc.php +%%WWWDIR%%/lib/xajax/xajax.inc.php +%%WWWDIR%%/lib/xajax/lib/activex_off.js +%%WWWDIR%%/lib/xajax.inc.php +%%WWWDIR%%/lib/max/ErrorHandler.php +%%WWWDIR%%/lib/max/language/tr/default.lang.php +%%WWWDIR%%/lib/max/language/tr/invocation.lang.php +%%WWWDIR%%/lib/max/language/tr/index.lang.php +%%WWWDIR%%/lib/max/language/tr/settings-help.lang.php +%%WWWDIR%%/lib/max/language/tr/settings.lang.php +%%WWWDIR%%/lib/max/language/tr/report.lang.php +%%WWWDIR%%/lib/max/language/tr/userlog.lang.php +%%WWWDIR%%/lib/max/language/tr/maintenance.lang.php +%%WWWDIR%%/lib/max/language/sk/invocation.lang.php +%%WWWDIR%%/lib/max/language/sk/maintenance.lang.php +%%WWWDIR%%/lib/max/language/sk/userlog.lang.php +%%WWWDIR%%/lib/max/language/sk/index.lang.php +%%WWWDIR%%/lib/max/language/sk/settings.lang.php +%%WWWDIR%%/lib/max/language/sk/default.lang.php +%%WWWDIR%%/lib/max/language/unsupported/unsupported.zip +%%WWWDIR%%/lib/max/language/Loader.php +%%WWWDIR%%/lib/max/language/da/index.lang.php +%%WWWDIR%%/lib/max/language/da/invocation.lang.php +%%WWWDIR%%/lib/max/language/da/maintenance.lang.php +%%WWWDIR%%/lib/max/language/da/installer.lang.php +%%WWWDIR%%/lib/max/language/da/settings.lang.php +%%WWWDIR%%/lib/max/language/da/default.lang.php +%%WWWDIR%%/lib/max/language/da/settings-help.lang.php +%%WWWDIR%%/lib/max/language/da/userlog.lang.php +%%WWWDIR%%/lib/max/language/it/settings.lang.php +%%WWWDIR%%/lib/max/language/it/invocation.lang.php +%%WWWDIR%%/lib/max/language/it/index.lang.php +%%WWWDIR%%/lib/max/language/it/default.lang.php +%%WWWDIR%%/lib/max/language/it/settings-help.lang.php +%%WWWDIR%%/lib/max/language/it/res-iso3166.lang.php +%%WWWDIR%%/lib/max/language/it/userlog.lang.php +%%WWWDIR%%/lib/max/language/it/maintenance.lang.php +%%WWWDIR%%/lib/max/language/it/res-continent.lang.php +%%WWWDIR%%/lib/max/language/it/report.lang.php +%%WWWDIR%%/lib/max/language/it/res-iso639.lang.php +%%WWWDIR%%/lib/max/language/it/installer.lang.php +%%WWWDIR%%/lib/max/language/ro/default.lang.php +%%WWWDIR%%/lib/max/language/ro/installer.lang.php +%%WWWDIR%%/lib/max/language/ro/index.lang.php +%%WWWDIR%%/lib/max/language/ro/settings-help.lang.php +%%WWWDIR%%/lib/max/language/ro/settings.lang.php +%%WWWDIR%%/lib/max/language/ro/report.lang.php +%%WWWDIR%%/lib/max/language/ro/maintenance.lang.php +%%WWWDIR%%/lib/max/language/ro/invocation.lang.php +%%WWWDIR%%/lib/max/language/ro/userlog.lang.php +%%WWWDIR%%/lib/max/language/sl/report.lang.php +%%WWWDIR%%/lib/max/language/sl/userlog.lang.php +%%WWWDIR%%/lib/max/language/sl/settings.lang.php +%%WWWDIR%%/lib/max/language/sl/installer.lang.php +%%WWWDIR%%/lib/max/language/sl/maintenance.lang.php +%%WWWDIR%%/lib/max/language/sl/settings-help.lang.php +%%WWWDIR%%/lib/max/language/sl/default.lang.php +%%WWWDIR%%/lib/max/language/sl/index.lang.php +%%WWWDIR%%/lib/max/language/sl/invocation.lang.php +%%WWWDIR%%/lib/max/language/sv/userlog.lang.php +%%WWWDIR%%/lib/max/language/sv/index.lang.php +%%WWWDIR%%/lib/max/language/sv/maintenance.lang.php +%%WWWDIR%%/lib/max/language/sv/settings.lang.php +%%WWWDIR%%/lib/max/language/sv/invocation.lang.php +%%WWWDIR%%/lib/max/language/sv/default.lang.php +%%WWWDIR%%/lib/max/language/sv/installer.lang.php +%%WWWDIR%%/lib/max/language/ko/settings.lang.php +%%WWWDIR%%/lib/max/language/ko/userlog.lang.php +%%WWWDIR%%/lib/max/language/ko/index.lang.php +%%WWWDIR%%/lib/max/language/ko/report.lang.php +%%WWWDIR%%/lib/max/language/ko/maintenance.lang.php +%%WWWDIR%%/lib/max/language/ko/invocation.lang.php +%%WWWDIR%%/lib/max/language/ko/settings-help.lang.php +%%WWWDIR%%/lib/max/language/ko/default.lang.php +%%WWWDIR%%/lib/max/language/ru/userlog.lang.php +%%WWWDIR%%/lib/max/language/ru/report.lang.php +%%WWWDIR%%/lib/max/language/ru/settings-help.lang.php +%%WWWDIR%%/lib/max/language/ru/invocation.lang.php +%%WWWDIR%%/lib/max/language/ru/settings.lang.php +%%WWWDIR%%/lib/max/language/ru/index.lang.php +%%WWWDIR%%/lib/max/language/ru/installer.lang.php +%%WWWDIR%%/lib/max/language/ru/maintenance.lang.php +%%WWWDIR%%/lib/max/language/ru/default.lang.php +%%WWWDIR%%/lib/max/language/id/invocation.lang.php +%%WWWDIR%%/lib/max/language/id/userlog.lang.php +%%WWWDIR%%/lib/max/language/id/settings.lang.php +%%WWWDIR%%/lib/max/language/id/settings-help.lang.php +%%WWWDIR%%/lib/max/language/id/report.lang.php +%%WWWDIR%%/lib/max/language/id/installer.lang.php +%%WWWDIR%%/lib/max/language/id/maintenance.lang.php +%%WWWDIR%%/lib/max/language/id/index.lang.php +%%WWWDIR%%/lib/max/language/id/default.lang.php +%%WWWDIR%%/lib/max/language/de/maintenance.lang.php +%%WWWDIR%%/lib/max/language/de/installer.lang.php +%%WWWDIR%%/lib/max/language/de/default.lang.php +%%WWWDIR%%/lib/max/language/de/report.lang.php +%%WWWDIR%%/lib/max/language/de/settings.lang.php +%%WWWDIR%%/lib/max/language/de/userlog.lang.php +%%WWWDIR%%/lib/max/language/de/index.lang.php +%%WWWDIR%%/lib/max/language/de/settings-help.lang.php +%%WWWDIR%%/lib/max/language/de/invocation.lang.php +%%WWWDIR%%/lib/max/language/ja/settings.lang.php +%%WWWDIR%%/lib/max/language/ja/report.lang.php +%%WWWDIR%%/lib/max/language/ja/invocation.lang.php +%%WWWDIR%%/lib/max/language/ja/installer.lang.php +%%WWWDIR%%/lib/max/language/ja/userlog.lang.php +%%WWWDIR%%/lib/max/language/ja/index.lang.php +%%WWWDIR%%/lib/max/language/ja/maintenance.lang.php +%%WWWDIR%%/lib/max/language/ja/default.lang.php +%%WWWDIR%%/lib/max/language/ja/settings-help.lang.php +%%WWWDIR%%/lib/max/language/uk/index.lang.php +%%WWWDIR%%/lib/max/language/uk/invocation.lang.php +%%WWWDIR%%/lib/max/language/uk/settings.lang.php +%%WWWDIR%%/lib/max/language/uk/userlog.lang.php +%%WWWDIR%%/lib/max/language/uk/maintenance.lang.php +%%WWWDIR%%/lib/max/language/uk/default.lang.php +%%WWWDIR%%/lib/max/language/el/invocation.lang.php +%%WWWDIR%%/lib/max/language/el/userlog.lang.php +%%WWWDIR%%/lib/max/language/el/maintenance.lang.php +%%WWWDIR%%/lib/max/language/el/index.lang.php +%%WWWDIR%%/lib/max/language/el/default.lang.php +%%WWWDIR%%/lib/max/language/el/settings.lang.php +%%WWWDIR%%/lib/max/language/sq/index.lang.php +%%WWWDIR%%/lib/max/language/sq/default.lang.php +%%WWWDIR%%/lib/max/language/pt_PT/invocation.lang.php +%%WWWDIR%%/lib/max/language/pt_PT/default.lang.php +%%WWWDIR%%/lib/max/language/pt_PT/report.lang.php +%%WWWDIR%%/lib/max/language/pt_PT/settings.lang.php +%%WWWDIR%%/lib/max/language/pt_PT/maintenance.lang.php +%%WWWDIR%%/lib/max/language/pt_PT/settings-help.lang.php +%%WWWDIR%%/lib/max/language/pt_PT/index.lang.php +%%WWWDIR%%/lib/max/language/pt_PT/userlog.lang.php +%%WWWDIR%%/lib/max/language/pt_PT/installer.lang.php +%%WWWDIR%%/lib/max/language/pt_BR/userlog.lang.php +%%WWWDIR%%/lib/max/language/pt_BR/maintenance.lang.php +%%WWWDIR%%/lib/max/language/pt_BR/index.lang.php +%%WWWDIR%%/lib/max/language/pt_BR/installer.lang.php +%%WWWDIR%%/lib/max/language/pt_BR/report.lang.php +%%WWWDIR%%/lib/max/language/pt_BR/invocation.lang.php +%%WWWDIR%%/lib/max/language/pt_BR/settings.lang.php +%%WWWDIR%%/lib/max/language/pt_BR/settings-help.lang.php +%%WWWDIR%%/lib/max/language/pt_BR/default.lang.php +%%WWWDIR%%/lib/max/language/en/userlog.lang.php +%%WWWDIR%%/lib/max/language/en/settings-help.lang.php +%%WWWDIR%%/lib/max/language/en/index.lang.php +%%WWWDIR%%/lib/max/language/en/installer.lang.php +%%WWWDIR%%/lib/max/language/en/maintenance.lang.php +%%WWWDIR%%/lib/max/language/en/timezones.lang.php +%%WWWDIR%%/lib/max/language/en/default.lang.php +%%WWWDIR%%/lib/max/language/en/report.lang.php +%%WWWDIR%%/lib/max/language/en/invocation.lang.php +%%WWWDIR%%/lib/max/language/en/settings.lang.php +%%WWWDIR%%/lib/max/language/fr/installer.lang.php +%%WWWDIR%%/lib/max/language/fr/settings.lang.php +%%WWWDIR%%/lib/max/language/fr/invocation.lang.php +%%WWWDIR%%/lib/max/language/fr/default.lang.php +%%WWWDIR%%/lib/max/language/fr/userlog.lang.php +%%WWWDIR%%/lib/max/language/fr/index.lang.php +%%WWWDIR%%/lib/max/language/fr/maintenance.lang.php +%%WWWDIR%%/lib/max/language/fr/settings-help.lang.php +%%WWWDIR%%/lib/max/language/fr/report.lang.php +%%WWWDIR%%/lib/max/language/nl/userlog.lang.php +%%WWWDIR%%/lib/max/language/nl/index.lang.php +%%WWWDIR%%/lib/max/language/nl/settings.lang.php +%%WWWDIR%%/lib/max/language/nl/installer.lang.php +%%WWWDIR%%/lib/max/language/nl/settings-help.lang.php +%%WWWDIR%%/lib/max/language/nl/report.lang.php +%%WWWDIR%%/lib/max/language/nl/invocation.lang.php +%%WWWDIR%%/lib/max/language/nl/default.lang.php +%%WWWDIR%%/lib/max/language/nl/maintenance.lang.php +%%WWWDIR%%/lib/max/language/cy/maintenance.lang.php +%%WWWDIR%%/lib/max/language/cy/settings.lang.php +%%WWWDIR%%/lib/max/language/cy/default.lang.php +%%WWWDIR%%/lib/max/language/cy/invocation.lang.php +%%WWWDIR%%/lib/max/language/cy/index.lang.php +%%WWWDIR%%/lib/max/language/cy/userlog.lang.php +%%WWWDIR%%/lib/max/language/cs/maintenance.lang.php +%%WWWDIR%%/lib/max/language/cs/userlog.lang.php +%%WWWDIR%%/lib/max/language/cs/report.lang.php +%%WWWDIR%%/lib/max/language/cs/index.lang.php +%%WWWDIR%%/lib/max/language/cs/default.lang.php +%%WWWDIR%%/lib/max/language/cs/invocation.lang.php +%%WWWDIR%%/lib/max/language/cs/settings-help.lang.php +%%WWWDIR%%/lib/max/language/cs/settings.lang.php +%%WWWDIR%%/lib/max/language/he/invocation.lang.php +%%WWWDIR%%/lib/max/language/he/report.lang.php +%%WWWDIR%%/lib/max/language/he/default.lang.php +%%WWWDIR%%/lib/max/language/he/settings-help.lang.php +%%WWWDIR%%/lib/max/language/he/index.lang.php +%%WWWDIR%%/lib/max/language/he/settings.lang.php +%%WWWDIR%%/lib/max/language/he/userlog.lang.php +%%WWWDIR%%/lib/max/language/he/maintenance.lang.php +%%WWWDIR%%/lib/max/language/fa/userlog.lang.php +%%WWWDIR%%/lib/max/language/fa/default.lang.php +%%WWWDIR%%/lib/max/language/fa/installer.lang.php +%%WWWDIR%%/lib/max/language/fa/settings.lang.php +%%WWWDIR%%/lib/max/language/fa/invocation.lang.php +%%WWWDIR%%/lib/max/language/fa/index.lang.php +%%WWWDIR%%/lib/max/language/fa/maintenance.lang.php +%%WWWDIR%%/lib/max/language/fa/settings-help.lang.php +%%WWWDIR%%/lib/max/language/fa/report.lang.php +%%WWWDIR%%/lib/max/language/ar/userlog.lang.php +%%WWWDIR%%/lib/max/language/ar/index.lang.php +%%WWWDIR%%/lib/max/language/ar/settings-help.lang.php +%%WWWDIR%%/lib/max/language/ar/settings.lang.php +%%WWWDIR%%/lib/max/language/ar/installer.lang.php +%%WWWDIR%%/lib/max/language/ar/invocation.lang.php +%%WWWDIR%%/lib/max/language/ar/maintenance.lang.php +%%WWWDIR%%/lib/max/language/ar/default.lang.php +%%WWWDIR%%/lib/max/language/lt/default.lang.php +%%WWWDIR%%/lib/max/language/lt/report.lang.php +%%WWWDIR%%/lib/max/language/lt/settings-help.lang.php +%%WWWDIR%%/lib/max/language/lt/installer.lang.php +%%WWWDIR%%/lib/max/language/lt/settings.lang.php +%%WWWDIR%%/lib/max/language/lt/invocation.lang.php +%%WWWDIR%%/lib/max/language/lt/userlog.lang.php +%%WWWDIR%%/lib/max/language/lt/index.lang.php +%%WWWDIR%%/lib/max/language/lt/maintenance.lang.php +%%WWWDIR%%/lib/max/language/pl/maintenance.lang.php +%%WWWDIR%%/lib/max/language/pl/invocation.lang.php +%%WWWDIR%%/lib/max/language/pl/index.lang.php +%%WWWDIR%%/lib/max/language/pl/settings-help.lang.php +%%WWWDIR%%/lib/max/language/pl/default.lang.php +%%WWWDIR%%/lib/max/language/pl/report.lang.php +%%WWWDIR%%/lib/max/language/pl/installer.lang.php +%%WWWDIR%%/lib/max/language/pl/settings.lang.php +%%WWWDIR%%/lib/max/language/pl/userlog.lang.php +%%WWWDIR%%/lib/max/language/zh_TW/userlog.lang.php +%%WWWDIR%%/lib/max/language/zh_TW/index.lang.php +%%WWWDIR%%/lib/max/language/zh_TW/maintenance.lang.php +%%WWWDIR%%/lib/max/language/zh_TW/installer.lang.php +%%WWWDIR%%/lib/max/language/zh_TW/settings-help.lang.php +%%WWWDIR%%/lib/max/language/zh_TW/invocation.lang.php +%%WWWDIR%%/lib/max/language/zh_TW/default.lang.php +%%WWWDIR%%/lib/max/language/zh_TW/settings.lang.php +%%WWWDIR%%/lib/max/language/es/userlog.lang.php +%%WWWDIR%%/lib/max/language/es/invocation.lang.php +%%WWWDIR%%/lib/max/language/es/maintenance.lang.php +%%WWWDIR%%/lib/max/language/es/settings.lang.php +%%WWWDIR%%/lib/max/language/es/report.lang.php +%%WWWDIR%%/lib/max/language/es/settings-help.lang.php +%%WWWDIR%%/lib/max/language/es/default.lang.php +%%WWWDIR%%/lib/max/language/es/installer.lang.php +%%WWWDIR%%/lib/max/language/es/index.lang.php +%%WWWDIR%%/lib/max/language/hu/installer.lang.php +%%WWWDIR%%/lib/max/language/hu/settings.lang.php +%%WWWDIR%%/lib/max/language/hu/report.lang.php +%%WWWDIR%%/lib/max/language/hu/maintenance.lang.php +%%WWWDIR%%/lib/max/language/hu/userlog.lang.php +%%WWWDIR%%/lib/max/language/hu/index.lang.php +%%WWWDIR%%/lib/max/language/hu/invocation.lang.php +%%WWWDIR%%/lib/max/language/hu/settings-help.lang.php +%%WWWDIR%%/lib/max/language/hu/default.lang.php +%%WWWDIR%%/lib/max/language/ms/invocation.lang.php +%%WWWDIR%%/lib/max/language/ms/installer.lang.php +%%WWWDIR%%/lib/max/language/ms/userlog.lang.php +%%WWWDIR%%/lib/max/language/ms/index.lang.php +%%WWWDIR%%/lib/max/language/ms/default.lang.php +%%WWWDIR%%/lib/max/language/ms/maintenance.lang.php +%%WWWDIR%%/lib/max/language/ms/settings.lang.php +%%WWWDIR%%/lib/max/language/zh_CN/settings.lang.php +%%WWWDIR%%/lib/max/language/zh_CN/installer.lang.php +%%WWWDIR%%/lib/max/language/zh_CN/settings-help.lang.php +%%WWWDIR%%/lib/max/language/zh_CN/default.lang.php +%%WWWDIR%%/lib/max/language/zh_CN/maintenance.lang.php +%%WWWDIR%%/lib/max/language/zh_CN/invocation.lang.php +%%WWWDIR%%/lib/max/language/zh_CN/userlog.lang.php +%%WWWDIR%%/lib/max/language/zh_CN/report.lang.php +%%WWWDIR%%/lib/max/language/zh_CN/index.lang.php +%%WWWDIR%%/lib/max/language/nb/settings.lang.php +%%WWWDIR%%/lib/max/language/nb/userlog.lang.php +%%WWWDIR%%/lib/max/language/nb/index.lang.php +%%WWWDIR%%/lib/max/language/nb/maintenance.lang.php +%%WWWDIR%%/lib/max/language/nb/default.lang.php +%%WWWDIR%%/lib/max/language/bg/index.lang.php +%%WWWDIR%%/lib/max/language/bg/default.lang.php +%%WWWDIR%%/lib/max/language/bg/maintenance.lang.php +%%WWWDIR%%/lib/max/language/bg/userlog.lang.php +%%WWWDIR%%/lib/max/language/bg/invocation.lang.php +%%WWWDIR%%/lib/max/language/bg/settings.lang.php +%%WWWDIR%%/lib/max/other/html.php +%%WWWDIR%%/lib/max/other/lib-acl.inc.php +%%WWWDIR%%/lib/max/other/lib-userlog.inc.php +%%WWWDIR%%/lib/max/other/stats.php +%%WWWDIR%%/lib/max/other/capping/lib-capping.inc.php +%%WWWDIR%%/lib/max/other/lib-io.inc.php +%%WWWDIR%%/lib/max/other/common.php +%%WWWDIR%%/lib/max/other/lib-geo.inc.php +%%WWWDIR%%/lib/max/SqlBuilder.php +%%WWWDIR%%/lib/max/Dal/Delivery.php +%%WWWDIR%%/lib/max/Dal/Admin/Variables.php +%%WWWDIR%%/lib/max/Dal/Admin/Zones.php +%%WWWDIR%%/lib/max/Dal/Admin/Affiliates.php +%%WWWDIR%%/lib/max/Dal/Admin/Session.php +%%WWWDIR%%/lib/max/Dal/Admin/Data_intermediate_ad.php +%%WWWDIR%%/lib/max/Dal/Admin/Banners.php +%%WWWDIR%%/lib/max/Dal/Admin/Campaigns.php +%%WWWDIR%%/lib/max/Dal/Admin/Channel.php +%%WWWDIR%%/lib/max/Dal/Admin/Acls.php +%%WWWDIR%%/lib/max/Dal/Admin/Clients.php +%%WWWDIR%%/lib/max/Dal/Admin/Agency.php +%%WWWDIR%%/lib/max/Dal/Admin/Trackers.php +%%WWWDIR%%/lib/max/Dal/Common.php +%%WWWDIR%%/lib/max/Dal/Statistics.php +%%WWWDIR%%/lib/max/Dal/Inventory/Trackers.php +%%WWWDIR%%/lib/max/Dal/data/TestOfDeliverymysql.php +%%WWWDIR%%/lib/max/Dal/Entities.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Agency.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Affiliates_extra.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Log_maintenance_priority.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Account_user_assoc.php +%%WWWDIR%%/lib/max/Dal/DataObjects/db_schema.ini +%%WWWDIR%%/lib/max/Dal/DataObjects/Variable_publisher.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Trackers.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Images.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Data_intermediate_ad.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Targetstats.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Data_intermediate_ad_variable_value.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Variables.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Affiliates.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Data_intermediate_ad_connection.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Password_recovery.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Tracker_append.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Application_variable.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Data_summary_zone_impression_history.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Users.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Preferences.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Account_preference_assoc.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Account_user_permission_assoc.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Acls_channel.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Session.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Ad_zone_assoc.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Acls.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Zones.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Channel.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Category.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Campaigns_trackers.php +%%WWWDIR%%/lib/max/Dal/DataObjects/db_schema.links.ini +%%WWWDIR%%/lib/max/Dal/DataObjects/Log_maintenance_forecasting.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Upgrade_action.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Banners.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Placement_zone_assoc.php +%%WWWDIR%%/lib/max/Dal/DataObjects/DB_DataObjectCommon.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Data_summary_ad_hourly.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Audit.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Userlog.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Campaigns.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Clients.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Accounts.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Ad_category_assoc.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Log_maintenance_statistics.php +%%WWWDIR%%/lib/max/Dal/DataObjects/Data_summary_ad_zone_assoc.php +%%WWWDIR%%/lib/max/Util/ArrayUtils.php +%%WWWDIR%%/lib/max/Admin/DB.php +%%WWWDIR%%/lib/max/Admin/Invocation/Publisher.php +%%WWWDIR%%/lib/max/Admin/Languages.php +%%WWWDIR%%/lib/max/Admin/UI/OrganisationScope.php +%%WWWDIR%%/lib/max/Admin/UI/FieldFactory.php +%%WWWDIR%%/lib/max/Admin/UI/Field.php +%%WWWDIR%%/lib/max/Admin/UI/Field/AdvertiserIdField.php +%%WWWDIR%%/lib/max/Admin/UI/Field/DaySpanField.php +%%WWWDIR%%/lib/max/Admin/UI/Field/DropdownField.php +%%WWWDIR%%/lib/max/Admin/UI/Field/PublisherIdField.php +%%WWWDIR%%/lib/max/Admin/UI/Field/TrackerField.php +%%WWWDIR%%/lib/max/Admin/UI/Field/ChannelIdField.php +%%WWWDIR%%/lib/max/Admin/UI/Field/ZoneIdField.php +%%WWWDIR%%/lib/max/Admin/UI/Field/CampaignSelectionField.php +%%WWWDIR%%/lib/max/Admin/UI/Field/ZoneScopeField.php +%%WWWDIR%%/lib/max/Admin/UI/Field/SheetSelectionField.php +%%WWWDIR%%/lib/max/Admin/UI/Field/OrganisationSelectionField.php +%%WWWDIR%%/lib/max/Admin/UI/Field/TextField.php +%%WWWDIR%%/lib/max/Admin/Inventory/themes/TrackerAppend.html +%%WWWDIR%%/lib/max/Admin/Inventory/TrackerAppend.php +%%WWWDIR%%/lib/max/Admin/Geotargeting.php +%%WWWDIR%%/lib/max/Admin/Invocation.php +%%WWWDIR%%/lib/max/Admin/Cache.php +%%WWWDIR%%/lib/max/resources/emailBugReport.php +%%WWWDIR%%/lib/max/resources/res-useragent.inc.php +%%WWWDIR%%/lib/max/resources/res-iab.inc.php +%%WWWDIR%%/lib/max/resources/res-usstates.inc.php +%%WWWDIR%%/lib/max/resources/res-iso639.inc.php +%%WWWDIR%%/lib/max/resources/res-iso3166.inc.php +%%WWWDIR%%/lib/max/resources/res-continent.inc.php +%%WWWDIR%%/lib/max/DateRange.php +%%WWWDIR%%/lib/max/Delivery/templates/ag-uncompressed.js +%%WWWDIR%%/lib/max/Delivery/templates/ag.js +%%WWWDIR%%/lib/max/Delivery/limitations.delivery.php +%%WWWDIR%%/lib/max/Delivery/image.php +%%WWWDIR%%/lib/max/Delivery/limitations.php +%%WWWDIR%%/lib/max/Delivery/XML-RPC.php +%%WWWDIR%%/lib/max/Delivery/base64.php +%%WWWDIR%%/lib/max/Delivery/javascript.php +%%WWWDIR%%/lib/max/Delivery/adSelect.php +%%WWWDIR%%/lib/max/Delivery/cookie.php +%%WWWDIR%%/lib/max/Delivery/adRender.php +%%WWWDIR%%/lib/max/Delivery/tracker.php +%%WWWDIR%%/lib/max/Delivery/log.php +%%WWWDIR%%/lib/max/Delivery/remotehost.php +%%WWWDIR%%/lib/max/Delivery/querystring.php +%%WWWDIR%%/lib/max/Delivery/google.php +%%WWWDIR%%/lib/max/Delivery/cache.php +%%WWWDIR%%/lib/max/Delivery/flash.php +%%WWWDIR%%/lib/max/Delivery/common.php +%%WWWDIR%%/lib/max/Plugin.php +%%WWWDIR%%/lib/max/Plugin/Common.php +%%WWWDIR%%/lib/max/Plugin/Translation.php +%%WWWDIR%%/lib/max/Admin_DA.php +%%WWWDIR%%/lib/max/FileScanner.php +%%WWWDIR%%/lib/max/deliverycache/cache-file.inc.php +%%WWWDIR%%/lib/templates/admin/advertiser-access.html +%%WWWDIR%%/lib/templates/admin/agency-user.html +%%WWWDIR%%/lib/templates/admin/advertiser-index.html +%%WWWDIR%%/lib/templates/admin/adsense-accounts.html +%%WWWDIR%%/lib/templates/admin/ajax/find-other-networks.html +%%WWWDIR%%/lib/templates/admin/agency-access.html +%%WWWDIR%%/lib/templates/admin/advertiser-user.html +%%WWWDIR%%/lib/templates/admin/admin-user.html +%%WWWDIR%%/lib/templates/admin/advertiser-trackers.html +%%WWWDIR%%/lib/templates/admin/userlog-audit-detailed.html +%%WWWDIR%%/lib/templates/admin/tracker-edit.html +%%WWWDIR%%/lib/templates/admin/banner-edit.html +%%WWWDIR%%/lib/templates/admin/website-index.html +%%WWWDIR%%/lib/templates/admin/adsense-create.html +%%WWWDIR%%/lib/templates/admin/plugin-group-view.html +%%WWWDIR%%/lib/templates/admin/layout/sidebar.html +%%WWWDIR%%/lib/templates/admin/layout/main.html +%%WWWDIR%%/lib/templates/admin/layout/content-footer.html +%%WWWDIR%%/lib/templates/admin/layout/branding.html +%%WWWDIR%%/lib/templates/admin/layout/section-navigation.html +%%WWWDIR%%/lib/templates/admin/layout/navigation.html +%%WWWDIR%%/lib/templates/admin/layout/content-header.html +%%WWWDIR%%/lib/templates/admin/layout/styles.html +%%WWWDIR%%/lib/templates/admin/layout/links-container.html +%%WWWDIR%%/lib/templates/admin/layout/scripts.html +%%WWWDIR%%/lib/templates/admin/layout/breadcrumbs-title.html +%%WWWDIR%%/lib/templates/admin/layout/search.html +%%WWWDIR%%/lib/templates/admin/layout/messages.html +%%WWWDIR%%/lib/templates/admin/adsense-start.html +%%WWWDIR%%/lib/templates/admin/advertiser-index-list.html +%%WWWDIR%%/lib/templates/admin/plugin-view.html +%%WWWDIR%%/lib/templates/admin/dashboard/feed.html +%%WWWDIR%%/lib/templates/admin/dashboard/main.html +%%WWWDIR%%/lib/templates/admin/dashboard/iframe.html +%%WWWDIR%%/lib/templates/admin/dashboard/error.html +%%WWWDIR%%/lib/templates/admin/dashboard/campaign-overview.html +%%WWWDIR%%/lib/templates/admin/dashboard/reload.html +%%WWWDIR%%/lib/templates/admin/dashboard/disabled.html +%%WWWDIR%%/lib/templates/admin/dashboard/login.html +%%WWWDIR%%/lib/templates/admin/dashboard/graph.html +%%WWWDIR%%/lib/templates/admin/dashboard/audit.html +%%WWWDIR%%/lib/templates/admin/channel-edit.html +%%WWWDIR%%/lib/templates/admin/campaign-zone-zones.html +%%WWWDIR%%/lib/templates/admin/zone-advanced.html +%%WWWDIR%%/lib/templates/admin/terms-dialog.html +%%WWWDIR%%/lib/templates/admin/option.html +%%WWWDIR%%/lib/templates/admin/affiliate-user.html +%%WWWDIR%%/lib/templates/admin/zone-index.html +%%WWWDIR%%/lib/templates/admin/user-link.html +%%WWWDIR%%/lib/templates/admin/user-access.html +%%WWWDIR%%/lib/templates/admin/plugin-index.html +%%WWWDIR%%/lib/templates/admin/options/padlock.html +%%WWWDIR%%/lib/templates/admin/options/checkbox.html +%%WWWDIR%%/lib/templates/admin/options/select.html +%%WWWDIR%%/lib/templates/admin/options/plaintext.html +%%WWWDIR%%/lib/templates/admin/options/url.html +%%WWWDIR%%/lib/templates/admin/options/password.html +%%WWWDIR%%/lib/templates/admin/options/hiddencheckbox.html +%%WWWDIR%%/lib/templates/admin/options/gettype.html +%%WWWDIR%%/lib/templates/admin/options/startsection.html +%%WWWDIR%%/lib/templates/admin/options/textarea.html +%%WWWDIR%%/lib/templates/admin/options/locked.html +%%WWWDIR%%/lib/templates/admin/options/statscolumns.html +%%WWWDIR%%/lib/templates/admin/options/break.html +%%WWWDIR%%/lib/templates/admin/options/endsection.html +%%WWWDIR%%/lib/templates/admin/options/text.html +%%WWWDIR%%/lib/templates/admin/options/checkdependancies.html +%%WWWDIR%%/lib/templates/admin/plugin-group-switcher.html +%%WWWDIR%%/lib/templates/admin/campaign-zone-panel-filters.html +%%WWWDIR%%/lib/templates/admin/adsense-terms.html +%%WWWDIR%%/lib/templates/admin/account-switch-search.html +%%WWWDIR%%/lib/templates/admin/adsense-link.html +%%WWWDIR%%/lib/templates/admin/zone-index-list.html +%%WWWDIR%%/lib/templates/admin/user-link-start.html +%%WWWDIR%%/lib/templates/admin/affiliate-edit.html +%%WWWDIR%%/lib/templates/admin/admin-access.html +%%WWWDIR%%/lib/templates/admin/agency-user-start.html +%%WWWDIR%%/lib/templates/admin/advertiser-user-start.html +%%WWWDIR%%/lib/templates/admin/affiliate-user-start.html +%%WWWDIR%%/lib/templates/admin/campaign-index-list.html +%%WWWDIR%%/lib/templates/admin/userlog-index.html +%%WWWDIR%%/lib/templates/admin/plugin-report.html +%%WWWDIR%%/lib/templates/admin/admin-user-start.html +%%WWWDIR%%/lib/templates/admin/channel-index-list.html +%%WWWDIR%%/lib/templates/admin/plugin-group-settings.html +%%WWWDIR%%/lib/templates/admin/affiliate-access.html +%%WWWDIR%%/lib/templates/admin/banner-index-list.html +%%WWWDIR%%/lib/templates/admin/banner-index.html +%%WWWDIR%%/lib/templates/admin/passthrough.html +%%WWWDIR%%/lib/templates/admin/advertiser-edit.html +%%WWWDIR%%/lib/templates/admin/adsense-edit.html +%%WWWDIR%%/lib/templates/admin/campaign-index.html +%%WWWDIR%%/lib/templates/admin/login.html +%%WWWDIR%%/lib/templates/admin/agency-edit.html +%%WWWDIR%%/lib/templates/admin/captcha-dialog.html +%%WWWDIR%%/lib/templates/admin/edit-table/main.html +%%WWWDIR%%/lib/templates/admin/edit-table/custom-country-language.html +%%WWWDIR%%/lib/templates/admin/edit-table/custom-link.html +%%WWWDIR%%/lib/templates/admin/edit-table/custom-user-availability-check.html +%%WWWDIR%%/lib/templates/admin/edit-table/hidden.html +%%WWWDIR%%/lib/templates/admin/edit-table/create.html +%%WWWDIR%%/lib/templates/admin/edit-table/custom-adnetworks.html +%%WWWDIR%%/lib/templates/admin/zone-edit.html +%%WWWDIR%%/lib/templates/admin/website-index-list.html +%%WWWDIR%%/lib/templates/admin/channel-index.html +%%WWWDIR%%/lib/templates/admin/plugin-group-index-list.html +%%WWWDIR%%/lib/templates/admin/campaign-zone.html +%%WWWDIR%%/lib/templates/admin/plugin-uninstall.html +%%WWWDIR%%/lib/templates/admin/advertiser-trackers-list.html +%%WWWDIR%%/lib/templates/admin/form/custom-country-language.html +%%WWWDIR%%/lib/templates/admin/form/custom-advertiser-signup-dialog.html +%%WWWDIR%%/lib/templates/admin/form/element-raw.html +%%WWWDIR%%/lib/templates/admin/form/custom-pricing-campaign-date-limit-set-note.html +%%WWWDIR%%/lib/templates/admin/form/form.html +%%WWWDIR%%/lib/templates/admin/form/custom-date-campaign-date-limit-set-note.html +%%WWWDIR%%/lib/templates/admin/form/custom-campaign-type-note.html +%%WWWDIR%%/lib/templates/admin/form/custom-campaign-remaining-click.html +%%WWWDIR%%/lib/templates/admin/form/custom-banner-iab-note.html +%%WWWDIR%%/lib/templates/admin/form/custom-banner-upload.html +%%WWWDIR%%/lib/templates/admin/form/custom-campaign-date-limit-both-set-note.html +%%WWWDIR%%/lib/templates/admin/form/custom-banner-backup-note.html +%%WWWDIR%%/lib/templates/admin/form/elements.html +%%WWWDIR%%/lib/templates/admin/form/custom-campaign-remaining-conv.html +%%WWWDIR%%/lib/templates/admin/form/custom-remnant-ecpm-note.html +%%WWWDIR%%/lib/templates/admin/form/custom-campaign-remaining-impr.html +%%WWWDIR%%/lib/templates/admin/form/custom-capping-callout.html +%%WWWDIR%%/lib/templates/admin/form/custom-minimum-impressions-note.html +%%WWWDIR%%/lib/templates/admin/form/custom-campaign-inactive-note.html +%%WWWDIR%%/lib/templates/admin/form/custom-contract-ecpm-note.html +%%WWWDIR%%/lib/templates/admin/form/general-errors.html +%%WWWDIR%%/lib/templates/admin/plugin-group-preferences.html +%%WWWDIR%%/lib/templates/admin/confirmation-dialog.html +%%WWWDIR%%/lib/templates/admin/admin-search.html +%%WWWDIR%%/lib/templates/admin/campaign-edit.html +%%WWWDIR%%/lib/templates/admin/plugin-export.html +%%WWWDIR%%/lib/minify/Solar/Dir.php +%%WWWDIR%%/lib/minify/JSMin.php +%%WWWDIR%%/lib/minify/HTTP/Encoder.php +%%WWWDIR%%/lib/minify/HTTP/ConditionalGet.php +%%WWWDIR%%/lib/minify/Minify/CSS/UriRewriter.php +%%WWWDIR%%/lib/minify/Minify/CSS.php +%%WWWDIR%%/lib/minify/Minify/ImportProcessor.php +%%WWWDIR%%/lib/minify/Minify/Packer.php +%%WWWDIR%%/lib/minify/Minify/Javascript.php +%%WWWDIR%%/lib/minify/Minify/Lines.php +%%WWWDIR%%/lib/minify/Minify/CommentPreserver.php +%%WWWDIR%%/lib/minify/Minify/Source.php +%%WWWDIR%%/lib/minify/Minify/Controller/Page.php +%%WWWDIR%%/lib/minify/Minify/Controller/Groups.php +%%WWWDIR%%/lib/minify/Minify/Controller/Version1.php +%%WWWDIR%%/lib/minify/Minify/Controller/Files.php +%%WWWDIR%%/lib/minify/Minify/Controller/MinApp.php +%%WWWDIR%%/lib/minify/Minify/Controller/Base.php +%%WWWDIR%%/lib/minify/Minify/Cache/Memcache.php +%%WWWDIR%%/lib/minify/Minify/Cache/File.php +%%WWWDIR%%/lib/minify/Minify/YUICompressor.php +%%WWWDIR%%/lib/minify/Minify/HTML.php +%%WWWDIR%%/lib/minify/Minify/Build.php +%%WWWDIR%%/lib/minify/Minify.php +%%WWWDIR%%/lib/junit/junit.jar +%%WWWDIR%%/lib/xmlrpc/php/openx-api-v2-xmlrpc.inc.php +%%WWWDIR%%/lib/xmlrpc/php/BannerInfo.php +%%WWWDIR%%/lib/xmlrpc/php/AdvertiserInfo.php +%%WWWDIR%%/lib/xmlrpc/php/CampaignInfo.php +%%WWWDIR%%/lib/xmlrpc/php/openads-xmlrpc.inc.php +%%WWWDIR%%/lib/xmlrpc/php/TargetingInfo.php +%%WWWDIR%%/lib/xmlrpc/php/AgencyInfo.php +%%WWWDIR%%/lib/xmlrpc/php/ChannelInfo.php +%%WWWDIR%%/lib/xmlrpc/php/ZoneInfo.php +%%WWWDIR%%/lib/xmlrpc/php/UserInfo.php +%%WWWDIR%%/lib/xmlrpc/php/XmlRpcUtils.php +%%WWWDIR%%/lib/xmlrpc/php/PublisherInfo.php +%%WWWDIR%%/lib/xmlrpc/php/Info.php +%%WWWDIR%%/lib/xmlrpc/php/openads-api-xmlrpc.inc.php +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/openads-api-xmlrpc.jar +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/AdvertiserService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/ZoneService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/LogonService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/CampaignService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/AgencyService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Advertiser.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Zone.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Agency.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/PublisherService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/AbstractService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Campaign.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Banner.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/BannerService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/Publisher.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy/OpenAdsApiXmlRpcProxy.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/LICENSE +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/Advertiser.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/LogonService.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/AgencyService.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/Campaign.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/PublisherService.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/Publisher.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/Zone.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/Agency.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/CampaignService.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/OpenAdsApiXmlRpcProxy.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/AdvertiserService.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/AbstractService.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/BannerService.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/ZoneService.java +%%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy/Banner.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/LICENSE +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Advertiser.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/ZoneService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/AbstractService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/BannerService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Campaign.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/OpenAdsApiXmlRpcProxy.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Banner.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/AdvertiserService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/LogonService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/CampaignService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Publisher.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/PublisherService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Agency.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/Zone.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy/AgencyService.java +%%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/openads-api-xmlrpc.jar +%%WWWDIR%%/lib/java-xmlrpc/ws-commons-util-1.0.2.jar +%%WWWDIR%%/lib/java-xmlrpc/commons-logging-1.1.jar +%%WWWDIR%%/lib/java-xmlrpc/xmlrpc-client-3.1.jar +%%WWWDIR%%/lib/java-xmlrpc/xmlrpc-common-3.1.jar +%%WWWDIR%%/lib/java-xmlrpc/commons-codec-1.3.jar +%%WWWDIR%%/lib/java-xmlrpc/commons-httpclient-3.0.1.jar +%%WWWDIR%%/lib/pear/HTTP/Request.php +%%WWWDIR%%/lib/pear/XML/Tree/Node.php +%%WWWDIR%%/lib/pear/XML/RPC/Server.php +%%WWWDIR%%/lib/pear/XML/RPC/Dump.php +%%WWWDIR%%/lib/pear/XML/Parser.php +%%WWWDIR%%/lib/pear/XML/RPC.php +%%WWWDIR%%/lib/pear/XML/RSS.php +%%WWWDIR%%/lib/pear/XML/Parser/Simple.php +%%WWWDIR%%/lib/pear/XML/Tree.php +%%WWWDIR%%/lib/pear/Structures/Graph/Node.php +%%WWWDIR%%/lib/pear/Structures/Graph/Manipulator/AcyclicTest.php +%%WWWDIR%%/lib/pear/Structures/Graph/Manipulator/TopologicalSorter.php +%%WWWDIR%%/lib/pear/Structures/Graph.php +%%WWWDIR%%/lib/pear/MDB2.php +%%WWWDIR%%/lib/pear/PEAR/REST/10.php +%%WWWDIR%%/lib/pear/PEAR/REST/11.php +%%WWWDIR%%/lib/pear/PEAR/Packager.php +%%WWWDIR%%/lib/pear/PEAR/Autoloader.php +%%WWWDIR%%/lib/pear/PEAR/Validator/PECL.php +%%WWWDIR%%/lib/pear/PEAR/PackageFile/v1.php +%%WWWDIR%%/lib/pear/PEAR/PackageFile/Generator/v1.php +%%WWWDIR%%/lib/pear/PEAR/PackageFile/Generator/v2.php +%%WWWDIR%%/lib/pear/PEAR/PackageFile/v2.php +%%WWWDIR%%/lib/pear/PEAR/PackageFile/v2/Validator.php +%%WWWDIR%%/lib/pear/PEAR/PackageFile/v2/rw.php +%%WWWDIR%%/lib/pear/PEAR/PackageFile/Parser/v1.php +%%WWWDIR%%/lib/pear/PEAR/PackageFile/Parser/v2.php +%%WWWDIR%%/lib/pear/PEAR/ChannelFile/Parser.php +%%WWWDIR%%/lib/pear/PEAR/Frontend.php +%%WWWDIR%%/lib/pear/PEAR/Registry.php +%%WWWDIR%%/lib/pear/PEAR/Remote.php +%%WWWDIR%%/lib/pear/PEAR/Downloader/Package.php +%%WWWDIR%%/lib/pear/PEAR/Installer/Role.php +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Src.xml +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Src.php +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Ext.xml +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Ext.php +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Script.php +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Test.php +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Test.xml +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Script.xml +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Doc.php +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Doc.xml +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Common.php +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Php.xml +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Php.php +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Data.php +%%WWWDIR%%/lib/pear/PEAR/Installer/Role/Data.xml +%%WWWDIR%%/lib/pear/PEAR/Dependency2.php +%%WWWDIR%%/lib/pear/PEAR/ChannelFile.php +%%WWWDIR%%/lib/pear/PEAR/Command.php +%%WWWDIR%%/lib/pear/PEAR/Command/Remote.php +%%WWWDIR%%/lib/pear/PEAR/Command/Remote.xml +%%WWWDIR%%/lib/pear/PEAR/Command/Mirror.php +%%WWWDIR%%/lib/pear/PEAR/Command/Mirror.xml +%%WWWDIR%%/lib/pear/PEAR/Command/Config.php +%%WWWDIR%%/lib/pear/PEAR/Command/Config.xml +%%WWWDIR%%/lib/pear/PEAR/Command/Install.php +%%WWWDIR%%/lib/pear/PEAR/Command/Install.xml +%%WWWDIR%%/lib/pear/PEAR/Command/Registry.xml +%%WWWDIR%%/lib/pear/PEAR/Command/Registry.php +%%WWWDIR%%/lib/pear/PEAR/Command/Pickle.php +%%WWWDIR%%/lib/pear/PEAR/Command/Build.php +%%WWWDIR%%/lib/pear/PEAR/Command/Build.xml +%%WWWDIR%%/lib/pear/PEAR/Command/Pickle.xml +%%WWWDIR%%/lib/pear/PEAR/Command/Channels.xml +%%WWWDIR%%/lib/pear/PEAR/Command/Channels.php +%%WWWDIR%%/lib/pear/PEAR/Command/Auth.php +%%WWWDIR%%/lib/pear/PEAR/Command/Test.xml +%%WWWDIR%%/lib/pear/PEAR/Command/Test.php +%%WWWDIR%%/lib/pear/PEAR/Command/Auth.xml +%%WWWDIR%%/lib/pear/PEAR/Command/Package.php +%%WWWDIR%%/lib/pear/PEAR/Command/Common.php +%%WWWDIR%%/lib/pear/PEAR/Command/Package.xml +%%WWWDIR%%/lib/pear/PEAR/Config.php +%%WWWDIR%%/lib/pear/PEAR/Frontend/CLI.php +%%WWWDIR%%/lib/pear/PEAR/Task/Common.php +%%WWWDIR%%/lib/pear/PEAR/Task/Windowseol/rw.php +%%WWWDIR%%/lib/pear/PEAR/Task/Unixeol.php +%%WWWDIR%%/lib/pear/PEAR/Task/Replace/rw.php +%%WWWDIR%%/lib/pear/PEAR/Task/Postinstallscript/rw.php +%%WWWDIR%%/lib/pear/PEAR/Task/Replace.php +%%WWWDIR%%/lib/pear/PEAR/Task/Postinstallscript.php +%%WWWDIR%%/lib/pear/PEAR/Task/Windowseol.php +%%WWWDIR%%/lib/pear/PEAR/Task/Unixeol/rw.php +%%WWWDIR%%/lib/pear/PEAR/ErrorStack.php +%%WWWDIR%%/lib/pear/PEAR/DependencyDB.php +%%WWWDIR%%/lib/pear/PEAR/RunTest.php +%%WWWDIR%%/lib/pear/PEAR/Installer.php +%%WWWDIR%%/lib/pear/PEAR/Builder.php +%%WWWDIR%%/lib/pear/PEAR/Common.php +%%WWWDIR%%/lib/pear/PEAR/REST.php +%%WWWDIR%%/lib/pear/PEAR/Validate.php +%%WWWDIR%%/lib/pear/PEAR/XMLParser.php +%%WWWDIR%%/lib/pear/PEAR/PackageFile.php +%%WWWDIR%%/lib/pear/PEAR/Dependency.php +%%WWWDIR%%/lib/pear/PEAR/Downloader.php +%%WWWDIR%%/lib/pear/PEAR/Exception.php +%%WWWDIR%%/lib/pear/Text/Password.php +%%WWWDIR%%/lib/pear/OS/Guess.php +%%WWWDIR%%/lib/pear/Config.php +%%WWWDIR%%/lib/pear/peclcmd.php +%%WWWDIR%%/lib/pear/.depdblock +%%WWWDIR%%/lib/pear/Pager.php +%%WWWDIR%%/lib/pear/Numbers/Roman.php +%%WWWDIR%%/lib/pear/Numbers/Words.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.en_GB.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.it_IT.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.en_100.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.lt.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.sv.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.en_US.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.es.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.bg.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.fr.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.hu_HU.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.ee.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.fr_BE.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.pt_BR.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.pl.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.cs.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.he.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.ru.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.es_AR.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.dk.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.id.php +%%WWWDIR%%/lib/pear/Numbers/Words/lang.de.php +%%WWWDIR%%/lib/pear/DB/ifx.php +%%WWWDIR%%/lib/pear/DB/storage.php +%%WWWDIR%%/lib/pear/DB/fbsql.php +%%WWWDIR%%/lib/pear/DB/oci8.php +%%WWWDIR%%/lib/pear/DB/common.php +%%WWWDIR%%/lib/pear/DB/DataObject.php +%%WWWDIR%%/lib/pear/DB/QueryTool/Result/Object.php +%%WWWDIR%%/lib/pear/DB/QueryTool/Result.php +%%WWWDIR%%/lib/pear/DB/QueryTool/Query.php +%%WWWDIR%%/lib/pear/DB/QueryTool/EasyJoin.php +%%WWWDIR%%/lib/pear/DB/pgsql.php +%%WWWDIR%%/lib/pear/DB/odbc.php +%%WWWDIR%%/lib/pear/DB/sybase.php +%%WWWDIR%%/lib/pear/DB/mysql.php +%%WWWDIR%%/lib/pear/DB/sqlite.php +%%WWWDIR%%/lib/pear/DB/msql.php +%%WWWDIR%%/lib/pear/DB/ibase.php +%%WWWDIR%%/lib/pear/DB/mysqli.php +%%WWWDIR%%/lib/pear/DB/mssql.php +%%WWWDIR%%/lib/pear/DB/dbase.php +%%WWWDIR%%/lib/pear/DB/DataObject/createTables.php +%%WWWDIR%%/lib/pear/DB/DataObject/Generator.php +%%WWWDIR%%/lib/pear/DB/DataObject/Error.php +%%WWWDIR%%/lib/pear/DB/DataObject/Cast.php +%%WWWDIR%%/lib/pear/DB/mysql_SGL.php +%%WWWDIR%%/lib/pear/DB/QueryTool.php +%%WWWDIR%%/lib/pear/Services/ExchangeRates.php +%%WWWDIR%%/lib/pear/Services/ExchangeRates/Rates_NBP.php +%%WWWDIR%%/lib/pear/Services/ExchangeRates/Common.php +%%WWWDIR%%/lib/pear/Services/ExchangeRates/Rates_NBI.php +%%WWWDIR%%/lib/pear/Services/ExchangeRates/Rates_ECB.php +%%WWWDIR%%/lib/pear/Services/ExchangeRates/Currencies_UN.php +%%WWWDIR%%/lib/pear/Services/ExchangeRates/Countries_UN.php +%%WWWDIR%%/lib/pear/System.php +%%WWWDIR%%/lib/pear/Net/URL.php +%%WWWDIR%%/lib/pear/Net/Socket.php +%%WWWDIR%%/lib/pear/Net/IPv4.php +%%WWWDIR%%/lib/pear/OLE/OLE.php +%%WWWDIR%%/lib/pear/OLE/PPS.php +%%WWWDIR%%/lib/pear/OLE/PPS/Root.php +%%WWWDIR%%/lib/pear/OLE/PPS/File.php +%%WWWDIR%%/lib/pear/Log.php +%%WWWDIR%%/lib/pear/Log/daemon.php +%%WWWDIR%%/lib/pear/Log/mail.php +%%WWWDIR%%/lib/pear/Log/win.php +%%WWWDIR%%/lib/pear/Log/display.php +%%WWWDIR%%/lib/pear/Log/mcal.php +%%WWWDIR%%/lib/pear/Log/sql.php +%%WWWDIR%%/lib/pear/Log/console.php +%%WWWDIR%%/lib/pear/Log/null.php +%%WWWDIR%%/lib/pear/Log/file.php +%%WWWDIR%%/lib/pear/Log/firebug.php +%%WWWDIR%%/lib/pear/Log/syslog.php +%%WWWDIR%%/lib/pear/Log/mdb2.php +%%WWWDIR%%/lib/pear/Log/composite.php +%%WWWDIR%%/lib/pear/Log/observer.php +%%WWWDIR%%/lib/pear/Log/error_log.php +%%WWWDIR%%/lib/pear/Log/sqlite.php +%%WWWDIR%%/lib/pear/OLE.php +%%WWWDIR%%/lib/pear/HTML/QuickForm.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Regex.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Range.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Callback.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Compare.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Email.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule/Required.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/link.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/button.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/file.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/input.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/xbutton.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/submit.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/hierselect.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/static.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/advcheckbox.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/hidden.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/html.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/text.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/image.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/RuleRegistry.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/textarea.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/element.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/autocomplete.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/hiddenselect.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/password.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/ObjectFlexy.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/Array.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/ArraySmarty.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/ITDynamic.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/Object.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/ITStatic.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/QuickHtml.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer/Default.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/date.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/reset.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/radio.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/select.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/header.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/group.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/checkbox.php +%%WWWDIR%%/lib/pear/HTML/QuickForm/Rule.php +%%WWWDIR%%/lib/pear/HTML/docs/example.php +%%WWWDIR%%/lib/pear/HTML/docs/map_fs.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy.php +%%WWWDIR%%/lib/pear/HTML/Template/IT_Error.php +%%WWWDIR%%/lib/pear/HTML/Template/IT.php +%%WWWDIR%%/lib/pear/HTML/Template/ITX.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Element/Xul.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Test.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Tree.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Processing.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Else.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Tag.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Var.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/If.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Text.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Foreach.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/Method.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/EndTag.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token/End.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/example.ini +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Flexy/Tag.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Flexy/Flexy.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Flexy.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/SmartyConvertor.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Standard.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Standard/Flexy.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Standard/Tag.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/Mail.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/SimpleTags.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/Xml.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/BodyOnly.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/Math.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/RtfSimpleTags.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex/Php.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Translator.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Factory.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Tokenizer.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Plugin.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/compileAll.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Element.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/SmartyAPI.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Plugin/Savant.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler.php +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/templates/translator.html +%%WWWDIR%%/lib/pear/HTML/Template/Flexy/Assign.php +%%WWWDIR%%/lib/pear/HTML/TreeMenu.php +%%WWWDIR%%/lib/pear/HTML/Common.php +%%WWWDIR%%/lib/pear/MDB2/Schema/WriterChangeset.php +%%WWWDIR%%/lib/pear/MDB2/Schema/ParserDictionary.php +%%WWWDIR%%/lib/pear/MDB2/Schema/ParserChangeset.php +%%WWWDIR%%/lib/pear/MDB2/Schema/Writer.php +%%WWWDIR%%/lib/pear/MDB2/Schema/Validate.php +%%WWWDIR%%/lib/pear/MDB2/Schema/Reserved/oci8.php +%%WWWDIR%%/lib/pear/MDB2/Schema/Reserved/pgsql.php +%%WWWDIR%%/lib/pear/MDB2/Schema/Reserved/mysql.php +%%WWWDIR%%/lib/pear/MDB2/Schema/Reserved/ibase.php +%%WWWDIR%%/lib/pear/MDB2/Schema/Reserved/mssql.php +%%WWWDIR%%/lib/pear/MDB2/Schema/Parser.php +%%WWWDIR%%/lib/pear/MDB2/Iterator.php +%%WWWDIR%%/lib/pear/MDB2/Date.php +%%WWWDIR%%/lib/pear/MDB2/LOB.php +%%WWWDIR%%/lib/pear/MDB2/Extended.php +%%WWWDIR%%/lib/pear/MDB2/Schema.php +%%WWWDIR%%/lib/pear/MDB2/Driver/mysqli.php +%%WWWDIR%%/lib/pear/MDB2/Driver/pgsql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Native/mysql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Native/Common.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Native/pgsql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Native/mysqli.php +%%WWWDIR%%/lib/pear/MDB2/Driver/mysql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Reverse/Common.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Reverse/mysql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Reverse/mysqli.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Reverse/pgsql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Datatype/Common.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Datatype/mysql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Datatype/mysqli.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Datatype/pgsql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Manager/mysql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Manager/pgsql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Manager/Common.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Manager/mysqli.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Function/pgsql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Function/mysql.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Function/Common.php +%%WWWDIR%%/lib/pear/MDB2/Driver/Function/mysqli.php +%%WWWDIR%%/lib/pear/Config/Container.php +%%WWWDIR%%/lib/pear/Config/Container/XML.php +%%WWWDIR%%/lib/pear/Config/Container/IniCommented.php +%%WWWDIR%%/lib/pear/Config/Container/Apache.php +%%WWWDIR%%/lib/pear/Config/Container/IniFile.php +%%WWWDIR%%/lib/pear/Config/Container/PHPArray.php +%%WWWDIR%%/lib/pear/Config/Container/GenericConf.php +%%WWWDIR%%/lib/pear/Pager/Pager.php +%%WWWDIR%%/lib/pear/Pager/Common.php +%%WWWDIR%%/lib/pear/Pager/HtmlWidgets.php +%%WWWDIR%%/lib/pear/Pager/Sliding.php +%%WWWDIR%%/lib/pear/Pager/Jumping.php +%%WWWDIR%%/lib/pear/Date/Calc.php +%%WWWDIR%%/lib/pear/Date/TimeZone.php +%%WWWDIR%%/lib/pear/Date/Human.php +%%WWWDIR%%/lib/pear/Date/Span.php +%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer.php +%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/Workbook.php +%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/BIFFwriter.php +%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/Parser.php +%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/Worksheet.php +%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/Format.php +%%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer/Validator.php +%%WWWDIR%%/lib/pear/Archive/Tar.php +%%WWWDIR%%/lib/pear/pearcmd.php +%%WWWDIR%%/lib/pear/Cache/Lite.php +%%WWWDIR%%/lib/pear/Cache/Lite/Function.php +%%WWWDIR%%/lib/pear/Cache/Lite/File.php +%%WWWDIR%%/lib/pear/Cache/Lite/Output.php +%%WWWDIR%%/lib/pear/Date.php +%%WWWDIR%%/lib/pear/DB.php +%%WWWDIR%%/lib/pear/PEAR.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker.php +%%WWWDIR%%/lib/pear/Image/Graph/Element.php +%%WWWDIR%%/lib/pear/Image/Graph/Dataset/Sequential.php +%%WWWDIR%%/lib/pear/Image/Graph/Dataset/Trivial.php +%%WWWDIR%%/lib/pear/Image/Graph/Dataset/VectorFunction.php +%%WWWDIR%%/lib/pear/Image/Graph/Dataset/Function.php +%%WWWDIR%%/lib/pear/Image/Graph/Dataset/Random.php +%%WWWDIR%%/lib/pear/Image/Graph/Constants.php +%%WWWDIR%%/lib/pear/Image/Graph/Fill/Image.php +%%WWWDIR%%/lib/pear/Image/Graph/Fill/Gradient.php +%%WWWDIR%%/lib/pear/Image/Graph/Fill/Array.php +%%WWWDIR%%/lib/pear/Image/Graph/Simple.php +%%WWWDIR%%/lib/pear/Image/Graph/Common.php +%%WWWDIR%%/lib/pear/Image/Graph/Font.php +%%WWWDIR%%/lib/pear/Image/Graph/Line/Solid.php +%%WWWDIR%%/lib/pear/Image/Graph/Line/Dashed.php +%%WWWDIR%%/lib/pear/Image/Graph/Line/Formatted.php +%%WWWDIR%%/lib/pear/Image/Graph/Line/Dotted.php +%%WWWDIR%%/lib/pear/Image/Graph/Line/Array.php +%%WWWDIR%%/lib/pear/Image/Graph/Plotarea.php +%%WWWDIR%%/lib/pear/Image/Graph/Figure/Circle.php +%%WWWDIR%%/lib/pear/Image/Graph/Figure/Polygon.php +%%WWWDIR%%/lib/pear/Image/Graph/Figure/Rectangle.php +%%WWWDIR%%/lib/pear/Image/Graph/Figure/Ellipse.php +%%WWWDIR%%/lib/pear/Image/Graph/Tool.php +%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor.php +%%WWWDIR%%/lib/pear/Image/Graph/Images/Maps/README +%%WWWDIR%%/lib/pear/Image/Graph/Images/Icons/pinpointr.png +%%WWWDIR%%/lib/pear/Image/Graph/Images/Icons/pinpoint.png +%%WWWDIR%%/lib/pear/Image/Graph/Layout/Horizontal.php +%%WWWDIR%%/lib/pear/Image/Graph/Layout/Vertical.php +%%WWWDIR%%/lib/pear/Image/Graph/Layout/Matrix.php +%%WWWDIR%%/lib/pear/Image/Graph/DataSelector/NoZeros.php +%%WWWDIR%%/lib/pear/Image/Graph/DataSelector/Values.php +%%WWWDIR%%/lib/pear/Image/Graph/DataSelector/EveryNthPoint.php +%%WWWDIR%%/lib/pear/Image/Graph/Title.php +%%WWWDIR%%/lib/pear/Image/Graph/Grid.php +%%WWWDIR%%/lib/pear/Image/Graph/Legend.php +%%WWWDIR%%/lib/pear/Image/Graph/Axis.php +%%WWWDIR%%/lib/pear/Image/Graph/Axis/Category.php +%%WWWDIR%%/lib/pear/Image/Graph/Axis/Marker/Area.php +%%WWWDIR%%/lib/pear/Image/Graph/Axis/Marker/Line.php +%%WWWDIR%%/lib/pear/Image/Graph/Axis/Logarithmic.php +%%WWWDIR%%/lib/pear/Image/Graph/Axis/Radar.php +%%WWWDIR%%/lib/pear/Image/Graph/Grid/Lines.php +%%WWWDIR%%/lib/pear/Image/Graph/Grid/Polar.php +%%WWWDIR%%/lib/pear/Image/Graph/Grid/Bars.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Radar.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Dot.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/CandleStick.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Pie.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Band.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Fit/Line.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Odo.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Line.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Bar.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Area.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Step.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/BoxWhisker.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Impulse.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Smoothed/Radar.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Smoothed/Bezier.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Smoothed/Line.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot/Smoothed/Area.php +%%WWWDIR%%/lib/pear/Image/Graph/DataSelector.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Box.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Icon.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Diamond.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Plus.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/ReversePinpoint.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Circle.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Triangle.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Bubble.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Value.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Pointing.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Average.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Pointing/Angular.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Pointing/Radial.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Star.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Pinpoint.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Asterisk.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Cross.php +%%WWWDIR%%/lib/pear/Image/Graph/Marker/Array.php +%%WWWDIR%%/lib/pear/Image/Graph/Layout.php +%%WWWDIR%%/lib/pear/Image/Graph/Plotarea/Element.php +%%WWWDIR%%/lib/pear/Image/Graph/Plotarea/Map.php +%%WWWDIR%%/lib/pear/Image/Graph/Plotarea/Radar.php +%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Sequential.php +%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/NumberText.php +%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Array.php +%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/RomanNumerals.php +%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Currency.php +%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Formatted.php +%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Function.php +%%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor/Date.php +%%WWWDIR%%/lib/pear/Image/Graph/Logo.php +%%WWWDIR%%/lib/pear/Image/Graph/Dataset.php +%%WWWDIR%%/lib/pear/Image/Graph/Fill.php +%%WWWDIR%%/lib/pear/Image/Graph/Config.php +%%WWWDIR%%/lib/pear/Image/Graph/Plot.php +%%WWWDIR%%/lib/pear/Image/Graph.php +%%WWWDIR%%/lib/pear/Image/Color.php +%%WWWDIR%%/lib/pear/Image/Canvas/PDF.php +%%WWWDIR%%/lib/pear/Image/Canvas/GD/PNG.php +%%WWWDIR%%/lib/pear/Image/Canvas/GD/JPG.php +%%WWWDIR%%/lib/pear/Image/Canvas/Color.php +%%WWWDIR%%/lib/pear/Image/Canvas/GD.php +%%WWWDIR%%/lib/pear/Image/Canvas/ImageMap.php +%%WWWDIR%%/lib/pear/Image/Canvas/WithMap.php +%%WWWDIR%%/lib/pear/Image/Canvas/Tool.php +%%WWWDIR%%/lib/pear/Image/Canvas/SVG.php +%%WWWDIR%%/lib/pear/Image/Canvas/Fonts/fontmap.txt +%%WWWDIR%%/lib/pear/Image/Canvas/Fonts/arial.ttf +%%WWWDIR%%/lib/pear/Image/Canvas/Fonts/verdana.ttf +%%WWWDIR%%/lib/pear/Image/Canvas/Fonts/README +%%WWWDIR%%/lib/pear/Image/Canvas.php +%%WWWDIR%%/lib/pear/.depdb +%%WWWDIR%%/lib/pear/Console/Getopt.php +%%WWWDIR%%/lib/pclzip/readme.txt +%%WWWDIR%%/lib/pclzip/pclzip.lib.php +%%WWWDIR%%/lib/pclzip/gnu-lgpl.txt +%%WWWDIR%%/lib/OA/Dll.php +%%WWWDIR%%/lib/OA/XmlRpcClient.php +%%WWWDIR%%/lib/OA/Central.php +%%WWWDIR%%/lib/OA/Info.php +%%WWWDIR%%/lib/OA/Dll/PublisherInfo.php +%%WWWDIR%%/lib/OA/Dll/User.php +%%WWWDIR%%/lib/OA/Dll/Campaign.php +%%WWWDIR%%/lib/OA/Dll/BannerInfo.php +%%WWWDIR%%/lib/OA/Dll/Variable.php +%%WWWDIR%%/lib/OA/Dll/Audit.php +%%WWWDIR%%/lib/OA/Dll/Advertiser.php +%%WWWDIR%%/lib/OA/Dll/VariableInfo.php +%%WWWDIR%%/lib/OA/Dll/AdvertiserInfo.php +%%WWWDIR%%/lib/OA/Dll/AgencyInfo.php +%%WWWDIR%%/lib/OA/Dll/Tracker.php +%%WWWDIR%%/lib/OA/Dll/TargetingInfo.php +%%WWWDIR%%/lib/OA/Dll/Publisher.php +%%WWWDIR%%/lib/OA/Dll/TrackerInfo.php +%%WWWDIR%%/lib/OA/Dll/Zone.php +%%WWWDIR%%/lib/OA/Dll/Banner.php +%%WWWDIR%%/lib/OA/Dll/UserInfo.php +%%WWWDIR%%/lib/OA/Dll/ZoneInfo.php +%%WWWDIR%%/lib/OA/Dll/Channel.php +%%WWWDIR%%/lib/OA/Dll/Agency.php +%%WWWDIR%%/lib/OA/Dll/CampaignInfo.php +%%WWWDIR%%/lib/OA/Dll/ChannelInfo.php +%%WWWDIR%%/lib/OA/BaseObjectWithErrors.php +%%WWWDIR%%/lib/OA/Maintenance/Pruning.php +%%WWWDIR%%/lib/OA/Maintenance/Regenerate.php +%%WWWDIR%%/lib/OA/Maintenance/Auto.php +%%WWWDIR%%/lib/OA/Maintenance/Priority.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/GetRequiredAdImpressions.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/GetRequiredAdImpressionsDaily.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/ECPMforContract.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/AllocateZoneImpressions.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/ECPMCommon.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/GetRequiredAdImpressionsLifetime.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/ECPMforRemnant.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task/PriorityCompensation.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/DeliveryLimitation.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/Ad.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/DeliveryLimitation/Empty.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/DeliveryLimitation/Common.php +%%WWWDIR%%/lib/OA/Maintenance/Priority/DeliveryLimitation/Factory.php +%%WWWDIR%%/lib/OA/Maintenance/Status.php +%%WWWDIR%%/lib/OA/Maintenance/RollupStats.php +%%WWWDIR%%/lib/OA/Task.php +%%WWWDIR%%/lib/OA/Cache/DeliveryCacheCommon.php +%%WWWDIR%%/lib/OA/Cache/DeliveryCacheManager.php +%%WWWDIR%%/lib/OA/Dal.php +%%WWWDIR%%/lib/OA/Auth.php +%%WWWDIR%%/lib/OA/Session.php +%%WWWDIR%%/lib/OA/Dashboard/Widget.php +%%WWWDIR%%/lib/OA/Dashboard/Feed.php +%%WWWDIR%%/lib/OA/Dashboard/Widgets/GraphOAC.php +%%WWWDIR%%/lib/OA/Dashboard/Widgets/BlogFeed.php +%%WWWDIR%%/lib/OA/Dashboard/Widgets/Reload.php +%%WWWDIR%%/lib/OA/Dashboard/Widgets/GraphOAP.php +%%WWWDIR%%/lib/OA/Dashboard/Widgets/CampaignOverview.php +%%WWWDIR%%/lib/OA/Dashboard/Widgets/Audit.php +%%WWWDIR%%/lib/OA/Dashboard/Widgets/ForumFeed.php +%%WWWDIR%%/lib/OA/Dashboard/Widgets/Index.php +%%WWWDIR%%/lib/OA/Dashboard/Widgets/Disabled.php +%%WWWDIR%%/lib/OA/Dashboard/Graph.php +%%WWWDIR%%/lib/OA/DB/AdvisoryLock/mysql.php +%%WWWDIR%%/lib/OA/DB/AdvisoryLock/file.php +%%WWWDIR%%/lib/OA/DB/AdvisoryLock/pgsql.php +%%WWWDIR%%/lib/OA/DB/Sql.php +%%WWWDIR%%/lib/OA/DB/AdvisoryLock.php +%%WWWDIR%%/lib/OA/DB/CustomDatatypes/mysql_info.php +%%WWWDIR%%/lib/OA/DB/CustomDatatypes/pgsql_info.php +%%WWWDIR%%/lib/OA/DB/CustomDatatypes/mysql.php +%%WWWDIR%%/lib/OA/DB/CustomDatatypes/pgsql.php +%%WWWDIR%%/lib/OA/DB/Charset.php +%%WWWDIR%%/lib/OA/DB/DataObject/Generator.php +%%WWWDIR%%/lib/OA/DB/Distributed.php +%%WWWDIR%%/lib/OA/DB/Charset/pgsql.php +%%WWWDIR%%/lib/OA/DB/Charset/mysql.php +%%WWWDIR%%/lib/OA/DB/Table.php +%%WWWDIR%%/lib/OA/DB/Table/Priority.php +%%WWWDIR%%/lib/OA/DB/Table/Core.php +%%WWWDIR%%/lib/OA/DB/Table/Statistics.php +%%WWWDIR%%/lib/OA/DB/XmlCache.php +%%WWWDIR%%/lib/OA/Preferences.php +%%WWWDIR%%/lib/OA/Algorithm/Dependency.php +%%WWWDIR%%/lib/OA/Algorithm/Dependency/Source.php +%%WWWDIR%%/lib/OA/Algorithm/Dependency/Source/HoA.php +%%WWWDIR%%/lib/OA/Algorithm/Dependency/Item.php +%%WWWDIR%%/lib/OA/Algorithm/Dependency/Ordered.php +%%WWWDIR%%/lib/OA/Upgrade/UpgradeLogger.php +%%WWWDIR%%/lib/OA/Upgrade/Login.php +%%WWWDIR%%/lib/OA/Upgrade/BaseUpgradeAuditor.php +%%WWWDIR%%/lib/OA/Upgrade/Configuration.php +%%WWWDIR%%/lib/OA/Upgrade/UpgradeAuditor.php +%%WWWDIR%%/lib/OA/Upgrade/Upgrade.php +%%WWWDIR%%/lib/OA/Upgrade/EnvironmentManager.php +%%WWWDIR%%/lib/OA/Upgrade/DB_UpgradeAuditor.php +%%WWWDIR%%/lib/OA/Upgrade/DB_Integrity.php +%%WWWDIR%%/lib/OA/Upgrade/phpAdsNew.php +%%WWWDIR%%/lib/OA/Upgrade/VersionController.php +%%WWWDIR%%/lib/OA/Upgrade/UpgradePluginImport.php +%%WWWDIR%%/lib/OA/Upgrade/DB_Upgrade.php +%%WWWDIR%%/lib/OA/Upgrade/Migration.php +%%WWWDIR%%/lib/OA/Upgrade/UpgradePackageParser.php +%%WWWDIR%%/lib/OA/Admin/Template.php +%%WWWDIR%%/lib/OA/Admin/NumberFormat.php +%%WWWDIR%%/lib/OA/Admin/Menu.php +%%WWWDIR%%/lib/OA/Admin/PasswordRecovery.php +%%WWWDIR%%/lib/OA/Admin/UI.php +%%WWWDIR%%/lib/OA/Admin/UI/component/CustomFormElement.php +%%WWWDIR%%/lib/OA/Admin/UI/component/ArrayRenderer.php +%%WWWDIR%%/lib/OA/Admin/UI/component/Page.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormEmailRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormMinRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/Min.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormMaxRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/DecimalPlaces.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormEqualRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormMinLengthRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/Unique.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormNumberRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/JQueryValidationRuleBuilder.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/BaseQuickFormRuleToJQueryRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/Equal.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormUniqueRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormRuleToJQueryRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormMaxLengthRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormDigitsRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormDecimalPlacesAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormRequiredRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/Max.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/QuickFormNonZeroRuleAdaptor.php +%%WWWDIR%%/lib/OA/Admin/UI/component/rule/RuleAdaptorRegistry.php +%%WWWDIR%%/lib/OA/Admin/UI/component/PluginScriptFormElement.php +%%WWWDIR%%/lib/OA/Admin/UI/component/ScriptFormElement.php +%%WWWDIR%%/lib/OA/Admin/UI/component/FormControls.php +%%WWWDIR%%/lib/OA/Admin/UI/component/Html.php +%%WWWDIR%%/lib/OA/Admin/UI/component/PluginPage.php +%%WWWDIR%%/lib/OA/Admin/UI/component/Form.php +%%WWWDIR%%/lib/OA/Admin/UI/component/FormBreak.php +%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/Decorator.php +%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/AbstractDecorator.php +%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/DecoratorFactory.php +%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/DecoratorRegistry.php +%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/HTMLTagDecorator.php +%%WWWDIR%%/lib/OA/Admin/UI/component/decorator/ProcessingDecorator.php +%%WWWDIR%%/lib/OA/Admin/UI/component/CustomPluginFormElement.php +%%WWWDIR%%/lib/OA/Admin/UI/SmartyInserts.php +%%WWWDIR%%/lib/OA/Admin/UI/AccountSwitch.php +%%WWWDIR%%/lib/OA/Admin/UI/Field/AuditDaySpanField.php +%%WWWDIR%%/lib/OA/Admin/UI/CampaignZoneLink.php +%%WWWDIR%%/lib/OA/Admin/UI/Search.php +%%WWWDIR%%/lib/OA/Admin/UI/UserAccess.php +%%WWWDIR%%/lib/OA/Admin/UI/NotificationManager.php +%%WWWDIR%%/lib/OA/Admin/UI/model/EntityBreadcrumbSegment.php +%%WWWDIR%%/lib/OA/Admin/UI/model/InventoryPageHeaderModelBuilder.php +%%WWWDIR%%/lib/OA/Admin/UI/model/EntityBreadcrumbModel.php +%%WWWDIR%%/lib/OA/Admin/UI/model/PageHeaderModel.php +%%WWWDIR%%/lib/OA/Admin/Option.php +%%WWWDIR%%/lib/OA/Admin/Reports/Export.php +%%WWWDIR%%/lib/OA/Admin/Reports/Index.php +%%WWWDIR%%/lib/OA/Admin/Reports/Generate.php +%%WWWDIR%%/lib/OA/Admin/DaySpan.php +%%WWWDIR%%/lib/OA/Admin/Menu/SectionCheckerFilter.php +%%WWWDIR%%/lib/OA/Admin/Menu/SectionTypeFilter.php +%%WWWDIR%%/lib/OA/Admin/Menu/SectionPermissionChecker.php +%%WWWDIR%%/lib/OA/Admin/Menu/IChecker.php +%%WWWDIR%%/lib/OA/Admin/Menu/Section.php +%%WWWDIR%%/lib/OA/Admin/Menu/SectionAccountChecker.php +%%WWWDIR%%/lib/OA/Admin/Menu/config.php +%%WWWDIR%%/lib/OA/Admin/Menu/CompoundChecker.php +%%WWWDIR%%/lib/OA/Admin/TemplatePlugin.php +%%WWWDIR%%/lib/OA/Admin/Settings.php +%%WWWDIR%%/lib/OA/Admin/ExcelWriter.php +%%WWWDIR%%/lib/OA/Admin/Help.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Flexy.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Factory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/History.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Flexy.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/CommonEntity.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Common.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateBannerHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/ZoneCampaignHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignZoneHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/ZoneDaily.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/GlobalHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/BannerHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/GlobalAdvertiser.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/ZoneCampaigns.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserDaily.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateCampaignHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserCampaigns.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignAffiliateHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserAffiliateHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/GlobalDaily.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/BannerAffiliates.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/BannerAffiliateHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateCampaigns.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/GlobalAffiliates.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateZones.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AffiliateDaily.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserAffiliates.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignDaily.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/AdvertiserZoneHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignBanners.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/BannerZoneHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/ZoneBannerHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/BannerDaily.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/CampaignAffiliates.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller/ZoneHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/CommonCrossHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/themes/breakdown_by_week.html +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/themes/breakdown_by_entity.html +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/themes/breakdown_by_date.html +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/CommonHistory.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/CommonCrossEntity.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Daily.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Common.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Fields/Delivery/Default.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Fields/Delivery/Affiliates.php +%%WWWDIR%%/lib/OA/Admin/Statistics/Fields/Delivery.php +%%WWWDIR%%/lib/OA/Cache.php +%%WWWDIR%%/lib/OA/Dal/Central/Common.php +%%WWWDIR%%/lib/OA/Dal/Central/Rpc.php +%%WWWDIR%%/lib/OA/Dal/Central/AdNetworks.php +%%WWWDIR%%/lib/OA/Dal/Central/M2M.php +%%WWWDIR%%/lib/OA/Dal/Statistics/Zone.php +%%WWWDIR%%/lib/OA/Dal/Statistics/Campaign.php +%%WWWDIR%%/lib/OA/Dal/Statistics/Advertiser.php +%%WWWDIR%%/lib/OA/Dal/Statistics/Banner.php +%%WWWDIR%%/lib/OA/Dal/Statistics/Publisher.php +%%WWWDIR%%/lib/OA/Dal/Statistics/Agency.php +%%WWWDIR%%/lib/OA/Dal/Maintenance/UI.php +%%WWWDIR%%/lib/OA/Dal/Maintenance/Priority.php +%%WWWDIR%%/lib/OA/Dal/Maintenance/Common.php +%%WWWDIR%%/lib/OA/Dal/Links.php +%%WWWDIR%%/lib/OA/Dal/PasswordRecovery.php +%%WWWDIR%%/lib/OA/Dal/Delivery.php +%%WWWDIR%%/lib/OA/Dal/Delivery/xmlrpc.php +%%WWWDIR%%/lib/OA/Dal/Delivery/mysql.php +%%WWWDIR%%/lib/OA/Dal/Delivery/pgsql.php +%%WWWDIR%%/lib/OA/Dal/ApplicationVariables.php +%%WWWDIR%%/lib/OA/Dal/Statistics.php +%%WWWDIR%%/lib/OA/Dal/DataGenerator.php +%%WWWDIR%%/lib/OA/Permission.php +%%WWWDIR%%/lib/OA/Task/Runner.php +%%WWWDIR%%/lib/OA/Email.php +%%WWWDIR%%/lib/OA/DB.php +%%WWWDIR%%/lib/OA/Creative.php +%%WWWDIR%%/lib/OA/ServiceLocator.php +%%WWWDIR%%/lib/OA/Permission/User.php +%%WWWDIR%%/lib/OA/Permission/SystemUser.php +%%WWWDIR%%/lib/OA/Sync.php +%%WWWDIR%%/lib/OA/Central/AdNetworks.php +%%WWWDIR%%/lib/OA/Central/RpcMapper.php +%%WWWDIR%%/lib/OA/Central/M2M.php +%%WWWDIR%%/lib/OA/Central/M2MTicketProviderImpl.php +%%WWWDIR%%/lib/OA/Central/Common.php +%%WWWDIR%%/lib/OA/Central/Dashboard.php +%%WWWDIR%%/lib/OA/Central/CurrencyFX.php +%%WWWDIR%%/lib/OA/Central/SimpleFunctionCache.php +%%WWWDIR%%/lib/OA/Central/M2MProtectedRpc.php +%%WWWDIR%%/lib/OA/PermanentCache.php +%%WWWDIR%%/lib/OA/Creative/File.php +%%WWWDIR%%/lib/OA/Creative/File/Swf.php +%%WWWDIR%%/lib/OA/Creative/File/RichMedia.php +%%WWWDIR%%/lib/OA/Creative/File/Image.php +%%WWWDIR%%/lib/java-xmlrpc-2.0/commons-codec-1.3.jar +%%WWWDIR%%/lib/java-xmlrpc-2.0/commons-httpclient-2.0.2.jar +%%WWWDIR%%/lib/java-xmlrpc-2.0/xmlrpc-2.0.jar +%%WWWDIR%%/lib/OX/OperationInterval.php +%%WWWDIR%%/lib/OX/Extension.php +%%WWWDIR%%/lib/OX/Upgrade/MarketClientFactory.php +%%WWWDIR%%/lib/OX/Upgrade/PostUpgradeTask/Controller.php +%%WWWDIR%%/lib/OX/Upgrade/PostUpgradeTask/MessagesCollector.php +%%WWWDIR%%/lib/OX/Upgrade/Util/PlatformHashManager.php +%%WWWDIR%%/lib/OX/Upgrade/Util/Job.php +%%WWWDIR%%/lib/OX/Upgrade/InstallConfig.php +%%WWWDIR%%/lib/OX/Upgrade/InstallPlugin/Controller.php +%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task.php +%%WWWDIR%%/lib/OX/Maintenance/Statistics/TestAndCorrect.php +%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/ManageCampaigns.php +%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/SetUpdateRequirements.php +%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/SummariseFinal.php +%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/LogCompletion.php +%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/DeduplicateConversions.php +%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/SummariseIntermediate.php +%%WWWDIR%%/lib/OX/Maintenance/Statistics/Task/ManageConversions.php +%%WWWDIR%%/lib/OX/Maintenance/Statistics/MigrateBucketData.php +%%WWWDIR%%/lib/OX/Maintenance/Priority/Campaign.php +%%WWWDIR%%/lib/OX/Maintenance/Priority/Zone.php +%%WWWDIR%%/lib/OX/Maintenance/Distributed.php +%%WWWDIR%%/lib/OX/Maintenance/Statistics.php +%%WWWDIR%%/lib/OX/Plugin/ParserPlugin.php +%%WWWDIR%%/lib/OX/Plugin/Component.php +%%WWWDIR%%/lib/OX/Plugin/PluginExport.php +%%WWWDIR%%/lib/OX/Plugin/ParserComponentGroup.php +%%WWWDIR%%/lib/OX/Plugin/ParserBase.php +%%WWWDIR%%/lib/OX/Plugin/PluginManager.php +%%WWWDIR%%/lib/OX/Plugin/UpgradeComponentGroup.php +%%WWWDIR%%/lib/OX/Plugin/ComponentGroupManager.php +%%WWWDIR%%/lib/OX/Maintenance.php +%%WWWDIR%%/lib/OX/Admin/Redirect.php +%%WWWDIR%%/lib/OX/Admin/UI/Controller/Request.php +%%WWWDIR%%/lib/OX/Admin/UI/Controller/BaseController.php +%%WWWDIR%%/lib/OX/Admin/UI/Event/EventDispatcher.php +%%WWWDIR%%/lib/OX/Admin/UI/Event/EventContext.php +%%WWWDIR%%/lib/OX/Admin/UI/ViewHooks.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/InstallController.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/SystemCheckModelBuilder.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/SsoErrorBuilder.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/BaseForm.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/Wizard.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/SsoSignupForm.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/AdminLoginForm.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/InstallStatus.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/DbForm.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/SsoLoginForm.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/InstallUtils.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/SkipSsoForm.php +%%WWWDIR%%/lib/OX/Admin/UI/Install/ConfigForm.php +%%WWWDIR%%/lib/OX/Admin/UI/Storage.php +%%WWWDIR%%/lib/OX/Admin/UI/Wizard.php +%%WWWDIR%%/lib/OX/Admin/UI/Hooks.php +%%WWWDIR%%/lib/OX/Admin/UI/SessionStorage.php +%%WWWDIR%%/lib/OX/Admin/UI/Minify/Server.php +%%WWWDIR%%/lib/OX/Admin/UI/WizardSteps.php +%%WWWDIR%%/lib/OX/Admin/Timezones.php +%%WWWDIR%%/lib/OX/M2M/PearXmlRpcCustomClientExecutor.php +%%WWWDIR%%/lib/OX/M2M/AbstractService.php +%%WWWDIR%%/lib/OX/M2M/M2MServiceImpl.php +%%WWWDIR%%/lib/OX/M2M/PearXmlRpcCustomClientException.php +%%WWWDIR%%/lib/OX/M2M/M2MDataProvider.php +%%WWWDIR%%/lib/OX/M2M/M2MService.php +%%WWWDIR%%/lib/OX/M2M/M2MProtectedRpc.php +%%WWWDIR%%/lib/OX/M2M/M2MTicketProvider.php +%%WWWDIR%%/lib/OX/M2M/ZendXmlRpcExecutor.php +%%WWWDIR%%/lib/OX/M2M/XmlRpcErrorCodes.php +%%WWWDIR%%/lib/OX/M2M/XmlRpcExecutor.php +%%WWWDIR%%/lib/OX/M2M/M2MTicketProviderImpl.php +%%WWWDIR%%/lib/OX/Util/ConnectionUtils.php +%%WWWDIR%%/lib/OX/Util/CodeMunger.php +%%WWWDIR%%/lib/OX/Util/Utils.php +%%WWWDIR%%/lib/OX/Translation.php +%%WWWDIR%%/lib/OX/Extension/reports/ReportsScope.php +%%WWWDIR%%/lib/OX/Extension/reports/default.plugin.conf.php +%%WWWDIR%%/lib/OX/Extension/reports/Reports.php +%%WWWDIR%%/lib/OX/Extension/deliveryCacheStore/deliveryCacheStoreDelivery.php +%%WWWDIR%%/lib/OX/Extension/deliveryCacheStore/DeliveryCacheStore.php +%%WWWDIR%%/lib/OX/Extension/invocationTags.php +%%WWWDIR%%/lib/OX/Extension/deliveryLog.php +%%WWWDIR%%/lib/OX/Extension/authentication/authentication.php +%%WWWDIR%%/lib/OX/Extension/deliveryTrackerRender.php +%%WWWDIR%%/lib/OX/Extension/maintenancePriorityTask/MaintenancePriorityTask.php +%%WWWDIR%%/lib/OX/Extension/deliveryAdRender.php +%%WWWDIR%%/lib/OX/Extension/deliveryLog/AggregateBucketProcessingStrategyMysql.php +%%WWWDIR%%/lib/OX/Extension/deliveryLog/BucketProcessingStrategy.php +%%WWWDIR%%/lib/OX/Extension/deliveryLog/BucketProcessingStrategyFactory.php +%%WWWDIR%%/lib/OX/Extension/deliveryLog/AggregateBucketProcessingStrategyPgsql.php +%%WWWDIR%%/lib/OX/Extension/deliveryLog/RawBucketProcessingStrategyMysql.php +%%WWWDIR%%/lib/OX/Extension/deliveryLog/Setup.php +%%WWWDIR%%/lib/OX/Extension/deliveryLog/RawBucketProcessingStrategyPgsql.php +%%WWWDIR%%/lib/OX/Extension/deliveryLog/DeliveryLog.php +%%WWWDIR%%/lib/OX/Extension/deliveryLog/DB/Pgsql.php +%%WWWDIR%%/lib/OX/Extension/deliveryLog/DB/Common.php +%%WWWDIR%%/lib/OX/Extension/deliveryAdSelect/DeliveryAdSelect.php +%%WWWDIR%%/lib/OX/Extension/deliveryLimitations.php +%%WWWDIR%%/lib/OX/Extension/deliveryAdSelect.php +%%WWWDIR%%/lib/OX/Extension/ExtensionDelivery.php +%%WWWDIR%%/lib/OX/Extension/invocationTags/InvocationTags.php +%%WWWDIR%%/lib/OX/Extension/invocationTags/InvocationTagsOptions.php +%%WWWDIR%%/lib/OX/Extension/api/Api.php +%%WWWDIR%%/lib/OX/Extension/admin.php +%%WWWDIR%%/lib/OX/Extension/deliveryLimitations/DeliveryLimitationsCommaSeparatedData.php +%%WWWDIR%%/lib/OX/Extension/deliveryLimitations/DeliveryLimitationsArrayData.php +%%WWWDIR%%/lib/OX/Extension/deliveryLimitations/DeliveryLimitations.php +%%WWWDIR%%/lib/OX/Extension/deliveryLimitations/DeliveryLimitationsResourceData.php +%%WWWDIR%%/lib/OX/Extension/bannerTypeHtml/bannerTypeHtmlDelivery.php +%%WWWDIR%%/lib/OX/Extension/bannerTypeHtml/bannerTypeHtml.php +%%WWWDIR%%/lib/OX/Extension/bannerTypeText/bannerTypeTextDelivery.php +%%WWWDIR%%/lib/OX/Extension/bannerTypeText/bannerTypeText.php +%%WWWDIR%%/lib/OX/Extension/deliveryDataPrepare.php +%%WWWDIR%%/lib/OX/Extension/maintenanceStatisticsTask/MaintenanceStatisticsTask.php +%%WWWDIR%%/lib/OX/Extension/ExtensionCommon.php +%%WWWDIR%%/lib/OX/Extension/3rdPartyServers/3rdPartyServers.php +%%WWWDIR%%/lib/OX/Dal/Maintenance/Statistics.php +%%WWWDIR%%/lib/OX/Dal/Maintenance/Statistics/Factory.php +%%WWWDIR%%/lib/OX/Dal/Maintenance/Statistics/Mysql.php +%%WWWDIR%%/lib/OX/Dal/Maintenance/Statistics/Pgsql.php +%%WWWDIR%%/lib/OX/Dal/Market/MarketPluginTools.php +%%WWWDIR%%/lib/OX/Dal/Market/RegistrationClient.php +%%WWWDIR%%/lib/OX/PC/API/SimpleClientException.php +%%WWWDIR%%/lib/OX/PC/API/SimpleClient.php +%%WWWDIR%%/lib/OA.php +%%WWWDIR%%/lib/Max.php +%%WWWDIR%%/lib/fonts/Bitstream/COPYRIGHT.TXT +%%WWWDIR%%/lib/fonts/Bitstream/VeraBd.ttf +%%WWWDIR%%/lib/fonts/Bitstream/Vera.ttf +%%WWWDIR%%/lib/smarty/Config_File.class.php +%%WWWDIR%%/lib/smarty/debug.tpl +%%WWWDIR%%/lib/smarty/internals/core.load_plugins.php +%%WWWDIR%%/lib/smarty/internals/core.process_compiled_include.php +%%WWWDIR%%/lib/smarty/internals/core.is_secure.php +%%WWWDIR%%/lib/smarty/internals/core.rmdir.php +%%WWWDIR%%/lib/smarty/internals/core.load_resource_plugin.php +%%WWWDIR%%/lib/smarty/internals/core.get_php_resource.php +%%WWWDIR%%/lib/smarty/internals/core.assign_smarty_interface.php +%%WWWDIR%%/lib/smarty/internals/core.get_include_path.php +%%WWWDIR%%/lib/smarty/internals/core.get_microtime.php +%%WWWDIR%%/lib/smarty/internals/core.process_cached_inserts.php +%%WWWDIR%%/lib/smarty/internals/core.run_insert_handler.php +%%WWWDIR%%/lib/smarty/internals/core.write_cache_file.php +%%WWWDIR%%/lib/smarty/internals/core.create_dir_structure.php +%%WWWDIR%%/lib/smarty/internals/core.assemble_plugin_filepath.php +%%WWWDIR%%/lib/smarty/internals/core.is_trusted.php +%%WWWDIR%%/lib/smarty/internals/core.write_file.php +%%WWWDIR%%/lib/smarty/internals/core.write_compiled_include.php +%%WWWDIR%%/lib/smarty/internals/core.write_compiled_resource.php +%%WWWDIR%%/lib/smarty/internals/core.display_debug_console.php +%%WWWDIR%%/lib/smarty/internals/core.smarty_include_php.php +%%WWWDIR%%/lib/smarty/internals/core.rm_auto.php +%%WWWDIR%%/lib/smarty/internals/core.read_cache_file.php +%%WWWDIR%%/lib/smarty/Smarty_Compiler.class.php +%%WWWDIR%%/lib/smarty/Smarty.class.php +%%WWWDIR%%/lib/smarty/plugins/function.popup.php +%%WWWDIR%%/lib/smarty/plugins/shared.escape_special_chars.php +%%WWWDIR%%/lib/smarty/plugins/modifier.escape.php +%%WWWDIR%%/lib/smarty/plugins/block.textformat.php +%%WWWDIR%%/lib/smarty/plugins/modifier.string_format.php +%%WWWDIR%%/lib/smarty/plugins/modifier.date_format.php +%%WWWDIR%%/lib/smarty/plugins/modifier.count_paragraphs.php +%%WWWDIR%%/lib/smarty/plugins/function.html_options.php +%%WWWDIR%%/lib/smarty/plugins/modifier.upper.php +%%WWWDIR%%/lib/smarty/plugins/modifier.lower.php +%%WWWDIR%%/lib/smarty/plugins/modifier.capitalize.php +%%WWWDIR%%/lib/smarty/plugins/function.popup_init.php +%%WWWDIR%%/lib/smarty/plugins/modifier.wordwrap.php +%%WWWDIR%%/lib/smarty/plugins/function.html_select_time.php +%%WWWDIR%%/lib/smarty/plugins/function.mailto.php +%%WWWDIR%%/lib/smarty/plugins/function.html_select_date.php +%%WWWDIR%%/lib/smarty/plugins/modifier.regex_replace.php +%%WWWDIR%%/lib/smarty/plugins/modifier.strip.php +%%WWWDIR%%/lib/smarty/plugins/function.html_checkboxes.php +%%WWWDIR%%/lib/smarty/plugins/function.assign_debug_info.php +%%WWWDIR%%/lib/smarty/plugins/compiler.assign.php +%%WWWDIR%%/lib/smarty/plugins/function.html_radios.php +%%WWWDIR%%/lib/smarty/plugins/function.html_table.php +%%WWWDIR%%/lib/smarty/plugins/function.fetch.php +%%WWWDIR%%/lib/smarty/plugins/function.cycle.php +%%WWWDIR%%/lib/smarty/plugins/modifier.spacify.php +%%WWWDIR%%/lib/smarty/plugins/function.eval.php +%%WWWDIR%%/lib/smarty/plugins/modifier.count_words.php +%%WWWDIR%%/lib/smarty/plugins/function.counter.php +%%WWWDIR%%/lib/smarty/plugins/modifier.count_sentences.php +%%WWWDIR%%/lib/smarty/plugins/modifier.strip_tags.php +%%WWWDIR%%/lib/smarty/plugins/outputfilter.trimwhitespace.php +%%WWWDIR%%/lib/smarty/plugins/function.math.php +%%WWWDIR%%/lib/smarty/plugins/function.debug.php +%%WWWDIR%%/lib/smarty/plugins/modifier.nl2br.php +%%WWWDIR%%/lib/smarty/plugins/modifier.truncate.php +%%WWWDIR%%/lib/smarty/plugins/shared.make_timestamp.php +%%WWWDIR%%/lib/smarty/plugins/function.html_image.php +%%WWWDIR%%/lib/smarty/plugins/modifier.debug_print_var.php +%%WWWDIR%%/lib/smarty/plugins/modifier.replace.php +%%WWWDIR%%/lib/smarty/plugins/modifier.default.php +%%WWWDIR%%/lib/smarty/plugins/modifier.indent.php +%%WWWDIR%%/lib/smarty/plugins/function.config_load.php +%%WWWDIR%%/lib/smarty/plugins/modifier.count_characters.php +%%WWWDIR%%/lib/smarty/plugins/modifier.cat.php +%%WWWDIR%%/lib/util/file/file.php +%%WWWDIR%%/lib/Zend/Exception.php +%%WWWDIR%%/lib/Zend/Loader.php +%%WWWDIR%%/lib/Zend/Translate.php +%%WWWDIR%%/lib/Zend/Http/CookieJar.php +%%WWWDIR%%/lib/Zend/Http/Client.php +%%WWWDIR%%/lib/Zend/Http/Response.php +%%WWWDIR%%/lib/Zend/Http/Exception.php +%%WWWDIR%%/lib/Zend/Http/Client/Exception.php +%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Proxy.php +%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Test.php +%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Curl.php +%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Interface.php +%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Exception.php +%%WWWDIR%%/lib/Zend/Http/Client/Adapter/Socket.php +%%WWWDIR%%/lib/Zend/Http/Cookie.php +%%WWWDIR%%/lib/Zend/Uri/Http.php +%%WWWDIR%%/lib/Zend/Uri/Exception.php +%%WWWDIR%%/lib/Zend/XmlRpc/Server/Fault.php +%%WWWDIR%%/lib/Zend/XmlRpc/Server/Exception.php +%%WWWDIR%%/lib/Zend/XmlRpc/Server/Cache.php +%%WWWDIR%%/lib/Zend/XmlRpc/Fault.php +%%WWWDIR%%/lib/Zend/XmlRpc/Request/Http.php +%%WWWDIR%%/lib/Zend/XmlRpc/Request/Stdin.php +%%WWWDIR%%/lib/Zend/XmlRpc/Exception.php +%%WWWDIR%%/lib/Zend/XmlRpc/Client/ServerIntrospection.php +%%WWWDIR%%/lib/Zend/XmlRpc/Client/ServerProxy.php +%%WWWDIR%%/lib/Zend/XmlRpc/Client/HttpException.php +%%WWWDIR%%/lib/Zend/XmlRpc/Client/Exception.php +%%WWWDIR%%/lib/Zend/XmlRpc/Client/FaultException.php +%%WWWDIR%%/lib/Zend/XmlRpc/Client/IntrospectException.php +%%WWWDIR%%/lib/Zend/XmlRpc/Response/Http.php +%%WWWDIR%%/lib/Zend/XmlRpc/Server.php +%%WWWDIR%%/lib/Zend/XmlRpc/Client.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/Base64.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/Exception.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/DateTime.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/Collection.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/Boolean.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/String.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/Double.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/Scalar.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/Array.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/Integer.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/Nil.php +%%WWWDIR%%/lib/Zend/XmlRpc/Value/Struct.php +%%WWWDIR%%/lib/Zend/XmlRpc/Response.php +%%WWWDIR%%/lib/Zend/XmlRpc/Request.php +%%WWWDIR%%/lib/Zend/Translate/Adapter/Xliff.php +%%WWWDIR%%/lib/Zend/Translate/Adapter/Array.php +%%WWWDIR%%/lib/Zend/Translate/Adapter/Tmx.php +%%WWWDIR%%/lib/Zend/Translate/Adapter/Qt.php +%%WWWDIR%%/lib/Zend/Translate/Adapter/Csv.php +%%WWWDIR%%/lib/Zend/Translate/Adapter/Tbx.php +%%WWWDIR%%/lib/Zend/Translate/Adapter/XmlTm.php +%%WWWDIR%%/lib/Zend/Translate/Adapter/Gettext.php +%%WWWDIR%%/lib/Zend/Translate/Exception.php +%%WWWDIR%%/lib/Zend/Translate/Adapter.php +%%WWWDIR%%/lib/Zend/Locale.php +%%WWWDIR%%/lib/Zend/Validate/LessThan.php +%%WWWDIR%%/lib/Zend/Validate/Regex.php +%%WWWDIR%%/lib/Zend/Validate/Alnum.php +%%WWWDIR%%/lib/Zend/Validate/Identical.php +%%WWWDIR%%/lib/Zend/Validate/Digits.php +%%WWWDIR%%/lib/Zend/Validate/Alpha.php +%%WWWDIR%%/lib/Zend/Validate/Between.php +%%WWWDIR%%/lib/Zend/Validate/Float.php +%%WWWDIR%%/lib/Zend/Validate/NotEmpty.php +%%WWWDIR%%/lib/Zend/Validate/Hostname/At.php +%%WWWDIR%%/lib/Zend/Validate/Hostname/Hu.php +%%WWWDIR%%/lib/Zend/Validate/Hostname/Li.php +%%WWWDIR%%/lib/Zend/Validate/Hostname/Se.php +%%WWWDIR%%/lib/Zend/Validate/Hostname/De.php +%%WWWDIR%%/lib/Zend/Validate/Hostname/No.php +%%WWWDIR%%/lib/Zend/Validate/Hostname/Interface.php +%%WWWDIR%%/lib/Zend/Validate/Hostname/Fi.php +%%WWWDIR%%/lib/Zend/Validate/Hostname/Ch.php +%%WWWDIR%%/lib/Zend/Validate/GreaterThan.php +%%WWWDIR%%/lib/Zend/Validate/StringLength.php +%%WWWDIR%%/lib/Zend/Validate/Hostname.php +%%WWWDIR%%/lib/Zend/Validate/Interface.php +%%WWWDIR%%/lib/Zend/Validate/Ip.php +%%WWWDIR%%/lib/Zend/Validate/Hex.php +%%WWWDIR%%/lib/Zend/Validate/Barcode.php +%%WWWDIR%%/lib/Zend/Validate/Exception.php +%%WWWDIR%%/lib/Zend/Validate/Int.php +%%WWWDIR%%/lib/Zend/Validate/Ccnum.php +%%WWWDIR%%/lib/Zend/Validate/Barcode/UpcA.php +%%WWWDIR%%/lib/Zend/Validate/Barcode/Ean13.php +%%WWWDIR%%/lib/Zend/Validate/Abstract.php +%%WWWDIR%%/lib/Zend/Validate/Date.php +%%WWWDIR%%/lib/Zend/Validate/InArray.php +%%WWWDIR%%/lib/Zend/Validate/EmailAddress.php +%%WWWDIR%%/lib/Zend/Registry.php +%%WWWDIR%%/lib/Zend/Uri.php +%%WWWDIR%%/lib/Zend/Locale/Exception.php +%%WWWDIR%%/lib/Zend/Locale/Data/Translation.php +%%WWWDIR%%/lib/Zend/Locale/Data/hu.xml +%%WWWDIR%%/lib/Zend/Locale/Data/es.xml +%%WWWDIR%%/lib/Zend/Locale/Data/pt_BR.xml +%%WWWDIR%%/lib/Zend/Locale/Data/it.xml +%%WWWDIR%%/lib/Zend/Locale/Data/root.xml +%%WWWDIR%%/lib/Zend/Locale/Data/en.xml +%%WWWDIR%%/lib/Zend/Locale/Data/tr.xml +%%WWWDIR%%/lib/Zend/Locale/Data/nl.xml +%%WWWDIR%%/lib/Zend/Locale/Data/ja.xml +%%WWWDIR%%/lib/Zend/Locale/Data/de.xml +%%WWWDIR%%/lib/Zend/Locale/Data/id.xml +%%WWWDIR%%/lib/Zend/Locale/Data/he.xml +%%WWWDIR%%/lib/Zend/Locale/Data/ru.xml +%%WWWDIR%%/lib/Zend/Locale/Data/fa.xml +%%WWWDIR%%/lib/Zend/Locale/Data/pl.xml +%%WWWDIR%%/lib/Zend/Locale/Data/cs.xml +%%WWWDIR%%/lib/Zend/Locale/Data/ko.xml +%%WWWDIR%%/lib/Zend/Locale/Data/fr.xml +%%WWWDIR%%/lib/Zend/Locale/Data/zh_CN.xml +%%WWWDIR%%/lib/Zend/Locale/Math.php +%%WWWDIR%%/lib/Zend/Locale/Data.php +%%WWWDIR%%/lib/Zend/Locale/Format.php +%%WWWDIR%%/lib/Zend/Locale/Math/Exception.php +%%WWWDIR%%/lib/Zend/Locale/Math/PhpMath.php +%%WWWDIR%%/lib/wact/db/error.inc.php +%%WWWDIR%%/lib/wact/db/drivers/mdb2.inc.php +%%WWWDIR%%/lib/wact/db/drivers/pear.inc.php +%%WWWDIR%%/lib/wact/db/drivers/mysql.inc.php +%%WWWDIR%%/lib/wact/db/mdbc.inc.php +%%WWWDIR%%/lib/wact/db/dbqueryinterface.inc.php +%%WWWDIR%%/lib/wact/db/dataspace.inc.php +%%WWWDIR%%/lib/wact/db/db.inc.php +%%WWWDIR%%/lib/wact/db/interfaces/connection.inc.php +%%WWWDIR%%/lib/wact/db/interfaces/pageddataset.php +%%WWWDIR%%/lib/wact/db/interfaces/record.php +%%WWWDIR%%/lib/wact/db/interfaces/pager.php +%%WWWDIR%%/lib/wact/db/interfaces/recordset.php +%%WWWDIR%%/init-delivery.php +%%WWWDIR%%/init-parse.php +%%WWWDIR%%/memory.php +%%WWWDIR%%/POLICY.txt +%%WWWDIR%%/RELEASE_NOTES.txt +%%WWWDIR%%/init-delivery-parse.php +%%WWWDIR%%/adimage.php +%%WWWDIR%%/LICENSE.txt +%%WWWDIR%%/pre-check.php +%%WWWDIR%%/robots.txt +%%WWWDIR%%/adg.js +%%WWWDIR%%/index.php +%%WWWDIR%%/maintenance/maintenance.php +%%WWWDIR%%/maintenance/maintenance-distributed.php +%%WWWDIR%%/adjs.php +%%WWWDIR%%/TERMS.txt +%%WWWDIR%%/phpadsnew.inc.php +%%WWWDIR%%/variables.php +%%WWWDIR%%/var/.htaccess +%%WWWDIR%%/var/UPGRADE +%%WWWDIR%%/var/plugins/README.txt +%%WWWDIR%%/var/cache/README.txt +%%WWWDIR%%/adpopup.php +%%WWWDIR%%/adxmlrpc.php +%%WWWDIR%%/adview.php +%%WWWDIR%%/scripts/.htaccess +%%WWWDIR%%/scripts/rpm/lib-rpm.php +%%WWWDIR%%/scripts/rpm/plugin-upgrade.php +%%WWWDIR%%/scripts/rpm/core-upgrade.php +%%WWWDIR%%/scripts/maintenance/plot-maintenance-times/extract +%%WWWDIR%%/scripts/maintenance/plot-maintenance-times/README.txt +%%WWWDIR%%/scripts/maintenance/plot-maintenance-times/plot +%%WWWDIR%%/scripts/maintenance/maintenance.php +%%WWWDIR%%/scripts/maintenance/tools/republish.php +%%WWWDIR%%/scripts/maintenance/tools/rollupStats.php +%%WWWDIR%%/scripts/maintenance/tools/statisticsTestAndCorrect.php +%%WWWDIR%%/scripts/maintenance/tools/migrateBucketData.php +%%WWWDIR%%/scripts/maintenance/translationStrings.php +%%WWWDIR%%/scripts/maintenance/maintenance-distributed.php +%%WWWDIR%%/UPGRADE.txt +@dirrmtry %%WWWDIR%%/www/images/layerstyles/simple +@dirrmtry %%WWWDIR%%/www/images/layerstyles/geocities +@dirrmtry %%WWWDIR%%/www/images/layerstyles +@dirrmtry %%WWWDIR%%/www/images +@dirrmtry %%WWWDIR%%/www/delivery +@dirrmtry %%WWWDIR%%/www/api/v2/xmlrpc +@dirrmtry %%WWWDIR%%/www/api/v2/common +@dirrmtry %%WWWDIR%%/www/api/v2 +@dirrmtry %%WWWDIR%%/www/api/v1/xmlrpc +@dirrmtry %%WWWDIR%%/www/api/v1/common +@dirrmtry %%WWWDIR%%/www/api/v1 +@dirrmtry %%WWWDIR%%/www/api +@dirrmtry %%WWWDIR%%/www/admin/templates/install +@dirrmtry %%WWWDIR%%/www/admin/templates +@dirrmtry %%WWWDIR%%/www/admin/precheck +@dirrmtry %%WWWDIR%%/www/admin/plugins +@dirrmtry %%WWWDIR%%/www/admin/market +@dirrmtry %%WWWDIR%%/www/admin/assets/js/jscalendar/skins/aqua +@dirrmtry %%WWWDIR%%/www/admin/assets/js/jscalendar/skins +@dirrmtry %%WWWDIR%%/www/admin/assets/js/jscalendar/lang +@dirrmtry %%WWWDIR%%/www/admin/assets/js/jscalendar/doc/html +@dirrmtry %%WWWDIR%%/www/admin/assets/js/jscalendar/doc +@dirrmtry %%WWWDIR%%/www/admin/assets/js/jscalendar +@dirrmtry %%WWWDIR%%/www/admin/assets/js +@dirrmtry %%WWWDIR%%/www/admin/assets/images/rtl +@dirrmtry %%WWWDIR%%/www/admin/assets/images/ltr +@dirrmtry %%WWWDIR%%/www/admin/assets/images/install +@dirrmtry %%WWWDIR%%/www/admin/assets/images/flags +@dirrmtry %%WWWDIR%%/www/admin/assets/images/dashboard +@dirrmtry %%WWWDIR%%/www/admin/assets/images +@dirrmtry %%WWWDIR%%/www/admin/assets/css +@dirrmtry %%WWWDIR%%/www/admin/assets +@dirrmtry %%WWWDIR%%/www/admin +@dirrmtry %%WWWDIR%%/www +@dirrmtry %%WWWDIR%%/var/templates_compiled +@dirrmtry %%WWWDIR%%/var/plugins/recover +@dirrmtry %%WWWDIR%%/var/plugins/DataObjects +@dirrmtry %%WWWDIR%%/var/plugins +@dirrmtry %%WWWDIR%%/var/cache +@dirrmtry %%WWWDIR%%/var +@dirrmtry %%WWWDIR%%/scripts/rpm +@dirrmtry %%WWWDIR%%/scripts/maintenance/tools +@dirrmtry %%WWWDIR%%/scripts/maintenance/plot-maintenance-times +@dirrmtry %%WWWDIR%%/scripts/maintenance +@dirrmtry %%WWWDIR%%/scripts +@dirrmtry %%WWWDIR%%/plugins/reports +@dirrmtry %%WWWDIR%%/plugins/maintenanceStatisticsTask +@dirrmtry %%WWWDIR%%/plugins/maintenancePriorityTask +@dirrmtry %%WWWDIR%%/plugins/invocationTags +@dirrmtry %%WWWDIR%%/plugins/geoTargeting +@dirrmtry %%WWWDIR%%/plugins/etc +@dirrmtry %%WWWDIR%%/plugins/deliveryLog +@dirrmtry %%WWWDIR%%/plugins/deliveryLimitations +@dirrmtry %%WWWDIR%%/plugins/deliveryDataPrepare +@dirrmtry %%WWWDIR%%/plugins/deliveryCacheStore +@dirrmtry %%WWWDIR%%/plugins/deliveryAdRender +@dirrmtry %%WWWDIR%%/plugins/bannerTypeText +@dirrmtry %%WWWDIR%%/plugins/bannerTypeHtml +@dirrmtry %%WWWDIR%%/plugins/authentication +@dirrmtry %%WWWDIR%%/plugins/api +@dirrmtry %%WWWDIR%%/plugins/3rdPartyServers +@dirrmtry %%WWWDIR%%/plugins +@dirrmtry %%WWWDIR%%/maintenance +@dirrmtry %%WWWDIR%%/lib/xmlrpc/php +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads/proxy +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org/openads +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3/org +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/openx-api-v2/ApacheLib3 +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/openx-api-v2 +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads/proxy +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org/openads +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/ApacheLib3/org +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/ApacheLib3 +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads/proxy +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org/openads +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/ApacheLib2/org +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java/ApacheLib2 +@dirrmtry %%WWWDIR%%/lib/xmlrpc/java +@dirrmtry %%WWWDIR%%/lib/xmlrpc +@dirrmtry %%WWWDIR%%/lib/xajax/xajax_js +@dirrmtry %%WWWDIR%%/lib/xajax/lib +@dirrmtry %%WWWDIR%%/lib/xajax +@dirrmtry %%WWWDIR%%/lib/wact/db/interfaces +@dirrmtry %%WWWDIR%%/lib/wact/db/drivers +@dirrmtry %%WWWDIR%%/lib/wact/db +@dirrmtry %%WWWDIR%%/lib/wact +@dirrmtry %%WWWDIR%%/lib/util/file +@dirrmtry %%WWWDIR%%/lib/util +@dirrmtry %%WWWDIR%%/lib/templates/admin/options +@dirrmtry %%WWWDIR%%/lib/templates/admin/layout +@dirrmtry %%WWWDIR%%/lib/templates/admin/install +@dirrmtry %%WWWDIR%%/lib/templates/admin/form +@dirrmtry %%WWWDIR%%/lib/templates/admin/edit-table +@dirrmtry %%WWWDIR%%/lib/templates/admin/dashboard +@dirrmtry %%WWWDIR%%/lib/templates/admin/ajax +@dirrmtry %%WWWDIR%%/lib/templates/admin +@dirrmtry %%WWWDIR%%/lib/templates +@dirrmtry %%WWWDIR%%/lib/smarty/plugins +@dirrmtry %%WWWDIR%%/lib/smarty/internals +@dirrmtry %%WWWDIR%%/lib/smarty +@dirrmtry %%WWWDIR%%/lib/pear/XML/Tree +@dirrmtry %%WWWDIR%%/lib/pear/XML/RPC +@dirrmtry %%WWWDIR%%/lib/pear/XML/Parser +@dirrmtry %%WWWDIR%%/lib/pear/XML +@dirrmtry %%WWWDIR%%/lib/pear/Text +@dirrmtry %%WWWDIR%%/lib/pear/Structures/Graph/Manipulator +@dirrmtry %%WWWDIR%%/lib/pear/Structures/Graph +@dirrmtry %%WWWDIR%%/lib/pear/Structures +@dirrmtry %%WWWDIR%%/lib/pear/Spreadsheet/Excel/Writer +@dirrmtry %%WWWDIR%%/lib/pear/Spreadsheet/Excel +@dirrmtry %%WWWDIR%%/lib/pear/Spreadsheet +@dirrmtry %%WWWDIR%%/lib/pear/Services/ExchangeRates +@dirrmtry %%WWWDIR%%/lib/pear/Services +@dirrmtry %%WWWDIR%%/lib/pear/Pager +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/Validator +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/Task/Windowseol +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/Task/Unixeol +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/Task/Replace +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/Task/Postinstallscript +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/Task +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/REST +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/PackageFile/v2 +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/PackageFile/Parser +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/PackageFile/Generator +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/PackageFile +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/Installer/Role +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/Installer +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/Frontend +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/Downloader +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/Command +@dirrmtry %%WWWDIR%%/lib/pear/PEAR/ChannelFile +@dirrmtry %%WWWDIR%%/lib/pear/PEAR +@dirrmtry %%WWWDIR%%/lib/pear/OS +@dirrmtry %%WWWDIR%%/lib/pear/OLE/PPS +@dirrmtry %%WWWDIR%%/lib/pear/OLE +@dirrmtry %%WWWDIR%%/lib/pear/Numbers/Words +@dirrmtry %%WWWDIR%%/lib/pear/Numbers +@dirrmtry %%WWWDIR%%/lib/pear/Net +@dirrmtry %%WWWDIR%%/lib/pear/Mail +@dirrmtry %%WWWDIR%%/lib/pear/MDB2_Schema +@dirrmtry %%WWWDIR%%/lib/pear/MDB2/Schema/Reserved +@dirrmtry %%WWWDIR%%/lib/pear/MDB2/Schema +@dirrmtry %%WWWDIR%%/lib/pear/MDB2/Driver/Reverse +@dirrmtry %%WWWDIR%%/lib/pear/MDB2/Driver/Native +@dirrmtry %%WWWDIR%%/lib/pear/MDB2/Driver/Manager +@dirrmtry %%WWWDIR%%/lib/pear/MDB2/Driver/Function +@dirrmtry %%WWWDIR%%/lib/pear/MDB2/Driver/Datatype +@dirrmtry %%WWWDIR%%/lib/pear/MDB2/Driver +@dirrmtry %%WWWDIR%%/lib/pear/MDB2 +@dirrmtry %%WWWDIR%%/lib/pear/Log +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Plotarea +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Plot/Smoothed +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Plot/Fit +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Plot +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Marker/Pointing +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Marker +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Line +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Layout +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Images/Maps +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Images/Icons +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Images +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Grid +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Fill +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Figure +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Dataset +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/DataSelector +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/DataPreprocessor +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Axis/Marker +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph/Axis +@dirrmtry %%WWWDIR%%/lib/pear/Image/Graph +@dirrmtry %%WWWDIR%%/lib/pear/Image/Canvas/GD +@dirrmtry %%WWWDIR%%/lib/pear/Image/Canvas/Fonts +@dirrmtry %%WWWDIR%%/lib/pear/Image/Canvas +@dirrmtry %%WWWDIR%%/lib/pear/Image +@dirrmtry %%WWWDIR%%/lib/pear/HTTP +@dirrmtry %%WWWDIR%%/lib/pear/HTML/docs +@dirrmtry %%WWWDIR%%/lib/pear/HTML/Template/Flexy/templates +@dirrmtry %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Token +@dirrmtry %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Plugin +@dirrmtry %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Element +@dirrmtry %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Standard +@dirrmtry %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Regex +@dirrmtry %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler/Flexy +@dirrmtry %%WWWDIR%%/lib/pear/HTML/Template/Flexy/Compiler +@dirrmtry %%WWWDIR%%/lib/pear/HTML/Template/Flexy +@dirrmtry %%WWWDIR%%/lib/pear/HTML/Template +@dirrmtry %%WWWDIR%%/lib/pear/HTML/QuickForm/Rule +@dirrmtry %%WWWDIR%%/lib/pear/HTML/QuickForm/Renderer +@dirrmtry %%WWWDIR%%/lib/pear/HTML/QuickForm +@dirrmtry %%WWWDIR%%/lib/pear/HTML +@dirrmtry %%WWWDIR%%/lib/pear/Date +@dirrmtry %%WWWDIR%%/lib/pear/DB/QueryTool/Result +@dirrmtry %%WWWDIR%%/lib/pear/DB/QueryTool +@dirrmtry %%WWWDIR%%/lib/pear/DB/DataObject +@dirrmtry %%WWWDIR%%/lib/pear/DB +@dirrmtry %%WWWDIR%%/lib/pear/Console +@dirrmtry %%WWWDIR%%/lib/pear/Config/Container +@dirrmtry %%WWWDIR%%/lib/pear/Config +@dirrmtry %%WWWDIR%%/lib/pear/Cache/Lite +@dirrmtry %%WWWDIR%%/lib/pear/Cache +@dirrmtry %%WWWDIR%%/lib/pear/Archive +@dirrmtry %%WWWDIR%%/lib/pear +@dirrmtry %%WWWDIR%%/lib/pclzip +@dirrmtry %%WWWDIR%%/lib/minify/Solar +@dirrmtry %%WWWDIR%%/lib/minify/Minify/Controller +@dirrmtry %%WWWDIR%%/lib/minify/Minify/Cache +@dirrmtry %%WWWDIR%%/lib/minify/Minify/CSS +@dirrmtry %%WWWDIR%%/lib/minify/Minify +@dirrmtry %%WWWDIR%%/lib/minify/HTTP +@dirrmtry %%WWWDIR%%/lib/minify +@dirrmtry %%WWWDIR%%/lib/max/resources +@dirrmtry %%WWWDIR%%/lib/max/other/capping +@dirrmtry %%WWWDIR%%/lib/max/other +@dirrmtry %%WWWDIR%%/lib/max/language/zh_TW +@dirrmtry %%WWWDIR%%/lib/max/language/zh_CN +@dirrmtry %%WWWDIR%%/lib/max/language/unsupported +@dirrmtry %%WWWDIR%%/lib/max/language/uk +@dirrmtry %%WWWDIR%%/lib/max/language/tr +@dirrmtry %%WWWDIR%%/lib/max/language/sv +@dirrmtry %%WWWDIR%%/lib/max/language/sq +@dirrmtry %%WWWDIR%%/lib/max/language/sl +@dirrmtry %%WWWDIR%%/lib/max/language/sk +@dirrmtry %%WWWDIR%%/lib/max/language/ru +@dirrmtry %%WWWDIR%%/lib/max/language/ro +@dirrmtry %%WWWDIR%%/lib/max/language/pt_PT +@dirrmtry %%WWWDIR%%/lib/max/language/pt_BR +@dirrmtry %%WWWDIR%%/lib/max/language/pl +@dirrmtry %%WWWDIR%%/lib/max/language/nl +@dirrmtry %%WWWDIR%%/lib/max/language/nb +@dirrmtry %%WWWDIR%%/lib/max/language/ms +@dirrmtry %%WWWDIR%%/lib/max/language/lt +@dirrmtry %%WWWDIR%%/lib/max/language/ko +@dirrmtry %%WWWDIR%%/lib/max/language/ja +@dirrmtry %%WWWDIR%%/lib/max/language/it +@dirrmtry %%WWWDIR%%/lib/max/language/id +@dirrmtry %%WWWDIR%%/lib/max/language/hu +@dirrmtry %%WWWDIR%%/lib/max/language/he +@dirrmtry %%WWWDIR%%/lib/max/language/fr +@dirrmtry %%WWWDIR%%/lib/max/language/fa +@dirrmtry %%WWWDIR%%/lib/max/language/es +@dirrmtry %%WWWDIR%%/lib/max/language/en +@dirrmtry %%WWWDIR%%/lib/max/language/el +@dirrmtry %%WWWDIR%%/lib/max/language/de +@dirrmtry %%WWWDIR%%/lib/max/language/da +@dirrmtry %%WWWDIR%%/lib/max/language/cy +@dirrmtry %%WWWDIR%%/lib/max/language/cs +@dirrmtry %%WWWDIR%%/lib/max/language/bg +@dirrmtry %%WWWDIR%%/lib/max/language/ar +@dirrmtry %%WWWDIR%%/lib/max/language +@dirrmtry %%WWWDIR%%/lib/max/deliverycache +@dirrmtry %%WWWDIR%%/lib/max/data +@dirrmtry %%WWWDIR%%/lib/max/Util +@dirrmtry %%WWWDIR%%/lib/max/Plugin +@dirrmtry %%WWWDIR%%/lib/max/Delivery/templates +@dirrmtry %%WWWDIR%%/lib/max/Delivery +@dirrmtry %%WWWDIR%%/lib/max/Dal/data +@dirrmtry %%WWWDIR%%/lib/max/Dal/Inventory +@dirrmtry %%WWWDIR%%/lib/max/Dal/DataObjects +@dirrmtry %%WWWDIR%%/lib/max/Dal/Admin +@dirrmtry %%WWWDIR%%/lib/max/Dal +@dirrmtry %%WWWDIR%%/lib/max/Admin/data +@dirrmtry %%WWWDIR%%/lib/max/Admin/UI/Field +@dirrmtry %%WWWDIR%%/lib/max/Admin/UI +@dirrmtry %%WWWDIR%%/lib/max/Admin/Invocation +@dirrmtry %%WWWDIR%%/lib/max/Admin/Inventory/themes +@dirrmtry %%WWWDIR%%/lib/max/Admin/Inventory +@dirrmtry %%WWWDIR%%/lib/max/Admin +@dirrmtry %%WWWDIR%%/lib/max +@dirrmtry %%WWWDIR%%/lib/junit +@dirrmtry %%WWWDIR%%/lib/java-xmlrpc-2.0 +@dirrmtry %%WWWDIR%%/lib/java-xmlrpc +@dirrmtry %%WWWDIR%%/lib/fonts/Bitstream +@dirrmtry %%WWWDIR%%/lib/fonts +@dirrmtry %%WWWDIR%%/lib/Zend/XmlRpc/Value +@dirrmtry %%WWWDIR%%/lib/Zend/XmlRpc/Server +@dirrmtry %%WWWDIR%%/lib/Zend/XmlRpc/Response +@dirrmtry %%WWWDIR%%/lib/Zend/XmlRpc/Request +@dirrmtry %%WWWDIR%%/lib/Zend/XmlRpc/Client +@dirrmtry %%WWWDIR%%/lib/Zend/XmlRpc +@dirrmtry %%WWWDIR%%/lib/Zend/Validate/Hostname +@dirrmtry %%WWWDIR%%/lib/Zend/Validate/Barcode +@dirrmtry %%WWWDIR%%/lib/Zend/Validate +@dirrmtry %%WWWDIR%%/lib/Zend/Uri +@dirrmtry %%WWWDIR%%/lib/Zend/Translate/Adapter +@dirrmtry %%WWWDIR%%/lib/Zend/Translate +@dirrmtry %%WWWDIR%%/lib/Zend/Locale/Math +@dirrmtry %%WWWDIR%%/lib/Zend/Locale/Data +@dirrmtry %%WWWDIR%%/lib/Zend/Locale +@dirrmtry %%WWWDIR%%/lib/Zend/Http/Client/Adapter +@dirrmtry %%WWWDIR%%/lib/Zend/Http/Client +@dirrmtry %%WWWDIR%%/lib/Zend/Http +@dirrmtry %%WWWDIR%%/lib/Zend +@dirrmtry %%WWWDIR%%/lib/OX/Util +@dirrmtry %%WWWDIR%%/lib/OX/Upgrade/Util +@dirrmtry %%WWWDIR%%/lib/OX/Upgrade/PostUpgradeTask +@dirrmtry %%WWWDIR%%/lib/OX/Upgrade/InstallPlugin +@dirrmtry %%WWWDIR%%/lib/OX/Upgrade +@dirrmtry %%WWWDIR%%/lib/OX/Plugin +@dirrmtry %%WWWDIR%%/lib/OX/PC/API +@dirrmtry %%WWWDIR%%/lib/OX/PC +@dirrmtry %%WWWDIR%%/lib/OX/Maintenance/Statistics/Task +@dirrmtry %%WWWDIR%%/lib/OX/Maintenance/Statistics +@dirrmtry %%WWWDIR%%/lib/OX/Maintenance/Priority +@dirrmtry %%WWWDIR%%/lib/OX/Maintenance +@dirrmtry %%WWWDIR%%/lib/OX/M2M +@dirrmtry %%WWWDIR%%/lib/OX/Extension/reports +@dirrmtry %%WWWDIR%%/lib/OX/Extension/maintenanceStatisticsTask +@dirrmtry %%WWWDIR%%/lib/OX/Extension/maintenancePriorityTask +@dirrmtry %%WWWDIR%%/lib/OX/Extension/invocationTags +@dirrmtry %%WWWDIR%%/lib/OX/Extension/geoTargeting +@dirrmtry %%WWWDIR%%/lib/OX/Extension/deliveryLog/DB +@dirrmtry %%WWWDIR%%/lib/OX/Extension/deliveryLog +@dirrmtry %%WWWDIR%%/lib/OX/Extension/deliveryLimitations +@dirrmtry %%WWWDIR%%/lib/OX/Extension/deliveryCacheStore +@dirrmtry %%WWWDIR%%/lib/OX/Extension/deliveryAdSelect +@dirrmtry %%WWWDIR%%/lib/OX/Extension/deliveryAdRender +@dirrmtry %%WWWDIR%%/lib/OX/Extension/bannerTypeText +@dirrmtry %%WWWDIR%%/lib/OX/Extension/bannerTypeHtml +@dirrmtry %%WWWDIR%%/lib/OX/Extension/authentication +@dirrmtry %%WWWDIR%%/lib/OX/Extension/api +@dirrmtry %%WWWDIR%%/lib/OX/Extension/3rdPartyServers +@dirrmtry %%WWWDIR%%/lib/OX/Extension +@dirrmtry %%WWWDIR%%/lib/OX/Dal/Market +@dirrmtry %%WWWDIR%%/lib/OX/Dal/Maintenance/Statistics +@dirrmtry %%WWWDIR%%/lib/OX/Dal/Maintenance +@dirrmtry %%WWWDIR%%/lib/OX/Dal/EntityService +@dirrmtry %%WWWDIR%%/lib/OX/Dal/DB_DataObjects +@dirrmtry %%WWWDIR%%/lib/OX/Dal +@dirrmtry %%WWWDIR%%/lib/OX/Admin/UI/Minify +@dirrmtry %%WWWDIR%%/lib/OX/Admin/UI/Install +@dirrmtry %%WWWDIR%%/lib/OX/Admin/UI/Event +@dirrmtry %%WWWDIR%%/lib/OX/Admin/UI/Controller +@dirrmtry %%WWWDIR%%/lib/OX/Admin/UI +@dirrmtry %%WWWDIR%%/lib/OX/Admin +@dirrmtry %%WWWDIR%%/lib/OX +@dirrmtry %%WWWDIR%%/lib/OA/Upgrade +@dirrmtry %%WWWDIR%%/lib/OA/Task +@dirrmtry %%WWWDIR%%/lib/OA/Permission +@dirrmtry %%WWWDIR%%/lib/OA/Maintenance/Priority/DeliveryLimitation +@dirrmtry %%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer/Task +@dirrmtry %%WWWDIR%%/lib/OA/Maintenance/Priority/AdServer +@dirrmtry %%WWWDIR%%/lib/OA/Maintenance/Priority +@dirrmtry %%WWWDIR%%/lib/OA/Maintenance +@dirrmtry %%WWWDIR%%/lib/OA/Dll +@dirrmtry %%WWWDIR%%/lib/OA/Dashboard/Widgets +@dirrmtry %%WWWDIR%%/lib/OA/Dashboard +@dirrmtry %%WWWDIR%%/lib/OA/Dal/Statistics +@dirrmtry %%WWWDIR%%/lib/OA/Dal/Maintenance +@dirrmtry %%WWWDIR%%/lib/OA/Dal/Delivery +@dirrmtry %%WWWDIR%%/lib/OA/Dal/Central +@dirrmtry %%WWWDIR%%/lib/OA/Dal +@dirrmtry %%WWWDIR%%/lib/OA/DB/Table +@dirrmtry %%WWWDIR%%/lib/OA/DB/DataObject +@dirrmtry %%WWWDIR%%/lib/OA/DB/CustomDatatypes +@dirrmtry %%WWWDIR%%/lib/OA/DB/Charset +@dirrmtry %%WWWDIR%%/lib/OA/DB/AdvisoryLock +@dirrmtry %%WWWDIR%%/lib/OA/DB +@dirrmtry %%WWWDIR%%/lib/OA/Creative/File +@dirrmtry %%WWWDIR%%/lib/OA/Creative +@dirrmtry %%WWWDIR%%/lib/OA/Central +@dirrmtry %%WWWDIR%%/lib/OA/Cache +@dirrmtry %%WWWDIR%%/lib/OA/Algorithm/Dependency/Source +@dirrmtry %%WWWDIR%%/lib/OA/Algorithm/Dependency +@dirrmtry %%WWWDIR%%/lib/OA/Algorithm +@dirrmtry %%WWWDIR%%/lib/OA/Admin/UI/model +@dirrmtry %%WWWDIR%%/lib/OA/Admin/UI/component/rule +@dirrmtry %%WWWDIR%%/lib/OA/Admin/UI/component/decorator +@dirrmtry %%WWWDIR%%/lib/OA/Admin/UI/component +@dirrmtry %%WWWDIR%%/lib/OA/Admin/UI/Field +@dirrmtry %%WWWDIR%%/lib/OA/Admin/UI +@dirrmtry %%WWWDIR%%/lib/OA/Admin/Statistics/themes +@dirrmtry %%WWWDIR%%/lib/OA/Admin/Statistics/Fields/Delivery +@dirrmtry %%WWWDIR%%/lib/OA/Admin/Statistics/Fields +@dirrmtry %%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/themes +@dirrmtry %%WWWDIR%%/lib/OA/Admin/Statistics/Delivery/Controller +@dirrmtry %%WWWDIR%%/lib/OA/Admin/Statistics/Delivery +@dirrmtry %%WWWDIR%%/lib/OA/Admin/Statistics +@dirrmtry %%WWWDIR%%/lib/OA/Admin/Reports +@dirrmtry %%WWWDIR%%/lib/OA/Admin/Menu +@dirrmtry %%WWWDIR%%/lib/OA/Admin +@dirrmtry %%WWWDIR%%/lib/OA +@dirrmtry %%WWWDIR%%/lib/JSON +@dirrmtry %%WWWDIR%%/lib +@dirrmtry %%WWWDIR%%/etc/xmlcache +@dirrmtry %%WWWDIR%%/etc/plugins +@dirrmtry %%WWWDIR%%/etc/permanentcache +@dirrmtry %%WWWDIR%%/etc/changes/tools +@dirrmtry %%WWWDIR%%/etc/changes/tasks +@dirrmtry %%WWWDIR%%/etc/changes +@dirrmtry %%WWWDIR%%/etc +@dirrmtry %%WWWDIR%%/docs +@dirrmtry %%WWWDIR%% --- openx.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 07:50:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48F251065686; Fri, 2 Mar 2012 07:50:33 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2112F8FC08; Fri, 2 Mar 2012 07:50:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q227oX1L094890; Fri, 2 Mar 2012 07:50:33 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q227oWd9094886; Fri, 2 Mar 2012 07:50:32 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 07:50:32 GMT Message-Id: <201203020750.q227oWd9094886@freefall.freebsd.org> To: andrej.zverev@gmail.com, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165613: [UPDATE] www/openx to 2.8.8 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, 02 Mar 2012 07:50:33 -0000 Synopsis: [UPDATE] www/openx to 2.8.8 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Mar 2 07:50:32 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165613 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 08:00:25 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 198661065673 for ; Fri, 2 Mar 2012 08:00:25 +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 F059E8FC12 for ; Fri, 2 Mar 2012 08:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2280OE5003481 for ; Fri, 2 Mar 2012 08:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2280OhC003469; Fri, 2 Mar 2012 08:00:24 GMT (envelope-from gnats) Date: Fri, 2 Mar 2012 08:00:24 GMT Message-Id: <201203020800.q2280OhC003469@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/165613: [UPDATE] www/openx to 2.8.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 08:00:25 -0000 The following reply was made to PR ports/165613; it has been noted by GNATS. From: Edwin Groothuis To: meritus@innervision.pl Cc: bug-followup@FreeBSD.org Subject: Re: ports/165613: [UPDATE] www/openx to 2.8.8 Date: Fri, 2 Mar 2012 07:50:30 UT Maintainer of www/openx, Please note that PR ports/165613 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165613 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 08:01:08 2012 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 B23D1106566C; Fri, 2 Mar 2012 08:01:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 89CBC8FC16; Fri, 2 Mar 2012 08:01:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q228186o004561; Fri, 2 Mar 2012 08:01:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22818o1004557; Fri, 2 Mar 2012 08:01:08 GMT (envelope-from linimon) Date: Fri, 2 Mar 2012 08:01:08 GMT Message-Id: <201203020801.q22818o1004557@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/165558: add --enable-local-infile option to mysql-server ports 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, 02 Mar 2012 08:01:08 -0000 Synopsis: add --enable-local-infile option to mysql-server ports Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: linimon Responsible-Changed-When: Fri Mar 2 08:00:56 UTC 2012 Responsible-Changed-Why: over to maintainer of the ports in question. http://www.freebsd.org/cgi/query-pr.cgi?pr=165558 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 09:30:12 2012 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 DAFF41065679 for ; Fri, 2 Mar 2012 09:30:12 +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 B22B68FC1E for ; Fri, 2 Mar 2012 09:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q229UCsI089120 for ; Fri, 2 Mar 2012 09:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q229UCAr089118; Fri, 2 Mar 2012 09:30:12 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 09:30:12 GMT Resent-Message-Id: <201203020930.q229UCAr089118@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, Armin Pirkovitsch Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7EB91065673 for ; Fri, 2 Mar 2012 09:29:55 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B9E668FC0A for ; Fri, 2 Mar 2012 09:29:55 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q229Ttwl006878 for ; Fri, 2 Mar 2012 09:29:55 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q229Ttme006877; Fri, 2 Mar 2012 09:29:55 GMT (envelope-from nobody) Message-Id: <201203020929.q229Ttme006877@red.freebsd.org> Date: Fri, 2 Mar 2012 09:29:55 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165614: [PATCH] deskutils/recoll update to 1.16.2 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, 02 Mar 2012 09:30:13 -0000 >Number: 165614 >Category: ports >Synopsis: [PATCH] deskutils/recoll update to 1.16.2 >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 Mar 02 09:30:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: deskutils/recoll/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/deskutils/recoll/Makefile,v retrieving revision 1.49 diff -u -r1.49 Makefile --- deskutils/recoll/Makefile 7 Feb 2012 01:35:04 -0000 1.49 +++ deskutils/recoll/Makefile 1 Mar 2012 13:55:53 -0000 @@ -6,8 +6,7 @@ # PORTNAME= recoll -PORTVERSION= 1.15.5 -PORTREVISION= 1 +PORTVERSION= 1.16.2 CATEGORIES= deskutils MASTER_SITES= http://www.lesbonscomptes.com/recoll/ Index: deskutils/recoll/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/deskutils/recoll/distinfo,v retrieving revision 1.27 diff -u -r1.27 distinfo --- deskutils/recoll/distinfo 13 May 2011 14:48:17 -0000 1.27 +++ deskutils/recoll/distinfo 1 Mar 2012 13:56:07 -0000 @@ -1,2 +1,2 @@ -SHA256 (recoll-1.15.5.tar.gz) = dec55fadd7475addcf2a005c78260f0fcb6450ef0f12ece96e3cda3e6ad06891 -SIZE (recoll-1.15.5.tar.gz) = 1319396 +SHA256 (recoll-1.16.2.tar.gz) = f0f29dff2d82ef8541c51963870f31daf28472f3c8822c81c17c346769b77355 +SIZE (recoll-1.16.2.tar.gz) = 1422148 Index: deskutils/recoll/pkg-plist =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/deskutils/recoll/pkg-plist,v retrieving revision 1.17 diff -u -r1.17 pkg-plist --- deskutils/recoll/pkg-plist 13 May 2011 14:48:17 -0000 1.17 +++ deskutils/recoll/pkg-plist 1 Mar 2012 14:34:05 -0000 @@ -41,6 +41,7 @@ %%DATADIR%%/filters/rclpython %%DATADIR%%/filters/rclppt %%DATADIR%%/filters/rclps +%%DATADIR%%/filters/rclrar %%DATADIR%%/filters/rclrtf %%DATADIR%%/filters/rclscribus %%DATADIR%%/filters/rclshowinfo @@ -50,6 +51,7 @@ %%DATADIR%%/filters/rcltex %%DATADIR%%/filters/rcltext %%DATADIR%%/filters/rcluncomp +%%DATADIR%%/filters/rclwar %%DATADIR%%/filters/rclwpd %%DATADIR%%/filters/rclxls %%DATADIR%%/filters/rclzip @@ -75,6 +77,7 @@ %%DATADIR%%/images/text-x-python.png %%DATADIR%%/images/txt.png %%DATADIR%%/images/wordprocessing.png +%%DATADIR%%/translations/recoll_cs.qm %%DATADIR%%/translations/recoll_fr.qm %%DATADIR%%/translations/recoll_it.qm %%DATADIR%%/translations/recoll_lt.qm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 09:30:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2F721065674; Fri, 2 Mar 2012 09:30:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C726C8FC13; Fri, 2 Mar 2012 09:30:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q229UNjF089794; Fri, 2 Mar 2012 09:30:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q229UNiT089788; Fri, 2 Mar 2012 09:30:23 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 09:30:23 GMT Message-Id: <201203020930.q229UNiT089788@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165614: [PATCH] deskutils/recoll update to 1.16.2 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, 02 Mar 2012 09:30:24 -0000 Synopsis: [PATCH] deskutils/recoll update to 1.16.2 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 09:30:23 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165614 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 09:40:14 2012 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 63F011065672 for ; Fri, 2 Mar 2012 09:40:14 +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 23D168FC1A for ; Fri, 2 Mar 2012 09:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q229eEXv000533 for ; Fri, 2 Mar 2012 09:40:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q229eEYX000532; Fri, 2 Mar 2012 09:40:14 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 09:40:14 GMT Resent-Message-Id: <201203020940.q229eEYX000532@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, Armin Pirkovitsch Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3B1B61065704 for ; Fri, 2 Mar 2012 09:31:07 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 37AC58FC1F for ; Fri, 2 Mar 2012 09:31:06 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q229V6dD007037 for ; Fri, 2 Mar 2012 09:31:06 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q229V5iA007036; Fri, 2 Mar 2012 09:31:05 GMT (envelope-from nobody) Message-Id: <201203020931.q229V5iA007036@red.freebsd.org> Date: Fri, 2 Mar 2012 09:31:05 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165615: [PATCH] editors/jedit update to 4.5.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, 02 Mar 2012 09:40:14 -0000 >Number: 165615 >Category: ports >Synopsis: [PATCH] editors/jedit update to 4.5.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 Mar 02 09:40:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: editors/jedit/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/editors/jedit/Makefile,v retrieving revision 1.37 diff -u -r1.37 Makefile --- editors/jedit/Makefile 14 Nov 2011 14:31:11 -0000 1.37 +++ editors/jedit/Makefile 2 Mar 2012 09:26:20 -0000 @@ -6,7 +6,7 @@ # PORTNAME= jedit -PORTVERSION= 4.4.2 +PORTVERSION= 4.5.0 PORTEPOCH= 1 CATEGORIES= editors java MASTER_SITES= SF Index: editors/jedit/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/editors/jedit/distinfo,v retrieving revision 1.22 diff -u -r1.22 distinfo --- editors/jedit/distinfo 14 Nov 2011 14:31:11 -0000 1.22 +++ editors/jedit/distinfo 1 Mar 2012 14:06:42 -0000 @@ -1,2 +1,2 @@ -SHA256 (jedit4.4.2install.jar) = a344eee8efbf3bff76b43b41efa4ced4b1f70351a29c48e58a964a03e7e6fbe4 -SIZE (jedit4.4.2install.jar) = 2881337 +SHA256 (jedit4.5.0install.jar) = ed8b2ec5cd2ddeddf4f52eaa7c1af70a65fb50ff244abc50368a9b3698c29a39 +SIZE (jedit4.5.0install.jar) = 2928863 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 09:40:14 2012 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 939261065674 for ; Fri, 2 Mar 2012 09:40:14 +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 6C2718FC1C for ; Fri, 2 Mar 2012 09:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q229eEu5000542 for ; Fri, 2 Mar 2012 09:40:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q229eEv3000541; Fri, 2 Mar 2012 09:40:14 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 09:40:14 GMT Resent-Message-Id: <201203020940.q229eEv3000541@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, Armin Pirkovitsch Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 142891065673 for ; Fri, 2 Mar 2012 09:32:17 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id DB5B68FC19 for ; Fri, 2 Mar 2012 09:32:16 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q229WGlQ007081 for ; Fri, 2 Mar 2012 09:32:16 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q229WGA7007080; Fri, 2 Mar 2012 09:32:16 GMT (envelope-from nobody) Message-Id: <201203020932.q229WGA7007080@red.freebsd.org> Date: Fri, 2 Mar 2012 09:32:16 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165616: [PATCH] games/awale update to 1.5 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, 02 Mar 2012 09:40:14 -0000 >Number: 165616 >Category: ports >Synopsis: [PATCH] games/awale update to 1.5 >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 Mar 02 09:40:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: games/awale/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/awale/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- games/awale/Makefile 8 Aug 2009 06:24:23 -0000 1.6 +++ games/awale/Makefile 2 Mar 2012 08:17:35 -0000 @@ -6,7 +6,7 @@ # PORTNAME= awale -PORTVERSION= 1.4 +PORTVERSION= 1.5 CATEGORIES= games MASTER_SITES= SAVANNAH @@ -15,7 +15,7 @@ OPTIONS= GUI "Installs Tcl/Tk GUI" on -MAN1= ${PORTNAME}.1 +MAN6= ${PORTNAME}.6 .include @@ -24,7 +24,7 @@ .else USE_TK_WRAPPER= yes .include "${PORTSDIR}/Mk/bsd.tcl.mk" -MAN1+= x${PORTNAME}.1 +MAN6+= x${PORTNAME}.6 PLIST_SUB+= GUI="" .endif @@ -38,14 +38,14 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.6 ${MANPREFIX}/man/man6 @${MKDIR} ${DATADIR} .for f in README *.bmp *.gif *.ico *.png ${INSTALL_DATA} ${WRKSRC}/src/${f} ${DATADIR} .endfor .if !defined(WITHOUT_X11) ${INSTALL_SCRIPT} ${WRKSRC}/src/x${PORTNAME} ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/man/x${PORTNAME}.1 ${MANPREFIX}/man/man1 + ${INSTALL_MAN} ${WRKSRC}/man/x${PORTNAME}.6 ${MANPREFIX}/man/man6 ${INSTALL_SCRIPT} ${WRKSRC}/src/xawale.tcl ${DATADIR} .endif .if !defined(NOPORTDOCS) Index: games/awale/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/awale/distinfo,v retrieving revision 1.5 diff -u -r1.5 distinfo --- games/awale/distinfo 3 Jul 2011 14:23:29 -0000 1.5 +++ games/awale/distinfo 1 Mar 2012 23:29:43 -0000 @@ -1,2 +1,2 @@ -SHA256 (awale-1.4.tar.gz) = 3429620880df22b76cbf0530a8c23d79124f0ff35077febabea8f26a925871b8 -SIZE (awale-1.4.tar.gz) = 485792 +SHA256 (awale-1.5.tar.gz) = 8bf9812fd6cfe142e18a35474f6a366c1b12f960863a33421f6d2e448ed47014 +SIZE (awale-1.5.tar.gz) = 489357 Index: games/awale/pkg-plist =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/awale/pkg-plist,v retrieving revision 1.4 diff -u -r1.4 pkg-plist --- games/awale/pkg-plist 8 Aug 2009 06:24:23 -0000 1.4 +++ games/awale/pkg-plist 2 Mar 2012 09:05:53 -0000 @@ -1,6 +1,5 @@ bin/awale %%GUI%%bin/xawale -%%DATADIR%%/Awale.gif %%DATADIR%%/AwaleBanner.bmp %%DATADIR%%/README %%DATADIR%%/Trou00.gif @@ -21,6 +20,7 @@ %%DATADIR%%/Trou15.gif %%DATADIR%%/awale.ico %%DATADIR%%/awale.png +%%DATADIR%%/board.gif %%DATADIR%%/copyright.gif %%DATADIR%%/fr.gif %%DATADIR%%/sp.gif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 09:40:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DEB2D1065675 for ; Fri, 2 Mar 2012 09:40:14 +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 B53788FC18 for ; Fri, 2 Mar 2012 09:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q229eENO000551 for ; Fri, 2 Mar 2012 09:40:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q229eEh3000550; Fri, 2 Mar 2012 09:40:14 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 09:40:14 GMT Resent-Message-Id: <201203020940.q229eEh3000550@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, Armin Pirkovitsch Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BEB1A106566C for ; Fri, 2 Mar 2012 09:34:33 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 900178FC0C for ; Fri, 2 Mar 2012 09:34:33 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q229YXSn024116 for ; Fri, 2 Mar 2012 09:34:33 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q229YXpp024115; Fri, 2 Mar 2012 09:34:33 GMT (envelope-from nobody) Message-Id: <201203020934.q229YXpp024115@red.freebsd.org> Date: Fri, 2 Mar 2012 09:34:33 GMT From: Armin Pirkovitsch To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165617: [PATCH] games/pyawale update to 0.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, 02 Mar 2012 09:40:15 -0000 >Number: 165617 >Category: ports >Synopsis: [PATCH] games/pyawale update to 0.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 Mar 02 09:40:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Armin Pirkovitsch >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: Index: games/pyawale/Makefile =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/pyawale/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- games/pyawale/Makefile 28 Mar 2010 06:35:32 -0000 1.9 +++ games/pyawale/Makefile 1 Mar 2012 23:35:56 -0000 @@ -6,8 +6,7 @@ # PORTNAME= pyawale -PORTVERSION= 0.3.8 -PORTREVISION= 2 +PORTVERSION= 0.4.0 CATEGORIES= games MASTER_SITES= http://download.gna.org/pyawale/ CENKES Index: games/pyawale/distinfo =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/pyawale/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- games/pyawale/distinfo 3 Jul 2011 14:24:42 -0000 1.6 +++ games/pyawale/distinfo 1 Mar 2012 23:36:25 -0000 @@ -1,2 +1,2 @@ -SHA256 (pyawale-0.3.8.tar.gz) = fae8a1b547b3a7c6b9980bd39707f8edaefd8d7df91aa1eeb85562bfa7e75420 -SIZE (pyawale-0.3.8.tar.gz) = 3743912 +SHA256 (pyawale-0.4.0.tar.gz) = 560f6f9f2cdf2c345efdfdf7b84f32b0de764e97fe33085c7bf37f9a0752d8b7 +SIZE (pyawale-0.4.0.tar.gz) = 3922605 Index: games/pyawale/pkg-plist =================================================================== RCS file: /mnt/nfs/oh/usr/home/ncvs/root/ports/ports/games/pyawale/pkg-plist,v retrieving revision 1.4 diff -u -r1.4 pkg-plist --- games/pyawale/pkg-plist 30 Dec 2008 23:47:53 -0000 1.4 +++ games/pyawale/pkg-plist 2 Mar 2012 08:14:09 -0000 @@ -69,9 +69,12 @@ %%DATADIR%%/src/images/awale_south_7.png %%DATADIR%%/src/images/awale_south_8.png %%DATADIR%%/src/images/awale_south_9.png +%%DATADIR%%/src/images/freesansbold.ttf %%DATADIR%%/docs/awale_algos.rest %%DATADIR%%/docs/awale_module.rest +%%DATADIR%%/docs/pyawale.desktop %%DATADIR%%/docs/pyawale.html +%%DATADIR%%/docs/pyawale.png %%DATADIR%%/docs/pyawale.rest %%DATADIR%%/docs/pyawale_end.jpg %%DATADIR%%/docs/pyawale_gui.jpg @@ -82,7 +85,6 @@ %%DATADIR%%/src/__init__.py %%DATADIR%%/src/__init__.pyc %%DATADIR%%/src/__init__.pyo -%%DATADIR%%/src/pyawale %%DATADIR%%/src/pyawale.py %%DATADIR%%/src/pyawale.pyc %%DATADIR%%/src/pyawale.pyo >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 09:40:33 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 39D281065688; Fri, 2 Mar 2012 09:40:33 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0DD1D8FC1E; Fri, 2 Mar 2012 09:40:33 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q229eWpJ001487; Fri, 2 Mar 2012 09:40:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q229eWNa001479; Fri, 2 Mar 2012 09:40:32 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 09:40:32 GMT Message-Id: <201203020940.q229eWNa001479@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165615: [PATCH] editors/jedit update to 4.5.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, 02 Mar 2012 09:40:33 -0000 Synopsis: [PATCH] editors/jedit update to 4.5.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 09:40:32 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165615 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 09:40:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AEC6D1065692; Fri, 2 Mar 2012 09:40:38 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 826808FC13; Fri, 2 Mar 2012 09:40:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q229ecdu002086; Fri, 2 Mar 2012 09:40:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q229ecIT002076; Fri, 2 Mar 2012 09:40:38 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 09:40:38 GMT Message-Id: <201203020940.q229ecIT002076@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165616: [PATCH] games/awale update to 1.5 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, 02 Mar 2012 09:40:38 -0000 Synopsis: [PATCH] games/awale update to 1.5 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 09:40:38 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165616 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 09:40:44 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F9891065698; Fri, 2 Mar 2012 09:40:44 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 336478FC27; Fri, 2 Mar 2012 09:40:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q229eiYR002803; Fri, 2 Mar 2012 09:40:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q229eidR002798; Fri, 2 Mar 2012 09:40:44 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 09:40:44 GMT Message-Id: <201203020940.q229eidR002798@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165617: [PATCH] games/pyawale update to 0.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, 02 Mar 2012 09:40:44 -0000 Synopsis: [PATCH] games/pyawale update to 0.4.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 09:40:43 UTC 2012 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165617 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 11:00:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A8D8B1065670; Fri, 2 Mar 2012 11:00:07 +0000 (UTC) (envelope-from freebsd@omnilan.de) Received: from host.omnilan.net (s1.omnilan.net [62.245.232.135]) by mx1.freebsd.org (Postfix) with ESMTP id B600D8FC13; Fri, 2 Mar 2012 11:00:06 +0000 (UTC) Received: from titan.wdn.omnilan.net (titan.lo4.wdn.omnilan.net [172.21.1.150]) (authenticated bits=0) by host.omnilan.net (8.13.8/8.13.8) with ESMTP id q22AllFf048805 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 2 Mar 2012 11:47:47 +0100 (CET) (envelope-from freebsd@omnilan.de) X-Authentication-Warning: smtp.dmz.omnisec.de: Host titan.lo4.wdn.omnilan.net [172.21.1.150] claimed to be titan.wdn.omnilan.net Message-ID: <4F50A553.9020806@omnilan.de> Date: Fri, 02 Mar 2012 11:47:47 +0100 From: "freebsd@omnilan.de" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; de-DE; rv:1.9.2.8) Gecko/20100906 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org References: <201202201120.q1KBKDef003429@freefall.freebsd.org> In-Reply-To: <201202201120.q1KBKDef003429@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: Subject: Re: ports/165316: New port: www/etomite-cms PHP based content management system 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, 02 Mar 2012 11:00:08 -0000 Please close that PR, the port needs overhauling before committing. I'll follow the higly appreciated hints of Michael Scheidell. -Harry From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 11:00:39 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 22D58106564A for ; Fri, 2 Mar 2012 11:00:39 +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 E21D08FC19 for ; Fri, 2 Mar 2012 11:00:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22B0cQ0074307 for ; Fri, 2 Mar 2012 11:00:38 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22B0cUF074306; Fri, 2 Mar 2012 11:00:38 GMT (envelope-from gnats) Date: Fri, 2 Mar 2012 11:00:38 GMT Message-Id: <201203021100.q22B0cUF074306@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: "freebsd@omnilan.de" Cc: Subject: Re: ports/165316: New port: www/etomite-cms PHP based content management system X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "freebsd@omnilan.de" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 11:00:39 -0000 The following reply was made to PR ports/165316; it has been noted by GNATS. From: "freebsd@omnilan.de" To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Cc: Subject: Re: ports/165316: New port: www/etomite-cms PHP based content management system Date: Fri, 02 Mar 2012 11:47:47 +0100 Please close that PR, the port needs overhauling before committing. I'll follow the higly appreciated hints of Michael Scheidell. -Harry From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 11:10:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9775D1065672 for ; Fri, 2 Mar 2012 11:10:13 +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 4C8DE8FC16 for ; Fri, 2 Mar 2012 11:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22BAD7p083060 for ; Fri, 2 Mar 2012 11:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22BADaU083059; Fri, 2 Mar 2012 11:10:13 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 11:10:13 GMT Resent-Message-Id: <201203021110.q22BADaU083059@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, Tsurutani Naoki Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7516106564A for ; Fri, 2 Mar 2012 11:07:52 +0000 (UTC) (envelope-from turutani@scphys.kyoto-u.ac.jp) Received: from smtp-auth.kuins.kyoto-u.ac.jp (smtp-auth.kuins.kyoto-u.ac.jp [133.3.248.237]) by mx1.freebsd.org (Postfix) with ESMTP id A3D7E8FC17 for ; Fri, 2 Mar 2012 11:07:52 +0000 (UTC) Received: from smtp-auth.kuins.kyoto-u.ac.jp (smtp-auth.kuins.kyoto-u.ac.jp [127.0.0.1]) by postfix.imss70 (Postfix) with ESMTP id 3BE182EC00B; Fri, 2 Mar 2012 20:07:51 +0900 (JST) Received: from h120.65.226.10.32118.vlan.kuins.net (wd232.BFL23.vectant.ne.jp [210.131.195.232]) by smtp-auth.kuins.kyoto-u.ac.jp (Postfix) with ESMTP id 220F92EC001; Fri, 2 Mar 2012 20:07:51 +0900 (JST) Received: from h120.65.226.10.32118.vlan.kuins.net (localhost [127.0.0.1]) by h120.65.226.10.32118.vlan.kuins.net (8.14.4/8.14.4/20071004-1) with ESMTP id q22B7jru095043; Fri, 2 Mar 2012 20:07:45 +0900 (JST) (envelope-from turutani@h120.65.226.10.32118.vlan.kuins.net) Received: (from turutani@localhost) by h120.65.226.10.32118.vlan.kuins.net (8.14.4/8.14.4/Submit) id q22B7eWm095042; Fri, 2 Mar 2012 20:07:40 +0900 (JST) (envelope-from turutani) Message-Id: <201203021107.q22B7eWm095042@h120.65.226.10.32118.vlan.kuins.net> Date: Fri, 2 Mar 2012 20:07:40 +0900 (JST) From: Tsurutani Naoki To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: turutani@scphys.kyoto-u.ac.jp Subject: ports/165619: fix plugin dir of multimedia/xine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tsurutani Naoki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 11:10:13 -0000 >Number: 165619 >Category: ports >Synopsis: fix plugin dir of multimedia/xine >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 11:10:12 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Tsurutani Naoki >Release: FreeBSD 8.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD h120.65.226.10.32118.vlan.kuins.net 8.2-PRERELEASE FreeBSD 8.2-PRERELEASE #25: Mon Jan 24 10:37:18 JST 2011 turutani@h120.65.226.10.32118.vlan.kuins.net:/usr/local/work/usr/obj/usr/src/sys/POLYMER i386 >Description: xine plugins dir is different from it in libxine; hence building multimedia/xine with WITH_CACA=1 fails. >How-To-Repeat: >Fix: plugins dir by libxine is ${LOCALBASE}/lib/xine/plugins/2.1, and that by xine is ${LOCALBASE}/lib/xine/plugins/1.29. I do not know which is correct, but it seems to be strange.. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 11:10:23 2012 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 AB54F1065674; Fri, 2 Mar 2012 11:10:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7DC638FC1A; Fri, 2 Mar 2012 11:10:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22BAN7q083273; Fri, 2 Mar 2012 11:10:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22BANsD083269; Fri, 2 Mar 2012 11:10:23 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 11:10:23 GMT Message-Id: <201203021110.q22BANsD083269@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, makc@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165619: fix plugin dir of multimedia/xine 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, 02 Mar 2012 11:10:23 -0000 Synopsis: fix plugin dir of multimedia/xine Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 11:10:23 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165619 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 12:50:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 706911065680 for ; Fri, 2 Mar 2012 12:50:11 +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 300008FC1A for ; Fri, 2 Mar 2012 12:50:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22CoBJ4080693 for ; Fri, 2 Mar 2012 12:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22CoBve080690; Fri, 2 Mar 2012 12:50:11 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 12:50:11 GMT Resent-Message-Id: <201203021250.q22CoBve080690@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, Muhammad Moinur Rahman <5u623l20@gmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48CB51065672 for ; Fri, 2 Mar 2012 12:41:37 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 347FF8FC0C for ; Fri, 2 Mar 2012 12:41:37 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q22Cfb9r046248 for ; Fri, 2 Mar 2012 12:41:37 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q22Cfa5l046247; Fri, 2 Mar 2012 12:41:36 GMT (envelope-from nobody) Message-Id: <201203021241.q22Cfa5l046247@red.freebsd.org> Date: Fri, 2 Mar 2012 12:41:36 GMT From: Muhammad Moinur Rahman <5u623l20@gmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165620: [UPDATE] x11-themes/qtcurve-kde3 to 1.8.5 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, 02 Mar 2012 12:50:11 -0000 >Number: 165620 >Category: ports >Synopsis: [UPDATE] x11-themes/qtcurve-kde3 to 1.8.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 12:50:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Muhammad Moinur Rahman >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD tinderbox.dzcrd.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Please add the distfile into FreeBSD distfile ftp. >How-To-Repeat: >Fix: Patch attached with submission follows: --- qtcurve-kde3.bak/Makefile 2012-02-29 02:16:39.693736908 +0600 +++ qtcurve-kde3/Makefile 2012-03-02 18:37:09.523177720 +0600 @@ -6,13 +6,13 @@ # PORTNAME= qtcurve -PORTVERSION= 1.8.4 +PORTVERSION= 1.8.5 CATEGORIES= x11-themes MASTER_SITES= http://craigd.wikispaces.com/file/view/ PKGNAMEPREFIX= kde-style- DISTNAME= QtCurve-KDE3-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= 5u623l20@gmail.com COMMENT= QtCurve KDE3 widget style USE_BZIP2= yes diff -ruN qtcurve-kde3.bak/distinfo qtcurve-kde3/distinfo --- qtcurve-kde3.bak/distinfo 2012-02-29 02:16:39.693736908 +0600 +++ qtcurve-kde3/distinfo 2012-02-29 02:18:16.013161234 +0600 @@ -1,2 +1,2 @@ -SHA256 (QtCurve-KDE3-1.8.4.tar.bz2) = c9e9118abc9453902a68f75d6ae9c052a12c845af713d6c7f9430b54648dde09 -SIZE (QtCurve-KDE3-1.8.4.tar.bz2) = 164578 +SHA256 (QtCurve-KDE3-1.8.5.tar.bz2) = 680a57b6124064df0674863a3a2a13642d81f508b29db58bff7255ea5e189048 +SIZE (QtCurve-KDE3-1.8.5.tar.bz2) = 164800 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 13:30:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A4A09106564A for ; Fri, 2 Mar 2012 13:30:09 +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 7DFA48FC17 for ; Fri, 2 Mar 2012 13:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22DU9Ec016014 for ; Fri, 2 Mar 2012 13:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22DU9Ik016013; Fri, 2 Mar 2012 13:30:09 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 13:30:09 GMT Resent-Message-Id: <201203021330.q22DU9Ik016013@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, Muhammad Moinur Rahman <5u623l20@gmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CBD441065719 for ; Fri, 2 Mar 2012 13:29:36 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B7B988FC15 for ; Fri, 2 Mar 2012 13:29:36 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q22DTa2r070667 for ; Fri, 2 Mar 2012 13:29:36 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q22DTaqw070637; Fri, 2 Mar 2012 13:29:36 GMT (envelope-from nobody) Message-Id: <201203021329.q22DTaqw070637@red.freebsd.org> Date: Fri, 2 Mar 2012 13:29:36 GMT From: Muhammad Moinur Rahman <5u623l20@gmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165621: [UPDATE] x11-themes/kde-style-polyester to 1.0.5 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, 02 Mar 2012 13:30:09 -0000 >Number: 165621 >Category: ports >Synopsis: [UPDATE] x11-themes/kde-style-polyester to 1.0.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 13:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Muhammad Moinur Rahman >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD tinderbox.dzcrd.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Please add the distfile into FreeBSD ftp distfile >How-To-Repeat: >Fix: Patch attached with submission follows: --- kde-style-polyester.bak/Makefile 2012-03-02 18:42:19.573841492 +0600 +++ kde-style-polyester/Makefile 2012-03-02 19:25:15.672035326 +0600 @@ -6,7 +6,7 @@ # PORTNAME= polyester -PORTVERSION= 1.0.4 +PORTVERSION= 1.0.5 PORTREVISION= 6 CATEGORIES= x11-themes kde MASTER_SITES= http://www.notmart.org/files/ \ @@ -14,7 +14,7 @@ MASTER_SITE_SUBDIR= markus PKGNAMEPREFIX= kde-style- -MAINTAINER= ports@FreeBSD.org +MAINTAINER= 5u623l20@gmail.com COMMENT= KDE style and window decoration USE_BZIP2= yes diff -ruN kde-style-polyester.bak/distinfo kde-style-polyester/distinfo --- kde-style-polyester.bak/distinfo 2012-03-02 18:42:19.573841492 +0600 +++ kde-style-polyester/distinfo 2012-03-02 18:54:49.066068297 +0600 @@ -1,2 +1,2 @@ -SHA256 (polyester-1.0.4.tar.bz2) = ff4f7face277efc33896b1e05a9ab3fb882e65b9341b8bc52d76e6d659ea08a1 -SIZE (polyester-1.0.4.tar.bz2) = 594563 +SHA256 (polyester-1.0.5.tar.bz2) = 6f093d5ffeea4644eb0911f419b383e5e3c257b4c85e59c1bcfb2db68c48c754 +SIZE (polyester-1.0.5.tar.bz2) = 599326 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 14:00:21 2012 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 B6AE5106564A for ; Fri, 2 Mar 2012 14:00:21 +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 841BA8FC13 for ; Fri, 2 Mar 2012 14:00:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22E0L9Y043689 for ; Fri, 2 Mar 2012 14:00:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22E0LvS043688; Fri, 2 Mar 2012 14:00:21 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 14:00:21 GMT Resent-Message-Id: <201203021400.q22E0LvS043688@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, Matthew Seaman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B338C106564A for ; Fri, 2 Mar 2012 13:51:32 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 246D78FC17 for ; Fri, 2 Mar 2012 13:51:31 +0000 (UTC) Received: from lucid-nonsense.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q22DpN2W029716 for ; Fri, 2 Mar 2012 13:51:23 GMT (envelope-from matthew@lucid-nonsense.infracaninophile.co.uk) Received: (from matthew@localhost) by lucid-nonsense.infracaninophile.co.uk (8.14.5/8.14.5/Submit) id q22DpNU9029715; Fri, 2 Mar 2012 13:51:23 GMT (envelope-from matthew) Message-Id: <201203021351.q22DpNU9029715@lucid-nonsense.infracaninophile.co.uk> Date: Fri, 2 Mar 2012 13:51:23 GMT From: Matthew Seaman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165623: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Seaman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 14:00:21 -0000 >Number: 165623 >Category: ports >Synopsis: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 14:00:21 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 8.3-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD lucid-nonsense.infracaninophile.co.uk 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #4 r232170: Sun Feb 26 10:27:22 GMT 2012 root@lucid-nonsense.infracaninophile.co.uk:/usr/obj/usr/src/sys/LUCID-NONSENSE amd64 >Description: bsd.commands.mk has: FILE?= /usr/bin/file but by far the most common use of ${FILE} in the ports is as a loop control variable for iterating through a list of files. This seems contrary and undesirable. Therefore change the variable to ${FILE_CMD} when the meaning is to run the file(1) application. There are only 10 instances that I can find by exhaustive search of the ports. Tinderbox results: https://redports.org/buildarchive/20120301135606-15513/ >How-To-Repeat: >Fix: --- FILE_CMD.diff begins here --- Index: Mk/bsd.commands.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.commands.mk,v retrieving revision 1.10 diff -u -u -r1.10 bsd.commands.mk --- Mk/bsd.commands.mk 22 Feb 2012 17:34:47 -0000 1.10 +++ Mk/bsd.commands.mk 1 Mar 2012 12:12:45 -0000 @@ -39,7 +39,7 @@ EGREP?= /usr/bin/egrep EXPR?= /bin/expr FALSE?= false # Shell builtin -FILE?= /usr/bin/file +FILE_CMD?= /usr/bin/file # FILE is a commonly used variable FIND?= /usr/bin/find FLEX?= /usr/bin/flex FMT?= /usr/bin/fmt Index: Mk/bsd.linux-rpm.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.linux-rpm.mk,v retrieving revision 1.26 diff -u -u -r1.26 bsd.linux-rpm.mk --- Mk/bsd.linux-rpm.mk 18 Apr 2011 13:07:21 -0000 1.26 +++ Mk/bsd.linux-rpm.mk 1 Mar 2012 12:13:02 -0000 @@ -187,7 +187,7 @@ do-install: . if ${BRANDELF_DIRS} @cd ${WRKSRC} && ${FIND} ${BRANDELF_DIRS} -type f -print0 \ - | ${XARGS} -0 ${FILE} | ${GREP} ELF | ${CUT} -d : -f 1 \ + | ${XARGS} -0 ${FILE_CMD} | ${GREP} ELF | ${CUT} -d : -f 1 \ | ${XARGS} ${BRANDELF} -t Linux . endif . if ${BRANDELF_FILES} Index: emulators/linux_base-f10/Makefile =================================================================== RCS file: /home/ncvs/ports/emulators/linux_base-f10/Makefile,v retrieving revision 1.61 diff -u -u -r1.61 Makefile --- emulators/linux_base-f10/Makefile 21 Jul 2011 04:39:21 -0000 1.61 +++ emulators/linux_base-f10/Makefile 1 Mar 2012 12:08:21 -0000 @@ -190,7 +190,7 @@ # @${CHMOD} u+w ${WRKSRC}/usr/bin/*db4* @${FIND} ${WRKSRC}/bin ${WRKSRC}/sbin/ ${WRKSRC}/usr/bin \ - ${WRKSRC}/usr/sbin -type f -print0 | ${XARGS} -0 ${FILE} \ + ${WRKSRC}/usr/sbin -type f -print0 | ${XARGS} -0 ${FILE_CMD} \ | ${GREP} ELF | ${CUT} -d : -f 1 \ | ${XARGS} ${BRANDELF} -t Linux @${BRANDELF} -t Linux ${WRKSRC}/lib/ld-2.9.so Index: emulators/linux_base-fc4/Makefile =================================================================== RCS file: /home/ncvs/ports/emulators/linux_base-fc4/Makefile,v retrieving revision 1.37 diff -u -u -r1.37 Makefile --- emulators/linux_base-fc4/Makefile 7 Mar 2011 15:08:19 -0000 1.37 +++ emulators/linux_base-fc4/Makefile 1 Mar 2012 12:07:57 -0000 @@ -167,7 +167,7 @@ @${CHMOD} u+w ${WRKSRC}/usr/bin/*db4* @${FIND} ${WRKSRC}/bin ${WRKSRC}/sbin/ ${WRKSRC}/usr/bin \ - ${WRKSRC}/usr/sbin -type f -print0 | ${XARGS} -0 ${FILE} \ + ${WRKSRC}/usr/sbin -type f -print0 | ${XARGS} -0 ${FILE_CMD} \ | ${GREP} ELF | ${CUT} -d : -f 1 \ | ${XARGS} ${BRANDELF} -t Linux @${BRANDELF} -t Linux ${WRKSRC}/lib/ld-2.3.6.so Index: emulators/linux_dist-gentoo-stage3/Makefile =================================================================== RCS file: /home/ncvs/ports/emulators/linux_dist-gentoo-stage3/Makefile,v retrieving revision 1.37 diff -u -u -r1.37 Makefile --- emulators/linux_dist-gentoo-stage3/Makefile 7 Feb 2012 17:56:41 -0000 1.37 +++ emulators/linux_dist-gentoo-stage3/Makefile 1 Mar 2012 12:12:56 -0000 @@ -107,7 +107,7 @@ @${CP} -p /etc/resolv.conf ${PREFIX}/${PREFIX_SUBDIR}/etc/ @${FIND} ${PREFIX}/${PREFIX_SUBDIR}bin ${PREFIX}/${PREFIX_SUBDIR}sbin/ \ ${PREFIX}/${PREFIX_SUBDIR}usr/bin ${PREFIX}/${PREFIX_SUBDIR}/usr/sbin \ - -type f -print0 | ${XARGS} -0 ${FILE} \ + -type f -print0 | ${XARGS} -0 ${FILE_CMD} \ | ${GREP} ELF | ${CUT} -d : -f 1 | ${XARGS} ${BRANDELF} -t Linux @${BRANDELF} -t Linux ${PREFIX}/${PREFIX_SUBDIR}/lib/ld-*.so @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL Index: games/doom-data/Makefile.include =================================================================== RCS file: /home/ncvs/ports/games/doom-data/Makefile.include,v retrieving revision 1.3 diff -u -u -r1.3 Makefile.include --- games/doom-data/Makefile.include 24 Apr 2006 21:03:30 -0000 1.3 +++ games/doom-data/Makefile.include 1 Mar 2012 12:13:00 -0000 @@ -25,7 +25,7 @@ . else pre-patch: @${FIND} ${WRKDIR} -type f -print0 | \ - ${XARGS} -0 ${FILE} | ${GREP} 'CRLF' | \ + ${XARGS} -0 ${FILE_CMD} | ${GREP} 'CRLF' | \ ${SED} -e "s/:.*//" | ${SED} -e 's/ /\\ /g' | \ ${XARGS} ${REINPLACE_CMD} -i "" -e "s/`${PRINTF} '\r'`$$//" . endif Index: games/linux-enemyterritory-etpub/Makefile =================================================================== RCS file: /home/ncvs/ports/games/linux-enemyterritory-etpub/Makefile,v retrieving revision 1.11 diff -u -u -r1.11 Makefile --- games/linux-enemyterritory-etpub/Makefile 27 Feb 2011 04:54:29 -0000 1.11 +++ games/linux-enemyterritory-etpub/Makefile 1 Mar 2012 12:13:01 -0000 @@ -39,7 +39,7 @@ pre-patch: @${FIND} ${WRKSRC} -type f -exec ${SH} -c \ - '${FILE} "$$0" | ${GREP} -q text && \ + '${FILE_CMD} "$$0" | ${GREP} -q text && \ ${REINPLACE_CMD} -i "" -e "s/ $$//" "$$0"' {} \; do-build: Index: games/quake-source/Makefile =================================================================== RCS file: /home/ncvs/ports/games/quake-source/Makefile,v retrieving revision 1.9 diff -u -u -r1.9 Makefile --- games/quake-source/Makefile 14 Mar 2011 16:47:43 -0000 1.9 +++ games/quake-source/Makefile 1 Mar 2012 12:12:57 -0000 @@ -38,7 +38,7 @@ .endif pre-patch: - @${FIND} ${WRKSRC} -type f | ${XARGS} ${FILE} | \ + @${FIND} ${WRKSRC} -type f | ${XARGS} ${FILE_CMD} | \ ${GREP} 'CRLF' | ${SED} -e 's/:.*//' | \ ${XARGS} ${REINPLACE_CMD} -i "" -e "s/`${PRINTF} '\r'`$$//" Index: games/quake3-data/Makefile.include =================================================================== RCS file: /home/ncvs/ports/games/quake3-data/Makefile.include,v retrieving revision 1.4 diff -u -u -r1.4 Makefile.include --- games/quake3-data/Makefile.include 20 Mar 2011 21:43:38 -0000 1.4 +++ games/quake3-data/Makefile.include 1 Mar 2012 12:05:16 -0000 @@ -25,7 +25,7 @@ . else pre-patch: @${FIND} ${WRKDIR} -type f -print0 | \ - ${XARGS} -0 ${FILE} | ${GREP} 'CRLF' | \ + ${XARGS} -0 ${FILE_CMD} | ${GREP} 'CRLF' | \ ${SED} -e "s/:.*//" | ${SED} -e 's/ /\\ /g' | \ ${XARGS} ${REINPLACE_CMD} -i "" -e "s/`${PRINTF} '\r'`$$//" . endif Index: science/afni/Makefile =================================================================== RCS file: /home/ncvs/ports/science/afni/Makefile,v retrieving revision 1.23 diff -u -u -r1.23 Makefile --- science/afni/Makefile 2 May 2011 12:44:49 -0000 1.23 +++ science/afni/Makefile 1 Mar 2012 11:51:41 -0000 @@ -104,7 +104,7 @@ ${MV} ${INSTALL_WRKSRC}/README* \ ${STAGE}/doc ${MV} ${INSTALL_WRKSRC}/abut ${INSTALL_WRKSRC}/afni_abut - for binary in `${FILE} ${INSTALL_WRKSRC}/* | fgrep 'ELF' | ${AWK} -F ':' ' { print $$1 }'` ; do \ + for binary in `${FILE_CMD} ${INSTALL_WRKSRC}/* | fgrep 'ELF' | ${AWK} -F ':' ' { print $$1 }'` ; do \ ${MV} $${binary} ${STAGE}/bin ; \ done ${MV} ${INSTALL_WRKSRC}/* \ Index: sysutils/daemontools/Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/daemontools/Makefile,v retrieving revision 1.35 diff -u -u -r1.35 Makefile --- sysutils/daemontools/Makefile 28 Feb 2012 17:23:51 -0000 1.35 +++ sysutils/daemontools/Makefile 1 Mar 2012 12:13:04 -0000 @@ -84,7 +84,7 @@ do-install: (while read cmd; do \ - if ${FILE} ${WRKSRC}/$$cmd | ${GREP} -q "shell script"; then \ + if ${FILE_CMD} ${WRKSRC}/$$cmd | ${GREP} -q "shell script"; then \ ${INSTALL_SCRIPT} ${WRKSRC}/$$cmd ${PREFIX}/bin; \ else \ ${INSTALL_PROGRAM} ${WRKSRC}/$$cmd ${PREFIX}/bin; \ --- FILE_CMD.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 14:10:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3ECFF1065676 for ; Fri, 2 Mar 2012 14:10:09 +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 10EF88FC18 for ; Fri, 2 Mar 2012 14:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22EA81B052533 for ; Fri, 2 Mar 2012 14:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22EA8sl052532; Fri, 2 Mar 2012 14:10:08 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 14:10:08 GMT Resent-Message-Id: <201203021410.q22EA8sl052532@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, Matthew Seaman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2AEA1065673 for ; Fri, 2 Mar 2012 14:05:31 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id 693AD8FC1E for ; Fri, 2 Mar 2012 14:05:31 +0000 (UTC) Received: from lucid-nonsense.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q22E5R5g030071 for ; Fri, 2 Mar 2012 14:05:27 GMT (envelope-from matthew@lucid-nonsense.infracaninophile.co.uk) Received: (from matthew@localhost) by lucid-nonsense.infracaninophile.co.uk (8.14.5/8.14.5/Submit) id q22E5RAi030070; Fri, 2 Mar 2012 14:05:27 GMT (envelope-from matthew) Message-Id: <201203021405.q22E5RAi030070@lucid-nonsense.infracaninophile.co.uk> Date: Fri, 2 Mar 2012 14:05:27 GMT From: Matthew Seaman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165624: Mk/bsd.port.mk -- record required shared libraries in pkg contents X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Seaman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 14:10:09 -0000 >Number: 165624 >Category: ports >Synopsis: Mk/bsd.port.mk -- record required shared libraries in pkg contents >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 14:10:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Matthew Seaman >Release: FreeBSD 8.3-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD lucid-nonsense.infracaninophile.co.uk 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #4 r232170: Sun Feb 26 10:27:22 GMT 2012 root@lucid-nonsense.infracaninophile.co.uk:/usr/obj/usr/src/sys/LUCID-NONSENSE amd64 >Description: This is means of solving the perennial problem: knowing what ports need to be rebuilt as the result of an ABI version bump of a shared library. Currently common advice is to rebuild all of the ports that depend on the port providing the library. That's frequently wasteful, involving pointless rebuilds of packages that don't link to the shared library in question at all. It's also something that has to be flagged up as a special instruction in UPDATING whereas I feel it should be a standard thing. The result of the patch is to add lines like so to the end of the +CONTENTS file (this is from xterm-278): [...] @comment @unexec /usr/local/bin/update-desktop-database > /dev/null || /usr/bin/true @comment SHLIB:libICE.so.6 @comment SHLIB:libSM.so.6 @comment SHLIB:libX11.so.6 @comment SHLIB:libXau.so.6 @comment SHLIB:libXaw7.so.7 @comment SHLIB:libXdmcp.so.6 @comment SHLIB:libXext.so.6 @comment SHLIB:libXft.so.2 @comment SHLIB:libXmu.so.6 @comment SHLIB:libXpm.so.4 @comment SHLIB:libXrender.so.1 @comment SHLIB:libXt.so.6 @comment SHLIB:libbz2.so.4 @comment SHLIB:libc.so.7 @comment SHLIB:libexpat.so.6 @comment SHLIB:libfontconfig.so.1 @comment SHLIB:libfreetype.so.9 @comment SHLIB:libncurses.so.8 @comment SHLIB:libpcre.so.1 @comment SHLIB:libpcreposix.so.0 @comment SHLIB:libpthread-stubs.so.0 @comment SHLIB:librpcsvc.so.5 @comment SHLIB:libutempter.so.0 @comment SHLIB:libxcb.so.2 @comment SHLIB:libz.so.5 @display +DISPLAY Considering this notice in /usr/ports/UPDATING: 20120214: AFFECTS: users of devel/pcre AUTHOR: dougb@FreeBSD.org Until all dependent ports have been updated you should update pcre in a manner that will preserve its old shared library. For example: # portmaster -w devel/pcre or # portupgrade devel/pcre I can now state with confidence that only the following ports would need to be rebuilt on my system: lucid-nonsense:/usr/ports:% grep -l '@comment SHLIB:libpcre.so' /var/db/pkg/*/+CONTENTS | cut -d '/' -f 5 apache-2.2.22_5 avahi-app-0.6.29_1 dbus-glib-0.94 gamin-0.1.10_4 gio-fam-backend-2.28.8_1 glib-2.28.8_4 gobject-introspection-0.10.8_1 libslang2-2.2.4_1 maildrop-2.5.5_1 nmap-5.61.t4_1 pcre-8.30_1 php5-5.3.10_1 xterm-278 This change seems to sit happily with the current pkg tools -- it survives pkg tarballs intact, and I haven't seen any problems in my testing. Of course, the timing is utterly wonderful, given that the bright new age of pkgng is almost upon us. I'm still finding my way around the pkgng sources, but my initial impression is that something similar could be implemented without excessive difficulty. >How-To-Repeat: >Fix: --- plist-shlib.diff begins here --- Index: bsd.commands.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.commands.mk,v retrieving revision 1.10 diff -u -u -r1.10 bsd.commands.mk --- bsd.commands.mk 22 Feb 2012 17:34:47 -0000 1.10 +++ bsd.commands.mk 1 Mar 2012 14:18:06 -0000 @@ -39,7 +39,7 @@ EGREP?= /usr/bin/egrep EXPR?= /bin/expr FALSE?= false # Shell builtin -FILE?= /usr/bin/file +FILE_CMD?= /usr/bin/file # FILE is a commonly used variable FIND?= /usr/bin/find FLEX?= /usr/bin/flex FMT?= /usr/bin/fmt @@ -53,6 +53,7 @@ ID?= /usr/bin/id IDENT?= /usr/bin/ident LDCONFIG?= /sbin/ldconfig +LDD?= /usr/bin/ldd LN?= /bin/ln LS?= /bin/ls MKDIR?= /bin/mkdir -p Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.706 diff -u -u -r1.706 bsd.port.mk --- bsd.port.mk 22 Feb 2012 17:34:47 -0000 1.706 +++ bsd.port.mk 1 Mar 2012 14:17:44 -0000 @@ -4318,8 +4318,8 @@ install-desktop-entries install-license install-rc-script \ post-install post-install-script add-plist-info \ add-plist-docs add-plist-examples add-plist-data \ - add-plist-post fix-plist-sequence compress-man \ - install-ldconfig-file fake-pkg security-check + add-plist-post add-plist-shlibs fix-plist-sequence \ + compress-man install-ldconfig-file fake-pkg security-check _PACKAGE_DEP= install _PACKAGE_SEQ= package-message pre-package pre-package-script \ do-package post-package-script @@ -5859,6 +5859,29 @@ .endif .endif +.if !target(add-plist-shlibs) +add-plist-shlibs: +# Record all of the shared libraries used by this port + @${ECHO_MSG} "===> Recording shared libraries used by ${PKGNAME}" + @${RM} -f ${WRKDIR}/.PLIST.shlibs + @for i in `${GREP} -v '^@' ${TMPPLIST}` ; do \ + f="${PREFIX}/$$i" ; \ + if [ ! -L $$f -a -f $$f ] ; then \ + case `${FILE_CMD} $$f` in \ + *GNU/Linux*) \ + continue \ + ;; \ + *ELF*) \ + ${LDD} -f '%o\n' $$f 2>/dev/null \ + >> ${WRKDIR}/.PLIST.shlibs \ + ;; \ + esac ; \ + fi ; \ + done + @${SORT} -u < ${WRKDIR}/.PLIST.shlibs | \ + ${SED} -e 's,^,@comment SHLIB:,' >> ${TMPPLIST} +.endif + # Compress (or uncompress) and symlink manpages. .if !target(compress-man) compress-man: --- plist-shlib.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 14:10:27 2012 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 243FE106566C; Fri, 2 Mar 2012 14:10:27 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EC9A68FC17; Fri, 2 Mar 2012 14:10:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22EAQFL053282; Fri, 2 Mar 2012 14:10:26 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22EAQsC053277; Fri, 2 Mar 2012 14:10:26 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 14:10:26 GMT Message-Id: <201203021410.q22EAQsC053277@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165624: Mk/bsd.port.mk -- record required shared libraries in pkg contents 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, 02 Mar 2012 14:10:27 -0000 Synopsis: Mk/bsd.port.mk -- record required shared libraries in pkg contents Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 14:10:26 UTC 2012 Responsible-Changed-Why: bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165624 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 14:40:07 2012 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 43180106566B for ; Fri, 2 Mar 2012 14:40:07 +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 167558FC12 for ; Fri, 2 Mar 2012 14:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22Ee6ND081493 for ; Fri, 2 Mar 2012 14:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22Ee6i9081492; Fri, 2 Mar 2012 14:40:06 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 14:40:06 GMT Resent-Message-Id: <201203021440.q22Ee6i9081492@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, Hirohisa Yamaguchi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98D17106566C for ; Fri, 2 Mar 2012 14:32:57 +0000 (UTC) (envelope-from umq@ueo.co.jp) Received: from msa03b.plala.or.jp (msa03.plala.or.jp [IPv6:2400:7800:0:5010::3]) by mx1.freebsd.org (Postfix) with ESMTP id 18B638FC0A for ; Fri, 2 Mar 2012 14:32:56 +0000 (UTC) Received: from terpsichore.kaumoge.org ([118.16.87.28]) by msa03b.plala.or.jp with ESMTP id <20120302143228.FKDY19254.msa03b.plala.or.jp@terpsichore.kaumoge.org> for ; Fri, 2 Mar 2012 23:32:28 +0900 Received: from calliope.kaumoge.org (calliope.kaumoge.org [192.168.24.120]) by terpsichore.kaumoge.org (8.14.4/8.14.4/20101205) with ESMTP id q22EWRpO009399 for ; Fri, 2 Mar 2012 23:32:28 +0900 (JST) (envelope-from umq@ueo.co.jp) Message-Id: <8662en5b0k.wl%umq@ueo.co.jp> Date: Fri, 02 Mar 2012 23:32:27 +0900 From: Hirohisa Yamaguchi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165625: [maintainer] devel/ocaml-camlp5 update to 6.04 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, 02 Mar 2012 14:40:07 -0000 >Number: 165625 >Category: ports >Synopsis: [maintainer] devel/ocaml-camlp5 update to 6.04 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 14:40:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Hirohisa Yamaguchi >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD calliope.****.org 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The new version of devel/ocaml-camlp5 6.04 is available. WWW: http://cristal.inria.fr/~ddr/camlp5/ >How-To-Repeat: N/A >Fix: The patch follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/ocaml-camlp5/Makefile,v retrieving revision 1.11 diff -p -u -r1.11 Makefile --- Makefile 7 Feb 2012 09:52:06 -0000 1.11 +++ Makefile 2 Mar 2012 14:21:31 -0000 @@ -7,7 +7,7 @@ # PORTNAME= camlp5 -PORTVERSION= 6.03 +PORTVERSION= 6.04 CATEGORIES= devel MASTER_SITES= http://cristal.inria.fr/~ddr/camlp5/distrib/src/ \ http://pauillac.inria.fr/~ddr/camlp5/distrib/src/ Index: distinfo =================================================================== RCS file: /home/ncvs/ports/devel/ocaml-camlp5/distinfo,v retrieving revision 1.8 diff -p -u -r1.8 distinfo --- distinfo 7 Feb 2012 09:52:06 -0000 1.8 +++ distinfo 2 Mar 2012 14:21:31 -0000 @@ -1,2 +1,2 @@ -SHA256 (ocaml-camlp5/camlp5-6.03.tgz) = 085e3cfaec319855e818f218b1d50ef1c0ca4742a40526f35cbc2b23df7acad5 -SIZE (ocaml-camlp5/camlp5-6.03.tgz) = 659839 +SHA256 (ocaml-camlp5/camlp5-6.04.tgz) = 52a39d931e88c0b2a315cca2daff35fd5cc2c0abd92abf339e9ca7a7fad9fcb2 +SIZE (ocaml-camlp5/camlp5-6.04.tgz) = 660563 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 14:40:07 2012 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 91C421065670 for ; Fri, 2 Mar 2012 14:40:07 +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 675A28FC15 for ; Fri, 2 Mar 2012 14:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22Ee7Kk081528 for ; Fri, 2 Mar 2012 14:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22Ee7hW081521; Fri, 2 Mar 2012 14:40:07 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 14:40:07 GMT Resent-Message-Id: <201203021440.q22Ee7hW081521@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, Hirohisa Yamaguchi Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AC5FA106566B for ; Fri, 2 Mar 2012 14:34:47 +0000 (UTC) (envelope-from umq@ueo.co.jp) Received: from msa03b.plala.or.jp (msa03.plala.or.jp [58.93.240.3]) by mx1.freebsd.org (Postfix) with ESMTP id 408458FC08 for ; Fri, 2 Mar 2012 14:34:46 +0000 (UTC) Received: from terpsichore.kaumoge.org ([118.16.87.28]) by msa03b.plala.or.jp with ESMTP id <20120302143446.FKOJ19254.msa03b.plala.or.jp@terpsichore.kaumoge.org> for ; Fri, 2 Mar 2012 23:34:46 +0900 Received: from calliope.kaumoge.org (calliope.kaumoge.org [192.168.24.120]) by terpsichore.kaumoge.org (8.14.4/8.14.4/20101205) with ESMTP id q22EYjGR009414 for ; Fri, 2 Mar 2012 23:34:45 +0900 (JST) (envelope-from umq@ueo.co.jp) Message-Id: <864nu75awq.wl%umq@ueo.co.jp> Date: Fri, 02 Mar 2012 23:34:45 +0900 From: Hirohisa Yamaguchi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165626: [patch] sysutils/ledit update to 2.03 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, 02 Mar 2012 14:40:07 -0000 >Number: 165626 >Category: ports >Synopsis: [patch] sysutils/ledit update to 2.03 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 14:40:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Hirohisa Yamaguchi >Release: FreeBSD 8.1-RELEASE amd64 >Organization: >Environment: System: FreeBSD calliope.****.org 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Mon Jul 19 02:36:49 UTC 2010 root@mason.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The new version of sysutils/ledit 2.03 is available. WWW: http://cristal.inria.fr/~ddr/ledit/ >How-To-Repeat: N/A >Fix: The patch follows: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/ledit/Makefile,v retrieving revision 1.11 diff -p -u -r1.11 Makefile --- Makefile 3 Dec 2010 07:16:26 -0000 1.11 +++ Makefile 2 Mar 2012 14:19:56 -0000 @@ -7,7 +7,7 @@ # PORTNAME= ledit -PORTVERSION= 2.02.1 +PORTVERSION= 2.03 CATEGORIES= sysutils MASTER_SITES= http://cristal.inria.fr/~ddr/ledit/distrib/src/ \ http://pauillac.inria.fr/~ddr/ledit/distrib/src/ @@ -16,11 +16,11 @@ EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Line editor to be used with interactive commands -BUILD_DEPENDS= camlp5r:${PORTSDIR}/devel/ocaml-camlp5 - LICENSE= BSD LICENSE_FILE= ${WRKSRC}/LICENSE +BUILD_DEPENDS= camlp5r:${PORTSDIR}/devel/ocaml-camlp5 + USE_GMAKE= yes USE_OCAML= yes Index: distinfo =================================================================== RCS file: /home/ncvs/ports/sysutils/ledit/distinfo,v retrieving revision 1.8 diff -p -u -r1.8 distinfo --- distinfo 3 Dec 2010 07:16:26 -0000 1.8 +++ distinfo 2 Mar 2012 14:19:56 -0000 @@ -1,2 +1,2 @@ -SHA256 (ledit-2.02.1.tgz) = d2433b4fb9fcda95a5438b3d9c715d41db6f2882046bdcc0b5d14933ee39ad28 -SIZE (ledit-2.02.1.tgz) = 24289 +SHA256 (ledit-2.03.tgz) = ce08a8568c964009ccb0cbba45ae78b9a96c823f42a4fd61431a5b0c2c7a19ce +SIZE (ledit-2.03.tgz) = 24319 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 14:50:07 2012 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 AE4761065672 for ; Fri, 2 Mar 2012 14:50:07 +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 8471F8FC1A for ; Fri, 2 Mar 2012 14:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22Eo74T090256 for ; Fri, 2 Mar 2012 14:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22Eo7M0090255; Fri, 2 Mar 2012 14:50:07 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 14:50:07 GMT Resent-Message-Id: <201203021450.q22Eo7M0090255@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, Sunpoet Po-Chuan Hsieh Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 14084106566B for ; Fri, 2 Mar 2012 14:45:01 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx1.freebsd.org (Postfix) with ESMTP id BDBA68FC16 for ; Fri, 2 Mar 2012 14:45:00 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 3TztXC0dQyz8XX; Fri, 2 Mar 2012 22:42:35 +0800 (CST) Message-Id: <3TztXC0dQyz8XX@sunpoet.net> Date: Fri, 2 Mar 2012 22:42:35 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: vanilla@FreeBSD.org Subject: ports/165627: [PATCH] www/flickcurl: update to 1.22 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, 02 Mar 2012 14:50:07 -0000 >Number: 165627 >Category: ports >Synopsis: [PATCH] www/flickcurl: update to 1.22 >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 Mar 02 14:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 9.0-STABLE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 9.0-STABLE FreeBSD 9.0-STABLE #0: Sun Jan 29 23:36:49 CST 2012 >Description: - Update to 1.22 Port maintainer (vanilla@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- flickcurl-1.22.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/www/flickcurl/Makefile,v retrieving revision 1.30 diff -u -u -r1.30 Makefile --- Makefile 11 Aug 2011 19:20:02 -0000 1.30 +++ Makefile 2 Mar 2012 14:42:26 -0000 @@ -6,7 +6,7 @@ # PORTNAME= flickcurl -PORTVERSION= 1.20 +PORTVERSION= 1.22 CATEGORIES= www MASTER_SITES= http://download.dajobe.org/flickcurl/ Index: distinfo =================================================================== RCS file: /home/ncvs/ports/www/flickcurl/distinfo,v retrieving revision 1.22 diff -u -u -r1.22 distinfo --- distinfo 25 Nov 2010 02:33:31 -0000 1.22 +++ distinfo 2 Mar 2012 14:42:26 -0000 @@ -1,2 +1,2 @@ -SHA256 (flickcurl-1.20.tar.gz) = 42940679c4e851baf28f2e794f82be5f1dbd875e9263fde8a5d087159b6ea311 -SIZE (flickcurl-1.20.tar.gz) = 1775246 +SHA256 (flickcurl-1.22.tar.gz) = 3927f389ad10079d8011ad5a1d8f4d8e646a28294def64f60136777d2e826125 +SIZE (flickcurl-1.22.tar.gz) = 1821304 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/www/flickcurl/pkg-plist,v retrieving revision 1.14 diff -u -u -r1.14 pkg-plist --- pkg-plist 2 Aug 2010 02:11:15 -0000 1.14 +++ pkg-plist 2 Mar 2012 14:42:26 -0000 @@ -34,6 +34,7 @@ %%DOCSDIR%%/flickcurl-section-collections.html %%DOCSDIR%%/flickcurl-section-comment.html %%DOCSDIR%%/flickcurl-section-commons.html +%%DOCSDIR%%/flickcurl-section-config.html %%DOCSDIR%%/flickcurl-section-contact.html %%DOCSDIR%%/flickcurl-section-context.html %%DOCSDIR%%/flickcurl-section-core.html @@ -62,7 +63,6 @@ %%DOCSDIR%%/flickcurl-section-upload.html %%DOCSDIR%%/flickcurl-section-urls.html %%DOCSDIR%%/flickcurl-section-video.html -%%DOCSDIR%%/flickcurl.devhelp %%DOCSDIR%%/flickcurl.devhelp2 %%DOCSDIR%%/home.png %%DOCSDIR%%/index.html --- flickcurl-1.22.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 14:50:17 2012 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 C8CCC10656B0; Fri, 2 Mar 2012 14:50:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9CD678FC1B; Fri, 2 Mar 2012 14:50:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22EoHIX090433; Fri, 2 Mar 2012 14:50:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22EoHr1090429; Fri, 2 Mar 2012 14:50:17 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 14:50:17 GMT Message-Id: <201203021450.q22EoHr1090429@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vanilla@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165627: [PATCH] www/flickcurl: update to 1.22 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, 02 Mar 2012 14:50:17 -0000 Synopsis: [PATCH] www/flickcurl: update to 1.22 Responsible-Changed-From-To: freebsd-ports-bugs->vanilla Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 14:50:17 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165627 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 14:52:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23EB21065670; Fri, 2 Mar 2012 14:52:28 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EC2E18FC14; Fri, 2 Mar 2012 14:52:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22EqRC2098459; Fri, 2 Mar 2012 14:52:27 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22EqRSX098455; Fri, 2 Mar 2012 14:52:27 GMT (envelope-from culot) Date: Fri, 2 Mar 2012 14:52:27 GMT Message-Id: <201203021452.q22EqRSX098455@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/165626: [patch] sysutils/ledit update to 2.03 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, 02 Mar 2012 14:52:28 -0000 Synopsis: [patch] sysutils/ledit update to 2.03 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Fri Mar 2 14:52:27 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165626 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 15:20:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4337E106564A for ; Fri, 2 Mar 2012 15:20:03 +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 169D08FC13 for ; Fri, 2 Mar 2012 15:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22FK2gL017754 for ; Fri, 2 Mar 2012 15:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22FK2qq017753; Fri, 2 Mar 2012 15:20:02 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 15:20:02 GMT Resent-Message-Id: <201203021520.q22FK2qq017753@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, Pietro Cerutti Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7AB73106564A for ; Fri, 2 Mar 2012 15:13:13 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5ACA78FC13 for ; Fri, 2 Mar 2012 15:13:13 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q22FDDfM055109 for ; Fri, 2 Mar 2012 15:13:13 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q22FDDma055102; Fri, 2 Mar 2012 15:13:13 GMT (envelope-from nobody) Message-Id: <201203021513.q22FDDma055102@red.freebsd.org> Date: Fri, 2 Mar 2012 15:13:13 GMT From: Pietro Cerutti To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165628: [update] devel/gsoap -- update to 2.8.8 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, 02 Mar 2012 15:20:03 -0000 >Number: 165628 >Category: ports >Synopsis: [update] devel/gsoap -- update to 2.8.8 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 15:20:02 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Pietro Cerutti >Release: >Organization: The FreeBSD Project >Environment: >Description: * update to latest 2.8.8 version * add OPTION to turn on/off SSL (using base OpenSSL) * add OPTION to turn on/off SSL (using GnuTLS) * minor tweaks >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/gsoap/Makefile,v retrieving revision 1.39 diff -u -r1.39 Makefile --- Makefile 11 Aug 2011 19:19:13 -0000 1.39 +++ Makefile 2 Mar 2012 14:45:49 -0000 @@ -6,19 +6,25 @@ # PORTNAME= gsoap -PORTVERSION= 2.7.15 +PORTVERSION= 2.8.8 CATEGORIES= devel -MASTER_SITES= SF/${PORTNAME}2/gSOAP/${PORTVERSION}%20stable +MASTER_SITES= SF/${PORTNAME}2/gSOAP DISTNAME= ${PORTNAME}_${PORTVERSION} MAINTAINER= sem@FreeBSD.org COMMENT= Generator Tools for Coding SOAP/XML Web Services in C and C++ +OPTIONS= OPENSSL "Enable SSL/TLS (OpenSSL from base)" on \ + GNUTLS "Enable SSL/TLS (GnuTLS)" off + +USE_ZIP= yes GNU_CONFIGURE= yes USE_GNOME= gnomehack MAKE_JOBS_UNSAFE= yes +CFLAGS+= -DWSDL_TYPEMAP_FILE=\\\"${DATADIR}/WS/typemap.dat\\\" \ + -DSOAPCPP2_IMPORT_PATH=\\\"${DATADIR}/import\\\" -WRKSRC= ${WRKDIR}/${PORTNAME}-2.7 +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION:R} ONLY_FOR_ARCHS= i386 amd64 @@ -28,6 +34,21 @@ CFLAGS+= -fPIC .endif +.if defined(WITHOUT_OPENSSL) && defined(WITHOUT_GNUTLS) +CONFIGURE_ARGS+=--disable-ssl +.endif + +.if defined(WITH_GNUTLS) +LIB_DEPENDS+= gnutls.47:${PORTSDIR}/security/gnutls \ + gcrypt.18:${PORTSDIR}/security/libgcrypt \ + gpg-error.0:${PORTSDIR}/security/libgpg-error +CONFIGURE_ARGS+=--enable-gnutls +LDFLAGS+= -L${LOCALBASE}/lib +.endif + +post-patch: + ${REINPLACE_CMD} -e 's|sys/timeb.h||' ${WRKSRC}/${CONFIGURE_SCRIPT} + post-install: @${MKDIR} ${PREFIX}/lib/gsoap @${CP} ${WRKSRC}/gsoap/stdsoap2.c ${PREFIX}/lib/gsoap Index: distinfo =================================================================== RCS file: /home/pcvs/ports/devel/gsoap/distinfo,v retrieving revision 1.24 diff -u -r1.24 distinfo --- distinfo 3 Jul 2011 14:55:51 -0000 1.24 +++ distinfo 2 Mar 2012 13:36:55 -0000 @@ -1,2 +1,2 @@ -SHA256 (gsoap_2.7.15.tar.gz) = 3ed883ab1a3d32b5bb2bf599306f247f6de3ffedd8890eb0e6303ae15995dc12 -SIZE (gsoap_2.7.15.tar.gz) = 6338478 +SHA256 (gsoap_2.8.8.zip) = 8b1ad1cbd521bd5f85ff4c038bfd5a17a2530610c1ce8bf7318725bc568465cc +SIZE (gsoap_2.8.8.zip) = 13782549 Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/devel/gsoap/pkg-plist,v retrieving revision 1.11 diff -u -r1.11 pkg-plist --- pkg-plist 20 May 2010 16:10:37 -0000 1.11 +++ pkg-plist 2 Mar 2012 14:00:25 -0000 @@ -23,9 +23,11 @@ %%DATADIR%%/WS/WS-Discovery.wsdl %%DATADIR%%/WS/WS-Enumeration.wsdl %%DATADIR%%/WS/WS-Policy.xsd +%%DATADIR%%/WS/WS-Policy12.xsd %%DATADIR%%/WS/WS-ReliableMessaging.wsdl %%DATADIR%%/WS/WS-ReliableMessaging.xsd %%DATADIR%%/WS/WS-Routing.xsd +%%DATADIR%%/WS/WS-SecurityPolicy.xsd %%DATADIR%%/WS/WS-typemap.dat %%DATADIR%%/WS/discovery.xsd %%DATADIR%%/WS/ds.xsd @@ -35,7 +37,10 @@ %%DATADIR%%/WS/ws-reliability-1.1.xsd %%DATADIR%%/WS/wsse.xsd %%DATADIR%%/WS/wsu.xsd +%%DATADIR%%/WS/xenc.xsd %%DATADIR%%/custom/README.txt +%%DATADIR%%/custom/duration.c +%%DATADIR%%/custom/duration.h %%DATADIR%%/custom/long_double.c %%DATADIR%%/custom/long_double.h %%DATADIR%%/custom/struct_timeval.c @@ -70,14 +75,19 @@ %%DATADIR%%/import/wsa3.h %%DATADIR%%/import/wsa4.h %%DATADIR%%/import/wsa5.h +%%DATADIR%%/import/wsdd.h +%%DATADIR%%/import/wsdd10.h +%%DATADIR%%/import/wsdx.h %%DATADIR%%/import/wsp.h %%DATADIR%%/import/wsrm.h %%DATADIR%%/import/wsrm4.h %%DATADIR%%/import/wsrp.h %%DATADIR%%/import/wsrx.h %%DATADIR%%/import/wsse.h +%%DATADIR%%/import/wsse11.h %%DATADIR%%/import/wsse2.h %%DATADIR%%/import/wsu.h +%%DATADIR%%/import/xenc.h %%DATADIR%%/import/xlink.h %%DATADIR%%/import/xmime.h %%DATADIR%%/import/xmime4.h @@ -112,6 +122,8 @@ %%DATADIR%%/plugin/logging.h %%DATADIR%%/plugin/md5evp.c %%DATADIR%%/plugin/md5evp.h +%%DATADIR%%/plugin/mecevp.c +%%DATADIR%%/plugin/mecevp.h %%DATADIR%%/plugin/plugin.c %%DATADIR%%/plugin/plugin.h %%DATADIR%%/plugin/smdevp.c @@ -120,6 +132,10 @@ %%DATADIR%%/plugin/threads.h %%DATADIR%%/plugin/wsaapi.c %%DATADIR%%/plugin/wsaapi.h +%%DATADIR%%/plugin/wsddapi.c +%%DATADIR%%/plugin/wsddapi.h +%%DATADIR%%/plugin/wsrmapi.c +%%DATADIR%%/plugin/wsrmapi.h %%DATADIR%%/plugin/wsse2api.c %%DATADIR%%/plugin/wsse2api.h %%DATADIR%%/plugin/wsseapi.c Index: files/patch-gsoap-stdsoap2.h =================================================================== RCS file: /home/pcvs/ports/devel/gsoap/files/patch-gsoap-stdsoap2.h,v retrieving revision 1.1 diff -u -r1.1 patch-gsoap-stdsoap2.h --- files/patch-gsoap-stdsoap2.h 9 Jul 2008 17:57:46 -0000 1.1 +++ files/patch-gsoap-stdsoap2.h 2 Mar 2012 13:54:46 -0000 @@ -1,6 +1,6 @@ ---- gsoap/stdsoap2.h.orig 2008-01-27 22:02:36.000000000 +0100 -+++ gsoap/stdsoap2.h 2008-07-04 12:35:55.000000000 +0200 -@@ -292,9 +292,6 @@ +--- gsoap/stdsoap2.h.orig 2012-02-19 23:02:05.000000000 +0100 ++++ gsoap/stdsoap2.h 2012-03-02 14:53:47.000000000 +0100 +@@ -304,9 +304,6 @@ # define HAVE_STRRCHR # define HAVE_STRTOD # define HAVE_SSCANF >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 15:20:03 2012 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 9A0531065675 for ; Fri, 2 Mar 2012 15:20:03 +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 6D77D8FC16 for ; Fri, 2 Mar 2012 15:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22FK3H4017763 for ; Fri, 2 Mar 2012 15:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22FK39k017762; Fri, 2 Mar 2012 15:20:03 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 15:20:03 GMT Resent-Message-Id: <201203021520.q22FK39k017762@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, Glen Barber Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 833DE1065672 for ; Fri, 2 Mar 2012 15:19:02 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 551C48FC0C for ; Fri, 2 Mar 2012 15:19:02 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q22FJ2ft069654 for ; Fri, 2 Mar 2012 15:19:02 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q22FJ2ff069653; Fri, 2 Mar 2012 15:19:02 GMT (envelope-from nobody) Message-Id: <201203021519.q22FJ2ff069653@red.freebsd.org> Date: Fri, 2 Mar 2012 15:19:02 GMT From: Glen Barber To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165629: [patch][maintainer] textproc/codespell: Update to version 1.4 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, 02 Mar 2012 15:20:03 -0000 >Number: 165629 >Category: ports >Synopsis: [patch][maintainer] textproc/codespell: Update to version 1.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 15:20:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Glen Barber >Release: 10-CURRENT r232116M >Organization: >Environment: n/a >Description: Update textproc/codespell to version 1.4. Changes include: - Allow hyphen in words - Various dictionary file updates Tinderbox logs can be found here: http://builder.glenbarber.us/tb/logs/10-64-FreeBSD/codespell-1.4.log http://builder.glenbarber.us/tb/logs/9-64-FreeBSD/codespell-1.4.log http://builder.glenbarber.us/tb/logs/8-64-FreeBSD/codespell-1.4.log http://builder.glenbarber.us/tb/logs/7-64-FreeBSD/codespell-1.4.log http://builder.glenbarber.us/tb/logs/10-32-FreeBSD/codespell-1.4.log http://builder.glenbarber.us/tb/logs/9-32-FreeBSD/codespell-1.4.log http://builder.glenbarber.us/tb/logs/8-32-FreeBSD/codespell-1.4.log http://builder.glenbarber.us/tb/logs/7-32-FreeBSD/codespell-1.4.log >How-To-Repeat: >Fix: Patch is attached. Patch attached with submission follows: diff -ruN textproc/codespell/Makefile textproc/codespell-1.4/Makefile --- textproc/codespell/Makefile 2011-12-10 20:58:37.000000000 -0500 +++ textproc/codespell-1.4/Makefile 2012-03-02 09:35:48.582404209 -0500 @@ -6,10 +6,11 @@ # PORTNAME= codespell -PORTVERSION= 1.3 +PORTVERSION= 1.4 CATEGORIES= textproc MASTER_SITES= http://packages.profusion.mobi/${PORTNAME}/ \ http://www.glenbarber.us/ports/${CATEGORIES}/${PORTNAME}/ +EXTRACT_SUFX= .tar.xz MAINTAINER= gjb@FreeBSD.org COMMENT= Source code spelling checker @@ -17,6 +18,7 @@ LICENSE= GPLv2 USE_PYTHON= 3.1+ +USE_XZ= yes PLIST_FILES= bin/codespell PORTDOCS= COPYING README TODO @@ -26,6 +28,10 @@ .include +.if ${OSVERSION} < 800505 || (${OSVERSION} >= 900000 && ${OSVERSION} < 900012) +EXTRACT_DEPENDS+= ${LOCALBASE}/bin/xz:${PORTSDIR}/archivers/xz +.endif + do-build: ${REINPLACE_CMD} 's|#!/usr/bin/env python3|#!${LOCALBASE}/bin/${PYTHON_VERSION}|' \ ${WRKSRC}/codespell.py diff -ruN textproc/codespell/distinfo textproc/codespell-1.4/distinfo --- textproc/codespell/distinfo 2011-12-10 20:58:37.000000000 -0500 +++ textproc/codespell-1.4/distinfo 2012-03-01 20:32:25.228269990 -0500 @@ -1,2 +1,2 @@ -SHA256 (codespell-1.3.tar.gz) = 8224f8b76197bab9d4115a20003e3512f82522895bb10b6f3a718c1f35f0ecdd -SIZE (codespell-1.3.tar.gz) = 43363 +SHA256 (codespell-1.4.tar.xz) = b86f72ce7e20851473fe37e6e425e95a29cc1d7cd10b8d837d8013b2d280d158 +SIZE (codespell-1.4.tar.xz) = 38532 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 15:20:13 2012 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 79735106564A; Fri, 2 Mar 2012 15:20:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4D5808FC19; Fri, 2 Mar 2012 15:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22FKDlk017964; Fri, 2 Mar 2012 15:20:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22FKDHK017960; Fri, 2 Mar 2012 15:20:13 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 15:20:13 GMT Message-Id: <201203021520.q22FKDHK017960@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165628: [update] devel/gsoap -- update to 2.8.8 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, 02 Mar 2012 15:20:13 -0000 Synopsis: [update] devel/gsoap -- update to 2.8.8 Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 15:20:12 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165628 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 15:20:18 2012 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 99147106566C; Fri, 2 Mar 2012 15:20:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6D4DC8FC16; Fri, 2 Mar 2012 15:20:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22FKIUe018551; Fri, 2 Mar 2012 15:20:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22FKIJW018543; Fri, 2 Mar 2012 15:20:18 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 15:20:18 GMT Message-Id: <201203021520.q22FKIJW018543@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gjb@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165629: [patch][maintainer] textproc/codespell: Update to version 1.4 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, 02 Mar 2012 15:20:18 -0000 Synopsis: [patch][maintainer] textproc/codespell: Update to version 1.4 Responsible-Changed-From-To: freebsd-ports-bugs->gjb Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 15:20:17 UTC 2012 Responsible-Changed-Why: Submitter is maintainer and has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165629 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 15:21:19 2012 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 E9D5D106566B; Fri, 2 Mar 2012 15:21:19 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BE25E8FC16; Fri, 2 Mar 2012 15:21:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22FLJVh026053; Fri, 2 Mar 2012 15:21:19 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22FLJ1q026049; Fri, 2 Mar 2012 15:21:19 GMT (envelope-from pawel) Date: Fri, 2 Mar 2012 15:21:19 GMT Message-Id: <201203021521.q22FLJ1q026049@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/165620: [UPDATE] x11-themes/qtcurve-kde3 to 1.8.5 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, 02 Mar 2012 15:21:20 -0000 Synopsis: [UPDATE] x11-themes/qtcurve-kde3 to 1.8.5 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Fri Mar 2 15:21:19 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165620 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 15:21:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23754106566B; Fri, 2 Mar 2012 15:21:26 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EB87E8FC12; Fri, 2 Mar 2012 15:21:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22FLPrO026143; Fri, 2 Mar 2012 15:21:25 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22FLPrk026139; Fri, 2 Mar 2012 15:21:25 GMT (envelope-from pawel) Date: Fri, 2 Mar 2012 15:21:25 GMT Message-Id: <201203021521.q22FLPrk026139@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/165621: [UPDATE] x11-themes/kde-style-polyester to 1.0.5 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, 02 Mar 2012 15:21:26 -0000 Synopsis: [UPDATE] x11-themes/kde-style-polyester to 1.0.5 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Fri Mar 2 15:21:25 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165621 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 15:21:37 2012 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 ADF171065672; Fri, 2 Mar 2012 15:21:37 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8260E8FC13; Fri, 2 Mar 2012 15:21:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22FLbFt026177; Fri, 2 Mar 2012 15:21:37 GMT (envelope-from gjb@freefall.freebsd.org) Received: (from gjb@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22FLbBg026173; Fri, 2 Mar 2012 15:21:37 GMT (envelope-from gjb) Date: Fri, 2 Mar 2012 15:21:37 GMT Message-Id: <201203021521.q22FLbBg026173@freefall.freebsd.org> To: gjb@FreeBSD.org, gjb@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: gjb@FreeBSD.org Cc: Subject: Re: ports/165629: [patch][maintainer] textproc/codespell: Update to version 1.4 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, 02 Mar 2012 15:21:37 -0000 Synopsis: [patch][maintainer] textproc/codespell: Update to version 1.4 Responsible-Changed-From-To: gjb->freebsd-ports-bugs Responsible-Changed-By: gjb Responsible-Changed-When: Fri Mar 2 15:21:13 UTC 2012 Responsible-Changed-Why: Back to the ports committers. http://www.freebsd.org/cgi/query-pr.cgi?pr=165629 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 15:51:51 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 06BB2106566C; Fri, 2 Mar 2012 15:51:51 +0000 (UTC) (envelope-from culot@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id CE8B48FC0A; Fri, 2 Mar 2012 15:51:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22FpoZR053817; Fri, 2 Mar 2012 15:51:50 GMT (envelope-from culot@freefall.freebsd.org) Received: (from culot@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22FpoYE053813; Fri, 2 Mar 2012 15:51:50 GMT (envelope-from culot) Date: Fri, 2 Mar 2012 15:51:50 GMT Message-Id: <201203021551.q22FpoYE053813@freefall.freebsd.org> To: culot@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, culot@FreeBSD.org From: culot@FreeBSD.org Cc: Subject: Re: ports/165629: [patch][maintainer] textproc/codespell: Update to version 1.4 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, 02 Mar 2012 15:51:51 -0000 Synopsis: [patch][maintainer] textproc/codespell: Update to version 1.4 Responsible-Changed-From-To: freebsd-ports-bugs->culot Responsible-Changed-By: culot Responsible-Changed-When: Fri Mar 2 15:51:50 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165629 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 16:00:27 2012 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 1DACF1065672 for ; Fri, 2 Mar 2012 16:00:27 +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 080B38FC08 for ; Fri, 2 Mar 2012 16:00:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22G0QEB054088 for ; Fri, 2 Mar 2012 16:00:26 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22G0QPZ054087; Fri, 2 Mar 2012 16:00:26 GMT (envelope-from gnats) Date: Fri, 2 Mar 2012 16:00:26 GMT Message-Id: <201203021600.q22G0QPZ054087@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Florian Millet Cc: Subject: Re: ports/158904: [PATCH] finance/openerp-web: update to 6.0.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Florian Millet List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 16:00:27 -0000 The following reply was made to PR ports/158904; it has been noted by GNATS. From: Florian Millet To: bug-followup@FreeBSD.org, linpct@gmail.com Cc: Subject: Re: ports/158904: [PATCH] finance/openerp-web: update to 6.0.2 Date: Fri, 02 Mar 2012 16:20:33 +0100 Hello fellow openerp users, Recently openerp version 6.1 was launched, apparently the web client is now integrated inside the openerp server directly. Is the update of this port still being worked on ? Because last time I tried the patch for version 6.0.2 it still had problems (like needing www/py-cherrypy version 3.1.2 whereas the ports are at version 3.2.2, or the script in /usr/local/openerp-web having the wrong name, or the log files not taking into account the rc.conf variable for the directory of the logs) An update to the latest version would be greatly appreciated :) Thank you. --- Millet Florian Athena Distribution R&D From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 16:07:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 93CF61065672 for ; Fri, 2 Mar 2012 16:07:29 +0000 (UTC) (envelope-from waynehuang.public@gmail.com) Received: from mail-vx0-f182.google.com (mail-vx0-f182.google.com [209.85.220.182]) by mx1.freebsd.org (Postfix) with ESMTP id 426898FC12 for ; Fri, 2 Mar 2012 16:07:28 +0000 (UTC) Received: by vcmm1 with SMTP id m1so358951vcm.13 for ; Fri, 02 Mar 2012 08:07:28 -0800 (PST) Received-SPF: pass (google.com: domain of waynehuang.public@gmail.com designates 10.52.20.201 as permitted sender) client-ip=10.52.20.201; Authentication-Results: mr.google.com; spf=pass (google.com: domain of waynehuang.public@gmail.com designates 10.52.20.201 as permitted sender) smtp.mail=waynehuang.public@gmail.com; dkim=pass header.i=waynehuang.public@gmail.com Received: from mr.google.com ([10.52.20.201]) by 10.52.20.201 with SMTP id p9mr17020529vde.87.1330704448643 (num_hops = 1); Fri, 02 Mar 2012 08:07:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=nuiLtqnEnO/HvAGPploa/8mhzuWs9kOp7NXUrJy5PqE=; b=tqeN/crdIiv3u9mvQAFDD+4/hAOTa7ljgxSsTav0HjkF/Iss56B1LqUJnKKsLlbUD9 ThiSuuQixBbJcFz9GqwTTxvhfvtrqlh7csNJiyaGvKOnTwXADj+cfSW06eVKs/hhbF25 vGhTTFsEqchxJGtVREb2oAWU3Tw5XBcBDbeantQ6R6SXsADUywceMo6MMAJAHaJFXCsM bnD3PKQZpKseC7Xhfr4Ajm87+Zk+1gJ0ecYszY6kJHACNvBeAqVjqaFKYm8p9mb9BCXF GOZ/eG3yVlVRLnQ5or0+E9JEGFXgTUbRdFuifeZDdqakwt2RJ1O1Pf1FmYgoigDJhqMS k2JQ== MIME-Version: 1.0 Received: by 10.52.20.201 with SMTP id p9mr14281259vde.87.1330702675748; Fri, 02 Mar 2012 07:37:55 -0800 (PST) Received: by 10.52.112.73 with HTTP; Fri, 2 Mar 2012 07:37:55 -0800 (PST) Date: Fri, 2 Mar 2012 23:37:55 +0800 Message-ID: From: Wayne Huang To: freebsd-ports-bugs@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Subject: FreeBSD Port: sbcl-1.0.55.0,1 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, 02 Mar 2012 16:07:29 -0000 I build port sbcl-1.0.55.0,1 with default option, it should install graphviz, libltdl and texinfo in depend. That will build success. But when I disable PDF and PS option, it build with error. My OS is FreeBSD 9.0 Release From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 16:11:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 611E5106567A; Fri, 2 Mar 2012 16:11:34 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 344758FC14; Fri, 2 Mar 2012 16:11:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22GBYXF070922; Fri, 2 Mar 2012 16:11:34 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22GBY5U070918; Fri, 2 Mar 2012 16:11:34 GMT (envelope-from linimon) Date: Fri, 2 Mar 2012 16:11:34 GMT Message-Id: <201203021611.q22GBY5U070918@freefall.freebsd.org> To: freebsd@omnilan.de, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/165316: New port: www/etomite-cms PHP based content management system 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, 02 Mar 2012 16:11:34 -0000 Synopsis: New port: www/etomite-cms PHP based content management system State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Fri Mar 2 16:11:24 UTC 2012 State-Changed-Why: maintainer will re-submit. http://www.freebsd.org/cgi/query-pr.cgi?pr=165316 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 17:10:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9032B106566C for ; Fri, 2 Mar 2012 17:10:08 +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 577B78FC16 for ; Fri, 2 Mar 2012 17:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22HA8SR039012 for ; Fri, 2 Mar 2012 17:10:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22HA8OZ039010; Fri, 2 Mar 2012 17:10:08 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 17:10:08 GMT Resent-Message-Id: <201203021710.q22HA8OZ039010@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, "Conrad J. Sabatier" Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B5718106566B for ; Fri, 2 Mar 2012 17:09:02 +0000 (UTC) (envelope-from conrads@serene.no-ip.org) Received: from eastrmfepo203.cox.net (eastrmfepo203.cox.net [68.230.241.218]) by mx1.freebsd.org (Postfix) with ESMTP id 367F38FC0C for ; Fri, 2 Mar 2012 17:09:01 +0000 (UTC) Received: from eastrmimpo210.cox.net ([68.230.241.225]) by eastrmfepo203.cox.net (InterMail vM.8.01.04.00 201-2260-137-20101110) with ESMTP id <20120302170856.WGQL18532.eastrmfepo203.cox.net@eastrmimpo210.cox.net> for ; Fri, 2 Mar 2012 12:08:56 -0500 Received: from serene.no-ip.org ([98.164.84.176]) by eastrmimpo210.cox.net with bizsmtp id gh8v1i00G3oG0Ji02h8v5a; Fri, 02 Mar 2012 12:08:55 -0500 Received: from serene.no-ip.org (localhost [127.0.0.1]) by serene.no-ip.org (8.14.5/8.14.5) with ESMTP id q22H8tTG096491 for ; Fri, 2 Mar 2012 11:08:55 -0600 (CST) (envelope-from conrads@serene.no-ip.org) Received: (from root@localhost) by serene.no-ip.org (8.14.5/8.14.5/Submit) id q22H8ogp096490; Fri, 2 Mar 2012 11:08:50 -0600 (CST) (envelope-from conrads) Message-Id: <201203021708.q22H8ogp096490@serene.no-ip.org> Date: Fri, 2 Mar 2012 11:08:50 -0600 (CST) From: "Conrad J. Sabatier" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165631: New port: ports-mgmt/mkreadmes, a speedy alternative to "make readmes" X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Conrad J. Sabatier" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 17:10:08 -0000 >Number: 165631 >Category: ports >Synopsis: New port: ports-mgmt/mkreadmes, a speedy alternative to "make readmes" >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 17:10:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Conrad J. Sabatier >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD serene.no-ip.org 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Sun Feb 12 19:15:46 CST 2012 conrads@serene.no-ip.org:/usr/obj/usr/src/sys/CUSTOM amd64 >Description: New port submission for: ports-mgmt/mkreadmes Mkreadmes is designed to be a very fast, flexible and easy-to-use alternative to the standard "make readmes" for building the README.html files for the FreeBSD Ports Collection, building the files in a fraction of the time of the standard method. (Submitter is all the program's author, if you have any questions, comments or suggestions about the program) >How-To-Repeat: N/A >Fix: port's shar file below --- mkreadmes.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # mkreadmes # mkreadmes/Makefile # mkreadmes/pkg-message # mkreadmes/distinfo # mkreadmes/pkg-descr # mkreadmes/pkg-plist # echo c - mkreadmes mkdir -p mkreadmes > /dev/null 2>&1 echo x - mkreadmes/Makefile sed 's/^X//' >mkreadmes/Makefile << 'a62cad250290cdd9c7b64272759bb24a' X# New ports collection makefile for: mkreadmes X# Date created: 2012-03-01 X# Whom: Conrad J. Sabatier X# X# $FreeBSD$ X# X XPORTNAME= mkreadmes XDISTVERSION= 1.0 XCATEGORIES= ports-mgmt XMASTER_SITES= SF XMASTER_SITE_SUBDIR= ${PORTNAME} X XMAINTAINER= conrads@cox.net XCOMMENT= A speedy substitute for "make readmes" X XUSE_BZIP2= yes X Xpost-extract: X# adjust definition of PREFIX in mkreadmes.h only if it differs from X# the current setting of ${PREFIX} X @${EGREP} -q '^#define[[:space:]]+PREFIX[[:space:]]+"${PREFIX}"' \ X ${WRKSRC}/mkreadmes.h || \ X ${REINPLACE_CMD} -Ee \ X 's|^(#define[[:space:]]+PREFIX[[:space:]]+)\"[^"]+\"|\1"${PREFIX}"|' \ X ${WRKSRC}/mkreadmes.h X X# adjust reference to ${PREFIX} in usage() function's description of X# the "-t pathname" option only if it differs from the current setting X# of ${PREFIX} X @${EGREP} -q 'default ${PREFIX}' ${WRKSRC}/main.c || \ X ${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' ${WRKSRC}/main.c X Xpost-install: X @${CAT} pkg-message X X.include a62cad250290cdd9c7b64272759bb24a echo x - mkreadmes/pkg-message sed 's/^X//' >mkreadmes/pkg-message << '377a49f1ad86126c609e49c741083f92' X XFor full description and usage information, see the file X"${PREFIX}/share/mkreadmes/README", or type "mkreadmes -h" Xfor help (sorry, no man page). X 377a49f1ad86126c609e49c741083f92 echo x - mkreadmes/distinfo sed 's/^X//' >mkreadmes/distinfo << 'c90f2bb7b4fc708682becb76ed14cb66' XSHA256 (mkreadmes-1.0.tar.bz2) = 244fbcbb19a852238797e12dc7a1d7e398f908e53315aa856540e1e635a231af XSIZE (mkreadmes-1.0.tar.bz2) = 14904 c90f2bb7b4fc708682becb76ed14cb66 echo x - mkreadmes/pkg-descr sed 's/^X//' >mkreadmes/pkg-descr << 'c76d6fa186d893934e4ceb0129153829' XMkreadmes is designed to be a very fast, flexible and easy-to-use alternative Xto the standard "make readmes" for building the README.html files for the XFreeBSD Ports Collection, building the files in a fraction of the time of the Xstandard method. c76d6fa186d893934e4ceb0129153829 echo x - mkreadmes/pkg-plist sed 's/^X//' >mkreadmes/pkg-plist << '03683ef8366572f4b0c15d644a2ebb00' Xsbin/mkreadmes Xshare/mkreadmes/README Xshare/mkreadmes/Templates/README.category Xshare/mkreadmes/Templates/README.port Xshare/mkreadmes/Templates/README.top X@dirrm share/mkreadmes/Templates X@dirrm share/mkreadmes 03683ef8366572f4b0c15d644a2ebb00 exit --- mkreadmes.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 17:20:12 2012 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 7D3E11065670 for ; Fri, 2 Mar 2012 17:20:12 +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 4F6D58FC18 for ; Fri, 2 Mar 2012 17:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22HKCFZ049198 for ; Fri, 2 Mar 2012 17:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22HKBUK049197; Fri, 2 Mar 2012 17:20:11 GMT (envelope-from gnats) Date: Fri, 2 Mar 2012 17:20:11 GMT Message-Id: <201203021720.q22HKBUK049197@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Piotr Rybicki Cc: Subject: Re: ports/165613: [UPDATE] www/openx to 2.8.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Piotr Rybicki List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 17:20:12 -0000 The following reply was made to PR ports/165613; it has been noted by GNATS. From: Piotr Rybicki To: bug-followup@FreeBSD.org, andrej.zverev@gmail.com Cc: Subject: Re: ports/165613: [UPDATE] www/openx to 2.8.8 Date: Fri, 02 Mar 2012 18:15:54 +0100 Please commit. Regards -- Piotr Rybicki, Prezes ZarzÄ…du InnerVision Sp. z o.o. http://www.innervision.pl From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 18:20:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5CFE710656DC for ; Fri, 2 Mar 2012 18:20:12 +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 328BB8FC26 for ; Fri, 2 Mar 2012 18:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22IKChD010572 for ; Fri, 2 Mar 2012 18:20:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22IKCe6010571; Fri, 2 Mar 2012 18:20:12 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 18:20:12 GMT Resent-Message-Id: <201203021820.q22IKCe6010571@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, Shawn Webb Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A87D81065670 for ; Fri, 2 Mar 2012 18:18:20 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 78AA68FC1A for ; Fri, 2 Mar 2012 18:18:20 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q22IIK6M091460 for ; Fri, 2 Mar 2012 18:18:20 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q22IIKCA091459; Fri, 2 Mar 2012 18:18:20 GMT (envelope-from nobody) Message-Id: <201203021818.q22IIKCA091459@red.freebsd.org> Date: Fri, 2 Mar 2012 18:18:20 GMT From: Shawn Webb To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165632: [new port] www/drupal7-jailadmin, vnet jail administration module for Drupal 7 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, 02 Mar 2012 18:20:12 -0000 >Number: 165632 >Category: ports >Synopsis: [new port] www/drupal7-jailadmin, vnet jail administration module for Drupal 7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 18:20:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Shawn Webb >Release: 9-STABLE >Organization: Wayfair >Environment: FreeBSD fbsd-sec 9.0-STABLE FreeBSD 9.0-STABLE #3: Thu Feb 16 12:26:26 MST 2012 shawn@fbsd-sec:/usr/obj/src/sys/SEC amd64 >Description: shwebb@wayfair.com / bsdports@wayfair.com will be the maintainer. Works on 9.0-RELEASE and 9-STABLE. Tested with Redports on 8.2-RELEASE, 9.0-RELEASE, and 10-CURRENT. >How-To-Repeat: There is no www/drupal7-jailadmin in the ports tree. >Fix: Patch attached with submission follows: diff --git a/www/drupal7-jailadmin/Makefile b/www/drupal7-jailadmin/Makefile new file mode 100644 index 0000000..aef17dd --- /dev/null +++ b/www/drupal7-jailadmin/Makefile @@ -0,0 +1,42 @@ +# Ports collection makefile for: drupal7-jailadmin +# Date created: 01 Mar 2012 +# Whom: Shawn Webb +# +# $FreeBSD$ +# + +PORTNAME= jailadmin +DISTVERSION= 7.x-0.2 +CATEGORIES= www + +MAINTAINER= bsdports@wayfair.com +COMMENT= Drupal 7 module for administering FreeBSD vnet jails +MASTER_SITES= http://0xfeedface.org/~shawn/freebsd/ports/distfiles/ + +LICENSE= BSD + +USE_DRUPAL= yes + +.include + +DRUPAL_MODULE= yes +DRUPAL_VERSION= 7 +MODULE_FILES= README \ + jailadmin.admin.inc \ + jailadmin.helpers.inc \ + jailadmin.info \ + jailadmin.install \ + jailadmin.module \ + jailconfig.inc \ + jailstatus.inc \ + classes/Jail.php \ + classes/Mount.php \ + classes/Network.php \ + classes/NetworkDevice.php \ + classes/Service.php + +MODULE_DIRS= classes + +DOC_FILES= README + +.include diff --git a/www/drupal7-jailadmin/distinfo b/www/drupal7-jailadmin/distinfo new file mode 100644 index 0000000..fe8e6e2 --- /dev/null +++ b/www/drupal7-jailadmin/distinfo @@ -0,0 +1,2 @@ +SHA256 (drupal/jailadmin-7.x-0.2.tar.gz) = 0a74d9f96c050ac618a87b23457ba65ab1c284fc788ceb7fc6ef2b9aa2c171b9 +SIZE (drupal/jailadmin-7.x-0.2.tar.gz) = 8627 diff --git a/www/drupal7-jailadmin/pkg-descr b/www/drupal7-jailadmin/pkg-descr new file mode 100644 index 0000000..f298195 --- /dev/null +++ b/www/drupal7-jailadmin/pkg-descr @@ -0,0 +1,5 @@ +This Drupal 7 module makes administration of FreeBSD vnet jails extremely +easy. When combined with ZFS and vnet, FreeBSD jails make for a basic +cloud-like infrastructure. + +WWW: https://github.com/lattera/drupal-jailadmin >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 18:20:56 2012 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 692611065674; Fri, 2 Mar 2012 18:20:56 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3BE608FC0A; Fri, 2 Mar 2012 18:20:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22IKuei014575; Fri, 2 Mar 2012 18:20:56 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22IKu17014566; Fri, 2 Mar 2012 18:20:56 GMT (envelope-from edwin) Date: Fri, 2 Mar 2012 18:20:56 GMT Message-Id: <201203021820.q22IKu17014566@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, miwi@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165632: [new port] www/drupal7-jailadmin, vnet jail administration module for Drupal 7 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, 02 Mar 2012 18:20:56 -0000 Synopsis: [new port] www/drupal7-jailadmin, vnet jail administration module for Drupal 7 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 2 18:20:55 UTC 2012 Responsible-Changed-Why: miwi@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165632 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 18:55:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2B3CF1065676; Fri, 2 Mar 2012 18:55:24 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id F3B558FC16; Fri, 2 Mar 2012 18:55:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22ItNO3046857; Fri, 2 Mar 2012 18:55:23 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22ItNlN046853; Fri, 2 Mar 2012 18:55:23 GMT (envelope-from jgh) Date: Fri, 2 Mar 2012 18:55:23 GMT Message-Id: <201203021855.q22ItNlN046853@freefall.freebsd.org> To: meritus@innervision.pl, jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165613: [UPDATE] www/openx to 2.8.8 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, 02 Mar 2012 18:55:24 -0000 Synopsis: [UPDATE] www/openx to 2.8.8 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Fri Mar 2 18:55:23 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165613 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 20:10:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8BB46106567B for ; Fri, 2 Mar 2012 20:10:11 +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 6540D8FC18 for ; Fri, 2 Mar 2012 20:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22KABVL010516 for ; Fri, 2 Mar 2012 20:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22KABKM010512; Fri, 2 Mar 2012 20:10:11 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 20:10:11 GMT Resent-Message-Id: <201203022010.q22KABKM010512@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, yuri Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB6B5106566B for ; Fri, 2 Mar 2012 20:03:32 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 9E2D18FC0C for ; Fri, 2 Mar 2012 20:03:32 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q22K3Wd1073633 for ; Fri, 2 Mar 2012 20:03:32 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q22K3W2G073626; Fri, 2 Mar 2012 20:03:32 GMT (envelope-from nobody) Message-Id: <201203022003.q22K3W2G073626@red.freebsd.org> Date: Fri, 2 Mar 2012 20:03:32 GMT From: yuri To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165634: chromium-17.0.963.56 doesn't show physical printer 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, 02 Mar 2012 20:10:11 -0000 >Number: 165634 >Category: ports >Synopsis: chromium-17.0.963.56 doesn't show physical printer >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 20:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: yuri >Release: 9.0 >Organization: n/a >Environment: >Description: I have a physical printer attached to my computer. Yet chromium "Print" dialog only shows "Print to file" option. Firefox and other apps show printer ok. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 20:10:11 2012 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 ECFB7106566B for ; Fri, 2 Mar 2012 20:10:11 +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 AD37E8FC13 for ; Fri, 2 Mar 2012 20:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22KAB1N010549 for ; Fri, 2 Mar 2012 20:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22KAB7H010548; Fri, 2 Mar 2012 20:10:11 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 20:10:11 GMT Resent-Message-Id: <201203022010.q22KAB7H010548@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, yuri Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9BD3E1065704 for ; Fri, 2 Mar 2012 20:06:12 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 87DD68FC15 for ; Fri, 2 Mar 2012 20:06:12 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q22K6CBr087836 for ; Fri, 2 Mar 2012 20:06:12 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q22K6CeO087835; Fri, 2 Mar 2012 20:06:12 GMT (envelope-from nobody) Message-Id: <201203022006.q22K6CeO087835@red.freebsd.org> Date: Fri, 2 Mar 2012 20:06:12 GMT From: yuri To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165635: chrome-17.0.963.56: proxy isn't read by chrome from kde4 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, 02 Mar 2012 20:10:12 -0000 >Number: 165635 >Category: ports >Synopsis: chrome-17.0.963.56: proxy isn't read by chrome from kde4 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 20:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: yuri >Release: >Organization: n/a >Environment: >Description: "Change Proxy Settings" button brings up kde4 "Proxy - KDE Control Module" screen. When I change to "Manually specify the proxy" and set the proxy for all protocols to 109.251.143.22 port 8080 abd hit Apply opening another google.com instance shows that proxy isn't used. With this proxy Google shows with "Ukraine" icon. Not sure if this is FreeBSD specific or generic with kde4. But in chrome on Ubuntu proxy is read from gnome settings there. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 20:10:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29AFA1065670 for ; Fri, 2 Mar 2012 20:10:12 +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 034FC8FC1C for ; Fri, 2 Mar 2012 20:10:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22KAB4j010569 for ; Fri, 2 Mar 2012 20:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22KABXd010568; Fri, 2 Mar 2012 20:10:11 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 20:10:11 GMT Resent-Message-Id: <201203022010.q22KABXd010568@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, yuri Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 561D01065677 for ; Fri, 2 Mar 2012 20:09:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 293818FC16 for ; Fri, 2 Mar 2012 20:09:54 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q22K9s1k088160 for ; Fri, 2 Mar 2012 20:09:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q22K9r03088159; Fri, 2 Mar 2012 20:09:53 GMT (envelope-from nobody) Message-Id: <201203022009.q22K9r03088159@red.freebsd.org> Date: Fri, 2 Mar 2012 20:09:53 GMT From: yuri To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165636: chrome-17.0.963.56: unable to import data from another browser 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, 02 Mar 2012 20:10:12 -0000 >Number: 165636 >Category: ports >Synopsis: chrome-17.0.963.56: unable to import data from another browser >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 20:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: yuri >Release: 9.0 >Organization: n/a >Environment: >Description: "Import Bookmarks and Settings" screen shows "No supported browser found" in the combobox that is supposed to show other browsers. I have firefox and opera installed. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 20:40:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CC1D1065672 for ; Fri, 2 Mar 2012 20:40:07 +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 0FC6D8FC0A for ; Fri, 2 Mar 2012 20:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22Ke6Us039638 for ; Fri, 2 Mar 2012 20:40:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22Ke6Lp039637; Fri, 2 Mar 2012 20:40:06 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 20:40:06 GMT Resent-Message-Id: <201203022040.q22Ke6Lp039637@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, yuri Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0718A106566B for ; Fri, 2 Mar 2012 20:36:43 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id CE1298FC14 for ; Fri, 2 Mar 2012 20:36:42 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q22Kagms041260 for ; Fri, 2 Mar 2012 20:36:42 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q22KagYs041259; Fri, 2 Mar 2012 20:36:42 GMT (envelope-from nobody) Message-Id: <201203022036.q22KagYs041259@red.freebsd.org> Date: Fri, 2 Mar 2012 20:36:42 GMT From: yuri To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165637: chrome-17.0.963.56 fails to find some ns plugins 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, 02 Mar 2012 20:40:07 -0000 >Number: 165637 >Category: ports >Synopsis: chrome-17.0.963.56 fails to find some ns plugins >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 20:40:06 UTC 2012 >Closed-Date: >Last-Modified: >Originator: yuri >Release: 9.0 >Organization: n/a >Environment: >Description: I have for example DjView plugin installed (/usr/local/lib/browser_plugins/symlinks/gecko18/nsdejavu.so) and chrome doesn't see it. chrome is supposed to scan directory /usr/local/lib/browser_plugins (with subdirectories) for plugins. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 20:40:07 2012 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 D41E41065673 for ; Fri, 2 Mar 2012 20:40:07 +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 AA4838FC12 for ; Fri, 2 Mar 2012 20:40:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22Ke7Hq039647 for ; Fri, 2 Mar 2012 20:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22Ke7F0039646; Fri, 2 Mar 2012 20:40:07 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 20:40:07 GMT Resent-Message-Id: <201203022040.q22Ke7F0039646@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51B5D1065687 for ; Fri, 2 Mar 2012 20:38:45 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id E75468FC1C for ; Fri, 2 Mar 2012 20:38:44 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q22KccuP095432 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 2 Mar 2012 15:38:40 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q22KcbWu073198; Fri, 2 Mar 2012 15:38:37 -0500 (EST) (envelope-from steve) Message-Id: <201203022038.q22KcbWu073198@meatwad.mouf.net> Date: Fri, 2 Mar 2012 15:38:37 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: markun@onohara.to Subject: ports/165638: [PATCH] japanese/p5-DateTime-Calendar-Japanese-Era: Add missing DEPENDS, add TEST_DEPENDS 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, 02 Mar 2012 20:40:08 -0000 >Number: 165638 >Category: ports >Synopsis: [PATCH] japanese/p5-DateTime-Calendar-Japanese-Era: Add missing DEPENDS, add TEST_DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 20:40:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: see patch Port maintainer (markun@onohara.to) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- ja-p5-DateTime-Calendar-Japanese-Era-0.08001_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/japanese/p5-DateTime-Calendar-Japanese-Era/Makefile,v retrieving revision 1.4 diff -u -u -r1.4 Makefile --- Makefile 11 Apr 2009 11:50:00 -0000 1.4 +++ Makefile 2 Mar 2012 20:38:14 -0000 @@ -7,6 +7,7 @@ PORTNAME= DateTime-Calendar-Japanese-Era PORTVERSION= 0.08001 +PORTREVISION= 1 CATEGORIES= japanese devel perl5 MASTER_SITES= CPAN @@ -17,8 +18,10 @@ p5-Class-Data-Inheritable>=0:${PORTSDIR}/devel/p5-Class-Data-Inheritable \ p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \ p5-File-ShareDir>=0:${PORTSDIR}/devel/p5-File-ShareDir \ - p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate -RUN_DEPENDS= ${BUILD_DEPENDS} + p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate \ + p5-YAML-Tiny>=1.38:${PORTSDIR}/textproc/p5-YAML-Tiny +RUN_DEPENDS:= ${BUILD_DEPENDS} +TEST_DEPENDS= p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML PERL_CONFIGURE= yes --- ja-p5-DateTime-Calendar-Japanese-Era-0.08001_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 21:00:20 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A43E1065675 for ; Fri, 2 Mar 2012 21:00:19 +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 BB5558FC19 for ; Fri, 2 Mar 2012 21:00:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22L0JQQ056750 for ; Fri, 2 Mar 2012 21:00:19 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22L0JZP056745; Fri, 2 Mar 2012 21:00:19 GMT (envelope-from gnats) Resent-Date: Fri, 2 Mar 2012 21:00:19 GMT Resent-Message-Id: <201203022100.q22L0JZP056745@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2F4EA10656F0 for ; Fri, 2 Mar 2012 20:54:55 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id C5ECE8FC14 for ; Fri, 2 Mar 2012 20:54:54 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q22Ksppe095625 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 2 Mar 2012 15:54:51 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q22KsoOg092036; Fri, 2 Mar 2012 15:54:50 -0500 (EST) (envelope-from steve) Message-Id: <201203022054.q22KsoOg092036@meatwad.mouf.net> Date: Fri, 2 Mar 2012 15:54:50 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: markun@onohara.to Subject: ports/165640: [PATCH] devel/p5-DateTime-Calendar-Japanese: add missing DEPEND 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, 02 Mar 2012 21:00:20 -0000 >Number: 165640 >Category: ports >Synopsis: [PATCH] devel/p5-DateTime-Calendar-Japanese: add missing DEPEND >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Mar 02 21:00:19 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: see patch note, this still fails tests Port maintainer (markun@onohara.to) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-DateTime-Calendar-Japanese-0.06001_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/p5-DateTime-Calendar-Japanese/Makefile,v retrieving revision 1.2 diff -u -u -r1.2 Makefile --- Makefile 20 Jun 2011 08:36:05 -0000 1.2 +++ Makefile 2 Mar 2012 20:54:34 -0000 @@ -7,6 +7,7 @@ PORTNAME= DateTime-Calendar-Japanese PORTVERSION= 0.06001 +PORTREVISION= 1 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:DMAKI @@ -20,13 +21,15 @@ p5-DateTime-Calendar-Chinese>=0:${PORTSDIR}/devel/p5-DateTime-Calendar-Chinese \ p5-DateTime-Event-Sunrise>=0:${PORTSDIR}/devel/p5-DateTime-Event-Sunrise \ ja-p5-DateTime-Calendar-Japanese-Era>=0:${PORTSDIR}/japanese/p5-DateTime-Calendar-Japanese-Era \ - p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate + p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate \ + p5-YAML>0:${PORTSDIR}/textproc/p5-YAML RUN_DEPENDS= p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \ p5-DateTime-Util-Calc>=0:${PORTSDIR}/devel/p5-DateTime-Util-Calc \ p5-DateTime-Calendar-Chinese>=0:${PORTSDIR}/devel/p5-DateTime-Calendar-Chinese \ p5-DateTime-Event-Sunrise>=0:${PORTSDIR}/devel/p5-DateTime-Event-Sunrise \ ja-p5-DateTime-Calendar-Japanese-Era>=0:${PORTSDIR}/japanese/p5-DateTime-Calendar-Japanese-Era \ - p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate + p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate \ + p5-YAML>0:${PORTSDIR}/textproc/p5-YAML PERL_CONFIGURE= yes --- p5-DateTime-Calendar-Japanese-0.06001_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 21:17:37 2012 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 A80C81065677; Fri, 2 Mar 2012 21:17:37 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 797B98FC18; Fri, 2 Mar 2012 21:17:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22LHbot075466; Fri, 2 Mar 2012 21:17:37 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22LHb0t075461; Fri, 2 Mar 2012 21:17:37 GMT (envelope-from scheidell) Date: Fri, 2 Mar 2012 21:17:37 GMT Message-Id: <201203022117.q22LHb0t075461@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165530: New port: devel/py-foolscap 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, 02 Mar 2012 21:17:37 -0000 Synopsis: New port: devel/py-foolscap Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Fri Mar 2 21:17:37 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165530 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 21:20:10 2012 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 60BC9106566C for ; Fri, 2 Mar 2012 21:20:10 +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 4BDFB8FC15 for ; Fri, 2 Mar 2012 21:20:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22LKA3V075862 for ; Fri, 2 Mar 2012 21:20:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22LKAwM075861; Fri, 2 Mar 2012 21:20:10 GMT (envelope-from gnats) Date: Fri, 2 Mar 2012 21:20:10 GMT Message-Id: <201203022120.q22LKAwM075861@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/165623: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Mar 2012 21:20:10 -0000 The following reply was made to PR ports/165623; it has been noted by GNATS. From: Michael Scheidell To: Cc: Subject: Re: ports/165623: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} Date: Fri, 2 Mar 2012 16:12:53 -0500 does portlint need to be upgraded to tell you to use ${FILE_CMD} instead of ${FILE} ? -- Michael Scheidell, CTO o: 561-999-5000 d: 561-948-2259 >*| *SECNAP Network Security Corporation * Best Mobile Solutions Product of 2011 * Best Intrusion Prevention Product * Hot Company Finalist 2011 * Best Email Security Product * Certified SNORT Integrator From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 22:35:37 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ACFAC106566C; Fri, 2 Mar 2012 22:35:37 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7FDC18FC0C; Fri, 2 Mar 2012 22:35:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22MZbXC049962; Fri, 2 Mar 2012 22:35:37 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22MZbTc049958; Fri, 2 Mar 2012 22:35:37 GMT (envelope-from scheidell) Date: Fri, 2 Mar 2012 22:35:37 GMT Message-Id: <201203022235.q22MZbTc049958@freefall.freebsd.org> To: bytestore@yandex.ru, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165532: New port: devel/py-zfec 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, 02 Mar 2012 22:35:37 -0000 Synopsis: New port: devel/py-zfec State-Changed-From-To: open->closed State-Changed-By: scheidell State-Changed-When: Fri Mar 2 22:35:37 UTC 2012 State-Changed-Why: port by that name already exists in portstree http://www.freebsd.org/cgi/query-pr.cgi?pr=165532 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 22:39:21 2012 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 835661065673; Fri, 2 Mar 2012 22:39:21 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 57A928FC15; Fri, 2 Mar 2012 22:39:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q22MdLa8050248; Fri, 2 Mar 2012 22:39:21 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q22MdLg0050244; Fri, 2 Mar 2012 22:39:21 GMT (envelope-from scheidell) Date: Fri, 2 Mar 2012 22:39:21 GMT Message-Id: <201203022239.q22MdLg0050244@freefall.freebsd.org> To: scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/165625: [maintainer] devel/ocaml-camlp5 update to 6.04 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, 02 Mar 2012 22:39:21 -0000 Synopsis: [maintainer] devel/ocaml-camlp5 update to 6.04 Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Fri Mar 2 22:39:20 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165625 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Mar 2 23:37:21 2012 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78107106566C for ; Fri, 2 Mar 2012 23:37:21 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (smtp6.infracaninophile.co.uk [IPv6:2001:8b0:151:1:3cd3:cd67:fafa:3d78]) by mx1.freebsd.org (Postfix) with ESMTP id D4C968FC0A for ; Fri, 2 Mar 2012 23:37:20 +0000 (UTC) Received: from seedling.black-earth.co.uk (seedling.black-earth.co.uk [IPv6:2001:8b0:151:1:fa1e:dfff:feda:c0bb]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.5/8.14.5) with ESMTP id q22NbGxU003885 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO) for ; Fri, 2 Mar 2012 23:37:17 GMT (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: OpenDKIM Filter v2.4.3 smtp.infracaninophile.co.uk q22NbGxU003885 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=infracaninophile.co.uk; s=201001-infracaninophile; t=1330731437; bh=8STHmGrojXU5F3KGoxzVNRsOHCtIsUQoIf9d9edquEg=; h=Message-ID:Date:From:MIME-Version:To:Subject:References: In-Reply-To:Content-Type:Cc; b=kYzb2gj3AhYKZNuHc8CIHdMzVrtE16BfFhlWq07zePL6cPU5hGtK8EDqbu2t6F+q+ 0mHPwR3lrbh/mF2yRE2K3YVd7yiiqrujY/TRM49W0pS8uKoAHF8qZBo2EC3CUdiiLP 5z6buEokcSdifuAUnfPh8ww5JPhTkUuF70qC/W68= Message-ID: <4F5159A4.2040303@infracaninophile.co.uk> Date: Fri, 02 Mar 2012 23:37:08 +0000 From: Matthew Seaman User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 MIME-Version: 1.0 To: freebsd-ports-bugs@freebsd.org References: <201203022120.q22LKAwM075861@freefall.freebsd.org> In-Reply-To: <201203022120.q22LKAwM075861@freefall.freebsd.org> X-Enigmail-Version: 1.3.5 OpenPGP: id=60AE908C Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig65E7E6248976B13154AB0DBE" X-Virus-Scanned: clamav-milter 0.97.3 at lucid-nonsense.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on lucid-nonsense.infracaninophile.co.uk Subject: Re: ports/165623: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} 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, 02 Mar 2012 23:37:21 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig65E7E6248976B13154AB0DBE Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 02/03/2012 21:20, Michael Scheidell wrote: > does portlint need to be upgraded to tell you to use ${FILE_CMD} inste= ad=20 > of ${FILE} ? Perhaps, but that's going to annoy the vast majority of people that use ${FILE} to mean something other than the file(1) application. I tend towards the view that there's so much prior art, and that saying: =2Efor FILE in ${LIST_OF_FILES} =2E.. =2Eendfor is so natural a construct that trying to make people do it differently would be wildly unpopular. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate JID: matthew@infracaninophile.co.uk Kent, CT11 9PW --------------enig65E7E6248976B13154AB0DBE Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.16 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk9RWawACgkQ8Mjk52CukIxkYQCdF9q0UwyZ3FM/YSOfDKzhoaIy fBwAn1zZnQm/b+Her+m3IMMRwYn9Utwj =CKXq -----END PGP SIGNATURE----- --------------enig65E7E6248976B13154AB0DBE-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 00:33:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 64C1C1065672; Sat, 3 Mar 2012 00:33:19 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3C8D48FC08; Sat, 3 Mar 2012 00:33:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q230XJb7064185; Sat, 3 Mar 2012 00:33:19 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q230XJTB064181; Sat, 3 Mar 2012 00:33:19 GMT (envelope-from jgh) Date: Sat, 3 Mar 2012 00:33:19 GMT Message-Id: <201203030033.q230XJTB064181@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, chromium@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165634: www/chromium : 17.0.963.56 doesn't show physical printer 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: Sat, 03 Mar 2012 00:33:19 -0000 Old Synopsis: chromium-17.0.963.56 doesn't show physical printer New Synopsis: www/chromium : 17.0.963.56 doesn't show physical printer Responsible-Changed-From-To: freebsd-ports-bugs->chromium Responsible-Changed-By: jgh Responsible-Changed-When: Sat Mar 3 00:32:24 UTC 2012 Responsible-Changed-Why: fix synopis and assign http://www.freebsd.org/cgi/query-pr.cgi?pr=165634 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 00:34:29 2012 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 08D021065686; Sat, 3 Mar 2012 00:34:29 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D4E658FC25; Sat, 3 Mar 2012 00:34:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q230YSSF064405; Sat, 3 Mar 2012 00:34:28 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q230YS8p064401; Sat, 3 Mar 2012 00:34:28 GMT (envelope-from jgh) Date: Sat, 3 Mar 2012 00:34:28 GMT Message-Id: <201203030034.q230YS8p064401@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, chromium@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165635: www/chromium: 17.0.963.56: proxy isn't read by chrome from kde4 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: Sat, 03 Mar 2012 00:34:29 -0000 Old Synopsis: chrome-17.0.963.56: proxy isn't read by chrome from kde4 New Synopsis: www/chromium: 17.0.963.56: proxy isn't read by chrome from kde4 Responsible-Changed-From-To: freebsd-ports-bugs->chromium Responsible-Changed-By: jgh Responsible-Changed-When: Sat Mar 3 00:33:52 UTC 2012 Responsible-Changed-Why: fix synopis and assign http://www.freebsd.org/cgi/query-pr.cgi?pr=165635 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 00:35:03 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A6F01065677; Sat, 3 Mar 2012 00:35:03 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0D8308FC18; Sat, 3 Mar 2012 00:35:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q230Z2KP064515; Sat, 3 Mar 2012 00:35:02 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q230Z23q064511; Sat, 3 Mar 2012 00:35:02 GMT (envelope-from jgh) Date: Sat, 3 Mar 2012 00:35:02 GMT Message-Id: <201203030035.q230Z23q064511@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, chromium@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165636: www/chromium: 17.0.963.56: unable to import data from another browser 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: Sat, 03 Mar 2012 00:35:03 -0000 Old Synopsis: chrome-17.0.963.56: unable to import data from another browser New Synopsis: www/chromium: 17.0.963.56: unable to import data from another browser Responsible-Changed-From-To: freebsd-ports-bugs->chromium Responsible-Changed-By: jgh Responsible-Changed-When: Sat Mar 3 00:34:38 UTC 2012 Responsible-Changed-Why: fix synopis and assign http://www.freebsd.org/cgi/query-pr.cgi?pr=165636 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 00:35:39 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68521106566B; Sat, 3 Mar 2012 00:35:39 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 406A98FC08; Sat, 3 Mar 2012 00:35:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q230Zd0q064637; Sat, 3 Mar 2012 00:35:39 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q230ZdUG064633; Sat, 3 Mar 2012 00:35:39 GMT (envelope-from jgh) Date: Sat, 3 Mar 2012 00:35:39 GMT Message-Id: <201203030035.q230ZdUG064633@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, chromium@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165637: www/chromium: 17.0.963.56 fails to find some ns plugins 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: Sat, 03 Mar 2012 00:35:39 -0000 Old Synopsis: chrome-17.0.963.56 fails to find some ns plugins New Synopsis: www/chromium: 17.0.963.56 fails to find some ns plugins Responsible-Changed-From-To: freebsd-ports-bugs->chromium Responsible-Changed-By: jgh Responsible-Changed-When: Sat Mar 3 00:35:07 UTC 2012 Responsible-Changed-Why: fix synopsis and assign http://www.freebsd.org/cgi/query-pr.cgi?pr=165637 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 02:53:58 2012 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 B589E106566C; Sat, 3 Mar 2012 02:53:58 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8C7748FC13; Sat, 3 Mar 2012 02:53:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q232rwSs092939; Sat, 3 Mar 2012 02:53:58 GMT (envelope-from swills@freefall.freebsd.org) Received: (from swills@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q232rw22092935; Sat, 3 Mar 2012 02:53:58 GMT (envelope-from swills) Date: Sat, 3 Mar 2012 02:53:58 GMT Message-Id: <201203030253.q232rw22092935@freefall.freebsd.org> To: swills@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: swills@FreeBSD.org Cc: Subject: Re: ports/165638: [PATCH] japanese/p5-DateTime-Calendar-Japanese-Era: Add missing DEPENDS, add TEST_DEPENDS 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: Sat, 03 Mar 2012 02:53:58 -0000 Synopsis: [PATCH] japanese/p5-DateTime-Calendar-Japanese-Era: Add missing DEPENDS, add TEST_DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: swills Responsible-Changed-When: Sat Mar 3 02:53:58 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165638 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 02:54:07 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B91B11065672; Sat, 3 Mar 2012 02:54:07 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 90D1B8FC1B; Sat, 3 Mar 2012 02:54:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q232s783093028; Sat, 3 Mar 2012 02:54:07 GMT (envelope-from swills@freefall.freebsd.org) Received: (from swills@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q232s7Od093024; Sat, 3 Mar 2012 02:54:07 GMT (envelope-from swills) Date: Sat, 3 Mar 2012 02:54:07 GMT Message-Id: <201203030254.q232s7Od093024@freefall.freebsd.org> To: swills@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, swills@FreeBSD.org From: swills@FreeBSD.org Cc: Subject: Re: ports/165640: [PATCH] devel/p5-DateTime-Calendar-Japanese: add missing DEPEND 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: Sat, 03 Mar 2012 02:54:07 -0000 Synopsis: [PATCH] devel/p5-DateTime-Calendar-Japanese: add missing DEPEND Responsible-Changed-From-To: freebsd-ports-bugs->swills Responsible-Changed-By: swills Responsible-Changed-When: Sat Mar 3 02:54:07 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165640 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 03:20:14 2012 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 A6A44106564A for ; Sat, 3 Mar 2012 03:20:14 +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 7BCB28FC15 for ; Sat, 3 Mar 2012 03:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q233KEoQ012567 for ; Sat, 3 Mar 2012 03:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q233KEQW012564; Sat, 3 Mar 2012 03:20:14 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 03:20:14 GMT Message-Id: <201203030320.q233KEQW012564@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Daniel Lin Cc: Subject: Re: ports/158904: [PATCH] finance/openerp-web: update to 6.0.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Lin List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 03:20:14 -0000 The following reply was made to PR ports/158904; it has been noted by GNATS. From: Daniel Lin To: Florian Millet , bug-followup@freebsd.org Cc: Subject: Re: ports/158904: [PATCH] finance/openerp-web: update to 6.0.2 Date: Sat, 3 Mar 2012 10:45:27 +0800 --bcaec5015d23938e2004ba4daf4a Content-Type: text/plain; charset=ISO-8859-1 Hello, Florian, I have no free time for handle it, so maybe wait for the original maintainer to do the update. In my opinion, it seems that current version is 6.1.1, so it's good for update to 6.1.1. 2012/3/2 Florian Millet > Hello fellow openerp users, > > Recently openerp version 6.1 was launched, apparently the web client is > now integrated inside the openerp server directly. > Is the update of this port still being worked on ? > Because last time I tried the patch for version 6.0.2 it still had problems > (like needing www/py-cherrypy version 3.1.2 whereas the ports are at > version 3.2.2, > or the script in /usr/local/openerp-web having the wrong name, > or the log files not taking into account the rc.conf variable for the > directory of the logs) > An update to the latest version would be greatly appreciated :) > > Thank you. > > --- > Millet Florian > Athena Distribution R&D > -- Daniel Lin (pct) --bcaec5015d23938e2004ba4daf4a Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hello,=A0Florian,

=A0 =A0 I have no free time for handle= it, so maybe wait for the original maintainer to do the update.
= =A0 =A0 In my=A0opinion, it seems that current version is 6.1.1, so it'= s good for update to 6.1.1.




--
Daniel Lin (= pct)
--bcaec5015d23938e2004ba4daf4a-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 03:30:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 62C14106564A for ; Sat, 3 Mar 2012 03:30:08 +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 4335C8FC0C for ; Sat, 3 Mar 2012 03:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q233U8GB021384 for ; Sat, 3 Mar 2012 03:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q233U8Wh021383; Sat, 3 Mar 2012 03:30:08 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 03:30:08 GMT Resent-Message-Id: <201203030330.q233U8Wh021383@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, Jin-Sih Lin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E940A106566C for ; Sat, 3 Mar 2012 03:20:57 +0000 (UTC) (envelope-from root@deep.tw) Received: from deep.tw (220-134-39-129.HINET-IP.hinet.net [220.134.39.129]) by mx1.freebsd.org (Postfix) with ESMTP id 682118FC1A for ; Sat, 3 Mar 2012 03:20:56 +0000 (UTC) Received: by deep.tw (Postfix, from userid 0) id AA77B5E2F; Sat, 3 Mar 2012 11:20:55 +0800 (CST) Message-Id: <20120303032055.AA77B5E2F@deep.tw> Date: Sat, 3 Mar 2012 11:20:55 +0800 (CST) From: Jin-Sih Lin To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165645: [MAINTAINER] www/node: update to 0.6.12 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: Sat, 03 Mar 2012 03:30:08 -0000 >Number: 165645 >Category: ports >Synopsis: [MAINTAINER] www/node: update to 0.6.12 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 03:30:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jin-Sih Lin >Release: FreeBSD 10.0-CURRENT i386 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD deep.tw 10.0-CURRENT FreeBSD 10.0-CURRENT #3: Tue Jan 31 00:40:07 CST 2012 >Description: - Update to 0.6.12 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- node-0.6.12.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/node.orig/Makefile /usr/ports/www/node/Makefile --- /usr/ports/www/node.orig/Makefile 2012-02-19 12:51:14.000000000 +0800 +++ /usr/ports/www/node/Makefile 2012-03-03 10:57:00.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= node -PORTVERSION= 0.6.11 +PORTVERSION= 0.6.12 CATEGORIES= www MASTER_SITES= http://nodejs.org/dist/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-v${PORTVERSION} diff -ruN --exclude=CVS /usr/ports/www/node.orig/distinfo /usr/ports/www/node/distinfo --- /usr/ports/www/node.orig/distinfo 2012-02-19 12:51:38.000000000 +0800 +++ /usr/ports/www/node/distinfo 2012-03-03 10:57:09.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (node-v0.6.11.tar.gz) = 94bbdb2d62645fd2ad5b96e41cfec68abf004fd03fabaaf7d71c48b39013cbd1 -SIZE (node-v0.6.11.tar.gz) = 10555423 +SHA256 (node-v0.6.12.tar.gz) = a16392fb83b288bd40cb64593253756a44f8111478edf5e8cc439a64622281c4 +SIZE (node-v0.6.12.tar.gz) = 10452498 diff -ruN --exclude=CVS /usr/ports/www/node.orig/pkg-plist /usr/ports/www/node/pkg-plist --- /usr/ports/www/node.orig/pkg-plist 2012-02-19 13:16:49.000000000 +0800 +++ /usr/ports/www/node/pkg-plist 2012-03-03 11:15:44.000000000 +0800 @@ -112,6 +112,7 @@ lib/node_modules/npm/doc/api/root.md lib/node_modules/npm/doc/api/run-script.md lib/node_modules/npm/doc/api/search.md +lib/node_modules/npm/doc/api/shrinkwrap.md lib/node_modules/npm/doc/api/start.md lib/node_modules/npm/doc/api/stop.md lib/node_modules/npm/doc/api/submodule.md @@ -165,6 +166,7 @@ lib/node_modules/npm/doc/cli/scripts.md lib/node_modules/npm/doc/cli/search.md lib/node_modules/npm/doc/cli/semver.md +lib/node_modules/npm/doc/cli/shrinkwrap.md lib/node_modules/npm/doc/cli/star.md lib/node_modules/npm/doc/cli/start.md lib/node_modules/npm/doc/cli/stop.md @@ -212,6 +214,7 @@ lib/node_modules/npm/html/api/run-script.html lib/node_modules/npm/html/api/search.html lib/node_modules/npm/html/api/set.html +lib/node_modules/npm/html/api/shrinkwrap.html lib/node_modules/npm/html/api/start.html lib/node_modules/npm/html/api/stop.html lib/node_modules/npm/html/api/style.css @@ -277,6 +280,7 @@ lib/node_modules/npm/html/doc/search.html lib/node_modules/npm/html/doc/semver.html lib/node_modules/npm/html/doc/set.html +lib/node_modules/npm/html/doc/shrinkwrap.html lib/node_modules/npm/html/doc/star.html lib/node_modules/npm/html/doc/start.html lib/node_modules/npm/html/doc/stop.html @@ -335,6 +339,7 @@ lib/node_modules/npm/lib/run-script.js lib/node_modules/npm/lib/search.js lib/node_modules/npm/lib/set.js +lib/node_modules/npm/lib/shrinkwrap.js lib/node_modules/npm/lib/star.js lib/node_modules/npm/lib/start.js lib/node_modules/npm/lib/stop.js @@ -361,7 +366,6 @@ lib/node_modules/npm/lib/utils/find-prefix.js lib/node_modules/npm/lib/utils/find.js lib/node_modules/npm/lib/utils/gently-rm.js -lib/node_modules/npm/lib/utils/get-agent.js lib/node_modules/npm/lib/utils/get.js lib/node_modules/npm/lib/utils/ini.js lib/node_modules/npm/lib/utils/lifecycle.js @@ -442,6 +446,7 @@ lib/node_modules/npm/man/man1/search.1 lib/node_modules/npm/man/man1/semver.1 lib/node_modules/npm/man/man1/set.1 +lib/node_modules/npm/man/man1/shrinkwrap.1 lib/node_modules/npm/man/man1/star.1 lib/node_modules/npm/man/man1/start.1 lib/node_modules/npm/man/man1/stop.1 @@ -488,6 +493,7 @@ lib/node_modules/npm/man/man3/run-script.3 lib/node_modules/npm/man/man3/search.3 lib/node_modules/npm/man/man3/set.3 +lib/node_modules/npm/man/man3/shrinkwrap.3 lib/node_modules/npm/man/man3/start.3 lib/node_modules/npm/man/man3/stop.3 lib/node_modules/npm/man/man3/submodule.3 @@ -583,6 +589,7 @@ lib/node_modules/npm/node_modules/request/mimetypes.js lib/node_modules/npm/node_modules/request/oauth.js lib/node_modules/npm/node_modules/request/package.json +lib/node_modules/npm/node_modules/request/tunnel.js lib/node_modules/npm/node_modules/request/uuid.js lib/node_modules/npm/node_modules/request/vendor/cookie/index.js lib/node_modules/npm/node_modules/request/vendor/cookie/jar.js @@ -655,12 +662,16 @@ lib/node_modules/npm/test/packages/npm-test-missing-bindir/test.js lib/node_modules/npm/test/packages/npm-test-optional-deps/package.json lib/node_modules/npm/test/packages/npm-test-private/package.json +lib/node_modules/npm/test/packages/npm-test-shrinkwrap/npm-shrinkwrap.json +lib/node_modules/npm/test/packages/npm-test-shrinkwrap/package.json +lib/node_modules/npm/test/packages/npm-test-shrinkwrap/test.sh lib/node_modules/npm/test/packages/npm-test-test-package/package.json lib/node_modules/npm/test/packages/npm-test-url-dep/package.json lib/node_modules/npm/test/run.js lib/node_modules/npm/test/update-test.sh @dirrm lib/node_modules/npm/test/packages/npm-test-url-dep @dirrm lib/node_modules/npm/test/packages/npm-test-test-package +@dirrm lib/node_modules/npm/test/packages/npm-test-shrinkwrap @dirrm lib/node_modules/npm/test/packages/npm-test-private @dirrm lib/node_modules/npm/test/packages/npm-test-optional-deps @dirrm lib/node_modules/npm/test/packages/npm-test-missing-bindir --- node-0.6.12.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 03:34:37 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 724E21065670; Sat, 3 Mar 2012 03:34:37 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4A1B78FC08; Sat, 3 Mar 2012 03:34:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q233YbAZ031724; Sat, 3 Mar 2012 03:34:37 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q233Ybv5031720; Sat, 3 Mar 2012 03:34:37 GMT (envelope-from jgh) Date: Sat, 3 Mar 2012 03:34:37 GMT Message-Id: <201203030334.q233Ybv5031720@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165645: [MAINTAINER] www/node: update to 0.6.12 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: Sat, 03 Mar 2012 03:34:37 -0000 Synopsis: [MAINTAINER] www/node: update to 0.6.12 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Mar 3 03:34:36 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165645 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:00:22 2012 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 4A744106566B for ; Sat, 3 Mar 2012 04:00:22 +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 21F1F8FC14 for ; Sat, 3 Mar 2012 04:00:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2340L8c049121 for ; Sat, 3 Mar 2012 04:00:22 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2340LvV049120; Sat, 3 Mar 2012 04:00:21 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 04:00:21 GMT Resent-Message-Id: <201203030400.q2340LvV049120@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, Jason Harmening Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 674D7106564A for ; Sat, 3 Mar 2012 03:53:59 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 3D0008FC18 for ; Sat, 3 Mar 2012 03:53:59 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q233rxRo042498 for ; Sat, 3 Mar 2012 03:53:59 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q233rwHJ042464; Sat, 3 Mar 2012 03:53:58 GMT (envelope-from nobody) Message-Id: <201203030353.q233rwHJ042464@red.freebsd.org> Date: Sat, 3 Mar 2012 03:53:58 GMT From: Jason Harmening To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165646: Update port multimedia/libtuner to 1.0.8 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: Sat, 03 Mar 2012 04:00:22 -0000 >Number: 165646 >Category: ports >Synopsis: Update port multimedia/libtuner to 1.0.8 >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: Sat Mar 03 04:00:21 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason Harmening >Release: 9.0-STABLE >Organization: >Environment: FreeBSD corona.austin.rr.com 9.0-STABLE FreeBSD 9.0-STABLE #1 r231833M: Thu Feb 16 17:25:13 CST 2012 jason@corona.austin.rr.com:/usr/obj/usr/src/sys/CUSTO >Description: --Add analog/FM support to FMD1216ME driver --Add support for TUV1236D tuner --Add support for NXT2004 digital demodulator >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN libtuner.orig/Makefile libtuner/Makefile --- libtuner.orig/Makefile 2011-09-13 04:44:57.000000000 -0500 +++ libtuner/Makefile 2012-03-02 21:53:55.000000000 -0600 @@ -2,11 +2,11 @@ # Date created: 7 September 2008 # Whom: jah # -# $FreeBSD: ports/multimedia/libtuner/Makefile,v 1.7 2011/09/13 09:44:57 martymac Exp $ +# $FreeBSD$ # PORTNAME= libtuner -PORTVERSION= 1.0.7 +PORTVERSION= 1.0.8 CATEGORIES= multimedia MASTER_SITES= ftp://corona.homeunix.net/ports/libtuner/ @@ -15,7 +15,7 @@ LICENSE= BSD -MAKE_ARGS+= LIBTUNER_MAJOR=1 LIBTUNER_MINOR=0 LIBTUNER_REV=7 INSTALLDIR=${PREFIX} +MAKE_ARGS+= LIBTUNER_MAJOR=1 LIBTUNER_MINOR=0 LIBTUNER_REV=8 INSTALLDIR=${PREFIX} USE_LDCONFIG= ${PREFIX}/lib/libtuner .include diff -ruN libtuner.orig/distinfo libtuner/distinfo --- libtuner.orig/distinfo 2011-09-13 04:44:57.000000000 -0500 +++ libtuner/distinfo 2012-03-02 21:53:55.000000000 -0600 @@ -1,2 +1,2 @@ -SHA256 (libtuner-1.0.7.tar.gz) = c61ee9ff3e7ce861fc0e998cbe71a12f827ecd9c47e6aaf87e274dddcf75aae2 -SIZE (libtuner-1.0.7.tar.gz) = 64496 +SHA256 (libtuner-1.0.8.tar.gz) = 1a880ab2aa633c0e524a3e2c29bbd6cc08543616c03a27292ed28c4d2f5afebb +SIZE (libtuner-1.0.8.tar.gz) = 74941 diff -ruN libtuner.orig/pkg-plist libtuner/pkg-plist --- libtuner.orig/pkg-plist 2011-09-13 04:44:57.000000000 -0500 +++ libtuner/pkg-plist 2012-03-02 21:53:55.000000000 -0600 @@ -11,6 +11,7 @@ include/libtuner/lg3303.h include/libtuner/lgh064f.h include/libtuner/mt2131.h +include/libtuner/nxt2004.h include/libtuner/or51132.h include/libtuner/pll_driver.h include/libtuner/s5h1411.h @@ -22,12 +23,14 @@ include/libtuner/tuner_devnode_device.h include/libtuner/tuner_driver.h include/libtuner/tuner_firmware.h +include/libtuner/tuv1236d.h include/libtuner/xc3028.h include/libtuner/xc5000.h %%DATADIR%%/license.txt %%DATADIR%%/xc5000-1.6.114.fw %%DATADIR%%/or51132_vsb.fw %%DATADIR%%/or51132_qam.fw +%%DATADIR%%/nxt2004.fw @dirrm lib/libtuner @dirrm include/libtuner @dirrm %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:00:28 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5CB4106566B for ; Sat, 3 Mar 2012 04:00:28 +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 9417F8FC12 for ; Sat, 3 Mar 2012 04:00:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q2340S3q049233 for ; Sat, 3 Mar 2012 04:00:28 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q2340SAj049230; Sat, 3 Mar 2012 04:00:28 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 04:00:28 GMT Message-Id: <201203030400.q2340SAj049230@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Alex Kozlov Cc: Subject: Re: ports/155697: ports-mgmt/pkg_replace doesn't want to replace java/openjdk6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alex Kozlov List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 04:00:28 -0000 The following reply was made to PR ports/155697; it has been noted by GNATS. From: Alex Kozlov To: Pavel Gubin , securedog@users.sourceforge.jp, eadler@freebsd.org, bug-followup@FreeBSD.org, spam@rm-rf.kiev.ua Cc: Subject: Re: ports/155697: ports-mgmt/pkg_replace doesn't want to replace java/openjdk6 Date: Sat, 3 Mar 2012 05:56:47 +0200 Hi With regret, as a former supporter, I must say that pkg_replace abandoned (maintainer is the author, last commit to cvs Thu Apr 3 20:00:22 2008 UTC) and begins to bitrot. Fortunately, we have portmaster now, which while not command line compatible with portupgrade, is actively maintained and have a nice feature set. Therefore I propose to deprecate pkg_replace. -- Adios From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:20:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F24801065673 for ; Sat, 3 Mar 2012 04:20:08 +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 CEC0D8FC0C for ; Sat, 3 Mar 2012 04:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234K8W8067855 for ; Sat, 3 Mar 2012 04:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234K8XU067854; Sat, 3 Mar 2012 04:20:08 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 04:20:08 GMT Resent-Message-Id: <201203030420.q234K8XU067854@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 49110106564A; Sat, 3 Mar 2012 04:19:13 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 0849B8FC0A; Sat, 3 Mar 2012 04:19:12 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q234J98I098577 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Fri, 2 Mar 2012 23:19:09 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q234J89K017746; Fri, 2 Mar 2012 23:19:08 -0500 (EST) (envelope-from steve) Message-Id: <201203030419.q234J89K017746@meatwad.mouf.net> Date: Fri, 2 Mar 2012 23:19:08 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: lth@FreeBSD.org Subject: ports/165648: [PATCH] mail/p5-Net-IMAP-Simple: update to 1.2030, add missing DEPENDS 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: Sat, 03 Mar 2012 04:20:09 -0000 >Number: 165648 >Category: ports >Synopsis: [PATCH] mail/p5-Net-IMAP-Simple: update to 1.2030, add missing DEPENDS >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: Sat Mar 03 04:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: - Update to 1.2030 - Add missing DEPENDS - Passes tests now. Port maintainer (lth@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: update, diff: CVS) >How-To-Repeat: >Fix: --- p5-Net-IMAP-Simple-1.2030.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/mail/p5-Net-IMAP-Simple/Makefile,v retrieving revision 1.22 diff -u -u -r1.22 Makefile --- Makefile 20 Aug 2011 16:08:02 -0000 1.22 +++ Makefile 3 Mar 2012 04:18:35 -0000 @@ -6,7 +6,7 @@ # PORTNAME= Net-IMAP-Simple -PORTVERSION= 1.2024 +PORTVERSION= 1.2030 CATEGORIES= mail perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:JETTERO @@ -15,6 +15,25 @@ MAINTAINER= lth@FreeBSD.org COMMENT= Perl extension for simple IMAP account handling +BUILD_DEPENDS= p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \ + p5-Coro>=0:${PORTSDIR}/devel/p5-Coro \ + p5-DateTime-Format-Mail>=0:${PORTSDIR}/devel/p5-DateTime-Format-Mail \ + p5-DateTime-Format-Strptime>=0:${PORTSDIR}/devel/p5-DateTime-Format-Strptime \ + p5-DateTime>=0:${PORTSDIR}/devel/p5-DateTime \ + p5-Email-Address>=0:${PORTSDIR}/mail/p5-Email-Address \ + p5-Email-MIME-ContentType>=0:${PORTSDIR}/mail/p5-Email-MIME-ContentType \ + p5-Email-MIME>=1.862:${PORTSDIR}/mail/p5-Email-MIME \ + p5-Email-Simple>=1.999:${PORTSDIR}/mail/p5-Email-Simple \ + p5-Encode-IMAPUTF7>=0:${PORTSDIR}/converters/p5-Encode-IMAPUTF7 \ + p5-IO-Socket-SSL>0:${PORTSDIR}/security/p5-IO-Socket-SSL \ + p5-List-MoreUtils>0:${PORTSDIR}/lang/p5-List-MoreUtils \ + p5-MIME-Base64>=0:${PORTSDIR}/converters/p5-MIME-Base64 \ + p5-Net-SSLeay>=0:${PORTSDIR}/security/p5-Net-SSLeay \ + p5-Net-Server-Coro>=0.3:${PORTSDIR}/net/p5-Net-Server-Coro \ + p5-Regexp-Common>=0:${PORTSDIR}/textproc/p5-Regexp-Common \ + p5-UNIVERSAL-require>=0:${PORTSDIR}/devel/p5-UNIVERSAL-require +RUN_DEPENDS:= ${BUILD_DEPENDS} + PERL_CONFIGURE= yes MAN3= Net::IMAP::Simple.3 \ @@ -36,4 +55,8 @@ PLIST_SUB+= WITH_SX="@comment " .endif +.if ${PERL_LEVEL} < 501400 +TEST_DEPENDS+= p5-Test-Simple>=0.98:${PORTSDIR}/devel/p5-Test-Simple +.endif + .include Index: distinfo =================================================================== RCS file: /home/pcvs/ports/mail/p5-Net-IMAP-Simple/distinfo,v retrieving revision 1.19 diff -u -u -r1.19 distinfo --- distinfo 20 Aug 2011 16:08:02 -0000 1.19 +++ distinfo 3 Mar 2012 04:18:35 -0000 @@ -1,2 +1,2 @@ -SHA256 (Net-IMAP-Simple-1.2024.tar.gz) = 2617a96c2972012c6aa1a783a93ccbabddd63fbec9095035c5c6fc311bc25877 -SIZE (Net-IMAP-Simple-1.2024.tar.gz) = 75151 +SHA256 (Net-IMAP-Simple-1.2030.tar.gz) = 120226be4fb8e9edf22297ab7e55cc8e25a8b59b9e19d66c6699a4a52c957473 +SIZE (Net-IMAP-Simple-1.2030.tar.gz) = 76864 --- p5-Net-IMAP-Simple-1.2030.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:20:18 2012 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 A0689106564A; Sat, 3 Mar 2012 04:20:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 77FAA8FC14; Sat, 3 Mar 2012 04:20:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234KIqt068018; Sat, 3 Mar 2012 04:20:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234KIiK068014; Sat, 3 Mar 2012 04:20:18 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 04:20:18 GMT Message-Id: <201203030420.q234KIiK068014@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lth@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165648: [PATCH] mail/p5-Net-IMAP-Simple: update to 1.2030, add missing DEPENDS 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: Sat, 03 Mar 2012 04:20:18 -0000 Synopsis: [PATCH] mail/p5-Net-IMAP-Simple: update to 1.2030, add missing DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->lth Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 3 04:20:17 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165648 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:24:21 2012 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 CFDEC1065677; Sat, 3 Mar 2012 04:24:21 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A80208FC16; Sat, 3 Mar 2012 04:24:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234OLF8076227; Sat, 3 Mar 2012 04:24:21 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234OLS7076223; Sat, 3 Mar 2012 04:24:21 GMT (envelope-from jgh) Date: Sat, 3 Mar 2012 04:24:21 GMT Message-Id: <201203030424.q234OLS7076223@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165646: Update port multimedia/libtuner to 1.0.8 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: Sat, 03 Mar 2012 04:24:21 -0000 Synopsis: Update port multimedia/libtuner to 1.0.8 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Mar 3 04:24:21 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165646 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:30:12 2012 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 3020E1065670 for ; Sat, 3 Mar 2012 04:30:11 +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 C4CD08FC0C for ; Sat, 3 Mar 2012 04:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234UB93076385 for ; Sat, 3 Mar 2012 04:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234UBot076383; Sat, 3 Mar 2012 04:30:11 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 04:30:11 GMT Resent-Message-Id: <201203030430.q234UBot076383@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, Jase Thew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D7A2106564A for ; Sat, 3 Mar 2012 04:22:47 +0000 (UTC) (envelope-from freebsd@beardz.net) Received: from beardz.net (beardz.net [IPv6:2a01:4f8:121:2403:1::]) by mx1.freebsd.org (Postfix) with ESMTP id F286C8FC16 for ; Sat, 3 Mar 2012 04:22:46 +0000 (UTC) Received: from beardz.net (localhost [127.0.1.7]) by beardz.net (8.14.5/8.14.4) with ESMTP id q234MiZ4056038 for ; Sat, 3 Mar 2012 04:22:45 GMT (envelope-from freebsd@beardz.net) Received: (from root@localhost) by beardz.net (8.14.5/8.14.4/Submit) id q234Mhpr056027; Sat, 3 Mar 2012 04:22:43 GMT (envelope-from freebsd@beardz.net) Message-Id: <201203030422.q234Mhpr056027@beardz.net> Date: Sat, 3 Mar 2012 04:22:43 GMT From: Jase Thew To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165649: [MAINTAINER] sysutils/duplicity: update to 0.6.18 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: Sat, 03 Mar 2012 04:30:12 -0000 >Number: 165649 >Category: ports >Synopsis: [MAINTAINER] sysutils/duplicity: update to 0.6.18 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 04:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jase Thew >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD jail-ports.localdomain 8.2-STABLE FreeBSD 8.2-STABLE #0 r225827: Wed Sep 28 13:55:02 BST >Description: - Update to 0.6.18 Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- duplicity-0.6.18.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sysutils/duplicity.orig/Makefile /usr/ports/sysutils/duplicity/Makefile --- /usr/ports/sysutils/duplicity.orig/Makefile 2011-11-26 15:06:32.000000000 +0000 +++ /usr/ports/sysutils/duplicity/Makefile 2012-03-03 04:21:21.217331938 +0000 @@ -6,7 +6,7 @@ # PORTNAME= duplicity -PORTVERSION= 0.6.17 +PORTVERSION= 0.6.18 CATEGORIES= sysutils MASTER_SITES= http://launchpad.net/duplicity/0.6-series/${PORTVERSION}/+download/ diff -ruN --exclude=CVS /usr/ports/sysutils/duplicity.orig/distinfo /usr/ports/sysutils/duplicity/distinfo --- /usr/ports/sysutils/duplicity.orig/distinfo 2011-11-26 15:06:32.000000000 +0000 +++ /usr/ports/sysutils/duplicity/distinfo 2012-03-03 04:21:21.544141703 +0000 @@ -1,2 +1,2 @@ -SHA256 (duplicity-0.6.17.tar.gz) = 891e56061ab15127e67c93b9b462760b055eb48636c177b56400925d0a77a458 -SIZE (duplicity-0.6.17.tar.gz) = 1119945 +SHA256 (duplicity-0.6.18.tar.gz) = 56bc583be1031762dd94082cb30e09e1347167aaa88188f8d6d6c052ad8f90af +SIZE (duplicity-0.6.18.tar.gz) = 1101351 diff -ruN --exclude=CVS /usr/ports/sysutils/duplicity.orig/pkg-plist /usr/ports/sysutils/duplicity/pkg-plist --- /usr/ports/sysutils/duplicity.orig/pkg-plist 2011-11-26 15:06:32.000000000 +0000 +++ /usr/ports/sysutils/duplicity/pkg-plist 2012-03-03 04:21:21.171166682 +0000 @@ -121,9 +121,6 @@ %%PYTHON_SITELIBDIR%%/duplicity/path.py %%PYTHON_SITELIBDIR%%/duplicity/path.pyc %%PYTHON_SITELIBDIR%%/duplicity/path.pyo -%%PYTHON_SITELIBDIR%%/duplicity/pexpect.py -%%PYTHON_SITELIBDIR%%/duplicity/pexpect.pyc -%%PYTHON_SITELIBDIR%%/duplicity/pexpect.pyo %%PYTHON_SITELIBDIR%%/duplicity/robust.py %%PYTHON_SITELIBDIR%%/duplicity/robust.pyc %%PYTHON_SITELIBDIR%%/duplicity/robust.pyo --- duplicity-0.6.18.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:30:12 2012 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 AAB161065673 for ; Sat, 3 Mar 2012 04:30:12 +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 6BF928FC13 for ; Sat, 3 Mar 2012 04:30:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234UC21076413 for ; Sat, 3 Mar 2012 04:30:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234UClL076409; Sat, 3 Mar 2012 04:30:12 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 04:30:12 GMT Resent-Message-Id: <201203030430.q234UClL076409@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, UMENO Takashi Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7D3D106566B for ; Sat, 3 Mar 2012 04:27:22 +0000 (UTC) (envelope-from umeno@belldandy.unnumbered.net) Received: from belldandy.unnumbered.net (gateway.unnumbered.net [61.197.240.129]) by mx1.freebsd.org (Postfix) with ESMTP id 6ABFF8FC08 for ; Sat, 3 Mar 2012 04:27:22 +0000 (UTC) Received: from belldandy.unnumbered.net (localhost [127.0.0.1]) by belldandy.unnumbered.net (8.14.5/8.14.5) with ESMTP id q234CDuo029810 for ; Sat, 3 Mar 2012 13:12:13 +0900 (JST) (envelope-from umeno@belldandy.unnumbered.net) Received: (from umeno@localhost) by belldandy.unnumbered.net (8.14.5/8.14.5/Submit) id q234CC6P029805; Sat, 3 Mar 2012 13:12:12 +0900 (JST) (envelope-from umeno) Message-Id: <201203030412.q234CC6P029805@belldandy.unnumbered.net> Date: Sat, 3 Mar 2012 13:12:12 +0900 (JST) From: UMENO Takashi To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165650: Maintainer Update:games/ninix-aya to 4.3.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: UMENO Takashi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 04:30:12 -0000 >Number: 165650 >Category: ports >Synopsis: Maintainer Update:games/ninix-aya to 4.3.9 >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: Sat Mar 03 04:30:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: UMENO Takashi >Release: FreeBSD 8.2-STABLE i386 >Organization: individual >Environment: System: FreeBSD belldandy.unnumbered.net 8.2-STABLE FreeBSD 8.2-STABLE #0: Tue Jan 17 01:37:06 JST 2012 root@belldandy.unnumbered.net:/usr/obj/usr/src/sys/ZFS i386 >Description: Maintainer Update:games/ninix-aya to 4.3.9 >How-To-Repeat: N/A >Fix: diff -urN ninix-aya.orig/Makefile ninix-aya/Makefile --- ninix-aya.orig/Makefile 2012-01-20 10:28:30.000000000 +0900 +++ ninix-aya/Makefile 2012-03-03 12:29:03.000000000 +0900 @@ -6,10 +6,10 @@ # PORTNAME= ninix-aya -PORTVERSION= 4.3.8 +PORTVERSION= 4.3.9 CATEGORIES= games MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} -MASTER_SITE_SUBDIR= ninix-aya/54599 +MASTER_SITE_SUBDIR= ninix-aya/54987 EXTRACT_SUFX= .tgz MAINTAINER= umeno@rr.iij4u.or.jp diff -urN ninix-aya.orig/distinfo ninix-aya/distinfo --- ninix-aya.orig/distinfo 2012-01-20 10:28:30.000000000 +0900 +++ ninix-aya/distinfo 2012-03-03 12:29:32.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (ninix-aya-4.3.8.tgz) = d577fef9e406589762e1d30b6e4bc9805d6c6ab635654a5318cb7c6d63224ca7 -SIZE (ninix-aya-4.3.8.tgz) = 320522 +SHA256 (ninix-aya-4.3.9.tgz) = 164dd94e6da2e746959d2358f10584fc82f15843836c4efb0855d9df3c6c23fb +SIZE (ninix-aya-4.3.9.tgz) = 321219 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:30:29 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EBE2C1065676; Sat, 3 Mar 2012 04:30:29 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C397E8FC1D; Sat, 3 Mar 2012 04:30:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234UTH6077312; Sat, 3 Mar 2012 04:30:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234UTKG077304; Sat, 3 Mar 2012 04:30:29 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 04:30:29 GMT Message-Id: <201203030430.q234UTKG077304@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165650: Maintainer Update:games/ninix-aya to 4.3.9 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: Sat, 03 Mar 2012 04:30:30 -0000 Synopsis: Maintainer Update:games/ninix-aya to 4.3.9 Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Sat Mar 3 04:30:28 UTC 2012 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165650 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:30:37 2012 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 C458F1065676; Sat, 3 Mar 2012 04:30:37 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9C03B8FC15; Sat, 3 Mar 2012 04:30:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234Ubsc077740; Sat, 3 Mar 2012 04:30:37 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234Ubg3077729; Sat, 3 Mar 2012 04:30:37 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 04:30:37 GMT Message-Id: <201203030430.q234Ubg3077729@freefall.freebsd.org> To: umeno@belldandy.unnumbered.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165650: Maintainer Update:games/ninix-aya to 4.3.9 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: Sat, 03 Mar 2012 04:30:37 -0000 Synopsis: Maintainer Update:games/ninix-aya to 4.3.9 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Mar 3 04:30:36 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165650 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:40:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3BB4B1065673 for ; Sat, 3 Mar 2012 04:40:10 +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 2A9258FC12 for ; Sat, 3 Mar 2012 04:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234eArp087782 for ; Sat, 3 Mar 2012 04:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234eAJx087781; Sat, 3 Mar 2012 04:40:10 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 04:40:10 GMT Message-Id: <201203030440.q234eAJx087781@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/165650: Maintainer Update:games/ninix-aya to 4.3.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 04:40:10 -0000 The following reply was made to PR ports/165650; it has been noted by GNATS. From: Edwin Groothuis To: umeno@rr.iij4u.or.jp Cc: bug-followup@FreeBSD.org Subject: Re: ports/165650: Maintainer Update:games/ninix-aya to 4.3.9 Date: Sat, 3 Mar 2012 04:30:33 UT Maintainer of games/ninix-aya, Please note that PR ports/165650 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165650 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:40:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A039D106564A for ; Sat, 3 Mar 2012 04:40:10 +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 7D5778FC08 for ; Sat, 3 Mar 2012 04:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234eApw087802 for ; Sat, 3 Mar 2012 04:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234eA7n087801; Sat, 3 Mar 2012 04:40:10 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 04:40:10 GMT Resent-Message-Id: <201203030440.q234eA7n087801@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, Alex Kozlov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4353E1065672 for ; Sat, 3 Mar 2012 04:37:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 19A0D8FC16 for ; Sat, 3 Mar 2012 04:37:54 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q234brwB018767 for ; Sat, 3 Mar 2012 04:37:53 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q234brwr018766; Sat, 3 Mar 2012 04:37:53 GMT (envelope-from nobody) Message-Id: <201203030437.q234brwr018766@red.freebsd.org> Date: Sat, 3 Mar 2012 04:37:53 GMT From: Alex Kozlov To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165651: [patch] www/lynx update to 2.8.7.2 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: Sat, 03 Mar 2012 04:40:10 -0000 >Number: 165651 >Category: ports >Synopsis: [patch] www/lynx update to 2.8.7.2 >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: Sat Mar 03 04:40:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Alex Kozlov >Release: RELENG_9 >Organization: private >Environment: >Description: - update to 2.8.7.1 - fix MASTER_SITES - remove useless post-patch target >How-To-Repeat: >Fix: Patch attached with submission follows: Index: ports/www/lynx/Makefile @@ -6,11 +6,10 @@ # PORTNAME= lynx -PORTVERSION= 2.8.7.1 -PORTREVISION= 1 +PORTVERSION= 2.8.7.2 PORTEPOCH= 1 CATEGORIES= www ipv6 -MASTER_SITES= ftp://lynx.isc.org/lynx${PORTVERSION}/patches/:patches +MASTER_SITES= http://lynx.isc.org/current/ DISTNAME= ${PORTNAME}${PORTVERSION:R}rel.${PORTVERSION:E} MAINTAINER= jharris@widomaker.com @@ -70,9 +69,6 @@ SUB_FILES= pkg-message -post-patch: - @${RM} -f ${WRKSRC}/CHANGES.orig - post-install: ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR} ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${L_HELP} Index: ports/www/lynx/pkg-plist @@ -41,7 +41,6 @@ %%DOCSDIR%%/docs/TCPWARE.announce.gz %%DOCSDIR%%/docs/VMSWAIS.announce.gz %%DOCSDIR%%/docs/djgpp.key -%%DOCSDIR%%/docs/index.html %%DOCSDIR%%/docs/pdcurses.key %%DOCSDIR%%/docs/slang.key %%DOCSDIR%%/docs/win-386.announce.gz @@ -49,7 +48,6 @@ %%DOCSDIR%%/samples/bright-blue.lss %%DOCSDIR%%/samples/cernrules.txt %%DOCSDIR%%/samples/home.htm -%%DOCSDIR%%/samples/index.html %%DOCSDIR%%/samples/installdirs.html %%DOCSDIR%%/samples/jumps.htm %%DOCSDIR%%/samples/jumpsUnix.html @@ -78,7 +76,6 @@ %%DOCSDIR%%/test/c1.html %%DOCSDIR%%/test/cp-1252.html %%DOCSDIR%%/test/cp-1252a.html -%%DOCSDIR%%/test/index.html %%DOCSDIR%%/test/iso-8859-1.html %%DOCSDIR%%/test/iso-8859-1a.html %%DOCSDIR%%/test/iso-8859-2.html @@ -98,7 +95,6 @@ share/lynx_help/COPYING share/lynx_help/Lynx_users_guide.html.gz share/lynx_help/about_lynx.html.gz -share/lynx_help/index.html.gz share/lynx_help/keystrokes/alt_edit_help.html.gz share/lynx_help/keystrokes/bashlike_edit_help.html.gz share/lynx_help/keystrokes/bookmark_help.html.gz @@ -109,7 +105,6 @@ share/lynx_help/keystrokes/follow_help.html.gz share/lynx_help/keystrokes/gopher_types_help.html.gz share/lynx_help/keystrokes/history_help.html.gz -share/lynx_help/keystrokes/index.html.gz share/lynx_help/keystrokes/keystroke_help.html.gz share/lynx_help/keystrokes/movement_help.html.gz share/lynx_help/keystrokes/option_help.html.gz Index: ports/www/lynx/distinfo @@ -1,2 +1,2 @@ -SHA256 (lynx2.8.7rel.1.tar.bz2) = 40ec9774deb4a7acf69e1bcfb5e272a3857ccc17e20d923255d64cb5dbe55dad -SIZE (lynx2.8.7rel.1.tar.bz2) = 2432045 +SHA256 (lynx2.8.7rel.2.tar.bz2) = 301bda96ad3cd5032805e8d5315a42061a11e472e3d3a7baee3a2879517ef627 +SIZE (lynx2.8.7rel.2.tar.bz2) = 2436801 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:40:24 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 997471065689; Sat, 3 Mar 2012 04:40:24 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 723198FC15; Sat, 3 Mar 2012 04:40:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234eOp1087916; Sat, 3 Mar 2012 04:40:24 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234eOJB087912; Sat, 3 Mar 2012 04:40:24 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 04:40:24 GMT Message-Id: <201203030440.q234eOJB087912@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, eadler@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165651: [patch] www/lynx update to 2.8.7.2 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: Sat, 03 Mar 2012 04:40:24 -0000 Synopsis: [patch] www/lynx update to 2.8.7.2 Responsible-Changed-From-To: freebsd-ports-bugs->eadler Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 3 04:40:24 UTC 2012 Responsible-Changed-Why: eadler@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165651 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:50:08 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CEC701065672 for ; Sat, 3 Mar 2012 04:50:08 +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 ABC328FC13 for ; Sat, 3 Mar 2012 04:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234o8SM096736 for ; Sat, 3 Mar 2012 04:50:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234o8PH096735; Sat, 3 Mar 2012 04:50:08 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 04:50:08 GMT Resent-Message-Id: <201203030450.q234o8PH096735@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, Jason Harmening Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 56F84106566C for ; Sat, 3 Mar 2012 04:40:11 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 2D53F8FC16 for ; Sat, 3 Mar 2012 04:40:11 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q234eAlO018870 for ; Sat, 3 Mar 2012 04:40:10 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q234eAaS018869; Sat, 3 Mar 2012 04:40:10 GMT (envelope-from nobody) Message-Id: <201203030440.q234eAaS018869@red.freebsd.org> Date: Sat, 3 Mar 2012 04:40:10 GMT From: Jason Harmening To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165652: Update port multimedia/cx88 to 1.4.2 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: Sat, 03 Mar 2012 04:50:08 -0000 >Number: 165652 >Category: ports >Synopsis: Update port multimedia/cx88 to 1.4.2 >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: Sat Mar 03 04:50:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason Harmening >Release: 9.0-STABLE >Organization: >Environment: FreeBSD corona.austin.rr.com 9.0-STABLE FreeBSD 9.0-STABLE #1 r231833M: Thu Feb 16 17:25:13 CST 2012 jason@corona.austin.rr.com:/usr/obj/usr/src/sys/CUSTOM amd64 >Description: --Add Linux /dev/radio support --Add support for Hauppauge WinTV PCI-FM --Add support for ATI HDTV Wonder >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN cx88.orig/Makefile cx88/Makefile --- cx88.orig/Makefile 2011-10-11 13:42:57.000000000 -0500 +++ cx88/Makefile 2012-03-02 22:00:10.000000000 -0600 @@ -2,11 +2,11 @@ # Date created: 7 September 2008 # Whom: jah # -# $FreeBSD: ports/multimedia/cx88/Makefile,v 1.18 2011/10/11 18:42:57 nox Exp $ +# $FreeBSD$ # PORTNAME= cx88 -PORTVERSION= 1.4.1 +PORTVERSION= 1.4.2 CATEGORIES= multimedia kld MASTER_SITES= ftp://corona.homeunix.net/ports/cx88/ @@ -17,7 +17,7 @@ LIB_DEPENDS= tuner.1:${PORTSDIR}/multimedia/libtuner BUILD_DEPENDS= ${LOCALBASE}/lib/libezxml.a:${PORTSDIR}/textproc/ezxml \ - libtuner>=1.0.7:${PORTSDIR}/multimedia/libtuner + libtuner>=1.0.8:${PORTSDIR}/multimedia/libtuner KMODDIR= /boot/modules PLIST_SUB+= KMODDIR=${KMODDIR} @@ -30,7 +30,7 @@ LIB_DEPENDS+= cuse4bsd.1:${PORTSDIR}/multimedia/cuse4bsd-kmod BUILD_DEPENDS+= v4l_compat>=1.0.20100321:${PORTSDIR}/multimedia/v4l_compat \ cuse4bsd-kmod>=0.1.12:${PORTSDIR}/multimedia/cuse4bsd-kmod -MAKE_ARGS+= -D WITH_LINUX_DVB +MAKE_ARGS+= -D WITH_LINUX_COMPAT .endif .if (${OSVERSION} < 704000) || ((${OSVERSION} >= 800000) && (${OSVERSION} < 801000)) diff -ruN cx88.orig/distinfo cx88/distinfo --- cx88.orig/distinfo 2011-10-11 13:42:57.000000000 -0500 +++ cx88/distinfo 2012-03-02 22:00:10.000000000 -0600 @@ -1,2 +1,2 @@ -SHA256 (cx88-1.4.1.tar.gz) = eb1f5a2e83e3735793a8cfd0c352894f8921efe7a92c10d6de5674bc7e78e098 -SIZE (cx88-1.4.1.tar.gz) = 178296 +SHA256 (cx88-1.4.2.tar.gz) = c9127481fbed600452f043ae3f395c29b2cac88db5ee84f1786f07336ca7c8ec +SIZE (cx88-1.4.2.tar.gz) = 182216 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:55:19 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B13A31065670; Sat, 3 Mar 2012 04:55:19 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 896168FC0C; Sat, 3 Mar 2012 04:55:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234tJrI005128; Sat, 3 Mar 2012 04:55:19 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234tJI5005124; Sat, 3 Mar 2012 04:55:19 GMT (envelope-from jgh) Date: Sat, 3 Mar 2012 04:55:19 GMT Message-Id: <201203030455.q234tJI5005124@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165649: [MAINTAINER] sysutils/duplicity: update to 0.6.18 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: Sat, 03 Mar 2012 04:55:20 -0000 Synopsis: [MAINTAINER] sysutils/duplicity: update to 0.6.18 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Mar 3 04:55:19 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165649 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:55:39 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4DA961065674; Sat, 3 Mar 2012 04:55:39 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 255D88FC14; Sat, 3 Mar 2012 04:55:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234td9w005303; Sat, 3 Mar 2012 04:55:39 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234tcZp005299; Sat, 3 Mar 2012 04:55:38 GMT (envelope-from jgh) Date: Sat, 3 Mar 2012 04:55:38 GMT Message-Id: <201203030455.q234tcZp005299@freefall.freebsd.org> To: umeno@rr.iij4u.or.jp, jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165650: Maintainer Update:games/ninix-aya to 4.3.9 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: Sat, 03 Mar 2012 04:55:39 -0000 Synopsis: Maintainer Update:games/ninix-aya to 4.3.9 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Mar 3 04:55:38 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165650 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 04:56:37 2012 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 46AAF1065670; Sat, 3 Mar 2012 04:56:37 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1F2F18FC0C; Sat, 3 Mar 2012 04:56:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q234ub3r005403; Sat, 3 Mar 2012 04:56:37 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q234uaaL005399; Sat, 3 Mar 2012 04:56:36 GMT (envelope-from jgh) Date: Sat, 3 Mar 2012 04:56:36 GMT Message-Id: <201203030456.q234uaaL005399@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165652: Update port multimedia/cx88 to 1.4.2 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: Sat, 03 Mar 2012 04:56:37 -0000 Synopsis: Update port multimedia/cx88 to 1.4.2 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Mar 3 04:56:36 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165652 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 07:20:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E2B5E106564A for ; Sat, 3 Mar 2012 07:20:08 +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 BB9D08FC12 for ; Sat, 3 Mar 2012 07:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q237K8ZR038824 for ; Sat, 3 Mar 2012 07:20:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q237K81q038823; Sat, 3 Mar 2012 07:20:08 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 07:20:08 GMT Resent-Message-Id: <201203030720.q237K81q038823@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, Jase Thew Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B6B3E106564A for ; Sat, 3 Mar 2012 07:17:26 +0000 (UTC) (envelope-from freebsd@beardz.net) Received: from beardz.net (beardz.net [IPv6:2a01:4f8:121:2403:1::]) by mx1.freebsd.org (Postfix) with ESMTP id 57BE28FC0A for ; Sat, 3 Mar 2012 07:17:26 +0000 (UTC) Received: from beardz.net (localhost [127.0.1.7]) by beardz.net (8.14.5/8.14.4) with ESMTP id q237HO8A040879 for ; Sat, 3 Mar 2012 07:17:24 GMT (envelope-from freebsd@beardz.net) Received: (from root@localhost) by beardz.net (8.14.5/8.14.4/Submit) id q237HOtc040878; Sat, 3 Mar 2012 07:17:24 GMT (envelope-from freebsd@beardz.net) Message-Id: <201203030717.q237HOtc040878@beardz.net> Date: Sat, 3 Mar 2012 07:17:24 GMT From: Jase Thew To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165653: [MAINTAINER] devel/p5-Reflex: update to 0.095 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: Sat, 03 Mar 2012 07:20:09 -0000 >Number: 165653 >Category: ports >Synopsis: [MAINTAINER] devel/p5-Reflex: update to 0.095 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 07:20:08 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jase Thew >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD jail-ports.localdomain 8.2-STABLE FreeBSD 8.2-STABLE #0 r225827: Wed Sep 28 13:55:02 BST >Description: - Update to 0.095 - Changes: http://cpansearch.perl.org/src/RCAPUTO/Reflex-0.095/CHANGES Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- p5-Reflex-0.095.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/p5-Reflex.orig/Makefile /usr/ports/devel/p5-Reflex/Makefile --- /usr/ports/devel/p5-Reflex.orig/Makefile 2011-11-30 08:49:51.000000000 +0000 +++ /usr/ports/devel/p5-Reflex/Makefile 2012-03-03 07:15:27.762787965 +0000 @@ -6,7 +6,7 @@ # PORTNAME= Reflex -PORTVERSION= 0.092 +PORTVERSION= 0.095 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:RCAPUTO diff -ruN --exclude=CVS /usr/ports/devel/p5-Reflex.orig/distinfo /usr/ports/devel/p5-Reflex/distinfo --- /usr/ports/devel/p5-Reflex.orig/distinfo 2011-11-30 08:49:51.000000000 +0000 +++ /usr/ports/devel/p5-Reflex/distinfo 2012-03-03 07:15:27.763793956 +0000 @@ -1,2 +1,2 @@ -SHA256 (Reflex-0.092.tar.gz) = b12ca1956c985a950126d14b6cd261f51998cf0136b40c270023cf20f200554e -SIZE (Reflex-0.092.tar.gz) = 159896 +SHA256 (Reflex-0.095.tar.gz) = 28ab1bcc4c70d0f3b546eb52bf7fc1a390b2e6dbdc17ad12e0a2ba9ac78e37f9 +SIZE (Reflex-0.095.tar.gz) = 160683 diff -ruN --exclude=CVS /usr/ports/devel/p5-Reflex.orig/pkg-plist /usr/ports/devel/p5-Reflex/pkg-plist --- /usr/ports/devel/p5-Reflex.orig/pkg-plist 2011-11-30 08:49:51.000000000 +0000 +++ /usr/ports/devel/p5-Reflex/pkg-plist 2012-03-03 07:15:27.782813927 +0000 @@ -106,6 +106,7 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/eg-18-synopsis-no-moose.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/eg-19-net-ssh.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/eg-20-mysql.pl +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/eg-21-poco-client-http.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/eg-30-promise-timer.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/eg-31-promise-object.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/eg-32-promise-tiny.pl @@ -131,6 +132,7 @@ %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ReflexPromise.pm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/Runner.pm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/RunnerRole.pm +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ZmqMessage.pm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ZmqSocket.pm %%PORTEXAMPLES%%%%EXAMPLESDIR%%/proto/eg-61-run-collection.pl %%PORTEXAMPLES%%%%EXAMPLESDIR%%/proto/eg-52-subclassed-timeout.pl --- p5-Reflex-0.095.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 07:20:53 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C5281065670; Sat, 3 Mar 2012 07:20:53 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 348068FC0C; Sat, 3 Mar 2012 07:20:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q237Krop041421; Sat, 3 Mar 2012 07:20:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q237KreB041412; Sat, 3 Mar 2012 07:20:53 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 07:20:53 GMT Message-Id: <201203030720.q237KreB041412@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165653: [MAINTAINER] devel/p5-Reflex: update to 0.095 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: Sat, 03 Mar 2012 07:20:53 -0000 Synopsis: [MAINTAINER] devel/p5-Reflex: update to 0.095 Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 3 07:20:52 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165653 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 09:50:12 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2DB441065674 for ; Sat, 3 Mar 2012 09:50:12 +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 02F6F8FC0C for ; Sat, 3 Mar 2012 09:50:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q239oBXB003868 for ; Sat, 3 Mar 2012 09:50:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q239oBbR003867; Sat, 3 Mar 2012 09:50:11 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 09:50:11 GMT Message-Id: <201203030950.q239oBbR003867@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/157301: [New port] net-mgmt/zbxlog: Syslog server receives messages and send them to Zabbix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 09:50:12 -0000 The following reply was made to PR ports/157301; it has been noted by GNATS. From: Michael Scheidell To: Cc: Subject: Re: ports/157301: [New port] net-mgmt/zbxlog: Syslog server receives messages and send them to Zabbix Date: Sat, 3 Mar 2012 04:45:53 -0500 I am sorry this has sat for almost a year, do you still want this port added? Is this still the latest version? -- Michael Scheidell, CTO >*| * SECNAP Network Security Corporation d: +1.561.948.2259 w: http://people.freebsd.org/~scheidell From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 10:20:12 2012 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 28C18106564A for ; Sat, 3 Mar 2012 10:20:12 +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 1797A8FC08 for ; Sat, 3 Mar 2012 10:20:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23AKBBo031009 for ; Sat, 3 Mar 2012 10:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23AKBtn031008; Sat, 3 Mar 2012 10:20:11 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 10:20:11 GMT Message-Id: <201203031020.q23AKBtn031008@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/161894: New port databases/datamodeler: Database modeling tool X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 10:20:12 -0000 The following reply was made to PR ports/161894; it has been noted by GNATS. From: Michael Scheidell To: Cc: Subject: Re: ports/161894: New port databases/datamodeler: Database modeling tool Date: Sat, 3 Mar 2012 05:14:05 -0500 José: Thank you or your port submission. We appreciate our developers and contributors and wanted to make sure that you are still interested in this port submission. Once your port is accepted, updates and patches to it will be much faster. Some quick comments, since I have not really tried to build this yet: I noticed this port needs bash. Bash is not included in the distributed version of FreeBSD, and should only be included as a dependency if these is some functionality in bash that is not in /bin/sh Can you rework this to not require bash or do you feel that your files/datamodeler.script.in absolutely requires bash? Also, please do not use IGNORE= to inform user about vendor licensing and distribution licensing, please look at the following port for an example of a standard way to do this. /usr/ports/java/jdk16 Test your final port with portlint -N, then portlint -abt. when you are done, resubmit your shar and someone will take a fresh look it it. (actually, you might want to ask that this port be closed, since it sat so long. opening a new port after this is closed will make it more likely a new committer will look at this port) Thank you again, and sorry that these small issues were not communicated to you earlier. -- Michael Scheidell, CTO >*| * SECNAP Network Security Corporation d: +1.561.948.2259 w: http://people.freebsd.org/~scheidell From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 10:20:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 652321065670 for ; Sat, 3 Mar 2012 10:20:14 +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 539E48FC13 for ; Sat, 3 Mar 2012 10:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23AKEMI031024 for ; Sat, 3 Mar 2012 10:20:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23AKE8q031023; Sat, 3 Mar 2012 10:20:14 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 10:20:14 GMT Message-Id: <201203031020.q23AKE8q031023@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Michael Scheidell Cc: Subject: Re: ports/162480: New port: net-mgmt/cacti-with-plugins Web-driven graphing interface for RRDTool with plugins support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Michael Scheidell List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 10:20:14 -0000 The following reply was made to PR ports/162480; it has been noted by GNATS. From: Michael Scheidell To: Cc: Subject: Re: ports/162480: New port: net-mgmt/cacti-with-plugins Web-driven graphing interface for RRDTool with plugins support Date: Sat, 3 Mar 2012 05:18:31 -0500 Thank you for your new port submission, and your support of FreeBSD. A quick note: one of the reasons FreeBSD wants a shar submission for new ports is so that a committer can take a quick look at the pr and decide if it meets minimum standards. Your shar seems to be uuencoded, and, yes, I know the committer can take that extra step and unuuencode it, but they most likely wont. can you resubmit as an attachment, a plain text shar? If you don't understand how to do that, please subscribe to ports@ and ask. one final note, again, I haven't tested this shar yet (because I won't download and uudecode it), but please test your new port with portlint -N and then portlint -abt before you resubmit it. Thank you again for your support of FreeBSD. -- Michael Scheidell, CTO >*| * SECNAP Network Security Corporation d: +1.561.948.2259 w: http://people.freebsd.org/~scheidell From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 10:20:41 2012 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 3FAC31065675; Sat, 3 Mar 2012 10:20:41 +0000 (UTC) (envelope-from scheidell@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 16D3D8FC23; Sat, 3 Mar 2012 10:20:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23AKewd032830; Sat, 3 Mar 2012 10:20:40 GMT (envelope-from scheidell@freefall.freebsd.org) Received: (from scheidell@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23AKeSa032815; Sat, 3 Mar 2012 10:20:40 GMT (envelope-from scheidell) Date: Sat, 3 Mar 2012 10:20:40 GMT Message-Id: <201203031020.q23AKeSa032815@freefall.freebsd.org> To: rfarmer@predatorlabs.net, scheidell@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: scheidell@FreeBSD.org Cc: Subject: Re: ports/164029: [PATCH] graphics/bmeps fix build with databases/gdbm 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: Sat, 03 Mar 2012 10:20:41 -0000 Synopsis: [PATCH] graphics/bmeps fix build with databases/gdbm Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: scheidell Responsible-Changed-When: Sat Mar 3 10:20:40 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=164029 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 13:00:24 2012 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 0E5D41065672 for ; Sat, 3 Mar 2012 13:00:24 +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 D516B8FC15 for ; Sat, 3 Mar 2012 13:00:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23D0NbQ082306 for ; Sat, 3 Mar 2012 13:00:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23D0NDI082305; Sat, 3 Mar 2012 13:00:23 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 13:00:23 GMT Resent-Message-Id: <201203031300.q23D0NDI082305@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, Muhammad Moinur Rahman <5u623l20@gmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D727E1065672 for ; Sat, 3 Mar 2012 12:50:17 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id C5FC08FC20 for ; Sat, 3 Mar 2012 12:50:17 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q23CoHlr084471 for ; Sat, 3 Mar 2012 12:50:17 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q23CoHWI084470; Sat, 3 Mar 2012 12:50:17 GMT (envelope-from nobody) Message-Id: <201203031250.q23CoHWI084470@red.freebsd.org> Date: Sat, 3 Mar 2012 12:50:17 GMT From: Muhammad Moinur Rahman <5u623l20@gmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165655: [UPDATE] x11-clocks/gdesklets-clock to 0.50 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: Sat, 03 Mar 2012 13:00:24 -0000 >Number: 165655 >Category: ports >Synopsis: [UPDATE] x11-clocks/gdesklets-clock to 0.50 >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: Sat Mar 03 13:00:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Muhammad Moinur Rahman >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD tinderbox.dzcrd.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN gdesklets-clock.bak/Makefile gdesklets-clock/Makefile --- gdesklets-clock.bak/Makefile 2012-03-03 18:45:16.250896602 +0600 +++ gdesklets-clock/Makefile 2012-03-03 18:47:10.028726327 +0600 @@ -6,14 +6,14 @@ # PORTNAME= clock -PORTVERSION= 0.32 +PORTVERSION= 0.50 PORTREVISION= 13 CATEGORIES= x11-clocks gnome MASTER_SITES= http://www.gdesklets.info/archive/ PKGNAMEPREFIX= gdesklets- DISTNAME= clock-desklet-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= 5u623l20@gmail.com COMMENT= Various clock displays for Gnome 2.x RUN_DEPENDS= gdesklets:${PORTSDIR}/deskutils/gdesklets @@ -26,29 +26,17 @@ DATADIR= ${PREFIX}/share/gdesklets NAME= Clock -LANG= de fr pt sq sr sr@Latn sv - do-build: - @${WRKSRC}/Install_${NAME}_Sensor.bin --nomsg ${WRKSRC} - @${PATCH} ${WRKSRC}/Clock/__init__.py < ${FILESDIR}/Clock::__init__.py do-install: @${MKDIR} ${DATADIR}/Displays/${NAME} ${INSTALL_DATA} ${WRKSRC}/*.display ${DATADIR}/Displays/${NAME} + ${INSTALL_DATA} ${WRKSRC}/*.script ${DATADIR}/Displays/${NAME} ${INSTALL_DATA} ${WRKSRC}/README ${DATADIR}/Displays/${NAME} @${MKDIR} ${DATADIR}/Displays/${NAME}/gfx ${INSTALL_DATA} ${WRKSRC}/gfx/*.png ${DATADIR}/Displays/${NAME}/gfx ${INSTALL_DATA} ${WRKSRC}/gfx/*.xcf ${DATADIR}/Displays/${NAME}/gfx - @${MKDIR} ${DATADIR}/Sensors/${NAME} - ${INSTALL_DATA} ${WRKSRC}/${NAME}/*.dat ${DATADIR}/Sensors/${NAME} - ${INSTALL_DATA} ${WRKSRC}/${NAME}/*.py ${DATADIR}/Sensors/${NAME} -.for ii in ${LANG} - @${MKDIR} ${DATADIR}/Sensors/${NAME}/locale/${ii}/LC_MESSAGES - ${INSTALL_DATA} ${WRKSRC}/${NAME}/locale/${ii}/LC_MESSAGES/*.mo \ - ${DATADIR}/Sensors/${NAME}/locale/${ii}/LC_MESSAGES -.endfor - @${LN} -s ${DATADIR}/Displays/${NAME}/README \ - ${DATADIR}/Sensors/${NAME}/README + ${INSTALL_DATA} ${WRKSRC}/gfx/*.svg ${DATADIR}/Displays/${NAME}/gfx @${CAT} ${PKGMESSAGE} .include diff -ruN gdesklets-clock.bak/distinfo gdesklets-clock/distinfo --- gdesklets-clock.bak/distinfo 2012-03-03 18:45:16.250896602 +0600 +++ gdesklets-clock/distinfo 2012-03-03 18:18:50.375400695 +0600 @@ -1,2 +1,2 @@ -SHA256 (clock-desklet-0.32.tar.gz) = 3fdf3e17104263454201f69709ec16bc00fd540ba8f20498876c7bee8b736072 -SIZE (clock-desklet-0.32.tar.gz) = 157407 +SHA256 (clock-desklet-0.50.tar.gz) = c3a3679e21bfede862d97fc0633ee9a56dae0103f37c89412d17382870c77d03 +SIZE (clock-desklet-0.50.tar.gz) = 264113 diff -ruN gdesklets-clock.bak/files/Clock::__init__.py gdesklets-clock/files/Clock::__init__.py --- gdesklets-clock.bak/files/Clock::__init__.py 2012-03-03 18:45:16.238344588 +0600 +++ gdesklets-clock/files/Clock::__init__.py 1970-01-01 06:00:00.000000000 +0600 @@ -1,16 +0,0 @@ ---- __init__.py.bak Tue Mar 30 18:08:39 2004 -+++ __init__.py Tue Mar 30 18:11:36 2004 -@@ -149,8 +149,11 @@ - timezone = self._get_config("timezone") - if (timezone != self.__timezone): - self.__timezone = timezone -- offset = commands.getoutput("TZ=\"%(timezone)s\" date +%%z" -- % vars()) -+ if timezone == "localtime": -+ offset = commands.getoutput("date +%z") -+ else: -+ offset = commands.getoutput("TZ=\"%(timezone)s\" date +%%z" -+ % vars()) - sign = (offset[0] == "+") and 1 or -1 - hours = int(offset[1:3]) - mins = int(offset[3:5]) diff -ruN gdesklets-clock.bak/files/pkg-message.in gdesklets-clock/files/pkg-message.in --- gdesklets-clock.bak/files/pkg-message.in 2012-03-03 18:45:16.238344588 +0600 +++ gdesklets-clock/files/pkg-message.in 2012-03-03 18:18:50.293203725 +0600 @@ -2,7 +2,6 @@ To view the README: cat %%PREFIX%%/share/gdesklets/Displays/%%NAME%%/README - cat %%PREFIX%%/share/gdesklets/Sensors/%%NAME%%/README To view the installed applets: diff -ruN gdesklets-clock.bak/pkg-plist gdesklets-clock/pkg-plist --- gdesklets-clock.bak/pkg-plist 2012-03-03 18:45:16.238344588 +0600 +++ gdesklets-clock/pkg-plist 2012-03-03 18:47:51.632003070 +0600 @@ -1,41 +1,13 @@ share/gdesklets/Displays/Clock/README share/gdesklets/Displays/Clock/gfx/clock.png +share/gdesklets/Displays/Clock/gfx/gdclock.png +share/gdesklets/Displays/Clock/gfx/gdclock.svg share/gdesklets/Displays/Clock/gfx/gnomeclock.png -share/gdesklets/Displays/Clock/gfx/gnomeclock.xcf share/gdesklets/Displays/Clock/gfx/osXclock.png share/gdesklets/Displays/Clock/gfx/pocketwatch.png share/gdesklets/Displays/Clock/gfx/pocketwatch.xcf share/gdesklets/Displays/Clock/gfx/rafclock.png -share/gdesklets/Displays/Clock/gnomeclock.display -share/gdesklets/Displays/Clock/osXclock.display -share/gdesklets/Displays/Clock/plainclock.display -share/gdesklets/Displays/Clock/pocket-watch.display -share/gdesklets/Displays/Clock/rafclock.display -share/gdesklets/Sensors/Clock/README -share/gdesklets/Sensors/Clock/__init__.py -share/gdesklets/Sensors/Clock/locale/de/LC_MESSAGES/gdesklets.mo -share/gdesklets/Sensors/Clock/locale/fr/LC_MESSAGES/gdesklets.mo -share/gdesklets/Sensors/Clock/locale/pt/LC_MESSAGES/gdesklets.mo -share/gdesklets/Sensors/Clock/locale/sq/LC_MESSAGES/gdesklets.mo -share/gdesklets/Sensors/Clock/locale/sr/LC_MESSAGES/gdesklets.mo -share/gdesklets/Sensors/Clock/locale/sr@Latn/LC_MESSAGES/gdesklets.mo -share/gdesklets/Sensors/Clock/locale/sv/LC_MESSAGES/gdesklets.mo -share/gdesklets/Sensors/Clock/timezones.dat -@dirrm share/gdesklets/Sensors/Clock/locale/sv/LC_MESSAGES -@dirrm share/gdesklets/Sensors/Clock/locale/sv -@dirrm share/gdesklets/Sensors/Clock/locale/sr@Latn/LC_MESSAGES -@dirrm share/gdesklets/Sensors/Clock/locale/sr@Latn -@dirrm share/gdesklets/Sensors/Clock/locale/sr/LC_MESSAGES -@dirrm share/gdesklets/Sensors/Clock/locale/sr -@dirrm share/gdesklets/Sensors/Clock/locale/sq/LC_MESSAGES -@dirrm share/gdesklets/Sensors/Clock/locale/sq -@dirrm share/gdesklets/Sensors/Clock/locale/pt/LC_MESSAGES -@dirrm share/gdesklets/Sensors/Clock/locale/pt -@dirrm share/gdesklets/Sensors/Clock/locale/fr/LC_MESSAGES -@dirrm share/gdesklets/Sensors/Clock/locale/fr -@dirrm share/gdesklets/Sensors/Clock/locale/de/LC_MESSAGES -@dirrm share/gdesklets/Sensors/Clock/locale/de -@dirrm share/gdesklets/Sensors/Clock/locale -@dirrm share/gdesklets/Sensors/Clock +share/gdesklets/Displays/Clock/clock.display +share/gdesklets/Displays/Clock/timezones.script @dirrm share/gdesklets/Displays/Clock/gfx @dirrm share/gdesklets/Displays/Clock >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 13:00:30 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C6CE106566B for ; Sat, 3 Mar 2012 13:00:30 +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 6C7B88FC16 for ; Sat, 3 Mar 2012 13:00:30 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23D0UiV082393 for ; Sat, 3 Mar 2012 13:00:30 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23D0Uxd082390; Sat, 3 Mar 2012 13:00:30 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 13:00:30 GMT Message-Id: <201203031300.q23D0Uxd082390@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Chris Rees Cc: Subject: Re: ports/165623: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Chris Rees List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 13:00:30 -0000 The following reply was made to PR ports/165623; it has been noted by GNATS. From: Chris Rees To: Matthew Seaman Cc: "bug-followup@freebsd.org" Subject: Re: ports/165623: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} Date: Sat, 3 Mar 2012 12:56:27 +0000 --14dae9340a8fab5d8904ba56388f Content-Type: text/plain; charset=ISO-8859-1 On 2 Mar 2012 23:37, "Matthew Seaman" wrote: > > On 02/03/2012 21:20, Michael Scheidell wrote: > > does portlint need to be upgraded to tell you to use ${FILE_CMD} instead > > of ${FILE} ? > > Perhaps, but that's going to annoy the vast majority of people that use > ${FILE} to mean something other than the file(1) application. I tend > towards the view that there's so much prior art, and that saying: > > .for FILE in ${LIST_OF_FILES} > ... > .endfor > > is so natural a construct that trying to make people do it differently > would be wildly unpopular. > Or we could put the portlint check in, and people who don't want to see it complain could use lowers for loop vars. Sorry to go on about this, but it's very important to differentiate, considering that their behaviour is very different from regular variables. Note that I withdraw my objection to FILE_CMD as per pointers from others :) Chris --14dae9340a8fab5d8904ba56388f Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable


On 2 Mar 2012 23:37, "Matthew Seaman" <
m.seaman@infracaninophile.co.uk> wrote:<= br> >
> On 02/03/2012 21:20, Michael Scheidell wrote:
> > =A0does portlint need to be upgraded to tell you to use ${FILE_CM= D} instead
> > =A0of ${FILE} ?
>
> Perhaps, but that's going to annoy the vast majority of people tha= t use
> ${FILE} to mean something other than the file(1) application. =A0I ten= d
> towards the view that there's so much prior art, and that saying:<= br> >
> .for FILE in ${LIST_OF_FILES}
> ...
> .endfor
>
> is so natural a construct that trying to make people do it differently=
> would be wildly unpopular.
>

Or we could put the portlint check in, and people who don't want to = see it complain could use lowers for loop vars.

Sorry to go on about this, but it's very important to differentiate,= considering that their behaviour is very different from regular variables.=

Note that I withdraw my objection to FILE_CMD as per pointers from other= s :)

Chris

--14dae9340a8fab5d8904ba56388f-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 13:14:38 2012 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 2D2AE106566B; Sat, 3 Mar 2012 13:14:38 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 011528FC17; Sat, 3 Mar 2012 13:14:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23DEbDc000843; Sat, 3 Mar 2012 13:14:37 GMT (envelope-from crees@freefall.freebsd.org) Received: (from crees@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23DEbeM000839; Sat, 3 Mar 2012 13:14:37 GMT (envelope-from crees) Date: Sat, 3 Mar 2012 13:14:37 GMT Message-Id: <201203031314.q23DEbeM000839@freefall.freebsd.org> To: crees@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, crees@FreeBSD.org From: crees@FreeBSD.org Cc: Subject: Re: ports/165631: New port: ports-mgmt/mkreadmes, a speedy alternative to "make readmes" 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: Sat, 03 Mar 2012 13:14:38 -0000 Synopsis: New port: ports-mgmt/mkreadmes, a speedy alternative to "make readmes" Responsible-Changed-From-To: freebsd-ports-bugs->crees Responsible-Changed-By: crees Responsible-Changed-When: Sat Mar 3 13:14:37 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165631 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 13:30:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5279D1065670 for ; Sat, 3 Mar 2012 13:30:10 +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 2A7808FC18 for ; Sat, 3 Mar 2012 13:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23DUANG010239 for ; Sat, 3 Mar 2012 13:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23DUA16010236; Sat, 3 Mar 2012 13:30:10 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 13:30:10 GMT Resent-Message-Id: <201203031330.q23DUA16010236@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, Muhammad Moinur Rahman <5u623l20@gmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DDCF71065677 for ; Sat, 3 Mar 2012 13:20:23 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id B043D8FC15 for ; Sat, 3 Mar 2012 13:20:23 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q23DKNM7038108 for ; Sat, 3 Mar 2012 13:20:23 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q23DKNfo038107; Sat, 3 Mar 2012 13:20:23 GMT (envelope-from nobody) Message-Id: <201203031320.q23DKNfo038107@red.freebsd.org> Date: Sat, 3 Mar 2012 13:20:23 GMT From: Muhammad Moinur Rahman <5u623l20@gmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165656: [UPDATE] www/udmsearch to 3.1.7 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: Sat, 03 Mar 2012 13:30:10 -0000 >Number: 165656 >Category: ports >Synopsis: [UPDATE] www/udmsearch to 3.1.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 13:30:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Muhammad Moinur Rahman >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD tinderbox.dzcrd.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN udmsearch.bak/Makefile udmsearch/Makefile --- udmsearch.bak/Makefile 2012-03-03 18:52:50.673161862 +0600 +++ udmsearch/Makefile 2012-03-03 18:54:00.743200373 +0600 @@ -6,13 +6,13 @@ # PORTNAME= udmsearch -PORTVERSION= 3.1.5 +PORTVERSION= 3.1.7 PORTREVISION= 1 CATEGORIES= www databases MASTER_SITES= http://www.mnogosearch.org/Download/ \ http://udmsearch.real-time.com/Download/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= 5u623l20@gmail.com COMMENT= Full featured SQL-based hypertext search engine OPTIONS= MSQL "MSQL support" off \ diff -ruN udmsearch.bak/distinfo udmsearch/distinfo --- udmsearch.bak/distinfo 2012-03-03 18:52:50.673161862 +0600 +++ udmsearch/distinfo 2012-03-03 18:53:25.174573424 +0600 @@ -1,2 +1,2 @@ -SHA256 (udmsearch-3.1.5.tar.gz) = 75eae3042d6c1b96f71d0fad58957340dbc3d91d5ab261c95377cd5aef3167d6 -SIZE (udmsearch-3.1.5.tar.gz) = 350832 +SHA256 (udmsearch-3.1.7.tar.gz) = c6163c463461b4c986139753af52a49eccb896fdaa5298c55a7396037814eec2 +SIZE (udmsearch-3.1.7.tar.gz) = 360524 diff -ruN udmsearch.bak/pkg-plist udmsearch/pkg-plist --- udmsearch.bak/pkg-plist 2012-03-03 18:52:50.673161862 +0600 +++ udmsearch/pkg-plist 2012-03-03 19:15:10.438837178 +0600 @@ -12,6 +12,7 @@ %%DATADIR%%/create/mysql/ispell.txt %%DATADIR%%/create/mysql/multi.txt %%DATADIR%%/create/mysql/track.txt +%%DATADIR%%/create/mysql/servers.txt %%DATADIR%%/create/oracle/categories.sql %%DATADIR%%/create/oracle/crc-multi.sql %%DATADIR%%/create/oracle/crc.sql @@ -55,6 +56,7 @@ %%DOCSDIR%%/NEWS.html %%DOCSDIR%%/UdmSearch-Oracle8.html %%DOCSDIR%%/bugs.txt +%%DOCSDIR%%/cache.txt %%DOCSDIR%%/cachemode.txt %%DOCSDIR%%/categories.txt %%DOCSDIR%%/charset.txt @@ -64,9 +66,11 @@ %%DOCSDIR%%/ispell.txt %%DOCSDIR%%/lib.txt %%DOCSDIR%%/mp3.txt +%%DOCSDIR%%/negotiation.txt %%DOCSDIR%%/parsers.txt %%DOCSDIR%%/performance.txt %%DOCSDIR%%/search.txt +%%DOCSDIR%%/srv_table.txt %%DOCSDIR%%/storage.txt %%DOCSDIR%%/syslog.txt %%DOCSDIR%%/tags.txt @@ -77,6 +81,7 @@ bin/udm-config etc/udmsearch/indexer.conf-dist etc/udmsearch/search.htm-dist +include/udm_alias.h include/udm_boolean.h include/udm_cache.h include/udm_charset.h @@ -85,6 +90,7 @@ include/udm_config.h include/udm_crc32.h include/udm_db.h +include/udm_filter.h include/udm_ftp.h include/udm_host.h include/udm_hrefs.h @@ -97,6 +103,7 @@ include/udm_parseurl.h include/udm_search_tl.h include/udm_searchtool.h +include/udm_server.h include/udm_socket.h include/udm_spell.h include/udm_utils.h >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 13:30:21 2012 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 AC65F1065670 for ; Sat, 3 Mar 2012 13:30:21 +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 7D86D8FC14 for ; Sat, 3 Mar 2012 13:30:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23DULHR010672 for ; Sat, 3 Mar 2012 13:30:21 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23DULGH010669; Sat, 3 Mar 2012 13:30:21 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 13:30:21 GMT Message-Id: <201203031330.q23DULGH010669@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Matthew Seaman Cc: Subject: Re: ports/165623: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthew Seaman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 13:30:21 -0000 The following reply was made to PR ports/165623; it has been noted by GNATS. From: Matthew Seaman To: Chris Rees Cc: "bug-followup@freebsd.org" Subject: Re: ports/165623: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} Date: Sat, 03 Mar 2012 13:29:41 +0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig9B12DC8099B48675AC670E9F Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On 03/03/2012 12:56, Chris Rees wrote: > Or we could put the portlint check in, and people who don't want to see= it > complain could use lowers for loop vars. >=20 > Sorry to go on about this, but it's very important to differentiate, > considering that their behaviour is very different from regular variabl= es. >=20 > Note that I withdraw my objection to FILE_CMD as per pointers from othe= rs :) So make it a matter of style that loop iterators should be lower case? That is an idea I can agree with. Not being too prescriptive about it, and allowing people to make that modification organically -- when they have to update a port for another reason, etc. is also something I can agree with. Although it turns out there's fewer instances of using uppercase iterators than I at first thought: lucid-nonsense:/usr/ports:% grep -rlE '^\. *for +[A-Z]+' * | wc -l 341 Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate JID: matthew@infracaninophile.co.uk Kent, CT11 9PW --------------enig9B12DC8099B48675AC670E9F Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG/MacGPG2 v2.0.16 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iEYEARECAAYFAk9SHM4ACgkQ8Mjk52CukIw6TgCeNt7kOXFk4lPcu9awbudXqTcR FGsAnigueP1WudsCwjR9NJ+9I7jJg+wX =vO2U -----END PGP SIGNATURE----- --------------enig9B12DC8099B48675AC670E9F-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 13:40:18 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 596661065740 for ; Sat, 3 Mar 2012 13:40:18 +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 445C08FC0A for ; Sat, 3 Mar 2012 13:40:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23DeIYi021452 for ; Sat, 3 Mar 2012 13:40:18 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23DeIFV021451; Sat, 3 Mar 2012 13:40:18 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 13:40:18 GMT Message-Id: <201203031340.q23DeIFV021451@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Chris Rees Cc: Subject: Re: ports/165623: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Chris Rees List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 13:40:18 -0000 The following reply was made to PR ports/165623; it has been noted by GNATS. From: Chris Rees To: Matthew Seaman Cc: "bug-followup@freebsd.org" Subject: Re: ports/165623: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} Date: Sat, 3 Mar 2012 13:34:58 +0000 On 3 March 2012 13:29, Matthew Seaman wro= te: > On 03/03/2012 12:56, Chris Rees wrote: > >> Or we could put the portlint check in, and people who don't want to see = it >> complain could use lowers for loop vars. >> >> Sorry to go on about this, but it's very important to differentiate, >> considering that their behaviour is very different from regular variable= s. >> >> Note that I withdraw my objection to FILE_CMD as per pointers from other= s :) > > So make it a matter of style that loop iterators should be lower case? > That is an idea I can agree with. =A0Not being too prescriptive about it, > and allowing people to make that modification organically -- when they > have to update a port for another reason, etc. is also something I can > agree with. > > Although it turns out there's fewer instances of using uppercase > iterators than I at first thought: > > lucid-nonsense:/usr/ports:% grep -rlE '^\. *for +[A-Z]+' * | wc -l > =A0 =A0 341 I think it's a matter of style, but also makes people think harder when they make boo-boos like: OTHER=3D TWO .for iterator in ONE TWO THREE . if ${iterator} =3D=3D ${OTHER} FOO=3D bar . endif .endfor which ends up as a malformed conditional. Alarm bells ring more quickly if one sees the lowercase used on the left like this. (should be ${OTHER} =3D=3D ${iterator}) Have I confused anyone yet? Chris From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 14:50:08 2012 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 4D16F1065670 for ; Sat, 3 Mar 2012 14:50:08 +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 220E18FC17 for ; Sat, 3 Mar 2012 14:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23Eo7jr085020 for ; Sat, 3 Mar 2012 14:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23Eo7t0085019; Sat, 3 Mar 2012 14:50:07 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 14:50:07 GMT Resent-Message-Id: <201203031450.q23Eo7t0085019@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, Michael Scheidell Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8439C106566B for ; Sat, 3 Mar 2012 14:46:35 +0000 (UTC) (envelope-from scheidell@secnap.net) Received: from mx1.secnap.com.ionspam.net (mx1.secnap.com.ionspam.net [204.89.241.253]) by mx1.freebsd.org (Postfix) with ESMTP id 443038FC17 for ; Sat, 3 Mar 2012 14:46:35 +0000 (UTC) Received: from mx1.secnap.com.ionspam.net (mx1.secnap.com.ionspam.net [10.70.1.253]) by mx1.secnap.com.ionspam.net (Postfix) with ESMTP id A63CA621C17 for ; Sat, 3 Mar 2012 09:46:34 -0500 (EST) Received: from scanner.secnap.net (unknown [10.70.1.4]) by mx1.secnap.com.ionspam.net (Postfix) with ESMTP id DD616621C12 for ; Sat, 3 Mar 2012 09:46:32 -0500 (EST) Received: by scanner.secnap.net (Postfix, from userid 1001) id CB6531D40D; Sat, 3 Mar 2012 09:46:32 -0500 (EST) Message-Id: <20120303144632.CB6531D40D@scanner.secnap.net> Date: Sat, 3 Mar 2012 09:46:32 -0500 (EST) From: Michael Scheidell To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165658: [PATCH] devel/cdialog: Do not install examples if NOPORTEXAMPLES defined 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: Sat, 03 Mar 2012 14:50:08 -0000 >Number: 165658 >Category: ports >Synopsis: [PATCH] devel/cdialog: Do not install examples if NOPORTEXAMPLES defined >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 14:50:07 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Michael Scheidell >Release: FreeBSD 7.4-RELEASE-p3 i386 >Organization: SECNAP Network Security >Environment: >Description: even if you define NOPORTEXAMPLES in env, the port installs 486K of examples from the wrksrc/samples dir to EXAMPLESDIR >How-To-Repeat: no patch: make -DNOPORTEXAMPLES make install du -hk /usr/local/share/examples/cdialog/ 94 /usr/local/share/examples/cdialog/copifuncs 20 /usr/local/share/examples/cdialog/install 486 /usr/local/share/examples/cdialog/ with patch: du -hk /usr/local/share/examples/cdialog/ du: /usr/local/share/examples/cdialog/: No such file or directory >Fix: - Do not install examples if NOPORTEXAMPLES defined - No PORTREVISION bump --- cdialog.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/cdialog/Makefile,v retrieving revision 1.38 diff -u -r1.38 Makefile --- Makefile 16 Feb 2012 04:45:29 -0000 1.38 +++ Makefile 3 Mar 2012 14:25:25 -0000 @@ -35,6 +35,7 @@ INSTALL_TARGET= install-strip install-man install-lib +.if !defined(NOPORTEXAMPLES) post-patch: @${FIND} ${WRKSRC}/samples/ -type f -exec ${REINPLACE_CMD} -i "" "s|dialog|cdialog|g" {} \; @@ -42,5 +43,6 @@ @${MKDIR} ${EXAMPLESDIR} cd ${WRKSRC}/samples && ${FIND} . | \ ${CPIO} -pdm -L -R ${SHAREOWN}:${SHAREGRP} ${EXAMPLESDIR} +.endif .include Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/devel/cdialog/pkg-plist,v retrieving revision 1.17 diff -u -r1.17 pkg-plist --- pkg-plist 16 Feb 2012 04:45:29 -0000 1.17 +++ pkg-plist 3 Mar 2012 14:25:25 -0000 @@ -8,196 +8,196 @@ lib/libcdialog.la lib/libcdialog.so lib/libcdialog.so.10 -%%EXAMPLESDIR%%/README -%%EXAMPLESDIR%%/calendar -%%EXAMPLESDIR%%/calendar-stdout -%%EXAMPLESDIR%%/calendar2 -%%EXAMPLESDIR%%/calendar2-stdout -%%EXAMPLESDIR%%/calendar3 -%%EXAMPLESDIR%%/calendar3-stdout -%%EXAMPLESDIR%%/checklist -%%EXAMPLESDIR%%/checklist-8bit -%%EXAMPLESDIR%%/checklist-utf8 -%%EXAMPLESDIR%%/checklist1 -%%EXAMPLESDIR%%/checklist10 -%%EXAMPLESDIR%%/checklist11 -%%EXAMPLESDIR%%/checklist2 -%%EXAMPLESDIR%%/checklist3 -%%EXAMPLESDIR%%/checklist4 -%%EXAMPLESDIR%%/checklist5 -%%EXAMPLESDIR%%/checklist6 -%%EXAMPLESDIR%%/checklist7 -%%EXAMPLESDIR%%/checklist8 -%%EXAMPLESDIR%%/checklist9 -%%EXAMPLESDIR%%/checklist9.txt -%%EXAMPLESDIR%%/copifuncs/admin.funcs -%%EXAMPLESDIR%%/copifuncs/common.funcs -%%EXAMPLESDIR%%/copifuncs/copi.funcs -%%EXAMPLESDIR%%/copifuncs/copi.ifman1 -%%EXAMPLESDIR%%/copifuncs/copi.ifman2 -%%EXAMPLESDIR%%/copifuncs/copi.ifmcfg2 -%%EXAMPLESDIR%%/copifuncs/copi.ifmcfg4 -%%EXAMPLESDIR%%/copifuncs/copi.ifmcfg5 -%%EXAMPLESDIR%%/copifuncs/copi.ifpoll1 -%%EXAMPLESDIR%%/copifuncs/copi.ifpoll2 -%%EXAMPLESDIR%%/copifuncs/copi.ifreq1 -%%EXAMPLESDIR%%/copifuncs/copi.ifreq2 -%%EXAMPLESDIR%%/copifuncs/copi.rcnews -%%EXAMPLESDIR%%/copifuncs/copi.sendifm1 -%%EXAMPLESDIR%%/copifuncs/copi.sendifm2 -%%EXAMPLESDIR%%/copifuncs/copi.trnrc -%%EXAMPLESDIR%%/copifuncs/copi.wheel -%%EXAMPLESDIR%%/copifuncs/ifpatch -%%EXAMPLESDIR%%/copismall -%%EXAMPLESDIR%%/debian.rc -%%EXAMPLESDIR%%/dialog.py -%%EXAMPLESDIR%%/editbox -%%EXAMPLESDIR%%/editbox-utf8 -%%EXAMPLESDIR%%/editbox2 -%%EXAMPLESDIR%%/editbox3 -%%EXAMPLESDIR%%/editbox4 -%%EXAMPLESDIR%%/form1 -%%EXAMPLESDIR%%/form1-both -%%EXAMPLESDIR%%/form1-extra -%%EXAMPLESDIR%%/form1-help -%%EXAMPLESDIR%%/form1-utf8 -%%EXAMPLESDIR%%/form2 -%%EXAMPLESDIR%%/form3 -%%EXAMPLESDIR%%/form4 -%%EXAMPLESDIR%%/form5 -%%EXAMPLESDIR%%/form6 -%%EXAMPLESDIR%%/fselect -%%EXAMPLESDIR%%/fselect-stdout -%%EXAMPLESDIR%%/fselect0 -%%EXAMPLESDIR%%/fselect1 -%%EXAMPLESDIR%%/fselect1-stdout -%%EXAMPLESDIR%%/fselect2 -%%EXAMPLESDIR%%/fselect2-stdout -%%EXAMPLESDIR%%/gauge -%%EXAMPLESDIR%%/gauge0 -%%EXAMPLESDIR%%/gauge0-input-fd -%%EXAMPLESDIR%%/gauge2 -%%EXAMPLESDIR%%/infobox -%%EXAMPLESDIR%%/infobox1 -%%EXAMPLESDIR%%/infobox2 -%%EXAMPLESDIR%%/infobox3 -%%EXAMPLESDIR%%/infobox4 -%%EXAMPLESDIR%%/infobox5 -%%EXAMPLESDIR%%/infobox6 -%%EXAMPLESDIR%%/inputbox -%%EXAMPLESDIR%%/inputbox-both -%%EXAMPLESDIR%%/inputbox-extra -%%EXAMPLESDIR%%/inputbox-help -%%EXAMPLESDIR%%/inputbox1 -%%EXAMPLESDIR%%/inputbox2 -%%EXAMPLESDIR%%/inputbox3 -%%EXAMPLESDIR%%/inputbox4 -%%EXAMPLESDIR%%/inputbox5 -%%EXAMPLESDIR%%/inputbox6-8bit -%%EXAMPLESDIR%%/inputbox6-utf8 -%%EXAMPLESDIR%%/inputbox7 -%%EXAMPLESDIR%%/inputmenu -%%EXAMPLESDIR%%/inputmenu-stdout -%%EXAMPLESDIR%%/inputmenu1 -%%EXAMPLESDIR%%/inputmenu2 -%%EXAMPLESDIR%%/inputmenu3 -%%EXAMPLESDIR%%/inputmenu4 -%%EXAMPLESDIR%%/install/FDISK.TEST -%%EXAMPLESDIR%%/install/makefile -%%EXAMPLESDIR%%/install/makefile.in -%%EXAMPLESDIR%%/install/setup.c -%%EXAMPLESDIR%%/install/setup.help -%%EXAMPLESDIR%%/killall -%%EXAMPLESDIR%%/listing -%%EXAMPLESDIR%%/menubox -%%EXAMPLESDIR%%/menubox-8bit -%%EXAMPLESDIR%%/menubox-utf8 -%%EXAMPLESDIR%%/menubox1 -%%EXAMPLESDIR%%/menubox10 -%%EXAMPLESDIR%%/menubox2 -%%EXAMPLESDIR%%/menubox3 -%%EXAMPLESDIR%%/menubox4 -%%EXAMPLESDIR%%/menubox5 -%%EXAMPLESDIR%%/menubox6 -%%EXAMPLESDIR%%/menubox7 -%%EXAMPLESDIR%%/menubox8 -%%EXAMPLESDIR%%/menubox9 -%%EXAMPLESDIR%%/mixedform -%%EXAMPLESDIR%%/mixedform2 -%%EXAMPLESDIR%%/mixedgauge -%%EXAMPLESDIR%%/msgbox -%%EXAMPLESDIR%%/msgbox-help -%%EXAMPLESDIR%%/msgbox-utf8 -%%EXAMPLESDIR%%/msgbox1 -%%EXAMPLESDIR%%/msgbox2 -%%EXAMPLESDIR%%/msgbox3 -%%EXAMPLESDIR%%/msgbox4-8bit -%%EXAMPLESDIR%%/msgbox4-eucjp -%%EXAMPLESDIR%%/msgbox4-utf8 -%%EXAMPLESDIR%%/msgbox5 -%%EXAMPLESDIR%%/msgbox6 -%%EXAMPLESDIR%%/msgbox6a -%%EXAMPLESDIR%%/password -%%EXAMPLESDIR%%/password1 -%%EXAMPLESDIR%%/password2 -%%EXAMPLESDIR%%/passwordform1 -%%EXAMPLESDIR%%/passwordform1-utf8 -%%EXAMPLESDIR%%/pause -%%EXAMPLESDIR%%/pause-both -%%EXAMPLESDIR%%/pause-extra -%%EXAMPLESDIR%%/pause-help -%%EXAMPLESDIR%%/prgbox -%%EXAMPLESDIR%%/prgbox2 -%%EXAMPLESDIR%%/programbox -%%EXAMPLESDIR%%/programbox2 -%%EXAMPLESDIR%%/progress -%%EXAMPLESDIR%%/progress2 -%%EXAMPLESDIR%%/radiolist -%%EXAMPLESDIR%%/radiolist1 -%%EXAMPLESDIR%%/radiolist10 -%%EXAMPLESDIR%%/radiolist2 -%%EXAMPLESDIR%%/radiolist3 -%%EXAMPLESDIR%%/radiolist4 -%%EXAMPLESDIR%%/report-button -%%EXAMPLESDIR%%/report-edit -%%EXAMPLESDIR%%/report-string -%%EXAMPLESDIR%%/report-tempfile -%%EXAMPLESDIR%%/report-yesno -%%EXAMPLESDIR%%/rotated-data -%%EXAMPLESDIR%%/setup-edit -%%EXAMPLESDIR%%/setup-tempfile -%%EXAMPLESDIR%%/setup-utf8 -%%EXAMPLESDIR%%/setup-vars -%%EXAMPLESDIR%%/shortlist -%%EXAMPLESDIR%%/slackware.rc -%%EXAMPLESDIR%%/sourcemage.rc -%%EXAMPLESDIR%%/suse.rc -%%EXAMPLESDIR%%/tailbox -%%EXAMPLESDIR%%/tailboxbg -%%EXAMPLESDIR%%/tailboxbg1 -%%EXAMPLESDIR%%/tailboxbg2 -%%EXAMPLESDIR%%/testdata-8bit -%%EXAMPLESDIR%%/textbox -%%EXAMPLESDIR%%/textbox-both -%%EXAMPLESDIR%%/textbox-help -%%EXAMPLESDIR%%/textbox.txt -%%EXAMPLESDIR%%/textbox2 -%%EXAMPLESDIR%%/textbox3 -%%EXAMPLESDIR%%/timebox -%%EXAMPLESDIR%%/timebox-stdout -%%EXAMPLESDIR%%/timebox2 -%%EXAMPLESDIR%%/timebox2-stdout -%%EXAMPLESDIR%%/wheel -%%EXAMPLESDIR%%/whiptail.rc -%%EXAMPLESDIR%%/yesno -%%EXAMPLESDIR%%/yesno-both -%%EXAMPLESDIR%%/yesno-extra -%%EXAMPLESDIR%%/yesno-help -%%EXAMPLESDIR%%/yesno-utf8 -%%EXAMPLESDIR%%/yesno2 -%%EXAMPLESDIR%%/yesno3 -%%EXAMPLESDIR%%/yesno4 -@dirrm %%EXAMPLESDIR%%/install -@dirrm %%EXAMPLESDIR%%/copifuncs -@dirrm %%EXAMPLESDIR%% +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/README +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calendar +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calendar-stdout +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calendar2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calendar2-stdout +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calendar3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/calendar3-stdout +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist-8bit +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist-utf8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist10 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist11 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist4 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist6 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist7 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist9 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/checklist9.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/admin.funcs +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/common.funcs +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.funcs +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.ifman1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.ifman2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.ifmcfg2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.ifmcfg4 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.ifmcfg5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.ifpoll1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.ifpoll2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.ifreq1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.ifreq2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.rcnews +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.sendifm1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.sendifm2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.trnrc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/copi.wheel +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copifuncs/ifpatch +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/copismall +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/debian.rc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/dialog.py +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/editbox +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/editbox-utf8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/editbox2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/editbox3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/editbox4 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form1-both +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form1-extra +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form1-help +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form1-utf8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form4 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/form6 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fselect +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fselect-stdout +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fselect0 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fselect1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fselect1-stdout +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fselect2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/fselect2-stdout +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gauge +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gauge0 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gauge0-input-fd +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/gauge2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infobox +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infobox1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infobox2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infobox3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infobox4 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infobox5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/infobox6 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox-both +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox-extra +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox-help +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox4 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox6-8bit +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox6-utf8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputbox7 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputmenu +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputmenu-stdout +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputmenu1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputmenu2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputmenu3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/inputmenu4 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/install/FDISK.TEST +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/install/makefile +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/install/makefile.in +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/install/setup.c +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/install/setup.help +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/killall +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/listing +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox-8bit +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox-utf8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox10 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox4 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox6 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox7 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/menubox9 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mixedform +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mixedform2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/mixedgauge +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox-help +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox-utf8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox4-8bit +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox4-eucjp +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox4-utf8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox5 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox6 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/msgbox6a +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/password +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/password1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/password2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/passwordform1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/passwordform1-utf8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pause +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pause-both +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pause-extra +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/pause-help +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/prgbox +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/prgbox2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/programbox +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/programbox2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/progress +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/progress2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/radiolist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/radiolist1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/radiolist10 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/radiolist2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/radiolist3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/radiolist4 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/report-button +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/report-edit +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/report-string +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/report-tempfile +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/report-yesno +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rotated-data +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/setup-edit +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/setup-tempfile +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/setup-utf8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/setup-vars +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/shortlist +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/slackware.rc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/sourcemage.rc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/suse.rc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tailbox +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tailboxbg +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tailboxbg1 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tailboxbg2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testdata-8bit +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/textbox +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/textbox-both +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/textbox-help +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/textbox.txt +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/textbox2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/textbox3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/timebox +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/timebox-stdout +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/timebox2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/timebox2-stdout +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/wheel +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/whiptail.rc +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/yesno +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/yesno-both +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/yesno-extra +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/yesno-help +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/yesno-utf8 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/yesno2 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/yesno3 +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/yesno4 +%%PORTEXAMPLES%% @dirrm %%EXAMPLESDIR%%/install +%%PORTEXAMPLES%% @dirrm %%EXAMPLESDIR%%/copifuncs +%%PORTEXAMPLES%% @dirrm %%EXAMPLESDIR%% @dirrm include/cdialog --- cdialog.patch ends here --- ______________________________________________________________________ This email has been scanned and certified safe by SpammerTrap(r). For Information please see http://www.spammertrap.com/ ______________________________________________________________________ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 14:50:18 2012 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 872FA1065670; Sat, 3 Mar 2012 14:50:18 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5A7798FC14; Sat, 3 Mar 2012 14:50:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23EoIdS085239; Sat, 3 Mar 2012 14:50:18 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23EoII1085230; Sat, 3 Mar 2012 14:50:18 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 14:50:18 GMT Message-Id: <201203031450.q23EoII1085230@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sylvio@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165658: [PATCH] devel/cdialog: Do not install examples if NOPORTEXAMPLES defined 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: Sat, 03 Mar 2012 14:50:18 -0000 Synopsis: [PATCH] devel/cdialog: Do not install examples if NOPORTEXAMPLES defined Responsible-Changed-From-To: freebsd-ports-bugs->sylvio Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 3 14:50:17 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165658 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 15:07:02 2012 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 72169106566B; Sat, 3 Mar 2012 15:07:02 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 465DE8FC08; Sat, 3 Mar 2012 15:07:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23F72HE002260; Sat, 3 Mar 2012 15:07:02 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23F72kL002256; Sat, 3 Mar 2012 15:07:02 GMT (envelope-from pawel) Date: Sat, 3 Mar 2012 15:07:02 GMT Message-Id: <201203031507.q23F72kL002256@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/160366: New port: misc/xmonad-log-applet An applet that will display Xmonad log information 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: Sat, 03 Mar 2012 15:07:02 -0000 Synopsis: New port: misc/xmonad-log-applet An applet that will display Xmonad log information Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sat Mar 3 15:07:01 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=160366 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 15:35:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8C4861065676; Sat, 3 Mar 2012 15:35:14 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5F61F8FC25; Sat, 3 Mar 2012 15:35:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23FZEwM031026; Sat, 3 Mar 2012 15:35:14 GMT (envelope-from miwi@freefall.freebsd.org) Received: (from miwi@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23FZEot031022; Sat, 3 Mar 2012 15:35:14 GMT (envelope-from miwi) Date: Sat, 3 Mar 2012 15:35:14 GMT Message-Id: <201203031535.q23FZEot031022@freefall.freebsd.org> To: miwi@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-portmgr@FreeBSD.org From: miwi@FreeBSD.org Cc: Subject: Re: ports/165623: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} 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: Sat, 03 Mar 2012 15:35:14 -0000 Synopsis: Mk/bsd.comands.mk et al -- conflicting uses of ${FILE} Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-portmgr Responsible-Changed-By: miwi Responsible-Changed-When: Sat Mar 3 15:35:13 UTC 2012 Responsible-Changed-Why: over to portmgr http://www.freebsd.org/cgi/query-pr.cgi?pr=165623 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 16:00:26 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21F6E106567F for ; Sat, 3 Mar 2012 16:00:26 +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 937358FC13 for ; Sat, 3 Mar 2012 16:00:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23G0OLe048782 for ; Sat, 3 Mar 2012 16:00:24 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23G0OGB048773; Sat, 3 Mar 2012 16:00:24 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 16:00:24 GMT Resent-Message-Id: <201203031600.q23G0OGB048773@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, Mel FLynn Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4C006106564A for ; Sat, 3 Mar 2012 15:55:49 +0000 (UTC) (envelope-from mel@datakitty.lan.rachie.is-a-geek.net) Received: from datakitty.lan.rachie.is-a-geek.net (rachie.is-a-geek.net [66.230.99.27]) by mx1.freebsd.org (Postfix) with ESMTP id 0E82E8FC0C for ; Sat, 3 Mar 2012 15:55:47 +0000 (UTC) Received: from datakitty.lan.rachie.is-a-geek.net (localhost [127.0.0.1]) by datakitty.lan.rachie.is-a-geek.net (8.14.5/8.14.5) with ESMTP id q23FteMv062568; Sat, 3 Mar 2012 06:55:40 -0900 (AKST) (envelope-from mel@datakitty.lan.rachie.is-a-geek.net) Received: (from mel@localhost) by datakitty.lan.rachie.is-a-geek.net (8.14.5/8.14.5/Submit) id q23Ftdl4062567; Sat, 3 Mar 2012 06:55:39 -0900 (AKST) (envelope-from mel) Message-Id: <201203031555.q23Ftdl4062567@datakitty.lan.rachie.is-a-geek.net> Date: Sat, 3 Mar 2012 06:55:39 -0900 (AKST) From: Mel FLynn To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: melifaro@ipfw.ru Subject: ports/165659: [PATCH] net/nss-pam-ldapd: update to 0.8.6 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: Sat, 03 Mar 2012 16:00:26 -0000 >Number: 165659 >Category: ports >Synopsis: [PATCH] net/nss-pam-ldapd: update to 0.8.6 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 16:00:23 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Mel FLynn >Release: FreeBSD 8.2-STABLE amd64 >Organization: >Environment: System: FreeBSD datakitty.lan.rachie.is-a-geek.net 8.2-STABLE FreeBSD 8.2-STABLE #6 r230977: Sun Feb 5 06:20:11 >Description: - Update to 0.8.6 Port maintainer (melifaro@ipfw.ru) is cc'd. Since maintainer missed quite a few releases, I'd be happy to take maintainership. Note: Reports received that current port fails on 9.0-RELEASE with "broken pipes". This version tested working on 9.0. Changed file(s): - Makefile - distinfo - files/nslcd.in (added nslcd_debug. Standardized ordering.) - files/patch-Makefile.in (line numbers) - pkg-plist (added @exec for sample config) Added file(s): - files/patch-nslcd__cfg.c (submitted upstream) - files/patch-nslcd__myldap.c (diagnostic enchancement, submitted upstream) - files/patch-nss__prototypes.h Removed file(s): - patch-nslcd.conf (applied upstream) - patch-nss__bsdnss.c (applied upstream) - patch-nss_ldap.map (nss/ldap.map removed upstream) - patch-pam__makefile.in (handled through CONFIGURE_ARGS and post-install) - files/rtld_nss__nslcd.c (applied upstream) Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- nss-pam-ldapd-0.8.6.patch begins here --- diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/Makefile /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/Makefile --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/Makefile 2011-11-07 13:33:53.000000000 -0900 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/Makefile 2012-03-03 06:28:23.000000000 -0900 @@ -6,8 +6,8 @@ # PORTNAME= nss-pam-ldapd -PORTVERSION= 0.7.13 -PORTREVISION= 2 +PORTVERSION= 0.8.6 +PORTREVISION= 0 CATEGORIES= net MASTER_SITES= http://arthurdejong.org/nss-pam-ldapd/ \ http://static.ipfw.ru/files/ @@ -22,6 +22,8 @@ USE_GMAKE= yes USE_OPENLDAP= yes USE_RC_SUBR= nslcd +PAM_LDAP_SHMAJOR= 1 +NSS_LDAP_SHMAJOR= 1 NSLCD_PIDFILE?= /var/run/nslcd.pid NSLCD_SOCKET?= /var/run/nslcd.ctl @@ -34,17 +36,13 @@ .include -.if ${OSVERSION} < 800000 -EXTRA_PATCHES+= ${FILESDIR}/rtld_nss__nslcd.c -.endif - CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CONFIGURE_ARGS+= --with-nslcd-pidfile=${NSLCD_PIDFILE} \ --with-nslcd-socket=${NSLCD_SOCKET} \ --with-ldap-lib=openldap --disable-kerberos \ - --with-nss-ldap-soname=nss_ldap.so.1 + --with-nss-ldap-soname=nss_ldap.so.${NSS_LDAP_SHMAJOR} CONFIG_FILE= "nslcd.conf" CONFIGURE_ARGS+= --with-ldap-conf-file=${PREFIX}/etc/${CONFIG_FILE} @@ -58,7 +56,9 @@ .endif .if defined(WITH_PAM) -CONFIGURE_ARGS+= --enable-pam +CONFIGURE_ARGS+= --enable-pam \ + --with-pam-seclib-dir=${PREFIX}/lib \ + --with-pam-ldap-soname=pam_ldap.so.${PAM_LDAP_SHMAJOR} MAN8+= pam_ldap.8 CONFLICTS+= pam_ldap-1.* PLIST_SUB+= PAM="" @@ -88,12 +88,19 @@ post-extract: @${REINPLACE_CMD} -e 's/\(INSTALL_\)\(.*\)) -D /\1\2) /' ${WRKSRC}/Makefile.in ${WRKSRC}/nss/Makefile.in - @${REINPLACE_CMD} -e 's/shadow.$$(OBJEXT)/shadow.$$(OBJEXT) bsdnss.$$(OBJEXT)/;s/shadow\.c/shadow.c bsdnss.c/' ${WRKSRC}/nss/Makefile.in post-configure: ${REINPLACE_CMD} -e 's/^\(CFLAGS.*\) \-O2 \(.*\)$$/\1 -O0 \2/' ${WRKSRC}/nss/Makefile post-install: +.if !defined(WITHOUT_NSS) + @cd ${PREFIX}/lib && ${LN} -fs nss_ldap.so.${NSS_LDAP_SHMAJOR} \ + nss_ldap.so +.endif +.if !defined(WITHOUT_PAM) + @cd ${PREFIX}/lib && ${LN} -fs pam_ldap.so.${PAM_LDAP_SHMAJOR} \ + pam_ldap.so +.endif @${ECHO_MSG} @${ECHO_MSG} ===================================================================== @${ECHO_MSG} diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/Makefile~ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/Makefile~ --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/Makefile~ 1969-12-31 14:00:00.000000000 -1000 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/Makefile~ 2012-03-02 12:40:57.000000000 -0900 @@ -0,0 +1,122 @@ +# Ports collection Makefile for: nss_ldapd +# Date created: 23/7/2009 +# Whom: melifaro@ipfw.ru +# +# $FreeBSD: ports/net/nss-pam-ldapd/Makefile,v 1.12 2011/11/07 22:33:53 zi Exp $ +# + +PORTNAME= nss-pam-ldapd +PORTVERSION= 0.8.6 +PORTREVISION= 0 +CATEGORIES= net +MASTER_SITES= http://arthurdejong.org/nss-pam-ldapd/ \ + http://static.ipfw.ru/files/ + +MAINTAINER= melifaro@ipfw.ru +COMMENT= Advanced fork of nss_ldap + +LICENSE= LGPL21 LGPL3 +LICENSE_COMB= dual + +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_OPENLDAP= yes +USE_RC_SUBR= nslcd +PAM_LDAP_SHMAJOR= 1 +NSS_LDAP_SHMAJOR= 1 + +NSLCD_PIDFILE?= /var/run/nslcd.pid +NSLCD_SOCKET?= /var/run/nslcd.ctl + +OPTIONS= SASL "Enable SASL" off \ + PAM "Build pam_ldap" on + +USERS= nslcd +GROUPS= nslcd + +.include + +.if ${OSVERSION} < 800000 +EXTRA_PATCHES+= ${FILESDIR}/rtld_nss__nslcd.c +.endif + +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +CONFIGURE_ARGS+= --with-nslcd-pidfile=${NSLCD_PIDFILE} \ + --with-nslcd-socket=${NSLCD_SOCKET} \ + --with-ldap-lib=openldap --disable-kerberos \ + --with-nss-ldap-soname=nss_ldap.so.${NSS_LDAP_SHMAJOR} + +CONFIG_FILE= "nslcd.conf" +CONFIGURE_ARGS+= --with-ldap-conf-file=${PREFIX}/etc/${CONFIG_FILE} +PLIST_SUB+= CONFIG=${CONFIG_FILE} + +.if defined(WITH_SASL) +WANT_OPENLDAP_SASL= yes +CONFIGURE_ARGS+= --enable-sasl +.else +CONFIGURE_ARGS+= --disable-sasl +.endif + +.if defined(WITH_PAM) +CONFIGURE_ARGS+= --enable-pam \ + --with-pam-seclib-dir=${PREFIX}/lib \ + --with-pam-ldap-soname=pam_ldap.so.${PAM_LDAP_SHMAJOR} +MAN8+= pam_ldap.8 +CONFLICTS+= pam_ldap-1.* +PLIST_SUB+= PAM="" +.else +CONFIGURE_ARGS+= --disable-pam +PLIST_SUB+= PAM="@comment " +.endif + +.if defined(WITHOUT_NSS) +CONFIGURE_ARGS+= --disable-nss +PLIST_SUB+= NSS="@comment " +.else +CONFIGURE_ARGS+= --enable-nss +CONFLICTS+= nss_ldap-1.* +PLIST_SUB+= NSS="" +.endif + +.if defined(WITHOUT_NSLCD) +CONFIGURE_ARGS+= --disable-nslcd +PLIST_SUB+= NSLCD="@comment " +.else +CONFIGURE_ARGS+= --enable-nslcd +PLIST_SUB+= NSLCD="" +MAN5+= nslcd.conf.5 +MAN8+= nslcd.8 +.endif + +post-extract: + @${REINPLACE_CMD} -e 's/\(INSTALL_\)\(.*\)) -D /\1\2) /' ${WRKSRC}/Makefile.in ${WRKSRC}/nss/Makefile.in + +post-configure: + ${REINPLACE_CMD} -e 's/^\(CFLAGS.*\) \-O2 \(.*\)$$/\1 -O0 \2/' ${WRKSRC}/nss/Makefile + +post-install: +.if !defined(WITHOUT_NSS) + @cd ${PREFIX}/lib && ${LN} -fs nss_ldap.so.${NSS_LDAP_SHMAJOR} \ + nss_ldap.so +.endif +.if !defined(WITHOUT_PAM) + @cd ${PREFIX}/lib && ${LN} -fs pam_ldap.so.${PAM_LDAP_SHMAJOR} \ + pam_ldap.so +.endif + @${ECHO_MSG} + @${ECHO_MSG} ===================================================================== + @${ECHO_MSG} + @${ECHO_MSG} " LDAP configuration: ${PREFIX}/etc/${CONFIG_FILE}" + @${ECHO_MSG} " Sample configuration: ${PREFIX}/etc/${CONFIG_FILE}.sample" + @${ECHO_MSG} +.if !defined(WITHOUT_NSS) + @${ECHO_MSG} " WARNING: Be sure to set uid and gid configuration parameters" + @${ECHO_MSG} " WARNING: to make nslcd run under unprivileged user" +.endif + @${ECHO_MSG} + @${ECHO_MSG} ===================================================================== + @${ECHO_MSG} + +.include diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/distinfo /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/distinfo --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/distinfo 2011-01-28 01:47:45.000000000 -0900 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/distinfo 2012-03-02 12:41:41.000000000 -0900 @@ -1,2 +1,2 @@ -SHA256 (nss-pam-ldapd-0.7.13.tar.gz) = 1bdba144669ac3220162d59bafe5ba4f83404f520bc9ead58b179745c82b8d4a -SIZE (nss-pam-ldapd-0.7.13.tar.gz) = 478944 +SHA256 (nss-pam-ldapd-0.8.6.tar.gz) = 549f58c83c18ce8017f546138414e831b255a6edc5dfd8ff141aef52d94f25df +SIZE (nss-pam-ldapd-0.8.6.tar.gz) = 466292 diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/nslcd.in /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/nslcd.in --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/nslcd.in 2012-01-13 23:56:20.000000000 -0900 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/nslcd.in 2012-03-02 15:23:02.000000000 -0900 @@ -10,16 +10,32 @@ # # nslcd_enable="YES" # - -nslcd_enable=${nslcd_enable-"NO"} +# Optional: +# nslcd_debug="NO" - start nslcd in debugging mode (does not daemonize). +# . /etc/rc.subr name=nslcd rcvar=nslcd_enable +load_rc_config ${name} + +: ${nslcd_enable="NO"} +: ${nslcd_debug="NO"} + +command="%%PREFIX%%/sbin/${name}" +pidfile="/var/run/${name}.pid" +start_precmd="nslcd_prestart" start_postcmd="nslcd_poststart" +nslcd_prestart () { + if checkyesno nslcd_debug + then + command_args="-d" + fi +} + nslcd_poststart () { until $(%%PREFIX%%/sbin/${name} -c); do echo " Waiting for nslcd to start" @@ -27,8 +43,5 @@ done } -command="%%PREFIX%%/sbin/${name}" -pidfile="/var/run/${name}.pid" -load_rc_config ${name} run_rc_command "$1" diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-Makefile.in /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-Makefile.in --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-Makefile.in 2010-07-15 14:51:59.000000000 -0800 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-Makefile.in 2012-03-02 13:01:13.000000000 -0900 @@ -1,18 +1,19 @@ ---- Makefile.in.orig 2010-06-29 23:25:51.000000000 +0400 -+++ Makefile.in 2010-06-29 23:26:53.000000000 +0400 -@@ -759,13 +759,14 @@ +--- Makefile.in.orig 2012-03-02 12:50:47.000000000 -0900 ++++ Makefile.in 2012-03-02 13:01:13.000000000 -0900 +@@ -774,6 +774,7 @@ # install a default configuration file if it is not already there install-nslcd_conf: -+ $(INSTALL_DATA) $(srcdir)/nslcd.conf $(DESTDIR)$(NSLCD_CONF_PATH).sample ++ $(INSTALL_DATA) $(srcdir)/nslcd.conf $(DESTDIR)/$(NSLCD_CONF_PATH).sample @if [ -f $(DESTDIR)$(NSLCD_CONF_PATH) ]; then \ echo "$(DESTDIR)$(NSLCD_CONF_PATH) already exists, install will not overwrite"; \ else \ - $(INSTALL_DATA) $(srcdir)/nslcd.conf $(DESTDIR)$(NSLCD_CONF_PATH) || true; \ +@@ -781,7 +782,7 @@ + $(INSTALL_DATA) $(srcdir)/nslcd.conf $(DESTDIR)$(NSLCD_CONF_PATH); \ fi uninstall-nslcd_conf: - -rm -f $(DESTDIR)$(NSLCD_CONF_PATH) + -rm -f $(DESTDIR)$(NSLCD_CONF_PATH).sample - # target for easily creating a Debian package - # the find is an ugly hack to fix a bug if being built on an nfs filesystem + # fix permissions before distributing + dist-hook: diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nslcd.conf /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nslcd.conf --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nslcd.conf 2010-05-14 05:23:00.000000000 -0800 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nslcd.conf 1969-12-31 14:00:00.000000000 -1000 @@ -1,13 +0,0 @@ ---- nslcd.conf.orig 2010-04-29 07:44:58.355014955 -0500 -+++ nslcd.conf 2010-04-29 07:45:10.741047860 -0500 -@@ -4,6 +4,10 @@ - # information in the directory. - # See the manual page nslcd.conf(5) for more information. - -+# The underprivileged user and group used for running the daemon. -+uid nslcd -+gid nslcd -+ - # The uri pointing to the LDAP server to use for name lookups. - # Multiple entries may be specified. The address that is used - # here should be resolvable without using LDAP (obviously). diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nslcd__cfg.c /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nslcd__cfg.c --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nslcd__cfg.c 1969-12-31 14:00:00.000000000 -1000 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nslcd__cfg.c 2012-03-03 04:25:53.000000000 -0900 @@ -0,0 +1,12 @@ +--- nslcd/cfg.c.orig 2011-12-30 14:16:30.000000000 -0900 ++++ nslcd/cfg.c 2012-03-03 04:25:53.000000000 -0900 +@@ -189,6 +189,9 @@ + { + int rc; + char *hostlist=NULL,*nxt; ++#ifndef HOST_NAME_MAX ++ const long HOST_NAME_MAX = sysconf(_SC_HOST_NAME_MAX); ++#endif + char buf[HOST_NAME_MAX+sizeof("ldap://")]; + log_log(LOG_DEBUG,"query %s for SRV records",domain); + rc=ldap_domain2hostlist(domain,&hostlist); diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nslcd__myldap.c /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nslcd__myldap.c --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nslcd__myldap.c 1969-12-31 14:00:00.000000000 -1000 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nslcd__myldap.c 2012-03-03 04:35:07.000000000 -0900 @@ -0,0 +1,19 @@ +--- nslcd/myldap.c.orig 2012-01-16 10:55:59.000000000 -0900 ++++ nslcd/myldap.c 2012-03-03 04:35:07.000000000 -0900 +@@ -386,9 +386,13 @@ + rc=ldap_start_tls_s(ld,NULL,NULL); + if (rc!=LDAP_SUCCESS) + { +- log_log(LOG_WARNING,"ldap_start_tls_s() failed: %s%s%s (uri=\"%s\")", +- ldap_err2string(rc),(errno==0)?"":": ", +- (errno==0)?"":strerror(errno),uri); ++ char *msg = NULL; ++ ++ ldap_get_option(ld, LDAP_OPT_DIAGNOSTIC_MESSAGE, &msg); ++ log_log(LOG_WARNING,"TLS negotiation with %s failed: %s: ", uri, ++ ldap_err2string(rc), (msg) ? msg : ++ "No additional information available."); ++ if (msg) ldap_memfree(msg); + return rc; + } + } diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nss__bsdnss.c /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nss__bsdnss.c --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nss__bsdnss.c 2011-01-28 01:47:45.000000000 -0900 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nss__bsdnss.c 1969-12-31 14:00:00.000000000 -1000 @@ -1,237 +0,0 @@ ---- /dev/null 2011-01-14 20:44:13.000000000 +0000 -+++ nss/bsdnss.c 2011-01-14 20:33:39.000000000 +0000 -@@ -0,0 +1,234 @@ -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+#include -+ -+#define BUFFER_SIZE 1024 -+ -+extern enum nss_status _nss_ldap_getgrent_r(struct group *, char *, size_t, -+ int *); -+extern enum nss_status _nss_ldap_getgrnam_r(const char *, struct group *, -+ char *, size_t, int *); -+extern enum nss_status _nss_ldap_getgrgid_r(gid_t gid, struct group *, char *, -+ size_t, int *); -+extern enum nss_status _nss_ldap_setgrent(void); -+extern enum nss_status _nss_ldap_endgrent(void); -+ -+extern enum nss_status _nss_ldap_getpwent_r(struct passwd *, char *, size_t, -+ int *); -+extern enum nss_status _nss_ldap_getpwnam_r(const char *, struct passwd *, -+ char *, size_t, int *); -+extern enum nss_status _nss_ldap_getpwuid_r(gid_t gid, struct passwd *, char *, -+ size_t, int *); -+extern enum nss_status _nss_ldap_setpwent(void); -+extern enum nss_status _nss_ldap_endpwent(void); -+ -+extern enum nss_status _nss_ldap_gethostbyname_r (const char *name, struct hostent * result, -+ char *buffer, size_t buflen, int *errnop, -+ int *h_errnop); -+ -+extern enum nss_status _nss_ldap_gethostbyname2_r (const char *name, int af, struct hostent * result, -+ char *buffer, size_t buflen, int *errnop, -+ int *h_errnop); -+extern enum nss_status _nss_ldap_gethostbyaddr_r (struct in_addr * addr, int len, int type, -+ struct hostent * result, char *buffer, -+ size_t buflen, int *errnop, int *h_errnop); -+extern enum nss_status _nss_ldap_initgroups_dyn(const char *, gid_t, long int *, -+ long int *, gid_t **, long int, int *); -+ -+NSS_METHOD_PROTOTYPE(__nss_compat_getgrnam_r); -+NSS_METHOD_PROTOTYPE(__nss_compat_getgrgid_r); -+NSS_METHOD_PROTOTYPE(__nss_compat_getgrent_r); -+NSS_METHOD_PROTOTYPE(__nss_compat_setgrent); -+NSS_METHOD_PROTOTYPE(__nss_compat_endgrent); -+static NSS_METHOD_PROTOTYPE(__freebsd_getgroupmembership); -+ -+NSS_METHOD_PROTOTYPE(__nss_compat_getpwnam_r); -+NSS_METHOD_PROTOTYPE(__nss_compat_getpwuid_r); -+NSS_METHOD_PROTOTYPE(__nss_compat_getpwent_r); -+NSS_METHOD_PROTOTYPE(__nss_compat_setpwent); -+NSS_METHOD_PROTOTYPE(__nss_compat_endpwent); -+ -+NSS_METHOD_PROTOTYPE(__nss_compat_gethostbyname); -+NSS_METHOD_PROTOTYPE(__nss_compat_gethostbyname2); -+NSS_METHOD_PROTOTYPE(__nss_compat_gethostbyaddr); -+ -+static ns_mtab methods[] = { -+{ NSDB_GROUP, "getgrnam_r", __nss_compat_getgrnam_r, _nss_ldap_getgrnam_r }, -+{ NSDB_GROUP, "getgrgid_r", __nss_compat_getgrgid_r, _nss_ldap_getgrgid_r }, -+{ NSDB_GROUP, "getgrent_r", __nss_compat_getgrent_r, _nss_ldap_getgrent_r }, -+{ NSDB_GROUP, "setgrent", __nss_compat_setgrent, _nss_ldap_setgrent }, -+{ NSDB_GROUP, "endgrent", __nss_compat_endgrent, _nss_ldap_endgrent }, -+{ NSDB_GROUP, "getgroupmembership", __freebsd_getgroupmembership, NULL }, -+ -+{ NSDB_PASSWD, "getpwnam_r", __nss_compat_getpwnam_r, _nss_ldap_getpwnam_r }, -+{ NSDB_PASSWD, "getpwuid_r", __nss_compat_getpwuid_r, _nss_ldap_getpwuid_r }, -+{ NSDB_PASSWD, "getpwent_r", __nss_compat_getpwent_r, _nss_ldap_getpwent_r }, -+{ NSDB_PASSWD, "setpwent", __nss_compat_setpwent, _nss_ldap_setpwent }, -+{ NSDB_PASSWD, "endpwent", __nss_compat_endpwent, _nss_ldap_endpwent }, -+ -+{ NSDB_HOSTS, "gethostbyname", __nss_compat_gethostbyname, _nss_ldap_gethostbyname_r }, -+{ NSDB_HOSTS, "gethostbyaddr", __nss_compat_gethostbyaddr, _nss_ldap_gethostbyaddr_r }, -+{ NSDB_HOSTS, "gethostbyname2", __nss_compat_gethostbyname2, _nss_ldap_gethostbyname2_r }, -+ -+{ NSDB_GROUP_COMPAT, "getgrnam_r", __nss_compat_getgrnam_r, _nss_ldap_getgrnam_r }, -+{ NSDB_GROUP_COMPAT, "getgrgid_r", __nss_compat_getgrgid_r, _nss_ldap_getgrgid_r }, -+{ NSDB_GROUP_COMPAT, "getgrent_r", __nss_compat_getgrent_r, _nss_ldap_getgrent_r }, -+{ NSDB_GROUP_COMPAT, "setgrent", __nss_compat_setgrent, _nss_ldap_setgrent }, -+{ NSDB_GROUP_COMPAT, "endgrent", __nss_compat_endgrent, _nss_ldap_endgrent }, -+ -+{ NSDB_PASSWD_COMPAT, "getpwnam_r", __nss_compat_getpwnam_r, _nss_ldap_getpwnam_r }, -+{ NSDB_PASSWD_COMPAT, "getpwuid_r", __nss_compat_getpwuid_r, _nss_ldap_getpwuid_r }, -+{ NSDB_PASSWD_COMPAT, "getpwent_r", __nss_compat_getpwent_r, _nss_ldap_getpwent_r }, -+{ NSDB_PASSWD_COMPAT, "setpwent", __nss_compat_setpwent, _nss_ldap_setpwent }, -+{ NSDB_PASSWD_COMPAT, "endpwent", __nss_compat_endpwent, _nss_ldap_endpwent }, -+ -+}; -+ -+ -+int __nss_compat_gethostbyname(void *retval, void *mdata, va_list ap) -+{ -+ enum nss_status (*fn)(const char *, struct hostent *, char *, size_t, int *, int *); -+ const char *name; -+ struct hostent *result; -+ char buffer[BUFFER_SIZE]; -+ int errnop; -+ int h_errnop; -+ int af; -+ enum nss_status status; -+ fn = mdata; -+ name = va_arg(ap, const char*); -+ af = va_arg(ap,int); -+ result = va_arg(ap,struct hostent *); -+ status = fn(name, result, buffer, sizeof(buffer), &errnop, &h_errnop); -+ status = __nss_compat_result(status,errnop); -+ h_errno = h_errnop; -+ return (status); -+} -+ -+int __nss_compat_gethostbyname2(void *retval, void *mdata, va_list ap) -+{ -+ enum nss_status (*fn)(const char *, struct hostent *, char *, size_t, int *, int *); -+ const char *name; -+ struct hostent *result; -+ char buffer[BUFFER_SIZE]; -+ int errnop; -+ int h_errnop; -+ int af; -+ enum nss_status status; -+ fn = mdata; -+ name = va_arg(ap, const char*); -+ af = va_arg(ap,int); -+ result = va_arg(ap,struct hostent *); -+ status = fn(name, result, buffer, sizeof(buffer), &errnop, &h_errnop); -+ status = __nss_compat_result(status,errnop); -+ h_errno = h_errnop; -+ return (status); -+} -+ -+int __nss_compat_gethostbyaddr(void *retval, void *mdata, va_list ap) -+{ -+ struct in_addr *addr; -+ int len; -+ int type; -+ struct hostent *result; -+ char buffer[BUFFER_SIZE]; -+ int errnop; -+ int h_errnop; -+ enum nss_status (*fn)(struct in_addr *, int, int, struct hostent *, char *, size_t, int *, int *); -+ enum nss_status status; -+ fn = mdata; -+ addr = va_arg(ap, struct in_addr*); -+ len = va_arg(ap,int); -+ type = va_arg(ap,int); -+ result = va_arg(ap, struct hostent*); -+ status = fn(addr, len, type, result, buffer, sizeof(buffer), &errnop, &h_errnop); -+ status = __nss_compat_result(status,errnop); -+ h_errno = h_errnop; -+ return (status); -+} -+ -+static int -+__gr_addgid(gid_t gid, gid_t *groups, int maxgrp, int *groupc) -+{ -+ int ret, dupc; -+ -+ /* skip duplicates */ -+ for (dupc = 0; dupc < MIN(maxgrp, *groupc); dupc++) { -+ if (groups[dupc] == gid) -+ return 1; -+ } -+ -+ ret = 1; -+ if (*groupc < maxgrp) /* add this gid */ -+ groups[*groupc] = gid; -+ else -+ ret = 0; -+ (*groupc)++; -+ return ret; -+} -+ -+static int -+__freebsd_getgroupmembership(void *retval, void *mdata, va_list ap) -+{ -+ -+ int err; -+ enum nss_status s; -+ gid_t group; -+ gid_t *tmpgroups; -+ size_t bufsize; -+ const char *user; -+ gid_t *groups; -+ gid_t agroup; -+ int maxgrp, *grpcnt; -+ int i, rv, ret_errno; -+ long int lstart, lsize; -+ -+ -+ user = va_arg(ap, const char *); -+ group = va_arg(ap, gid_t); -+ groups = va_arg(ap, gid_t *); -+ maxgrp = va_arg(ap, int); -+ grpcnt = va_arg(ap, int *); -+ -+ -+ tmpgroups = malloc(maxgrp * sizeof(gid_t)); -+ if (tmpgroups == NULL) { -+ printf("Tried to mallog %u * %u\n", maxgrp, sizeof(gid_t)); -+ return NS_TRYAGAIN; -+ } -+ -+ /* insert primary membership */ -+ __gr_addgid(group, groups, maxgrp, grpcnt); -+ -+ lstart = 0; -+ lsize = maxgrp; -+ s = _nss_ldap_initgroups_dyn(user, group, &lstart, &lsize, -+ &tmpgroups, 0, &err); -+ if (s == NSS_STATUS_SUCCESS) { -+ for (i = 0; i < lstart; i++) -+ if (! __gr_addgid(tmpgroups[i], groups, maxgrp, grpcnt)) { -+ ;; -+ } -+ s = NSS_STATUS_NOTFOUND; -+ } -+ -+ free(tmpgroups); -+ -+ return __nss_compat_result(s, 0); -+} -+ -+ns_mtab * -+nss_module_register(const char *source, unsigned int *mtabsize, -+ nss_module_unregister_fn *unreg) -+{ -+ *mtabsize = sizeof(methods)/sizeof(methods[0]); -+ *unreg = NULL; -+ return (methods); -+} diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nss__prototypes.h /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nss__prototypes.h --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nss__prototypes.h 1969-12-31 14:00:00.000000000 -1000 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nss__prototypes.h 2012-02-29 17:15:19.000000000 -0900 @@ -0,0 +1,16 @@ +--- nss/prototypes.h.orig 2011-03-09 13:39:24.000000000 -0900 ++++ nss/prototypes.h 2012-02-29 17:15:19.000000000 -0900 +@@ -125,11 +125,13 @@ + nss_status_t _nss_ldap_getservent_r(struct servent *result,char *buffer,size_t buflen,int *errnop); + nss_status_t _nss_ldap_endservent(void); + ++#ifdef HAVE_SHADOW_H + /* shadow - extended user information */ + nss_status_t _nss_ldap_getspnam_r(const char *name,struct spwd *result,char *buffer,size_t buflen,int *errnop); + nss_status_t _nss_ldap_setspent(int stayopen); + nss_status_t _nss_ldap_getspent_r(struct spwd *result,char *buffer,size_t buflen,int *errnop); + nss_status_t _nss_ldap_endspent(void); ++#endif + + #endif /* NSS_FLAVOUR_GLIBC */ + diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nss_ldap.map /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nss_ldap.map --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-nss_ldap.map 2011-01-28 02:23:09.000000000 -0900 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-nss_ldap.map 1969-12-31 14:00:00.000000000 -1000 @@ -1,30 +0,0 @@ ---- ./nss/nss_ldap.map.orig 2010-09-24 07:07:18.000000000 +0000 -+++ ./nss/nss_ldap.map 2010-12-16 13:13:25.000000000 +0000 -@@ -81,6 +78,27 @@ - _nss_ldap_getspent_r; - _nss_ldap_endspent; - -+ # compat 4 bsd -+ __nss_compat_getgrnam_r; -+ __nss_compat_getgrgid_r; -+ __nss_compat_getgrent_r; -+ __nss_compat_setgrent; -+ __nss_compat_endgrent; -+ -+ __nss_compat_getpwnam_r; -+ __nss_compat_getpwuid_r; -+ __nss_compat_getpwent_r; -+ __nss_compat_setpwent; -+ __nss_compat_endpwent; -+ -+ __nss_compat_gethostbyname; -+ __nss_compat_gethostbyname2; -+ __nss_compat_gethostbyaddr; -+ -+ # module init -+ nss_module_register; -+ -+ - # everything else should not be exported - local: - *; diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-pam__makefile.in /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-pam__makefile.in --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/patch-pam__makefile.in 2010-07-15 14:52:00.000000000 -0800 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/patch-pam__makefile.in 1969-12-31 14:00:00.000000000 -1000 @@ -1,12 +0,0 @@ ---- pam/Makefile.in.orig 2009-12-20 20:47:00.000000000 +0300 -+++ pam/Makefile.in 2009-12-20 20:48:30.000000000 +0300 -@@ -470,7 +470,8 @@ - - # install pam_ldap.so - install-pam_ldap_so: pam_ldap.so -- $(INSTALL_PROGRAM) -D pam_ldap.so $(DESTDIR)$(libdir)/security/pam_ldap.so -+ $(INSTALL_PROGRAM) pam_ldap.so $(DESTDIR)$(libdir)/pam_ldap.so.1 -+ ln -sfh $(DESTDIR)$(libdir)/pam_ldap.so.1 $(DESTDIR)$(libdir)/pam_ldap.so - uninstall-pam_ldap_so: - -rm -f $(DESTDIR)$(libdir)/security/pam_ldap.so - diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/rtld_nss__nslcd.c /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/rtld_nss__nslcd.c --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/files/rtld_nss__nslcd.c 2011-01-28 02:23:09.000000000 -0900 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/files/rtld_nss__nslcd.c 1969-12-31 14:00:00.000000000 -1000 @@ -1,20 +0,0 @@ ---- nslcd/nslcd.c.orig 2011-01-09 13:45:07.000000000 +0300 -+++ nslcd/nslcd.c 2011-01-09 13:45:55.000000000 +0300 -@@ -574,7 +574,7 @@ - char *error; - int *enable_flag; - /* try to load the NSS module */ -- handle=dlopen(NSS_LDAP_SONAME,RTLD_LAZY|RTLD_NODELETE); -+ handle=dlopen(NSS_LDAP_SONAME,RTLD_LAZY); - if (handle==NULL) - { - log_log(LOG_WARNING,"Warning: LDAP NSS module not loaded: %s",dlerror()); -@@ -593,7 +593,7 @@ - if (__nss_configure_lookup("hosts","files dns")) - log_log(LOG_ERR,"unable to override hosts lookup method: %s",strerror(errno)); - #endif /* HAVE___NSS_CONFIGURE_LOOKUP */ -- dlclose(handle); -+ /* Do not dlclose() to keep reference count > 0 instead of RTLD_NODELETE */ - return; - } - /* disable nss_ldap */ diff -ruN --exclude=CVS /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/pkg-plist /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/pkg-plist --- /home/mel/svn/redports/melflynn/net/nss-pam-ldapd.orig/pkg-plist 2011-01-28 01:47:45.000000000 -0900 +++ /home/mel/svn/redports/melflynn/net/nss-pam-ldapd/pkg-plist 2012-03-03 03:45:13.000000000 -0900 @@ -1,6 +1,8 @@ @unexec if cmp -s %D/etc/%%CONFIG%%.sample %D/etc/%%CONFIG%%; then rm -f %D/etc/%%CONFIG%%; fi etc/%%CONFIG%%.sample +%%NSS%%lib/nss_ldap.so %%NSS%%lib/nss_ldap.so.1 %%NSLCD%%sbin/nslcd %%PAM%%lib/pam_ldap.so %%PAM%%lib/pam_ldap.so.1 +@exec if [ ! -f %D/etc/%%CONFIG%% ]; then cp -p %D/etc/%%CONFIG%%.sample %D/etc/%%CONFIG%%; fi --- nss-pam-ldapd-0.8.6.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 16:00:45 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C5BB1065678; Sat, 3 Mar 2012 16:00:45 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2EAD78FC08; Sat, 3 Mar 2012 16:00:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23G0jnq049719; Sat, 3 Mar 2012 16:00:45 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23G0jNi049713; Sat, 3 Mar 2012 16:00:45 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 16:00:45 GMT Message-Id: <201203031600.q23G0jNi049713@freefall.freebsd.org> To: rflynn@acsalaska.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165659: [PATCH] net/nss-pam-ldapd: update to 0.8.6 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: Sat, 03 Mar 2012 16:00:45 -0000 Synopsis: [PATCH] net/nss-pam-ldapd: update to 0.8.6 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Mar 3 16:00:44 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165659 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 16:10:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74AFB106564A for ; Sat, 3 Mar 2012 16:10:10 +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 5F42B8FC1A for ; Sat, 3 Mar 2012 16:10:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23GAAo8057861 for ; Sat, 3 Mar 2012 16:10:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23GAAmD057860; Sat, 3 Mar 2012 16:10:10 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 16:10:10 GMT Message-Id: <201203031610.q23GAAmD057860@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/165659: [PATCH] net/nss-pam-ldapd: update to 0.8.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 16:10:10 -0000 The following reply was made to PR ports/165659; it has been noted by GNATS. From: Edwin Groothuis To: melifaro@ipfw.ru Cc: bug-followup@FreeBSD.org Subject: Re: ports/165659: [PATCH] net/nss-pam-ldapd: update to 0.8.6 Date: Sat, 3 Mar 2012 16:00:41 UT Maintainer of net/nss-pam-ldapd, Please note that PR ports/165659 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165659 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 17:10:11 2012 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 CEFF11065673 for ; Sat, 3 Mar 2012 17:10:11 +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 8F3B18FC12 for ; Sat, 3 Mar 2012 17:10:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23HABRJ012869 for ; Sat, 3 Mar 2012 17:10:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23HABMT012868; Sat, 3 Mar 2012 17:10:11 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 17:10:11 GMT Resent-Message-Id: <201203031710.q23HABMT012868@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, Guillaume Bibaut Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DBAC1065680 for ; Sat, 3 Mar 2012 17:00:34 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 39BD18FC0A for ; Sat, 3 Mar 2012 17:00:34 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q23H0Xrr062839 for ; Sat, 3 Mar 2012 17:00:33 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q23H0XbE062837; Sat, 3 Mar 2012 17:00:33 GMT (envelope-from nobody) Message-Id: <201203031700.q23H0XbE062837@red.freebsd.org> Date: Sat, 3 Mar 2012 17:00:33 GMT From: Guillaume Bibaut To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165660: OpenDKIM 2.5.0 port does not build 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: Sat, 03 Mar 2012 17:10:11 -0000 >Number: 165660 >Category: ports >Synopsis: OpenDKIM 2.5.0 port does not build >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 17:10:11 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Guillaume Bibaut >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD mail.iaelu.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Sun Jan 22 12:21:54 CET 2012 root@git-host.com:/usr/obj/usr/src/sys/GENERIC amd64 >Description: port opendkim 2.5.0 does not build because it seems that the source tarball is not available anymore on sourceforge web sites. The latest version available on their web sites is 2.5.0.1, and the release note does not include anything about this new version. >How-To-Repeat: # portsnap fetch update # portupgrade -f mail/opendkim >Fix: not sure, but maybe bumping the version to 2.5.0.1 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 17:30:11 2012 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 DCD02106566B for ; Sat, 3 Mar 2012 17:30:10 +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 A8A0B8FC0C for ; Sat, 3 Mar 2012 17:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23HUAmB031045 for ; Sat, 3 Mar 2012 17:30:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23HUAd1031036; Sat, 3 Mar 2012 17:30:10 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 17:30:10 GMT Resent-Message-Id: <201203031730.q23HUAd1031036@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, Hung-Yi Chen Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CD453106564A for ; Sat, 3 Mar 2012 17:25:06 +0000 (UTC) (envelope-from gaod@cse.tw) Received: from cse.tw (cse.tw [140.138.145.237]) by mx1.freebsd.org (Postfix) with ESMTP id 47A218FC1D for ; Sat, 3 Mar 2012 17:25:06 +0000 (UTC) Received: from cse.tw (localhost [127.0.0.1]) by cse.tw (Postfix) with ESMTP id 563071E8C1F for ; Sun, 4 Mar 2012 01:24:58 +0800 (CST) Received: (from gaod@localhost) by cse.tw (8.14.5/8.14.5/Submit) id q23HOwaZ082172; Sun, 4 Mar 2012 01:24:58 +0800 (CST) (envelope-from gaod) Message-Id: <201203031724.q23HOwaZ082172@cse.tw> Date: Sun, 4 Mar 2012 01:24:58 +0800 (CST) From: Hung-Yi Chen To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165661: [MAINTAINER] sysutils/htop: update to 1.0.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Hung-Yi Chen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 17:30:11 -0000 >Number: 165661 >Category: ports >Synopsis: [MAINTAINER] sysutils/htop: update to 1.0.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: Sat Mar 03 17:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Hung-Yi Chen >Release: FreeBSD 9.0-STABLE i386 >Organization: >Environment: System: FreeBSD cse.tw 9.0-STABLE FreeBSD 9.0-STABLE #11: Wed Feb 29 02:06:52 CST 2012 gaod@cse.tw:/usr/obj/usr/src/sys/GENERIC i386 >Description: Update to htop 1.0.1. >How-To-Repeat: >Fix: --- htop.diff begins here --- ===> Generating patch ===> Viewing diff with more diff -ruN --exclude=CVS /usr/ports/sysutils/htop.orig/Makefile /usr/ports/sysutils/htop/Makefile --- /usr/ports/sysutils/htop.orig/Makefile 2012-03-04 01:13:21.000000000 +0800 +++ /usr/ports/sysutils/htop/Makefile 2012-03-04 01:13:40.000000000 +0800 @@ -6,8 +6,7 @@ # PORTNAME= htop -PORTVERSION= 0.9 -PORTREVISION= 1 +PORTVERSION= 1.0.1 CATEGORIES= sysutils MASTER_SITES= SF diff -ruN --exclude=CVS /usr/ports/sysutils/htop.orig/distinfo /usr/ports/sysutils/htop/distinfo --- /usr/ports/sysutils/htop.orig/distinfo 2012-03-04 01:13:21.000000000 +0800 +++ /usr/ports/sysutils/htop/distinfo 2012-03-04 01:14:32.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (htop-0.9.tar.gz) = 4de65c38e1886bccd30ed692b30eb9bf195240680781bfe1eaf5faf84ee6fbfd -SIZE (htop-0.9.tar.gz) = 418767 +SHA256 (htop-1.0.1.tar.gz) = 07db2cbe02835f9e186b9610ecc3beca330a5c9beadb3b6069dd0a10561506f2 +SIZE (htop-1.0.1.tar.gz) = 384683 diff -ruN --exclude=CVS /usr/ports/sysutils/htop.orig/files/patch-FunctionBar.c /usr/ports/sysutils/htop/files/patch-FunctionBar.c --- /usr/ports/sysutils/htop.orig/files/patch-FunctionBar.c 2012-03-04 01:13:21.000000000 +0800 +++ /usr/ports/sysutils/htop/files/patch-FunctionBar.c 1970-01-01 08:00:00.000000000 +0800 @@ -1,19 +0,0 @@ ---- FunctionBar.c.orig 2010-01-26 03:50:57.000000000 +0800 -+++ FunctionBar.c 2010-01-26 03:51:50.000000000 +0800 -@@ -52,14 +52,12 @@ - this->functions = malloc(sizeof(char*) * 15); - this->keys = malloc(sizeof(char*) * 15); - this->events = malloc(sizeof(int) * 15); -- int i = 0; -- while (i < 15 && functions[i]) { -+ for (int i = 0; i < 15 && functions[i]; i++) { - this->functions[i] = String_copy(functions[i]); - this->keys[i] = String_copy(keys[i]); - this->events[i] = events[i]; -- i++; -+ this->size = i; - } -- this->size = i; - } else { - this->staticData = true; - this->functions = functions ? functions : FunctionBar_FLabels; diff -ruN --exclude=CVS /usr/ports/sysutils/htop.orig/files/patch-ProcessList.c /usr/ports/sysutils/htop/files/patch-ProcessList.c --- /usr/ports/sysutils/htop.orig/files/patch-ProcessList.c 2012-03-04 01:13:21.000000000 +0800 +++ /usr/ports/sysutils/htop/files/patch-ProcessList.c 1970-01-01 08:00:00.000000000 +0800 @@ -1,87 +0,0 @@ ---- ./ProcessList.c.orig 2010-11-26 18:50:25.000000000 +0200 -+++ ./ProcessList.c 2011-08-11 13:07:08.000000000 +0300 -@@ -32,6 +32,19 @@ - #include "debug.h" - #include - -+#ifndef PAGE_SIZE -+#define PAGE_SIZE sysconf(_SC_PAGESIZE) -+#endif -+ -+#ifdef __FreeBSD__ -+#define KB 1024 -+#define SYSCTLBYNAME(name, var, len) sysctlbyname(name, &(var), &(len), NULL, 0) -+#include -+#include -+#include -+#include -+#endif -+ - /*{ - - #ifndef PROCDIR -@@ -665,15 +678,24 @@ - - void ProcessList_scan(ProcessList* this) { - unsigned long long int usertime, nicetime, systemtime, systemalltime, idlealltime, idletime, totaltime, virtalltime; -+ #ifndef __FreeBSD__ - unsigned long long int swapFree = 0; -+ #endif -+ int cpus = this->cpuCount; -+ FILE* file = NULL; - -- FILE* file = fopen(PROCMEMINFOFILE, "r"); -+ #ifdef __FreeBSD__ -+ kvm_t *kd = NULL; -+ struct kvm_swap kvmswapinfo[1]; -+ size_t len = 0; -+ #endif -+ -+ #ifndef __FreeBSD__ -+ file = fopen(PROCMEMINFOFILE, "r"); - assert(file != NULL); -- int cpus = this->cpuCount; - { - char buffer[128]; - while (fgets(buffer, 128, file)) { -- - switch (buffer[0]) { - case 'M': - if (String_startsWith(buffer, "MemTotal:")) -@@ -700,10 +722,35 @@ - } - } - } -+ fclose(file); -+ #endif - -+ #ifdef __FreeBSD__ -+ len = sizeof(this->totalMem); -+ SYSCTLBYNAME("vm.stats.vm.v_page_count", this->totalMem, len); -+ this->totalMem *= PAGE_SIZE / KB; -+ len = sizeof(this->cachedMem); -+ SYSCTLBYNAME("vm.stats.vm.v_cache_count", this->cachedMem, len); -+ this->cachedMem *= PAGE_SIZE / KB; -+ len = sizeof(this->buffersMem); -+ SYSCTLBYNAME("vfs.bufspace", this->buffersMem, len); -+ this->buffersMem /= KB; -+ len = sizeof(this->usedMem); -+ SYSCTLBYNAME("vm.stats.vm.v_active_count", this->usedMem, len); -+ this->usedMem = this->usedMem * PAGE_SIZE / KB + this->cachedMem + this->buffersMem; -+ this->freeMem = this->totalMem - this->usedMem; -+ kd = kvm_open(NULL, _PATH_DEVNULL, NULL, O_RDONLY, NULL); -+ assert(kd != NULL); -+ kvm_getswapinfo(kd, kvmswapinfo, 1, 0); -+ this->totalSwap = kvmswapinfo[0].ksw_total * PAGE_SIZE / KB; -+ this->usedSwap = kvmswapinfo[0].ksw_used * PAGE_SIZE / KB; -+ kvm_close(kd); -+ #endif -+ -+ #ifndef __FreeBSD__ - this->usedMem = this->totalMem - this->freeMem; - this->usedSwap = this->totalSwap - swapFree; -- fclose(file); -+ #endif - - file = fopen(PROCSTATFILE, "r"); - assert(file != NULL); diff -ruN --exclude=CVS /usr/ports/sysutils/htop.orig/files/patch-RichString.c /usr/ports/sysutils/htop/files/patch-RichString.c --- /usr/ports/sysutils/htop.orig/files/patch-RichString.c 2012-03-04 01:13:21.000000000 +0800 +++ /usr/ports/sysutils/htop/files/patch-RichString.c 1970-01-01 08:00:00.000000000 +0800 @@ -1,14 +0,0 @@ ---- RichString.c.orig -+++ RichString.c -@@ -13,7 +13,11 @@ - #include "debug.h" - #include - #ifdef HAVE_LIBNCURSESW -+# ifdef HAVE_NCURSESW_CURSES_H - #include -+# else -+#include -+# endif - #else - #include - #endif diff -ruN --exclude=CVS /usr/ports/sysutils/htop.orig/files/patch-RichString.h /usr/ports/sysutils/htop/files/patch-RichString.h --- /usr/ports/sysutils/htop.orig/files/patch-RichString.h 2012-03-04 01:13:21.000000000 +0800 +++ /usr/ports/sysutils/htop/files/patch-RichString.h 1970-01-01 08:00:00.000000000 +0800 @@ -1,14 +0,0 @@ ---- RichString.h.orig -+++ RichString.h -@@ -16,7 +16,11 @@ - #include "debug.h" - #include - #ifdef HAVE_LIBNCURSESW -+# ifdef HAVE_NCURSESW_CURSES_H - #include -+# else -+#include -+# endif - #else - #include - #endif diff -ruN --exclude=CVS /usr/ports/sysutils/htop.orig/files/patch-configure.ac /usr/ports/sysutils/htop/files/patch-configure.ac --- /usr/ports/sysutils/htop.orig/files/patch-configure.ac 2012-03-04 01:13:21.000000000 +0800 +++ /usr/ports/sysutils/htop/files/patch-configure.ac 1970-01-01 08:00:00.000000000 +0800 @@ -1,19 +0,0 @@ ---- ./configure.ac.orig 2010-11-23 17:56:32.000000000 +0200 -+++ ./configure.ac 2011-08-11 12:50:44.000000000 +0300 -@@ -18,6 +18,7 @@ - - # Checks for libraries. - AC_CHECK_LIB([m], [ceil], [], [missing_libraries="$missing_libraries libm"]) -+AC_CHECK_LIB([kvm], [kvm_open], [], [missing_libraries="$missing_libraries libkvm"]) - - # Checks for header files. - AC_HEADER_DIRENT -@@ -86,7 +87,7 @@ - AC_ARG_ENABLE(unicode, [AC_HELP_STRING([--enable-unicode], [enable Unicode support])], ,enable_unicode="no") - if test "x$enable_unicode" = xyes; then - AC_CHECK_LIB([ncursesw], [refresh], [], [missing_libraries="$missing_libraries libncursesw"]) -- AC_CHECK_HEADERS([ncursesw/curses.h],[:],[missing_headers="$missing_headers $ac_header"]) -+ AC_CHECK_HEADERS([curses.h],[:],[missing_headers="$missing_headers $ac_header"]) - else - AC_CHECK_LIB([ncurses], [refresh], [], [missing_libraries="$missing_libraries libncurses"]) - AC_CHECK_HEADERS([curses.h],[:],[missing_headers="$missing_headers $ac_header"]) diff -ruN --exclude=CVS /usr/ports/sysutils/htop.orig/pkg-message /usr/ports/sysutils/htop/pkg-message --- /usr/ports/sysutils/htop.orig/pkg-message 2012-03-04 01:13:21.000000000 +0800 +++ /usr/ports/sysutils/htop/pkg-message 2012-03-04 01:22:44.000000000 +0800 @@ -1,6 +1,6 @@ *********************************************************** htop(1) requires linprocfs(5) to be mounted. If you don't have it mounted already, please add this line to /etc/fstab -and run `mount linproc`: +and run `mkdir -p /usr/compat/linux/proc; ln -s /usr/compat /compat; mount linproc`: linproc /compat/linux/proc linprocfs rw 0 0 *********************************************************** ===> Done --- htop.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 17:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A727106564A for ; Sat, 3 Mar 2012 17:50:10 +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 218CD8FC0A for ; Sat, 3 Mar 2012 17:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23Ho9rX050423 for ; Sat, 3 Mar 2012 17:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23Ho9M9050422; Sat, 3 Mar 2012 17:50:09 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 17:50:09 GMT Resent-Message-Id: <201203031750.q23Ho9M9050422@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, Olivier Duchateau Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C500C1065672 for ; Sat, 3 Mar 2012 17:40:03 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id A8E878FC13 for ; Sat, 3 Mar 2012 17:40:03 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q23He3Kt039013 for ; Sat, 3 Mar 2012 17:40:03 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q23He32s039012; Sat, 3 Mar 2012 17:40:03 GMT (envelope-from nobody) Message-Id: <201203031740.q23He32s039012@red.freebsd.org> Date: Sat, 3 Mar 2012 17:40:03 GMT From: Olivier Duchateau To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165662: [UPDATE] graphics/ristretto to 0.3.5 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: Sat, 03 Mar 2012 17:50:10 -0000 >Number: 165662 >Category: ports >Synopsis: [UPDATE] graphics/ristretto to 0.3.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 17:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Olivier Duchateau >Release: FreeBSD 8.2-RELEASE-p3 i386 >Organization: >Environment: >Description: Announce: http://mail.xfce.org/pipermail/xfce/2012-March/029985.html >How-To-Repeat: >Fix: Patch attached with submission follows: diff_ristretto.txt - olivier-freebsd-ports - Olivier's FreeBSD ports - Google Project Hosting
Repository:
Checkout   Browse   Changes   Clones    
 
Release-Note: >Audit-Trail: >Unformatted: >
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
diff -u /usr/ports/graphics/ristretto/Makefile ristretto/Makefile
--- /usr/ports/graphics/ristretto/Makefile 2012-01-28 19:14:20.000000000 +0100
+++ ristretto/Makefile 2012-03-03 18:00:08.000000000 +0100
@@ -6,7 +6,7 @@
#

PORTNAME= ristretto
-PORTVERSION= 0.3.4
+PORTVERSION= 0.3.5
CATEGORIES= graphics xfce
MASTER_SITES= ${MASTER_SITE_XFCE}
MASTER_SITE_SUBDIR= src/apps/${PORTNAME}/${PORTVERSION:R}
diff -u /usr/ports/graphics/ristretto/distinfo ristretto/distinfo
--- /usr/ports/graphics/ristretto/distinfo 2012-01-28 19:14:20.000000000 +0100
+++ ristretto/distinfo 2012-03-03 18:00:08.000000000 +0100
@@ -1,2 +1,2 @@
-SHA256 (xfce4/ristretto-0.3.4.tar.bz2) = e2ed5c6bc3f56cf82942c54d1492e54607ccf073c7963c1df5fa2cd3a9a71a32
-SIZE (xfce4/ristretto-0.3.4.tar.bz2) = 817651
+SHA256 (xfce4/ristretto-0.3.5.tar.bz2) = 96dc519c2e930955f97027d7b9bb7542b01a6ad0ca53a16f9af58f7c851eb8f2
+SIZE (xfce4/ristretto-0.3.5.tar.bz2) = 820537
diff -u /usr/ports/graphics/ristretto/pkg-plist ristretto/pkg-plist
--- /usr/ports/graphics/ristretto/pkg-plist 2012-01-28 19:14:20.000000000 +0100
+++ ristretto/pkg-plist 2012-03-03 18:00:08.000000000 +0100
@@ -52,6 +52,7 @@
share/locale/is/LC_MESSAGES/ristretto.mo
share/locale/it/LC_MESSAGES/ristretto.mo
share/locale/ja/LC_MESSAGES/ristretto.mo
+share/locale/ko/LC_MESSAGES/ristretto.mo
share/locale/lt/LC_MESSAGES/ristretto.mo
share/locale/lv/LC_MESSAGES/ristretto.mo
share/locale/nb/LC_MESSAGES/ristretto.mo

Change log

98736a4c2556 by Olivier Duchateau <duchateau.olivier> on Today (25 minutes ago)   Diff
Diff mercurial et ristretto.
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 1455 bytes, 31 lines
From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 17:50:10 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A726106566C for ; Sat, 3 Mar 2012 17:50:10 +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 4AD188FC13 for ; Sat, 3 Mar 2012 17:50:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23Ho9bH050432 for ; Sat, 3 Mar 2012 17:50:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23Ho9wx050431; Sat, 3 Mar 2012 17:50:09 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 17:50:09 GMT Resent-Message-Id: <201203031750.q23Ho9wx050431@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, Olivier Duchateau Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8A471106564A for ; Sat, 3 Mar 2012 17:42:01 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 769838FC18 for ; Sat, 3 Mar 2012 17:42:01 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q23Hg1dZ039184 for ; Sat, 3 Mar 2012 17:42:01 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q23Hg1QF039183; Sat, 3 Mar 2012 17:42:01 GMT (envelope-from nobody) Message-Id: <201203031742.q23Hg1QF039183@red.freebsd.org> Date: Sat, 3 Mar 2012 17:42:01 GMT From: Olivier Duchateau To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165663: [UPDATE] devel/mercurial to 2.1.1 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: Sat, 03 Mar 2012 17:50:10 -0000 >Number: 165663 >Category: ports >Synopsis: [UPDATE] devel/mercurial to 2.1.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 17:50:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Olivier Duchateau >Release: FreeBSD 8.2-RELEASE-p3 i386 >Organization: >Environment: >Description: ChangeLog: http://mercurial.selenic.com/wiki/WhatsNew#Mercurial_2.1.1_.282012-03-01.29 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -u /usr/ports/devel/mercurial/Makefile mercurial/Makefile --- /usr/ports/devel/mercurial/Makefile 2012-02-05 13:28:15.000000000 +0100 +++ mercurial/Makefile 2012-03-03 17:40:08.000000000 +0100 @@ -6,7 +6,7 @@ # PORTNAME= mercurial -PORTVERSION= 2.1 +PORTVERSION= 2.1.1 CATEGORIES= devel python MASTER_SITES= http://mercurial.selenic.com/release/ diff -u /usr/ports/devel/mercurial/distinfo mercurial/distinfo --- /usr/ports/devel/mercurial/distinfo 2012-02-05 13:28:15.000000000 +0100 +++ mercurial/distinfo 2012-03-03 17:40:08.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (mercurial-2.1.tar.gz) = cb37f90807e99dd4508cac70c098aa433b26adb7a3ab064c0b1626dc9a094383 -SIZE (mercurial-2.1.tar.gz) = 3308300 +SHA256 (mercurial-2.1.1.tar.gz) = 0f8ec2b29f1121c6cb73c17509281eb1391ddbfad757b1f720d7e06de0a25dfd +SIZE (mercurial-2.1.1.tar.gz) = 3313261 Common subdirectories: /usr/ports/devel/mercurial/files and mercurial/files >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 17:50:55 2012 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 E038F1065672; Sat, 3 Mar 2012 17:50:55 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B40B38FC16; Sat, 3 Mar 2012 17:50:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23HotiI055025; Sat, 3 Mar 2012 17:50:55 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23HotlA055017; Sat, 3 Mar 2012 17:50:55 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 17:50:55 GMT Message-Id: <201203031750.q23HotlA055017@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-xfce@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165662: [UPDATE] graphics/ristretto to 0.3.5 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: Sat, 03 Mar 2012 17:50:56 -0000 Synopsis: [UPDATE] graphics/ristretto to 0.3.5 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-xfce Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 3 17:50:55 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165662 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 17:51:01 2012 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 AE75E1065675; Sat, 3 Mar 2012 17:51:01 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 835F48FC1C; Sat, 3 Mar 2012 17:51:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23Hp1Aj055674; Sat, 3 Mar 2012 17:51:01 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23Hp1re055665; Sat, 3 Mar 2012 17:51:01 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 17:51:01 GMT Message-Id: <201203031751.q23Hp1re055665@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, roberto@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165663: [UPDATE] devel/mercurial to 2.1.1 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: Sat, 03 Mar 2012 17:51:01 -0000 Synopsis: [UPDATE] devel/mercurial to 2.1.1 Responsible-Changed-From-To: freebsd-ports-bugs->roberto Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 3 17:51:00 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165663 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 18:10:15 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0E6301065673 for ; Sat, 3 Mar 2012 18:10:15 +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 EAD5C8FC1C for ; Sat, 3 Mar 2012 18:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23IAEX7067902 for ; Sat, 3 Mar 2012 18:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23IAEKf067901; Sat, 3 Mar 2012 18:10:14 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 18:10:14 GMT Message-Id: <201203031810.q23IAEKf067901@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Aragon Gouveia Cc: Subject: Re: ports/165247: [PATCH] audio/alsa-plugins: remove parts of FreeBSD-specific patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Aragon Gouveia List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 18:10:15 -0000 The following reply was made to PR ports/165247; it has been noted by GNATS. From: Aragon Gouveia To: bug-followup@FreeBSD.org, avg@icyb.net.ua Cc: Subject: Re: ports/165247: [PATCH] audio/alsa-plugins: remove parts of FreeBSD-specific patch Date: Sat, 03 Mar 2012 20:06:11 +0200 This is a multi-part message in MIME format. --------------050602060704030409020708 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi. Sorry for dragging this out so long. Please find attached patch which I think does what I had in mind. I'm not very experienced with tracking changes in src, but for stable/9 I think you meant 900037 for the __FreeBSD_version bump? It occurred at r221862. Thanks! --------------050602060704030409020708 Content-Type: text/plain; name="alsa-plugins.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="alsa-plugins.txt" diff -uNr alsa-plugins/Makefile alsa-plugins.new/Makefile --- alsa-plugins/Makefile 2011-09-24 00:20:55.000000000 +0200 +++ alsa-plugins.new/Makefile 2012-03-03 19:55:31.000000000 +0200 @@ -7,7 +7,7 @@ PORTNAME= alsa-plugins PORTVERSION= 1.0.23 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= ftp://ftp.silug.org/pub/alsa/plugins/ \ ftp://gd.tuwien.ac.at/opsys/linux/alsa/plugins/ \ @@ -76,6 +76,16 @@ PLIST_SUB+= SPEEX="@comment " .endif +.if ${OSVERSION} > 900036 +EXTRA_PATCHES+= ${FILESDIR}/alsa-plugins-getiptrfix.patch +.elif ${OSVERSION} > 802503 +EXTRA_PATCHES+= ${FILESDIR}/alsa-plugins-getiptrfix.patch +.elif ${OSVERSION} > 704000 +EXTRA_PATCHES+= ${FILESDIR}/alsa-plugins-getiptrfix.patch +.else +EXTRA_PATCHES+= ${FILESDIR}/alsa-plugins.patch +.endif + post-patch: .SILENT ${REINPLACE_CMD} -e '/LIBS/s/-ldl//g' \ -e '/lt_cv_dlopen/s/-ldl//g' \ diff -uNr alsa-plugins/files/alsa-plugins-getiptrfix.patch alsa-plugins.new/files/alsa-plugins-getiptrfix.patch --- alsa-plugins/files/alsa-plugins-getiptrfix.patch 1970-01-01 02:00:00.000000000 +0200 +++ alsa-plugins.new/files/alsa-plugins-getiptrfix.patch 2012-03-03 19:00:12.000000000 +0200 @@ -0,0 +1,564 @@ +--- jack/pcm_jack.c.orig 2009-09-16 04:33:36.000000000 +0800 ++++ jack/pcm_jack.c 2009-09-16 04:33:55.000000000 +0800 +@@ -20,7 +20,9 @@ + * + */ + ++#ifndef __FreeBSD__ + #include ++#endif + #include + #include + #include +--- oss/ctl_oss.c.orig 2009-08-31 21:09:41.000000000 +0800 ++++ oss/ctl_oss.c 2009-09-15 01:07:51.000000000 +0800 +@@ -26,7 +26,11 @@ + #include + #include + #include ++#ifdef __FreeBSD__ ++#include ++#else + #include ++#endif + + typedef struct snd_ctl_oss { + snd_ctl_ext_t ext; +@@ -362,7 +366,9 @@ + { + snd_config_iterator_t it, next; + const char *device = "/dev/mixer"; ++#ifndef __FreeBSD__ + struct mixer_info mixinfo; ++#endif + int i, err, val; + snd_ctl_oss_t *oss; + +@@ -399,19 +405,29 @@ + goto error; + } + ++#ifndef __FreeBSD__ + if (ioctl(oss->fd, SOUND_MIXER_INFO, &mixinfo) < 0) { + err = -errno; + SNDERR("Cannot get mixer info for device %s", device); + goto error; + } ++#endif + + oss->ext.version = SND_CTL_EXT_VERSION; + oss->ext.card_idx = 0; /* FIXME */ ++#ifdef __FreeBSD__ ++ strncpy(oss->ext.id, "fbsd", sizeof(oss->ext.id) - 1); ++ strcpy(oss->ext.driver, "FreeBSD/OSS plugin"); ++ strncpy(oss->ext.name, "FreeBSD/OSS", sizeof(oss->ext.name) - 1); ++ strncpy(oss->ext.longname, "FreeBSD/OSS", sizeof(oss->ext.longname) - 1); ++ strncpy(oss->ext.mixername, "FreeBSD/OSS", sizeof(oss->ext.mixername) - 1); ++#else + strncpy(oss->ext.id, mixinfo.id, sizeof(oss->ext.id) - 1); + strcpy(oss->ext.driver, "OSS-Emulation"); + strncpy(oss->ext.name, mixinfo.name, sizeof(oss->ext.name) - 1); + strncpy(oss->ext.longname, mixinfo.name, sizeof(oss->ext.longname) - 1); + strncpy(oss->ext.mixername, mixinfo.name, sizeof(oss->ext.mixername) - 1); ++#endif + oss->ext.poll_fd = -1; + oss->ext.callback = &oss_ext_callback; + oss->ext.private_data = oss; +--- oss/pcm_oss.c.orig 2010-04-16 14:11:10.000000000 +0300 ++++ oss/pcm_oss.c 2012-02-14 19:27:15.833934348 +0200 +@@ -22,17 +22,55 @@ + #include + #include + #include ++#ifdef __FreeBSD__ ++#include ++#include ++#else + #include ++#endif ++ ++#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x))) ++ ++#ifdef __FreeBSD__ ++/* #define FREEBSD_OSS_BLKCNT_P2 1 */ ++/* #define FREEBSD_OSS_DEBUG_VERBOSE 1 */ ++#undef FREEBSD_OSS_BLKCNT_P2 ++#undef FREEBSD_OSS_DEBUG_VERBOSE ++ ++#define FREEBSD_OSS_RATE_MIN 1 ++#define FREEBSD_OSS_RATE_MAX 384000 ++ ++#define FREEBSD_OSS_CHANNELS_MIN 1 ++#if __FreeBSD_version >= 800096 ++#define FREEBSD_OSS_CHANNELS_MAX 8 ++#else ++#define FREEBSD_OSS_CHANNELS_MAX 2 ++#endif ++ ++#define FREEBSD_OSS_BUFSZ_MAX 131072 ++#define FREEBSD_OSS_BLKCNT_MIN 2 ++#define FREEBSD_OSS_BLKSZ_MIN 16 /* (FREEBSD_OSS_CHANNEL_MAX * 4) */ ++ ++#define FREEBSD_OSS_BUFSZ_MIN (FREEBSD_OSS_BLKCNT_MIN * FREEBSD_OSS_BLKSZ_MIN) ++#define FREEBSD_OSS_BLKCNT_MAX (FREEBSD_OSS_BUFSZ_MAX / FREEBSD_OSS_BUFSZ_MIN) ++#define FREEBSD_OSS_BLKSZ_MAX (FREEBSD_OSS_BUFSZ_MAX / FREEBSD_OSS_BLKCNT_MIN) ++#endif + + typedef struct snd_pcm_oss { + snd_pcm_ioplug_t io; + char *device; + int fd; ++#ifdef __FreeBSD__ ++ int bufsz, ptr, ptr_align, last_bytes; ++#else + int fragment_set; + int caps; ++#endif + int format; ++#ifndef __FreeBSD__ + unsigned int period_shift; + unsigned int periods; ++#endif + unsigned int frame_bytes; + } snd_pcm_oss_t; + +@@ -49,8 +87,13 @@ + buf = (char *)areas->addr + (areas->first + areas->step * offset) / 8; + size *= oss->frame_bytes; + result = write(oss->fd, buf, size); ++#ifdef __FreeBSD__ ++ if (result == -1) ++ return -errno; ++#else + if (result <= 0) + return result; ++#endif + return result / oss->frame_bytes; + } + +@@ -67,8 +110,13 @@ + buf = (char *)areas->addr + (areas->first + areas->step * offset) / 8; + size *= oss->frame_bytes; + result = read(oss->fd, buf, size); ++#ifdef __FreeBSD__ ++ if (result == -1) ++ return -errno; ++#else + if (result <= 0) + return result; ++#endif + return result / oss->frame_bytes; + } + +@@ -93,12 +141,21 @@ + int tmp = io->stream == SND_PCM_STREAM_PLAYBACK ? + PCM_ENABLE_OUTPUT : PCM_ENABLE_INPUT; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + if (ioctl(oss->fd, SNDCTL_DSP_SETTRIGGER, &tmp) < 0) { + fprintf(stderr, "*** OSS: trigger failed\n"); ++#ifdef __FreeBSD__ ++ return -EINVAL; ++#else + if (io->stream == SND_PCM_STREAM_CAPTURE) + /* fake read to trigger */ + read(oss->fd, &tmp, 0); ++#endif + } ++ + return 0; + } + +@@ -107,6 +164,10 @@ + snd_pcm_oss_t *oss = io->private_data; + int tmp = 0; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + ioctl(oss->fd, SNDCTL_DSP_SETTRIGGER, &tmp); + return 0; + } +@@ -115,16 +176,25 @@ + { + snd_pcm_oss_t *oss = io->private_data; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + if (io->stream == SND_PCM_STREAM_PLAYBACK) + ioctl(oss->fd, SNDCTL_DSP_SYNC); + return 0; + } + ++#ifndef __FreeBSD__ + static int oss_prepare(snd_pcm_ioplug_t *io) + { + snd_pcm_oss_t *oss = io->private_data; + int tmp; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + ioctl(oss->fd, SNDCTL_DSP_RESET); + + tmp = io->channels; +@@ -145,16 +215,75 @@ + } + return 0; + } ++#endif ++ ++#ifdef __FreeBSD__ ++static const struct { ++ int oss_format; ++ snd_pcm_format_t alsa_format; ++} oss_formats_tab[] = { ++ { AFMT_U8, SND_PCM_FORMAT_U8 }, ++ { AFMT_S8, SND_PCM_FORMAT_S8 }, ++ { AFMT_MU_LAW, SND_PCM_FORMAT_MU_LAW }, ++ { AFMT_A_LAW, SND_PCM_FORMAT_A_LAW }, ++ { AFMT_S16_LE, SND_PCM_FORMAT_S16_LE }, ++ { AFMT_S16_BE, SND_PCM_FORMAT_S16_BE }, ++ { AFMT_U16_LE, SND_PCM_FORMAT_U16_LE }, ++ { AFMT_U16_BE, SND_PCM_FORMAT_U16_BE }, ++ { AFMT_S24_LE, SND_PCM_FORMAT_S24_3LE }, ++ { AFMT_S24_BE, SND_PCM_FORMAT_S24_3BE }, ++ { AFMT_U24_LE, SND_PCM_FORMAT_U24_3LE }, ++ { AFMT_U24_BE, SND_PCM_FORMAT_U24_3BE }, ++ { AFMT_S32_LE, SND_PCM_FORMAT_S32_LE }, ++ { AFMT_S32_BE, SND_PCM_FORMAT_S32_BE }, ++ { AFMT_U32_LE, SND_PCM_FORMAT_U32_LE }, ++ { AFMT_U32_BE, SND_PCM_FORMAT_U32_BE }, ++ /* Special */ ++ { AFMT_S24_LE, SND_PCM_FORMAT_S20_3LE }, ++ { AFMT_S24_BE, SND_PCM_FORMAT_S20_3BE }, ++ { AFMT_U24_LE, SND_PCM_FORMAT_U20_3LE }, ++ { AFMT_U24_BE, SND_PCM_FORMAT_U20_3BE }, ++ { AFMT_S24_LE, SND_PCM_FORMAT_S18_3LE }, ++ { AFMT_S24_BE, SND_PCM_FORMAT_S18_3BE }, ++ { AFMT_U24_LE, SND_PCM_FORMAT_U18_3LE }, ++ { AFMT_U24_BE, SND_PCM_FORMAT_U18_3BE }, ++ { AFMT_S32_LE, SND_PCM_FORMAT_S24_LE }, ++ { AFMT_S32_BE, SND_PCM_FORMAT_S24_BE }, ++ { AFMT_U32_LE, SND_PCM_FORMAT_U24_LE }, ++ { AFMT_U32_BE, SND_PCM_FORMAT_U24_BE }, ++}; ++#endif + + static int oss_hw_params(snd_pcm_ioplug_t *io, + snd_pcm_hw_params_t *params ATTRIBUTE_UNUSED) + { + snd_pcm_oss_t *oss = io->private_data; + int i, tmp, err; ++#ifdef __FreeBSD__ ++ int blksz_shift, blkcnt; ++ audio_buf_info bi; ++#else + unsigned int period_bytes; ++#endif + long oflags, flags; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + oss->frame_bytes = (snd_pcm_format_physical_width(io->format) * io->channels) / 8; ++#ifdef __FreeBSD__ ++ oss->ptr_align = io->buffer_size * oss->frame_bytes; ++ ++ oss->format = 0; ++ for (i = 0; i < ARRAY_SIZE(oss_formats_tab); i++) { ++ if (oss_formats_tab[i].alsa_format == io->format) { ++ oss->format = oss_formats_tab[i].oss_format; ++ break; ++ } ++ } ++ if (oss->format == 0) { ++#else + switch (io->format) { + case SND_PCM_FORMAT_U8: + oss->format = AFMT_U8; +@@ -166,9 +295,87 @@ + oss->format = AFMT_S16_BE; + break; + default: ++#endif + fprintf(stderr, "*** OSS: unsupported format %s\n", snd_pcm_format_name(io->format)); + return -EINVAL; + } ++#ifdef __FreeBSD__ ++ ++ ioctl(oss->fd, SNDCTL_DSP_RESET); ++ ++#define blksz_aligned() ((1 << blksz_shift) - \ ++ ((1 << blksz_shift) % oss->frame_bytes)) ++ blksz_shift = 16; ++ tmp = io->period_size * oss->frame_bytes; ++ ++ while (blksz_shift > 4 && blksz_aligned() > tmp) ++ blksz_shift--; ++ ++ blkcnt = 2; ++ tmp = io->buffer_size * oss->frame_bytes; ++ ++ while (blkcnt < 4096 && (blksz_aligned() * blkcnt) < tmp && ++ ((1 << blksz_shift) * blkcnt) < 131072) ++ blkcnt <<= 1; ++ ++ tmp = blksz_shift | (blkcnt << 16); ++ if (ioctl(oss->fd, SNDCTL_DSP_SETFRAGMENT, &tmp) < 0) { ++ perror("SNDCTL_DSP_SETFRAGMENTS"); ++ return -EINVAL; ++ } ++ ++ tmp = oss->format; ++ if (ioctl(oss->fd, SNDCTL_DSP_SETFMT, &tmp) < 0 || ++ tmp != oss->format) { ++ perror("SNDCTL_DSP_SETFMT"); ++ return -EINVAL; ++ } ++ ++ tmp = io->channels; ++ if (ioctl(oss->fd, SNDCTL_DSP_CHANNELS, &tmp) < 0 || ++ tmp != io->channels) { ++ perror("SNDCTL_DSP_CHANNELS"); ++ return -EINVAL; ++ } ++ ++ tmp = io->rate; ++ if (ioctl(oss->fd, SNDCTL_DSP_SPEED, &tmp) < 0 || ++ tmp > io->rate * 1.01 || tmp < io->rate * 0.99) { ++ perror("SNDCTL_DSP_SPEED"); ++ return -EINVAL; ++ } ++ ++ if (ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? ++ SNDCTL_DSP_GETOSPACE : SNDCTL_DSP_GETISPACE, &bi) < 0) { ++ perror("SNDCTL_DSP_GET[I/O]SPACE"); ++ return -EINVAL; ++ } ++ ++ oss->bufsz = bi.fragsize * bi.fragstotal; ++ ++#ifdef SNDCTL_DSP_LOW_WATER ++ tmp = ((io->period_size * oss->frame_bytes) * 3) / 4; ++ tmp -= tmp % oss->frame_bytes; ++ if (tmp < oss->frame_bytes) ++ tmp = oss->frame_bytes; ++ if (tmp > bi.fragsize) ++ tmp = bi.fragsize; ++ if (ioctl(oss->fd, SNDCTL_DSP_LOW_WATER, &tmp) < 0) ++ perror("SNDCTL_DSP_LOW_WATER"); ++#endif ++ ++#ifdef FREEBSD_OSS_DEBUG_VERBOSE ++ fprintf(stderr, ++ "\n\n[%lu -> %d] %lu ~ %d -> %d, %lu ~ %d -> %d [d:%ld lw:%d]\n\n", ++ io->buffer_size / io->period_size, bi.fragstotal, ++ io->buffer_size * oss->frame_bytes, ++ (1 << blksz_shift) * blkcnt, oss->bufsz, ++ io->period_size * oss->frame_bytes, 1 << blksz_shift, ++ bi.fragsize, ++ (long)(io->buffer_size * oss->frame_bytes) - ++ oss->bufsz, tmp); ++#endif ++#else + period_bytes = io->period_size * oss->frame_bytes; + oss->period_shift = 0; + for (i = 31; i >= 4; i--) { +@@ -209,6 +416,7 @@ + goto _retry; + } + oss->fragment_set = 1; ++#endif + + if ((flags = fcntl(oss->fd, F_GETFL)) < 0) { + err = -errno; +@@ -229,10 +437,128 @@ + return 0; + } + +-#define ARRAY_SIZE(ary) (sizeof(ary)/sizeof(ary[0])) +- + static int oss_hw_constraint(snd_pcm_oss_t *oss) + { ++#ifdef __FreeBSD__ ++ snd_pcm_ioplug_t *io = &oss->io; ++ static const snd_pcm_access_t access_list[] = { ++ SND_PCM_ACCESS_RW_INTERLEAVED, ++ SND_PCM_ACCESS_MMAP_INTERLEAVED ++ }; ++#ifdef FREEBSD_OSS_BLKCNT_P2 ++ unsigned int period_list[30]; ++#endif ++ unsigned int nformats; ++ unsigned int format[ARRAY_SIZE(oss_formats_tab)]; ++#if 0 ++ unsigned int nchannels; ++ unsigned int channel[FREEBSD_OSS_CHANNELS_MAX]; ++#endif ++ int i, err, tmp; ++ ++#ifdef FREEBSD_OSS_DEBUG_VERBOSE ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ ++ /* check trigger */ ++ tmp = 0; ++ if (ioctl(oss->fd, SNDCTL_DSP_GETCAPS, &tmp) >= 0) { ++ if (!(tmp & DSP_CAP_TRIGGER)) ++ fprintf(stderr, "*** OSS: trigger is not supported!\n"); ++ } ++ ++ /* access type - interleaved only */ ++ if ((err = snd_pcm_ioplug_set_param_list(io, SND_PCM_IOPLUG_HW_ACCESS, ++ ARRAY_SIZE(access_list), access_list)) < 0) ++ return err; ++ ++ /* supported formats. */ ++ tmp = 0; ++ ioctl(oss->fd, SNDCTL_DSP_GETFMTS, &tmp); ++ nformats = 0; ++ for (i = 0; i < ARRAY_SIZE(oss_formats_tab); i++) { ++ if (tmp & oss_formats_tab[i].oss_format) ++ format[nformats++] = oss_formats_tab[i].alsa_format; ++ } ++ if (! nformats) ++ format[nformats++] = SND_PCM_FORMAT_S16; ++ if ((err = snd_pcm_ioplug_set_param_list(io, SND_PCM_IOPLUG_HW_FORMAT, ++ nformats, format)) < 0) ++ return err; ++ ++#if 0 ++ /* supported channels */ ++ nchannels = 0; ++ for (i = 0; i < ARRAY_SIZE(channel); i++) { ++ tmp = i + 1; ++ if (ioctl(oss->fd, SNDCTL_DSP_CHANNELS, &tmp) >= 0 && ++ 1 + i == tmp) ++ channel[nchannels++] = tmp; ++ } ++ if (! nchannels) /* assume 2ch stereo */ ++ err = snd_pcm_ioplug_set_param_minmax(io, ++ SND_PCM_IOPLUG_HW_CHANNELS, 2, 2); ++ else ++ err = snd_pcm_ioplug_set_param_list(io, ++ SND_PCM_IOPLUG_HW_CHANNELS, nchannels, channel); ++ if (err < 0) ++ return err; ++#endif ++ err = snd_pcm_ioplug_set_param_minmax(io, SND_PCM_IOPLUG_HW_CHANNELS, ++ FREEBSD_OSS_CHANNELS_MIN, FREEBSD_OSS_CHANNELS_MAX); ++ if (err < 0) ++ return err; ++ ++ /* supported rates */ ++ err = snd_pcm_ioplug_set_param_minmax(io, SND_PCM_IOPLUG_HW_RATE, ++ FREEBSD_OSS_RATE_MIN, FREEBSD_OSS_RATE_MAX); ++ if (err < 0) ++ return err; ++ ++ /* ++ * Maximum buffer size on FreeBSD can go up to 131072 bytes without ++ * strict ^2 alignment so that s24le in 3bytes packing can be fed ++ * directly. ++ */ ++ ++#ifdef FREEBSD_OSS_BLKCNT_P2 ++ tmp = 0; ++ for (i = 1; i < 31 && tmp < ARRAY_SIZE(period_list); i++) { ++ if ((1 << i) > FREEBSD_OSS_BLKCNT_MAX) ++ break; ++ if ((1 << i) < FREEBSD_OSS_BLKCNT_MIN) ++ continue; ++ period_list[tmp++] = 1 << i; ++ } ++ ++ if (tmp > 0) ++ err = snd_pcm_ioplug_set_param_list(io, ++ SND_PCM_IOPLUG_HW_PERIODS, tmp, period_list); ++ else ++#endif ++ /* periods , not strictly ^2 but later on will be refined */ ++ err = snd_pcm_ioplug_set_param_minmax(io, ++ SND_PCM_IOPLUG_HW_PERIODS, FREEBSD_OSS_BLKCNT_MIN, ++ FREEBSD_OSS_BLKCNT_MAX); ++ if (err < 0) ++ return err; ++ ++ /* period size , not strictly ^2 */ ++ err = snd_pcm_ioplug_set_param_minmax(io, ++ SND_PCM_IOPLUG_HW_PERIOD_BYTES, FREEBSD_OSS_BLKSZ_MIN, ++ FREEBSD_OSS_BLKSZ_MAX); ++ if (err < 0) ++ return err; ++ ++ /* buffer size , not strictly ^2 */ ++ err = snd_pcm_ioplug_set_param_minmax(io, ++ SND_PCM_IOPLUG_HW_BUFFER_BYTES, FREEBSD_OSS_BUFSZ_MIN, ++ FREEBSD_OSS_BUFSZ_MAX); ++ if (err < 0) ++ return err; ++ ++ return 0; ++#else + snd_pcm_ioplug_t *io = &oss->io; + static const snd_pcm_access_t access_list[] = { + SND_PCM_ACCESS_RW_INTERLEAVED, +@@ -317,6 +643,7 @@ + return err; + + return 0; ++#endif + } + + +@@ -324,6 +651,10 @@ + { + snd_pcm_oss_t *oss = io->private_data; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + close(oss->fd); + free(oss->device); + free(oss); +@@ -337,7 +668,9 @@ + .pointer = oss_pointer, + .close = oss_close, + .hw_params = oss_hw_params, ++#ifndef __FreeBSD__ + .prepare = oss_prepare, ++#endif + .drain = oss_drain, + }; + +@@ -348,7 +681,9 @@ + .pointer = oss_pointer, + .close = oss_close, + .hw_params = oss_hw_params, ++#ifndef __FreeBSD__ + .prepare = oss_prepare, ++#endif + .drain = oss_drain, + }; + +@@ -360,6 +695,10 @@ + int err; + snd_pcm_oss_t *oss; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + snd_config_for_each(i, next, conf) { + snd_config_t *n = snd_config_iterator_entry(i); + const char *id; diff -uNr alsa-plugins/files/alsa-plugins.patch alsa-plugins.new/files/alsa-plugins.patch --- alsa-plugins/files/alsa-plugins.patch 1970-01-01 02:00:00.000000000 +0200 +++ alsa-plugins.new/files/alsa-plugins.patch 2010-06-05 14:46:16.000000000 +0200 @@ -0,0 +1,670 @@ +--- jack/pcm_jack.c.orig 2009-09-16 04:33:36.000000000 +0800 ++++ jack/pcm_jack.c 2009-09-16 04:33:55.000000000 +0800 +@@ -20,7 +20,9 @@ + * + */ + ++#ifndef __FreeBSD__ + #include ++#endif + #include + #include + #include +--- oss/ctl_oss.c.orig 2009-08-31 21:09:41.000000000 +0800 ++++ oss/ctl_oss.c 2009-09-15 01:07:51.000000000 +0800 +@@ -26,7 +26,11 @@ + #include + #include + #include ++#ifdef __FreeBSD__ ++#include ++#else + #include ++#endif + + typedef struct snd_ctl_oss { + snd_ctl_ext_t ext; +@@ -362,7 +366,9 @@ + { + snd_config_iterator_t it, next; + const char *device = "/dev/mixer"; ++#ifndef __FreeBSD__ + struct mixer_info mixinfo; ++#endif + int i, err, val; + snd_ctl_oss_t *oss; + +@@ -399,19 +405,29 @@ + goto error; + } + ++#ifndef __FreeBSD__ + if (ioctl(oss->fd, SOUND_MIXER_INFO, &mixinfo) < 0) { + err = -errno; + SNDERR("Cannot get mixer info for device %s", device); + goto error; + } ++#endif + + oss->ext.version = SND_CTL_EXT_VERSION; + oss->ext.card_idx = 0; /* FIXME */ ++#ifdef __FreeBSD__ ++ strncpy(oss->ext.id, "fbsd", sizeof(oss->ext.id) - 1); ++ strcpy(oss->ext.driver, "FreeBSD/OSS plugin"); ++ strncpy(oss->ext.name, "FreeBSD/OSS", sizeof(oss->ext.name) - 1); ++ strncpy(oss->ext.longname, "FreeBSD/OSS", sizeof(oss->ext.longname) - 1); ++ strncpy(oss->ext.mixername, "FreeBSD/OSS", sizeof(oss->ext.mixername) - 1); ++#else + strncpy(oss->ext.id, mixinfo.id, sizeof(oss->ext.id) - 1); + strcpy(oss->ext.driver, "OSS-Emulation"); + strncpy(oss->ext.name, mixinfo.name, sizeof(oss->ext.name) - 1); + strncpy(oss->ext.longname, mixinfo.name, sizeof(oss->ext.longname) - 1); + strncpy(oss->ext.mixername, mixinfo.name, sizeof(oss->ext.mixername) - 1); ++#endif + oss->ext.poll_fd = -1; + oss->ext.callback = &oss_ext_callback; + oss->ext.private_data = oss; +--- oss/pcm_oss.c.orig 2009-08-31 21:09:41.000000000 +0800 ++++ oss/pcm_oss.c 2009-09-28 14:54:12.000000000 +0800 +@@ -22,17 +22,57 @@ + #include + #include + #include ++#ifdef __FreeBSD__ ++#include ++#include ++#else + #include ++#endif ++ ++#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x))) ++ ++#ifdef __FreeBSD__ ++/* #define FREEBSD_OSS_USE_IO_PTR 1 */ ++/* #define FREEBSD_OSS_BLKCNT_P2 1 */ ++/* #define FREEBSD_OSS_DEBUG_VERBOSE 1 */ ++#undef FREEBSD_OSS_USE_IO_PTR /* _IPTR is buggy ... Grr... */ ++#undef FREEBSD_OSS_BLKCNT_P2 ++#undef FREEBSD_OSS_DEBUG_VERBOSE ++ ++#define FREEBSD_OSS_RATE_MIN 1 ++#define FREEBSD_OSS_RATE_MAX 384000 ++ ++#define FREEBSD_OSS_CHANNELS_MIN 1 ++#if __FreeBSD_version >= 800096 ++#define FREEBSD_OSS_CHANNELS_MAX 8 ++#else ++#define FREEBSD_OSS_CHANNELS_MAX 2 ++#endif ++ ++#define FREEBSD_OSS_BUFSZ_MAX 131072 ++#define FREEBSD_OSS_BLKCNT_MIN 2 ++#define FREEBSD_OSS_BLKSZ_MIN 16 /* (FREEBSD_OSS_CHANNEL_MAX * 4) */ ++ ++#define FREEBSD_OSS_BUFSZ_MIN (FREEBSD_OSS_BLKCNT_MIN * FREEBSD_OSS_BLKSZ_MIN) ++#define FREEBSD_OSS_BLKCNT_MAX (FREEBSD_OSS_BUFSZ_MAX / FREEBSD_OSS_BUFSZ_MIN) ++#define FREEBSD_OSS_BLKSZ_MAX (FREEBSD_OSS_BUFSZ_MAX / FREEBSD_OSS_BLKCNT_MIN) ++#endif + + typedef struct snd_pcm_oss { + snd_pcm_ioplug_t io; + char *device; + int fd; ++#ifdef __FreeBSD__ ++ int bufsz, ptr, ptr_align, last_bytes; ++#else + int fragment_set; + int caps; ++#endif + int format; ++#ifndef __FreeBSD__ + unsigned int period_shift; + unsigned int periods; ++#endif + unsigned int frame_bytes; + } snd_pcm_oss_t; + +@@ -49,8 +89,13 @@ + buf = (char *)areas->addr + (areas->first + areas->step * offset) / 8; + size *= oss->frame_bytes; + result = write(oss->fd, buf, size); ++#ifdef __FreeBSD__ ++ if (result == -1) ++ return -errno; ++#else + if (result <= 0) + return result; ++#endif + return result / oss->frame_bytes; + } + +@@ -67,13 +112,79 @@ + buf = (char *)areas->addr + (areas->first + areas->step * offset) / 8; + size *= oss->frame_bytes; + result = read(oss->fd, buf, size); ++#ifdef __FreeBSD__ ++ if (result == -1) ++ return -errno; ++#else + if (result <= 0) + return result; ++#endif + return result / oss->frame_bytes; + } + + static snd_pcm_sframes_t oss_pointer(snd_pcm_ioplug_t *io) + { ++#ifdef __FreeBSD__ ++ snd_pcm_oss_t *oss = io->private_data; ++#ifdef FREEBSD_OSS_USE_IO_PTR ++ struct count_info ci; ++#endif ++ audio_buf_info bi; ++ ++ if (io->state != SND_PCM_STATE_RUNNING) ++ return 0; ++ ++ if (io->state == SND_PCM_STATE_XRUN) ++ return -EPIPE; ++ ++#ifdef FREEBSD_OSS_USE_IO_PTR ++ if (ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? ++ SNDCTL_DSP_GETOPTR : SNDCTL_DSP_GETIPTR, &ci) < 0) ++ return -EINVAL; ++ ++ if (ci.ptr == oss->last_bytes && ++ ((ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? ++ SNDCTL_DSP_GETOSPACE : SNDCTL_DSP_GETISPACE, &bi) < 0) || ++ bi.bytes == oss->bufsz)) ++ return -EPIPE; ++ ++ if (ci.ptr < oss->last_bytes) ++ oss->ptr += oss->bufsz; ++ ++ oss->ptr += ci.ptr; ++ oss->ptr -= oss->last_bytes; ++ oss->ptr %= oss->ptr_align; ++ ++ oss->last_bytes = ci.ptr; ++#else /* !FREEBSD_OSS_USE_IO_PTR */ ++ if (ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? ++ SNDCTL_DSP_GETOSPACE : SNDCTL_DSP_GETISPACE, &bi) < 0) ++ return -EINVAL; ++ ++ if (bi.bytes == oss->bufsz && bi.bytes == oss->last_bytes) { ++#if 0 ++#ifdef SNDCTL_DSP_GETERROR ++ audio_errinfo ei; ++ if (ioctl(oss->fd, SNDCTL_DSP_GETERROR, &ei) < 0 || ++ (io->stream == SND_PCM_STREAM_PLAYBACK && ++ ei.play_underruns != 0) || ++ (io->stream == SND_PCM_STREAM_CAPTURE && ++ ei.rec_overruns != 0)) ++#endif ++#endif ++ return -EPIPE; ++ } ++ ++ if (bi.bytes > oss->last_bytes) { ++ oss->ptr += bi.bytes - oss->last_bytes; ++ oss->ptr %= oss->ptr_align; ++ } ++ ++ oss->last_bytes = bi.bytes; ++#endif /* FREEBSD_OSS_USE_IO_PTR */ ++ ++ return snd_pcm_bytes_to_frames(io->pcm, oss->ptr); ++#else + snd_pcm_oss_t *oss = io->private_data; + struct count_info info; + int ptr; +@@ -85,20 +196,59 @@ + } + ptr = snd_pcm_bytes_to_frames(io->pcm, info.ptr); + return ptr; ++#endif + } + + static int oss_start(snd_pcm_ioplug_t *io) + { + snd_pcm_oss_t *oss = io->private_data; ++#ifdef __FreeBSD__ ++ audio_buf_info bi; ++#ifdef FREEBSD_OSS_USE_IO_PTR ++ struct count_info ci; ++#endif ++#endif + int tmp = io->stream == SND_PCM_STREAM_PLAYBACK ? + PCM_ENABLE_OUTPUT : PCM_ENABLE_INPUT; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + if (ioctl(oss->fd, SNDCTL_DSP_SETTRIGGER, &tmp) < 0) { + fprintf(stderr, "*** OSS: trigger failed\n"); ++#ifdef __FreeBSD__ ++ return -EINVAL; ++#else + if (io->stream == SND_PCM_STREAM_CAPTURE) + /* fake read to trigger */ + read(oss->fd, &tmp, 0); ++#endif + } ++ ++#ifdef __FreeBSD__ ++ if (ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? ++ SNDCTL_DSP_GETOSPACE : SNDCTL_DSP_GETISPACE, &bi) < 0) ++ return -EINVAL; ++ ++ if (oss->bufsz != (bi.fragsize * bi.fragstotal)) { ++ fprintf(stderr, "%s(): WARNING - bufsz changed! %d -> %d\n", ++ __func__, oss->bufsz, bi.fragsize * bi.fragstotal); ++ oss->bufsz = bi.fragsize * bi.fragstotal; ++ } ++ ++#ifdef FREEBSD_OSS_USE_IO_PTR ++ if (ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? ++ SNDCTL_DSP_GETOPTR : SNDCTL_DSP_GETIPTR, &ci) < 0) ++ return -EINVAL; ++ ++ oss->last_bytes = ci.ptr; ++#else ++ oss->last_bytes = bi.bytes; ++#endif ++ oss->ptr = 0; ++#endif ++ + return 0; + } + +@@ -107,6 +257,10 @@ + snd_pcm_oss_t *oss = io->private_data; + int tmp = 0; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + ioctl(oss->fd, SNDCTL_DSP_SETTRIGGER, &tmp); + return 0; + } +@@ -115,16 +269,25 @@ + { + snd_pcm_oss_t *oss = io->private_data; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + if (io->stream == SND_PCM_STREAM_PLAYBACK) + ioctl(oss->fd, SNDCTL_DSP_SYNC); + return 0; + } + ++#ifndef __FreeBSD__ + static int oss_prepare(snd_pcm_ioplug_t *io) + { + snd_pcm_oss_t *oss = io->private_data; + int tmp; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + ioctl(oss->fd, SNDCTL_DSP_RESET); + + tmp = io->channels; +@@ -145,16 +308,75 @@ + } + return 0; + } ++#endif ++ ++#ifdef __FreeBSD__ ++static const struct { ++ int oss_format; ++ snd_pcm_format_t alsa_format; ++} oss_formats_tab[] = { ++ { AFMT_U8, SND_PCM_FORMAT_U8 }, ++ { AFMT_S8, SND_PCM_FORMAT_S8 }, ++ { AFMT_MU_LAW, SND_PCM_FORMAT_MU_LAW }, ++ { AFMT_A_LAW, SND_PCM_FORMAT_A_LAW }, ++ { AFMT_S16_LE, SND_PCM_FORMAT_S16_LE }, ++ { AFMT_S16_BE, SND_PCM_FORMAT_S16_BE }, ++ { AFMT_U16_LE, SND_PCM_FORMAT_U16_LE }, ++ { AFMT_U16_BE, SND_PCM_FORMAT_U16_BE }, ++ { AFMT_S24_LE, SND_PCM_FORMAT_S24_3LE }, ++ { AFMT_S24_BE, SND_PCM_FORMAT_S24_3BE }, ++ { AFMT_U24_LE, SND_PCM_FORMAT_U24_3LE }, ++ { AFMT_U24_BE, SND_PCM_FORMAT_U24_3BE }, ++ { AFMT_S32_LE, SND_PCM_FORMAT_S32_LE }, ++ { AFMT_S32_BE, SND_PCM_FORMAT_S32_BE }, ++ { AFMT_U32_LE, SND_PCM_FORMAT_U32_LE }, ++ { AFMT_U32_BE, SND_PCM_FORMAT_U32_BE }, ++ /* Special */ ++ { AFMT_S24_LE, SND_PCM_FORMAT_S20_3LE }, ++ { AFMT_S24_BE, SND_PCM_FORMAT_S20_3BE }, ++ { AFMT_U24_LE, SND_PCM_FORMAT_U20_3LE }, ++ { AFMT_U24_BE, SND_PCM_FORMAT_U20_3BE }, ++ { AFMT_S24_LE, SND_PCM_FORMAT_S18_3LE }, ++ { AFMT_S24_BE, SND_PCM_FORMAT_S18_3BE }, ++ { AFMT_U24_LE, SND_PCM_FORMAT_U18_3LE }, ++ { AFMT_U24_BE, SND_PCM_FORMAT_U18_3BE }, ++ { AFMT_S32_LE, SND_PCM_FORMAT_S24_LE }, ++ { AFMT_S32_BE, SND_PCM_FORMAT_S24_BE }, ++ { AFMT_U32_LE, SND_PCM_FORMAT_U24_LE }, ++ { AFMT_U32_BE, SND_PCM_FORMAT_U24_BE }, ++}; ++#endif + + static int oss_hw_params(snd_pcm_ioplug_t *io, + snd_pcm_hw_params_t *params ATTRIBUTE_UNUSED) + { + snd_pcm_oss_t *oss = io->private_data; + int i, tmp, err; ++#ifdef __FreeBSD__ ++ int blksz_shift, blkcnt; ++ audio_buf_info bi; ++#else + unsigned int period_bytes; ++#endif + long oflags, flags; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + oss->frame_bytes = (snd_pcm_format_physical_width(io->format) * io->channels) / 8; ++#ifdef __FreeBSD__ ++ oss->ptr_align = io->buffer_size * oss->frame_bytes; ++ ++ oss->format = 0; ++ for (i = 0; i < ARRAY_SIZE(oss_formats_tab); i++) { ++ if (oss_formats_tab[i].alsa_format == io->format) { ++ oss->format = oss_formats_tab[i].oss_format; ++ break; ++ } ++ } ++ if (oss->format == 0) { ++#else + switch (io->format) { + case SND_PCM_FORMAT_U8: + oss->format = AFMT_U8; +@@ -166,9 +388,87 @@ + oss->format = AFMT_S16_BE; + break; + default: ++#endif + fprintf(stderr, "*** OSS: unsupported format %s\n", snd_pcm_format_name(io->format)); + return -EINVAL; + } ++#ifdef __FreeBSD__ ++ ++ ioctl(oss->fd, SNDCTL_DSP_RESET); ++ ++#define blksz_aligned() ((1 << blksz_shift) - \ ++ ((1 << blksz_shift) % oss->frame_bytes)) ++ blksz_shift = 16; ++ tmp = io->period_size * oss->frame_bytes; ++ ++ while (blksz_shift > 4 && blksz_aligned() > tmp) ++ blksz_shift--; ++ ++ blkcnt = 2; ++ tmp = io->buffer_size * oss->frame_bytes; ++ ++ while (blkcnt < 4096 && (blksz_aligned() * blkcnt) < tmp && ++ ((1 << blksz_shift) * blkcnt) < 131072) ++ blkcnt <<= 1; ++ ++ tmp = blksz_shift | (blkcnt << 16); ++ if (ioctl(oss->fd, SNDCTL_DSP_SETFRAGMENT, &tmp) < 0) { ++ perror("SNDCTL_DSP_SETFRAGMENTS"); ++ return -EINVAL; ++ } ++ ++ tmp = oss->format; ++ if (ioctl(oss->fd, SNDCTL_DSP_SETFMT, &tmp) < 0 || ++ tmp != oss->format) { ++ perror("SNDCTL_DSP_SETFMT"); ++ return -EINVAL; ++ } ++ ++ tmp = io->channels; ++ if (ioctl(oss->fd, SNDCTL_DSP_CHANNELS, &tmp) < 0 || ++ tmp != io->channels) { ++ perror("SNDCTL_DSP_CHANNELS"); ++ return -EINVAL; ++ } ++ ++ tmp = io->rate; ++ if (ioctl(oss->fd, SNDCTL_DSP_SPEED, &tmp) < 0 || ++ tmp > io->rate * 1.01 || tmp < io->rate * 0.99) { ++ perror("SNDCTL_DSP_SPEED"); ++ return -EINVAL; ++ } ++ ++ if (ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? ++ SNDCTL_DSP_GETOSPACE : SNDCTL_DSP_GETISPACE, &bi) < 0) { ++ perror("SNDCTL_DSP_GET[I/O]SPACE"); ++ return -EINVAL; ++ } ++ ++ oss->bufsz = bi.fragsize * bi.fragstotal; ++ ++#ifdef SNDCTL_DSP_LOW_WATER ++ tmp = ((io->period_size * oss->frame_bytes) * 3) / 4; ++ tmp -= tmp % oss->frame_bytes; ++ if (tmp < oss->frame_bytes) ++ tmp = oss->frame_bytes; ++ if (tmp > bi.fragsize) ++ tmp = bi.fragsize; ++ if (ioctl(oss->fd, SNDCTL_DSP_LOW_WATER, &tmp) < 0) ++ perror("SNDCTL_DSP_LOW_WATER"); ++#endif ++ ++#ifdef FREEBSD_OSS_DEBUG_VERBOSE ++ fprintf(stderr, ++ "\n\n[%lu -> %d] %lu ~ %d -> %d, %lu ~ %d -> %d [d:%ld lw:%d]\n\n", ++ io->buffer_size / io->period_size, bi.fragstotal, ++ io->buffer_size * oss->frame_bytes, ++ (1 << blksz_shift) * blkcnt, oss->bufsz, ++ io->period_size * oss->frame_bytes, 1 << blksz_shift, ++ bi.fragsize, ++ (long)(io->buffer_size * oss->frame_bytes) - ++ oss->bufsz, tmp); ++#endif ++#else + period_bytes = io->period_size * oss->frame_bytes; + oss->period_shift = 0; + for (i = 31; i >= 4; i--) { +@@ -209,6 +509,7 @@ + goto _retry; + } + oss->fragment_set = 1; ++#endif + + if ((flags = fcntl(oss->fd, F_GETFL)) < 0) { + err = -errno; +@@ -229,10 +530,128 @@ + return 0; + } + +-#define ARRAY_SIZE(ary) (sizeof(ary)/sizeof(ary[0])) +- + static int oss_hw_constraint(snd_pcm_oss_t *oss) + { ++#ifdef __FreeBSD__ ++ snd_pcm_ioplug_t *io = &oss->io; ++ static const snd_pcm_access_t access_list[] = { ++ SND_PCM_ACCESS_RW_INTERLEAVED, ++ SND_PCM_ACCESS_MMAP_INTERLEAVED ++ }; ++#ifdef FREEBSD_OSS_BLKCNT_P2 ++ unsigned int period_list[30]; ++#endif ++ unsigned int nformats; ++ unsigned int format[ARRAY_SIZE(oss_formats_tab)]; ++#if 0 ++ unsigned int nchannels; ++ unsigned int channel[FREEBSD_OSS_CHANNELS_MAX]; ++#endif ++ int i, err, tmp; ++ ++#ifdef FREEBSD_OSS_DEBUG_VERBOSE ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ ++ /* check trigger */ ++ tmp = 0; ++ if (ioctl(oss->fd, SNDCTL_DSP_GETCAPS, &tmp) >= 0) { ++ if (!(tmp & DSP_CAP_TRIGGER)) ++ fprintf(stderr, "*** OSS: trigger is not supported!\n"); ++ } ++ ++ /* access type - interleaved only */ ++ if ((err = snd_pcm_ioplug_set_param_list(io, SND_PCM_IOPLUG_HW_ACCESS, ++ ARRAY_SIZE(access_list), access_list)) < 0) ++ return err; ++ ++ /* supported formats. */ ++ tmp = 0; ++ ioctl(oss->fd, SNDCTL_DSP_GETFMTS, &tmp); ++ nformats = 0; ++ for (i = 0; i < ARRAY_SIZE(oss_formats_tab); i++) { ++ if (tmp & oss_formats_tab[i].oss_format) ++ format[nformats++] = oss_formats_tab[i].alsa_format; ++ } ++ if (! nformats) ++ format[nformats++] = SND_PCM_FORMAT_S16; ++ if ((err = snd_pcm_ioplug_set_param_list(io, SND_PCM_IOPLUG_HW_FORMAT, ++ nformats, format)) < 0) ++ return err; ++ ++#if 0 ++ /* supported channels */ ++ nchannels = 0; ++ for (i = 0; i < ARRAY_SIZE(channel); i++) { ++ tmp = i + 1; ++ if (ioctl(oss->fd, SNDCTL_DSP_CHANNELS, &tmp) >= 0 && ++ 1 + i == tmp) ++ channel[nchannels++] = tmp; ++ } ++ if (! nchannels) /* assume 2ch stereo */ ++ err = snd_pcm_ioplug_set_param_minmax(io, ++ SND_PCM_IOPLUG_HW_CHANNELS, 2, 2); ++ else ++ err = snd_pcm_ioplug_set_param_list(io, ++ SND_PCM_IOPLUG_HW_CHANNELS, nchannels, channel); ++ if (err < 0) ++ return err; ++#endif ++ err = snd_pcm_ioplug_set_param_minmax(io, SND_PCM_IOPLUG_HW_CHANNELS, ++ FREEBSD_OSS_CHANNELS_MIN, FREEBSD_OSS_CHANNELS_MAX); ++ if (err < 0) ++ return err; ++ ++ /* supported rates */ ++ err = snd_pcm_ioplug_set_param_minmax(io, SND_PCM_IOPLUG_HW_RATE, ++ FREEBSD_OSS_RATE_MIN, FREEBSD_OSS_RATE_MAX); ++ if (err < 0) ++ return err; ++ ++ /* ++ * Maximum buffer size on FreeBSD can go up to 131072 bytes without ++ * strict ^2 alignment so that s24le in 3bytes packing can be fed ++ * directly. ++ */ ++ ++#ifdef FREEBSD_OSS_BLKCNT_P2 ++ tmp = 0; ++ for (i = 1; i < 31 && tmp < ARRAY_SIZE(period_list); i++) { ++ if ((1 << i) > FREEBSD_OSS_BLKCNT_MAX) ++ break; ++ if ((1 << i) < FREEBSD_OSS_BLKCNT_MIN) ++ continue; ++ period_list[tmp++] = 1 << i; ++ } ++ ++ if (tmp > 0) ++ err = snd_pcm_ioplug_set_param_list(io, ++ SND_PCM_IOPLUG_HW_PERIODS, tmp, period_list); ++ else ++#endif ++ /* periods , not strictly ^2 but later on will be refined */ ++ err = snd_pcm_ioplug_set_param_minmax(io, ++ SND_PCM_IOPLUG_HW_PERIODS, FREEBSD_OSS_BLKCNT_MIN, ++ FREEBSD_OSS_BLKCNT_MAX); ++ if (err < 0) ++ return err; ++ ++ /* period size , not strictly ^2 */ ++ err = snd_pcm_ioplug_set_param_minmax(io, ++ SND_PCM_IOPLUG_HW_PERIOD_BYTES, FREEBSD_OSS_BLKSZ_MIN, ++ FREEBSD_OSS_BLKSZ_MAX); ++ if (err < 0) ++ return err; ++ ++ /* buffer size , not strictly ^2 */ ++ err = snd_pcm_ioplug_set_param_minmax(io, ++ SND_PCM_IOPLUG_HW_BUFFER_BYTES, FREEBSD_OSS_BUFSZ_MIN, ++ FREEBSD_OSS_BUFSZ_MAX); ++ if (err < 0) ++ return err; ++ ++ return 0; ++#else + snd_pcm_ioplug_t *io = &oss->io; + static const snd_pcm_access_t access_list[] = { + SND_PCM_ACCESS_RW_INTERLEAVED, +@@ -317,6 +736,7 @@ + return err; + + return 0; ++#endif + } + + +@@ -324,6 +744,10 @@ + { + snd_pcm_oss_t *oss = io->private_data; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + close(oss->fd); + free(oss->device); + free(oss); +@@ -337,7 +761,9 @@ + .pointer = oss_pointer, + .close = oss_close, + .hw_params = oss_hw_params, ++#ifndef __FreeBSD__ + .prepare = oss_prepare, ++#endif + .drain = oss_drain, + }; + +@@ -348,7 +774,9 @@ + .pointer = oss_pointer, + .close = oss_close, + .hw_params = oss_hw_params, ++#ifndef __FreeBSD__ + .prepare = oss_prepare, ++#endif + .drain = oss_drain, + }; + +@@ -360,6 +788,10 @@ + int err; + snd_pcm_oss_t *oss; + ++#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) ++ fprintf(stderr, "%s()\n", __func__); ++#endif ++ + snd_config_for_each(i, next, conf) { + snd_config_t *n = snd_config_iterator_entry(i); + const char *id; diff -uNr alsa-plugins/files/patch-alsa-plugins alsa-plugins.new/files/patch-alsa-plugins --- alsa-plugins/files/patch-alsa-plugins 2010-06-05 14:46:16.000000000 +0200 +++ alsa-plugins.new/files/patch-alsa-plugins 1970-01-01 02:00:00.000000000 +0200 @@ -1,670 +0,0 @@ ---- jack/pcm_jack.c.orig 2009-09-16 04:33:36.000000000 +0800 -+++ jack/pcm_jack.c 2009-09-16 04:33:55.000000000 +0800 -@@ -20,7 +20,9 @@ - * - */ - -+#ifndef __FreeBSD__ - #include -+#endif - #include - #include - #include ---- oss/ctl_oss.c.orig 2009-08-31 21:09:41.000000000 +0800 -+++ oss/ctl_oss.c 2009-09-15 01:07:51.000000000 +0800 -@@ -26,7 +26,11 @@ - #include - #include - #include -+#ifdef __FreeBSD__ -+#include -+#else - #include -+#endif - - typedef struct snd_ctl_oss { - snd_ctl_ext_t ext; -@@ -362,7 +366,9 @@ - { - snd_config_iterator_t it, next; - const char *device = "/dev/mixer"; -+#ifndef __FreeBSD__ - struct mixer_info mixinfo; -+#endif - int i, err, val; - snd_ctl_oss_t *oss; - -@@ -399,19 +405,29 @@ - goto error; - } - -+#ifndef __FreeBSD__ - if (ioctl(oss->fd, SOUND_MIXER_INFO, &mixinfo) < 0) { - err = -errno; - SNDERR("Cannot get mixer info for device %s", device); - goto error; - } -+#endif - - oss->ext.version = SND_CTL_EXT_VERSION; - oss->ext.card_idx = 0; /* FIXME */ -+#ifdef __FreeBSD__ -+ strncpy(oss->ext.id, "fbsd", sizeof(oss->ext.id) - 1); -+ strcpy(oss->ext.driver, "FreeBSD/OSS plugin"); -+ strncpy(oss->ext.name, "FreeBSD/OSS", sizeof(oss->ext.name) - 1); -+ strncpy(oss->ext.longname, "FreeBSD/OSS", sizeof(oss->ext.longname) - 1); -+ strncpy(oss->ext.mixername, "FreeBSD/OSS", sizeof(oss->ext.mixername) - 1); -+#else - strncpy(oss->ext.id, mixinfo.id, sizeof(oss->ext.id) - 1); - strcpy(oss->ext.driver, "OSS-Emulation"); - strncpy(oss->ext.name, mixinfo.name, sizeof(oss->ext.name) - 1); - strncpy(oss->ext.longname, mixinfo.name, sizeof(oss->ext.longname) - 1); - strncpy(oss->ext.mixername, mixinfo.name, sizeof(oss->ext.mixername) - 1); -+#endif - oss->ext.poll_fd = -1; - oss->ext.callback = &oss_ext_callback; - oss->ext.private_data = oss; ---- oss/pcm_oss.c.orig 2009-08-31 21:09:41.000000000 +0800 -+++ oss/pcm_oss.c 2009-09-28 14:54:12.000000000 +0800 -@@ -22,17 +22,57 @@ - #include - #include - #include -+#ifdef __FreeBSD__ -+#include -+#include -+#else - #include -+#endif -+ -+#define ARRAY_SIZE(x) (sizeof(x) / sizeof(*(x))) -+ -+#ifdef __FreeBSD__ -+/* #define FREEBSD_OSS_USE_IO_PTR 1 */ -+/* #define FREEBSD_OSS_BLKCNT_P2 1 */ -+/* #define FREEBSD_OSS_DEBUG_VERBOSE 1 */ -+#undef FREEBSD_OSS_USE_IO_PTR /* _IPTR is buggy ... Grr... */ -+#undef FREEBSD_OSS_BLKCNT_P2 -+#undef FREEBSD_OSS_DEBUG_VERBOSE -+ -+#define FREEBSD_OSS_RATE_MIN 1 -+#define FREEBSD_OSS_RATE_MAX 384000 -+ -+#define FREEBSD_OSS_CHANNELS_MIN 1 -+#if __FreeBSD_version >= 800096 -+#define FREEBSD_OSS_CHANNELS_MAX 8 -+#else -+#define FREEBSD_OSS_CHANNELS_MAX 2 -+#endif -+ -+#define FREEBSD_OSS_BUFSZ_MAX 131072 -+#define FREEBSD_OSS_BLKCNT_MIN 2 -+#define FREEBSD_OSS_BLKSZ_MIN 16 /* (FREEBSD_OSS_CHANNEL_MAX * 4) */ -+ -+#define FREEBSD_OSS_BUFSZ_MIN (FREEBSD_OSS_BLKCNT_MIN * FREEBSD_OSS_BLKSZ_MIN) -+#define FREEBSD_OSS_BLKCNT_MAX (FREEBSD_OSS_BUFSZ_MAX / FREEBSD_OSS_BUFSZ_MIN) -+#define FREEBSD_OSS_BLKSZ_MAX (FREEBSD_OSS_BUFSZ_MAX / FREEBSD_OSS_BLKCNT_MIN) -+#endif - - typedef struct snd_pcm_oss { - snd_pcm_ioplug_t io; - char *device; - int fd; -+#ifdef __FreeBSD__ -+ int bufsz, ptr, ptr_align, last_bytes; -+#else - int fragment_set; - int caps; -+#endif - int format; -+#ifndef __FreeBSD__ - unsigned int period_shift; - unsigned int periods; -+#endif - unsigned int frame_bytes; - } snd_pcm_oss_t; - -@@ -49,8 +89,13 @@ - buf = (char *)areas->addr + (areas->first + areas->step * offset) / 8; - size *= oss->frame_bytes; - result = write(oss->fd, buf, size); -+#ifdef __FreeBSD__ -+ if (result == -1) -+ return -errno; -+#else - if (result <= 0) - return result; -+#endif - return result / oss->frame_bytes; - } - -@@ -67,13 +112,79 @@ - buf = (char *)areas->addr + (areas->first + areas->step * offset) / 8; - size *= oss->frame_bytes; - result = read(oss->fd, buf, size); -+#ifdef __FreeBSD__ -+ if (result == -1) -+ return -errno; -+#else - if (result <= 0) - return result; -+#endif - return result / oss->frame_bytes; - } - - static snd_pcm_sframes_t oss_pointer(snd_pcm_ioplug_t *io) - { -+#ifdef __FreeBSD__ -+ snd_pcm_oss_t *oss = io->private_data; -+#ifdef FREEBSD_OSS_USE_IO_PTR -+ struct count_info ci; -+#endif -+ audio_buf_info bi; -+ -+ if (io->state != SND_PCM_STATE_RUNNING) -+ return 0; -+ -+ if (io->state == SND_PCM_STATE_XRUN) -+ return -EPIPE; -+ -+#ifdef FREEBSD_OSS_USE_IO_PTR -+ if (ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? -+ SNDCTL_DSP_GETOPTR : SNDCTL_DSP_GETIPTR, &ci) < 0) -+ return -EINVAL; -+ -+ if (ci.ptr == oss->last_bytes && -+ ((ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? -+ SNDCTL_DSP_GETOSPACE : SNDCTL_DSP_GETISPACE, &bi) < 0) || -+ bi.bytes == oss->bufsz)) -+ return -EPIPE; -+ -+ if (ci.ptr < oss->last_bytes) -+ oss->ptr += oss->bufsz; -+ -+ oss->ptr += ci.ptr; -+ oss->ptr -= oss->last_bytes; -+ oss->ptr %= oss->ptr_align; -+ -+ oss->last_bytes = ci.ptr; -+#else /* !FREEBSD_OSS_USE_IO_PTR */ -+ if (ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? -+ SNDCTL_DSP_GETOSPACE : SNDCTL_DSP_GETISPACE, &bi) < 0) -+ return -EINVAL; -+ -+ if (bi.bytes == oss->bufsz && bi.bytes == oss->last_bytes) { -+#if 0 -+#ifdef SNDCTL_DSP_GETERROR -+ audio_errinfo ei; -+ if (ioctl(oss->fd, SNDCTL_DSP_GETERROR, &ei) < 0 || -+ (io->stream == SND_PCM_STREAM_PLAYBACK && -+ ei.play_underruns != 0) || -+ (io->stream == SND_PCM_STREAM_CAPTURE && -+ ei.rec_overruns != 0)) -+#endif -+#endif -+ return -EPIPE; -+ } -+ -+ if (bi.bytes > oss->last_bytes) { -+ oss->ptr += bi.bytes - oss->last_bytes; -+ oss->ptr %= oss->ptr_align; -+ } -+ -+ oss->last_bytes = bi.bytes; -+#endif /* FREEBSD_OSS_USE_IO_PTR */ -+ -+ return snd_pcm_bytes_to_frames(io->pcm, oss->ptr); -+#else - snd_pcm_oss_t *oss = io->private_data; - struct count_info info; - int ptr; -@@ -85,20 +196,59 @@ - } - ptr = snd_pcm_bytes_to_frames(io->pcm, info.ptr); - return ptr; -+#endif - } - - static int oss_start(snd_pcm_ioplug_t *io) - { - snd_pcm_oss_t *oss = io->private_data; -+#ifdef __FreeBSD__ -+ audio_buf_info bi; -+#ifdef FREEBSD_OSS_USE_IO_PTR -+ struct count_info ci; -+#endif -+#endif - int tmp = io->stream == SND_PCM_STREAM_PLAYBACK ? - PCM_ENABLE_OUTPUT : PCM_ENABLE_INPUT; - -+#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) -+ fprintf(stderr, "%s()\n", __func__); -+#endif -+ - if (ioctl(oss->fd, SNDCTL_DSP_SETTRIGGER, &tmp) < 0) { - fprintf(stderr, "*** OSS: trigger failed\n"); -+#ifdef __FreeBSD__ -+ return -EINVAL; -+#else - if (io->stream == SND_PCM_STREAM_CAPTURE) - /* fake read to trigger */ - read(oss->fd, &tmp, 0); -+#endif - } -+ -+#ifdef __FreeBSD__ -+ if (ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? -+ SNDCTL_DSP_GETOSPACE : SNDCTL_DSP_GETISPACE, &bi) < 0) -+ return -EINVAL; -+ -+ if (oss->bufsz != (bi.fragsize * bi.fragstotal)) { -+ fprintf(stderr, "%s(): WARNING - bufsz changed! %d -> %d\n", -+ __func__, oss->bufsz, bi.fragsize * bi.fragstotal); -+ oss->bufsz = bi.fragsize * bi.fragstotal; -+ } -+ -+#ifdef FREEBSD_OSS_USE_IO_PTR -+ if (ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? -+ SNDCTL_DSP_GETOPTR : SNDCTL_DSP_GETIPTR, &ci) < 0) -+ return -EINVAL; -+ -+ oss->last_bytes = ci.ptr; -+#else -+ oss->last_bytes = bi.bytes; -+#endif -+ oss->ptr = 0; -+#endif -+ - return 0; - } - -@@ -107,6 +257,10 @@ - snd_pcm_oss_t *oss = io->private_data; - int tmp = 0; - -+#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) -+ fprintf(stderr, "%s()\n", __func__); -+#endif -+ - ioctl(oss->fd, SNDCTL_DSP_SETTRIGGER, &tmp); - return 0; - } -@@ -115,16 +269,25 @@ - { - snd_pcm_oss_t *oss = io->private_data; - -+#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) -+ fprintf(stderr, "%s()\n", __func__); -+#endif -+ - if (io->stream == SND_PCM_STREAM_PLAYBACK) - ioctl(oss->fd, SNDCTL_DSP_SYNC); - return 0; - } - -+#ifndef __FreeBSD__ - static int oss_prepare(snd_pcm_ioplug_t *io) - { - snd_pcm_oss_t *oss = io->private_data; - int tmp; - -+#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) -+ fprintf(stderr, "%s()\n", __func__); -+#endif -+ - ioctl(oss->fd, SNDCTL_DSP_RESET); - - tmp = io->channels; -@@ -145,16 +308,75 @@ - } - return 0; - } -+#endif -+ -+#ifdef __FreeBSD__ -+static const struct { -+ int oss_format; -+ snd_pcm_format_t alsa_format; -+} oss_formats_tab[] = { -+ { AFMT_U8, SND_PCM_FORMAT_U8 }, -+ { AFMT_S8, SND_PCM_FORMAT_S8 }, -+ { AFMT_MU_LAW, SND_PCM_FORMAT_MU_LAW }, -+ { AFMT_A_LAW, SND_PCM_FORMAT_A_LAW }, -+ { AFMT_S16_LE, SND_PCM_FORMAT_S16_LE }, -+ { AFMT_S16_BE, SND_PCM_FORMAT_S16_BE }, -+ { AFMT_U16_LE, SND_PCM_FORMAT_U16_LE }, -+ { AFMT_U16_BE, SND_PCM_FORMAT_U16_BE }, -+ { AFMT_S24_LE, SND_PCM_FORMAT_S24_3LE }, -+ { AFMT_S24_BE, SND_PCM_FORMAT_S24_3BE }, -+ { AFMT_U24_LE, SND_PCM_FORMAT_U24_3LE }, -+ { AFMT_U24_BE, SND_PCM_FORMAT_U24_3BE }, -+ { AFMT_S32_LE, SND_PCM_FORMAT_S32_LE }, -+ { AFMT_S32_BE, SND_PCM_FORMAT_S32_BE }, -+ { AFMT_U32_LE, SND_PCM_FORMAT_U32_LE }, -+ { AFMT_U32_BE, SND_PCM_FORMAT_U32_BE }, -+ /* Special */ -+ { AFMT_S24_LE, SND_PCM_FORMAT_S20_3LE }, -+ { AFMT_S24_BE, SND_PCM_FORMAT_S20_3BE }, -+ { AFMT_U24_LE, SND_PCM_FORMAT_U20_3LE }, -+ { AFMT_U24_BE, SND_PCM_FORMAT_U20_3BE }, -+ { AFMT_S24_LE, SND_PCM_FORMAT_S18_3LE }, -+ { AFMT_S24_BE, SND_PCM_FORMAT_S18_3BE }, -+ { AFMT_U24_LE, SND_PCM_FORMAT_U18_3LE }, -+ { AFMT_U24_BE, SND_PCM_FORMAT_U18_3BE }, -+ { AFMT_S32_LE, SND_PCM_FORMAT_S24_LE }, -+ { AFMT_S32_BE, SND_PCM_FORMAT_S24_BE }, -+ { AFMT_U32_LE, SND_PCM_FORMAT_U24_LE }, -+ { AFMT_U32_BE, SND_PCM_FORMAT_U24_BE }, -+}; -+#endif - - static int oss_hw_params(snd_pcm_ioplug_t *io, - snd_pcm_hw_params_t *params ATTRIBUTE_UNUSED) - { - snd_pcm_oss_t *oss = io->private_data; - int i, tmp, err; -+#ifdef __FreeBSD__ -+ int blksz_shift, blkcnt; -+ audio_buf_info bi; -+#else - unsigned int period_bytes; -+#endif - long oflags, flags; - -+#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) -+ fprintf(stderr, "%s()\n", __func__); -+#endif -+ - oss->frame_bytes = (snd_pcm_format_physical_width(io->format) * io->channels) / 8; -+#ifdef __FreeBSD__ -+ oss->ptr_align = io->buffer_size * oss->frame_bytes; -+ -+ oss->format = 0; -+ for (i = 0; i < ARRAY_SIZE(oss_formats_tab); i++) { -+ if (oss_formats_tab[i].alsa_format == io->format) { -+ oss->format = oss_formats_tab[i].oss_format; -+ break; -+ } -+ } -+ if (oss->format == 0) { -+#else - switch (io->format) { - case SND_PCM_FORMAT_U8: - oss->format = AFMT_U8; -@@ -166,9 +388,87 @@ - oss->format = AFMT_S16_BE; - break; - default: -+#endif - fprintf(stderr, "*** OSS: unsupported format %s\n", snd_pcm_format_name(io->format)); - return -EINVAL; - } -+#ifdef __FreeBSD__ -+ -+ ioctl(oss->fd, SNDCTL_DSP_RESET); -+ -+#define blksz_aligned() ((1 << blksz_shift) - \ -+ ((1 << blksz_shift) % oss->frame_bytes)) -+ blksz_shift = 16; -+ tmp = io->period_size * oss->frame_bytes; -+ -+ while (blksz_shift > 4 && blksz_aligned() > tmp) -+ blksz_shift--; -+ -+ blkcnt = 2; -+ tmp = io->buffer_size * oss->frame_bytes; -+ -+ while (blkcnt < 4096 && (blksz_aligned() * blkcnt) < tmp && -+ ((1 << blksz_shift) * blkcnt) < 131072) -+ blkcnt <<= 1; -+ -+ tmp = blksz_shift | (blkcnt << 16); -+ if (ioctl(oss->fd, SNDCTL_DSP_SETFRAGMENT, &tmp) < 0) { -+ perror("SNDCTL_DSP_SETFRAGMENTS"); -+ return -EINVAL; -+ } -+ -+ tmp = oss->format; -+ if (ioctl(oss->fd, SNDCTL_DSP_SETFMT, &tmp) < 0 || -+ tmp != oss->format) { -+ perror("SNDCTL_DSP_SETFMT"); -+ return -EINVAL; -+ } -+ -+ tmp = io->channels; -+ if (ioctl(oss->fd, SNDCTL_DSP_CHANNELS, &tmp) < 0 || -+ tmp != io->channels) { -+ perror("SNDCTL_DSP_CHANNELS"); -+ return -EINVAL; -+ } -+ -+ tmp = io->rate; -+ if (ioctl(oss->fd, SNDCTL_DSP_SPEED, &tmp) < 0 || -+ tmp > io->rate * 1.01 || tmp < io->rate * 0.99) { -+ perror("SNDCTL_DSP_SPEED"); -+ return -EINVAL; -+ } -+ -+ if (ioctl(oss->fd, (io->stream == SND_PCM_STREAM_PLAYBACK) ? -+ SNDCTL_DSP_GETOSPACE : SNDCTL_DSP_GETISPACE, &bi) < 0) { -+ perror("SNDCTL_DSP_GET[I/O]SPACE"); -+ return -EINVAL; -+ } -+ -+ oss->bufsz = bi.fragsize * bi.fragstotal; -+ -+#ifdef SNDCTL_DSP_LOW_WATER -+ tmp = ((io->period_size * oss->frame_bytes) * 3) / 4; -+ tmp -= tmp % oss->frame_bytes; -+ if (tmp < oss->frame_bytes) -+ tmp = oss->frame_bytes; -+ if (tmp > bi.fragsize) -+ tmp = bi.fragsize; -+ if (ioctl(oss->fd, SNDCTL_DSP_LOW_WATER, &tmp) < 0) -+ perror("SNDCTL_DSP_LOW_WATER"); -+#endif -+ -+#ifdef FREEBSD_OSS_DEBUG_VERBOSE -+ fprintf(stderr, -+ "\n\n[%lu -> %d] %lu ~ %d -> %d, %lu ~ %d -> %d [d:%ld lw:%d]\n\n", -+ io->buffer_size / io->period_size, bi.fragstotal, -+ io->buffer_size * oss->frame_bytes, -+ (1 << blksz_shift) * blkcnt, oss->bufsz, -+ io->period_size * oss->frame_bytes, 1 << blksz_shift, -+ bi.fragsize, -+ (long)(io->buffer_size * oss->frame_bytes) - -+ oss->bufsz, tmp); -+#endif -+#else - period_bytes = io->period_size * oss->frame_bytes; - oss->period_shift = 0; - for (i = 31; i >= 4; i--) { -@@ -209,6 +509,7 @@ - goto _retry; - } - oss->fragment_set = 1; -+#endif - - if ((flags = fcntl(oss->fd, F_GETFL)) < 0) { - err = -errno; -@@ -229,10 +530,128 @@ - return 0; - } - --#define ARRAY_SIZE(ary) (sizeof(ary)/sizeof(ary[0])) -- - static int oss_hw_constraint(snd_pcm_oss_t *oss) - { -+#ifdef __FreeBSD__ -+ snd_pcm_ioplug_t *io = &oss->io; -+ static const snd_pcm_access_t access_list[] = { -+ SND_PCM_ACCESS_RW_INTERLEAVED, -+ SND_PCM_ACCESS_MMAP_INTERLEAVED -+ }; -+#ifdef FREEBSD_OSS_BLKCNT_P2 -+ unsigned int period_list[30]; -+#endif -+ unsigned int nformats; -+ unsigned int format[ARRAY_SIZE(oss_formats_tab)]; -+#if 0 -+ unsigned int nchannels; -+ unsigned int channel[FREEBSD_OSS_CHANNELS_MAX]; -+#endif -+ int i, err, tmp; -+ -+#ifdef FREEBSD_OSS_DEBUG_VERBOSE -+ fprintf(stderr, "%s()\n", __func__); -+#endif -+ -+ /* check trigger */ -+ tmp = 0; -+ if (ioctl(oss->fd, SNDCTL_DSP_GETCAPS, &tmp) >= 0) { -+ if (!(tmp & DSP_CAP_TRIGGER)) -+ fprintf(stderr, "*** OSS: trigger is not supported!\n"); -+ } -+ -+ /* access type - interleaved only */ -+ if ((err = snd_pcm_ioplug_set_param_list(io, SND_PCM_IOPLUG_HW_ACCESS, -+ ARRAY_SIZE(access_list), access_list)) < 0) -+ return err; -+ -+ /* supported formats. */ -+ tmp = 0; -+ ioctl(oss->fd, SNDCTL_DSP_GETFMTS, &tmp); -+ nformats = 0; -+ for (i = 0; i < ARRAY_SIZE(oss_formats_tab); i++) { -+ if (tmp & oss_formats_tab[i].oss_format) -+ format[nformats++] = oss_formats_tab[i].alsa_format; -+ } -+ if (! nformats) -+ format[nformats++] = SND_PCM_FORMAT_S16; -+ if ((err = snd_pcm_ioplug_set_param_list(io, SND_PCM_IOPLUG_HW_FORMAT, -+ nformats, format)) < 0) -+ return err; -+ -+#if 0 -+ /* supported channels */ -+ nchannels = 0; -+ for (i = 0; i < ARRAY_SIZE(channel); i++) { -+ tmp = i + 1; -+ if (ioctl(oss->fd, SNDCTL_DSP_CHANNELS, &tmp) >= 0 && -+ 1 + i == tmp) -+ channel[nchannels++] = tmp; -+ } -+ if (! nchannels) /* assume 2ch stereo */ -+ err = snd_pcm_ioplug_set_param_minmax(io, -+ SND_PCM_IOPLUG_HW_CHANNELS, 2, 2); -+ else -+ err = snd_pcm_ioplug_set_param_list(io, -+ SND_PCM_IOPLUG_HW_CHANNELS, nchannels, channel); -+ if (err < 0) -+ return err; -+#endif -+ err = snd_pcm_ioplug_set_param_minmax(io, SND_PCM_IOPLUG_HW_CHANNELS, -+ FREEBSD_OSS_CHANNELS_MIN, FREEBSD_OSS_CHANNELS_MAX); -+ if (err < 0) -+ return err; -+ -+ /* supported rates */ -+ err = snd_pcm_ioplug_set_param_minmax(io, SND_PCM_IOPLUG_HW_RATE, -+ FREEBSD_OSS_RATE_MIN, FREEBSD_OSS_RATE_MAX); -+ if (err < 0) -+ return err; -+ -+ /* -+ * Maximum buffer size on FreeBSD can go up to 131072 bytes without -+ * strict ^2 alignment so that s24le in 3bytes packing can be fed -+ * directly. -+ */ -+ -+#ifdef FREEBSD_OSS_BLKCNT_P2 -+ tmp = 0; -+ for (i = 1; i < 31 && tmp < ARRAY_SIZE(period_list); i++) { -+ if ((1 << i) > FREEBSD_OSS_BLKCNT_MAX) -+ break; -+ if ((1 << i) < FREEBSD_OSS_BLKCNT_MIN) -+ continue; -+ period_list[tmp++] = 1 << i; -+ } -+ -+ if (tmp > 0) -+ err = snd_pcm_ioplug_set_param_list(io, -+ SND_PCM_IOPLUG_HW_PERIODS, tmp, period_list); -+ else -+#endif -+ /* periods , not strictly ^2 but later on will be refined */ -+ err = snd_pcm_ioplug_set_param_minmax(io, -+ SND_PCM_IOPLUG_HW_PERIODS, FREEBSD_OSS_BLKCNT_MIN, -+ FREEBSD_OSS_BLKCNT_MAX); -+ if (err < 0) -+ return err; -+ -+ /* period size , not strictly ^2 */ -+ err = snd_pcm_ioplug_set_param_minmax(io, -+ SND_PCM_IOPLUG_HW_PERIOD_BYTES, FREEBSD_OSS_BLKSZ_MIN, -+ FREEBSD_OSS_BLKSZ_MAX); -+ if (err < 0) -+ return err; -+ -+ /* buffer size , not strictly ^2 */ -+ err = snd_pcm_ioplug_set_param_minmax(io, -+ SND_PCM_IOPLUG_HW_BUFFER_BYTES, FREEBSD_OSS_BUFSZ_MIN, -+ FREEBSD_OSS_BUFSZ_MAX); -+ if (err < 0) -+ return err; -+ -+ return 0; -+#else - snd_pcm_ioplug_t *io = &oss->io; - static const snd_pcm_access_t access_list[] = { - SND_PCM_ACCESS_RW_INTERLEAVED, -@@ -317,6 +736,7 @@ - return err; - - return 0; -+#endif - } - - -@@ -324,6 +744,10 @@ - { - snd_pcm_oss_t *oss = io->private_data; - -+#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) -+ fprintf(stderr, "%s()\n", __func__); -+#endif -+ - close(oss->fd); - free(oss->device); - free(oss); -@@ -337,7 +761,9 @@ - .pointer = oss_pointer, - .close = oss_close, - .hw_params = oss_hw_params, -+#ifndef __FreeBSD__ - .prepare = oss_prepare, -+#endif - .drain = oss_drain, - }; - -@@ -348,7 +774,9 @@ - .pointer = oss_pointer, - .close = oss_close, - .hw_params = oss_hw_params, -+#ifndef __FreeBSD__ - .prepare = oss_prepare, -+#endif - .drain = oss_drain, - }; - -@@ -360,6 +788,10 @@ - int err; - snd_pcm_oss_t *oss; - -+#if defined(__FreeBSD__) && defined(FREEBSD_OSS_DEBUG_VERBOSE) -+ fprintf(stderr, "%s()\n", __func__); -+#endif -+ - snd_config_for_each(i, next, conf) { - snd_config_t *n = snd_config_iterator_entry(i); - const char *id; --------------050602060704030409020708-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 18:50:04 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 170BC1065672 for ; Sat, 3 Mar 2012 18:50:04 +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 DBDE48FC12 for ; Sat, 3 Mar 2012 18:50:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23Io36n006223 for ; Sat, 3 Mar 2012 18:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23Io3kR006222; Sat, 3 Mar 2012 18:50:03 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 18:50:03 GMT Resent-Message-Id: <201203031850.q23Io3kR006222@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 57BC3106566B for ; Sat, 3 Mar 2012 18:44:59 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 131538FC08 for ; Sat, 3 Mar 2012 18:44:58 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q23Iis4b005598 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 3 Mar 2012 13:44:55 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q23IioUf039180; Sat, 3 Mar 2012 13:44:50 -0500 (EST) (envelope-from steve) Message-Id: <201203031844.q23IioUf039180@meatwad.mouf.net> Date: Sat, 3 Mar 2012 13:44:50 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: loader@freebsdmall.com Subject: ports/165664: [PATCH] textproc/p5-HTML-FormatText-WithLinks: Add missing DEPENDS 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: Sat, 03 Mar 2012 18:50:04 -0000 >Number: 165664 >Category: ports >Synopsis: [PATCH] textproc/p5-HTML-FormatText-WithLinks: Add missing DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 18:50:03 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: see patch. passes tests now Port maintainer (loader@freebsdmall.com) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-HTML-FormatText-WithLinks-0.11_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/p5-HTML-FormatText-WithLinks/Makefile,v retrieving revision 1.3 diff -u -u -r1.3 Makefile --- Makefile 16 Dec 2009 19:04:03 -0000 1.3 +++ Makefile 3 Mar 2012 18:44:12 -0000 @@ -7,6 +7,7 @@ PORTNAME= HTML-FormatText-WithLinks PORTVERSION= 0.11 +PORTREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,8 +15,9 @@ MAINTAINER= loader@freebsdmall.com COMMENT= Perl5 module to convert HTML to text with links as footnotes -BUILD_DEPENDS= ${SITE_PERL}/HTML/FormatText.pm:${PORTSDIR}/textproc/p5-HTML-Format -RUN_DEPENDS= ${SITE_PERL}/HTML/FormatText.pm:${PORTSDIR}/textproc/p5-HTML-Format +BUILD_DEPENDS= p5-HTML-Format>=0:${PORTSDIR}/textproc/p5-HTML-Format \ + p5-URI>=0:${PORTSDIR}/net/p5-URI +RUN_DEPENDS:= ${BUILD_DEPENDS} PERL_CONFIGURE= yes MAN3= HTML::FormatText::WithLinks.3 --- p5-HTML-FormatText-WithLinks-0.11_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 18:50:15 2012 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 35E311065678; Sat, 3 Mar 2012 18:50:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 0922F8FC18; Sat, 3 Mar 2012 18:50:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23IoEQP006482; Sat, 3 Mar 2012 18:50:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23IoEOv006473; Sat, 3 Mar 2012 18:50:14 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 18:50:14 GMT Message-Id: <201203031850.q23IoEOv006473@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165664: [PATCH] textproc/p5-HTML-FormatText-WithLinks: Add missing DEPENDS 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: Sat, 03 Mar 2012 18:50:15 -0000 Synopsis: [PATCH] textproc/p5-HTML-FormatText-WithLinks: Add missing DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 3 18:50:14 UTC 2012 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165664 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 19:00:34 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A5606106566B for ; Sat, 3 Mar 2012 19:00:34 +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 7F7338FC0C for ; Sat, 3 Mar 2012 19:00:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23J0Y2B014848 for ; Sat, 3 Mar 2012 19:00:34 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23J0YPW014847; Sat, 3 Mar 2012 19:00:34 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 19:00:34 GMT Resent-Message-Id: <201203031900.q23J0YPW014847@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7C38106564A; Sat, 3 Mar 2012 18:56:23 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 8A8648FC12; Sat, 3 Mar 2012 18:56:23 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q23IuJLh005707 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 3 Mar 2012 13:56:19 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q23IuJlI096009; Sat, 3 Mar 2012 13:56:19 -0500 (EST) (envelope-from steve) Message-Id: <201203031856.q23IuJlI096009@meatwad.mouf.net> Date: Sat, 3 Mar 2012 13:56:19 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: skv@FreeBSD.org Subject: ports/165665: [PATCH] mail/p5-Mail-DomainKeys: correct DEPENDS 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: Sat, 03 Mar 2012 19:00:34 -0000 >Number: 165665 >Category: ports >Synopsis: [PATCH] mail/p5-Mail-DomainKeys: correct DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 19:00:33 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: see patch passes tests now Port maintainer (skv@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-Mail-DomainKeys-1.0_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/mail/p5-Mail-DomainKeys/Makefile,v retrieving revision 1.14 diff -u -u -r1.14 Makefile --- Makefile 22 Jul 2009 16:26:48 -0000 1.14 +++ Makefile 3 Mar 2012 18:55:59 -0000 @@ -7,6 +7,7 @@ PORTNAME= Mail-DomainKeys PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -14,10 +15,10 @@ MAINTAINER= skv@FreeBSD.org COMMENT= Perl implementation of DomainKeys -RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Net/DNS.pm:${PORTSDIR}/dns/p5-Net-DNS \ - ${SITE_PERL}/${PERL_ARCH}/Crypt/OpenSSL/RSA.pm:${PORTSDIR}/security/p5-Crypt-OpenSSL-RSA \ - ${SITE_PERL}/Email/Address.pm:${PORTSDIR}/mail/p5-Email-Address -BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Net-DNS>=0:${PORTSDIR}/dns/p5-Net-DNS \ + p5-Crypt-OpenSSL-RSA>=0:${PORTSDIR}/security/p5-Crypt-OpenSSL-RSA \ + p5-Mail-Tools>=0:${PORTSDIR}/mail/p5-Mail-Tools +BUILD_DEPENDS:= ${RUN_DEPENDS} PERL_CONFIGURE= yes --- p5-Mail-DomainKeys-1.0_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 19:00:50 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 794AA106567B; Sat, 3 Mar 2012 19:00:50 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4E80D8FC1A; Sat, 3 Mar 2012 19:00:50 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23J0o7Q015791; Sat, 3 Mar 2012 19:00:50 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23J0ovc015785; Sat, 3 Mar 2012 19:00:50 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 19:00:50 GMT Message-Id: <201203031900.q23J0ovc015785@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skv@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165665: [PATCH] mail/p5-Mail-DomainKeys: correct DEPENDS 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: Sat, 03 Mar 2012 19:00:50 -0000 Synopsis: [PATCH] mail/p5-Mail-DomainKeys: correct DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 3 19:00:49 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165665 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 19:10:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 61A401065679 for ; Sat, 3 Mar 2012 19:10:14 +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 D54AD8FC1A for ; Sat, 3 Mar 2012 19:10:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23JADGk023674 for ; Sat, 3 Mar 2012 19:10:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23JADGk023673; Sat, 3 Mar 2012 19:10:13 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 19:10:13 GMT Message-Id: <201203031910.q23JADGk023673@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Ed Schouten Cc: Subject: Re: ports/164306: update mail/mailagent to 3.1.77 and utmpx fix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ed Schouten List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 19:10:14 -0000 The following reply was made to PR ports/164306; it has been noted by GNATS. From: Ed Schouten To: bug-followup@FreeBSD.org, kasahara@nc.kyushu-u.ac.jp Cc: Subject: Re: ports/164306: update mail/mailagent to 3.1.77 and utmpx fix Date: Sat, 3 Mar 2012 20:02:36 +0100 Hi all, I just sent a patch to the author of User::Utmp to make it somewhat usable on FreeBSD. I hope it helps. https://rt.cpan.org/Public/Bug/Display.html?id=75509 Best regards, -- Ed Schouten WWW: http://80386.nl/ From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 19:10:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7DC89106567A for ; Sat, 3 Mar 2012 19:10:14 +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 56CC48FC16 for ; Sat, 3 Mar 2012 19:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23JAEuH023686 for ; Sat, 3 Mar 2012 19:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23JAEHw023685; Sat, 3 Mar 2012 19:10:14 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 19:10:14 GMT Resent-Message-Id: <201203031910.q23JAEHw023685@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, Martin Kropfinger Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9296B106564A for ; Sat, 3 Mar 2012 19:06:34 +0000 (UTC) (envelope-from mail@kropfinger.net) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.187]) by mx1.freebsd.org (Postfix) with ESMTP id 0B71A8FC14 for ; Sat, 3 Mar 2012 19:06:33 +0000 (UTC) Received: from phenom.rakors-welt (HSI-KBW-109-192-087-062.hsi6.kabel-badenwuerttemberg.de [109.192.87.62]) by mrelayeu.kundenserver.de (node=mrbap4) with ESMTP (Nemesis) id 0MD8km-1SBa7B1Fng-00GdkE; Sat, 03 Mar 2012 19:53:29 +0100 Received: by phenom.rakors-welt (Postfix, from userid 1001) id 1C8385C3A; Sat, 3 Mar 2012 19:53:29 +0100 (CET) Message-Id: <20120303185329.1C8385C3A@phenom.rakors-welt> Date: Sat, 3 Mar 2012 19:53:29 +0100 (CET) From: Martin Kropfinger To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165666: MAINTAINER UPDATE games/minecraft-server X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Martin Kropfinger List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 19:10:14 -0000 >Number: 165666 >Category: ports >Synopsis: MAINTAINER UPDATE games/minecraft-server >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: Sat Mar 03 19:10:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Martin Kropfinger >Release: FreeBSD 9.0-RELEASE amd64 >Organization: >Environment: System: FreeBSD phenom.rakors-welt 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: Update to 1.2.3 --- patch.txt begins here --- diff -bBruN /tmp/minecraft-server/Makefile /usr/ports/games/minecraft-server/Makefile --- /tmp/minecraft-server/Makefile 2012-01-13 00:27:33.000000000 +0100 +++ /usr/ports/games/minecraft-server/Makefile 2012-03-03 19:32:46.000000000 +0100 @@ -6,9 +6,9 @@ # PORTNAME= minecraft-server -PORTVERSION= 1.1.0 +PORTVERSION= 1.2.3 CATEGORIES= games java -MASTER_SITES= http://s3.amazonaws.com/MinecraftDownload/launcher/ \ +MASTER_SITES= http://s3.amazonaws.com/MinecraftDownload/launcher/:minecraft \ http://denkrobat.de/minecraft/:minecraft \ http://www.minecraftwiki.net/images/f/f7/:icon DISTNAME= minecraft_server diff -bBruN /tmp/minecraft-server/distinfo /usr/ports/games/minecraft-server/distinfo --- /tmp/minecraft-server/distinfo 2012-01-13 00:27:33.000000000 +0100 +++ /usr/ports/games/minecraft-server/distinfo 2012-03-03 19:21:20.000000000 +0100 @@ -1,4 +1,4 @@ -SHA256 (minecraft_server.jar) = 96de0fcc7f9e90d32488ae6710caaa9a3fe94584eca6e7c6b13a2df0707419e1 -SIZE (minecraft_server.jar) = 1254515 +SHA256 (minecraft_server.jar) = 7251feae7527569de15eb10e79839d2d254fe5095d0fe46d29034fc90a3514d1 +SIZE (minecraft_server.jar) = 1345637 SHA256 (Bookshelf.png) = fe5e7f0bbbbe284379cb5e7aed8d539b727a3039f7fe8c64a179e4fc2a0e1821 SIZE (Bookshelf.png) = 9674 --- patch.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 19:10:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1393106567F for ; Sat, 3 Mar 2012 19:10:14 +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 934198FC20 for ; Sat, 3 Mar 2012 19:10:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23JAEmE023695 for ; Sat, 3 Mar 2012 19:10:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23JAEpn023694; Sat, 3 Mar 2012 19:10:14 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 19:10:14 GMT Resent-Message-Id: <201203031910.q23JAEpn023694@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, Steve Wills Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF479106566B; Sat, 3 Mar 2012 19:08:53 +0000 (UTC) (envelope-from steve@mouf.net) Received: from mouf.net (unknown [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b2]) by mx1.freebsd.org (Postfix) with ESMTP id 725E48FC0A; Sat, 3 Mar 2012 19:08:53 +0000 (UTC) Received: from meatwad.mouf.net (cpe-024-162-230-236.nc.res.rr.com [24.162.230.236]) by mouf.net (8.14.4/8.14.4) with ESMTP id q23J8nRJ005799 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sat, 3 Mar 2012 14:08:49 -0500 (EST) (envelope-from steve@meatwad.mouf.net) Received: (from steve@localhost) by meatwad.mouf.net (8.14.5/8.14.5/Submit) id q23J8nQA033243; Sat, 3 Mar 2012 14:08:49 -0500 (EST) (envelope-from steve) Message-Id: <201203031908.q23J8nQA033243@meatwad.mouf.net> Date: Sat, 3 Mar 2012 14:08:49 -0500 (EST) From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: dhn@FreeBSD.org Subject: ports/165667: [PATCH] mail/p5-Mail-Ezmlm: correct DEPENDS 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: Sat, 03 Mar 2012 19:10:14 -0000 >Number: 165667 >Category: ports >Synopsis: [PATCH] mail/p5-Mail-Ezmlm: correct DEPENDS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 19:10:14 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 10.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 10.0-CURRENT FreeBSD 10.0-CURRENT #13 r230974: Fri Feb 3 23:48:36 >Description: see patch note this still fails tests Port maintainer (dhn@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_3 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- p5-Mail-Ezmlm-0.08.2_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/mail/p5-Mail-Ezmlm/Makefile,v retrieving revision 1.14 diff -u -u -r1.14 Makefile --- Makefile 6 Mar 2009 18:14:31 -0000 1.14 +++ Makefile 3 Mar 2012 19:08:20 -0000 @@ -7,6 +7,7 @@ PORTNAME= Mail-Ezmlm PORTVERSION= 0.08.2 +PORTREVISION= 1 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -15,7 +16,9 @@ MAINTAINER= dhn@FreeBSD.org COMMENT= Perl module to allow object methods for ezmlm-idx mailing lists -BUILD_DEPENDS= ${EZMLM_DIR}/bin/ezmlm-idx:${PORTSDIR}/mail/ezmlm-idx +BUILD_DEPENDS= ${EZMLM_DIR}/bin/ezmlm-idx:${PORTSDIR}/mail/ezmlm-idx \ + p5-Crypt-GPG>=0:${PORTSDIR}/security/p5-Crypt-GPG +RUN_DEPENDS:= ${BUILD_DEPENDS} EZMLM_DIR?= ${LOCALBASE} --- p5-Mail-Ezmlm-0.08.2_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 19:10:38 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F2BD3106566B; Sat, 3 Mar 2012 19:10:38 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C71158FC17; Sat, 3 Mar 2012 19:10:38 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23JAcUK025912; Sat, 3 Mar 2012 19:10:38 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23JAcVU025901; Sat, 3 Mar 2012 19:10:38 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 19:10:38 GMT Message-Id: <201203031910.q23JAcVU025901@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, dhn@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165667: [PATCH] mail/p5-Mail-Ezmlm: correct DEPENDS 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: Sat, 03 Mar 2012 19:10:39 -0000 Synopsis: [PATCH] mail/p5-Mail-Ezmlm: correct DEPENDS Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 3 19:10:38 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165667 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 19:23:36 2012 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 6C0FF106566B; Sat, 3 Mar 2012 19:23:36 +0000 (UTC) (envelope-from pawel@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 409898FC0C; Sat, 3 Mar 2012 19:23:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23JNaxP041836; Sat, 3 Mar 2012 19:23:36 GMT (envelope-from pawel@freefall.freebsd.org) Received: (from pawel@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23JNaLu041832; Sat, 3 Mar 2012 19:23:36 GMT (envelope-from pawel) Date: Sat, 3 Mar 2012 19:23:36 GMT Message-Id: <201203031923.q23JNaLu041832@freefall.freebsd.org> To: pawel@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: pawel@FreeBSD.org Cc: Subject: Re: ports/165661: [MAINTAINER] sysutils/htop: update to 1.0.1 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: Sat, 03 Mar 2012 19:23:36 -0000 Synopsis: [MAINTAINER] sysutils/htop: update to 1.0.1 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: pawel Responsible-Changed-When: Sat Mar 3 19:23:35 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165661 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 19:58:17 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 23E931065673; Sat, 3 Mar 2012 19:58:17 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id ED7608FC14; Sat, 3 Mar 2012 19:58:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23JwGpa069970; Sat, 3 Mar 2012 19:58:16 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23JwG0f069966; Sat, 3 Mar 2012 19:58:16 GMT (envelope-from jgh) Date: Sat, 3 Mar 2012 19:58:16 GMT Message-Id: <201203031958.q23JwG0f069966@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165666: MAINTAINER UPDATE games/minecraft-server 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: Sat, 03 Mar 2012 19:58:17 -0000 Synopsis: MAINTAINER UPDATE games/minecraft-server Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Mar 3 19:58:16 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165666 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 20:13:48 2012 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 1F505106566B; Sat, 3 Mar 2012 20:13:48 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E70AA8FC13; Sat, 3 Mar 2012 20:13:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23KDlIa088084; Sat, 3 Mar 2012 20:13:47 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23KDlZ3088080; Sat, 3 Mar 2012 20:13:47 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 20:13:47 GMT Message-Id: <201203032013.q23KDlZ3088080@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165660: mail/opendkim OpenDKIM 2.5.0 port does not build 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: Sat, 03 Mar 2012 20:13:48 -0000 Synopsis: mail/opendkim OpenDKIM 2.5.0 port does not build Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Sat Mar 3 20:13:47 UTC 2012 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165660 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 20:13:51 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 92AC81065676; Sat, 3 Mar 2012 20:13:51 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 665088FC15; Sat, 3 Mar 2012 20:13:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23KDpHQ088159; Sat, 3 Mar 2012 20:13:51 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23KDp2f088155; Sat, 3 Mar 2012 20:13:51 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 20:13:51 GMT Message-Id: <201203032013.q23KDp2f088155@freefall.freebsd.org> To: yom@iaelu.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165660: mail/opendkim OpenDKIM 2.5.0 port does not build 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: Sat, 03 Mar 2012 20:13:51 -0000 Synopsis: mail/opendkim OpenDKIM 2.5.0 port does not build State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Mar 3 20:13:51 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165660 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 20:20:13 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 409F31065670 for ; Sat, 3 Mar 2012 20:20:13 +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 2D0F88FC1E for ; Sat, 3 Mar 2012 20:20:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23KKD2Z089330 for ; Sat, 3 Mar 2012 20:20:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23KKDSO089327; Sat, 3 Mar 2012 20:20:13 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 20:20:13 GMT Message-Id: <201203032020.q23KKDSO089327@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/165660: mail/opendkim OpenDKIM 2.5.0 port does not build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 20:20:13 -0000 The following reply was made to PR ports/165660; it has been noted by GNATS. From: Edwin Groothuis To: umq@ueo.co.jp Cc: bug-followup@FreeBSD.org Subject: Re: ports/165660: mail/opendkim OpenDKIM 2.5.0 port does not build Date: Sat, 3 Mar 2012 20:13:49 UT Maintainer of mail/opendkim, Please note that PR ports/165660 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165660 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 20:30:14 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 275481065675 for ; Sat, 3 Mar 2012 20:30:14 +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 F06E68FC15 for ; Sat, 3 Mar 2012 20:30:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23KUDYi097476 for ; Sat, 3 Mar 2012 20:30:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23KUDge097474; Sat, 3 Mar 2012 20:30:13 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 20:30:13 GMT Resent-Message-Id: <201203032030.q23KUDge097474@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, Muhammad Moinur Rahman <5u623l20@gmail.com> Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95F451065680 for ; Sat, 3 Mar 2012 20:26:27 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 80C878FC12 for ; Sat, 3 Mar 2012 20:26:27 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id q23KQRZa039847 for ; Sat, 3 Mar 2012 20:26:27 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id q23KQRPn039846; Sat, 3 Mar 2012 20:26:27 GMT (envelope-from nobody) Message-Id: <201203032026.q23KQRPn039846@red.freebsd.org> Date: Sat, 3 Mar 2012 20:26:27 GMT From: Muhammad Moinur Rahman <5u623l20@gmail.com> To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/165669: [UPDATE] www/resin3 to 3.1.11 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: Sat, 03 Mar 2012 20:30:14 -0000 >Number: 165669 >Category: ports >Synopsis: [UPDATE] www/resin3 to 3.1.11 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 20:30:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Muhammad Moinur Rahman >Release: 9.0-RELEASE >Organization: >Environment: FreeBSD tinderbox.dzcrd.net 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Tue Jan 3 07:46:30 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN resin3.bak/Makefile resin3/Makefile --- resin3.bak/Makefile 2012-03-04 01:01:01.253158272 +0600 +++ resin3/Makefile 2012-03-04 02:24:15.733177380 +0600 @@ -6,11 +6,11 @@ # PORTNAME= resin -PORTVERSION= 3.1.9 +PORTVERSION= 3.1.11 CATEGORIES= www java MASTER_SITES= http://www.caucho.com/download/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= 5u623l20@gmail.com COMMENT= Resin, a Java-based Application Server, 3.x branch USE_JAVA= yes diff -ruN resin3.bak/distinfo resin3/distinfo --- resin3.bak/distinfo 2012-03-04 01:01:01.253158272 +0600 +++ resin3/distinfo 2012-03-04 01:01:59.693150016 +0600 @@ -1,2 +1,2 @@ -SHA256 (resin-3.1.9.tar.gz) = 50b01d1cf6ea4cdc1c92f74430f9b800984df1870b3ffed7ee75fd3bdceaa671 -SIZE (resin-3.1.9.tar.gz) = 10320627 +SHA256 (resin-3.1.11.tar.gz) = 58a683da7c431641896040d523407a422d5c549b0ad379060990f868fa5e271f +SIZE (resin-3.1.11.tar.gz) = 10207796 diff -ruN resin3.bak/files/patch-configure resin3/files/patch-configure --- resin3.bak/files/patch-configure 2012-03-04 01:01:01.253158272 +0600 +++ resin3/files/patch-configure 1970-01-01 06:00:00.000000000 +0600 @@ -1,96 +0,0 @@ ---- configure.orig Wed Dec 5 12:06:55 2007 -+++ configure Mon Jan 14 11:22:05 2008 -@@ -19096,55 +19096,9 @@ - - - --# This can be used to rebuild libtool when needed --LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" -- --# Always use our own libtool. --LIBTOOL='$(SHELL) $(top_builddir)/libtool' -- --# Prevent multiple expansion -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --# --# libtool stuff --# --if test -z "${LTFLAGS}"; then -- LTFLAGS="--silent" --fi -- --LIBTOOL_SCRIPT="`pwd`/libtool" --LIBTOOL="${LIBTOOL_SCRIPT} ${LTFLAGS}" --libtoolversion=`${SHELL} ${LIBTOOL_SCRIPT} --version` --case $libtoolversion in -- *1.4*) -- SH_LIBTOOL="${LIBTOOL_SCRIPT}" -- SHLTCFLAGS="-prefer-pic" -- LTCFLAGS="-prefer-non-pic -static" -- ;; -- *) -- SH_LIBTOOL="${SHELL} ${LIBTOOL_SCRIPT} ${LTFLAGS}" -- SHLTCFLAGS="" -- LTCFLAGS="" -- ;; --esac -+SH_LIBTOOL="${SHELL} ${LIBTOOL}" -+SHLTCFLAGS="" -+LTCFLAGS="" - - - -@@ -19903,33 +19857,8 @@ - PROXY_LIBS='-lnsl -lsocket -lthread' - ;; - -- *freebsd*5*) -- PROXY_LIBS='-lpthread' -- jni_os=freebsd -- -- tmp=`ldd $JAVA_HOME/bin/java | sed 's/.*=>//' | grep -c libc_r` -- tmp=$tmp `ldd $JAVA_HOME/bin/java | sed 's/.*=>//' | grep -c libpthread` -- tmp=$tmp `ldd $JAVA_HOME/bin/java | sed 's/.*=>//' | grep -c libthr` -- -- case "$tmp" in -- 100) -- PROXY_LIBS='-lc_r'; -- ;; -- 010) -- PROXY_LIBS='-lpthread'; -- ;; -- 001) -- PROXY_LIBS='-lthr'; -- ;; -- *) -- PROXY_LIBS='-lpthread' -- echo "Using -lpthread as default" -- ;; -- esac -- ;; -- - *freebsd*) -- PROXY_LIBS='-lc_r' -+ PROXY_LIBS="${PTHREAD_LIBS}" - jni_os=freebsd - ;; - >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 20:30:14 2012 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 88B771065679 for ; Sat, 3 Mar 2012 20:30:14 +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 5DF868FC08 for ; Sat, 3 Mar 2012 20:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23KUEHV097505 for ; Sat, 3 Mar 2012 20:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23KUEXC097499; Sat, 3 Mar 2012 20:30:14 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 20:30:14 GMT Resent-Message-Id: <201203032030.q23KUEXC097499@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, Michael Scheidell Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C2EB71065673 for ; Sat, 3 Mar 2012 20:29:41 +0000 (UTC) (envelope-from scheidell@secnap.net) Received: from mx1.secnap.com.ionspam.net (mx1.secnap.com.ionspam.net [204.89.241.253]) by mx1.freebsd.org (Postfix) with ESMTP id 8E6118FC12 for ; Sat, 3 Mar 2012 20:29:41 +0000 (UTC) Received: from mx1.secnap.com.ionspam.net (mx1.secnap.com.ionspam.net [10.70.1.253]) by mx1.secnap.com.ionspam.net (Postfix) with ESMTP id 17F3D621C29 for ; Sat, 3 Mar 2012 15:29:41 -0500 (EST) Received: from scanner.secnap.net (unknown [10.70.1.4]) by mx1.secnap.com.ionspam.net (Postfix) with ESMTP id 31DD6621C17 for ; Sat, 3 Mar 2012 15:29:40 -0500 (EST) Received: by scanner.secnap.net (Postfix, from userid 1001) id 2BFBD1D40D; Sat, 3 Mar 2012 15:29:40 -0500 (EST) Message-Id: <20120303202940.2BFBD1D40D@scanner.secnap.net> Date: Sat, 3 Mar 2012 15:29:40 -0500 (EST) From: Michael Scheidell To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165670: [PATCH] sysutils/smartmontools: Respect NOPORTDOCS var 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: Sat, 03 Mar 2012 20:30:14 -0000 >Number: 165670 >Category: ports >Synopsis: [PATCH] sysutils/smartmontools: Respect NOPORTDOCS var >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 20:30:13 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Michael Scheidell >Release: FreeBSD 7.4-RELEASE-p3 i386 >Organization: SECNAP Network Security >Environment: >Description: NOPORTDOCS env var is not being honored. >How-To-Repeat: make -DNOPORTDOCS install you will see that there are leftovers: === Checking filesystem state list of extra files and directories in / (not present before this port was installed but present after it was deinstalled) 7451334 8 drwxr-xr-x 3 root wheel 512 Feb 28 02:08 usr/local/share/doc/smartmontools 7451335 8 -r--r--r-- 1 root wheel 1568 Feb 28 02:08 usr/local/share/doc/smartmontools/AUTHORS 7451336 360 -r--r--r-- 1 root wheel 183421 Feb 28 02:08 usr/local/share/doc/smartmontools/CHANGELOG 7451337 40 -r--r--r-- 1 root wheel 17992 Feb 28 02:08 usr/local/share/doc/smartmontools/COPYING 7451338 64 -r--r--r-- 1 root wheel 31710 Feb 28 02:08 usr/local/share/doc/smartmontools/INSTALL 7451339 40 -r--r--r-- 1 root wheel 19110 Feb 28 02:08 usr/local/share/doc/smartmontools/NEWS 7451340 8 -r--r--r-- 1 root wheel 3823 Feb 28 02:08 usr/local/share/doc/smartmontools/README 7451341 8 -r--r--r-- 1 root wheel 169 Feb 28 02:08 usr/local/share/doc/smartmontools/TODO 7451342 16 -r--r--r-- 1 root wheel 5265 Feb 28 02:08 usr/local/share/doc/smartmontools/WARNINGS 7451343 16 -r--r--r-- 1 root wheel 6706 Feb 28 02:08 usr/local/share/doc/smartmontools/smartd.conf 7451346 8 drwxr-xr-x 2 root wheel 512 Feb 28 02:08 usr/local/share/doc/smartmontools/examplescripts 7451347 8 -r--r--r-- 1 root wheel 2009 Feb 28 02:08 usr/local/share/doc/smartmontools/examplescripts/README 7451348 8 -r-xr-xr-x 1 root wheel 1547 Feb 28 02:08 usr/local/share/doc/smartmontools/examplescripts/Example1 7451349 8 -r-xr-xr-x 1 root wheel 722 Feb 28 02:08 usr/local/share/doc/smartmontools/examplescripts/Example2 7451350 8 -r-xr-xr-x 1 root wheel 693 Feb 28 02:08 usr/local/share/doc/smartmontools/examplescripts/Example3 7451351 8 -r-xr-xr-x 1 root wheel 126 Feb 28 02:08 usr/local/share/doc/smartmontools/examplescripts/Example4 >Fix: as per don't populate DOCSDIR if NOPORTDOCS is defined. --- sysutils_smartmontools.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/sysutils/smartmontools/Makefile,v retrieving revision 1.57 diff -u -r1.57 Makefile --- Makefile 15 Feb 2012 08:46:57 -0000 1.57 +++ Makefile 28 Feb 2012 03:58:37 -0000 @@ -22,7 +22,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-dependency-tracking \ --enable-drivedb --enable-sample \ - --with-docdir=${DOCSDIR} --with-initscriptdir=${PREFIX}/etc/rc.d + --with-initscriptdir=${PREFIX}/etc/rc.d SUB_FILES= pkg-message smart USE_RC_SUBR= smartd @@ -32,6 +32,12 @@ PORTDOCS= * +.if defined(NOPORTDOCS) +CONFIGURE_ARGS+= --without-docdir --without-exampledir +.else +CONFIGURE_ARGS+= --with-docdir=${DOCSDIR} +.endif + CFLAGS:= ${CFLAGS:S/-O2/-O/} -Wno-write-strings post-patch: --- sysutils_smartmontools.patch ends here --- ______________________________________________________________________ This email has been scanned and certified safe by SpammerTrap(r). For Information please see http://www.spammertrap.com/ ______________________________________________________________________ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 20:30:31 2012 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 CFA74106566B; Sat, 3 Mar 2012 20:30:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A2E4E8FC20; Sat, 3 Mar 2012 20:30:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23KUVgB098789; Sat, 3 Mar 2012 20:30:31 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23KUVUE098781; Sat, 3 Mar 2012 20:30:31 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 20:30:31 GMT Message-Id: <201203032030.q23KUVUE098781@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, scheidell@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165670: [PATCH] sysutils/smartmontools: Respect NOPORTDOCS var 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: Sat, 03 Mar 2012 20:30:31 -0000 Synopsis: [PATCH] sysutils/smartmontools: Respect NOPORTDOCS var Responsible-Changed-From-To: freebsd-ports-bugs->scheidell Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 3 20:30:30 UTC 2012 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165670 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 20:41:14 2012 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 6499D106564A; Sat, 3 Mar 2012 20:41:14 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 38F4B8FC0A; Sat, 3 Mar 2012 20:41:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23KfEts015654; Sat, 3 Mar 2012 20:41:14 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23KfEDH015650; Sat, 3 Mar 2012 20:41:14 GMT (envelope-from jgh) Date: Sat, 3 Mar 2012 20:41:14 GMT Message-Id: <201203032041.q23KfEDH015650@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Cc: Subject: Re: ports/165669: [UPDATE] www/resin3 to 3.1.11 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: Sat, 03 Mar 2012 20:41:14 -0000 Synopsis: [UPDATE] www/resin3 to 3.1.11 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Mar 3 20:41:13 UTC 2012 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=165669 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 22:20:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE5651065672 for ; Sat, 3 Mar 2012 22:20:11 +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 3B92D8FC1B for ; Sat, 3 Mar 2012 22:20:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23MKBWS099982 for ; Sat, 3 Mar 2012 22:20:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23MKBob099981; Sat, 3 Mar 2012 22:20:11 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 22:20:11 GMT Resent-Message-Id: <201203032220.q23MKBob099981@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, Jason Helfman Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E6182106564A for ; Sat, 3 Mar 2012 22:15:26 +0000 (UTC) (envelope-from jgh@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B75D28FC0C for ; Sat, 3 Mar 2012 22:15:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23MFQbs099304 for ; Sat, 3 Mar 2012 22:15:26 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23MFQGa099303; Sat, 3 Mar 2012 22:15:26 GMT (envelope-from jgh) Message-Id: <201203032215.q23MFQGa099303@freefall.freebsd.org> Date: Sat, 3 Mar 2012 22:15:26 GMT From: Jason Helfman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165671: www/tomcat-native: update to 1.1.23 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jason Helfman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 22:20:11 -0000 >Number: 165671 >Category: ports >Synopsis: www/tomcat-native: update to 1.1.23 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 22:20:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Jason Helfman >Release: FreeBSD 8.2-STABLE i386 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 8.2-STABLE FreeBSD 8.2-STABLE #5 r227907: Wed Nov 23 21:55:50 UTC 2011 simon@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL i386 >Description: Update to 1.1.23 Tinderbox Logs: http://lorie.secnap.net/tb/index.php?action=describe_port&id=1372 After update: [jhelfman@dormouse.experts-exchange ~/workspace/ports/www/tomcat-native]$ less /usr/local/tomcat5.5/logs/stderr.log Mar 2, 2012 7:35:15 PM org.apache.catalina.core.AprLifecycleListener init INFO: Loaded APR based Apache Tomcat Native library 1.1.23. Mar 2, 2012 7:35:15 PM org.apache.catalina.core.AprLifecycleListener init >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/tomcat-native/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- Makefile 9 Jan 2012 15:41:08 -0000 1.13 +++ Makefile 3 Mar 2012 03:37:08 -0000 @@ -6,9 +6,9 @@ # PORTNAME= tomcat-native -PORTVERSION= 1.1.22 +PORTVERSION= 1.1.23 CATEGORIES= www java -MASTER_SITES= ${MASTER_SITE_APACHE} +MASTER_SITES= APACHE MASTER_SITE_SUBDIR= tomcat/tomcat-connectors/native/${PORTVERSION}/source DISTNAME= ${PORTNAME}-${PORTVERSION}-src Index: distinfo =================================================================== RCS file: /home/pcvs/ports/www/tomcat-native/distinfo,v retrieving revision 1.8 diff -u -r1.8 distinfo --- distinfo 10 Aug 2011 21:23:40 -0000 1.8 +++ distinfo 3 Mar 2012 03:37:08 -0000 @@ -1,2 +1,2 @@ -SHA256 (tomcat-native-1.1.22-src.tar.gz) = 5e7beae371c2e5046f627a3ab3330a75f9457217ebc2587bf7fd3cbf2cd320a5 -SIZE (tomcat-native-1.1.22-src.tar.gz) = 249259 +SHA256 (tomcat-native-1.1.23-src.tar.gz) = 944352cbe70d6a9fafaa462ef32792dc15d11bfa2682f48abe6300af60661e92 +SIZE (tomcat-native-1.1.23-src.tar.gz) = 258558 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 22:20:23 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 243F21065670; Sat, 3 Mar 2012 22:20:23 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EC3E08FC15; Sat, 3 Mar 2012 22:20:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23MKMTU000410; Sat, 3 Mar 2012 22:20:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23MKMMV000399; Sat, 3 Mar 2012 22:20:22 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 22:20:22 GMT Message-Id: <201203032220.q23MKMMV000399@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165671: www/tomcat-native: update to 1.1.23 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: Sat, 03 Mar 2012 22:20:23 -0000 Synopsis: www/tomcat-native: update to 1.1.23 Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 3 22:20:22 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165671 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 22:30:11 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 95A3E1065670 for ; Sat, 3 Mar 2012 22:30:11 +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 687BE8FC14 for ; Sat, 3 Mar 2012 22:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23MUBe6008416 for ; Sat, 3 Mar 2012 22:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23MUBvo008415; Sat, 3 Mar 2012 22:30:11 GMT (envelope-from gnats) Resent-Date: Sat, 3 Mar 2012 22:30:11 GMT Resent-Message-Id: <201203032230.q23MUBvo008415@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, Larry Rosenman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AABAF1065670 for ; Sat, 3 Mar 2012 22:23:13 +0000 (UTC) (envelope-from ler@lerctr.org) Received: from thebighonker.lerctr.org (lrosenman-1-pt.tunnel.tserv8.dal1.ipv6.he.net [IPv6:2001:470:1f0e:3ad::2]) by mx1.freebsd.org (Postfix) with ESMTP id 5EC208FC13 for ; Sat, 3 Mar 2012 22:23:13 +0000 (UTC) Received: from cpe-72-182-2-131.austin.res.rr.com ([72.182.2.131]:37098 helo=borg.lerctr.org) by thebighonker.lerctr.org with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.77 (FreeBSD)) (envelope-from ) id 1S3xM7-000Mya-OI for FreeBSD-gnats-submit@freebsd.org; Sat, 03 Mar 2012 16:23:12 -0600 Received: from ler by borg.lerctr.org with local (Exim 4.77 (FreeBSD)) (envelope-from ) id 1S3xM7-0003WY-4u for FreeBSD-gnats-submit@freebsd.org; Sat, 03 Mar 2012 16:23:11 -0600 Message-Id: Date: Sat, 03 Mar 2012 16:23:11 -0600 From: Larry Rosenman Sender: Larry Rosenman To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/165672: sysutils/bacula-server doesn't install all symlinks necessary for bacula-dir X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Larry Rosenman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 22:30:11 -0000 >Number: 165672 >Category: ports >Synopsis: sysutils/bacula-server doesn't install all symlinks necessary for bacula-dir >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 03 22:30:10 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Larry Rosenman >Release: FreeBSD 10.0-CURRENT amd64 >Organization: LERCTR Consulting >Environment: System: FreeBSD borg.lerctr.org 10.0-CURRENT FreeBSD 10.0-CURRENT #59 r232474: Sat Mar 3 15:51:02 CST 2012 root@borg.lerctr.org:/usr/obj/usr/src/sys/BORG-DTRACE amd64 >Description: # ldd bacula-dir bacula-dir: libintl.so.9 => /usr/local/lib/libintl.so.9 (0x8008c2000) libiconv.so.3 => /usr/local/lib/libiconv.so.3 (0x800acb000) libbacfind.so.5 => /usr/local/lib/libbacfind.so.5 (0x800dc6000) libbacsql.so.5 => /usr/local/lib/libbacsql.so.5 (0x800fd3000) libbaccats-5.2.6.so => not found (0) libbacpy.so.5 => /usr/local/lib/libbacpy.so.5 (0x8011fa000) libbaccfg.so.5 => /usr/local/lib/libbaccfg.so.5 (0x8013fb000) libbac.so.5 => /usr/local/lib/libbac.so.5 (0x801605000) libz.so.6 => /lib/libz.so.6 (0x80185c000) libthr.so.3 => /lib/libthr.so.3 (0x801a72000) libwrap.so.6 => /usr/lib/libwrap.so.6 (0x801c95000) libssl.so.6 => /usr/lib/libssl.so.6 (0x801e9e000) libcrypto.so.6 => /lib/libcrypto.so.6 (0x8020f2000) libstdc++.so.6 => /usr/lib/libstdc++.so.6 (0x80249b000) libm.so.5 => /lib/libm.so.5 (0x8027b0000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x8029d3000) libc.so.7 => /lib/libc.so.7 (0x802be1000) # cd ../lib # ls -l libbaccats* -rwxr-xr-x 1 root wheel 1007 Mar 3 16:17 libbaccats-postgresql.la lrwxr-xr-x 1 root wheel 26 Mar 3 16:17 libbaccats-postgresql.so -> libbaccats-postgresql.so.5 -rwxr-xr-x 1 root wheel 41903 Mar 3 16:17 libbaccats-postgresql.so.5 -rwxr-xr-x 1 root wheel 935 Mar 3 16:17 libbaccats.la lrwxr-xr-x 1 root wheel 15 Mar 3 16:17 libbaccats.so -> libbaccats.so.5 lrwxr-xr-x 1 root wheel 26 Mar 3 16:17 libbaccats.so.5 -> libbaccats-postgresql.so.5 # ln -s libbaccats-postgresql.so.5 libbaccats-5.2.6.so # service bacula-dir start Starting bacula_dir. # >How-To-Repeat: compile ports/bacula-server using PostgreSQL. >Fix: # ln -s libbaccats-postgresql.so.5 libbaccats-5.2.6.so # service bacula-dir start >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 22:30:56 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B27F8106566B; Sat, 3 Mar 2012 22:30:56 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 857278FC0A; Sat, 3 Mar 2012 22:30:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23MUugO012782; Sat, 3 Mar 2012 22:30:56 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23MUuWe012773; Sat, 3 Mar 2012 22:30:56 GMT (envelope-from edwin) Date: Sat, 3 Mar 2012 22:30:56 GMT Message-Id: <201203032230.q23MUuWe012773@freefall.freebsd.org> To: ler@lerctr.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/165672: sysutils/bacula-server doesn't install all symlinks necessary for bacula-dir 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: Sat, 03 Mar 2012 22:30:56 -0000 Synopsis: sysutils/bacula-server doesn't install all symlinks necessary for bacula-dir State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Mar 3 22:30:55 UTC 2012 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=165672 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Mar 3 22:40:12 2012 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 7DBC2106566C for ; Sat, 3 Mar 2012 22:40:12 +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 686938FC0C for ; Sat, 3 Mar 2012 22:40:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q23MeCLB019232 for ; Sat, 3 Mar 2012 22:40:12 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q23MeCro019231; Sat, 3 Mar 2012 22:40:12 GMT (envelope-from gnats) Date: Sat, 3 Mar 2012 22:40:12 GMT Message-Id: <201203032240.q23MeCro019231@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: Edwin Groothuis Cc: Subject: Re: ports/165672: sysutils/bacula-server doesn't install all symlinks necessary for bacula-dir X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Edwin Groothuis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 22:40:12 -0000 The following reply was made to PR ports/165672; it has been noted by GNATS. From: Edwin Groothuis To: dan@langille.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/165672: sysutils/bacula-server doesn't install all symlinks necessary for bacula-dir Date: Sat, 3 Mar 2012 22:30:52 UT Maintainer of sysutils/bacula-server, Please note that PR ports/165672 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/165672 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org