From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 01:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF815A2E for ; Wed, 1 Jan 2014 01:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BCFDF1169 for ; Wed, 1 Jan 2014 01:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s011e0Yn040637 for ; Wed, 1 Jan 2014 01:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s011e0ad040624; Wed, 1 Jan 2014 01:40:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 01:40:00 GMT Resent-Message-Id: <201401010140.s011e0ad040624@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, Takefu Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1862E9B5; Wed, 1 Jan 2014 01:38:59 +0000 (UTC) Received: from ae-osaka.co.jp (mx.ae-osaka.co.jp [210.196.184.82]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D09541157; Wed, 1 Jan 2014 01:38:58 +0000 (UTC) Received: from ae-osaka.co.jp (localhost.ae-osaka.co.jp [127.0.0.1]) by ae-osaka.co.jp (Postfix) with ESMTP id 43A8D12607F; Wed, 1 Jan 2014 10:38:57 +0900 (JST) Received: from [IPv6:2001:470:824b:a011:7093:6e45:6d77:5b00] (unknown [IPv6:2001:470:824b:a011:7093:6e45:6d77:5b00]) by ae-osaka.co.jp (Postfix) with ESMTPSA id D6A13125EFE; Wed, 1 Jan 2014 10:38:56 +0900 (JST) Message-Id: <52C371B1.80707@airport.fm> Date: Wed, 01 Jan 2014 10:38:57 +0900 From: Takefu To: freebsd-gnats-submit@freebsd.org Subject: ports/185378: [PATCH] archivers/freeze: fix StageDir Cc: gabor@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 01:40:01 -0000 >Number: 185378 >Category: ports >Synopsis: [PATCH] archivers/freeze: fix StageDir >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 Jan 01 01:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: FreeBSD 8.4-RELEASE-p4 i386 >Organization: FOX Amateur Radio Club >Environment: System: FreeBSD RELENG84-ix86.localIPv4.airport.fm 8.4-RELEASE-p4 FreeBSD 8.4-RELEASE-p4 #0: Wed Sep 25 14:55:36 JST 2013 >Description: fix StageDir Port maintainer (gabor@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- freeze-2.5_2.patch begins here --- diff -ruN /usr/ports/archivers/freeze/Makefile ./Makefile --- /usr/ports/archivers/freeze/Makefile 2013-09-20 22:11:20.000000000 +0900 +++ ./Makefile 2014-01-01 10:33:57.000000000 +0900 @@ -12,18 +12,21 @@ MAINTAINER= gabor@FreeBSD.org COMMENT= Compression program - often used in QNX -NO_STAGE= yes GNU_CONFIGURE= yes +GNU_CONFIGURE_PREFIX= ${STAGEDIR}${PREFIX} ALL_TARGET= prog MAKE_ARGS+= CFLAGS="${CFLAGS} -I. -DCOMPAT" CC="${CC}" -MAN1= freeze.1 melt.1 unfreeze.1 fcat.1 statist.1 -PLIST_FILES= bin/fcat bin/freeze bin/melt bin/statist bin/unfreeze +PLIST_FILES= bin/fcat bin/freeze bin/melt bin/statist bin/unfreeze\ + man/man1/freeze.1.gz man/man1/melt.1.gz man/man1/unfreeze.1.gz\ + man/man1/fcat.1.gz man/man1/statist.1.gz PORTDOCS= README +.include + post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${STAGEDIR}/${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}/${DOCSDIR} .endif .include --- freeze-2.5_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 01:40:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2DF8FA73; Wed, 1 Jan 2014 01:40:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 03D55116B; Wed, 1 Jan 2014 01:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s011e8dl040733; Wed, 1 Jan 2014 01:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s011e8Ba040732; Wed, 1 Jan 2014 01:40:08 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 01:40:08 GMT Message-Id: <201401010140.s011e8Ba040732@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gabor@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185378: [PATCH] archivers/freeze: fix StageDir X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 01:40:09 -0000 Synopsis: [PATCH] archivers/freeze: fix StageDir Responsible-Changed-From-To: freebsd-ports-bugs->gabor Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jan 1 01:40:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185378 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 01:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9BFB1A2C for ; Wed, 1 Jan 2014 01:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 780F71167 for ; Wed, 1 Jan 2014 01:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s011e0aS040588 for ; Wed, 1 Jan 2014 01:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s011e0Jn040587; Wed, 1 Jan 2014 01:40:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 01:40:00 GMT Resent-Message-Id: <201401010140.s011e0Jn040587@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, Takefu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B0D62590; Wed, 1 Jan 2014 01:31:07 +0000 (UTC) Received: from ae-osaka.co.jp (mx.ae-osaka.co.jp [210.196.184.82]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5764F10E2; Wed, 1 Jan 2014 01:31:06 +0000 (UTC) Received: from ae-osaka.co.jp (localhost.ae-osaka.co.jp [127.0.0.1]) by ae-osaka.co.jp (Postfix) with ESMTP id 4128C126083; Wed, 1 Jan 2014 10:30:35 +0900 (JST) Received: from [IPv6:2001:470:824b:a011:7093:6e45:6d77:5b00] (unknown [IPv6:2001:470:824b:a011:7093:6e45:6d77:5b00]) by ae-osaka.co.jp (Postfix) with ESMTPSA id C240212607F; Wed, 1 Jan 2014 10:30:34 +0900 (JST) Message-Id: <52C36FBB.9090604@airport.fm> Date: Wed, 01 Jan 2014 10:30:35 +0900 From: Takefu To: freebsd-gnats-submit@freebsd.org Subject: ports/185377: [PATCH] archivers/libarchive: fix StageDir Cc: glewis@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 01:40:00 -0000 >Number: 185377 >Category: ports >Synopsis: [PATCH] archivers/libarchive: fix StageDir >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 Jan 01 01:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: FreeBSD 8.4-RELEASE-p4 i386 >Organization: FOX Amateur Radio Club >Environment: System: FreeBSD RELENG84-ix86.localIPv4.airport.fm 8.4-RELEASE-p4 FreeBSD 8.4-RELEASE-p4 #0: Wed Sep 25 14:55:36 JST 2013 >Description: [DESCRIBE CHANGES] Port maintainer (glewis@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- libarchive-3.1.2,1.patch begins here --- diff -ruN /usr/ports/archivers/libarchive/Makefile ./Makefile --- /usr/ports/archivers/libarchive/Makefile 2013-12-11 19:04:56.000000000 +0900 +++ ./Makefile 2014-01-01 10:25:04.000000000 +0900 @@ -16,7 +16,6 @@ LZO_DESC= Support lzo compression via liblzo2 NETTLE_DESC= Use Nettle instead of OpenSSL -NO_STAGE= yes GNU_CONFIGURE= yes USE_LDCONFIG= yes USE_GNOME= gnomehack @@ -32,49 +31,47 @@ lib/libarchive.la \ lib/libarchive.so \ lib/libarchive.so.14 \ - libdata/pkgconfig/libarchive.pc - -MANCOMPRESSED= no -MAN1= bsdcpio.1 \ - bsdtar.1 -MAN3= archive_entry.3 \ - archive_entry_acl.3 \ - archive_entry_linkify.3 \ - archive_entry_paths.3 \ - archive_entry_perms.3 \ - archive_entry_stat.3 \ - archive_entry_time.3 \ - archive_read.3 \ - archive_read_data.3 \ - archive_read_disk.3 \ - archive_read_extract.3 \ - archive_read_filter.3 \ - archive_read_format.3 \ - archive_read_free.3 \ - archive_read_header.3 \ - archive_read_new.3 \ - archive_read_open.3 \ - archive_read_set_options.3 \ - archive_util.3 \ - archive_write.3 \ - archive_write_blocksize.3 \ - archive_write_data.3 \ - archive_write_disk.3 \ - archive_write_filter.3 \ - archive_write_finish_entry.3 \ - archive_write_format.3 \ - archive_write_free.3 \ - archive_write_header.3 \ - archive_write_new.3 \ - archive_write_open.3 \ - archive_write_set_options.3 \ - libarchive.3 \ - libarchive_changes.3 \ - libarchive_internals.3 -MAN5= cpio.5 \ - libarchive-formats.5 \ - mtree.5 \ - tar.5 + libdata/pkgconfig/libarchive.pc\ + man/man1/bsdcpio.1.gz\ + man/man1/bsdtar.1.gz\ + man/man3/archive_entry.3.gz\ + man/man3/archive_entry_acl.3.gz\ + man/man3/archive_entry_linkify.3.gz\ + man/man3/archive_entry_paths.3.gz\ + man/man3/archive_entry_perms.3.gz\ + man/man3/archive_entry_stat.3.gz\ + man/man3/archive_entry_time.3.gz\ + man/man3/archive_read.3.gz\ + man/man3/archive_read_data.3.gz\ + man/man3/archive_read_disk.3.gz\ + man/man3/archive_read_extract.3.gz\ + man/man3/archive_read_filter.3.gz\ + man/man3/archive_read_format.3.gz\ + man/man3/archive_read_free.3.gz\ + man/man3/archive_read_header.3.gz\ + man/man3/archive_read_new.3.gz\ + man/man3/archive_read_open.3.gz\ + man/man3/archive_read_set_options.3.gz\ + man/man3/archive_util.3.gz\ + man/man3/archive_write.3.gz\ + man/man3/archive_write_blocksize.3.gz\ + man/man3/archive_write_data.3.gz\ + man/man3/archive_write_disk.3.gz\ + man/man3/archive_write_filter.3.gz\ + man/man3/archive_write_finish_entry.3.gz\ + man/man3/archive_write_format.3.gz\ + man/man3/archive_write_free.3.gz\ + man/man3/archive_write_header.3.gz\ + man/man3/archive_write_new.3.gz\ + man/man3/archive_write_open.3.gz\ + man/man3/archive_write_set_options.3.gz\ + man/man3/libarchive.3.gz\ + man/man3/libarchive_changes.3.gz\ + man/man3/libarchive_internals.3.gz\ + man/man5/cpio.5.gz\ + man/man5/libarchive-formats.5.gz\ + man/man5/mtree.5.gz\ + man/man5/tar.5.gz CFLAGS+= "-I${LOCALBASE}/include" CPPFLAGS+= "-I${LOCALBASE}/include" --- libarchive-3.1.2,1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 01:46:16 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4CAEFDBF; Wed, 1 Jan 2014 01:46:16 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 22D95121B; Wed, 1 Jan 2014 01:46:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s011kFX6043096; Wed, 1 Jan 2014 01:46:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s011kFRg043095; Wed, 1 Jan 2014 01:46:15 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 01:46:15 GMT Message-Id: <201401010146.s011kFRg043095@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, glewis@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185377: [PATCH] archivers/libarchive: fix StageDir X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 01:46:16 -0000 Synopsis: [PATCH] archivers/libarchive: fix StageDir Responsible-Changed-From-To: freebsd-ports-bugs->glewis Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jan 1 01:46:15 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185377 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 04:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D7976298 for ; Wed, 1 Jan 2014 04:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B495E11BB for ; Wed, 1 Jan 2014 04:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s014A0AA076228 for ; Wed, 1 Jan 2014 04:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s014A0kC076227; Wed, 1 Jan 2014 04:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 04:10:00 GMT Resent-Message-Id: <201401010410.s014A0kC076227@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, Takefu Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C4D5DE8; Wed, 1 Jan 2014 04:04:21 +0000 (UTC) Received: from ae-osaka.co.jp (mx.ae-osaka.co.jp [210.196.184.82]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 22B991197; Wed, 1 Jan 2014 04:04:20 +0000 (UTC) Received: from ae-osaka.co.jp (localhost.ae-osaka.co.jp [127.0.0.1]) by ae-osaka.co.jp (Postfix) with ESMTP id 4F4E2126083; Wed, 1 Jan 2014 13:04:19 +0900 (JST) Received: from [IPv6:2001:470:824b:a011:7093:6e45:6d77:5b00] (unknown [IPv6:2001:470:824b:a011:7093:6e45:6d77:5b00]) by ae-osaka.co.jp (Postfix) with ESMTPSA id E4037126081; Wed, 1 Jan 2014 13:04:18 +0900 (JST) Message-Id: <52C393C4.6070409@airport.fm> Date: Wed, 01 Jan 2014 13:04:20 +0900 From: Takefu To: freebsd-gnats-submit@freebsd.org Subject: ports/185380: [PATCH] sysutils/socket: fix StageDir Cc: wosch@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 04:10:01 -0000 >Number: 185380 >Category: ports >Synopsis: [PATCH] sysutils/socket: fix StageDir >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 Jan 01 04:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: FreeBSD 8.4-RELEASE-p4 i386 >Organization: FOX Amateur Radio Club >Environment: System: FreeBSD RELENG84-ix86.localIPv4.airport.fm 8.4-RELEASE-p4 FreeBSD 8.4-RELEASE-p4 #0: Wed Sep 25 14:55:36 JST 2013 >Description: fix StageDir Port maintainer (wosch@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- socket-1.1_2.patch begins here --- diff -ruN /usr/ports/sysutils/socket/Makefile ./Makefile --- /usr/ports/sysutils/socket/Makefile 2013-09-21 08:05:58.000000000 +0900 +++ ./Makefile 2014-01-01 12:17:14.000000000 +0900 @@ -10,12 +10,19 @@ MAINTAINER= wosch@FreeBSD.org COMMENT= Create TCP socket and connect to stdin/out -MAKE_ENV+= SWITCHES="-DUSE_INET6 -DHAVE_SYS_PARAM_H -Wall" -MAN1= socket.1 +LICENSE= GPLv1 + +OPTIONS_DEFINE= DOCS + +MAKE_ENV+= SWITCHES="-DUSE_INET6 -DHAVE_SYS_PARAM_H -Wall"\ + STAGEDIR=${STAGEDIR} + +.include -NO_STAGE= yes post-install: - @${MKDIR} ${DOCSDIR}/ - @${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/ +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR} +.endif .include diff -ruN /usr/ports/sysutils/socket/files/patch-Makefile ./files/patch-Makefile --- /usr/ports/sysutils/socket/files/patch-Makefile 1970-01-01 09:00:00.000000000 +0900 +++ ./files/patch-Makefile 2014-01-01 12:22:33.000000000 +0900 @@ -0,0 +1,11 @@ +--- Makefile.orig 1992-09-10 23:59:31.000000000 +0900 ++++ Makefile 2013-12-02 12:47:26.000000000 +0900 +@@ -13,7 +13,7 @@ + INSTALLBINMODE = 755 + INSTALLMANPATH = $(INSTALLBASE)/man + INSTALLMANMODE = 444 +-CC = cc ++#CC = ${CC} + CFLAGS = $(SWITCHES) -O + LDFLAGS = $(SWITCHES) -s + diff -ruN /usr/ports/sysutils/socket/files/patch-ab ./files/patch-ab --- /usr/ports/sysutils/socket/files/patch-ab 2012-07-14 23:29:18.000000000 +0900 +++ ./files/patch-ab 2014-01-01 12:15:21.000000000 +0900 @@ -13,7 +13,7 @@ ### socket.1 in /usr/local/man/man1/socket.1 ### Make sure the target directories exist before doing a "make install". -! INSTALLBASE = ${PREFIX} +! INSTALLBASE = ${STAGEDIR}${PREFIX} INSTALLBINPATH = $(INSTALLBASE)/bin INSTALLBINMODE = 755 INSTALLMANPATH = $(INSTALLBASE)/man diff -ruN /usr/ports/sysutils/socket/pkg-plist ./pkg-plist --- /usr/ports/sysutils/socket/pkg-plist 2012-07-14 23:29:18.000000000 +0900 +++ ./pkg-plist 2014-01-01 12:36:26.000000000 +0900 @@ -1,3 +1,4 @@ bin/socket -share/doc/socket/README -@dirrm share/doc/socket +man/man1/socket.1.gz +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%@dirrm %%DOCSDIR%% --- socket-1.1_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 04:10:52 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EE4492FE; Wed, 1 Jan 2014 04:10:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C506B120C; Wed, 1 Jan 2014 04:10:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s014AqcQ077988; Wed, 1 Jan 2014 04:10:52 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s014AqDI077987; Wed, 1 Jan 2014 04:10:52 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 04:10:52 GMT Message-Id: <201401010410.s014AqDI077987@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, wosch@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185380: [PATCH] sysutils/socket: fix StageDir X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 04:10:53 -0000 Synopsis: [PATCH] sysutils/socket: fix StageDir Responsible-Changed-From-To: freebsd-ports-bugs->wosch Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jan 1 04:10:52 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185380 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 04:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E43A3AD9 for ; Wed, 1 Jan 2014 04:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C3B891113 for ; Wed, 1 Jan 2014 04:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01400oC074044 for ; Wed, 1 Jan 2014 04:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01400JB074043; Wed, 1 Jan 2014 04:00:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 04:00:00 GMT Resent-Message-Id: <201401010400.s01400JB074043@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:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A5A5086D; Wed, 1 Jan 2014 03:54:17 +0000 (UTC) Received: from sunpoet.net (sunpoet.net [220.135.71.135]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 751AA10F9; Wed, 1 Jan 2014 03:54:17 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id CAD8245DE; Wed, 1 Jan 2014 07:44:52 +0800 (CST) Message-Id: <20131231234452.CAD8245DE@sunpoet.net> Date: Wed, 1 Jan 2014 07:44:52 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185379: [PATCH] net/rubygem-http_parser.rb: update to 0.6.0 Cc: tota@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 04:00:01 -0000 >Number: 185379 >Category: ports >Synopsis: [PATCH] net/rubygem-http_parser.rb: update to 0.6.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: Wed Jan 01 04:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 10.0-PRERELEASE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 10.0-PRERELEASE FreeBSD 10.0-PRERELEASE #0 r260045: Mon Dec 30 16:24:36 CST >Description: - Update to 0.6.0 - Remove leading indefinite article from COMMENT - Add LICENSE - Support STAGEDIR Changes: https://github.com/tmm1/http_parser.rb/commits/master Port maintainer (tota@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- rubygem-http_parser.rb-0.6.0.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 338337) +++ Makefile (working copy) @@ -2,16 +2,17 @@ # $FreeBSD$ PORTNAME= http_parser.rb -PORTVERSION= 0.5.3 +PORTVERSION= 0.6.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org -COMMENT= A simple callback-based HTTP request/response parser +COMMENT= Simple callback-based HTTP request/response parser +LICENSE= MIT + USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -NO_STAGE= yes .include Index: distinfo =================================================================== --- distinfo (revision 338337) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (rubygem/http_parser.rb-0.5.3.gem) = d64f525eb1c580598d5bdef4fad98e948b6e016fa7803f45e13ac8714a2b8e3b -SIZE (rubygem/http_parser.rb-0.5.3.gem) = 146944 +SHA256 (rubygem/http_parser.rb-0.6.0.gem) = f11d0aec50ef26a7d1f991e627ac88acdb5979282aeba7a5c3be6ce0636ed196 +SIZE (rubygem/http_parser.rb-0.6.0.gem) = 177664 --- rubygem-http_parser.rb-0.6.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 04:00:56 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCA00C43; Wed, 1 Jan 2014 04:00:56 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 92977117B; Wed, 1 Jan 2014 04:00:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0140upC075815; Wed, 1 Jan 2014 04:00:56 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0140ul8075814; Wed, 1 Jan 2014 04:00:56 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 04:00:56 GMT Message-Id: <201401010400.s0140ul8075814@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, tota@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185379: [PATCH] net/rubygem-http_parser.rb: update to 0.6.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 04:00:56 -0000 Synopsis: [PATCH] net/rubygem-http_parser.rb: update to 0.6.0 Responsible-Changed-From-To: freebsd-ports-bugs->tota Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jan 1 04:00:56 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185379 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 04:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 474506C8 for ; Wed, 1 Jan 2014 04:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0975C1258 for ; Wed, 1 Jan 2014 04:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s014K0Da079040 for ; Wed, 1 Jan 2014 04:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s014K0lM079038; Wed, 1 Jan 2014 04:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 04:20:00 GMT Resent-Message-Id: <201401010420.s014K0lM079038@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, Kenta S Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 91D973AD for ; Wed, 1 Jan 2014 04:12:21 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7EEDF121A for ; Wed, 1 Jan 2014 04:12:21 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s014CLr7019233 for ; Wed, 1 Jan 2014 04:12:21 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s014CLAH019228; Wed, 1 Jan 2014 04:12:21 GMT (envelope-from nobody) Message-Id: <201401010412.s014CLAH019228@oldred.freebsd.org> Date: Wed, 1 Jan 2014 04:12:21 GMT From: Kenta S To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185381: [patch] enable hi10p encoding in multimedia/x264 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 04:20:01 -0000 >Number: 185381 >Category: ports >Synopsis: [patch] enable hi10p encoding in multimedia/x264 >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 Jan 01 04:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Kenta S >Release: 9.2-RELEASE >Organization: >Environment: >Description: The multimedia/x264 is currently forcing 8bit encoding. This patch lets the user decide which one to use. >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2013-12-31 23:09:14.000000000 -0500 +++ Makefile 2013-12-31 23:08:38.000000000 -0500 @@ -32,10 +32,11 @@ USE_LDCONFIG= yes HAS_CONFIGURE= yes -OPTIONS_DEFINE= ASM DEBUG PGO GCC GPAC X11_OUTPUT +OPTIONS_DEFINE= ASM DEBUG HI10P PGO GCC GPAC X11_OUTPUT OPTIONS_DEFAULT= ASM GPAC ASM_DESC= Enable Assembly Optimizations GCC_DESC= Use current GCC +HI10P_DESC= Enable Hi10P 10-bit encoding GPAC_DESC= Enable MPEG-4 Output X11_OUTPUT_DESC= Enable X11 Output @@ -58,6 +59,10 @@ CONFIGURE_ARGS+= --disable-asm .endif +.if !${PORT_OPTIONS:HI10P} +CONFIGURE_ARGS+= --bit-depth=10 +.endif + .if ${PORT_OPTIONS:MDEBUG} || defined(WITH_DEBUG) CONFIGURE_ARGS+= --enable-debug .endif >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 04:47:49 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B99764C5; Wed, 1 Jan 2014 04:47:49 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8D2E4141E; Wed, 1 Jan 2014 04:47:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s014ln5q084578; Wed, 1 Jan 2014 04:47:49 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s014lnkL084577; Wed, 1 Jan 2014 04:47:49 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 04:47:49 GMT Message-Id: <201401010447.s014lnkL084577@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, koobs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185381: [patch] enable hi10p encoding in multimedia/x264 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 04:47:49 -0000 Synopsis: [patch] enable hi10p encoding in multimedia/x264 Responsible-Changed-From-To: freebsd-ports-bugs->koobs Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jan 1 04:47:49 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185381 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 05:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B80969C3 for ; Wed, 1 Jan 2014 05:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 797DA1631 for ; Wed, 1 Jan 2014 05:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s015K06M091326 for ; Wed, 1 Jan 2014 05:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s015K0HR091325; Wed, 1 Jan 2014 05:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 05:20:00 GMT Resent-Message-Id: <201401010520.s015K0HR091325@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:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 807A1793 for ; Wed, 1 Jan 2014 05:10:18 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D65A159B for ; Wed, 1 Jan 2014 05:10:18 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s015AIib078118 for ; Wed, 1 Jan 2014 05:10:18 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s015AIQs078068; Wed, 1 Jan 2014 05:10:18 GMT (envelope-from nobody) Message-Id: <201401010510.s015AIQs078068@oldred.freebsd.org> Date: Wed, 1 Jan 2014 05:10:18 GMT From: Yuri To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185383: [PORT textproc/meld] [PATCH] Meld fails to build on 9.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 05:20:00 -0000 >Number: 185383 >Category: ports >Synopsis: [PORT textproc/meld] [PATCH] Meld fails to build on 9.2 >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 Jan 01 05:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Yuri >Release: 9.2 >Organization: n/a >Environment: >Description: There is a stray line in pkg-plist for rw language causing 'make install' to break >How-To-Repeat: >Fix: Please find patch attached Patch attached with submission follows: Index: textproc/meld/pkg-plist =================================================================== --- textproc/meld/pkg-plist (revision 338357) +++ textproc/meld/pkg-plist (working copy) @@ -261,8 +261,6 @@ @dirrm %%DATADIR%%/ui @dirrm %%DATADIR%%/icons @dirrm %%DATADIR%% -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw @dirrmtry share/icons/HighContrast/scalable/apps @dirrmtry share/icons/HighContrast/scalable @dirrmtry share/icons/HighContrast >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 05:20:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0A5C59F4; Wed, 1 Jan 2014 05:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D43681634; Wed, 1 Jan 2014 05:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s015K8iE091458; Wed, 1 Jan 2014 05:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s015K8LJ091457; Wed, 1 Jan 2014 05:20:08 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 05:20:08 GMT Message-Id: <201401010520.s015K8LJ091457@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, pawel@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185383: [PORT textproc/meld] [PATCH] Meld fails to build on 9.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 05:20:09 -0000 Synopsis: [PORT textproc/meld] [PATCH] Meld fails to build on 9.2 Responsible-Changed-From-To: freebsd-ports-bugs->pawel Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jan 1 05:20:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185383 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 09:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D9052BF5 for ; Wed, 1 Jan 2014 09:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AFE4B1623 for ; Wed, 1 Jan 2014 09:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s019A0qX056496 for ; Wed, 1 Jan 2014 09:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s019A0Af056495; Wed, 1 Jan 2014 09:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 09:10:00 GMT Resent-Message-Id: <201401010910.s019A0Af056495@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, mohammad Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B6F4EA90 for ; Wed, 1 Jan 2014 09:02:19 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9E65115EB for ; Wed, 1 Jan 2014 09:02:19 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s0192J9d056701 for ; Wed, 1 Jan 2014 09:02:19 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s0192JPt056690; Wed, 1 Jan 2014 09:02:19 GMT (envelope-from nobody) Message-Id: <201401010902.s0192JPt056690@oldred.freebsd.org> Date: Wed, 1 Jan 2014 09:02:19 GMT From: mohammad To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185385: portsnap fetch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 09:10:01 -0000 >Number: 185385 >Category: ports >Synopsis: portsnap fetch >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 Jan 01 09:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: mohammad >Release: 9 >Organization: taali university >Environment: Looking up portsnap.FreeBSD.org mirrors... 7 mirrors found. Fetching snapshot tag from ec2-eu-west-1.portsnap.freebsd.org... done. Fetching snapshot metadata... done. Updating from Wed Jan 1 11:02:49 IRST 2014 to Wed Jan 1 11:52:32 IRST 2014. Fetching 1 metadata patches. done. Applying metadata patches... done. Fetching 0 metadata files... done. gunzip: can't stat: files/aa6d100799e9d85c7992c9d4025bf9311a8ced90105788c143db17be1d86f85a.gz: No such file or directory Fetching 0 patches. done. Applying patches... done. Fetching 0 new ports or files... done. >Description: i reboot system before portsnap fetching complete and i dont know how recover it and fetching again? when i type: "portsnap fetch " Looking up portsnap.FreeBSD.org mirrors... 7 mirrors found. Fetching snapshot tag from ec2-eu-west-1.portsnap.freebsd.org... done. Fetching snapshot metadata... done. Updating from Wed Jan 1 11:02:49 IRST 2014 to Wed Jan 1 11:52:32 IRST 2014. Fetching 1 metadata patches. done. Applying metadata patches... done. Fetching 0 metadata files... done. gunzip: can't stat: files/aa6d100799e9d85c7992c9d4025bf9311a8ced90105788c143db17be1d86f85a.gz: No such file or directory Fetching 0 patches. done. Applying patches... done. Fetching 0 new ports or files... done. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 10:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8B625C5 for ; Wed, 1 Jan 2014 10:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A93E1AA7 for ; Wed, 1 Jan 2014 10:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01AU17X074692 for ; Wed, 1 Jan 2014 10:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01AU1wJ074691; Wed, 1 Jan 2014 10:30:01 GMT (envelope-from gnats) Date: Wed, 1 Jan 2014 10:30:01 GMT Message-Id: <201401011030.s01AU1wJ074691@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Neil Subject: Re: ports/185360: Update the port finance/electrum to the latest release 1.9.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Neil List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 10:30:01 -0000 The following reply was made to PR ports/185360; it has been noted by GNATS. From: Neil To: bug-followup Cc: Subject: Re: ports/185360: Update the port finance/electrum to the latest release 1.9.6 Date: Wed, 1 Jan 2014 19:28:01 +0900 --089e0160c0b6aca73e04eee621d2 Content-Type: multipart/alternative; boundary=089e0160c0b6aca73a04eee621d0 --089e0160c0b6aca73a04eee621d0 Content-Type: text/plain; charset=UTF-8 Attached using -ruN; apologies. Neil. On 1 January 2014 19:21, Neil wrote: > Unclear what the issue with my submission was, other than it was a shar > not a diff. I've attached a diff. > > Neil. > --089e0160c0b6aca73a04eee621d0 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Attached using -ruN; apologies.

Neil.


On 1 J= anuary 2014 19:21, Neil <kyuupichan@gmail.com> wrote:
Unclear what the issue with= my submission was, other than it was a shar not a diff.=C2=A0 I've att= ached a diff.

Neil.

--089e0160c0b6aca73a04eee621d0-- --089e0160c0b6aca73e04eee621d2 Content-Type: text/plain; charset=US-ASCII; name="electrum.diff.txt" Content-Disposition: attachment; filename="electrum.diff.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hpwfyl481 ZGlmZiAtcnVOIGVsZWN0cnVtLm9yaWcvTWFrZWZpbGUgZWxlY3RydW0vTWFrZWZpbGUKLS0tIGVs ZWN0cnVtLm9yaWcvTWFrZWZpbGUJMjAxNC0wMS0wMSAxOToxODowNC4zMjA4MDgwMDAgKzA5MDAK KysrIGVsZWN0cnVtL01ha2VmaWxlCTIwMTMtMTItMzEgMTY6MDQ6NDIuNjcwOTU4MDAwICswOTAw CkBAIC0yLDkgKzIsOSBAQAogIyAkRnJlZUJTRDogZmluYW5jZS9lbGVjdHJ1bS9NYWtlZmlsZSAz Mjc3MjcgMjAxMy0wOS0yMCAxNzoxODozOFogYmFwdCAkCiAKIFBPUlROQU1FPQllbGVjdHJ1bQot UE9SVFZFUlNJT049CTEuNy4zCitQT1JUVkVSU0lPTj0JMS45LjYKIENBVEVHT1JJRVM9CWZpbmFu Y2UgcHl0aG9uCi1NQVNURVJfU0lURVM9CWh0dHA6Ly9kb3dubG9hZC5lbGVjdHJ1bS5vcmcvZG93 bmxvYWQvCitNQVNURVJfU0lURVM9CWh0dHBzOi8vZG93bmxvYWQuZWxlY3RydW0ub3JnLwogRElT VE5BTUU9CUVsZWN0cnVtLSR7UE9SVFZFUlNJT059CiAKIE1BSU5UQUlORVI9CWt5dXVwaWNoYW5A Z21haWwuY29tCmRpZmYgLXJ1TiBlbGVjdHJ1bS5vcmlnL2Rpc3RpbmZvIGVsZWN0cnVtL2Rpc3Rp bmZvCi0tLSBlbGVjdHJ1bS5vcmlnL2Rpc3RpbmZvCTIwMTQtMDEtMDEgMTk6MTg6MDQuMzYwODA4 MDAwICswOTAwCisrKyBlbGVjdHJ1bS9kaXN0aW5mbwkyMDEzLTEyLTMxIDE1OjUyOjA5LjY1NjAx NzAwMCArMDkwMApAQCAtMSwyICsxLDIgQEAKLVNIQTI1NiAoRWxlY3RydW0tMS43LjMudGFyLmd6 KSA9IGJkMTZhZmFmYTcwYzZjMTA0ZWI4MjcyM2JmNDU1NTQwNTc3NGM0OGY2NzIzNTkzZTk1ZWY0 OWRlMGI4ZjNlNTEKLVNJWkUgKEVsZWN0cnVtLTEuNy4zLnRhci5neikgPSA0OTIwNzYKK1NIQTI1 NiAoRWxlY3RydW0tMS45LjYudGFyLmd6KSA9IGU1NDE4NmI4MzQ3MmRhODM4NDNmY2VlZjhkMTc0 ZTExOTg2NDdjZmM0MjdjOTU4Y2NjNmZkMzQ1MWMyYTgxMzIKK1NJWkUgKEVsZWN0cnVtLTEuOS42 LnRhci5neikgPSA3NDIyNjEKZGlmZiAtcnVOIGVsZWN0cnVtLm9yaWcvZmlsZXMvcGF0Y2gtbGli X191dGlsLnB5IGVsZWN0cnVtL2ZpbGVzL3BhdGNoLWxpYl9fdXRpbC5weQotLS0gZWxlY3RydW0u b3JpZy9maWxlcy9wYXRjaC1saWJfX3V0aWwucHkJMjAxNC0wMS0wMSAxOToxODowNC4zODA4MDgw MDAgKzA5MDAKKysrIGVsZWN0cnVtL2ZpbGVzL3BhdGNoLWxpYl9fdXRpbC5weQkyMDEzLTEyLTMx IDE2OjA0OjEyLjc4MTE1ODAwMCArMDkwMApAQCAtMSw2ICsxLDYgQEAKLS0tLSAuL2xpYi91dGls LnB5Lm9yaWcJMjAxMy0wNC0wNyAyMTozMDowNi4wMDAwMDAwMDAgKzA5MDAKLSsrKyAuL2xpYi91 dGlsLnB5CTIwMTMtMDYtMDkgMTk6MzY6MDEuOTQ1NzMyMDAwICswOTAwCi1AQCAtNTksOCArNTks MTAgQEAKKy0tLSAuL2xpYi91dGlsLnB5Lm9yaWcJMjAxMy0xMi0wNSAwMDowMDowMC4wMDAwMDAw MDAgKzA5MDAKKysrKyAuL2xpYi91dGlsLnB5CTIwMTMtMTItMzEgMTY6MDI6NDcuNTUxNzMxMDAw ICswOTAwCitAQCAtNTcsOCArNTcsMTAgQEAKICAgICAgICAgIHJldHVybiBvcy5wYXRoLmpvaW4o b3MuZW52aXJvblsiQVBQREFUQSJdLCAiRWxlY3RydW0iKQogICAgICBlbGlmIHBsYXRmb3JtLnN5 c3RlbSgpID09ICJMaW51eCI6CiAgICAgICAgICByZXR1cm4gb3MucGF0aC5qb2luKHN5cy5wcmVm aXgsICJzaGFyZSIsICJlbGVjdHJ1bSIpCmRpZmYgLXJ1TiBlbGVjdHJ1bS5vcmlnL2ZpbGVzL3Bh dGNoLXNldHVwLnB5IGVsZWN0cnVtL2ZpbGVzL3BhdGNoLXNldHVwLnB5Ci0tLSBlbGVjdHJ1bS5v cmlnL2ZpbGVzL3BhdGNoLXNldHVwLnB5CTIwMTQtMDEtMDEgMTk6MTg6MDQuMzgwODA4MDAwICsw OTAwCisrKyBlbGVjdHJ1bS9maWxlcy9wYXRjaC1zZXR1cC5weQkyMDEzLTEyLTMxIDE2OjA0OjEy LjgxMTE1ODAwMCArMDkwMApAQCAtMSwyMCArMSwxMSBAQAotLS0tIC4vc2V0dXAucHkub3JpZwky MDEzLTA0LTA3IDE2OjMzOjMyLjAwMDAwMDAwMCArMDQwMAotKysrIC4vc2V0dXAucHkJMjAxMy0w Ni0xNSAxODo1Njo1OS4wMDAwMDAwMDAgKzA0MDAKLUBAIC0xNSwxNCArMTUsMTQgQEAKLSBpZiAo bGVuKHN5cy5hcmd2KSA+IDEgYW5kIChzeXMuYXJndlsxXSA9PSAic2Rpc3QiKSkgb3IgKHBsYXRm b3JtLnN5c3RlbSgpICE9ICdXaW5kb3dzJyBhbmQgcGxhdGZvcm0uc3lzdGVtKCkgIT0gJ0Rhcndp bicpOgotICAgICBwcmludCAiSW5jbHVkaW5nIGFsbCBmaWxlcyIKLSAgICAgZGF0YV9maWxlcyAr PSBbCi0tICAgICAgICAoJy91c3Ivc2hhcmUvYXBwbGljYXRpb25zLycsWydlbGVjdHJ1bS5kZXNr dG9wJ10pLAotLSAgICAgICAgKCcvdXNyL3NoYXJlL2FwcC1pbnN0YWxsL2ljb25zLycsWydpY29u cy9lbGVjdHJ1bS5wbmcnXSkKLSsgICAgICAgIChvcy5wYXRoLmpvaW4oJyUlUFJFRklYJSUnLCAn c2hhcmUnLCAnYXBwbGljYXRpb25zJyksWydlbGVjdHJ1bS5kZXNrdG9wJ10pLAotKyAgICAgICAg KG9zLnBhdGguam9pbignJSVQUkVGSVglJScsICdzaGFyZScsICdhcHAtaW5zdGFsbCcsICdpY29u cycpLFsnaWNvbnMvZWxlY3RydW0ucG5nJ10pCi0gICAgIF0KLSAgICAgaWYgbm90IG9zLnBhdGgu ZXhpc3RzKCdsb2NhbGUnKToKLSAgICAgICAgIG9zLm1rZGlyKCdsb2NhbGUnKQotICAgICBmb3Ig bGFuZyBpbiBvcy5saXN0ZGlyKCdsb2NhbGUnKToKLSAgICAgICAgIGlmIG9zLnBhdGguZXhpc3Rz KCdsb2NhbGUvJXMvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8nJWxhbmcpOgotLSAgICAgICAgICAg IGRhdGFfZmlsZXMuYXBwZW5kKCAgKCcvdXNyL3NoYXJlL2xvY2FsZS8lcy9MQ19NRVNTQUdFUycl bGFuZywgWydsb2NhbGUvJXMvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8nJWxhbmddKSApCi0rICAg ICAgICAgICAgZGF0YV9maWxlcy5hcHBlbmQoIChvcy5wYXRoLmpvaW4oJyUlUFJFRklYJSUnLCAn c2hhcmUvbG9jYWxlLyVzL0xDX01FU1NBR0VTJyVsYW5nKSwgWydsb2NhbGUvJXMvTENfTUVTU0FH RVMvZWxlY3RydW0ubW8nJWxhbmddKSApCistLS0gLi9zZXR1cC5weS5vcmlnCTIwMTMtMTItMzEg MTY6MDM6NDQuMzYxMzQ5MDAwICswOTAwCisrKysgLi9zZXR1cC5weQkyMDEzLTEyLTMxIDE2OjA0 OjAzLjc1MTIxOTAwMCArMDkwMAorQEAgLTE1LDcgKzE1LDcgQEAKKyBpZiBzeXMudmVyc2lvbl9p bmZvWzozXSA8ICgyLCA2LCAwKToKKyAgICAgc3lzLmV4aXQoIkVycm9yOiBFbGVjdHJ1bSByZXF1 aXJlcyBQeXRob24gdmVyc2lvbiA+PSAyLjYuMC4uLiIpCisgCistdXNyX3NoYXJlID0gJy91c3Iv c2hhcmUnCisrdXNyX3NoYXJlID0gJyUlUFJFRklYJSUvc2hhcmUnCisgaWYgbm90IG9zLmFjY2Vz cyh1c3Jfc2hhcmUsIG9zLldfT0spOgorICAgICB1c3Jfc2hhcmUgPSBvcy5nZXRlbnYoIlhER19E QVRBX0hPTUUiLCBvcy5wYXRoLmpvaW4ob3MuZ2V0ZW52KCJIT01FIiksICIubG9jYWwiLCAic2hh cmUiKSkKICAKLSBkYXRhX2ZpbGVzICs9IFsKLSAgICAgKHV0aWwuYXBwZGF0YV9kaXIoKSwgWyJk YXRhL1JFQURNRSJdKSwKZGlmZiAtcnVOIGVsZWN0cnVtLm9yaWcvcGtnLXBsaXN0IGVsZWN0cnVt L3BrZy1wbGlzdAotLS0gZWxlY3RydW0ub3JpZy9wa2ctcGxpc3QJMjAxNC0wMS0wMSAxOToxODow NC4zOTA4MDgwMDAgKzA5MDAKKysrIGVsZWN0cnVtL3BrZy1wbGlzdAkyMDEzLTEyLTMxIDE2OjMx OjU2LjM5MDAyMTAwMCArMDkwMApAQCAtMSwxNDYgKzEsMTk4IEBACi1iaW4vZWxlY3RydW0KICUl UFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9fX2luaXRfXy5weQorJSVQWVRIT05fU0lURUxJ QkRJUiUlL2VsZWN0cnVtL2FjY291bnQucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1 bS9iaXRjb2luLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vYmxvY2tjaGFpbi5w eQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2JtcC5weQorJSVQWVRIT05fU0lURUxJ QkRJUiUlL2VsZWN0cnVtL2NvbW1hbmRzLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3Ry dW0vaTE4bi5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2ludGVyZmFjZS5weQor JSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL21uZW1vbmljLnB5CislJVBZVEhPTl9TSVRF TElCRElSJSUvZWxlY3RydW0vbXNxci5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVt L25ldHdvcmsucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9wbHVnaW5zLnB5Cisl JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vcHlxcm5hdGl2ZS5weQorJSVQWVRIT05fU0lU RUxJQkRJUiUlL2VsZWN0cnVtL3NpbXBsZV9jb25maWcucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIl JS9lbGVjdHJ1bS9zb2Nrcy5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3RyYW5z YWN0aW9uLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vdXRpbC5weQorJSVQWVRI T05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3ZlcmlmaWVyLnB5CislJVBZVEhPTl9TSVRFTElCRElS JSUvZWxlY3RydW0vdmVyc2lvbi5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3dh bGxldC5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3dhbGxldF9iaXRrZXkucHkK KyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS93YWxsZXRfZmFjdG9yeS5weQorJSVQWVRI T05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9fX2luaXRfXy5weQorJSVQWVRIT05fU0lURUxJ QkRJUiUlL2VsZWN0cnVtX2d1aS9ndGsucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1 bV9ndWkvcXQvX19pbml0X18ucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkv cXQvYW1vdW50ZWRpdC5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9j b25zb2xlLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L2hpc3Rvcnlf d2lkZ2V0LnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L2ljb25zX3Jj LnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L2luc3RhbGx3aXphcmQu cHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvbGl0ZV93aW5kb3cucHkK KyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvbWFpbl93aW5kb3cucHkKKyUl UFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvbmV0d29ya19kaWFsb2cucHkKKyUl UFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvcGFzc3dvcmRfZGlhbG9nLnB5Cisl JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3FyY29kZXdpZGdldC5weQorJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9yZWNlaXZpbmdfd2lkZ2V0LnB5Cisl JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3NlZWRfZGlhbG9nLnB5CislJVBZ VEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3RyYW5zYWN0aW9uX2RpYWxvZy5weQor JSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC91dGlsLnB5CislJVBZVEhPTl9T SVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3ZlcnNpb25fZ2V0dGVyLnB5CislJVBZVEhPTl9T SVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3N0ZGlvLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUv ZWxlY3RydW1fZ3VpL3RleHQucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9wbHVn aW5zL19faW5pdF9fLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy9h bGlhc2VzLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy9leGNoYW5n ZV9yYXRlLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy9sYWJlbHMu cHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9wbHVnaW5zL3BvaW50b2ZzYWxlLnB5 CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy9xcnNjYW5uZXIucHkKKyUl UFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9wbHVnaW5zL3ZpcnR1YWxrZXlib2FyZC5weQog JSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL19faW5pdF9fLnB5YwogJSVQWVRIT05fU0lU RUxJQkRJUiUlL2VsZWN0cnVtL19faW5pdF9fLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2Vs ZWN0cnVtL2JpdGNvaW4ucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9hY2NvdW50 LnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2FjY291bnQucHlvCiAlJVBZVEhP Tl9TSVRFTElCRElSJSUvZWxlY3RydW0vYml0Y29pbi5weWMKICUlUFlUSE9OX1NJVEVMSUJESVIl JS9lbGVjdHJ1bS9iaXRjb2luLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2Nv bW1hbmRzLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vYmxvY2tjaGFpbi5weWMK KyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9ibG9ja2NoYWluLnB5bworJSVQWVRIT05f U0lURUxJQkRJUiUlL2VsZWN0cnVtL2JtcC5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVj dHJ1bS9ibXAucHlvCiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vY29tbWFuZHMucHlj CiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vY29tbWFuZHMucHlvCi0lJVBZVEhPTl9T SVRFTElCRElSJSUvZWxlY3RydW0vZGVzZXJpYWxpemUucHkKLSUlUFlUSE9OX1NJVEVMSUJESVIl JS9lbGVjdHJ1bS9kZXNlcmlhbGl6ZS5weWMKLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1 bS9kZXNlcmlhbGl6ZS5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9pbnRlcmZh Y2UucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9pMThuLnB5YworJSVQWVRIT05f U0lURUxJQkRJUiUlL2VsZWN0cnVtL2kxOG4ucHlvCiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxl Y3RydW0vaW50ZXJmYWNlLnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2ludGVy ZmFjZS5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9tbmVtb25pYy5weQogJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL21uZW1vbmljLnB5YwogJSVQWVRIT05fU0lURUxJ QkRJUiUlL2VsZWN0cnVtL21uZW1vbmljLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0 cnVtL21zcXIucHkKICUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9tc3FyLnB5YwogJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL21zcXIucHlvCi0lJVBZVEhPTl9TSVRFTElCRElS JSUvZWxlY3RydW0vc2ltcGxlX2NvbmZpZy5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0 cnVtL25ldHdvcmsucHljCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vbmV0d29yay5w eW8KKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9wbHVnaW5zLnB5YworJSVQWVRIT05f U0lURUxJQkRJUiUlL2VsZWN0cnVtL3BsdWdpbnMucHlvCislJVBZVEhPTl9TSVRFTElCRElSJSUv ZWxlY3RydW0vcHlxcm5hdGl2ZS5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9w eXFybmF0aXZlLnB5bwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3NpbXBsZV9jb25m aWcucHljCiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vc2ltcGxlX2NvbmZpZy5weW8K LSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9zb2Nrcy5weQogJSVQWVRIT05fU0lURUxJ QkRJUiUlL2VsZWN0cnVtL3NvY2tzLnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVt L3NvY2tzLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3V0aWwucHkKKyUlUFlU SE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS90cmFuc2FjdGlvbi5weWMKKyUlUFlUSE9OX1NJVEVM SUJESVIlJS9lbGVjdHJ1bS90cmFuc2FjdGlvbi5weW8KICUlUFlUSE9OX1NJVEVMSUJESVIlJS9l bGVjdHJ1bS91dGlsLnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3V0aWwucHlv Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vdmVyaWZpZXIucHkKICUlUFlUSE9OX1NJ VEVMSUJESVIlJS9lbGVjdHJ1bS92ZXJpZmllci5weWMKICUlUFlUSE9OX1NJVEVMSUJESVIlJS9l bGVjdHJ1bS92ZXJpZmllci5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS92ZXJz aW9uLnB5CiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vdmVyc2lvbi5weWMKICUlUFlU SE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS92ZXJzaW9uLnB5bwotJSVQWVRIT05fU0lURUxJQkRJ UiUlL2VsZWN0cnVtL3dhbGxldC5weQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3dh bGxldC5weWMKICUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS93YWxsZXQucHlvCi0lJVBZ VEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vd2FsbGV0X2JpdGtleS5weQogJSVQWVRIT05fU0lU RUxJQkRJUiUlL2VsZWN0cnVtL3dhbGxldF9iaXRrZXkucHljCiAlJVBZVEhPTl9TSVRFTElCRElS JSUvZWxlY3RydW0vd2FsbGV0X2JpdGtleS5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVj dHJ1bS93YWxsZXRfZmFjdG9yeS5weQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3dh bGxldF9mYWN0b3J5LnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3dhbGxldF9m YWN0b3J5LnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9fX2luaXRfXy5w eQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9fX2luaXRfXy5weWMKICUlUFlU SE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvX19pbml0X18ucHlvCi0lJVBZVEhPTl9TSVRF TElCRElSJSUvZWxlY3RydW1fZ3VpL2Ftb3VudGVkaXQucHkKLSUlUFlUSE9OX1NJVEVMSUJESVIl JS9lbGVjdHJ1bV9ndWkvYW1vdW50ZWRpdC5weWMKLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVj dHJ1bV9ndWkvYW1vdW50ZWRpdC5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9n dWkvYm1wLnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2JtcC5weWMKLSUl UFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvYm1wLnB5bwotJSVQWVRIT05fU0lURUxJ QkRJUiUlL2VsZWN0cnVtX2d1aS9leGNoYW5nZV9yYXRlLnB5Ci0lJVBZVEhPTl9TSVRFTElCRElS JSUvZWxlY3RydW1fZ3VpL2V4Y2hhbmdlX3JhdGUucHljCi0lJVBZVEhPTl9TSVRFTElCRElSJSUv ZWxlY3RydW1fZ3VpL2V4Y2hhbmdlX3JhdGUucHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxl Y3RydW1fZ3VpL2d1aV9jbGFzc2ljLnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1f Z3VpL2d1aV9jbGFzc2ljLnB5YwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9n dWlfY2xhc3NpYy5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvZ3VpX2d0 ay5weQotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9ndWlfZ3RrLnB5YwotJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9ndWlfZ3RrLnB5bwotJSVQWVRIT05fU0lU RUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9ndWlfbGl0ZS5weQotJSVQWVRIT05fU0lURUxJQkRJUiUl L2VsZWN0cnVtX2d1aS9ndWlfbGl0ZS5weWMKLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1 bV9ndWkvZ3VpX2xpdGUucHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2d1 aV90ZXh0LnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2d1aV90ZXh0LnB5 YwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9ndWlfdGV4dC5weW8KLSUlUFlU SE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvaGlzdG9yeV93aWRnZXQucHkKLSUlUFlUSE9O X1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvaGlzdG9yeV93aWRnZXQucHljCi0lJVBZVEhPTl9T SVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2hpc3Rvcnlfd2lkZ2V0LnB5bwotJSVQWVRIT05fU0lU RUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9pMThuLnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxl Y3RydW1fZ3VpL2kxOG4ucHljCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2kx OG4ucHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2ljb25zX3JjLnB5Ci0l JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2ljb25zX3JjLnB5YwotJSVQWVRIT05f U0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9pY29uc19yYy5weW8KLSUlUFlUSE9OX1NJVEVMSUJE SVIlJS9lbGVjdHJ1bV9ndWkvcGx1Z2lucy5weQotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0 cnVtX2d1aS9wbHVnaW5zLnB5YwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9w bHVnaW5zLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9weXFybmF0aXZl LnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3B5cXJuYXRpdmUucHljCi0l JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3B5cXJuYXRpdmUucHlvCi0lJVBZVEhP Tl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3FyY29kZXdpZGdldC5weQotJSVQWVRIT05fU0lU RUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xcmNvZGV3aWRnZXQucHljCi0lJVBZVEhPTl9TSVRFTElC RElSJSUvZWxlY3RydW1fZ3VpL3FyY29kZXdpZGdldC5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIl JS9lbGVjdHJ1bV9ndWkvcXRfY29uc29sZS5weQotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0 cnVtX2d1aS9xdF9jb25zb2xlLnB5YwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1 aS9xdF9jb25zb2xlLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9yZWNl aXZpbmdfd2lkZ2V0LnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3JlY2Vp dmluZ193aWRnZXQucHljCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3JlY2Vp dmluZ193aWRnZXQucHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy9f X2luaXRfXy5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9ndGsucHljCisl JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2d0ay5weW8KKyUlUFlUSE9OX1NJVEVM SUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvX19pbml0X18ucHljCislJVBZVEhPTl9TSVRFTElCRElS JSUvZWxlY3RydW1fZ3VpL3F0L19faW5pdF9fLnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2Vs ZWN0cnVtX2d1aS9xdC9hbW91bnRlZGl0LnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0 cnVtX2d1aS9xdC9hbW91bnRlZGl0LnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVt X2d1aS9xdC9jb25zb2xlLnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9x dC9jb25zb2xlLnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9oaXN0 b3J5X3dpZGdldC5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvaGlz dG9yeV93aWRnZXQucHlvCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L2lj b25zX3JjLnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9pY29uc19y Yy5weW8KKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvaW5zdGFsbHdpemFy ZC5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvaW5zdGFsbHdpemFy ZC5weW8KKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvbGl0ZV93aW5kb3cu cHljCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L2xpdGVfd2luZG93LnB5 bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9tYWluX3dpbmRvdy5weWMK KyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvbWFpbl93aW5kb3cucHlvCisl JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L25ldHdvcmtfZGlhbG9nLnB5Ywor JSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9uZXR3b3JrX2RpYWxvZy5weW8K KyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvcGFzc3dvcmRfZGlhbG9nLnB5 YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9wYXNzd29yZF9kaWFsb2cu cHlvCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3FyY29kZXdpZGdldC5w eWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvcXJjb2Rld2lkZ2V0LnB5 bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9yZWNlaXZpbmdfd2lkZ2V0 LnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9yZWNlaXZpbmdfd2lk Z2V0LnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9zZWVkX2RpYWxv Zy5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvc2VlZF9kaWFsb2cu cHlvCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3RyYW5zYWN0aW9uX2Rp YWxvZy5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvdHJhbnNhY3Rp b25fZGlhbG9nLnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC91dGls LnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC91dGlsLnB5bworJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC92ZXJzaW9uX2dldHRlci5weWMKKyUl UFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvdmVyc2lvbl9nZXR0ZXIucHlvCisl JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3N0ZGlvLnB5YworJSVQWVRIT05fU0lU RUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9zdGRpby5weW8KKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9l bGVjdHJ1bV9ndWkvdGV4dC5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkv dGV4dC5weW8KICUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9wbHVnaW5zL19faW5pdF9f LnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX3BsdWdpbnMvX19pbml0X18ucHlv Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy9hbGlhc2VzLnB5CiAlJVBZ VEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy9hbGlhc2VzLnB5YwogJSVQWVRIT05f U0lURUxJQkRJUiUlL2VsZWN0cnVtX3BsdWdpbnMvYWxpYXNlcy5weW8KLSUlUFlUSE9OX1NJVEVM SUJESVIlJS9lbGVjdHJ1bV9wbHVnaW5zL2xhYmVscy5weQorJSVQWVRIT05fU0lURUxJQkRJUiUl L2VsZWN0cnVtX3BsdWdpbnMvZXhjaGFuZ2VfcmF0ZS5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIl JS9lbGVjdHJ1bV9wbHVnaW5zL2V4Y2hhbmdlX3JhdGUucHlvCiAlJVBZVEhPTl9TSVRFTElCRElS JSUvZWxlY3RydW1fcGx1Z2lucy9sYWJlbHMucHljCiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxl Y3RydW1fcGx1Z2lucy9sYWJlbHMucHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1f cGx1Z2lucy9wb2ludG9mc2FsZS5weQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX3Bs dWdpbnMvcG9pbnRvZnNhbGUucHljCiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1 Z2lucy9wb2ludG9mc2FsZS5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9wbHVn aW5zL3Fyc2Nhbm5lci5weQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX3BsdWdpbnMv cXJzY2FubmVyLnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX3BsdWdpbnMvcXJz Y2FubmVyLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX3BsdWdpbnMvdmlydHVh bGtleWJvYXJkLnB5CiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy92aXJ0 dWFsa2V5Ym9hcmQucHljCiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy92 aXJ0dWFsa2V5Ym9hcmQucHlvCi1zaGFyZS9hcHAtaW5zdGFsbC9pY29ucy9lbGVjdHJ1bS5wbmcK IHNoYXJlL2FwcGxpY2F0aW9ucy9lbGVjdHJ1bS5kZXNrdG9wCitzaGFyZS9hcHAtaW5zdGFsbC9p Y29ucy9lbGVjdHJ1bS5wbmcKK3NoYXJlL2xvY2FsZS9qYV9KUC9MQ19NRVNTQUdFUy9lbGVjdHJ1 bS5tbworc2hhcmUvbG9jYWxlL2VvX1VZL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCitzaGFyZS9s b2NhbGUvdGFfSU4vTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KK3NoYXJlL2xvY2FsZS9reV9LRy9M Q19NRVNTQUdFUy9lbGVjdHJ1bS5tbworc2hhcmUvbG9jYWxlL3BsX1BML0xDX01FU1NBR0VTL2Vs ZWN0cnVtLm1vCitzaGFyZS9sb2NhbGUvaXRfSVQvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KK3No YXJlL2xvY2FsZS9odV9IVS9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5tbworc2hhcmUvbG9jYWxlL2Zy X0ZSL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCitzaGFyZS9sb2NhbGUvcHRfQlIvTENfTUVTU0FH RVMvZWxlY3RydW0ubW8KK3NoYXJlL2xvY2FsZS92aV9WTi9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5t bworc2hhcmUvbG9jYWxlL25sX05ML0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCitzaGFyZS9sb2Nh bGUvcnVfUlUvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KK3NoYXJlL2xvY2FsZS9lc19FUy9MQ19N RVNTQUdFUy9lbGVjdHJ1bS5tbworc2hhcmUvbG9jYWxlL3B0X1BUL0xDX01FU1NBR0VTL2VsZWN0 cnVtLm1vCitzaGFyZS9sb2NhbGUvZGVfREUvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KK3NoYXJl L2xvY2FsZS9pZF9JRC9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5tbworc2hhcmUvbG9jYWxlL2x2X0xW L0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCitzaGFyZS9sb2NhbGUvYXJfU0EvTENfTUVTU0FHRVMv ZWxlY3RydW0ubW8KK3NoYXJlL2xvY2FsZS9jc19DWi9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5tbwor c2hhcmUvbG9jYWxlL3NsX1NJL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCitzaGFyZS9sb2NhbGUv emhfQ04vTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KIHNoYXJlL2VsZWN0cnVtL1JFQURNRQogc2hh cmUvZWxlY3RydW0vY2xlYW5sb29rL25hbWUuY2ZnCiBzaGFyZS9lbGVjdHJ1bS9jbGVhbmxvb2sv c3R5bGUuY3NzCitzaGFyZS9lbGVjdHJ1bS9zYWhhcmEvbmFtZS5jZmcKK3NoYXJlL2VsZWN0cnVt L3NhaGFyYS9zdHlsZS5jc3MKIHNoYXJlL2VsZWN0cnVtL2RhcmsvYmFja2dyb3VuZC5wbmcKIHNo YXJlL2VsZWN0cnVtL2RhcmsvbmFtZS5jZmcKIHNoYXJlL2VsZWN0cnVtL2Rhcmsvc3R5bGUuY3Nz Ci1zaGFyZS9lbGVjdHJ1bS9zYWhhcmEvbmFtZS5jZmcKLXNoYXJlL2VsZWN0cnVtL3NhaGFyYS9z dHlsZS5jc3MKLXNoYXJlL2xvY2FsZS9ici9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5tbwotc2hhcmUv bG9jYWxlL2NzL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCi1zaGFyZS9sb2NhbGUvZGUvTENfTUVT U0FHRVMvZWxlY3RydW0ubW8KLXNoYXJlL2xvY2FsZS9lby9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5t bwotc2hhcmUvbG9jYWxlL2VzL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCi1zaGFyZS9sb2NhbGUv ZnIvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KLXNoYXJlL2xvY2FsZS9pdC9MQ19NRVNTQUdFUy9l bGVjdHJ1bS5tbwotc2hhcmUvbG9jYWxlL2phL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCi1zaGFy ZS9sb2NhbGUvbHYvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KLXNoYXJlL2xvY2FsZS9ubC9MQ19N RVNTQUdFUy9lbGVjdHJ1bS5tbwotc2hhcmUvbG9jYWxlL3J1L0xDX01FU1NBR0VTL2VsZWN0cnVt Lm1vCi1zaGFyZS9sb2NhbGUvc2wvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KLXNoYXJlL2xvY2Fs ZS90YS9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5tbwotc2hhcmUvbG9jYWxlL3ZpL0xDX01FU1NBR0VT L2VsZWN0cnVtLm1vCi1zaGFyZS9sb2NhbGUvemgvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KK3No YXJlL2xpY2Vuc2VzL2VsZWN0cnVtLTEuOS42L2NhdGFsb2cubWsKK3NoYXJlL2xpY2Vuc2VzL2Vs ZWN0cnVtLTEuOS42L0xJQ0VOU0UKK3NoYXJlL2xpY2Vuc2VzL2VsZWN0cnVtLTEuOS42L0dQTHYz CislJVBZVEhPTl9TSVRFTElCRElSJSUvRWxlY3RydW0tMS45LjYtcHkyLjcuZWdnLWluZm8vU09V UkNFUy50eHQKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9FbGVjdHJ1bS0xLjkuNi1weTIuNy5lZ2ct aW5mby9kZXBlbmRlbmN5X2xpbmtzLnR4dAorJSVQWVRIT05fU0lURUxJQkRJUiUlL0VsZWN0cnVt LTEuOS42LXB5Mi43LmVnZy1pbmZvL3RvcF9sZXZlbC50eHQKKyUlUFlUSE9OX1NJVEVMSUJESVIl JS9FbGVjdHJ1bS0xLjkuNi1weTIuNy5lZ2ctaW5mby9QS0ctSU5GTworJSVQWVRIT05fU0lURUxJ QkRJUiUlL0VsZWN0cnVtLTEuOS42LXB5Mi43LmVnZy1pbmZvL3JlcXVpcmVzLnR4dAorYmluL2Vs ZWN0cnVtCiBAZGlycm0gc2hhcmUvZWxlY3RydW0vc2FoYXJhCiBAZGlycm0gc2hhcmUvZWxlY3Ry dW0vZGFyawogQGRpcnJtIHNoYXJlL2VsZWN0cnVtL2NsZWFubG9vawogQGRpcnJtIHNoYXJlL2Vs ZWN0cnVtCi1AZGlycm10cnkgc2hhcmUvYXBwLWluc3RhbGwvaWNvbnMKLUBkaXJybXRyeSBzaGFy ZS9hcHAtaW5zdGFsbAorQGRpcnJtIHNoYXJlL2xpY2Vuc2VzL2VsZWN0cnVtLTEuOS42CitAZGly cm0gJSVQWVRIT05fU0lURUxJQkRJUiUlL0VsZWN0cnVtLTEuOS42LXB5Mi43LmVnZy1pbmZvCiBA ZGlycm0gJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX3BsdWdpbnMKK0BkaXJybSAlJVBZ VEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0CiBAZGlycm0gJSVQWVRIT05fU0lURUxJ QkRJUiUlL2VsZWN0cnVtX2d1aQorQGRpcnJtICUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1 bV9wbHVnaW5zCiBAZGlycm0gJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtCg== --089e0160c0b6aca73e04eee621d2-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 10:30:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7AB735C6 for ; Wed, 1 Jan 2014 10:30:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 678CE1AA8 for ; Wed, 1 Jan 2014 10:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01AU2jv074698 for ; Wed, 1 Jan 2014 10:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01AU27c074697; Wed, 1 Jan 2014 10:30:02 GMT (envelope-from gnats) Date: Wed, 1 Jan 2014 10:30:02 GMT Message-Id: <201401011030.s01AU27c074697@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Neil Subject: Re: ports/185360: Update the port finance/electrum to the latest release 1.9.6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Neil List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 10:30:02 -0000 The following reply was made to PR ports/185360; it has been noted by GNATS. From: Neil To: bug-followup@FreeBSD.org, kyuupichan@gmail.com Cc: Subject: Re: ports/185360: Update the port finance/electrum to the latest release 1.9.6 Date: Wed, 1 Jan 2014 19:21:40 +0900 --089e013a0d42fc3faa04eee60a77 Content-Type: multipart/alternative; boundary=089e013a0d42fc3fa104eee60a75 --089e013a0d42fc3fa104eee60a75 Content-Type: text/plain; charset=UTF-8 Unclear what the issue with my submission was, other than it was a shar not a diff. I've attached a diff. Neil. --089e013a0d42fc3fa104eee60a75 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
Unclear what the issue with my submission was, other than = it was a shar not a diff.=C2=A0 I've attached a diff.

Neil.
<= /div> --089e013a0d42fc3fa104eee60a75-- --089e013a0d42fc3faa04eee60a77 Content-Type: text/plain; charset=US-ASCII; name="electrum.diff.txt" Content-Disposition: attachment; filename="electrum.diff.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hpwfq9s10 ZGlmZiAtdSBlbGVjdHJ1bS9NYWtlZmlsZSBlbGVjdHJ1bS0xLjkuNi9NYWtlZmlsZQotLS0gZWxl Y3RydW0vTWFrZWZpbGUJMjAxNC0wMS0wMSAxOToxODowNC4zMjA4MDgwMDAgKzA5MDAKKysrIGVs ZWN0cnVtLTEuOS42L01ha2VmaWxlCTIwMTMtMTItMzEgMTY6MDQ6NDIuNjcwOTU4MDAwICswOTAw CkBAIC0yLDkgKzIsOSBAQAogIyAkRnJlZUJTRDogZmluYW5jZS9lbGVjdHJ1bS9NYWtlZmlsZSAz Mjc3MjcgMjAxMy0wOS0yMCAxNzoxODozOFogYmFwdCAkCiAKIFBPUlROQU1FPQllbGVjdHJ1bQot UE9SVFZFUlNJT049CTEuNy4zCitQT1JUVkVSU0lPTj0JMS45LjYKIENBVEVHT1JJRVM9CWZpbmFu Y2UgcHl0aG9uCi1NQVNURVJfU0lURVM9CWh0dHA6Ly9kb3dubG9hZC5lbGVjdHJ1bS5vcmcvZG93 bmxvYWQvCitNQVNURVJfU0lURVM9CWh0dHBzOi8vZG93bmxvYWQuZWxlY3RydW0ub3JnLwogRElT VE5BTUU9CUVsZWN0cnVtLSR7UE9SVFZFUlNJT059CiAKIE1BSU5UQUlORVI9CWt5dXVwaWNoYW5A Z21haWwuY29tCmRpZmYgLXUgZWxlY3RydW0vZGlzdGluZm8gZWxlY3RydW0tMS45LjYvZGlzdGlu Zm8KLS0tIGVsZWN0cnVtL2Rpc3RpbmZvCTIwMTQtMDEtMDEgMTk6MTg6MDQuMzYwODA4MDAwICsw OTAwCisrKyBlbGVjdHJ1bS0xLjkuNi9kaXN0aW5mbwkyMDEzLTEyLTMxIDE1OjUyOjA5LjY1NjAx NzAwMCArMDkwMApAQCAtMSwyICsxLDIgQEAKLVNIQTI1NiAoRWxlY3RydW0tMS43LjMudGFyLmd6 KSA9IGJkMTZhZmFmYTcwYzZjMTA0ZWI4MjcyM2JmNDU1NTQwNTc3NGM0OGY2NzIzNTkzZTk1ZWY0 OWRlMGI4ZjNlNTEKLVNJWkUgKEVsZWN0cnVtLTEuNy4zLnRhci5neikgPSA0OTIwNzYKK1NIQTI1 NiAoRWxlY3RydW0tMS45LjYudGFyLmd6KSA9IGU1NDE4NmI4MzQ3MmRhODM4NDNmY2VlZjhkMTc0 ZTExOTg2NDdjZmM0MjdjOTU4Y2NjNmZkMzQ1MWMyYTgxMzIKK1NJWkUgKEVsZWN0cnVtLTEuOS42 LnRhci5neikgPSA3NDIyNjEKQ29tbW9uIHN1YmRpcmVjdG9yaWVzOiBlbGVjdHJ1bS9maWxlcyBh bmQgZWxlY3RydW0tMS45LjYvZmlsZXMKZGlmZiAtdSBlbGVjdHJ1bS9wa2ctcGxpc3QgZWxlY3Ry dW0tMS45LjYvcGtnLXBsaXN0Ci0tLSBlbGVjdHJ1bS9wa2ctcGxpc3QJMjAxNC0wMS0wMSAxOTox ODowNC4zOTA4MDgwMDAgKzA5MDAKKysrIGVsZWN0cnVtLTEuOS42L3BrZy1wbGlzdAkyMDEzLTEy LTMxIDE2OjMxOjU2LjM5MDAyMTAwMCArMDkwMApAQCAtMSwxNDYgKzEsMTk4IEBACi1iaW4vZWxl Y3RydW0KICUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9fX2luaXRfXy5weQorJSVQWVRI T05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2FjY291bnQucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIl JS9lbGVjdHJ1bS9iaXRjb2luLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vYmxv Y2tjaGFpbi5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2JtcC5weQorJSVQWVRI T05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2NvbW1hbmRzLnB5CislJVBZVEhPTl9TSVRFTElCRElS JSUvZWxlY3RydW0vaTE4bi5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2ludGVy ZmFjZS5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL21uZW1vbmljLnB5CislJVBZ VEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vbXNxci5weQorJSVQWVRIT05fU0lURUxJQkRJUiUl L2VsZWN0cnVtL25ldHdvcmsucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9wbHVn aW5zLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vcHlxcm5hdGl2ZS5weQorJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3NpbXBsZV9jb25maWcucHkKKyUlUFlUSE9OX1NJ VEVMSUJESVIlJS9lbGVjdHJ1bS9zb2Nrcy5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0 cnVtL3RyYW5zYWN0aW9uLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vdXRpbC5w eQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3ZlcmlmaWVyLnB5CislJVBZVEhPTl9T SVRFTElCRElSJSUvZWxlY3RydW0vdmVyc2lvbi5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2Vs ZWN0cnVtL3dhbGxldC5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3dhbGxldF9i aXRrZXkucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS93YWxsZXRfZmFjdG9yeS5w eQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9fX2luaXRfXy5weQorJSVQWVRI T05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9ndGsucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIl JS9lbGVjdHJ1bV9ndWkvcXQvX19pbml0X18ucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVj dHJ1bV9ndWkvcXQvYW1vdW50ZWRpdC5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVt X2d1aS9xdC9jb25zb2xlLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0 L2hpc3Rvcnlfd2lkZ2V0LnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0 L2ljb25zX3JjLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L2luc3Rh bGx3aXphcmQucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvbGl0ZV93 aW5kb3cucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvbWFpbl93aW5k b3cucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvbmV0d29ya19kaWFs b2cucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvcGFzc3dvcmRfZGlh bG9nLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3FyY29kZXdpZGdl dC5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9yZWNlaXZpbmdfd2lk Z2V0LnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3NlZWRfZGlhbG9n LnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3RyYW5zYWN0aW9uX2Rp YWxvZy5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC91dGlsLnB5Cisl JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3ZlcnNpb25fZ2V0dGVyLnB5Cisl JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3N0ZGlvLnB5CislJVBZVEhPTl9TSVRF TElCRElSJSUvZWxlY3RydW1fZ3VpL3RleHQucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVj dHJ1bV9wbHVnaW5zL19faW5pdF9fLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1f cGx1Z2lucy9hbGlhc2VzLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lu cy9leGNoYW5nZV9yYXRlLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lu cy9sYWJlbHMucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9wbHVnaW5zL3BvaW50 b2ZzYWxlLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy9xcnNjYW5u ZXIucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9wbHVnaW5zL3ZpcnR1YWxrZXli b2FyZC5weQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL19faW5pdF9fLnB5YwogJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL19faW5pdF9fLnB5bwotJSVQWVRIT05fU0lURUxJ QkRJUiUlL2VsZWN0cnVtL2JpdGNvaW4ucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1 bS9hY2NvdW50LnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2FjY291bnQucHlv CiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vYml0Y29pbi5weWMKICUlUFlUSE9OX1NJ VEVMSUJESVIlJS9lbGVjdHJ1bS9iaXRjb2luLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2Vs ZWN0cnVtL2NvbW1hbmRzLnB5CislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vYmxvY2tj aGFpbi5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9ibG9ja2NoYWluLnB5bwor JSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2JtcC5weWMKKyUlUFlUSE9OX1NJVEVMSUJE SVIlJS9lbGVjdHJ1bS9ibXAucHlvCiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vY29t bWFuZHMucHljCiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vY29tbWFuZHMucHlvCi0l JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vZGVzZXJpYWxpemUucHkKLSUlUFlUSE9OX1NJ VEVMSUJESVIlJS9lbGVjdHJ1bS9kZXNlcmlhbGl6ZS5weWMKLSUlUFlUSE9OX1NJVEVMSUJESVIl JS9lbGVjdHJ1bS9kZXNlcmlhbGl6ZS5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1 bS9pbnRlcmZhY2UucHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9pMThuLnB5Ywor JSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL2kxOG4ucHlvCiAlJVBZVEhPTl9TSVRFTElC RElSJSUvZWxlY3RydW0vaW50ZXJmYWNlLnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0 cnVtL2ludGVyZmFjZS5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9tbmVtb25p Yy5weQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL21uZW1vbmljLnB5YwogJSVQWVRI T05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL21uZW1vbmljLnB5bwotJSVQWVRIT05fU0lURUxJQkRJ UiUlL2VsZWN0cnVtL21zcXIucHkKICUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9tc3Fy LnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL21zcXIucHlvCi0lJVBZVEhPTl9T SVRFTElCRElSJSUvZWxlY3RydW0vc2ltcGxlX2NvbmZpZy5weQorJSVQWVRIT05fU0lURUxJQkRJ UiUlL2VsZWN0cnVtL25ldHdvcmsucHljCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0v bmV0d29yay5weW8KKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9wbHVnaW5zLnB5Ywor JSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3BsdWdpbnMucHlvCislJVBZVEhPTl9TSVRF TElCRElSJSUvZWxlY3RydW0vcHlxcm5hdGl2ZS5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9l bGVjdHJ1bS9weXFybmF0aXZlLnB5bwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3Np bXBsZV9jb25maWcucHljCiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vc2ltcGxlX2Nv bmZpZy5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS9zb2Nrcy5weQogJSVQWVRI T05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3NvY2tzLnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUl L2VsZWN0cnVtL3NvY2tzLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3V0aWwu cHkKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS90cmFuc2FjdGlvbi5weWMKKyUlUFlU SE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS90cmFuc2FjdGlvbi5weW8KICUlUFlUSE9OX1NJVEVM SUJESVIlJS9lbGVjdHJ1bS91dGlsLnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVt L3V0aWwucHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vdmVyaWZpZXIucHkKICUl UFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS92ZXJpZmllci5weWMKICUlUFlUSE9OX1NJVEVM SUJESVIlJS9lbGVjdHJ1bS92ZXJpZmllci5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVj dHJ1bS92ZXJzaW9uLnB5CiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vdmVyc2lvbi5w eWMKICUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS92ZXJzaW9uLnB5bwotJSVQWVRIT05f U0lURUxJQkRJUiUlL2VsZWN0cnVtL3dhbGxldC5weQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2Vs ZWN0cnVtL3dhbGxldC5weWMKICUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bS93YWxsZXQu cHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW0vd2FsbGV0X2JpdGtleS5weQogJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtL3dhbGxldF9iaXRrZXkucHljCiAlJVBZVEhPTl9T SVRFTElCRElSJSUvZWxlY3RydW0vd2FsbGV0X2JpdGtleS5weW8KLSUlUFlUSE9OX1NJVEVMSUJE SVIlJS9lbGVjdHJ1bS93YWxsZXRfZmFjdG9yeS5weQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2Vs ZWN0cnVtL3dhbGxldF9mYWN0b3J5LnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVt L3dhbGxldF9mYWN0b3J5LnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9f X2luaXRfXy5weQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9fX2luaXRfXy5w eWMKICUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvX19pbml0X18ucHlvCi0lJVBZ VEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2Ftb3VudGVkaXQucHkKLSUlUFlUSE9OX1NJ VEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvYW1vdW50ZWRpdC5weWMKLSUlUFlUSE9OX1NJVEVMSUJE SVIlJS9lbGVjdHJ1bV9ndWkvYW1vdW50ZWRpdC5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9l bGVjdHJ1bV9ndWkvYm1wLnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2Jt cC5weWMKLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvYm1wLnB5bwotJSVQWVRI T05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9leGNoYW5nZV9yYXRlLnB5Ci0lJVBZVEhPTl9T SVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2V4Y2hhbmdlX3JhdGUucHljCi0lJVBZVEhPTl9TSVRF TElCRElSJSUvZWxlY3RydW1fZ3VpL2V4Y2hhbmdlX3JhdGUucHlvCi0lJVBZVEhPTl9TSVRFTElC RElSJSUvZWxlY3RydW1fZ3VpL2d1aV9jbGFzc2ljLnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUv ZWxlY3RydW1fZ3VpL2d1aV9jbGFzc2ljLnB5YwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0 cnVtX2d1aS9ndWlfY2xhc3NpYy5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9n dWkvZ3VpX2d0ay5weQotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9ndWlfZ3Rr LnB5YwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9ndWlfZ3RrLnB5bwotJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9ndWlfbGl0ZS5weQotJSVQWVRIT05fU0lU RUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9ndWlfbGl0ZS5weWMKLSUlUFlUSE9OX1NJVEVMSUJESVIl JS9lbGVjdHJ1bV9ndWkvZ3VpX2xpdGUucHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3Ry dW1fZ3VpL2d1aV90ZXh0LnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2d1 aV90ZXh0LnB5YwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9ndWlfdGV4dC5w eW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvaGlzdG9yeV93aWRnZXQucHkK LSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvaGlzdG9yeV93aWRnZXQucHljCi0l JVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2hpc3Rvcnlfd2lkZ2V0LnB5bwotJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9pMThuLnB5Ci0lJVBZVEhPTl9TSVRFTElC RElSJSUvZWxlY3RydW1fZ3VpL2kxOG4ucHljCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3Ry dW1fZ3VpL2kxOG4ucHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2ljb25z X3JjLnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2ljb25zX3JjLnB5Ywot JSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9pY29uc19yYy5weW8KLSUlUFlUSE9O X1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcGx1Z2lucy5weQotJSVQWVRIT05fU0lURUxJQkRJ UiUlL2VsZWN0cnVtX2d1aS9wbHVnaW5zLnB5YwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0 cnVtX2d1aS9wbHVnaW5zLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9w eXFybmF0aXZlLnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3B5cXJuYXRp dmUucHljCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3B5cXJuYXRpdmUucHlv Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3FyY29kZXdpZGdldC5weQotJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xcmNvZGV3aWRnZXQucHljCi0lJVBZVEhP Tl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3FyY29kZXdpZGdldC5weW8KLSUlUFlUSE9OX1NJ VEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXRfY29uc29sZS5weQotJSVQWVRIT05fU0lURUxJQkRJ UiUlL2VsZWN0cnVtX2d1aS9xdF9jb25zb2xlLnB5YwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2Vs ZWN0cnVtX2d1aS9xdF9jb25zb2xlLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVt X2d1aS9yZWNlaXZpbmdfd2lkZ2V0LnB5Ci0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1f Z3VpL3JlY2VpdmluZ193aWRnZXQucHljCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1f Z3VpL3JlY2VpdmluZ193aWRnZXQucHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1f cGx1Z2lucy9fX2luaXRfXy5weQorJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9n dGsucHljCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL2d0ay5weW8KKyUlUFlU SE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvX19pbml0X18ucHljCislJVBZVEhPTl9T SVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L19faW5pdF9fLnB5bworJSVQWVRIT05fU0lURUxJ QkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9hbW91bnRlZGl0LnB5YworJSVQWVRIT05fU0lURUxJQkRJ UiUlL2VsZWN0cnVtX2d1aS9xdC9hbW91bnRlZGl0LnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUl L2VsZWN0cnVtX2d1aS9xdC9jb25zb2xlLnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0 cnVtX2d1aS9xdC9jb25zb2xlLnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1 aS9xdC9oaXN0b3J5X3dpZGdldC5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9n dWkvcXQvaGlzdG9yeV93aWRnZXQucHlvCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1f Z3VpL3F0L2ljb25zX3JjLnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9x dC9pY29uc19yYy5weW8KKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvaW5z dGFsbHdpemFyZC5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvaW5z dGFsbHdpemFyZC5weW8KKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvbGl0 ZV93aW5kb3cucHljCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L2xpdGVf d2luZG93LnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9tYWluX3dp bmRvdy5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvbWFpbl93aW5k b3cucHlvCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L25ldHdvcmtfZGlh bG9nLnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9uZXR3b3JrX2Rp YWxvZy5weW8KKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvcGFzc3dvcmRf ZGlhbG9nLnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9wYXNzd29y ZF9kaWFsb2cucHlvCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3FyY29k ZXdpZGdldC5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvcXJjb2Rl d2lkZ2V0LnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9yZWNlaXZp bmdfd2lkZ2V0LnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9yZWNl aXZpbmdfd2lkZ2V0LnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC9z ZWVkX2RpYWxvZy5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvc2Vl ZF9kaWFsb2cucHlvCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0L3RyYW5z YWN0aW9uX2RpYWxvZy5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQv dHJhbnNhY3Rpb25fZGlhbG9nLnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1 aS9xdC91dGlsLnB5YworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC91dGls LnB5bworJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9xdC92ZXJzaW9uX2dldHRl ci5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9ndWkvcXQvdmVyc2lvbl9nZXR0 ZXIucHlvCislJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3N0ZGlvLnB5YworJSVQ WVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aS9zdGRpby5weW8KKyUlUFlUSE9OX1NJVEVM SUJESVIlJS9lbGVjdHJ1bV9ndWkvdGV4dC5weWMKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVj dHJ1bV9ndWkvdGV4dC5weW8KICUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9wbHVnaW5z L19faW5pdF9fLnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX3BsdWdpbnMvX19p bml0X18ucHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy9hbGlhc2Vz LnB5CiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy9hbGlhc2VzLnB5Ywog JSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX3BsdWdpbnMvYWxpYXNlcy5weW8KLSUlUFlU SE9OX1NJVEVMSUJESVIlJS9lbGVjdHJ1bV9wbHVnaW5zL2xhYmVscy5weQorJSVQWVRIT05fU0lU RUxJQkRJUiUlL2VsZWN0cnVtX3BsdWdpbnMvZXhjaGFuZ2VfcmF0ZS5weWMKKyUlUFlUSE9OX1NJ VEVMSUJESVIlJS9lbGVjdHJ1bV9wbHVnaW5zL2V4Y2hhbmdlX3JhdGUucHlvCiAlJVBZVEhPTl9T SVRFTElCRElSJSUvZWxlY3RydW1fcGx1Z2lucy9sYWJlbHMucHljCiAlJVBZVEhPTl9TSVRFTElC RElSJSUvZWxlY3RydW1fcGx1Z2lucy9sYWJlbHMucHlvCi0lJVBZVEhPTl9TSVRFTElCRElSJSUv ZWxlY3RydW1fcGx1Z2lucy9wb2ludG9mc2FsZS5weQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2Vs ZWN0cnVtX3BsdWdpbnMvcG9pbnRvZnNhbGUucHljCiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxl Y3RydW1fcGx1Z2lucy9wb2ludG9mc2FsZS5weW8KLSUlUFlUSE9OX1NJVEVMSUJESVIlJS9lbGVj dHJ1bV9wbHVnaW5zL3Fyc2Nhbm5lci5weQogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVt X3BsdWdpbnMvcXJzY2FubmVyLnB5YwogJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX3Bs dWdpbnMvcXJzY2FubmVyLnB5bwotJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX3BsdWdp bnMvdmlydHVhbGtleWJvYXJkLnB5CiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fcGx1 Z2lucy92aXJ0dWFsa2V5Ym9hcmQucHljCiAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1f cGx1Z2lucy92aXJ0dWFsa2V5Ym9hcmQucHlvCi1zaGFyZS9hcHAtaW5zdGFsbC9pY29ucy9lbGVj dHJ1bS5wbmcKIHNoYXJlL2FwcGxpY2F0aW9ucy9lbGVjdHJ1bS5kZXNrdG9wCitzaGFyZS9hcHAt aW5zdGFsbC9pY29ucy9lbGVjdHJ1bS5wbmcKK3NoYXJlL2xvY2FsZS9qYV9KUC9MQ19NRVNTQUdF Uy9lbGVjdHJ1bS5tbworc2hhcmUvbG9jYWxlL2VvX1VZL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1v CitzaGFyZS9sb2NhbGUvdGFfSU4vTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KK3NoYXJlL2xvY2Fs ZS9reV9LRy9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5tbworc2hhcmUvbG9jYWxlL3BsX1BML0xDX01F U1NBR0VTL2VsZWN0cnVtLm1vCitzaGFyZS9sb2NhbGUvaXRfSVQvTENfTUVTU0FHRVMvZWxlY3Ry dW0ubW8KK3NoYXJlL2xvY2FsZS9odV9IVS9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5tbworc2hhcmUv bG9jYWxlL2ZyX0ZSL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCitzaGFyZS9sb2NhbGUvcHRfQlIv TENfTUVTU0FHRVMvZWxlY3RydW0ubW8KK3NoYXJlL2xvY2FsZS92aV9WTi9MQ19NRVNTQUdFUy9l bGVjdHJ1bS5tbworc2hhcmUvbG9jYWxlL25sX05ML0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCitz aGFyZS9sb2NhbGUvcnVfUlUvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KK3NoYXJlL2xvY2FsZS9l c19FUy9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5tbworc2hhcmUvbG9jYWxlL3B0X1BUL0xDX01FU1NB R0VTL2VsZWN0cnVtLm1vCitzaGFyZS9sb2NhbGUvZGVfREUvTENfTUVTU0FHRVMvZWxlY3RydW0u bW8KK3NoYXJlL2xvY2FsZS9pZF9JRC9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5tbworc2hhcmUvbG9j YWxlL2x2X0xWL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCitzaGFyZS9sb2NhbGUvYXJfU0EvTENf TUVTU0FHRVMvZWxlY3RydW0ubW8KK3NoYXJlL2xvY2FsZS9jc19DWi9MQ19NRVNTQUdFUy9lbGVj dHJ1bS5tbworc2hhcmUvbG9jYWxlL3NsX1NJL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCitzaGFy ZS9sb2NhbGUvemhfQ04vTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KIHNoYXJlL2VsZWN0cnVtL1JF QURNRQogc2hhcmUvZWxlY3RydW0vY2xlYW5sb29rL25hbWUuY2ZnCiBzaGFyZS9lbGVjdHJ1bS9j bGVhbmxvb2svc3R5bGUuY3NzCitzaGFyZS9lbGVjdHJ1bS9zYWhhcmEvbmFtZS5jZmcKK3NoYXJl L2VsZWN0cnVtL3NhaGFyYS9zdHlsZS5jc3MKIHNoYXJlL2VsZWN0cnVtL2RhcmsvYmFja2dyb3Vu ZC5wbmcKIHNoYXJlL2VsZWN0cnVtL2RhcmsvbmFtZS5jZmcKIHNoYXJlL2VsZWN0cnVtL2Rhcmsv c3R5bGUuY3NzCi1zaGFyZS9lbGVjdHJ1bS9zYWhhcmEvbmFtZS5jZmcKLXNoYXJlL2VsZWN0cnVt L3NhaGFyYS9zdHlsZS5jc3MKLXNoYXJlL2xvY2FsZS9ici9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5t bwotc2hhcmUvbG9jYWxlL2NzL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCi1zaGFyZS9sb2NhbGUv ZGUvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KLXNoYXJlL2xvY2FsZS9lby9MQ19NRVNTQUdFUy9l bGVjdHJ1bS5tbwotc2hhcmUvbG9jYWxlL2VzL0xDX01FU1NBR0VTL2VsZWN0cnVtLm1vCi1zaGFy ZS9sb2NhbGUvZnIvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KLXNoYXJlL2xvY2FsZS9pdC9MQ19N RVNTQUdFUy9lbGVjdHJ1bS5tbwotc2hhcmUvbG9jYWxlL2phL0xDX01FU1NBR0VTL2VsZWN0cnVt Lm1vCi1zaGFyZS9sb2NhbGUvbHYvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KLXNoYXJlL2xvY2Fs ZS9ubC9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5tbwotc2hhcmUvbG9jYWxlL3J1L0xDX01FU1NBR0VT L2VsZWN0cnVtLm1vCi1zaGFyZS9sb2NhbGUvc2wvTENfTUVTU0FHRVMvZWxlY3RydW0ubW8KLXNo YXJlL2xvY2FsZS90YS9MQ19NRVNTQUdFUy9lbGVjdHJ1bS5tbwotc2hhcmUvbG9jYWxlL3ZpL0xD X01FU1NBR0VTL2VsZWN0cnVtLm1vCi1zaGFyZS9sb2NhbGUvemgvTENfTUVTU0FHRVMvZWxlY3Ry dW0ubW8KK3NoYXJlL2xpY2Vuc2VzL2VsZWN0cnVtLTEuOS42L2NhdGFsb2cubWsKK3NoYXJlL2xp Y2Vuc2VzL2VsZWN0cnVtLTEuOS42L0xJQ0VOU0UKK3NoYXJlL2xpY2Vuc2VzL2VsZWN0cnVtLTEu OS42L0dQTHYzCislJVBZVEhPTl9TSVRFTElCRElSJSUvRWxlY3RydW0tMS45LjYtcHkyLjcuZWdn LWluZm8vU09VUkNFUy50eHQKKyUlUFlUSE9OX1NJVEVMSUJESVIlJS9FbGVjdHJ1bS0xLjkuNi1w eTIuNy5lZ2ctaW5mby9kZXBlbmRlbmN5X2xpbmtzLnR4dAorJSVQWVRIT05fU0lURUxJQkRJUiUl L0VsZWN0cnVtLTEuOS42LXB5Mi43LmVnZy1pbmZvL3RvcF9sZXZlbC50eHQKKyUlUFlUSE9OX1NJ VEVMSUJESVIlJS9FbGVjdHJ1bS0xLjkuNi1weTIuNy5lZ2ctaW5mby9QS0ctSU5GTworJSVQWVRI T05fU0lURUxJQkRJUiUlL0VsZWN0cnVtLTEuOS42LXB5Mi43LmVnZy1pbmZvL3JlcXVpcmVzLnR4 dAorYmluL2VsZWN0cnVtCiBAZGlycm0gc2hhcmUvZWxlY3RydW0vc2FoYXJhCiBAZGlycm0gc2hh cmUvZWxlY3RydW0vZGFyawogQGRpcnJtIHNoYXJlL2VsZWN0cnVtL2NsZWFubG9vawogQGRpcnJt IHNoYXJlL2VsZWN0cnVtCi1AZGlycm10cnkgc2hhcmUvYXBwLWluc3RhbGwvaWNvbnMKLUBkaXJy bXRyeSBzaGFyZS9hcHAtaW5zdGFsbAorQGRpcnJtIHNoYXJlL2xpY2Vuc2VzL2VsZWN0cnVtLTEu OS42CitAZGlycm0gJSVQWVRIT05fU0lURUxJQkRJUiUlL0VsZWN0cnVtLTEuOS42LXB5Mi43LmVn Zy1pbmZvCiBAZGlycm0gJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX3BsdWdpbnMKK0Bk aXJybSAlJVBZVEhPTl9TSVRFTElCRElSJSUvZWxlY3RydW1fZ3VpL3F0CiBAZGlycm0gJSVQWVRI T05fU0lURUxJQkRJUiUlL2VsZWN0cnVtX2d1aQorQGRpcnJtICUlUFlUSE9OX1NJVEVMSUJESVIl JS9lbGVjdHJ1bV9wbHVnaW5zCiBAZGlycm0gJSVQWVRIT05fU0lURUxJQkRJUiUlL2VsZWN0cnVt Cg== --089e013a0d42fc3faa04eee60a77-- From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 16:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3C329D9 for ; Wed, 1 Jan 2014 16:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF553101E for ; Wed, 1 Jan 2014 16:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01G00vU047564 for ; Wed, 1 Jan 2014 16:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01G00fq047563; Wed, 1 Jan 2014 16:00:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 16:00:00 GMT Resent-Message-Id: <201401011600.s01G00fq047563@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 Chen Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8D15D79B for ; Wed, 1 Jan 2014 15:52:33 +0000 (UTC) Received: from www.johnpupu.tw (60-199-173-18.static.tfn.net.tw [60.199.173.18]) by mx1.freebsd.org (Postfix) with ESMTP id 5581D1FC2 for ; Wed, 1 Jan 2014 15:52:31 +0000 (UTC) Received: from www.johnpupu.tw (localhost [127.0.0.1]) by www.johnpupu.tw (Postfix) with ESMTP id BFB7D536003 for ; Wed, 1 Jan 2014 23:52:23 +0800 (CST) Received: (from root@localhost) by www.johnpupu.tw (8.14.5/8.14.5/Submit) id s01FqN5Z064743; Wed, 1 Jan 2014 23:52:23 +0800 (CST) (envelope-from johnpupu) Message-Id: <201401011552.s01FqN5Z064743@www.johnpupu.tw> Date: Wed, 1 Jan 2014 23:52:23 +0800 (CST) From: John Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185386: [MAINTAINER] devel/pecl-pthreads: update to 0.0.45 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 16:00:01 -0000 >Number: 185386 >Category: ports >Synopsis: [MAINTAINER] devel/pecl-pthreads: update to 0.0.45 >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 Jan 01 16:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: John Chen >Release: FreeBSD 9.1-RELEASE amd64 >Organization: Watcher >Environment: System: FreeBSD www.johnpupu.tw 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 >Description: - Update to 0.0.45 Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- pecl-pthreads-0.0.45.patch begins here --- diff -ruN --exclude=CVS ../pecl-pthreads.orig/Makefile ./Makefile --- ../pecl-pthreads.orig/Makefile 2013-12-31 09:10:23.000000000 +0800 +++ ./Makefile 2014-01-01 23:48:55.000000000 +0800 @@ -2,7 +2,7 @@ # $FreeBSD: head/devel/pecl-pthreads/Makefile 338065 2013-12-30 09:12:33Z sunpoet $ PORTNAME= pthreads -PORTVERSION= 0.0.44 +PORTVERSION= 0.0.45 CATEGORIES= devel MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- diff -ruN --exclude=CVS ../pecl-pthreads.orig/distinfo ./distinfo --- ../pecl-pthreads.orig/distinfo 2013-08-10 23:56:27.000000000 +0800 +++ ./distinfo 2014-01-01 23:48:58.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PECL/pthreads-0.0.44.tgz) = a66e658e972007355f9e136cd805126c80d396fe7507118236e53c1681f97c93 -SIZE (PECL/pthreads-0.0.44.tgz) = 58921 +SHA256 (PECL/pthreads-0.0.45.tgz) = 391cf13bd7d05b68be7bf38f09f0c20ee2d31d9eeb48f44e381a11fe4a634108 +SIZE (PECL/pthreads-0.0.45.tgz) = 63703 --- pecl-pthreads-0.0.45.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 16:00:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9285BA0D; Wed, 1 Jan 2014 16:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 49D321022; Wed, 1 Jan 2014 16:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01G09A7047698; Wed, 1 Jan 2014 16:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01G09un047697; Wed, 1 Jan 2014 16:00:09 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 16:00:09 GMT Message-Id: <201401011600.s01G09un047697@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185386: [MAINTAINER] devel/pecl-pthreads: update to 0.0.45 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 16:00:09 -0000 Synopsis: [MAINTAINER] devel/pecl-pthreads: update to 0.0.45 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jan 1 16:00:09 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185386 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 19:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C3BCAAA3 for ; Wed, 1 Jan 2014 19:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9AD701EE7 for ; Wed, 1 Jan 2014 19:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01Je0iX097834 for ; Wed, 1 Jan 2014 19:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01Je0LV097817; Wed, 1 Jan 2014 19:40:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 19:40:00 GMT Resent-Message-Id: <201401011940.s01Je0LV097817@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, "Vasiliy P. Melnik" Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 30A95851 for ; Wed, 1 Jan 2014 19:37:18 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 197481EC6 for ; Wed, 1 Jan 2014 19:37:18 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s01JbHYb090332 for ; Wed, 1 Jan 2014 19:37:17 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s01JbHnA090331; Wed, 1 Jan 2014 19:37:17 GMT (envelope-from nobody) Message-Id: <201401011937.s01JbHnA090331@oldred.freebsd.org> Date: Wed, 1 Jan 2014 19:37:17 GMT From: "Vasiliy P. Melnik" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185394: version update; fixed NO_STAGE; update static pkg-plist to dynamic X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 19:40:00 -0000 >Number: 185394 >Category: ports >Synopsis: version update; fixed NO_STAGE; update static pkg-plist to dynamic >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: Wed Jan 01 19:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Vasiliy P. Melnik >Release: 9.2-RELEASE; 10.0-RC3 >Organization: >Environment: FreeBSD fr9 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 FreeBSD fr10 10.0-RC3 FreeBSD 10.0-RC3 #0 r259778: Mon Dec 23 23:27:58 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: version update; fixed NO_STAGE; update static pkg-plist to dynamic; >How-To-Repeat: >Fix: diff -ruN /usr/ports/sysutils/ldap-account-manager/Makefile /root/ldap-account-manager/Makefile --- /usr/ports/sysutils/ldap-account-manager/Makefile 2013-11-03 02:12:27.000000000 +0200 +++ /root/ldap-account-manager/Makefile 2014-01-01 23:10:22.000000000 +0200 @@ -1,7 +1,7 @@ -# $FreeBSD: sysutils/ldap-account-manager/Makefile 332563 2013-11-03 00:12:27Z feld $ +# $FreeBSD: sysutils/ldap-account-manager/Makefile 327547 2013-09-18 14:10:09Z wg $ PORTNAME= ldap-account-manager -PORTVERSION= 4.3 +PORTVERSION= 4.4 PORTREVISION= 1 CATEGORIES= sysutils www MASTER_SITES= SF/${SHORTNAME}/LAM/${PORTVERSION} @@ -12,6 +12,7 @@ COMMENT= Webfrontend for managing accounts stored in an OpenLDAP server LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= p5-Quota>=0:${PORTSDIR}/sysutils/p5-Quota \ p5-perl-ldap>=0:${PORTSDIR}/net/p5-perl-ldap @@ -20,40 +21,45 @@ USES= gettext perl5 USE_PHP= gettext hash iconv ldap mcrypt pcre session simplexml spl xml json zip openssl WANT_PHP_WEB= yes -DEFAULT_PHP_VER= 5 SHORTNAME= lam PORTDOCS= docs HISTORY README copyright -LAMDATA= config graphics help lib locale sess style templates tmp VERSION index.html -WWWDIR?= ${PREFIX}/www/${SHORTNAME} -PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} +LAMDATA= config graphics help lib locale sess style templates tmp VERSION index.html .htaccess +WWWDIR= ${PREFIX}/www/${SHORTNAME} SUB_FILES= pkg-message +CONFIGS= config.cfg lam.conf +WRITEABLES= config sess tmp -NO_STAGE= yes .include do-install: - -@${MKDIR} ${WWWDIR} - @cd ${WRKSRC} && ${COPYTREE_SHARE} "${LAMDATA}" ${WWWDIR} + @${ECHO_CMD} '@unexec if [ -f %D/${WWWDIR_REL}/config/shells ]; then rm -f %D/${WWWDIR_REL}/config/shells; fi' >> ${TMPPLIST} +.for CONFIG in ${CONFIGS} + @${ECHO_CMD} '@unexec if cmp -s %D/${WWWDIR_REL}/config/${CONFIG}_sample %D/${WWWDIR_REL}/config/${CONFIG}; then ${RM} -f %D/${WWWDIR_REL}/config/${CONFIG}; fi' >> ${TMPPLIST} +.endfor +.for I in ${LAMDATA} + @${FIND} -s ${WRKSRC}/${I} -type f -not -name '${CONFIGS}'| ${SED} -e 's,^${WRKSRC},${WWWDIR_REL},' >> ${TMPPLIST} + @${FIND} -ds ${WRKSRC}/${I} -type d | ${SED} -e 's,^${WRKSRC},@dirrm ${WWWDIR_REL},' >> ${TMPPLIST} +.endfor + @${ECHO_CMD} '@dirrm ${WWWDIR_REL}' >> ${TMPPLIST} + @cd ${WRKSRC} && ${COPYTREE_SHARE} "${LAMDATA}" ${STAGEDIR}${WWWDIR} +.for CONFIG in ${CONFIGS} + @${ECHO_CMD} '@exec if [ ! -f %D/${WWWDIR_REL}/config/${CONFIG} ]; then ${CP} %D/${WWWDIR_REL}/config/${CONFIG}_sample %D/${WWWDIR_REL}/config/${CONFIG}; ${CHOWN} ${WWWOWN} %D/${WWWDIR_REL}/config/${CONFIG}; fi' >> ${TMPPLIST} +.if !exists(${STAGEDIR}${WWWDIR}/config/${CONFIG}) + @${CP} ${STAGEDIR}${WWWDIR}/config/${CONFIG}_sample ${STAGEDIR}${WWWDIR}/config/${CONFIG} +.endif +.endfor +.for DIR in ${WRITEABLES} + @${CHOWN} -R ${WWWOWN} ${STAGEDIR}${WWWDIR}/${DIR} + @${CHMOD} -R u+w ${STAGEDIR}${WWWDIR}/${DIR} + @${CHMOD} u+x ${STAGEDIR}${WWWDIR}/lib/lamdaemon.pl + @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN} %D/${WWWDIR_REL}/${DIR}' >> ${TMPPLIST} + @${ECHO_CMD} '@exec ${CHMOD} -R u+w %D/${WWWDIR_REL}/${DIR}' >> ${TMPPLIST} + @${ECHO_CMD} '@exec ${CHMOD} u+x %D/${WWWDIR_REL}/lib/lamdaemon.pl' >> ${TMPPLIST} +.endfor .if ${PORT_OPTIONS:MDOCS} - -@${MKDIR} ${DOCSDIR} - @cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDOCS}" ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDOCS}" ${STAGEDIR}${DOCSDIR} .endif -post-install: - @${MKDIR} ${WWWDIR}/config/pdf - @${MKDIR} ${WWWDIR}/config/profiles - @if [ ! -f ${WWWDIR}/config/config.cfg ]; then \ - ${CP} -p ${WWWDIR}/config/config.cfg_sample ${WWWDIR}/config/config.cfg ; \ - fi - @if [ ! -f ${WWWDIR}/config/lam.conf ]; then \ - ${CP} -p ${WWWDIR}/config/lam.conf_sample ${WWWDIR}/config/lam.conf ; \ - fi - @${FIND} ${WWWDIR} -type f -exec ${CHMOD} 644 {} \; - @${FIND} ${WWWDIR} -type d -exec ${CHMOD} 755 {} \; - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/config ${WWWDIR}/sess ${WWWDIR}/tmp - @${CHMOD} 755 ${WWWDIR}/lib/lamdaemon.pl - @${LN} -sf /etc/shells ${WWWDIR}/config/shells - @${CAT} ${PKGMESSAGE} - .include diff -ruN /usr/ports/sysutils/ldap-account-manager/distinfo /root/ldap-account-manager/distinfo --- /usr/ports/sysutils/ldap-account-manager/distinfo 2013-09-18 17:10:09.000000000 +0300 +++ /root/ldap-account-manager/distinfo 2014-01-01 22:41:12.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (ldap-account-manager-4.3.tar.bz2) = cd59e3c7de5c68572a9b86be8215aa14e3bcbe179572e8cf87eae4004edbf82c -SIZE (ldap-account-manager-4.3.tar.bz2) = 12122423 +SHA256 (ldap-account-manager-4.4.tar.bz2) = 990b963a98a7a6ee1e15072010b7da3a11535e205c4c5c6724676dc2deb44789 +SIZE (ldap-account-manager-4.4.tar.bz2) = 13557991 diff -ruN /usr/ports/sysutils/ldap-account-manager/files/pkg-message.in /root/ldap-account-manager/files/pkg-message.in --- /usr/ports/sysutils/ldap-account-manager/files/pkg-message.in 2012-07-14 17:29:18.000000000 +0300 +++ /root/ldap-account-manager/files/pkg-message.in 2014-01-01 22:41:12.000000000 +0200 @@ -1,4 +1,4 @@ - To use LDAP-account-manager, you have to install + To use LDAP account manager, you have to install and set up Samba 3.x schemas. Like this : include %%PREFIX%%/etc/openldap/schema/core.schema diff -ruN /usr/ports/sysutils/ldap-account-manager/pkg-plist /root/ldap-account-manager/pkg-plist --- /usr/ports/sysutils/ldap-account-manager/pkg-plist 2013-09-18 17:10:09.000000000 +0300 +++ /root/ldap-account-manager/pkg-plist 1970-01-01 03:00:00.000000000 +0300 @@ -1,1156 +0,0 @@ -@comment $FreeBSD: sysutils/ldap-account-manager/pkg-plist 327547 2013-09-18 14:10:09Z wg $ -@unexec if cmp -s %D/%%WWWDIR%%/config/config.cfg %D/%%WWWDIR%%/config/config.cfg_sample; then rm -f %D/%%WWWDIR%%/config/config.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/config/lam.conf %D/%%WWWDIR%%/config/lam.conf_sample; then rm -f %D/%%WWWDIR%%/config/lam.conf; fi -@unexec unlink %D/%%WWWDIR%%/config/shells -%%WWWDIR%%/tmp/.htaccess -%%WWWDIR%%/tmp/internal/.htaccess -%%WWWDIR%%/templates/tree/treeViewContainer.php -%%WWWDIR%%/templates/tools.php -%%WWWDIR%%/templates/tests/schemaTest.php -%%WWWDIR%%/templates/tests/lamdaemonTest.php -%%WWWDIR%%/templates/tests/index.php -%%WWWDIR%%/templates/serverInfo.php -%%WWWDIR%%/templates/schema/schema.php -%%WWWDIR%%/templates/profedit/profilepage.php -%%WWWDIR%%/templates/profedit/profilemain.php -%%WWWDIR%%/templates/pdfedit/pdfpage.php -%%WWWDIR%%/templates/pdfedit/pdfmain.php -%%WWWDIR%%/templates/ou_edit.php -%%WWWDIR%%/templates/misc/ajax.php -%%WWWDIR%%/templates/masscreate.php -%%WWWDIR%%/templates/massDoUpload.php -%%WWWDIR%%/templates/massBuildAccounts.php -%%WWWDIR%%/templates/main_header.php -%%WWWDIR%%/templates/main_footer.php -%%WWWDIR%%/templates/main.php -%%WWWDIR%%/templates/logout.php -%%WWWDIR%%/templates/login.php -%%WWWDIR%%/templates/lists/userlink.php -%%WWWDIR%%/templates/lists/list.php -%%WWWDIR%%/templates/lists/deletelink.php -%%WWWDIR%%/templates/lib/100_jquery-1.9.1.min.js -%%WWWDIR%%/templates/lib/110_jquery-ui-1.10.1.custom.min.js -%%WWWDIR%%/templates/lib/140_jquery.validationEngine-2.6.2.js -%%WWWDIR%%/templates/lib/500_lam.js -%%WWWDIR%%/templates/lib/200_wz_tooltip.js -%%WWWDIR%%/templates/lib/130_jquery-dropmenu-1.1.3.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/af.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/bg.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ar.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ca.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/bn.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/bs.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/da.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/de.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/cs.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/cy.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/el.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/fa.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/eo.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/es.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/fi.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/et.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/eu.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/fo.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/fr.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/gl.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/he.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/hi.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/gu.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/hr.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/hu.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ja.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/is.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/it.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ka.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/km.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ko.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/lt.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/lv.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/nb.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/mn.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ms.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/nl.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/no.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/pl.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/pt.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ro.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ru.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/sk.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/sl.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/sr.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/th.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/sv.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/tr.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/uk.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/vi.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/zh.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/pt-br.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/zh-cn.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/en-au.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/en-ca.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/en-gb.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/fr-ca.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/sr-latn.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/_languages.js -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/templates.css -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/skin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/dialog.css -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/dialog_sides_rtl.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/sprites.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/mini.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/sprites_ie6.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/dialog_sides.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/dialog_sides.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/noimage.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/icons.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/editor.css -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/icons_rtl.png -%%WWWDIR%%/templates/lib/extra/ckeditor/config.js -%%WWWDIR%%/templates/lib/extra/ckeditor/ckeditor.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/div/dialogs/div.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc/dialogs/ciframe.html -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc/dialogs/wsc.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc/dialogs/tmpFrameset.html -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc/dialogs/wsc.css -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/xml/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/ajax/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/find/dialogs/find.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link/dialogs/link.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link/dialogs/anchor.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link/images/anchor.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/about/dialogs/logo_ckeditor.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/about/dialogs/about.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/flash/dialogs/flash.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/flash/images/placeholder.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/select.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/textfield.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/checkbox.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/hiddenfield.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/radio.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/button.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/form.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/textarea.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/images/hiddenfield.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/image/dialogs/image.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/scayt/dialogs/toolbar.css -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/scayt/dialogs/options.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/table/dialogs/table.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/colordialog/dialogs/colordialog.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/autogrow/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastetext/dialogs/pastetext.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pagebreak/images/pagebreak.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/bbcode/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/tabletools/dialogs/tableCell.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframedialog/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/dialog/dialogDefinition.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp/lang/he.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_p.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h1.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h2.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h3.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h4.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h5.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h6.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_pre.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_div.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_blockquote.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_address.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframe/dialogs/iframe.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframe/images/placeholder.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/stylesheetparser/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets/yui.css -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/yui.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/lang/he.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/dialogs/uicolor.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/uicolor.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/lang/he.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/dialogs/placeholder.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/placeholder.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/specialchar/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/specialchar/dialogs/specialchar.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/dialogs/smiley.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/sad_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/embaressed_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/shades_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/tounge_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/envelope.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/wink_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/angry_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/heart.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/regular_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/thumbs_down.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/kiss.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/confused_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/lightbulb.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/broken_heart.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/thumbs_up.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/omg_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/teeth_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/devil_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/cry_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/angel_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/styles/styles/default.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/liststyle/dialogs/liststyle.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/adobeair/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/devtools/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/devtools/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastefromword/filter/default.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/clipboard/dialogs/paste.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/tableresize/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/docprops/dialogs/docprops.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/docprops/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/dialogs/templates.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates/images/template1.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates/images/template2.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates/images/template3.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates/default.js -%%WWWDIR%%/templates/lib/extra/ckeditor/contents.css -%%WWWDIR%%/templates/initsuff.php -%%WWWDIR%%/templates/help.php -%%WWWDIR%%/templates/delete.php -%%WWWDIR%%/templates/config/profmanage.php -%%WWWDIR%%/templates/config/moduleSettings.php -%%WWWDIR%%/templates/config/mainmanage.php -%%WWWDIR%%/templates/config/mainlogin.php -%%WWWDIR%%/templates/config/index.php -%%WWWDIR%%/templates/config/conftypes.php -%%WWWDIR%%/templates/config/confsave.php -%%WWWDIR%%/templates/config/confmodules.php -%%WWWDIR%%/templates/config/confmain.php -%%WWWDIR%%/templates/config/conflogin.php -%%WWWDIR%%/templates/account/edit.php -%%WWWDIR%%/templates/3rdParty/pla/tools/unserialize.php -%%WWWDIR%%/templates/3rdParty/pla/templates/modification/.placeholder -%%WWWDIR%%/templates/3rdParty/pla/templates/creation/ou.xml -%%WWWDIR%%/templates/3rdParty/pla/queries/.placeholder -%%WWWDIR%%/templates/3rdParty/pla/lib/xmlTemplates.php -%%WWWDIR%%/templates/3rdParty/pla/lib/xml2array.php -%%WWWDIR%%/templates/3rdParty/pla/lib/template_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/syslog.php -%%WWWDIR%%/templates/3rdParty/pla/lib/session_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/schema_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/query_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/page.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ldap_supported_oids.txt -%%WWWDIR%%/templates/3rdParty/pla/lib/ldap_error_codes.txt -%%WWWDIR%%/templates/3rdParty/pla/lib/import_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/hooks.php -%%WWWDIR%%/templates/3rdParty/pla/lib/functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/export_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/emuhash_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ds_myldap.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ds_ldap_pla.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ds.php -%%WWWDIR%%/templates/3rdParty/pla/lib/createlm.php -%%WWWDIR%%/templates/3rdParty/pla/lib/config_default.php -%%WWWDIR%%/templates/3rdParty/pla/lib/common.php -%%WWWDIR%%/templates/3rdParty/pla/lib/blowfish.php -%%WWWDIR%%/templates/3rdParty/pla/lib/Visitor.php -%%WWWDIR%%/templates/3rdParty/pla/lib/TreeItem.php -%%WWWDIR%%/templates/3rdParty/pla/lib/Tree.php -%%WWWDIR%%/templates/3rdParty/pla/lib/TemplateRender.php -%%WWWDIR%%/templates/3rdParty/pla/lib/Template.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ShadowAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/SelectionAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/SambaPasswordAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/RandomPasswordAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/QueryRender.php -%%WWWDIR%%/templates/3rdParty/pla/lib/Query.php -%%WWWDIR%%/templates/3rdParty/pla/lib/PasswordAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/PageRender.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ObjectClassAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/MultiLineAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/MassRender.php -%%WWWDIR%%/templates/3rdParty/pla/lib/JpegAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/HTMLTree.php -%%WWWDIR%%/templates/3rdParty/pla/lib/GidAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/DnAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/DateAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/BinaryAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/AttributeFactory.php -%%WWWDIR%%/templates/3rdParty/pla/lib/Attribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/AJAXTree.php -%%WWWDIR%%/templates/3rdParty/pla/index.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/view_jpeg_photo.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/update_confirm.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/update.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/template_engine.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/rename_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/rename.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/refresh.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/rdelete.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/query_engine.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/password_checker.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/modify_member_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/mass_update.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/mass_edit.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/mass_delete.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/toAscii.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/modify_member.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/layersmenu-browser_detection.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/today-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/title-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/theme.css -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/status-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/rowhover-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/normal-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/menuarrow.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/hover-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/dark-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/active-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/menuarrow.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/cn_utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-zh.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-tr.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-sv.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-sp.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-sk.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-si.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ru_win_.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ru.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ro.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-pt.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-pl.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-pl-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-no.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-nl.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-lv.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-lt.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-lt-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ko.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ko-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-jp.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-it.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-hu.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-hr.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-hr-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-he-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-fr.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-fi.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-es.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-en.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-el.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-du.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-de.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-da.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-cs-win.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-cs-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ca.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-br.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-big5.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-big5-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-bg.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-al.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-af.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/calendar.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/calendar-setup.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/calendar-blue.css -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/form_field_toggle_enable.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/dnChooserPopup.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/date_selector.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/ajax_tree.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/ajax_functions.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/TemplateRender.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/CheckAll.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/index.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/import_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/import.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/favicon.ico -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/warn-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/up.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/unknown.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_vertline.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_split_first.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_split.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_space.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_expand_first.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_expand_corner_first.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_expand_corner.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_expand.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_corner.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_collapse_first.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_collapse_corner_first.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_collapse_corner.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_collapse.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/trash.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tools.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tools-no.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/terminal.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/switch.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/server.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/server-small.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/server-settings.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/search-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/save.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/rfc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/rename.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/refresh.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/refresh-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/process.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/plus.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/photo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/phone.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/nt_user.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/nt_machine.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/nogo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/network.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/n.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/move.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/monitorserver-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/minus.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/mail.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/lock.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/locality.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/light.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-user.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-uniquegroup.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-uid.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-server.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-ou.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-o.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-default.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-dc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-alias.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/key.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/invalid.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/info-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/import-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/host.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/home-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/help.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/hard-drive.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/folder.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/find.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/files.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/export.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/export-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/error.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/error-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/door.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/document.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/disabled.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/device.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/delete.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/cut.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/create.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/country.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/compare.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/children.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/catalog.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/calendar.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/add.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/zw.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/za.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/yu.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ye.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ws.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/vn.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/vi.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/vg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ve.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/va.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/uy.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/us.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ug.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ua.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tw.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tv.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tp.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/to.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tn.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/th.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sy.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/so.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sl.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sk.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/si.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/se.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sd.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sb.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sa.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ru.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ro.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/qa.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/py.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pm.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pl.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pk.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ph.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pf.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pe.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pa.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/om.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/nz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/nr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/np.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/no.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/nl.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/nf.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/nc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/na.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/my.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mx.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ms.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mp.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mn.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/md.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ma.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ly.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lv.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lu.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lk.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lb.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/kz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ky.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/kr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/kp.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ki.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/kh.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/kg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ke.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/jp.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/jo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/jm.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/it.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/is.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ir.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/iq.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/in.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/il.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ie.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/id.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/hu.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ht.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/hr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/hk.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gy.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gu.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gp.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gl.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gi.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ge.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gb.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ga.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/fr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/fo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/fj.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/fi.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/et.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/es.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/er.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/eg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ee.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ec.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/dz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/dk.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/de.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cy.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cv.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cu.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/co.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cn.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cm.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cl.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ck.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ci.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ch.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cf.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ca.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/by.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bw.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bs.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/br.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bn.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bm.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bj.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bi.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bh.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bf.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/be.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bd.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bb.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ba.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/az.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/aw.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/au.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/at.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ar.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ao.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/an.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/am.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/al.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/af.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/ajax-spinner.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/ajax-progress.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/export_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/export.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/expand.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/entry_chooser.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/draw_tree_node.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/download_binary_attr.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/delete_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/delete_attr.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/delete.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/css/default/style.css -%%WWWDIR%%/templates/3rdParty/pla/htdocs/create_confirm.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/create.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/copy_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/copy.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/compare_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/compare.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/common.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/collapse.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/cmd.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/add_value_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/add_oclass_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/add_attr_form.php -%%WWWDIR%%/templates/3rdParty/pla/config/config.php -%%WWWDIR%%/templates/.htaccess -%%WWWDIR%%/templates/lib/141_jquery-validationEngine-lang.php -%%WWWDIR%%/style/lam-images/headerLine.png -%%WWWDIR%%/style/120_jquery-ui-1.10.1.custom.css -%%WWWDIR%%/style/images/animated-overlay.gif -%%WWWDIR%%/style/images/ui-icons_cd0a0a_256x240.png -%%WWWDIR%%/style/images/ui-icons_888888_256x240.png -%%WWWDIR%%/style/images/ui-icons_454545_256x240.png -%%WWWDIR%%/style/images/ui-icons_2e83ff_256x240.png -%%WWWDIR%%/style/images/ui-icons_222222_256x240.png -%%WWWDIR%%/style/images/ui-bg_highlight-soft_75_cccccc_1x150-vertical.png -%%WWWDIR%%/style/images/ui-bg_highlight-soft_75_cccccc_1x100.png -%%WWWDIR%%/style/images/ui-bg_glass_95_fef1ec_1x400.png -%%WWWDIR%%/style/images/ui-bg_glass_75_e6e6e6_1x400.png -%%WWWDIR%%/style/images/ui-bg_glass_75_dadada_1x400.png -%%WWWDIR%%/style/images/ui-bg_glass_65_ffffff_1x400.png -%%WWWDIR%%/style/images/ui-bg_glass_55_fbf9ee_1x400.png -%%WWWDIR%%/style/images/ui-bg_flat_75_ffffff_40x100.png -%%WWWDIR%%/style/images/ui-bg_flat_0_aaaaaa_40x100.png -%%WWWDIR%%/style/images/ui-anim_basic_16x16.gif -%%WWWDIR%%/style/images/pbar-ani.gif -%%WWWDIR%%/style/.htaccess -%%WWWDIR%%/sess/.htaccess -%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/sk_SK/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/sk_SK/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/ru_RU/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/ru_RU/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/pl_PL/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/pl_PL/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/nl_NL/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/nl_NL/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/ja_JP/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/ja_JP/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/it_IT/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/it_IT/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/hu_HU/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/hu_HU/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/fr_FR/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/fr_FR/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/es_ES/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/es_ES/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/de_DE/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/de_DE/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/cs_CZ/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/cs_CZ/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/ca_ES/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/ca_ES/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/.htaccess -%%WWWDIR%%/lib/xml_parser.inc -%%WWWDIR%%/lib/ufpdf.php -%%WWWDIR%%/lib/types/user.inc -%%WWWDIR%%/lib/types/smbDomain.inc -%%WWWDIR%%/lib/types/netgroup.inc -%%WWWDIR%%/lib/types/mailAlias.inc -%%WWWDIR%%/lib/types/host.inc -%%WWWDIR%%/lib/types/group.inc -%%WWWDIR%%/lib/types/dhcp.inc -%%WWWDIR%%/lib/types/asteriskExt.inc -%%WWWDIR%%/lib/types.inc -%%WWWDIR%%/lib/tools/tests.inc -%%WWWDIR%%/lib/tools/serverInfo.inc -%%WWWDIR%%/lib/tools/schemaBrowser.inc -%%WWWDIR%%/lib/tools/profileEditor.inc -%%WWWDIR%%/lib/tools/pdfEdit.inc -%%WWWDIR%%/lib/tools/ouEditor.inc -%%WWWDIR%%/lib/tools/fileUpload.inc -%%WWWDIR%%/lib/tools.inc -%%WWWDIR%%/lib/status.inc -%%WWWDIR%%/lib/selfService.inc -%%WWWDIR%%/lib/security.inc -%%WWWDIR%%/lib/schema.inc -%%WWWDIR%%/lib/profiles.inc -%%WWWDIR%%/lib/pdfstruct.inc -%%WWWDIR%%/lib/pdf.inc -%%WWWDIR%%/lib/modules/kolabGroup.inc -%%WWWDIR%%/lib/modules/windowsPosixGroup.inc -%%WWWDIR%%/lib/modules/windowsGroup.inc -%%WWWDIR%%/lib/modules/windowsHost.inc -%%WWWDIR%%/lib/modules/windowsUser.inc -%%WWWDIR%%/lib/modules/systemQuotas.inc -%%WWWDIR%%/lib/modules/shadowAccount.inc -%%WWWDIR%%/lib/modules/sambaSamAccount/sambaMungedDial.inc -%%WWWDIR%%/lib/modules/sambaSamAccount.inc -%%WWWDIR%%/lib/modules/sambaGroupMapping.inc -%%WWWDIR%%/lib/modules/sambaDomain.inc -%%WWWDIR%%/lib/modules/range.inc -%%WWWDIR%%/lib/modules/quota.inc -%%WWWDIR%%/lib/modules/posixGroup.inc -%%WWWDIR%%/lib/modules/posixAccount.inc -%%WWWDIR%%/lib/modules/puppetClient.inc -%%WWWDIR%%/lib/modules/nisnetgroup.inc -%%WWWDIR%%/lib/modules/nisMailAlias.inc -%%WWWDIR%%/lib/modules/ldapPublicKey.inc -%%WWWDIR%%/lib/modules/kolabUser.inc -%%WWWDIR%%/lib/modules/inetOrgPerson.inc -%%WWWDIR%%/lib/modules/inetLocalMailRecipient.inc -%%WWWDIR%%/lib/modules/imapAccess.inc -%%WWWDIR%%/lib/modules/ieee802device.inc -%%WWWDIR%%/lib/modules/hostObject.inc -%%WWWDIR%%/lib/modules/generalInformation.inc -%%WWWDIR%%/lib/modules/fixed_ip.inc -%%WWWDIR%%/lib/modules/eduPerson.inc -%%WWWDIR%%/lib/modules/dhcp_settings.inc -%%WWWDIR%%/lib/modules/ddns.inc -%%WWWDIR%%/lib/modules/asteriskVoicemail.inc -%%WWWDIR%%/lib/modules/asteriskExtension.inc -%%WWWDIR%%/lib/modules/asteriskAccount.inc -%%WWWDIR%%/lib/modules/account.inc -%%WWWDIR%%/lib/modules/freeRadius.inc -%%WWWDIR%%/lib/modules/authorizedServiceObject.inc -%%WWWDIR%%/lib/modules.inc -%%WWWDIR%%/lib/lists.inc -%%WWWDIR%%/lib/ldap.inc -%%WWWDIR%%/lib/lamdaemon.pl -%%WWWDIR%%/lib/lamdaemon.inc -%%WWWDIR%%/lib/lamPDF.inc -%%WWWDIR%%/lib/html.inc -%%WWWDIR%%/lib/fpdf.php -%%WWWDIR%%/lib/font/verai.z -%%WWWDIR%%/lib/font/verai.php -%%WWWDIR%%/lib/font/verai.ctg.z -%%WWWDIR%%/lib/font/verabi.z -%%WWWDIR%%/lib/font/verabi.php -%%WWWDIR%%/lib/font/verabi.ctg.z -%%WWWDIR%%/lib/font/verab.z -%%WWWDIR%%/lib/font/verab.php -%%WWWDIR%%/lib/font/verab.ctg.z -%%WWWDIR%%/lib/font/vera.z -%%WWWDIR%%/lib/font/vera.php -%%WWWDIR%%/lib/font/vera.ctg.z -%%WWWDIR%%/lib/createntlm.inc -%%WWWDIR%%/lib/config.inc -%%WWWDIR%%/lib/checkEnvironment.inc -%%WWWDIR%%/lib/baseType.inc -%%WWWDIR%%/lib/baseModule.inc -%%WWWDIR%%/lib/account.inc -%%WWWDIR%%/lib/3rdParty/phpseclib/PHP/Compat/Function/str_split.php -%%WWWDIR%%/lib/3rdParty/phpseclib/PHP/Compat/Function/bcpowmod.php -%%WWWDIR%%/lib/3rdParty/phpseclib/PHP/Compat/Function/array_fill.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Net/SSH2.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Net/SSH1.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Net/SFTP.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Math/BigInteger.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/TripleDES.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/Rijndael.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/Random.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/RSA.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/RC4.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/Hash.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/DES.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/AES.php -%%WWWDIR%%/lib/.htaccess -%%WWWDIR%%/index.html -%%WWWDIR%%/help/help.inc -%%WWWDIR%%/help/.htaccess -%%WWWDIR%%/graphics/warn.png -%%WWWDIR%%/graphics/userDefault.png -%%WWWDIR%%/graphics/user.png -%%WWWDIR%%/graphics/up.gif -%%WWWDIR%%/graphics/uniquegroup.png -%%WWWDIR%%/graphics/unlocked.png -%%WWWDIR%%/graphics/undo.png -%%WWWDIR%%/graphics/uid.png -%%WWWDIR%%/graphics/tux.png -%%WWWDIR%%/graphics/tree_info.png -%%WWWDIR%%/graphics/tools.png -%%WWWDIR%%/graphics/tools-no.png -%%WWWDIR%%/graphics/tests.png -%%WWWDIR%%/graphics/star.png -%%WWWDIR%%/graphics/sort_desc.png -%%WWWDIR%%/graphics/sort_asc.png -%%WWWDIR%%/graphics/smbDomain.png -%%WWWDIR%%/graphics/server-small.png -%%WWWDIR%%/graphics/server-settings.png -%%WWWDIR%%/graphics/select.png -%%WWWDIR%%/graphics/security.png -%%WWWDIR%%/graphics/script.png -%%WWWDIR%%/graphics/schemaTest.png -%%WWWDIR%%/graphics/schemaBrowser.png -%%WWWDIR%%/graphics/saveBig.png -%%WWWDIR%%/graphics/save.png -%%WWWDIR%%/graphics/samba.png -%%WWWDIR%%/graphics/required.png -%%WWWDIR%%/graphics/refresh.png -%%WWWDIR%%/graphics/puppet.png -%%WWWDIR%%/graphics/profiles.png -%%WWWDIR%%/graphics/process.png -%%WWWDIR%%/graphics/plus.png -%%WWWDIR%%/graphics/pdf.png -%%WWWDIR%%/graphics/pass.png -%%WWWDIR%%/graphics/partiallyLocked.png -%%WWWDIR%%/graphics/printer.png -%%WWWDIR%%/graphics/printerBig.png -%%WWWDIR%%/graphics/ou.png -%%WWWDIR%%/graphics/object.png -%%WWWDIR%%/graphics/o.png -%%WWWDIR%%/graphics/nt_user.png -%%WWWDIR%%/graphics/nt_machine.png -%%WWWDIR%%/graphics/network.png -%%WWWDIR%%/graphics/network-wired.png -%%WWWDIR%%/graphics/netgroup.png -%%WWWDIR%%/graphics/n.png -%%WWWDIR%%/graphics/modules.png -%%WWWDIR%%/graphics/minus.png -%%WWWDIR%%/graphics/mailBig.png -%%WWWDIR%%/graphics/mailAlias.png -%%WWWDIR%%/graphics/mail.png -%%WWWDIR%%/graphics/logo32.png -%%WWWDIR%%/graphics/lock.png -%%WWWDIR%%/graphics/locality.png -%%WWWDIR%%/graphics/loadProfile.png -%%WWWDIR%%/graphics/light.png -%%WWWDIR%%/graphics/ldap-server.png -%%WWWDIR%%/graphics/language.png -%%WWWDIR%%/graphics/lamdaemonSmall.png -%%WWWDIR%%/graphics/lamdaemon.png -%%WWWDIR%%/graphics/lam.png -%%WWWDIR%%/graphics/kolab.png -%%WWWDIR%%/graphics/keyBig.png -%%WWWDIR%%/graphics/key.png -%%WWWDIR%%/graphics/ipRange.png -%%WWWDIR%%/graphics/info.png -%%WWWDIR%%/graphics/host.png -%%WWWDIR%%/graphics/help.png -%%WWWDIR%%/graphics/hard-driveBig.png -%%WWWDIR%%/graphics/hard-drive.png -%%WWWDIR%%/graphics/groupBig.png -%%WWWDIR%%/graphics/group.png -%%WWWDIR%%/graphics/go.png -%%WWWDIR%%/graphics/go-previous.png -%%WWWDIR%%/graphics/go-next.png -%%WWWDIR%%/graphics/go-last.png -%%WWWDIR%%/graphics/go-first.png -%%WWWDIR%%/graphics/gear.png -%%WWWDIR%%/graphics/forward.gif -%%WWWDIR%%/graphics/folder.png -%%WWWDIR%%/graphics/find.png -%%WWWDIR%%/graphics/filter.png -%%WWWDIR%%/graphics/clearFilter.png -%%WWWDIR%%/graphics/files.png -%%WWWDIR%%/graphics/favicon.ico -%%WWWDIR%%/graphics/fail.png -%%WWWDIR%%/graphics/exitBig.png -%%WWWDIR%%/graphics/exit.png -%%WWWDIR%%/graphics/error.png -%%WWWDIR%%/graphics/eduPerson.png -%%WWWDIR%%/graphics/edit.png -%%WWWDIR%%/graphics/down.gif -%%WWWDIR%%/graphics/door.png -%%WWWDIR%%/graphics/document.png -%%WWWDIR%%/graphics/dhcpBig.png -%%WWWDIR%%/graphics/dhcp.png -%%WWWDIR%%/graphics/device.png -%%WWWDIR%%/graphics/delete.png -%%WWWDIR%%/graphics/delete.gif -%%WWWDIR%%/graphics/del.png -%%WWWDIR%%/graphics/dc.png -%%WWWDIR%%/graphics/computer.png -%%WWWDIR%%/graphics/catalog.png -%%WWWDIR%%/graphics/bigTools.png -%%WWWDIR%%/graphics/bigPeople.png -%%WWWDIR%%/graphics/back.gif -%%WWWDIR%%/graphics/asteriskExt.png -%%WWWDIR%%/graphics/asterisk.png -%%WWWDIR%%/graphics/add.png -%%WWWDIR%%/graphics/.htaccess -%%WWWDIR%%/graphics/services.png -%%WWWDIR%%/graphics/freeRadius.png -%%WWWDIR%%/config/selfService/default.user -%%WWWDIR%%/config/language -%%WWWDIR%%/config/lam.conf_sample -%%WWWDIR%%/config/config.cfg_sample -%%WWWDIR%%/config/.htaccess -%%WWWDIR%%/VERSION -%%WWWDIR%%/style/150_jquery-fineuploader.css -%%WWWDIR%%/style/500_layout.css -%%WWWDIR%%/style/150_jquery-validationEngine.css -%%WWWDIR%%/style/loading.gif -%%WWWDIR%%/style/150_jquery-dropmenu.css -%%WWWDIR%%/graphics/export.png -%%WWWDIR%%/graphics/import.png -%%WWWDIR%%/templates/lib/130_jquery-fineuploader-3.0.min.js -%%WWWDIR%%/lib/upgrade.inc -%%WWWDIR%%/config/templates/profiles/default.netgroup -%%WWWDIR%%/config/templates/profiles/default.automountType -%%WWWDIR%%/config/templates/profiles/default.dhcp -%%WWWDIR%%/config/templates/profiles/default.user -%%WWWDIR%%/config/templates/profiles/.htaccess -%%WWWDIR%%/config/templates/profiles/default.group -%%WWWDIR%%/config/templates/profiles/default.smbDomain -%%WWWDIR%%/config/templates/profiles/default.gon -%%WWWDIR%%/config/templates/profiles/default.asteriskExt -%%WWWDIR%%/config/templates/profiles/default.host -%%WWWDIR%%/config/templates/profiles/default.zarafaAddressListType -%%WWWDIR%%/config/templates/profiles/default.ppolicyType -%%WWWDIR%%/config/templates/profiles/default.nisObjectType -%%WWWDIR%%/config/templates/profiles/default.mailAlias -%%WWWDIR%%/config/templates/profiles/default.alias -%%WWWDIR%%/config/templates/profiles/default.zarafaDynamicGroupType -%%WWWDIR%%/config/templates/profiles/default.sudo -%%WWWDIR%%/config/templates/pdf/default.netgroup.xml -%%WWWDIR%%/config/templates/pdf/default.user.xml -%%WWWDIR%%/config/templates/pdf/default.alias.xml -%%WWWDIR%%/config/templates/pdf/default.asteriskExt.xml -%%WWWDIR%%/config/templates/pdf/logos/printLogo.jpg -%%WWWDIR%%/config/templates/pdf/logos/.htaccess -%%WWWDIR%%/config/templates/pdf/default.smbDomain.xml -%%WWWDIR%%/config/templates/pdf/default.dhcp.xml -%%WWWDIR%%/config/templates/pdf/default.mailAlias.xml -%%WWWDIR%%/config/templates/pdf/default.zarafaDynamicGroupType.xml -%%WWWDIR%%/config/templates/pdf/default.sudo.xml -%%WWWDIR%%/config/templates/pdf/.htaccess -%%WWWDIR%%/config/templates/pdf/default.automountType.xml -%%WWWDIR%%/config/templates/pdf/default.zarafaAddressListType.xml -%%WWWDIR%%/config/templates/pdf/default.nisObjectType.xml -%%WWWDIR%%/config/templates/pdf/default.ppolicyType.xml -%%WWWDIR%%/config/templates/pdf/default.group.xml -%%WWWDIR%%/config/templates/pdf/default.gon.xml -%%WWWDIR%%/config/templates/pdf/default.host.xml -%%WWWDIR%%/config/selfService/.htaccess -%%WWWDIR%%/config/profiles/.htaccess -%%WWWDIR%%/config/pdf/.htaccess -@exec if [ ! -f %D/%%WWWDIR%%/config/lam.conf ] ; then cp %D/%%WWWDIR%%/config/lam.conf_sample %D/%%WWWDIR%%/config/lam.conf; fi -@exec if [ ! -f %D/%%WWWDIR%%/config/config.cfg ] ; then cp %D/%%WWWDIR%%/config/config.cfg_sample %D/%%WWWDIR%%/config/config.cfg; fi -@exec mkdir -p %D/%%WWWDIR%%/config/pdf %D/%%WWWDIR%%/config/profiles -@exec chown -R %%WWWOWN%%:%%WWWGRP%% %D/%%WWWDIR%%/config %D/%%WWWDIR%%/sess %D/%%WWWDIR%%/tmp -@exec ln -sf /etc/shells %D/%%WWWDIR%%/config/shells -@dirrm %%WWWDIR%%/tmp/internal -@dirrm %%WWWDIR%%/tmp -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003 -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/skins -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/div/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/div -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/xml -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/ajax -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/find/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/find -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/about/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/about -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/flash/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/flash/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/flash -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/image/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/image -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/scayt/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/scayt -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/table/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/table -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/colordialog/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/colordialog -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/autogrow -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastetext/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastetext -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pagebreak/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pagebreak -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/bbcode -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/tabletools/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/tabletools -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframedialog -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/dialog -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframe/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframe/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframe -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/stylesheetparser -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/specialchar/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/specialchar/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/specialchar -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/styles/styles -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/styles -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/liststyle/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/liststyle -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/adobeair -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/devtools/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/devtools -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastefromword/filter -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastefromword -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/clipboard/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/clipboard -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/tableresize -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/docprops/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/docprops -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor -@dirrm %%WWWDIR%%/templates/lib/extra -@dirrm %%WWWDIR%%/templates/tree -@dirrm %%WWWDIR%%/templates/tests -@dirrm %%WWWDIR%%/templates/schema -@dirrm %%WWWDIR%%/templates/profedit -@dirrm %%WWWDIR%%/templates/pdfedit -@dirrm %%WWWDIR%%/templates/misc -@dirrm %%WWWDIR%%/templates/lists -@dirrm %%WWWDIR%%/templates/lib -@dirrm %%WWWDIR%%/templates/config -@dirrm %%WWWDIR%%/templates/account -@dirrm %%WWWDIR%%/templates/3rdParty/pla/tools -@dirrm %%WWWDIR%%/templates/3rdParty/pla/templates/modification -@dirrm %%WWWDIR%%/templates/3rdParty/pla/templates/creation -@dirrm %%WWWDIR%%/templates/3rdParty/pla/templates -@dirrm %%WWWDIR%%/templates/3rdParty/pla/queries -@dirrm %%WWWDIR%%/templates/3rdParty/pla/lib -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/js -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/images -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/css/default -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/css -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs -@dirrm %%WWWDIR%%/templates/3rdParty/pla/config -@dirrm %%WWWDIR%%/templates/3rdParty/pla -@dirrm %%WWWDIR%%/templates/3rdParty -@dirrm %%WWWDIR%%/templates -@dirrm %%WWWDIR%%/style/lam-images -@dirrm %%WWWDIR%%/style/images -@dirrm %%WWWDIR%%/style -@dirrm %%WWWDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/zh_TW -@dirrm %%WWWDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/zh_CN -@dirrm %%WWWDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/sk_SK -@dirrm %%WWWDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/ru_RU -@dirrm %%WWWDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/pt_BR -@dirrm %%WWWDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/pl_PL -@dirrm %%WWWDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/nl_NL -@dirrm %%WWWDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/ja_JP -@dirrm %%WWWDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/it_IT -@dirrm %%WWWDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/hu_HU -@dirrm %%WWWDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/fr_FR -@dirrm %%WWWDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/es_ES -@dirrm %%WWWDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/de_DE -@dirrm %%WWWDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/cs_CZ -@dirrm %%WWWDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/ca_ES -@dirrm %%WWWDIR%%/locale -@dirrm %%WWWDIR%%/lib/types -@dirrm %%WWWDIR%%/lib/tools -@dirrm %%WWWDIR%%/lib/modules/sambaSamAccount -@dirrm %%WWWDIR%%/lib/modules -@dirrm %%WWWDIR%%/lib/font -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/PHP/Compat/Function -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/PHP/Compat -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/PHP -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/Net -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/Math -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/Crypt -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib -@dirrm %%WWWDIR%%/lib/3rdParty -@dirrm %%WWWDIR%%/lib -@dirrm %%WWWDIR%%/help -@dirrm %%WWWDIR%%/graphics -@dirrm %%WWWDIR%%/config/selfService -@dirrm %%WWWDIR%%/config/templates/profiles -@dirrm %%WWWDIR%%/config/templates/pdf/logos -@dirrm %%WWWDIR%%/config/templates/pdf -@dirrm %%WWWDIR%%/config/templates -@dirrmtry %%WWWDIR%%/sess -@dirrmtry %%WWWDIR%%/config/pdf -@dirrmtry %%WWWDIR%%/config/profiles -@dirrmtry %%WWWDIR%%/config -@dirrmtry %%WWWDIR%% Patch attached with submission follows: diff -ruN /usr/ports/sysutils/ldap-account-manager/Makefile /root/ldap-account-manager/Makefile --- /usr/ports/sysutils/ldap-account-manager/Makefile 2013-11-03 02:12:27.000000000 +0200 +++ /root/ldap-account-manager/Makefile 2014-01-01 23:10:22.000000000 +0200 @@ -1,7 +1,7 @@ -# $FreeBSD: sysutils/ldap-account-manager/Makefile 332563 2013-11-03 00:12:27Z feld $ +# $FreeBSD: sysutils/ldap-account-manager/Makefile 327547 2013-09-18 14:10:09Z wg $ PORTNAME= ldap-account-manager -PORTVERSION= 4.3 +PORTVERSION= 4.4 PORTREVISION= 1 CATEGORIES= sysutils www MASTER_SITES= SF/${SHORTNAME}/LAM/${PORTVERSION} @@ -12,6 +12,7 @@ COMMENT= Webfrontend for managing accounts stored in an OpenLDAP server LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= p5-Quota>=0:${PORTSDIR}/sysutils/p5-Quota \ p5-perl-ldap>=0:${PORTSDIR}/net/p5-perl-ldap @@ -20,40 +21,45 @@ USES= gettext perl5 USE_PHP= gettext hash iconv ldap mcrypt pcre session simplexml spl xml json zip openssl WANT_PHP_WEB= yes -DEFAULT_PHP_VER= 5 SHORTNAME= lam PORTDOCS= docs HISTORY README copyright -LAMDATA= config graphics help lib locale sess style templates tmp VERSION index.html -WWWDIR?= ${PREFIX}/www/${SHORTNAME} -PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} +LAMDATA= config graphics help lib locale sess style templates tmp VERSION index.html .htaccess +WWWDIR= ${PREFIX}/www/${SHORTNAME} SUB_FILES= pkg-message +CONFIGS= config.cfg lam.conf +WRITEABLES= config sess tmp -NO_STAGE= yes .include do-install: - -@${MKDIR} ${WWWDIR} - @cd ${WRKSRC} && ${COPYTREE_SHARE} "${LAMDATA}" ${WWWDIR} + @${ECHO_CMD} '@unexec if [ -f %D/${WWWDIR_REL}/config/shells ]; then rm -f %D/${WWWDIR_REL}/config/shells; fi' >> ${TMPPLIST} +.for CONFIG in ${CONFIGS} + @${ECHO_CMD} '@unexec if cmp -s %D/${WWWDIR_REL}/config/${CONFIG}_sample %D/${WWWDIR_REL}/config/${CONFIG}; then ${RM} -f %D/${WWWDIR_REL}/config/${CONFIG}; fi' >> ${TMPPLIST} +.endfor +.for I in ${LAMDATA} + @${FIND} -s ${WRKSRC}/${I} -type f -not -name '${CONFIGS}'| ${SED} -e 's,^${WRKSRC},${WWWDIR_REL},' >> ${TMPPLIST} + @${FIND} -ds ${WRKSRC}/${I} -type d | ${SED} -e 's,^${WRKSRC},@dirrm ${WWWDIR_REL},' >> ${TMPPLIST} +.endfor + @${ECHO_CMD} '@dirrm ${WWWDIR_REL}' >> ${TMPPLIST} + @cd ${WRKSRC} && ${COPYTREE_SHARE} "${LAMDATA}" ${STAGEDIR}${WWWDIR} +.for CONFIG in ${CONFIGS} + @${ECHO_CMD} '@exec if [ ! -f %D/${WWWDIR_REL}/config/${CONFIG} ]; then ${CP} %D/${WWWDIR_REL}/config/${CONFIG}_sample %D/${WWWDIR_REL}/config/${CONFIG}; ${CHOWN} ${WWWOWN} %D/${WWWDIR_REL}/config/${CONFIG}; fi' >> ${TMPPLIST} +.if !exists(${STAGEDIR}${WWWDIR}/config/${CONFIG}) + @${CP} ${STAGEDIR}${WWWDIR}/config/${CONFIG}_sample ${STAGEDIR}${WWWDIR}/config/${CONFIG} +.endif +.endfor +.for DIR in ${WRITEABLES} + @${CHOWN} -R ${WWWOWN} ${STAGEDIR}${WWWDIR}/${DIR} + @${CHMOD} -R u+w ${STAGEDIR}${WWWDIR}/${DIR} + @${CHMOD} u+x ${STAGEDIR}${WWWDIR}/lib/lamdaemon.pl + @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN} %D/${WWWDIR_REL}/${DIR}' >> ${TMPPLIST} + @${ECHO_CMD} '@exec ${CHMOD} -R u+w %D/${WWWDIR_REL}/${DIR}' >> ${TMPPLIST} + @${ECHO_CMD} '@exec ${CHMOD} u+x %D/${WWWDIR_REL}/lib/lamdaemon.pl' >> ${TMPPLIST} +.endfor .if ${PORT_OPTIONS:MDOCS} - -@${MKDIR} ${DOCSDIR} - @cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDOCS}" ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} + @cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDOCS}" ${STAGEDIR}${DOCSDIR} .endif -post-install: - @${MKDIR} ${WWWDIR}/config/pdf - @${MKDIR} ${WWWDIR}/config/profiles - @if [ ! -f ${WWWDIR}/config/config.cfg ]; then \ - ${CP} -p ${WWWDIR}/config/config.cfg_sample ${WWWDIR}/config/config.cfg ; \ - fi - @if [ ! -f ${WWWDIR}/config/lam.conf ]; then \ - ${CP} -p ${WWWDIR}/config/lam.conf_sample ${WWWDIR}/config/lam.conf ; \ - fi - @${FIND} ${WWWDIR} -type f -exec ${CHMOD} 644 {} \; - @${FIND} ${WWWDIR} -type d -exec ${CHMOD} 755 {} \; - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}/config ${WWWDIR}/sess ${WWWDIR}/tmp - @${CHMOD} 755 ${WWWDIR}/lib/lamdaemon.pl - @${LN} -sf /etc/shells ${WWWDIR}/config/shells - @${CAT} ${PKGMESSAGE} - .include diff -ruN /usr/ports/sysutils/ldap-account-manager/distinfo /root/ldap-account-manager/distinfo --- /usr/ports/sysutils/ldap-account-manager/distinfo 2013-09-18 17:10:09.000000000 +0300 +++ /root/ldap-account-manager/distinfo 2014-01-01 22:41:12.000000000 +0200 @@ -1,2 +1,2 @@ -SHA256 (ldap-account-manager-4.3.tar.bz2) = cd59e3c7de5c68572a9b86be8215aa14e3bcbe179572e8cf87eae4004edbf82c -SIZE (ldap-account-manager-4.3.tar.bz2) = 12122423 +SHA256 (ldap-account-manager-4.4.tar.bz2) = 990b963a98a7a6ee1e15072010b7da3a11535e205c4c5c6724676dc2deb44789 +SIZE (ldap-account-manager-4.4.tar.bz2) = 13557991 diff -ruN /usr/ports/sysutils/ldap-account-manager/files/pkg-message.in /root/ldap-account-manager/files/pkg-message.in --- /usr/ports/sysutils/ldap-account-manager/files/pkg-message.in 2012-07-14 17:29:18.000000000 +0300 +++ /root/ldap-account-manager/files/pkg-message.in 2014-01-01 22:41:12.000000000 +0200 @@ -1,4 +1,4 @@ - To use LDAP-account-manager, you have to install + To use LDAP account manager, you have to install and set up Samba 3.x schemas. Like this : include %%PREFIX%%/etc/openldap/schema/core.schema diff -ruN /usr/ports/sysutils/ldap-account-manager/pkg-plist /root/ldap-account-manager/pkg-plist --- /usr/ports/sysutils/ldap-account-manager/pkg-plist 2013-09-18 17:10:09.000000000 +0300 +++ /root/ldap-account-manager/pkg-plist 1970-01-01 03:00:00.000000000 +0300 @@ -1,1156 +0,0 @@ -@comment $FreeBSD: sysutils/ldap-account-manager/pkg-plist 327547 2013-09-18 14:10:09Z wg $ -@unexec if cmp -s %D/%%WWWDIR%%/config/config.cfg %D/%%WWWDIR%%/config/config.cfg_sample; then rm -f %D/%%WWWDIR%%/config/config.cfg; fi -@unexec if cmp -s %D/%%WWWDIR%%/config/lam.conf %D/%%WWWDIR%%/config/lam.conf_sample; then rm -f %D/%%WWWDIR%%/config/lam.conf; fi -@unexec unlink %D/%%WWWDIR%%/config/shells -%%WWWDIR%%/tmp/.htaccess -%%WWWDIR%%/tmp/internal/.htaccess -%%WWWDIR%%/templates/tree/treeViewContainer.php -%%WWWDIR%%/templates/tools.php -%%WWWDIR%%/templates/tests/schemaTest.php -%%WWWDIR%%/templates/tests/lamdaemonTest.php -%%WWWDIR%%/templates/tests/index.php -%%WWWDIR%%/templates/serverInfo.php -%%WWWDIR%%/templates/schema/schema.php -%%WWWDIR%%/templates/profedit/profilepage.php -%%WWWDIR%%/templates/profedit/profilemain.php -%%WWWDIR%%/templates/pdfedit/pdfpage.php -%%WWWDIR%%/templates/pdfedit/pdfmain.php -%%WWWDIR%%/templates/ou_edit.php -%%WWWDIR%%/templates/misc/ajax.php -%%WWWDIR%%/templates/masscreate.php -%%WWWDIR%%/templates/massDoUpload.php -%%WWWDIR%%/templates/massBuildAccounts.php -%%WWWDIR%%/templates/main_header.php -%%WWWDIR%%/templates/main_footer.php -%%WWWDIR%%/templates/main.php -%%WWWDIR%%/templates/logout.php -%%WWWDIR%%/templates/login.php -%%WWWDIR%%/templates/lists/userlink.php -%%WWWDIR%%/templates/lists/list.php -%%WWWDIR%%/templates/lists/deletelink.php -%%WWWDIR%%/templates/lib/100_jquery-1.9.1.min.js -%%WWWDIR%%/templates/lib/110_jquery-ui-1.10.1.custom.min.js -%%WWWDIR%%/templates/lib/140_jquery.validationEngine-2.6.2.js -%%WWWDIR%%/templates/lib/500_lam.js -%%WWWDIR%%/templates/lib/200_wz_tooltip.js -%%WWWDIR%%/templates/lib/130_jquery-dropmenu-1.1.3.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/af.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/bg.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ar.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ca.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/bn.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/bs.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/da.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/de.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/cs.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/cy.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/el.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/fa.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/eo.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/es.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/fi.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/et.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/eu.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/fo.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/fr.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/gl.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/he.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/hi.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/gu.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/hr.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/hu.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ja.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/is.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/it.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ka.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/km.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ko.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/lt.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/lv.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/nb.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/mn.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ms.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/nl.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/no.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/pl.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/pt.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ro.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/ru.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/sk.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/sl.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/sr.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/th.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/sv.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/tr.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/uk.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/vi.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/zh.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/pt-br.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/zh-cn.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/en-au.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/en-ca.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/en-gb.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/fr-ca.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/sr-latn.js -%%WWWDIR%%/templates/lib/extra/ckeditor/lang/_languages.js -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/templates.css -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/skin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/dialog.css -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/dialog_sides_rtl.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/sprites.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/mini.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/sprites_ie6.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/dialog_sides.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/dialog_sides.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images/noimage.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/icons.png -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/editor.css -%%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/icons_rtl.png -%%WWWDIR%%/templates/lib/extra/ckeditor/config.js -%%WWWDIR%%/templates/lib/extra/ckeditor/ckeditor.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/div/dialogs/div.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc/dialogs/ciframe.html -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc/dialogs/wsc.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc/dialogs/tmpFrameset.html -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc/dialogs/wsc.css -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/xml/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/ajax/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/find/dialogs/find.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link/dialogs/link.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link/dialogs/anchor.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link/images/anchor.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/about/dialogs/logo_ckeditor.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/about/dialogs/about.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/flash/dialogs/flash.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/flash/images/placeholder.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/select.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/textfield.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/checkbox.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/hiddenfield.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/radio.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/button.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/form.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs/textarea.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/images/hiddenfield.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/image/dialogs/image.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/scayt/dialogs/toolbar.css -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/scayt/dialogs/options.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/table/dialogs/table.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/colordialog/dialogs/colordialog.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/autogrow/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastetext/dialogs/pastetext.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pagebreak/images/pagebreak.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/bbcode/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/tabletools/dialogs/tableCell.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframedialog/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/dialog/dialogDefinition.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp/lang/he.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_p.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h1.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h2.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h3.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h4.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h5.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_h6.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_pre.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_div.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_blockquote.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images/block_address.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframe/dialogs/iframe.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframe/images/placeholder.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/stylesheetparser/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets/yui.css -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/yui.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/lang/he.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/dialogs/uicolor.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/uicolor.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/lang/he.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/dialogs/placeholder.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/placeholder.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/specialchar/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/specialchar/dialogs/specialchar.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/dialogs/smiley.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/sad_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/embaressed_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/shades_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/tounge_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/envelope.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/wink_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/angry_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/heart.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/regular_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/thumbs_down.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/kiss.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/confused_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/lightbulb.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/broken_heart.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/thumbs_up.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/omg_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/teeth_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/devil_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/cry_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images/angel_smile.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/styles/styles/default.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/liststyle/dialogs/liststyle.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/adobeair/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/devtools/lang/en.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/devtools/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastefromword/filter/default.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/clipboard/dialogs/paste.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/tableresize/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/docprops/dialogs/docprops.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/docprops/plugin.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/dialogs/templates.js -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates/images/template1.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates/images/template2.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates/images/template3.gif -%%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates/default.js -%%WWWDIR%%/templates/lib/extra/ckeditor/contents.css -%%WWWDIR%%/templates/initsuff.php -%%WWWDIR%%/templates/help.php -%%WWWDIR%%/templates/delete.php -%%WWWDIR%%/templates/config/profmanage.php -%%WWWDIR%%/templates/config/moduleSettings.php -%%WWWDIR%%/templates/config/mainmanage.php -%%WWWDIR%%/templates/config/mainlogin.php -%%WWWDIR%%/templates/config/index.php -%%WWWDIR%%/templates/config/conftypes.php -%%WWWDIR%%/templates/config/confsave.php -%%WWWDIR%%/templates/config/confmodules.php -%%WWWDIR%%/templates/config/confmain.php -%%WWWDIR%%/templates/config/conflogin.php -%%WWWDIR%%/templates/account/edit.php -%%WWWDIR%%/templates/3rdParty/pla/tools/unserialize.php -%%WWWDIR%%/templates/3rdParty/pla/templates/modification/.placeholder -%%WWWDIR%%/templates/3rdParty/pla/templates/creation/ou.xml -%%WWWDIR%%/templates/3rdParty/pla/queries/.placeholder -%%WWWDIR%%/templates/3rdParty/pla/lib/xmlTemplates.php -%%WWWDIR%%/templates/3rdParty/pla/lib/xml2array.php -%%WWWDIR%%/templates/3rdParty/pla/lib/template_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/syslog.php -%%WWWDIR%%/templates/3rdParty/pla/lib/session_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/schema_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/query_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/page.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ldap_supported_oids.txt -%%WWWDIR%%/templates/3rdParty/pla/lib/ldap_error_codes.txt -%%WWWDIR%%/templates/3rdParty/pla/lib/import_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/hooks.php -%%WWWDIR%%/templates/3rdParty/pla/lib/functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/export_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/emuhash_functions.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ds_myldap.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ds_ldap_pla.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ds.php -%%WWWDIR%%/templates/3rdParty/pla/lib/createlm.php -%%WWWDIR%%/templates/3rdParty/pla/lib/config_default.php -%%WWWDIR%%/templates/3rdParty/pla/lib/common.php -%%WWWDIR%%/templates/3rdParty/pla/lib/blowfish.php -%%WWWDIR%%/templates/3rdParty/pla/lib/Visitor.php -%%WWWDIR%%/templates/3rdParty/pla/lib/TreeItem.php -%%WWWDIR%%/templates/3rdParty/pla/lib/Tree.php -%%WWWDIR%%/templates/3rdParty/pla/lib/TemplateRender.php -%%WWWDIR%%/templates/3rdParty/pla/lib/Template.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ShadowAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/SelectionAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/SambaPasswordAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/RandomPasswordAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/QueryRender.php -%%WWWDIR%%/templates/3rdParty/pla/lib/Query.php -%%WWWDIR%%/templates/3rdParty/pla/lib/PasswordAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/PageRender.php -%%WWWDIR%%/templates/3rdParty/pla/lib/ObjectClassAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/MultiLineAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/MassRender.php -%%WWWDIR%%/templates/3rdParty/pla/lib/JpegAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/HTMLTree.php -%%WWWDIR%%/templates/3rdParty/pla/lib/GidAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/DnAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/DateAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/BinaryAttribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/AttributeFactory.php -%%WWWDIR%%/templates/3rdParty/pla/lib/Attribute.php -%%WWWDIR%%/templates/3rdParty/pla/lib/AJAXTree.php -%%WWWDIR%%/templates/3rdParty/pla/index.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/view_jpeg_photo.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/update_confirm.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/update.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/template_engine.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/rename_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/rename.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/refresh.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/rdelete.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/query_engine.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/password_checker.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/modify_member_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/mass_update.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/mass_edit.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/mass_delete.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/toAscii.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/modify_member.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/layersmenu-browser_detection.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/today-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/title-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/theme.css -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/status-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/rowhover-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/normal-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/menuarrow.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/hover-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/dark-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua/active-bg.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/menuarrow.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/cn_utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-zh.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-tr.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-sv.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-sp.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-sk.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-si.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ru_win_.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ru.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ro.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-pt.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-pl.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-pl-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-no.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-nl.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-lv.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-lt.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-lt-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ko.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ko-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-jp.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-it.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-hu.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-hr.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-hr-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-he-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-fr.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-fi.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-es.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-en.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-el.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-du.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-de.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-da.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-cs-win.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-cs-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-ca.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-br.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-big5.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-big5-utf8.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-bg.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-al.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang/calendar-af.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/calendar.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/calendar-setup.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/calendar-blue.css -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/form_field_toggle_enable.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/dnChooserPopup.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/date_selector.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/ajax_tree.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/ajax_functions.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/TemplateRender.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/js/CheckAll.js -%%WWWDIR%%/templates/3rdParty/pla/htdocs/index.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/import_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/import.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/favicon.ico -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/warn-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/up.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/unknown.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_vertline.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_split_first.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_split.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_space.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_expand_first.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_expand_corner_first.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_expand_corner.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_expand.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_corner.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_collapse_first.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_collapse_corner_first.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_collapse_corner.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tree_collapse.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/trash.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tools.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/tools-no.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/terminal.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/switch.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/server.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/server-small.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/server-settings.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/search-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/save.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/rfc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/rename.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/refresh.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/refresh-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/process.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/plus.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/photo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/phone.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/nt_user.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/nt_machine.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/nogo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/network.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/n.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/move.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/monitorserver-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/minus.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/mail.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/lock.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/locality.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/light.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-user.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-uniquegroup.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-uid.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-server.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-ou.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-o.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-default.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-dc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/ldap-alias.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/key.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/invalid.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/info-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/import-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/host.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/home-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/help.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/hard-drive.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/folder.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/find.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/files.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/export.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/export-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/error.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/error-big.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/door.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/document.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/disabled.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/device.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/delete.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/cut.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/create.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/country.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/compare.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/children.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/catalog.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/calendar.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default/add.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/zw.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/za.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/yu.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ye.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ws.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/vn.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/vi.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/vg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ve.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/va.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/uy.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/us.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ug.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ua.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tw.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tv.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tp.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/to.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tn.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/th.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/tc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sy.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/so.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sl.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sk.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/si.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/se.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sd.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sb.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/sa.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ru.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ro.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/qa.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/py.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pm.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pl.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pk.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ph.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pf.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pe.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/pa.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/om.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/nz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/nr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/np.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/no.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/nl.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/nf.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/nc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/na.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/my.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mx.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ms.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mp.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mn.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/md.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/mc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ma.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ly.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lv.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lu.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lk.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lc.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/lb.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/kz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ky.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/kr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/kp.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ki.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/kh.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/kg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ke.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/jp.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/jo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/jm.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/it.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/is.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ir.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/iq.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/in.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/il.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ie.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/id.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/hu.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ht.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/hr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/hk.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gy.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gu.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gp.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gl.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gi.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ge.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/gb.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ga.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/fr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/fo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/fj.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/fi.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/et.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/es.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/er.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/eg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ee.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ec.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/dz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/dk.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/de.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cy.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cv.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cu.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cr.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/co.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cn.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cm.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cl.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ck.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ci.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ch.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/cf.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ca.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bz.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/by.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bw.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bt.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bs.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/br.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bo.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bn.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bm.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bj.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bi.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bh.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bg.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bf.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/be.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bd.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/bb.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ba.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/az.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/aw.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/au.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/at.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ar.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/ao.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/an.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/am.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/al.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries/af.png -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/ajax-spinner.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/images/ajax-progress.gif -%%WWWDIR%%/templates/3rdParty/pla/htdocs/export_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/export.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/expand.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/entry_chooser.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/draw_tree_node.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/download_binary_attr.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/delete_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/delete_attr.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/delete.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/css/default/style.css -%%WWWDIR%%/templates/3rdParty/pla/htdocs/create_confirm.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/create.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/copy_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/copy.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/compare_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/compare.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/common.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/collapse.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/cmd.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/add_value_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/add_oclass_form.php -%%WWWDIR%%/templates/3rdParty/pla/htdocs/add_attr_form.php -%%WWWDIR%%/templates/3rdParty/pla/config/config.php -%%WWWDIR%%/templates/.htaccess -%%WWWDIR%%/templates/lib/141_jquery-validationEngine-lang.php -%%WWWDIR%%/style/lam-images/headerLine.png -%%WWWDIR%%/style/120_jquery-ui-1.10.1.custom.css -%%WWWDIR%%/style/images/animated-overlay.gif -%%WWWDIR%%/style/images/ui-icons_cd0a0a_256x240.png -%%WWWDIR%%/style/images/ui-icons_888888_256x240.png -%%WWWDIR%%/style/images/ui-icons_454545_256x240.png -%%WWWDIR%%/style/images/ui-icons_2e83ff_256x240.png -%%WWWDIR%%/style/images/ui-icons_222222_256x240.png -%%WWWDIR%%/style/images/ui-bg_highlight-soft_75_cccccc_1x150-vertical.png -%%WWWDIR%%/style/images/ui-bg_highlight-soft_75_cccccc_1x100.png -%%WWWDIR%%/style/images/ui-bg_glass_95_fef1ec_1x400.png -%%WWWDIR%%/style/images/ui-bg_glass_75_e6e6e6_1x400.png -%%WWWDIR%%/style/images/ui-bg_glass_75_dadada_1x400.png -%%WWWDIR%%/style/images/ui-bg_glass_65_ffffff_1x400.png -%%WWWDIR%%/style/images/ui-bg_glass_55_fbf9ee_1x400.png -%%WWWDIR%%/style/images/ui-bg_flat_75_ffffff_40x100.png -%%WWWDIR%%/style/images/ui-bg_flat_0_aaaaaa_40x100.png -%%WWWDIR%%/style/images/ui-anim_basic_16x16.gif -%%WWWDIR%%/style/images/pbar-ani.gif -%%WWWDIR%%/style/.htaccess -%%WWWDIR%%/sess/.htaccess -%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/zh_TW/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/zh_CN/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/sk_SK/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/sk_SK/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/ru_RU/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/ru_RU/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/pt_BR/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/pl_PL/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/pl_PL/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/nl_NL/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/nl_NL/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/ja_JP/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/ja_JP/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/it_IT/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/it_IT/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/hu_HU/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/hu_HU/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/fr_FR/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/fr_FR/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/es_ES/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/es_ES/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/de_DE/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/de_DE/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/cs_CZ/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/cs_CZ/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/ca_ES/LC_MESSAGES/messages.po -%%WWWDIR%%/locale/ca_ES/LC_MESSAGES/messages.mo -%%WWWDIR%%/locale/.htaccess -%%WWWDIR%%/lib/xml_parser.inc -%%WWWDIR%%/lib/ufpdf.php -%%WWWDIR%%/lib/types/user.inc -%%WWWDIR%%/lib/types/smbDomain.inc -%%WWWDIR%%/lib/types/netgroup.inc -%%WWWDIR%%/lib/types/mailAlias.inc -%%WWWDIR%%/lib/types/host.inc -%%WWWDIR%%/lib/types/group.inc -%%WWWDIR%%/lib/types/dhcp.inc -%%WWWDIR%%/lib/types/asteriskExt.inc -%%WWWDIR%%/lib/types.inc -%%WWWDIR%%/lib/tools/tests.inc -%%WWWDIR%%/lib/tools/serverInfo.inc -%%WWWDIR%%/lib/tools/schemaBrowser.inc -%%WWWDIR%%/lib/tools/profileEditor.inc -%%WWWDIR%%/lib/tools/pdfEdit.inc -%%WWWDIR%%/lib/tools/ouEditor.inc -%%WWWDIR%%/lib/tools/fileUpload.inc -%%WWWDIR%%/lib/tools.inc -%%WWWDIR%%/lib/status.inc -%%WWWDIR%%/lib/selfService.inc -%%WWWDIR%%/lib/security.inc -%%WWWDIR%%/lib/schema.inc -%%WWWDIR%%/lib/profiles.inc -%%WWWDIR%%/lib/pdfstruct.inc -%%WWWDIR%%/lib/pdf.inc -%%WWWDIR%%/lib/modules/kolabGroup.inc -%%WWWDIR%%/lib/modules/windowsPosixGroup.inc -%%WWWDIR%%/lib/modules/windowsGroup.inc -%%WWWDIR%%/lib/modules/windowsHost.inc -%%WWWDIR%%/lib/modules/windowsUser.inc -%%WWWDIR%%/lib/modules/systemQuotas.inc -%%WWWDIR%%/lib/modules/shadowAccount.inc -%%WWWDIR%%/lib/modules/sambaSamAccount/sambaMungedDial.inc -%%WWWDIR%%/lib/modules/sambaSamAccount.inc -%%WWWDIR%%/lib/modules/sambaGroupMapping.inc -%%WWWDIR%%/lib/modules/sambaDomain.inc -%%WWWDIR%%/lib/modules/range.inc -%%WWWDIR%%/lib/modules/quota.inc -%%WWWDIR%%/lib/modules/posixGroup.inc -%%WWWDIR%%/lib/modules/posixAccount.inc -%%WWWDIR%%/lib/modules/puppetClient.inc -%%WWWDIR%%/lib/modules/nisnetgroup.inc -%%WWWDIR%%/lib/modules/nisMailAlias.inc -%%WWWDIR%%/lib/modules/ldapPublicKey.inc -%%WWWDIR%%/lib/modules/kolabUser.inc -%%WWWDIR%%/lib/modules/inetOrgPerson.inc -%%WWWDIR%%/lib/modules/inetLocalMailRecipient.inc -%%WWWDIR%%/lib/modules/imapAccess.inc -%%WWWDIR%%/lib/modules/ieee802device.inc -%%WWWDIR%%/lib/modules/hostObject.inc -%%WWWDIR%%/lib/modules/generalInformation.inc -%%WWWDIR%%/lib/modules/fixed_ip.inc -%%WWWDIR%%/lib/modules/eduPerson.inc -%%WWWDIR%%/lib/modules/dhcp_settings.inc -%%WWWDIR%%/lib/modules/ddns.inc -%%WWWDIR%%/lib/modules/asteriskVoicemail.inc -%%WWWDIR%%/lib/modules/asteriskExtension.inc -%%WWWDIR%%/lib/modules/asteriskAccount.inc -%%WWWDIR%%/lib/modules/account.inc -%%WWWDIR%%/lib/modules/freeRadius.inc -%%WWWDIR%%/lib/modules/authorizedServiceObject.inc -%%WWWDIR%%/lib/modules.inc -%%WWWDIR%%/lib/lists.inc -%%WWWDIR%%/lib/ldap.inc -%%WWWDIR%%/lib/lamdaemon.pl -%%WWWDIR%%/lib/lamdaemon.inc -%%WWWDIR%%/lib/lamPDF.inc -%%WWWDIR%%/lib/html.inc -%%WWWDIR%%/lib/fpdf.php -%%WWWDIR%%/lib/font/verai.z -%%WWWDIR%%/lib/font/verai.php -%%WWWDIR%%/lib/font/verai.ctg.z -%%WWWDIR%%/lib/font/verabi.z -%%WWWDIR%%/lib/font/verabi.php -%%WWWDIR%%/lib/font/verabi.ctg.z -%%WWWDIR%%/lib/font/verab.z -%%WWWDIR%%/lib/font/verab.php -%%WWWDIR%%/lib/font/verab.ctg.z -%%WWWDIR%%/lib/font/vera.z -%%WWWDIR%%/lib/font/vera.php -%%WWWDIR%%/lib/font/vera.ctg.z -%%WWWDIR%%/lib/createntlm.inc -%%WWWDIR%%/lib/config.inc -%%WWWDIR%%/lib/checkEnvironment.inc -%%WWWDIR%%/lib/baseType.inc -%%WWWDIR%%/lib/baseModule.inc -%%WWWDIR%%/lib/account.inc -%%WWWDIR%%/lib/3rdParty/phpseclib/PHP/Compat/Function/str_split.php -%%WWWDIR%%/lib/3rdParty/phpseclib/PHP/Compat/Function/bcpowmod.php -%%WWWDIR%%/lib/3rdParty/phpseclib/PHP/Compat/Function/array_fill.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Net/SSH2.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Net/SSH1.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Net/SFTP.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Math/BigInteger.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/TripleDES.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/Rijndael.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/Random.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/RSA.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/RC4.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/Hash.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/DES.php -%%WWWDIR%%/lib/3rdParty/phpseclib/Crypt/AES.php -%%WWWDIR%%/lib/.htaccess -%%WWWDIR%%/index.html -%%WWWDIR%%/help/help.inc -%%WWWDIR%%/help/.htaccess -%%WWWDIR%%/graphics/warn.png -%%WWWDIR%%/graphics/userDefault.png -%%WWWDIR%%/graphics/user.png -%%WWWDIR%%/graphics/up.gif -%%WWWDIR%%/graphics/uniquegroup.png -%%WWWDIR%%/graphics/unlocked.png -%%WWWDIR%%/graphics/undo.png -%%WWWDIR%%/graphics/uid.png -%%WWWDIR%%/graphics/tux.png -%%WWWDIR%%/graphics/tree_info.png -%%WWWDIR%%/graphics/tools.png -%%WWWDIR%%/graphics/tools-no.png -%%WWWDIR%%/graphics/tests.png -%%WWWDIR%%/graphics/star.png -%%WWWDIR%%/graphics/sort_desc.png -%%WWWDIR%%/graphics/sort_asc.png -%%WWWDIR%%/graphics/smbDomain.png -%%WWWDIR%%/graphics/server-small.png -%%WWWDIR%%/graphics/server-settings.png -%%WWWDIR%%/graphics/select.png -%%WWWDIR%%/graphics/security.png -%%WWWDIR%%/graphics/script.png -%%WWWDIR%%/graphics/schemaTest.png -%%WWWDIR%%/graphics/schemaBrowser.png -%%WWWDIR%%/graphics/saveBig.png -%%WWWDIR%%/graphics/save.png -%%WWWDIR%%/graphics/samba.png -%%WWWDIR%%/graphics/required.png -%%WWWDIR%%/graphics/refresh.png -%%WWWDIR%%/graphics/puppet.png -%%WWWDIR%%/graphics/profiles.png -%%WWWDIR%%/graphics/process.png -%%WWWDIR%%/graphics/plus.png -%%WWWDIR%%/graphics/pdf.png -%%WWWDIR%%/graphics/pass.png -%%WWWDIR%%/graphics/partiallyLocked.png -%%WWWDIR%%/graphics/printer.png -%%WWWDIR%%/graphics/printerBig.png -%%WWWDIR%%/graphics/ou.png -%%WWWDIR%%/graphics/object.png -%%WWWDIR%%/graphics/o.png -%%WWWDIR%%/graphics/nt_user.png -%%WWWDIR%%/graphics/nt_machine.png -%%WWWDIR%%/graphics/network.png -%%WWWDIR%%/graphics/network-wired.png -%%WWWDIR%%/graphics/netgroup.png -%%WWWDIR%%/graphics/n.png -%%WWWDIR%%/graphics/modules.png -%%WWWDIR%%/graphics/minus.png -%%WWWDIR%%/graphics/mailBig.png -%%WWWDIR%%/graphics/mailAlias.png -%%WWWDIR%%/graphics/mail.png -%%WWWDIR%%/graphics/logo32.png -%%WWWDIR%%/graphics/lock.png -%%WWWDIR%%/graphics/locality.png -%%WWWDIR%%/graphics/loadProfile.png -%%WWWDIR%%/graphics/light.png -%%WWWDIR%%/graphics/ldap-server.png -%%WWWDIR%%/graphics/language.png -%%WWWDIR%%/graphics/lamdaemonSmall.png -%%WWWDIR%%/graphics/lamdaemon.png -%%WWWDIR%%/graphics/lam.png -%%WWWDIR%%/graphics/kolab.png -%%WWWDIR%%/graphics/keyBig.png -%%WWWDIR%%/graphics/key.png -%%WWWDIR%%/graphics/ipRange.png -%%WWWDIR%%/graphics/info.png -%%WWWDIR%%/graphics/host.png -%%WWWDIR%%/graphics/help.png -%%WWWDIR%%/graphics/hard-driveBig.png -%%WWWDIR%%/graphics/hard-drive.png -%%WWWDIR%%/graphics/groupBig.png -%%WWWDIR%%/graphics/group.png -%%WWWDIR%%/graphics/go.png -%%WWWDIR%%/graphics/go-previous.png -%%WWWDIR%%/graphics/go-next.png -%%WWWDIR%%/graphics/go-last.png -%%WWWDIR%%/graphics/go-first.png -%%WWWDIR%%/graphics/gear.png -%%WWWDIR%%/graphics/forward.gif -%%WWWDIR%%/graphics/folder.png -%%WWWDIR%%/graphics/find.png -%%WWWDIR%%/graphics/filter.png -%%WWWDIR%%/graphics/clearFilter.png -%%WWWDIR%%/graphics/files.png -%%WWWDIR%%/graphics/favicon.ico -%%WWWDIR%%/graphics/fail.png -%%WWWDIR%%/graphics/exitBig.png -%%WWWDIR%%/graphics/exit.png -%%WWWDIR%%/graphics/error.png -%%WWWDIR%%/graphics/eduPerson.png -%%WWWDIR%%/graphics/edit.png -%%WWWDIR%%/graphics/down.gif -%%WWWDIR%%/graphics/door.png -%%WWWDIR%%/graphics/document.png -%%WWWDIR%%/graphics/dhcpBig.png -%%WWWDIR%%/graphics/dhcp.png -%%WWWDIR%%/graphics/device.png -%%WWWDIR%%/graphics/delete.png -%%WWWDIR%%/graphics/delete.gif -%%WWWDIR%%/graphics/del.png -%%WWWDIR%%/graphics/dc.png -%%WWWDIR%%/graphics/computer.png -%%WWWDIR%%/graphics/catalog.png -%%WWWDIR%%/graphics/bigTools.png -%%WWWDIR%%/graphics/bigPeople.png -%%WWWDIR%%/graphics/back.gif -%%WWWDIR%%/graphics/asteriskExt.png -%%WWWDIR%%/graphics/asterisk.png -%%WWWDIR%%/graphics/add.png -%%WWWDIR%%/graphics/.htaccess -%%WWWDIR%%/graphics/services.png -%%WWWDIR%%/graphics/freeRadius.png -%%WWWDIR%%/config/selfService/default.user -%%WWWDIR%%/config/language -%%WWWDIR%%/config/lam.conf_sample -%%WWWDIR%%/config/config.cfg_sample -%%WWWDIR%%/config/.htaccess -%%WWWDIR%%/VERSION -%%WWWDIR%%/style/150_jquery-fineuploader.css -%%WWWDIR%%/style/500_layout.css -%%WWWDIR%%/style/150_jquery-validationEngine.css -%%WWWDIR%%/style/loading.gif -%%WWWDIR%%/style/150_jquery-dropmenu.css -%%WWWDIR%%/graphics/export.png -%%WWWDIR%%/graphics/import.png -%%WWWDIR%%/templates/lib/130_jquery-fineuploader-3.0.min.js -%%WWWDIR%%/lib/upgrade.inc -%%WWWDIR%%/config/templates/profiles/default.netgroup -%%WWWDIR%%/config/templates/profiles/default.automountType -%%WWWDIR%%/config/templates/profiles/default.dhcp -%%WWWDIR%%/config/templates/profiles/default.user -%%WWWDIR%%/config/templates/profiles/.htaccess -%%WWWDIR%%/config/templates/profiles/default.group -%%WWWDIR%%/config/templates/profiles/default.smbDomain -%%WWWDIR%%/config/templates/profiles/default.gon -%%WWWDIR%%/config/templates/profiles/default.asteriskExt -%%WWWDIR%%/config/templates/profiles/default.host -%%WWWDIR%%/config/templates/profiles/default.zarafaAddressListType -%%WWWDIR%%/config/templates/profiles/default.ppolicyType -%%WWWDIR%%/config/templates/profiles/default.nisObjectType -%%WWWDIR%%/config/templates/profiles/default.mailAlias -%%WWWDIR%%/config/templates/profiles/default.alias -%%WWWDIR%%/config/templates/profiles/default.zarafaDynamicGroupType -%%WWWDIR%%/config/templates/profiles/default.sudo -%%WWWDIR%%/config/templates/pdf/default.netgroup.xml -%%WWWDIR%%/config/templates/pdf/default.user.xml -%%WWWDIR%%/config/templates/pdf/default.alias.xml -%%WWWDIR%%/config/templates/pdf/default.asteriskExt.xml -%%WWWDIR%%/config/templates/pdf/logos/printLogo.jpg -%%WWWDIR%%/config/templates/pdf/logos/.htaccess -%%WWWDIR%%/config/templates/pdf/default.smbDomain.xml -%%WWWDIR%%/config/templates/pdf/default.dhcp.xml -%%WWWDIR%%/config/templates/pdf/default.mailAlias.xml -%%WWWDIR%%/config/templates/pdf/default.zarafaDynamicGroupType.xml -%%WWWDIR%%/config/templates/pdf/default.sudo.xml -%%WWWDIR%%/config/templates/pdf/.htaccess -%%WWWDIR%%/config/templates/pdf/default.automountType.xml -%%WWWDIR%%/config/templates/pdf/default.zarafaAddressListType.xml -%%WWWDIR%%/config/templates/pdf/default.nisObjectType.xml -%%WWWDIR%%/config/templates/pdf/default.ppolicyType.xml -%%WWWDIR%%/config/templates/pdf/default.group.xml -%%WWWDIR%%/config/templates/pdf/default.gon.xml -%%WWWDIR%%/config/templates/pdf/default.host.xml -%%WWWDIR%%/config/selfService/.htaccess -%%WWWDIR%%/config/profiles/.htaccess -%%WWWDIR%%/config/pdf/.htaccess -@exec if [ ! -f %D/%%WWWDIR%%/config/lam.conf ] ; then cp %D/%%WWWDIR%%/config/lam.conf_sample %D/%%WWWDIR%%/config/lam.conf; fi -@exec if [ ! -f %D/%%WWWDIR%%/config/config.cfg ] ; then cp %D/%%WWWDIR%%/config/config.cfg_sample %D/%%WWWDIR%%/config/config.cfg; fi -@exec mkdir -p %D/%%WWWDIR%%/config/pdf %D/%%WWWDIR%%/config/profiles -@exec chown -R %%WWWOWN%%:%%WWWGRP%% %D/%%WWWDIR%%/config %D/%%WWWDIR%%/sess %D/%%WWWDIR%%/tmp -@exec ln -sf /etc/shells %D/%%WWWDIR%%/config/shells -@dirrm %%WWWDIR%%/tmp/internal -@dirrm %%WWWDIR%%/tmp -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/skins/office2003 -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/skins -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/div/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/div -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/wsc -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/xml -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/ajax -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/find/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/find -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/link -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/about/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/about -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/flash/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/flash/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/flash -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/forms -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/image/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/image -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/scayt/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/scayt -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/table/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/table -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/colordialog/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/colordialog -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/autogrow -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastetext/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastetext -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pagebreak/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pagebreak -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/bbcode -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/tabletools/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/tabletools -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframedialog -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/dialog -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/a11yhelp -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/showblocks -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframe/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframe/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/iframe -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/stylesheetparser -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui/assets -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/yui -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/uicolor -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/placeholder -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/specialchar/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/specialchar/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/specialchar -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/smiley -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/styles/styles -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/styles -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/liststyle/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/liststyle -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/adobeair -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/devtools/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/devtools -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastefromword/filter -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/pastefromword -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/clipboard/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/clipboard -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/tableresize -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/docprops/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/docprops -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates/images -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/dialogs -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates/templates -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins/templates -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/plugins -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor/lang -@dirrm %%WWWDIR%%/templates/lib/extra/ckeditor -@dirrm %%WWWDIR%%/templates/lib/extra -@dirrm %%WWWDIR%%/templates/tree -@dirrm %%WWWDIR%%/templates/tests -@dirrm %%WWWDIR%%/templates/schema -@dirrm %%WWWDIR%%/templates/profedit -@dirrm %%WWWDIR%%/templates/pdfedit -@dirrm %%WWWDIR%%/templates/misc -@dirrm %%WWWDIR%%/templates/lists -@dirrm %%WWWDIR%%/templates/lib -@dirrm %%WWWDIR%%/templates/config -@dirrm %%WWWDIR%%/templates/account -@dirrm %%WWWDIR%%/templates/3rdParty/pla/tools -@dirrm %%WWWDIR%%/templates/3rdParty/pla/templates/modification -@dirrm %%WWWDIR%%/templates/3rdParty/pla/templates/creation -@dirrm %%WWWDIR%%/templates/3rdParty/pla/templates -@dirrm %%WWWDIR%%/templates/3rdParty/pla/queries -@dirrm %%WWWDIR%%/templates/3rdParty/pla/lib -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins/aqua -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/skins -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar/lang -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/js/jscalendar -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/js -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/images/default -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/images/countries -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/images -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/css/default -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs/css -@dirrm %%WWWDIR%%/templates/3rdParty/pla/htdocs -@dirrm %%WWWDIR%%/templates/3rdParty/pla/config -@dirrm %%WWWDIR%%/templates/3rdParty/pla -@dirrm %%WWWDIR%%/templates/3rdParty -@dirrm %%WWWDIR%%/templates -@dirrm %%WWWDIR%%/style/lam-images -@dirrm %%WWWDIR%%/style/images -@dirrm %%WWWDIR%%/style -@dirrm %%WWWDIR%%/locale/zh_TW/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/zh_TW -@dirrm %%WWWDIR%%/locale/zh_CN/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/zh_CN -@dirrm %%WWWDIR%%/locale/sk_SK/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/sk_SK -@dirrm %%WWWDIR%%/locale/ru_RU/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/ru_RU -@dirrm %%WWWDIR%%/locale/pt_BR/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/pt_BR -@dirrm %%WWWDIR%%/locale/pl_PL/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/pl_PL -@dirrm %%WWWDIR%%/locale/nl_NL/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/nl_NL -@dirrm %%WWWDIR%%/locale/ja_JP/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/ja_JP -@dirrm %%WWWDIR%%/locale/it_IT/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/it_IT -@dirrm %%WWWDIR%%/locale/hu_HU/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/hu_HU -@dirrm %%WWWDIR%%/locale/fr_FR/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/fr_FR -@dirrm %%WWWDIR%%/locale/es_ES/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/es_ES -@dirrm %%WWWDIR%%/locale/de_DE/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/de_DE -@dirrm %%WWWDIR%%/locale/cs_CZ/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/cs_CZ -@dirrm %%WWWDIR%%/locale/ca_ES/LC_MESSAGES -@dirrm %%WWWDIR%%/locale/ca_ES -@dirrm %%WWWDIR%%/locale -@dirrm %%WWWDIR%%/lib/types -@dirrm %%WWWDIR%%/lib/tools -@dirrm %%WWWDIR%%/lib/modules/sambaSamAccount -@dirrm %%WWWDIR%%/lib/modules -@dirrm %%WWWDIR%%/lib/font -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/PHP/Compat/Function -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/PHP/Compat -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/PHP -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/Net -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/Math -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib/Crypt -@dirrm %%WWWDIR%%/lib/3rdParty/phpseclib -@dirrm %%WWWDIR%%/lib/3rdParty -@dirrm %%WWWDIR%%/lib -@dirrm %%WWWDIR%%/help -@dirrm %%WWWDIR%%/graphics -@dirrm %%WWWDIR%%/config/selfService -@dirrm %%WWWDIR%%/config/templates/profiles -@dirrm %%WWWDIR%%/config/templates/pdf/logos -@dirrm %%WWWDIR%%/config/templates/pdf -@dirrm %%WWWDIR%%/config/templates -@dirrmtry %%WWWDIR%%/sess -@dirrmtry %%WWWDIR%%/config/pdf -@dirrmtry %%WWWDIR%%/config/profiles -@dirrmtry %%WWWDIR%%/config -@dirrmtry %%WWWDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 20:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E4A16BF4 for ; Wed, 1 Jan 2014 20:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BE7941179 for ; Wed, 1 Jan 2014 20:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01KA05e003985 for ; Wed, 1 Jan 2014 20:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01KA0Yb003984; Wed, 1 Jan 2014 20:10:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 20:10:00 GMT Resent-Message-Id: <201401012010.s01KA0Yb003984@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, Ross Timson Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 79F92A3F for ; Wed, 1 Jan 2014 20:04:32 +0000 (UTC) Received: from mail-wg0-x22a.google.com (mail-wg0-x22a.google.com [IPv6:2a00:1450:400c:c00::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0C9FE1143 for ; Wed, 1 Jan 2014 20:04:31 +0000 (UTC) Received: by mail-wg0-f42.google.com with SMTP id a1so15707599wgh.1 for ; Wed, 01 Jan 2014 12:04:30 -0800 (PST) Received: from localhost (host-92-17-14-222.as13285.net. [92.17.14.222]) by mx.google.com with ESMTPSA id at5sm66281395wic.1.2014.01.01.12.04.28 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 01 Jan 2014 12:04:29 -0800 (PST) Message-Id: <52c474cd.65abb40a.6f3f.6903@mx.google.com> Date: Wed, 01 Jan 2014 12:04:29 -0800 (PST) From: Ross Timson To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185396: [MAINTAINER] mail/notmuch: update to 0.17_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 20:10:01 -0000 >Number: 185396 >Category: ports >Synopsis: [MAINTAINER] mail/notmuch: update to 0.17_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: Wed Jan 01 20:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ross Timson >Release: FreeBSD 10.0-RC3 i386 >Organization: >Environment: System: FreeBSD callisto 10.0-RC3 FreeBSD 10.0-RC3 #0 r259778: Tue Dec 24 04:35:46 UTC >Description: - Update to 0.17_1 This includes a patch that fixed building with Clang so it should now build fine on FreeBSD 10. Also switched to using gmime2.6 Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- notmuch-0.17_1.patch begins here --- diff -ruN /usr/ports/mail/notmuch/Makefile ./Makefile --- /usr/ports/mail/notmuch/Makefile 2013-09-20 20:59:12.000000000 +0100 +++ ./Makefile 2014-01-01 18:59:54.000000000 +0000 @@ -2,7 +2,7 @@ # $FreeBSD: mail/notmuch/Makefile 327742 2013-09-20 19:59:12Z bapt $ PORTNAME= notmuch -PORTVERSION= 0.15.2 +PORTVERSION= 0.17 PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://notmuchmail.org/releases/ @@ -12,7 +12,7 @@ LICENSE= GPLv3 -LIB_DEPENDS= gmime-2.4:${PORTSDIR}/mail/gmime24 \ +LIB_DEPENDS= gmime-2.6:${PORTSDIR}/mail/gmime26 \ xapian:${PORTSDIR}/databases/xapian-core \ talloc:${PORTSDIR}/devel/talloc diff -ruN /usr/ports/mail/notmuch/distinfo ./distinfo --- /usr/ports/mail/notmuch/distinfo 2013-02-20 15:57:53.000000000 +0000 +++ ./distinfo 2014-01-01 18:05:45.000000000 +0000 @@ -1,2 +1,2 @@ -SHA256 (notmuch-0.15.2.tar.gz) = a6e8af6382ab6df4a944bbffda9eb22639612c047b94632168b4270f2af59c0d -SIZE (notmuch-0.15.2.tar.gz) = 560411 +SHA256 (notmuch-0.17.tar.gz) = d215e0e7e536c50bc0d8a455a58bb4ddabe0678cc637c4dcebdb57d5c4bcbe95 +SIZE (notmuch-0.17.tar.gz) = 606710 --- notmuch-0.17_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 20:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CEF5FE2E for ; Wed, 1 Jan 2014 20:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A5F2B1210 for ; Wed, 1 Jan 2014 20:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01KK0jD006855 for ; Wed, 1 Jan 2014 20:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01KK06b006854; Wed, 1 Jan 2014 20:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 20:20:00 GMT Resent-Message-Id: <201401012020.s01KK06b006854@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, Ross Timson Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2620ACCC for ; Wed, 1 Jan 2014 20:14:53 +0000 (UTC) Received: from mail-wg0-x22e.google.com (mail-wg0-x22e.google.com [IPv6:2a00:1450:400c:c00::22e]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 81E9911FD for ; Wed, 1 Jan 2014 20:14:52 +0000 (UTC) Received: by mail-wg0-f46.google.com with SMTP id m15so11724353wgh.25 for ; Wed, 01 Jan 2014 12:14:51 -0800 (PST) Received: from localhost (host-92-17-14-222.as13285.net. [92.17.14.222]) by mx.google.com with ESMTPSA id fh2sm82003256wib.3.2014.01.01.12.14.49 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 01 Jan 2014 12:14:50 -0800 (PST) Message-Id: <52c4773a.a265b40a.48be.ffffe9b6@mx.google.com> Date: Wed, 01 Jan 2014 12:14:50 -0800 (PST) From: Ross Timson To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185397: [MAINTAINER] devel/chruby: update to 0.3.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 20:20:01 -0000 >Number: 185397 >Category: ports >Synopsis: [MAINTAINER] devel/chruby: update to 0.3.8 >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 Jan 01 20:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ross Timson >Release: FreeBSD 10.0-RC3 i386 >Organization: >Environment: System: FreeBSD callisto 10.0-RC3 FreeBSD 10.0-RC3 #0 r259778: Tue Dec 24 04:35:46 UTC >Description: - Update to 0.3.8 Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- chruby-0.3.8.patch begins here --- diff -ruN /usr/ports/devel/chruby/Makefile ./Makefile --- /usr/ports/devel/chruby/Makefile 2013-09-20 18:03:26.000000000 +0100 +++ ./Makefile 2014-01-01 20:11:41.000000000 +0000 @@ -2,7 +2,7 @@ # $FreeBSD: devel/chruby/Makefile 327722 2013-09-20 17:03:26Z bapt $ PORTNAME= chruby -PORTVERSION= 0.3.6 +PORTVERSION= 0.3.8 CATEGORIES= devel ruby MASTER_SITES= GH @@ -22,7 +22,7 @@ USE_GITHUB= yes GH_ACCOUNT= postmodern GH_PROJECT= chruby -GH_COMMIT= f271d06 +GH_COMMIT= b529bf2 GH_TAGNAME= v${PORTVERSION} NO_BUILD= yes diff -ruN /usr/ports/devel/chruby/distinfo ./distinfo --- /usr/ports/devel/chruby/distinfo 2013-06-27 07:59:45.000000000 +0100 +++ ./distinfo 2014-01-01 20:06:14.000000000 +0000 @@ -1,2 +1,2 @@ -SHA256 (chruby-0.3.6.tar.gz) = 9a0d799fd7154583870dc0c11e3e71ec3775efb9a6c0adea16b841d19bc99fea -SIZE (chruby-0.3.6.tar.gz) = 29825 +SHA256 (chruby-0.3.8.tar.gz) = 6b8ea04353d09c6eabe054d63c31405e13033f0b224dfddb213dd42acb31569f +SIZE (chruby-0.3.8.tar.gz) = 30876 --- chruby-0.3.8.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 21:03:35 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4D5A09B5; Wed, 1 Jan 2014 21:03:35 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1F1C5152A; Wed, 1 Jan 2014 21:03:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01L3YBE016309; Wed, 1 Jan 2014 21:03:34 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01L3Y7O016308; Wed, 1 Jan 2014 21:03:34 GMT (envelope-from jgh) Date: Wed, 1 Jan 2014 21:03:34 GMT Message-Id: <201401012103.s01L3Y7O016308@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Subject: Re: ports/185396: [MAINTAINER] mail/notmuch: update to 0.17_1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 21:03:35 -0000 Synopsis: [MAINTAINER] mail/notmuch: update to 0.17_1 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Wed Jan 1 21:03:34 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=185396 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 21:03:56 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0BC069EB; Wed, 1 Jan 2014 21:03:56 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D4F8B1531; Wed, 1 Jan 2014 21:03:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01L3tRB016400; Wed, 1 Jan 2014 21:03:55 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01L3tpn016399; Wed, 1 Jan 2014 21:03:55 GMT (envelope-from jgh) Date: Wed, 1 Jan 2014 21:03:55 GMT Message-Id: <201401012103.s01L3tpn016399@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Subject: Re: ports/185397: [MAINTAINER] devel/chruby: update to 0.3.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 21:03:56 -0000 Synopsis: [MAINTAINER] devel/chruby: update to 0.3.8 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Wed Jan 1 21:03:55 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=185397 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 22:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9DFCD97F for ; Wed, 1 Jan 2014 22:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 785A118AE for ; Wed, 1 Jan 2014 22:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01M00Ib027708 for ; Wed, 1 Jan 2014 22:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01M00p1027707; Wed, 1 Jan 2014 22:00:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 22:00:00 GMT Resent-Message-Id: <201401012200.s01M00p1027707@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, Stephen Hurd Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7DD92944 for ; Wed, 1 Jan 2014 21:54:48 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 68D12188D for ; Wed, 1 Jan 2014 21:54:48 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s01LslaF001052 for ; Wed, 1 Jan 2014 21:54:47 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s01LsldE001043; Wed, 1 Jan 2014 21:54:47 GMT (envelope-from nobody) Message-Id: <201401012154.s01LsldE001043@oldred.freebsd.org> Date: Wed, 1 Jan 2014 21:54:47 GMT From: Stephen Hurd To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185398: Fix comms/xmorse build with Clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 22:00:00 -0000 >Number: 185398 >Category: ports >Synopsis: Fix comms/xmorse build with Clang >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 Jan 01 22:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Stephen Hurd >Release: 10.0-RC3 >Organization: >Environment: FreeBSD portable 10.0-RC3 FreeBSD 10.0-RC3 #0 r259778: Mon Dec 23 23:27:58 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: comms/xmorse has hardcoded compiler names. Switch to ${CC} and ${CXX} works fine. >How-To-Repeat: Build without GCC installed >Fix: New patch-Makefile attached. Patch attached with submission follows: --- Makefile.orig 2004-09-29 15:12:16.000000000 -0700 +++ Makefile 2014-01-01 08:57:44.000000000 -0800 @@ -9,12 +9,12 @@ m.exe: m.fl Bargraph.cxx Bargraph.h Codebox.cxx Codebox.h Cw.cxx Cw.h \ Knob.cxx Knob.h Help.h m.fl fluid -c m.fl - g++ -c -Os `fltk-config --cxxflags` m.cxx - g++ -c -Os `fltk-config --cxxflags` Bargraph.cxx - g++ -c -Os `fltk-config --cxxflags` Codebox.cxx - g++ -c -Os `fltk-config --cxxflags` Knob.cxx - g++ -c -Os -I/usr/local/include/SDL Cw.cxx - g++ -om.exe m.o Bargraph.o Codebox.o Cw.o Knob.o \ + ${CXX} -c -Os `fltk-config --cxxflags` m.cxx + ${CXX} -c -Os `fltk-config --cxxflags` Bargraph.cxx + ${CXX} -c -Os `fltk-config --cxxflags` Codebox.cxx + ${CXX} -c -Os `fltk-config --cxxflags` Knob.cxx + ${CXX} -c -Os -I/usr/local/include/SDL Cw.cxx + ${CXX} -om.exe m.o Bargraph.o Codebox.o Cw.o Knob.o \ -static `fltk-config --ldstaticflags` \ -lSDL -lmingw32 -lmingwex -lwinmm -lSDLmain strip m.exe @@ -25,24 +25,43 @@ m: m.fl Bargraph.cxx Bargraph.h Codebox.cxx Codebox.h Cw.cxx Cw.h \ Knob.cxx Knob.h Help.h m.fl fluid -c m.fl - g++ -c -Os `fltk-config --cxxflags` m.cxx - g++ -c -Os `fltk-config --cxxflags` Bargraph.cxx - g++ -c -Os `fltk-config --cxxflags` Codebox.cxx - g++ -c -Os `fltk-config --cxxflags` Knob.cxx - g++ -c -Os `sdl-config --cflags` Cw.cxx - g++ -static -om m.o Bargraph.o Codebox.o Cw.o Knob.o \ + ${CXX} -c -Os `fltk-config --cxxflags` m.cxx + ${CXX} -c -Os `fltk-config --cxxflags` Bargraph.cxx + ${CXX} -c -Os `fltk-config --cxxflags` Codebox.cxx + ${CXX} -c -Os `fltk-config --cxxflags` Knob.cxx + ${CXX} -c -Os `sdl-config --cflags` Cw.cxx + ${CXX} -static -om m.o Bargraph.o Codebox.o Cw.o Knob.o \ `sdl-config --static-libs` \ `fltk-config --ldstaticflags` -ldl strip m rm *.o m.cxx m.h +# Regular "make" is what you want for the FreeBSD version + +all: m.fl Bargraph.cxx Bargraph.h Codebox.cxx Codebox.h Cw.cxx Cw.h \ + Knob.cxx Knob.h Help.h m.fl + fluid -c m.fl + ${CXX} -c -Os `fltk-config --cxxflags` m.cxx + ${CXX} -c -Os `fltk-config --cxxflags` Bargraph.cxx + ${CXX} -c -Os `fltk-config --cxxflags` Codebox.cxx + ${CXX} -c -Os `fltk-config --cxxflags` Knob.cxx + ${CXX} -c -Os `sdl-config --cflags` Cw.cxx + ${CXX} -om m.o Bargraph.o Codebox.o Cw.o Knob.o \ + `sdl-config --static-libs` \ + `fltk-config --ldstaticflags` + strip m + rm *.o m.cxx m.h + +install: m + ${INSTALL} -o root -g wheel -m 0555 m ${PREFIX}/bin/xmorse + # Besemer's Python extension version cw.so: cw.pyx Cw.cxx Cw.h pyrexc cw.pyx - gcc -c -fPIC -I/usr/include/python2.3 cw.c - gcc -c -fPIC `sdl-config --cflags` Cw.cxx - g++ -shared cw.o Cw.o -static `sdl-config --static-libs` -ocw.so + ${CC} -c -fPIC -I/usr/include/python2.3 cw.c + ${CC} -c -fPIC `sdl-config --cflags` Cw.cxx + ${CXX} -shared cw.o Cw.o -static `sdl-config --static-libs` -ocw.so rm cw.c *.o Help.h: m.htm >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 22:00:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52B599B6; Wed, 1 Jan 2014 22:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 291C018B0; Wed, 1 Jan 2014 22:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01M088X027837; Wed, 1 Jan 2014 22:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01M07pt027836; Wed, 1 Jan 2014 22:00:07 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 22:00:07 GMT Message-Id: <201401012200.s01M07pt027836@freefall.freebsd.org> To: shurd@sasktel.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185398: Fix comms/xmorse build with Clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 22:00:08 -0000 Synopsis: Fix comms/xmorse build with Clang State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed Jan 1 22:00:07 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185398 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 22:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 724EEB39 for ; Wed, 1 Jan 2014 22:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5C9A5194A for ; Wed, 1 Jan 2014 22:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01MA1QG030016 for ; Wed, 1 Jan 2014 22:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01MA1it030013; Wed, 1 Jan 2014 22:10:01 GMT (envelope-from gnats) Date: Wed, 1 Jan 2014 22:10:01 GMT Message-Id: <201401012210.s01MA1it030013@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/185398: Fix comms/xmorse build with Clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 01 Jan 2014 22:10:01 -0000 The following reply was made to PR ports/185398; it has been noted by GNATS. From: Edwin Groothuis To: sunrychen@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/185398: Fix comms/xmorse build with Clang Date: Wed, 1 Jan 2014 22:00:07 UT Maintainer of comms/xmorse, Please note that PR ports/185398 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/185398 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 22:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9DDFFDF4 for ; Wed, 1 Jan 2014 22:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5C19A19DB for ; Wed, 1 Jan 2014 22:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01MK0hi032790 for ; Wed, 1 Jan 2014 22:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01MK0RM032789; Wed, 1 Jan 2014 22:20:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 22:20:00 GMT Resent-Message-Id: <201401012220.s01MK0RM032789@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 [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA411B68 for ; Wed, 1 Jan 2014 22:10:11 +0000 (UTC) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ADC11194C for ; Wed, 1 Jan 2014 22:10:11 +0000 (UTC) Received: from meatwad.mouf.net (cpe-107-015-170-205.nc.res.rr.com [107.15.170.205]) by mouf.net (8.14.5/8.14.5) with ESMTP id s01MA1I5075720 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 1 Jan 2014 22:10:06 GMT (envelope-from swills@meatwad.mouf.net) Received: (from swills@localhost) by meatwad.mouf.net (8.14.7/8.14.5/Submit) id s01M9trB085281; Wed, 1 Jan 2014 22:09:55 GMT (envelope-from swills) Message-Id: <201401012209.s01M9trB085281@meatwad.mouf.net> Date: Wed, 1 Jan 2014 22:09:55 GMT From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/185399: [PATCH] devel/rubygem-bin_utils: remove unneeded RUBY_VER Cc: vg@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 22:20:00 -0000 >Number: 185399 >Category: ports >Synopsis: [PATCH] devel/rubygem-bin_utils: remove unneeded RUBY_VER >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 Jan 01 22:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 11.0-CURRENT FreeBSD 11.0-CURRENT #3 r258961M: Sun Dec 8 15:52:57 >Description: - Remove unneeded RUBY_VER since 1.9 is default now and this causes problems with 2.0 Port maintainer (vg@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- rubygem-bin_utils-0.0.4.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 338396) +++ Makefile (working copy) @@ -9,7 +9,6 @@ MAINTAINER= vg@FreeBSD.org COMMENT= Extracting binary integers from binary string and packing back -RUBY_VER= 1.9 USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes --- rubygem-bin_utils-0.0.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 22:20:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 099B2E22; Wed, 1 Jan 2014 22:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D245219DC; Wed, 1 Jan 2014 22:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01MK8h9032926; Wed, 1 Jan 2014 22:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01MK8hg032925; Wed, 1 Jan 2014 22:20:08 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 22:20:08 GMT Message-Id: <201401012220.s01MK8hg032925@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vg@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185399: [PATCH] devel/rubygem-bin_utils: remove unneeded RUBY_VER X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 22:20:09 -0000 Synopsis: [PATCH] devel/rubygem-bin_utils: remove unneeded RUBY_VER Responsible-Changed-From-To: freebsd-ports-bugs->vg Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jan 1 22:20:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185399 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 22:30:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D676DFEE for ; Wed, 1 Jan 2014 22:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9341A1A66 for ; Wed, 1 Jan 2014 22:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01MU090035265 for ; Wed, 1 Jan 2014 22:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01MU062035264; Wed, 1 Jan 2014 22:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 22:30:00 GMT Resent-Message-Id: <201401012230.s01MU062035264@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, Kevin Oberman Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7FB09FB3 for ; Wed, 1 Jan 2014 22:25:09 +0000 (UTC) Received: from mail-pb0-x234.google.com (mail-pb0-x234.google.com [IPv6:2607:f8b0:400e:c01::234]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 54E421A47 for ; Wed, 1 Jan 2014 22:25:09 +0000 (UTC) Received: by mail-pb0-f52.google.com with SMTP id uo5so13749460pbc.25 for ; Wed, 01 Jan 2014 14:25:09 -0800 (PST) Received: from rogue.comcast.net (pool-71-102-47-150.plspca.fios.verizon.net. [71.102.47.150]) by mx.google.com with ESMTPSA id ik1sm97199204pbc.9.2014.01.01.14.25.08 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 01 Jan 2014 14:25:08 -0800 (PST) Received: by rogue.comcast.net (Postfix, from userid 9381) id 75FA228443; Wed, 1 Jan 2014 14:25:07 -0800 (PST) Message-Id: <20140101222507.75FA228443@rogue.comcast.net> Date: Wed, 1 Jan 2014 14:25:07 -0800 (PST) From: Kevin Oberman Sender: Kevin Oberman To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/185400: mail/evolution-exchange required deprecated db41 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Kevin Oberman List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 22:30:00 -0000 >Number: 185400 >Category: ports >Synopsis: mail/evolution-exchange required deprecated db41 >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: Wed Jan 01 22:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Kevin Oberman >Release: FreeBSD 10.0-RC3 amd64 >Organization: >Environment: System: FreeBSD rogue.local 10.0-RC3 FreeBSD 10.0-RC3 #0 r259910: Thu Dec 26 20:34:31 PST 2013 root@rogue.local:/usr/obj/usr/src/sys/GENERIC amd64 >Description: mail/evolution-exchange requires db41 (USE_BDB= 41). All db4r ports are now deprecated. Either db41 needs to be "undeprecated" or the ecvolution-exchange port need to be modified to work with db5 and/or db6.. >How-To-Repeat: cd /usr/ports/mail/evolution-exchange && make >Fix: Adjust the Makefile to allow db5 or db6 and/or "undeprecate" the db41 port. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 22:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D6D9FF0 for ; Wed, 1 Jan 2014 22:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DB20C1A68 for ; Wed, 1 Jan 2014 22:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01MU0ae035330 for ; Wed, 1 Jan 2014 22:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01MU0p3035329; Wed, 1 Jan 2014 22:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 22:30:00 GMT Resent-Message-Id: <201401012230.s01MU0p3035329@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, Jan Henrik Sylvester Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1C5CDFB9 for ; Wed, 1 Jan 2014 22:25:19 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F04201A4A for ; Wed, 1 Jan 2014 22:25:18 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s01MPIfE011694 for ; Wed, 1 Jan 2014 22:25:18 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s01MPIGT011687; Wed, 1 Jan 2014 22:25:18 GMT (envelope-from nobody) Message-Id: <201401012225.s01MPIGT011687@oldred.freebsd.org> Date: Wed, 1 Jan 2014 22:25:18 GMT From: Jan Henrik Sylvester To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185401: [PATCH] editors/openoffice-4 fix build on 10.0: nss (gcc46), vlc (freetype), moz (freetype) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 22:30:01 -0000 >Number: 185401 >Category: ports >Synopsis: [PATCH] editors/openoffice-4 fix build on 10.0: nss (gcc46), vlc (freetype), moz (freetype) >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 Jan 01 22:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jan Henrik Sylvester >Release: 10.0-RC3 amd64 >Organization: >Environment: >Description: editors/openoffice-4 does not build for on 10.0 for two reasons: 1. gcc is called but only gcc46 is present by the module nss. 2. freetype headers are expected to be under freetype/ by the modules vlc and moz, which is not the case anymore. >How-To-Repeat: Try to build editors/openoffice-4 on 10.0-RC3/amd64 or any other system without the binary "gcc". For the second problem, try to build editors/openoffice-4 after the recent freetype update relocating the freetype headers. >Fix: The patch attached fixes the build on 10.0-RC3/amd64. In nss, misc/build/nss-3.12.6/mozilla/security/coreconf/FreeBSD.mk sets CC to gcc, although it is already properly set for example to gcc46. This needs to be fixed via a patch for FreeBSD in nss, since the file mentioned above is not present upon extraction. freetype/ can simply be removed in vlc, but in moz, it is present in several files extracted later or generated later and needs a patch in that module. Patch attached with submission follows: --- editors/openoffice-4/files/patch-nss-gcc46.orig 1970-01-01 01:00:00.000000000 +0100 +++ editors/openoffice-4/files/patch-nss-gcc46 2014-01-01 19:15:23.000000000 +0100 @@ -0,0 +1,27 @@ +--- nss/makefile.mk.orig 2013-08-13 11:46:06.000000000 +0000 ++++ nss/makefile.mk 2014-01-01 18:13:26.000000000 +0000 +@@ -44,6 +44,10 @@ + TARFILE_ROOTDIR=nss-3.12.6 + PATCH_FILES=nss.patch + ++.IF "$(OS)"=="FREEBSD" ++PATCH_FILES+=nss_freebsd.patch ++.ENDIF # "$(OS)"=="FREEBSD" ++ + .IF "$(OS)"=="MACOSX" + MACOS_SDK_DIR=/Developer/SDKs/MacOSX10.4u.sdk + .EXPORT : MACOS_SDK_DIR +--- nss/nss_freebsd.patch.orig 1970-01-01 00:00:00.000000000 +0000 ++++ nss/nss_freebsd.patch 2014-01-01 18:08:20.000000000 +0000 +@@ -0,0 +1,11 @@ ++--- misc/build/nss-3.12.6/mozilla/security/coreconf/FreeBSD.mk.orig 2009-08-22 05:33:09.000000000 +0000 +++++ misc/build/nss-3.12.6/mozilla/security/coreconf/FreeBSD.mk 2014-01-01 13:47:48.000000000 +0000 ++@@ -38,7 +38,7 @@ ++ include $(CORE_DEPTH)/coreconf/UNIX.mk ++ ++ DEFAULT_COMPILER = gcc ++-CC = gcc +++#CC = gcc ++ CCC = g++ ++ RANLIB = ranlib ++ --- editors/openoffice-4/files/patch-vcl_source_glyphs_graphite_adaptors.cxx.orig 1970-01-01 01:00:00.000000000 +0100 +++ editors/openoffice-4/files/patch-vcl_source_glyphs_graphite_adaptors.cxx 2014-01-01 18:39:40.000000000 +0100 @@ -0,0 +1,11 @@ +--- vcl/source/glyphs/graphite_adaptors.cxx.orig 2013-08-13 11:45:43.000000000 +0000 ++++ vcl/source/glyphs/graphite_adaptors.cxx 2013-12-31 16:39:41.000000000 +0000 +@@ -45,7 +45,7 @@ + + #include + +-#include ++#include + + // Module + #include "gcach_ftyp.hxx" --- editors/openoffice-4/files/patch-moz-freetype_header_relocation.orig 1970-01-01 01:00:00.000000000 +0100 +++ editors/openoffice-4/files/patch-moz-freetype_header_relocation 2014-01-01 21:51:43.000000000 +0100 @@ -0,0 +1,73 @@ +--- moz/makefile.mk.orig 2013-08-13 11:49:32.000000000 +0000 ++++ moz/makefile.mk 2014-01-01 20:09:17.000000000 +0000 +@@ -99,7 +99,8 @@ + patches/respect_disable_pango.patch \ + patches/arm_build_fix.patch \ + patches/link_fontconfig.patch \ +- patches/brokenmakefile.patch ++ patches/brokenmakefile.patch \ ++ patches/freetype_header_relocation.patch + + .IF "$(OS)"=="LINUX" + PATCH_FILES+=patches/nss_linux.patch +--- moz/patches/freetype_header_relocation.patch.orig 1970-01-01 00:00:00.000000000 +0000 ++++ moz/patches/freetype_header_relocation.patch 2014-01-01 20:50:11.000000000 +0000 +@@ -0,0 +1,58 @@ ++--- misc/build/mozilla/config/system-headers.orig 2007-11-19 21:36:18.000000000 +0100 +++++ misc/build/mozilla/config/system-headers 2014-01-01 20:47:56.000000000 +0100 ++@@ -193,12 +193,12 @@ ++ fpieee.h ++ frame/log.h ++ frame/req.h ++-freetype/freetype.h ++-freetype/ftcache.h ++-freetype/ftglyph.h ++-freetype/ftoutln.h ++-freetype/ttnameid.h ++-freetype/tttables.h +++freetype.h +++ftcache.h +++ftglyph.h +++ftoutln.h +++ttnameid.h +++tttables.h ++ fribidi/fribidi.h ++ FSp_fopen.h ++ fstream.h ++--- misc/build/mozilla/gfx/src/gtk/nsFontMetricsXft.cpp.orig 2008-01-29 19:31:08.000000000 +0000 +++++ misc/build/mozilla/gfx/src/gtk/nsFontMetricsXft.cpp 2014-01-01 20:43:42.000000000 +0000 ++@@ -67,8 +67,8 @@ ++ #include "nsFontConfigUtils.h" ++ ++ #include ++-#include ++-#include +++#include +++#include ++ ++ #define FORCE_PR_LOG ++ #include "prlog.h" ++--- misc/build/mozilla/gfx/src/gtk/nsFontMetricsPango.cpp.orig 2008-01-29 19:31:08.000000000 +0000 +++++ misc/build/mozilla/gfx/src/gtk/nsFontMetricsPango.cpp 2014-01-01 20:44:06.000000000 +0000 ++@@ -58,7 +58,7 @@ ++ #include ++ #include ++ #include ++-#include +++#include ++ ++ #include "mozilla-decoder.h" ++ ++--- misc/build/mozilla/gfx/src/cairo/nsFontMetricsXft.cpp.orig 2008-01-29 19:31:08.000000000 +0000 +++++ misc/build/mozilla/gfx/src/cairo/nsFontMetricsXft.cpp 2014-01-01 20:44:34.000000000 +0000 ++@@ -67,8 +67,8 @@ ++ #include "nsFontConfigUtils.h" ++ ++ #include ++-#include ++-#include +++#include +++#include ++ ++ #define FORCE_PR_LOG ++ #include "prlog.h" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 22:30:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA8B896; Wed, 1 Jan 2014 22:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 904491A6A; Wed, 1 Jan 2014 22:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01MU8KF035409; Wed, 1 Jan 2014 22:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01MU8ef035408; Wed, 1 Jan 2014 22:30:08 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 22:30:08 GMT Message-Id: <201401012230.s01MU8ef035408@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185400: mail/evolution-exchange required deprecated db41 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 22:30:08 -0000 Synopsis: mail/evolution-exchange required deprecated db41 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jan 1 22:30:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185400 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 22:30:14 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE032DC; Wed, 1 Jan 2014 22:30:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9208F1A6D; Wed, 1 Jan 2014 22:30:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01MUEok035490; Wed, 1 Jan 2014 22:30:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01MUECX035489; Wed, 1 Jan 2014 22:30:14 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 22:30:14 GMT Message-Id: <201401012230.s01MUECX035489@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, office@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185401: [PATCH] editors/openoffice-4 fix build on 10.0: nss (gcc46), vlc (freetype), moz (freetype) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 22:30:14 -0000 Synopsis: [PATCH] editors/openoffice-4 fix build on 10.0: nss (gcc46), vlc (freetype), moz (freetype) Responsible-Changed-From-To: freebsd-ports-bugs->office Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jan 1 22:30:14 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185401 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 22:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC3C081B for ; Wed, 1 Jan 2014 22:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A47641CB8 for ; Wed, 1 Jan 2014 22:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01Mo0vW039204 for ; Wed, 1 Jan 2014 22:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01Mo0qp039203; Wed, 1 Jan 2014 22:50:00 GMT (envelope-from gnats) Resent-Date: Wed, 1 Jan 2014 22:50:00 GMT Resent-Message-Id: <201401012250.s01Mo0qp039203@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:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 997FD57D for ; Wed, 1 Jan 2014 22:43:07 +0000 (UTC) Received: from mouf.net (mouf.net [IPv6:2607:fc50:0:4400:216:3eff:fe69:33b3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5CC1B1C94 for ; Wed, 1 Jan 2014 22:43:07 +0000 (UTC) Received: from meatwad.mouf.net (cpe-107-015-170-205.nc.res.rr.com [107.15.170.205]) by mouf.net (8.14.5/8.14.5) with ESMTP id s01Mgwbo076195 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 1 Jan 2014 22:43:03 GMT (envelope-from swills@meatwad.mouf.net) Received: (from swills@localhost) by meatwad.mouf.net (8.14.7/8.14.5/Submit) id s01Mgw7p027359; Wed, 1 Jan 2014 22:42:58 GMT (envelope-from swills) Message-Id: <201401012242.s01Mgw7p027359@meatwad.mouf.net> Date: Wed, 1 Jan 2014 22:42:58 GMT From: Steve Wills To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/185402: [PATCH] devel/rubygem-rcov: Mark broken with Ruby 2.0 Cc: skreuzer@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 22:50:01 -0000 >Number: 185402 >Category: ports >Synopsis: [PATCH] devel/rubygem-rcov: Mark broken with Ruby 2.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: Wed Jan 01 22:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Steve Wills >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD meatwad.mouf.net 11.0-CURRENT FreeBSD 11.0-CURRENT #3 r258961M: Sun Dec 8 15:52:57 >Description: - Mark broken with Ruby 2.0 Fails to build with Ruby 2.0, see: http://package20.nyi.freebsd.org/bulk/91amd64-default-pr_183274/2013-11-28_00h09m00s/logs/errors/rubygem-rcov-0.9.11.log (This is the result of a exp-run done by portmgr as part of making Ruby 2.0 default, PR ports/183274) I tried the 1.0.0 release, but that has the same issue. Based on developer info, it seems like it won't ever work with 2.0 and perhaps should just be removed in favor of simplecov. See: https://github.com/relevance/rcov/issues/99 But for now, let's just mark it broken with 2.0. Thanks! Port maintainer (skreuzer@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- rubygem-rcov-0.9.11.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 338396) +++ Makefile (working copy) @@ -15,4 +15,11 @@ PLIST_FILES= bin/rcov NO_STAGE= yes -.include + +.include + +.if ${RUBY_VER} == 2.0 +BROKEN= Does not work with Ruby 2.0 +.endif + +.include --- rubygem-rcov-0.9.11.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 22:50:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87B34849; Wed, 1 Jan 2014 22:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5C10F1CBA; Wed, 1 Jan 2014 22:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01Mo8E4039344; Wed, 1 Jan 2014 22:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01Mo8lc039343; Wed, 1 Jan 2014 22:50:08 GMT (envelope-from edwin) Date: Wed, 1 Jan 2014 22:50:08 GMT Message-Id: <201401012250.s01Mo8lc039343@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skreuzer@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185402: [PATCH] devel/rubygem-rcov: Mark broken with Ruby 2.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 22:50:08 -0000 Synopsis: [PATCH] devel/rubygem-rcov: Mark broken with Ruby 2.0 Responsible-Changed-From-To: freebsd-ports-bugs->skreuzer Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jan 1 22:50:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185402 From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jan 1 23:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 570F8532 for ; Wed, 1 Jan 2014 23:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4405A1EDA for ; Wed, 1 Jan 2014 23:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s01NU1If048418 for ; Wed, 1 Jan 2014 23:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s01NU1fK048417; Wed, 1 Jan 2014 23:30:01 GMT (envelope-from gnats) Date: Wed, 1 Jan 2014 23:30:01 GMT Message-Id: <201401012330.s01NU1fK048417@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Raphael Kubo da Costa Subject: Re: ports/185275: [maintainer update] port www/polipo X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Raphael Kubo da Costa List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Jan 2014 23:30:01 -0000 The following reply was made to PR ports/185275; it has been noted by GNATS. From: Raphael Kubo da Costa To: Frank Behrens Cc: bug-followup@FreeBSD.org Subject: Re: ports/185275: [maintainer update] port www/polipo Date: Thu, 02 Jan 2014 01:27:18 +0200 Frank Behrens writes: > Am 29.12.2013 22:52, schrieb Raphael Kubo da Costa: >> Hi, >> >> The port failed on Poudriere with the following error: >> ... > > Thanks for your message. I believe I forgot to remove the pre-install > target from the Makefile. Please try with the new attached patch. Hi, It fails like this now: ====>> Checking for extra files and directories ====>> Files or directories left over: @dirrm /var/cache ====>> Files or directories removed: info ====>> Files or directories modified: /etc/newsyslog.conf ====>> This test was done with PREFIX!=LOCALBASE which may show failures if the port does not respect PREFIX. Try testport with -n to use PREFIX=LOCALBASE (Running testport with -n gets rid of the "info" part, but the rest remains) From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 01:50:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 868C6C52 for ; Thu, 2 Jan 2014 01:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 709E816EA for ; Thu, 2 Jan 2014 01:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s021o1Yn090818 for ; Thu, 2 Jan 2014 01:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s021o1b8090817; Thu, 2 Jan 2014 01:50:01 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 01:50:01 GMT Message-Id: <201401020150.s021o1b8090817@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Stephen Hurd Subject: Re: ports/185398: Fix comms/xmorse build with Clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Stephen Hurd List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 01:50:01 -0000 The following reply was made to PR ports/185398; it has been noted by GNATS. From: Stephen Hurd To: bug-followup@FreeBSD.org, shurd@sasktel.net Cc: Subject: Re: ports/185398: Fix comms/xmorse build with Clang Date: Wed, 01 Jan 2014 11:40:07 -0800 This is a multi-part message in MIME format. --------------080001020402030006040008 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Actually, here it is with a completely new Makefile which uses dynamic linking, supports STAGEDIR, doesn't need root privs to create the package, fixes all the warnings clang emitted, and is smaller than both the original Makefile and the patch. --------------080001020402030006040008 Content-Type: text/plain; charset=us-ascii; name="xmorse-svnpatch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="xmorse-svnpatch.txt" Index: Makefile =================================================================== --- Makefile (revision 338396) +++ Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= xmorse PORTVERSION= 20041125 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= comms hamradio MASTER_SITES= http://c2.com/morse/files/SourceCode/ \ http://www.525183.com/freebsd/xmorse/ \ @@ -21,6 +21,11 @@ PLIST_FILES= bin/xmorse NO_WRKSUBDIR= yes +MAKE_ARGS= PREFIX=${STAGEDIR}${PREFIX} INSTALL_PROGRAM=${INSTALL_PROGRAM} -NO_STAGE= yes -.include +.include + +post-patch: + ${CP} ${FILESDIR}/Makefile ${WRKSRC} + +.include Index: files/Makefile =================================================================== --- files/Makefile (revision 0) +++ files/Makefile (working copy) @@ -0,0 +1,26 @@ +CXXFLAGS+= -MMD `fltk-config --cxxflags` `sdl-config --cflags` +PREFIX ?= /usr/local +INSTALL_PROGRAM ?= ${INSTALL} -o root -g wheel -m 755 + +all: xmorse + +.-include "m.d" +.-include "Bargraph.d" +.-include "Codebox.d" +.-include "Cw.d" +.-include "Knob.d" + +m.cxx: m.fl + fluid -c m.fl + +xmorse: m.o Bargraph.o Codebox.o Cw.o Knob.o + ${CXX} -o$@ $> `fltk-config --ldflags` `sdl-config --libs` + +install: xmorse + ${INSTALL_PROGRAM} xmorse ${PREFIX}/bin/xmorse + +clean: + -rm *.o + -rm *.d + -rm m.cxx m.h + -rm xmorse Property changes on: files/Makefile ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: files/patch-Bargraph.cxx =================================================================== --- files/patch-Bargraph.cxx (revision 0) +++ files/patch-Bargraph.cxx (working copy) @@ -0,0 +1,11 @@ +--- Bargraph.cxx.orig 2004-08-25 17:18:01.000000000 -0700 ++++ Bargraph.cxx 2014-01-01 10:26:23.000000000 -0800 +@@ -82,7 +82,7 @@ + if (child(i)->visible()) nd++; + int dx = w()/nd; // Slider horizontal "period" + int width = dx*nd - gap; // Width of slider array +- int x0 = w()-width >> 1; // Inset to 1st slider ++ int x0 = (w()-width) >> 1; // Inset to 1st slider + width = dx-gap; // Width of individual Slider + for (int i = 0; i < children(); i++) { // Loop to reposition sliders + Fl_Slider* s = (Fl_Slider*) child(i); // Pointer to this Slider Property changes on: files/patch-Bargraph.cxx ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: files/patch-Help.h =================================================================== --- files/patch-Help.h (revision 0) +++ files/patch-Help.h (working copy) @@ -0,0 +1,11 @@ +--- Help.h.orig 2014-01-01 10:24:05.000000000 -0800 ++++ Help.h 2014-01-01 10:24:10.000000000 -0800 +@@ -2,7 +2,7 @@ + * generated from the original HTML file by the script, help.py. + */ + +-static char* HelpString = ++static const char* HelpString = + "\n" + "\n" + "\n" Property changes on: files/patch-Help.h ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: files/patch-Makefile =================================================================== --- files/patch-Makefile (revision 338396) +++ files/patch-Makefile (working copy) @@ -1,28 +0,0 @@ ---- ./Makefile.orig 2004-09-29 22:12:16.000000000 +0000 -+++ ./Makefile 2007-11-24 19:55:15.000000000 +0000 -@@ -36,6 +36,25 @@ - strip m - rm *.o m.cxx m.h - -+# Regular "make" is what you want for the FreeBSD version -+ -+all: m.fl Bargraph.cxx Bargraph.h Codebox.cxx Codebox.h Cw.cxx Cw.h \ -+ Knob.cxx Knob.h Help.h m.fl -+ fluid -c m.fl -+ g++ -c -Os `fltk-config --cxxflags` m.cxx -+ g++ -c -Os `fltk-config --cxxflags` Bargraph.cxx -+ g++ -c -Os `fltk-config --cxxflags` Codebox.cxx -+ g++ -c -Os `fltk-config --cxxflags` Knob.cxx -+ g++ -c -Os `sdl-config --cflags` Cw.cxx -+ g++ -om m.o Bargraph.o Codebox.o Cw.o Knob.o \ -+ `sdl-config --static-libs` \ -+ `fltk-config --ldstaticflags` -+ strip m -+ rm *.o m.cxx m.h -+ -+install: m -+ ${INSTALL} -o root -g wheel -m 0555 m ${PREFIX}/bin/xmorse -+ - # Besemer's Python extension version - - cw.so: cw.pyx Cw.cxx Cw.h Index: files/patch-m.fl =================================================================== --- files/patch-m.fl (revision 338396) +++ files/patch-m.fl (working copy) @@ -1,5 +1,23 @@ ---- m.fl.orig 2011-07-17 14:56:20.000000000 -0400 -+++ m.fl 2011-07-17 14:56:31.000000000 -0400 +--- m.fl.orig 2004-08-13 16:38:24.000000000 -0700 ++++ m.fl 2014-01-01 10:25:10.000000000 -0800 +@@ -188,7 +188,7 @@ + } + menuitem {} { + label Numbers +- callback {char* nrs = "0123456789"; ++ callback {const char* nrs = "0123456789"; + if (o->mvalue()->value()) + Lesson->enable(nrs); + else +@@ -199,7 +199,7 @@ + } + menuitem {} { + label Symbols +- callback {char* syms = "./=?"; ++ callback {const char* syms = "./=?"; + if (o->mvalue()->value()) + Lesson->enable(syms); + else @@ -231,7 +231,7 @@ } } --------------080001020402030006040008-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 02:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CA8BC696 for ; Thu, 2 Jan 2014 02:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C1511A1D for ; Thu, 2 Jan 2014 02:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s022e0E0001777 for ; Thu, 2 Jan 2014 02:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s022e03w001776; Thu, 2 Jan 2014 02:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 02:40:00 GMT Resent-Message-Id: <201401020240.s022e03w001776@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 Hixson Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73A3E690 for ; Thu, 2 Jan 2014 02:38:09 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5F8261A18 for ; Thu, 2 Jan 2014 02:38:09 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s022c99w089688 for ; Thu, 2 Jan 2014 02:38:09 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s022c9co089687; Thu, 2 Jan 2014 02:38:09 GMT (envelope-from nobody) Message-Id: <201401020238.s022c9co089687@oldred.freebsd.org> Date: Thu, 2 Jan 2014 02:38:09 GMT From: John Hixson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185403: patch py-django-json-rpc to work with django 1.6.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 02:40:00 -0000 >Number: 185403 >Category: ports >Synopsis: patch py-django-json-rpc to work with django 1.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 Jan 02 02:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: John Hixson >Release: 11.0-CURRENT >Organization: iXsystems, Inc. >Environment: FreeBSD thinkbsd 11.0-CURRENT FreeBSD 11.0-CURRENT #17 r259022M: Fri Dec 6 12:03:57 PST 2013 john@thinkbsd:/usr/obj/usr/src/sys/THINKBSD amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN py-django-json-rpc.orig/files/patch-site.py py-django-json-rpc/files/patch-site.py --- py-django-json-rpc.orig/files/patch-site.py 1969-12-31 16:00:00.000000000 -0800 +++ py-django-json-rpc/files/patch-site.py 2014-01-01 18:32:36.225604190 -0800 @@ -0,0 +1,11 @@ +--- ./jsonrpc/site.py 2012-02-01 23:55:13.000000000 -0800 ++++ ./jsonrpc/site.py 2014-01-01 18:30:42.956263864 -0800 +@@ -210,7 +210,7 @@ + raise RequestPostError + else: + try: +- D = loads(request.raw_post_data) ++ D = loads(request.body) + except: + raise InvalidRequestError + >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 02:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1C975698 for ; Thu, 2 Jan 2014 02:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D26441A1F for ; Thu, 2 Jan 2014 02:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s022e0r8001841 for ; Thu, 2 Jan 2014 02:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s022e0i6001829; Thu, 2 Jan 2014 02:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 02:40:00 GMT Resent-Message-Id: <201401020240.s022e0i6001829@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, Stephen Hurd Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0566546 for ; Thu, 2 Jan 2014 02:35:25 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CCCF019FB for ; Thu, 2 Jan 2014 02:35:25 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s022ZPBc061040 for ; Thu, 2 Jan 2014 02:35:25 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s022ZP5c061033; Thu, 2 Jan 2014 02:35:25 GMT (envelope-from nobody) Message-Id: <201401020235.s022ZP5c061033@oldred.freebsd.org> Date: Thu, 2 Jan 2014 02:35:25 GMT From: Stephen Hurd To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185404: [Patch] fix security/cryptlib build failure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 02:40:01 -0000 >Number: 185404 >Category: ports >Synopsis: [Patch] fix security/cryptlib build failure >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 Jan 02 02:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Stephen Hurd >Release: 10.0-RC3 >Organization: >Environment: FreeBSD portable 10.0-RC3 FreeBSD 10.0-RC3 #0 r259778: Mon Dec 23 23:27:58 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Since the cryptlib build system explicity uses "make" for recursive makes, this causes the submakes to fail on some platforms with a cryptic "make[2]: don't know how to make w. Stop" error caused by gmake passing custom arguments to make(1). >How-To-Repeat: Attempt to build. >Fix: Use system make. Patch attached. Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 338396) +++ Makefile (working copy) @@ -15,7 +15,6 @@ USE_ZIP= yes EXTRACT_BEFORE_ARGS= -aq NO_WRKSUBDIR= yes -USES= gmake MAKEFILE= makefile ALL_TARGET= default FreeBSD shared USE_LDCONFIG= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 02:40:14 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76F556F1; Thu, 2 Jan 2014 02:40:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4D3B81A21; Thu, 2 Jan 2014 02:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s022eEwG001940; Thu, 2 Jan 2014 02:40:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s022eEYB001939; Thu, 2 Jan 2014 02:40:14 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 02:40:14 GMT Message-Id: <201401020240.s022eEYB001939@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185404: [Patch] fix security/cryptlib build failure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 02:40:14 -0000 Synopsis: [Patch] fix security/cryptlib build failure Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 02:40:14 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185404 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 02:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B25B7AE8 for ; Thu, 2 Jan 2014 02:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8D1E91ACC for ; Thu, 2 Jan 2014 02:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s022o0Kl004349 for ; Thu, 2 Jan 2014 02:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s022o0AB004348; Thu, 2 Jan 2014 02:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 02:50:00 GMT Resent-Message-Id: <201401020250.s022o0AB004348@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, Stephen Hurd Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E768E828 for ; Thu, 2 Jan 2014 02:44:02 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D34221A8F for ; Thu, 2 Jan 2014 02:44:02 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s022i2Oi081766 for ; Thu, 2 Jan 2014 02:44:02 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s022i2Vw081755; Thu, 2 Jan 2014 02:44:02 GMT (envelope-from nobody) Message-Id: <201401020244.s022i2Vw081755@oldred.freebsd.org> Date: Thu, 2 Jan 2014 02:44:02 GMT From: Stephen Hurd To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185405: [Patch] sysutils/fonteditfs fix build when no GCC installed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 02:50:00 -0000 >Number: 185405 >Category: ports >Synopsis: [Patch] sysutils/fonteditfs fix build when no GCC installed >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 Jan 02 02:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Stephen Hurd >Release: 10.0-RC3 >Organization: >Environment: FreeBSD portable 10.0-RC3 FreeBSD 10.0-RC3 #0 r259778: Mon Dec 23 23:27:58 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: sysutils/fonteditfs fails when no GCC is installed because "gcc" is hardcoded as the compiler. >How-To-Repeat: Build without gcc. >Fix: Patch attached. Use ${CC} Patch attached with submission follows: Index: patch-Makefile =================================================================== --- patch-Makefile (revision 338414) +++ patch-Makefile (working copy) @@ -1,6 +1,6 @@ ---- Makefile.orig 2003-09-20 12:17:34.000000000 -0300 -+++ Makefile 2009-08-29 14:56:21.000000000 -0300 -@@ -2,12 +2,7 @@ +--- Makefile.orig 2003-09-20 08:17:34.000000000 -0700 ++++ Makefile 2014-01-01 12:27:59.000000000 -0800 +@@ -2,14 +2,9 @@ # - TODO: MAKE NEATER ONE # This makefile should work under most POSIX OSes (at least FreeBSD) @@ -12,8 +12,11 @@ - +all: fnteditfs fnteditfs: fnteditfs.o font.o stack.o - gcc -o fnteditfs fnteditfs.o font.o stack.o -lcurses +- gcc -o fnteditfs fnteditfs.o font.o stack.o -lcurses ++ ${CC} -o fnteditfs fnteditfs.o font.o stack.o -lcurses strip fnteditfs + + fnteditfs.o: fnteditfs.c font.h stack.h @@ -17,8 +12,8 @@ stack.o: stack.c stack.h >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 02:50:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4616B1D; Thu, 2 Jan 2014 02:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7A3381AD0; Thu, 2 Jan 2014 02:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s022o82l004482; Thu, 2 Jan 2014 02:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s022o840004481; Thu, 2 Jan 2014 02:50:08 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 02:50:08 GMT Message-Id: <201401020250.s022o840004481@freefall.freebsd.org> To: shurd@sasktel.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185405: [Patch] sysutils/fonteditfs fix build when no GCC installed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 02:50:08 -0000 Synopsis: [Patch] sysutils/fonteditfs fix build when no GCC installed State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Jan 2 02:50:08 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185405 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 03:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96CA3EAC for ; Thu, 2 Jan 2014 03:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 835811CA7 for ; Thu, 2 Jan 2014 03:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02301GL006865 for ; Thu, 2 Jan 2014 03:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s023011o006864; Thu, 2 Jan 2014 03:00:01 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 03:00:01 GMT Message-Id: <201401020300.s023011o006864@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/185405: [Patch] sysutils/fonteditfs fix build when no GCC installed X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 02 Jan 2014 03:00:01 -0000 The following reply was made to PR ports/185405; it has been noted by GNATS. From: Edwin Groothuis To: uri@keves.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/185405: [Patch] sysutils/fonteditfs fix build when no GCC installed Date: Thu, 2 Jan 2014 02:50:07 UT Maintainer of sysutils/fonteditfs, Please note that PR ports/185405 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/185405 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 04:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B1FAE996 for ; Thu, 2 Jan 2014 04:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 733ED115D for ; Thu, 2 Jan 2014 04:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s024A0hY023341 for ; Thu, 2 Jan 2014 04:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s024A0Qg023340; Thu, 2 Jan 2014 04:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 04:10:00 GMT Resent-Message-Id: <201401020410.s024A0Qg023340@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, Stephen Hurd Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AE024953 for ; Thu, 2 Jan 2014 04:07:31 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 98892114E for ; Thu, 2 Jan 2014 04:07:31 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s0247Vt1082465 for ; Thu, 2 Jan 2014 04:07:31 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s0247Vrh082464; Thu, 2 Jan 2014 04:07:31 GMT (envelope-from nobody) Message-Id: <201401020407.s0247Vrh082464@oldred.freebsd.org> Date: Thu, 2 Jan 2014 04:07:31 GMT From: Stephen Hurd To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185407: [Patch] devel/codeblocks requires GCC X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 04:10:00 -0000 >Number: 185407 >Category: ports >Synopsis: [Patch] devel/codeblocks requires GCC >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 Jan 02 04:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Stephen Hurd >Release: 10.0-RC3 >Organization: >Environment: FreeBSD portable 10.0-RC3 FreeBSD 10.0-RC3 #0 r259778: Mon Dec 23 23:27:58 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: devel/codeblocks does not build with Clang. >How-To-Repeat: Build with Clang >Fix: Attached Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 338396) +++ Makefile (working copy) @@ -22,6 +22,7 @@ USES= pkgconfig USE_FAM= yes USE_WX= 2.8 +USE_GCC= yes WANT_UNICODE= yes USE_GNOME= gnomehack desktopfileutils GNU_CONFIGURE= yes >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 04:10:07 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E34E59CB; Thu, 2 Jan 2014 04:10:07 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BA29E1161; Thu, 2 Jan 2014 04:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s024A7YQ023470; Thu, 2 Jan 2014 04:10:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s024A7Cq023469; Thu, 2 Jan 2014 04:10:07 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 04:10:07 GMT Message-Id: <201401020410.s024A7Cq023469@freefall.freebsd.org> To: shurd@sasktel.net, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185407: [Patch] devel/codeblocks requires GCC X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 04:10:08 -0000 Synopsis: [Patch] devel/codeblocks requires GCC State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Thu Jan 2 04:10:07 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185407 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 04:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B28D6B99 for ; Thu, 2 Jan 2014 04:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9EE5F11F6 for ; Thu, 2 Jan 2014 04:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s024K1ag026360 for ; Thu, 2 Jan 2014 04:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s024K1gu026359; Thu, 2 Jan 2014 04:20:01 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 04:20:01 GMT Message-Id: <201401020420.s024K1gu026359@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/185407: [Patch] devel/codeblocks requires GCC X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 02 Jan 2014 04:20:01 -0000 The following reply was made to PR ports/185407; it has been noted by GNATS. From: Edwin Groothuis To: coder@tuxfamily.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/185407: [Patch] devel/codeblocks requires GCC Date: Thu, 2 Jan 2014 04:10:06 UT Maintainer of devel/codeblocks, Please note that PR ports/185407 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/185407 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 05:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D0CCF220 for ; Thu, 2 Jan 2014 05:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 970E414FB for ; Thu, 2 Jan 2014 05:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s025A0vU036071 for ; Thu, 2 Jan 2014 05:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s025A0Ad036070; Thu, 2 Jan 2014 05:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 05:10:00 GMT Resent-Message-Id: <201401020510.s025A0Ad036070@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, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C88AF15E for ; Thu, 2 Jan 2014 05:00:32 +0000 (UTC) Received: from kkbox.com (ip-203-69-67-167.kkcube.com [203.69.67.167]) by mx1.freebsd.org (Postfix) with ESMTP id 9AC6914C2 for ; Thu, 2 Jan 2014 05:00:31 +0000 (UTC) Received: by goingmarry.kkbox.com (Postfix, from userid 1033) id 20A0F7501EF; Thu, 2 Jan 2014 12:54:30 +0800 (CST) Message-Id: <20140102045430.20A0F7501EF@goingmarry.kkbox.com> Date: Thu, 2 Jan 2014 12:54:30 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185408: [MAINTAINER] sysutils/py-glances: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 05:10:00 -0000 >Number: 185408 >Category: ports >Synopsis: [MAINTAINER] sysutils/py-glances: [SUMMARIZE CHANGES] >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 Jan 02 05:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD goingmarry 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC >Description: - Fix package build broken, PYEASYINSTALL_EGG will be substituted only if USE_PYDISTUTILS is easy_install. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- py27-glances-1.7.3_1.patch begins here --- diff -ruN /usr/ports/sysutils/py-glances/Makefile ./Makefile --- /usr/ports/sysutils/py-glances/Makefile 2013-12-26 04:16:28.000000000 +0800 +++ ./Makefile 2014-01-02 12:10:46.000000000 +0800 @@ -3,6 +3,7 @@ PORTNAME= glances PORTVERSION= 1.7.3 +PORTREVISION= 1 CATEGORIES= sysutils python MASTER_SITES= https://github.com/nicolargo/glances/archive/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -22,7 +23,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} FETCH_ARGS= -pRr USE_PYTHON= yes -USE_PYDISTUTILS=yes +USE_PYDISTUTILS= easy_install PYDISTUTILS_PKGNAME= Glances #NO_STAGE= yes --- py27-glances-1.7.3_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 05:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2FBEC222 for ; Thu, 2 Jan 2014 05:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0A97514FD for ; Thu, 2 Jan 2014 05:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s025A096036136 for ; Thu, 2 Jan 2014 05:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s025A0Ro036135; Thu, 2 Jan 2014 05:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 05:10:00 GMT Resent-Message-Id: <201401020510.s025A0Ro036135@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, takefu@airport.fm Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D426D1F8; Thu, 2 Jan 2014 05:06:55 +0000 (UTC) Received: from ae-osaka.co.jp (mx.ae-osaka.co.jp [210.196.184.82]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 201A014EA; Thu, 2 Jan 2014 05:06:54 +0000 (UTC) Received: from ae-osaka.co.jp (localhost.ae-osaka.co.jp [127.0.0.1]) by ae-osaka.co.jp (Postfix) with ESMTP id DB0E912607D; Thu, 2 Jan 2014 14:06:16 +0900 (JST) Received: from [IPv6:2001:470:824b:a011:7093:6e45:6d77:5b00] (unknown [IPv6:2001:470:824b:a011:7093:6e45:6d77:5b00]) by ae-osaka.co.jp (Postfix) with ESMTPSA id 55301125EFE; Thu, 2 Jan 2014 14:06:16 +0900 (JST) Message-Id: <52C4F3C9.9020100@airport.fm> Date: Thu, 02 Jan 2014 14:06:17 +0900 From: Takefu To: freebsd-gnats-submit@freebsd.org Subject: ports/185409: [PATCH] security/gnutls: fix StageDir Cc: novel@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: takefu@airport.fm List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 05:10:01 -0000 >Number: 185409 >Category: ports >Synopsis: [PATCH] security/gnutls: fix StageDir >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 Jan 02 05:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Takefu >Release: FreeBSD 8.4-RELEASE-p4 i386 >Organization: FOX Amateur Radio Club >Environment: System: FreeBSD RELENG84-ix86.localIPv4.airport.fm 8.4-RELEASE-p4 FreeBSD 8.4-RELEASE-p4 #0: Wed Sep 25 14:55:36 JST 2013 >Description: add LICENSE fix StageDir pkg-descr TAB to whitespace del Makefile.man Port maintainer (novel@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- gnutls-2.12.23_2.patch begins here --- diff -ruN /usr/ports/security/gnutls/Makefile ./Makefile --- /usr/ports/security/gnutls/Makefile 2013-11-03 18:21:59.000000000 +0900 +++ ./Makefile 2014-01-02 11:02:35.000000000 +0900 @@ -11,6 +11,8 @@ MAINTAINER= novel@FreeBSD.org COMMENT= GNU Transport Layer Security library +LICENSE= GPLv3 + LIB_DEPENDS= nettle:${PORTSDIR}/security/nettle \ gpg-error:${PORTSDIR}/security/libgpg-error \ p11-kit:${PORTSDIR}/security/p11-kit @@ -28,7 +30,7 @@ LDFLAGS+= -L${LOCALBASE}/lib CPPFLAGS+= -fPIC CONFIGURE_ARGS+= --disable-guile -MANCOMPRESSED= no +CONFIGURE_ARGS_PREFIX= ${STAGEDIR}${PREFIX} OPTIONS_DEFINE= LIBTASN1 CXX LZO NLS @@ -38,11 +40,10 @@ OPTIONS_DEFAULT= LIBTASN1 CXX -NO_STAGE= yes .include .if ${PORT_OPTIONS:MLIBTASN1} -LIB_DEPENDS+= tasn1:${PORTSDIR}/security/libtasn1 +LIB_DEPENDS+= tasn1:${PORTSDIR}/security/libtasn1 .else CONFIGURE_ARGS+= --with-included-libtasn1 .endif @@ -50,42 +51,43 @@ .if ${PORT_OPTIONS:MLZO} LIB_DEPENDS+= lzo2:${PORTSDIR}/archivers/lzo2 CONFIGURE_ARGS+= --with-lzo +.else +CONFIGURE_ARGS+= --with-lzo=no .endif .if ${PORT_OPTIONS:MCXX} +PLIST_SUB+= CXX="" +.else CONFIGURE_ARGS+= --disable-cxx PLIST_SUB+= CXX="@comment " -.else -PLIST_SUB+= CXX="" .endif .if ${PORT_OPTIONS:MNLS} +USES+= gettext +PLIST_SUB+= NLS="" +.else CONFIGURE_ARGS+= --disable-nls PLIST_SUB+= NLS="@comment " -.else -USES+= gettext -PLIST_SUB+= NLS="" .endif PORTDOCS= AUTHORS NEWS README THANKS PORTEXAMPLES= *.c post-patch: - @${FIND} ${WRKSRC} -name "Makefile.in" -type f | ${XARGS} ${REINPLACE_CMD} \ - -e 's|[$$][(]LTLIBPTHREAD[)]||g' + @${FIND} ${WRKSRC} -name "Makefile.in" -type f |\ + ${XARGS} ${REINPLACE_CMD} -e 's|[$$][(]LTLIBPTHREAD[)]||g' post-install: -.if !defined (NOPORTEXAMPLES) - @${MKDIR} ${EXAMPLESDIR} +.if ${PORT_OPTIONS:MEXAMPLES} + @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES:C,^,doc/examples/,} \ - ${EXAMPLESDIR} + ${STAGEDIR}${EXAMPLESDIR} .endif -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} +.if ${PORT_OPTIONS:MDOCS} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${PORTDOCS} - @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + @${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .endif -.include "Makefile.man" .include diff -ruN /usr/ports/security/gnutls/Makefile.man ./Makefile.man --- /usr/ports/security/gnutls/Makefile.man 2012-07-14 23:29:18.000000000 +0900 +++ ./Makefile.man 1970-01-01 09:00:00.000000000 +0900 @@ -1,664 +0,0 @@ -# vi:ft=make -# $FreeBSD: security/gnutls/Makefile.man 300897 2012-07-14 14:29:18Z beat $ - -INFO= gnutls - -MAN1= \ - certtool.1 \ - gnutls-cli-debug.1 \ - gnutls-cli.1 \ - gnutls-serv.1 \ - p11tool.1 \ - psktool.1 \ - srptool.1 - -MAN3= \ - gnutls_alert_get.3 \ - gnutls_alert_get_name.3 \ - gnutls_alert_send.3 \ - gnutls_alert_send_appropriate.3 \ - gnutls_anon_allocate_client_credentials.3 \ - gnutls_anon_allocate_server_credentials.3 \ - gnutls_anon_free_client_credentials.3 \ - gnutls_anon_free_server_credentials.3 \ - gnutls_anon_set_params_function.3 \ - gnutls_anon_set_server_dh_params.3 \ - gnutls_anon_set_server_params_function.3 \ - gnutls_auth_client_get_type.3 \ - gnutls_auth_get_type.3 \ - gnutls_auth_server_get_type.3 \ - gnutls_bye.3 \ - gnutls_certificate_activation_time_peers.3 \ - gnutls_certificate_allocate_credentials.3 \ - gnutls_certificate_client_get_request_status.3 \ - gnutls_certificate_client_set_retrieve_function.3 \ - gnutls_certificate_expiration_time_peers.3 \ - gnutls_certificate_free_ca_names.3 \ - gnutls_certificate_free_cas.3 \ - gnutls_certificate_free_credentials.3 \ - gnutls_certificate_free_crls.3 \ - gnutls_certificate_free_keys.3 \ - gnutls_certificate_get_issuer.3 \ - gnutls_certificate_get_openpgp_keyring.3 \ - gnutls_certificate_get_ours.3 \ - gnutls_certificate_get_peers.3 \ - gnutls_certificate_get_x509_cas.3 \ - gnutls_certificate_get_x509_crls.3 \ - gnutls_certificate_send_x509_rdn_sequence.3 \ - gnutls_certificate_server_set_request.3 \ - gnutls_certificate_server_set_retrieve_function.3 \ - gnutls_certificate_set_dh_params.3 \ - gnutls_certificate_set_openpgp_key.3 \ - gnutls_certificate_set_openpgp_key_file.3 \ - gnutls_certificate_set_openpgp_key_file2.3 \ - gnutls_certificate_set_openpgp_key_mem.3 \ - gnutls_certificate_set_openpgp_key_mem2.3 \ - gnutls_certificate_set_openpgp_keyring_file.3 \ - gnutls_certificate_set_openpgp_keyring_mem.3 \ - gnutls_certificate_set_params_function.3 \ - gnutls_certificate_set_retrieve_function.3 \ - gnutls_certificate_set_rsa_export_params.3 \ - gnutls_certificate_set_verify_flags.3 \ - gnutls_certificate_set_verify_function.3 \ - gnutls_certificate_set_verify_limits.3 \ - gnutls_certificate_set_x509_crl.3 \ - gnutls_certificate_set_x509_crl_file.3 \ - gnutls_certificate_set_x509_crl_mem.3 \ - gnutls_certificate_set_x509_key.3 \ - gnutls_certificate_set_x509_key_file.3 \ - gnutls_certificate_set_x509_key_mem.3 \ - gnutls_certificate_set_x509_simple_pkcs12_file.3 \ - gnutls_certificate_set_x509_simple_pkcs12_mem.3 \ - gnutls_certificate_set_x509_trust.3 \ - gnutls_certificate_set_x509_trust_file.3 \ - gnutls_certificate_set_x509_trust_mem.3 \ - gnutls_certificate_type_get.3 \ - gnutls_certificate_type_get_id.3 \ - gnutls_certificate_type_get_name.3 \ - gnutls_certificate_type_list.3 \ - gnutls_certificate_type_set_priority.3 \ - gnutls_certificate_verify_peers.3 \ - gnutls_certificate_verify_peers2.3 \ - gnutls_check_version.3 \ - gnutls_cipher_decrypt.3 \ - gnutls_cipher_decrypt2.3 \ - gnutls_cipher_deinit.3 \ - gnutls_cipher_encrypt.3 \ - gnutls_cipher_encrypt2.3 \ - gnutls_cipher_get.3 \ - gnutls_cipher_get_block_size.3 \ - gnutls_cipher_get_id.3 \ - gnutls_cipher_get_key_size.3 \ - gnutls_cipher_get_name.3 \ - gnutls_cipher_init.3 \ - gnutls_cipher_list.3 \ - gnutls_cipher_set_priority.3 \ - gnutls_cipher_suite_get_name.3 \ - gnutls_cipher_suite_info.3 \ - gnutls_compression_get.3 \ - gnutls_compression_get_id.3 \ - gnutls_compression_get_name.3 \ - gnutls_compression_list.3 \ - gnutls_compression_set_priority.3 \ - gnutls_credentials_clear.3 \ - gnutls_credentials_set.3 \ - gnutls_crypto_bigint_register2.3 \ - gnutls_crypto_cipher_register2.3 \ - gnutls_crypto_digest_register2.3 \ - gnutls_crypto_mac_register2.3 \ - gnutls_crypto_pk_register2.3 \ - gnutls_crypto_rnd_register2.3 \ - gnutls_crypto_single_cipher_register2.3 \ - gnutls_crypto_single_digest_register2.3 \ - gnutls_crypto_single_mac_register2.3 \ - gnutls_db_check_entry.3 \ - gnutls_db_get_ptr.3 \ - gnutls_db_remove_session.3 \ - gnutls_db_set_cache_expiration.3 \ - gnutls_db_set_ptr.3 \ - gnutls_db_set_remove_function.3 \ - gnutls_db_set_retrieve_function.3 \ - gnutls_db_set_store_function.3 \ - gnutls_deinit.3 \ - gnutls_dh_get_group.3 \ - gnutls_dh_get_peers_public_bits.3 \ - gnutls_dh_get_prime_bits.3 \ - gnutls_dh_get_pubkey.3 \ - gnutls_dh_get_secret_bits.3 \ - gnutls_dh_params_cpy.3 \ - gnutls_dh_params_deinit.3 \ - gnutls_dh_params_export_pkcs3.3 \ - gnutls_dh_params_export_raw.3 \ - gnutls_dh_params_generate2.3 \ - gnutls_dh_params_import_pkcs3.3 \ - gnutls_dh_params_import_raw.3 \ - gnutls_dh_params_init.3 \ - gnutls_dh_set_prime_bits.3 \ - gnutls_error_is_fatal.3 \ - gnutls_error_to_alert.3 \ - gnutls_ext_register.3 \ - gnutls_extra_check_version.3 \ - gnutls_fingerprint.3 \ - gnutls_free.3 \ - gnutls_global_deinit.3 \ - gnutls_global_init.3 \ - gnutls_global_init_extra.3 \ - gnutls_global_set_log_function.3 \ - gnutls_global_set_log_level.3 \ - gnutls_global_set_mem_functions.3 \ - gnutls_global_set_mutex.3 \ - gnutls_global_set_time_function.3 \ - gnutls_handshake.3 \ - gnutls_handshake_get_last_in.3 \ - gnutls_handshake_get_last_out.3 \ - gnutls_handshake_set_max_packet_length.3 \ - gnutls_handshake_set_post_client_hello_function.3 \ - gnutls_handshake_set_private_extensions.3 \ - gnutls_hash.3 \ - gnutls_hash_deinit.3 \ - gnutls_hash_fast.3 \ - gnutls_hash_get_len.3 \ - gnutls_hash_init.3 \ - gnutls_hash_output.3 \ - gnutls_hex2bin.3 \ - gnutls_hex_decode.3 \ - gnutls_hex_encode.3 \ - gnutls_hmac.3 \ - gnutls_hmac_deinit.3 \ - gnutls_hmac_fast.3 \ - gnutls_hmac_get_len.3 \ - gnutls_hmac_init.3 \ - gnutls_hmac_output.3 \ - gnutls_ia_allocate_client_credentials.3 \ - gnutls_ia_allocate_server_credentials.3 \ - gnutls_ia_enable.3 \ - gnutls_ia_endphase_send.3 \ - gnutls_ia_extract_inner_secret.3 \ - gnutls_ia_free_client_credentials.3 \ - gnutls_ia_free_server_credentials.3 \ - gnutls_ia_generate_challenge.3 \ - gnutls_ia_get_client_avp_ptr.3 \ - gnutls_ia_get_server_avp_ptr.3 \ - gnutls_ia_handshake.3 \ - gnutls_ia_handshake_p.3 \ - gnutls_ia_permute_inner_secret.3 \ - gnutls_ia_recv.3 \ - gnutls_ia_send.3 \ - gnutls_ia_set_client_avp_function.3 \ - gnutls_ia_set_client_avp_ptr.3 \ - gnutls_ia_set_server_avp_function.3 \ - gnutls_ia_set_server_avp_ptr.3 \ - gnutls_ia_verify_endphase.3 \ - gnutls_init.3 \ - gnutls_kx_get.3 \ - gnutls_kx_get_id.3 \ - gnutls_kx_get_name.3 \ - gnutls_kx_list.3 \ - gnutls_kx_set_priority.3 \ - gnutls_mac_get.3 \ - gnutls_mac_get_id.3 \ - gnutls_mac_get_key_size.3 \ - gnutls_mac_get_name.3 \ - gnutls_mac_list.3 \ - gnutls_mac_set_priority.3 \ - gnutls_malloc.3 \ - gnutls_openpgp_crt_check_hostname.3 \ - gnutls_openpgp_crt_deinit.3 \ - gnutls_openpgp_crt_export.3 \ - gnutls_openpgp_crt_get_auth_subkey.3 \ - gnutls_openpgp_crt_get_creation_time.3 \ - gnutls_openpgp_crt_get_expiration_time.3 \ - gnutls_openpgp_crt_get_fingerprint.3 \ - gnutls_openpgp_crt_get_key_id.3 \ - gnutls_openpgp_crt_get_key_usage.3 \ - gnutls_openpgp_crt_get_name.3 \ - gnutls_openpgp_crt_get_pk_algorithm.3 \ - gnutls_openpgp_crt_get_pk_dsa_raw.3 \ - gnutls_openpgp_crt_get_pk_rsa_raw.3 \ - gnutls_openpgp_crt_get_preferred_key_id.3 \ - gnutls_openpgp_crt_get_revoked_status.3 \ - gnutls_openpgp_crt_get_subkey_count.3 \ - gnutls_openpgp_crt_get_subkey_creation_time.3 \ - gnutls_openpgp_crt_get_subkey_expiration_time.3 \ - gnutls_openpgp_crt_get_subkey_fingerprint.3 \ - gnutls_openpgp_crt_get_subkey_id.3 \ - gnutls_openpgp_crt_get_subkey_idx.3 \ - gnutls_openpgp_crt_get_subkey_pk_algorithm.3 \ - gnutls_openpgp_crt_get_subkey_pk_dsa_raw.3 \ - gnutls_openpgp_crt_get_subkey_pk_rsa_raw.3 \ - gnutls_openpgp_crt_get_subkey_revoked_status.3 \ - gnutls_openpgp_crt_get_subkey_usage.3 \ - gnutls_openpgp_crt_get_version.3 \ - gnutls_openpgp_crt_import.3 \ - gnutls_openpgp_crt_init.3 \ - gnutls_openpgp_crt_print.3 \ - gnutls_openpgp_crt_set_preferred_key_id.3 \ - gnutls_openpgp_crt_verify_ring.3 \ - gnutls_openpgp_crt_verify_self.3 \ - gnutls_openpgp_keyring_check_id.3 \ - gnutls_openpgp_keyring_deinit.3 \ - gnutls_openpgp_keyring_get_crt.3 \ - gnutls_openpgp_keyring_get_crt_count.3 \ - gnutls_openpgp_keyring_import.3 \ - gnutls_openpgp_keyring_init.3 \ - gnutls_openpgp_privkey_deinit.3 \ - gnutls_openpgp_privkey_export.3 \ - gnutls_openpgp_privkey_export_dsa_raw.3 \ - gnutls_openpgp_privkey_export_rsa_raw.3 \ - gnutls_openpgp_privkey_export_subkey_dsa_raw.3 \ - gnutls_openpgp_privkey_export_subkey_rsa_raw.3 \ - gnutls_openpgp_privkey_get_fingerprint.3 \ - gnutls_openpgp_privkey_get_key_id.3 \ - gnutls_openpgp_privkey_get_pk_algorithm.3 \ - gnutls_openpgp_privkey_get_preferred_key_id.3 \ - gnutls_openpgp_privkey_get_revoked_status.3 \ - gnutls_openpgp_privkey_get_subkey_count.3 \ - gnutls_openpgp_privkey_get_subkey_creation_time.3 \ - gnutls_openpgp_privkey_get_subkey_expiration_time.3 \ - gnutls_openpgp_privkey_get_subkey_fingerprint.3 \ - gnutls_openpgp_privkey_get_subkey_id.3 \ - gnutls_openpgp_privkey_get_subkey_idx.3 \ - gnutls_openpgp_privkey_get_subkey_pk_algorithm.3 \ - gnutls_openpgp_privkey_get_subkey_revoked_status.3 \ - gnutls_openpgp_privkey_import.3 \ - gnutls_openpgp_privkey_init.3 \ - gnutls_openpgp_privkey_sec_param.3 \ - gnutls_openpgp_privkey_set_preferred_key_id.3 \ - gnutls_openpgp_privkey_sign_hash.3 \ - gnutls_openpgp_send_cert.3 \ - gnutls_openpgp_set_recv_key_function.3 \ - gnutls_pem_base64_decode.3 \ - gnutls_pem_base64_decode_alloc.3 \ - gnutls_pem_base64_encode.3 \ - gnutls_pem_base64_encode_alloc.3 \ - gnutls_perror.3 \ - gnutls_pk_algorithm_get_name.3 \ - gnutls_pk_bits_to_sec_param.3 \ - gnutls_pk_get_id.3 \ - gnutls_pk_get_name.3 \ - gnutls_pk_list.3 \ - gnutls_pkcs11_add_provider.3 \ - gnutls_pkcs11_copy_secret_key.3 \ - gnutls_pkcs11_copy_x509_crt.3 \ - gnutls_pkcs11_copy_x509_privkey.3 \ - gnutls_pkcs11_deinit.3 \ - gnutls_pkcs11_delete_url.3 \ - gnutls_pkcs11_init.3 \ - gnutls_pkcs11_obj_deinit.3 \ - gnutls_pkcs11_obj_export.3 \ - gnutls_pkcs11_obj_export_url.3 \ - gnutls_pkcs11_obj_get_info.3 \ - gnutls_pkcs11_obj_get_type.3 \ - gnutls_pkcs11_obj_import_url.3 \ - gnutls_pkcs11_obj_init.3 \ - gnutls_pkcs11_obj_list_import_url.3 \ - gnutls_pkcs11_privkey_deinit.3 \ - gnutls_pkcs11_privkey_export_url.3 \ - gnutls_pkcs11_privkey_get_info.3 \ - gnutls_pkcs11_privkey_get_pk_algorithm.3 \ - gnutls_pkcs11_privkey_import_url.3 \ - gnutls_pkcs11_privkey_init.3 \ - gnutls_pkcs11_set_pin_function.3 \ - gnutls_pkcs11_set_token_function.3 \ - gnutls_pkcs11_token_get_flags.3 \ - gnutls_pkcs11_token_get_info.3 \ - gnutls_pkcs11_token_get_mechanism.3 \ - gnutls_pkcs11_token_get_url.3 \ - gnutls_pkcs11_token_init.3 \ - gnutls_pkcs11_token_set_pin.3 \ - gnutls_pkcs12_bag_decrypt.3 \ - gnutls_pkcs12_bag_deinit.3 \ - gnutls_pkcs12_bag_encrypt.3 \ - gnutls_pkcs12_bag_get_count.3 \ - gnutls_pkcs12_bag_get_data.3 \ - gnutls_pkcs12_bag_get_friendly_name.3 \ - gnutls_pkcs12_bag_get_key_id.3 \ - gnutls_pkcs12_bag_get_type.3 \ - gnutls_pkcs12_bag_init.3 \ - gnutls_pkcs12_bag_set_crl.3 \ - gnutls_pkcs12_bag_set_crt.3 \ - gnutls_pkcs12_bag_set_data.3 \ - gnutls_pkcs12_bag_set_friendly_name.3 \ - gnutls_pkcs12_bag_set_key_id.3 \ - gnutls_pkcs12_deinit.3 \ - gnutls_pkcs12_export.3 \ - gnutls_pkcs12_generate_mac.3 \ - gnutls_pkcs12_get_bag.3 \ - gnutls_pkcs12_import.3 \ - gnutls_pkcs12_init.3 \ - gnutls_pkcs12_set_bag.3 \ - gnutls_pkcs12_verify_mac.3 \ - gnutls_pkcs7_deinit.3 \ - gnutls_pkcs7_delete_crl.3 \ - gnutls_pkcs7_delete_crt.3 \ - gnutls_pkcs7_export.3 \ - gnutls_pkcs7_get_crl_count.3 \ - gnutls_pkcs7_get_crl_raw.3 \ - gnutls_pkcs7_get_crt_count.3 \ - gnutls_pkcs7_get_crt_raw.3 \ - gnutls_pkcs7_import.3 \ - gnutls_pkcs7_init.3 \ - gnutls_pkcs7_set_crl.3 \ - gnutls_pkcs7_set_crl_raw.3 \ - gnutls_pkcs7_set_crt.3 \ - gnutls_pkcs7_set_crt_raw.3 \ - gnutls_prf.3 \ - gnutls_prf_raw.3 \ - gnutls_priority_deinit.3 \ - gnutls_priority_init.3 \ - gnutls_priority_set.3 \ - gnutls_priority_set_direct.3 \ - gnutls_privkey_decrypt_data.3 \ - gnutls_privkey_deinit.3 \ - gnutls_privkey_get_pk_algorithm.3 \ - gnutls_privkey_get_type.3 \ - gnutls_privkey_import_openpgp.3 \ - gnutls_privkey_import_pkcs11.3 \ - gnutls_privkey_import_x509.3 \ - gnutls_privkey_init.3 \ - gnutls_privkey_sign_data.3 \ - gnutls_privkey_sign_hash.3 \ - gnutls_protocol_get_id.3 \ - gnutls_protocol_get_name.3 \ - gnutls_protocol_get_version.3 \ - gnutls_protocol_list.3 \ - gnutls_protocol_set_priority.3 \ - gnutls_psk_allocate_client_credentials.3 \ - gnutls_psk_allocate_server_credentials.3 \ - gnutls_psk_client_get_hint.3 \ - gnutls_psk_free_client_credentials.3 \ - gnutls_psk_free_server_credentials.3 \ - gnutls_psk_netconf_derive_key.3 \ - gnutls_psk_server_get_username.3 \ - gnutls_psk_set_client_credentials.3 \ - gnutls_psk_set_client_credentials_function.3 \ - gnutls_psk_set_params_function.3 \ - gnutls_psk_set_server_credentials_file.3 \ - gnutls_psk_set_server_credentials_function.3 \ - gnutls_psk_set_server_credentials_hint.3 \ - gnutls_psk_set_server_dh_params.3 \ - gnutls_psk_set_server_params_function.3 \ - gnutls_pubkey_deinit.3 \ - gnutls_pubkey_export.3 \ - gnutls_pubkey_get_key_id.3 \ - gnutls_pubkey_get_key_usage.3 \ - gnutls_pubkey_get_pk_algorithm.3 \ - gnutls_pubkey_get_pk_dsa_raw.3 \ - gnutls_pubkey_get_pk_rsa_raw.3 \ - gnutls_pubkey_get_preferred_hash_algorithm.3 \ - gnutls_pubkey_get_verify_algorithm.3 \ - gnutls_pubkey_import.3 \ - gnutls_pubkey_import_dsa_raw.3 \ - gnutls_pubkey_import_openpgp.3 \ - gnutls_pubkey_import_pkcs11.3 \ - gnutls_pubkey_import_pkcs11_url.3 \ - gnutls_pubkey_import_privkey.3 \ - gnutls_pubkey_import_rsa_raw.3 \ - gnutls_pubkey_import_x509.3 \ - gnutls_pubkey_init.3 \ - gnutls_pubkey_set_key_usage.3 \ - gnutls_pubkey_verify_data.3 \ - gnutls_pubkey_verify_hash.3 \ - gnutls_record_check_pending.3 \ - gnutls_record_disable_padding.3 \ - gnutls_record_get_direction.3 \ - gnutls_record_get_max_size.3 \ - gnutls_record_recv.3 \ - gnutls_record_send.3 \ - gnutls_record_set_max_size.3 \ - gnutls_register_md5_handler.3 \ - gnutls_rehandshake.3 \ - gnutls_rnd.3 \ - gnutls_rsa_export_get_modulus_bits.3 \ - gnutls_rsa_export_get_pubkey.3 \ - gnutls_rsa_params_cpy.3 \ - gnutls_rsa_params_deinit.3 \ - gnutls_rsa_params_export_pkcs1.3 \ - gnutls_rsa_params_export_raw.3 \ - gnutls_rsa_params_generate2.3 \ - gnutls_rsa_params_import_pkcs1.3 \ - gnutls_rsa_params_import_raw.3 \ - gnutls_rsa_params_init.3 \ - gnutls_safe_renegotiation_status.3 \ - gnutls_sec_param_get_name.3 \ - gnutls_sec_param_to_pk_bits.3 \ - gnutls_server_name_get.3 \ - gnutls_server_name_set.3 \ - gnutls_session_channel_binding.3 \ - gnutls_session_enable_compatibility_mode.3 \ - gnutls_session_get_data.3 \ - gnutls_session_get_data2.3 \ - gnutls_session_get_id.3 \ - gnutls_session_get_ptr.3 \ - gnutls_session_is_resumed.3 \ - gnutls_session_set_data.3 \ - gnutls_session_set_ptr.3 \ - gnutls_session_ticket_enable_client.3 \ - gnutls_session_ticket_enable_server.3 \ - gnutls_session_ticket_key_generate.3 \ - gnutls_set_default_export_priority.3 \ - gnutls_set_default_priority.3 \ - gnutls_sign_algorithm_get_name.3 \ - gnutls_sign_algorithm_get_requested.3 \ - gnutls_sign_callback_get.3 \ - gnutls_sign_callback_set.3 \ - gnutls_sign_get_id.3 \ - gnutls_sign_get_name.3 \ - gnutls_sign_list.3 \ - gnutls_srp_allocate_client_credentials.3 \ - gnutls_srp_allocate_server_credentials.3 \ - gnutls_srp_base64_decode.3 \ - gnutls_srp_base64_decode_alloc.3 \ - gnutls_srp_base64_encode.3 \ - gnutls_srp_base64_encode_alloc.3 \ - gnutls_srp_free_client_credentials.3 \ - gnutls_srp_free_server_credentials.3 \ - gnutls_srp_server_get_username.3 \ - gnutls_srp_set_client_credentials.3 \ - gnutls_srp_set_client_credentials_function.3 \ - gnutls_srp_set_prime_bits.3 \ - gnutls_srp_set_server_credentials_file.3 \ - gnutls_srp_set_server_credentials_function.3 \ - gnutls_srp_verifier.3 \ - gnutls_strerror.3 \ - gnutls_strerror_name.3 \ - gnutls_supplemental_get_name.3 \ - gnutls_transport_get_ptr.3 \ - gnutls_transport_get_ptr2.3 \ - gnutls_transport_set_errno.3 \ - gnutls_transport_set_errno_function.3 \ - gnutls_transport_set_global_errno.3 \ - gnutls_transport_set_lowat.3 \ - gnutls_transport_set_ptr.3 \ - gnutls_transport_set_ptr2.3 \ - gnutls_transport_set_pull_function.3 \ - gnutls_transport_set_push_function.3 \ - gnutls_transport_set_vec_push_function.3 \ - gnutls_x509_crl_check_issuer.3 \ - gnutls_x509_crl_deinit.3 \ - gnutls_x509_crl_export.3 \ - gnutls_x509_crl_get_authority_key_id.3 \ - gnutls_x509_crl_get_crt_count.3 \ - gnutls_x509_crl_get_crt_serial.3 \ - gnutls_x509_crl_get_dn_oid.3 \ - gnutls_x509_crl_get_extension_data.3 \ - gnutls_x509_crl_get_extension_info.3 \ - gnutls_x509_crl_get_extension_oid.3 \ - gnutls_x509_crl_get_issuer_dn.3 \ - gnutls_x509_crl_get_issuer_dn_by_oid.3 \ - gnutls_x509_crl_get_next_update.3 \ - gnutls_x509_crl_get_number.3 \ - gnutls_x509_crl_get_raw_issuer_dn.3 \ - gnutls_x509_crl_get_signature.3 \ - gnutls_x509_crl_get_signature_algorithm.3 \ - gnutls_x509_crl_get_this_update.3 \ - gnutls_x509_crl_get_version.3 \ - gnutls_x509_crl_import.3 \ - gnutls_x509_crl_init.3 \ - gnutls_x509_crl_print.3 \ - gnutls_x509_crl_privkey_sign.3 \ - gnutls_x509_crl_set_authority_key_id.3 \ - gnutls_x509_crl_set_crt.3 \ - gnutls_x509_crl_set_crt_serial.3 \ - gnutls_x509_crl_set_next_update.3 \ - gnutls_x509_crl_set_number.3 \ - gnutls_x509_crl_set_this_update.3 \ - gnutls_x509_crl_set_version.3 \ - gnutls_x509_crl_sign.3 \ - gnutls_x509_crl_sign2.3 \ - gnutls_x509_crl_verify.3 \ - gnutls_x509_crq_deinit.3 \ - gnutls_x509_crq_export.3 \ - gnutls_x509_crq_get_attribute_by_oid.3 \ - gnutls_x509_crq_get_attribute_data.3 \ - gnutls_x509_crq_get_attribute_info.3 \ - gnutls_x509_crq_get_basic_constraints.3 \ - gnutls_x509_crq_get_challenge_password.3 \ - gnutls_x509_crq_get_dn.3 \ - gnutls_x509_crq_get_dn_by_oid.3 \ - gnutls_x509_crq_get_dn_oid.3 \ - gnutls_x509_crq_get_extension_by_oid.3 \ - gnutls_x509_crq_get_extension_data.3 \ - gnutls_x509_crq_get_extension_info.3 \ - gnutls_x509_crq_get_key_id.3 \ - gnutls_x509_crq_get_key_purpose_oid.3 \ - gnutls_x509_crq_get_key_rsa_raw.3 \ - gnutls_x509_crq_get_key_usage.3 \ - gnutls_x509_crq_get_pk_algorithm.3 \ - gnutls_x509_crq_get_subject_alt_name.3 \ - gnutls_x509_crq_get_subject_alt_othername_oid.3 \ - gnutls_x509_crq_get_version.3 \ - gnutls_x509_crq_import.3 \ - gnutls_x509_crq_init.3 \ - gnutls_x509_crq_print.3 \ - gnutls_x509_crq_privkey_sign.3 \ - gnutls_x509_crq_set_attribute_by_oid.3 \ - gnutls_x509_crq_set_basic_constraints.3 \ - gnutls_x509_crq_set_challenge_password.3 \ - gnutls_x509_crq_set_dn_by_oid.3 \ - gnutls_x509_crq_set_key.3 \ - gnutls_x509_crq_set_key_purpose_oid.3 \ - gnutls_x509_crq_set_key_rsa_raw.3 \ - gnutls_x509_crq_set_key_usage.3 \ - gnutls_x509_crq_set_pubkey.3 \ - gnutls_x509_crq_set_subject_alt_name.3 \ - gnutls_x509_crq_set_version.3 \ - gnutls_x509_crq_sign.3 \ - gnutls_x509_crq_sign2.3 \ - gnutls_x509_crq_verify.3 \ - gnutls_x509_crt_check_hostname.3 \ - gnutls_x509_crt_check_issuer.3 \ - gnutls_x509_crt_check_revocation.3 \ - gnutls_x509_crt_cpy_crl_dist_points.3 \ - gnutls_x509_crt_deinit.3 \ - gnutls_x509_crt_export.3 \ - gnutls_x509_crt_get_activation_time.3 \ - gnutls_x509_crt_get_authority_key_id.3 \ - gnutls_x509_crt_get_basic_constraints.3 \ - gnutls_x509_crt_get_ca_status.3 \ - gnutls_x509_crt_get_crl_dist_points.3 \ - gnutls_x509_crt_get_dn.3 \ - gnutls_x509_crt_get_dn_by_oid.3 \ - gnutls_x509_crt_get_dn_oid.3 \ - gnutls_x509_crt_get_expiration_time.3 \ - gnutls_x509_crt_get_extension_by_oid.3 \ - gnutls_x509_crt_get_extension_data.3 \ - gnutls_x509_crt_get_extension_info.3 \ - gnutls_x509_crt_get_extension_oid.3 \ - gnutls_x509_crt_get_fingerprint.3 \ - gnutls_x509_crt_get_issuer.3 \ - gnutls_x509_crt_get_issuer_alt_name.3 \ - gnutls_x509_crt_get_issuer_alt_name2.3 \ - gnutls_x509_crt_get_issuer_alt_othername_oid.3 \ - gnutls_x509_crt_get_issuer_dn.3 \ - gnutls_x509_crt_get_issuer_dn_by_oid.3 \ - gnutls_x509_crt_get_issuer_dn_oid.3 \ - gnutls_x509_crt_get_issuer_unique_id.3 \ - gnutls_x509_crt_get_key_id.3 \ - gnutls_x509_crt_get_key_purpose_oid.3 \ - gnutls_x509_crt_get_key_usage.3 \ - gnutls_x509_crt_get_pk_algorithm.3 \ - gnutls_x509_crt_get_pk_dsa_raw.3 \ - gnutls_x509_crt_get_pk_rsa_raw.3 \ - gnutls_x509_crt_get_preferred_hash_algorithm.3 \ - gnutls_x509_crt_get_proxy.3 \ - gnutls_x509_crt_get_raw_dn.3 \ - gnutls_x509_crt_get_raw_issuer_dn.3 \ - gnutls_x509_crt_get_serial.3 \ - gnutls_x509_crt_get_signature.3 \ - gnutls_x509_crt_get_signature_algorithm.3 \ - gnutls_x509_crt_get_subject.3 \ - gnutls_x509_crt_get_subject_alt_name.3 \ - gnutls_x509_crt_get_subject_alt_name2.3 \ - gnutls_x509_crt_get_subject_alt_othername_oid.3 \ - gnutls_x509_crt_get_subject_key_id.3 \ - gnutls_x509_crt_get_subject_unique_id.3 \ - gnutls_x509_crt_get_verify_algorithm.3 \ - gnutls_x509_crt_get_version.3 \ - gnutls_x509_crt_import.3 \ - gnutls_x509_crt_import_pkcs11.3 \ - gnutls_x509_crt_import_pkcs11_url.3 \ - gnutls_x509_crt_init.3 \ - gnutls_x509_crt_list_import.3 \ - gnutls_x509_crt_list_import_pkcs11.3 \ - gnutls_x509_crt_list_verify.3 \ - gnutls_x509_crt_print.3 \ - gnutls_x509_crt_privkey_sign.3 \ - gnutls_x509_crt_set_activation_time.3 \ - gnutls_x509_crt_set_authority_key_id.3 \ - gnutls_x509_crt_set_basic_constraints.3 \ - gnutls_x509_crt_set_ca_status.3 \ - gnutls_x509_crt_set_crl_dist_points.3 \ - gnutls_x509_crt_set_crl_dist_points2.3 \ - gnutls_x509_crt_set_crq.3 \ - gnutls_x509_crt_set_crq_extensions.3 \ - gnutls_x509_crt_set_dn_by_oid.3 \ - gnutls_x509_crt_set_expiration_time.3 \ - gnutls_x509_crt_set_extension_by_oid.3 \ - gnutls_x509_crt_set_issuer_dn_by_oid.3 \ - gnutls_x509_crt_set_key.3 \ - gnutls_x509_crt_set_key_purpose_oid.3 \ - gnutls_x509_crt_set_key_usage.3 \ - gnutls_x509_crt_set_proxy.3 \ - gnutls_x509_crt_set_proxy_dn.3 \ - gnutls_x509_crt_set_pubkey.3 \ - gnutls_x509_crt_set_serial.3 \ - gnutls_x509_crt_set_subject_alt_name.3 \ - gnutls_x509_crt_set_subject_alternative_name.3 \ - gnutls_x509_crt_set_subject_key_id.3 \ - gnutls_x509_crt_set_version.3 \ - gnutls_x509_crt_sign.3 \ - gnutls_x509_crt_sign2.3 \ - gnutls_x509_crt_verify.3 \ - gnutls_x509_crt_verify_data.3 \ - gnutls_x509_crt_verify_hash.3 \ - gnutls_x509_dn_deinit.3 \ - gnutls_x509_dn_export.3 \ - gnutls_x509_dn_get_rdn_ava.3 \ - gnutls_x509_dn_import.3 \ - gnutls_x509_dn_init.3 \ - gnutls_x509_dn_oid_known.3 \ - gnutls_x509_privkey_cpy.3 \ - gnutls_x509_privkey_deinit.3 \ - gnutls_x509_privkey_export.3 \ - gnutls_x509_privkey_export_dsa_raw.3 \ - gnutls_x509_privkey_export_pkcs8.3 \ - gnutls_x509_privkey_export_rsa_raw.3 \ - gnutls_x509_privkey_export_rsa_raw2.3 \ - gnutls_x509_privkey_fix.3 \ - gnutls_x509_privkey_generate.3 \ - gnutls_x509_privkey_get_key_id.3 \ - gnutls_x509_privkey_get_pk_algorithm.3 \ - gnutls_x509_privkey_import.3 \ - gnutls_x509_privkey_import_dsa_raw.3 \ - gnutls_x509_privkey_import_pkcs8.3 \ - gnutls_x509_privkey_import_rsa_raw.3 \ - gnutls_x509_privkey_import_rsa_raw2.3 \ - gnutls_x509_privkey_init.3 \ - gnutls_x509_privkey_sec_param.3 \ - gnutls_x509_privkey_sign_data.3 \ - gnutls_x509_privkey_sign_hash.3 \ - gnutls_x509_privkey_verify_data.3 \ - gnutls_x509_rdn_get.3 \ - gnutls_x509_rdn_get_by_oid.3 \ - gnutls_x509_rdn_get_oid.3 diff -ruN /usr/ports/security/gnutls/pkg-descr ./pkg-descr --- /usr/ports/security/gnutls/pkg-descr 2012-07-14 23:29:18.000000000 +0900 +++ ./pkg-descr 2014-01-01 17:46:04.000000000 +0900 @@ -14,4 +14,4 @@ Additionaly GnuTLS provides an emulation API for the widely used OpenSSL library, to ease integration with existing applications. -WWW: http://www.gnutls.org/ +WWW: http://www.gnutls.org/ diff -ruN /usr/ports/security/gnutls/pkg-plist ./pkg-plist --- /usr/ports/security/gnutls/pkg-plist 2013-02-06 01:14:59.000000000 +0900 +++ ./pkg-plist 2014-01-02 10:41:50.000000000 +0900 @@ -48,6 +48,662 @@ lib/libgnutls.so.26 libdata/pkgconfig/gnutls-extra.pc libdata/pkgconfig/gnutls.pc +man/man1/certtool.1.gz +man/man1/gnutls-cli-debug.1.gz +man/man1/gnutls-cli.1.gz +man/man1/gnutls-serv.1.gz +man/man1/p11tool.1.gz +man/man1/psktool.1.gz +man/man1/srptool.1.gz +man/man3/gnutls_alert_get.3.gz +man/man3/gnutls_alert_get_name.3.gz +man/man3/gnutls_alert_send.3.gz +man/man3/gnutls_alert_send_appropriate.3.gz +man/man3/gnutls_anon_allocate_client_credentials.3.gz +man/man3/gnutls_anon_allocate_server_credentials.3.gz +man/man3/gnutls_anon_free_client_credentials.3.gz +man/man3/gnutls_anon_free_server_credentials.3.gz +man/man3/gnutls_anon_set_params_function.3.gz +man/man3/gnutls_anon_set_server_dh_params.3.gz +man/man3/gnutls_anon_set_server_params_function.3.gz +man/man3/gnutls_auth_client_get_type.3.gz +man/man3/gnutls_auth_get_type.3.gz +man/man3/gnutls_auth_server_get_type.3.gz +man/man3/gnutls_bye.3.gz +man/man3/gnutls_certificate_activation_time_peers.3.gz +man/man3/gnutls_certificate_allocate_credentials.3.gz +man/man3/gnutls_certificate_client_get_request_status.3.gz +man/man3/gnutls_certificate_client_set_retrieve_function.3.gz +man/man3/gnutls_certificate_expiration_time_peers.3.gz +man/man3/gnutls_certificate_free_ca_names.3.gz +man/man3/gnutls_certificate_free_cas.3.gz +man/man3/gnutls_certificate_free_credentials.3.gz +man/man3/gnutls_certificate_free_crls.3.gz +man/man3/gnutls_certificate_free_keys.3.gz +man/man3/gnutls_certificate_get_issuer.3.gz +man/man3/gnutls_certificate_get_openpgp_keyring.3.gz +man/man3/gnutls_certificate_get_ours.3.gz +man/man3/gnutls_certificate_get_peers.3.gz +man/man3/gnutls_certificate_get_x509_cas.3.gz +man/man3/gnutls_certificate_get_x509_crls.3.gz +man/man3/gnutls_certificate_send_x509_rdn_sequence.3.gz +man/man3/gnutls_certificate_server_set_request.3.gz +man/man3/gnutls_certificate_server_set_retrieve_function.3.gz +man/man3/gnutls_certificate_set_dh_params.3.gz +man/man3/gnutls_certificate_set_openpgp_key.3.gz +man/man3/gnutls_certificate_set_openpgp_key_file.3.gz +man/man3/gnutls_certificate_set_openpgp_key_file2.3.gz +man/man3/gnutls_certificate_set_openpgp_key_mem.3.gz +man/man3/gnutls_certificate_set_openpgp_key_mem2.3.gz +man/man3/gnutls_certificate_set_openpgp_keyring_file.3.gz +man/man3/gnutls_certificate_set_openpgp_keyring_mem.3.gz +man/man3/gnutls_certificate_set_params_function.3.gz +man/man3/gnutls_certificate_set_retrieve_function.3.gz +man/man3/gnutls_certificate_set_rsa_export_params.3.gz +man/man3/gnutls_certificate_set_verify_flags.3.gz +man/man3/gnutls_certificate_set_verify_function.3.gz +man/man3/gnutls_certificate_set_verify_limits.3.gz +man/man3/gnutls_certificate_set_x509_crl.3.gz +man/man3/gnutls_certificate_set_x509_crl_file.3.gz +man/man3/gnutls_certificate_set_x509_crl_mem.3.gz +man/man3/gnutls_certificate_set_x509_key.3.gz +man/man3/gnutls_certificate_set_x509_key_file.3.gz +man/man3/gnutls_certificate_set_x509_key_mem.3.gz +man/man3/gnutls_certificate_set_x509_simple_pkcs12_file.3.gz +man/man3/gnutls_certificate_set_x509_simple_pkcs12_mem.3.gz +man/man3/gnutls_certificate_set_x509_trust.3.gz +man/man3/gnutls_certificate_set_x509_trust_file.3.gz +man/man3/gnutls_certificate_set_x509_trust_mem.3.gz +man/man3/gnutls_certificate_type_get.3.gz +man/man3/gnutls_certificate_type_get_id.3.gz +man/man3/gnutls_certificate_type_get_name.3.gz +man/man3/gnutls_certificate_type_list.3.gz +man/man3/gnutls_certificate_type_set_priority.3.gz +man/man3/gnutls_certificate_verify_peers.3.gz +man/man3/gnutls_certificate_verify_peers2.3.gz +man/man3/gnutls_check_version.3.gz +man/man3/gnutls_cipher_decrypt.3.gz +man/man3/gnutls_cipher_decrypt2.3.gz +man/man3/gnutls_cipher_deinit.3.gz +man/man3/gnutls_cipher_encrypt.3.gz +man/man3/gnutls_cipher_encrypt2.3.gz +man/man3/gnutls_cipher_get.3.gz +man/man3/gnutls_cipher_get_block_size.3.gz +man/man3/gnutls_cipher_get_id.3.gz +man/man3/gnutls_cipher_get_key_size.3.gz +man/man3/gnutls_cipher_get_name.3.gz +man/man3/gnutls_cipher_init.3.gz +man/man3/gnutls_cipher_list.3.gz +man/man3/gnutls_cipher_set_priority.3.gz +man/man3/gnutls_cipher_suite_get_name.3.gz +man/man3/gnutls_cipher_suite_info.3.gz +man/man3/gnutls_compression_get.3.gz +man/man3/gnutls_compression_get_id.3.gz +man/man3/gnutls_compression_get_name.3.gz +man/man3/gnutls_compression_list.3.gz +man/man3/gnutls_compression_set_priority.3.gz +man/man3/gnutls_credentials_clear.3.gz +man/man3/gnutls_credentials_set.3.gz +man/man3/gnutls_crypto_bigint_register2.3.gz +man/man3/gnutls_crypto_cipher_register2.3.gz +man/man3/gnutls_crypto_digest_register2.3.gz +man/man3/gnutls_crypto_mac_register2.3.gz +man/man3/gnutls_crypto_pk_register2.3.gz +man/man3/gnutls_crypto_rnd_register2.3.gz +man/man3/gnutls_crypto_single_cipher_register2.3.gz +man/man3/gnutls_crypto_single_digest_register2.3.gz +man/man3/gnutls_crypto_single_mac_register2.3.gz +man/man3/gnutls_db_check_entry.3.gz +man/man3/gnutls_db_get_ptr.3.gz +man/man3/gnutls_db_remove_session.3.gz +man/man3/gnutls_db_set_cache_expiration.3.gz +man/man3/gnutls_db_set_ptr.3.gz +man/man3/gnutls_db_set_remove_function.3.gz +man/man3/gnutls_db_set_retrieve_function.3.gz +man/man3/gnutls_db_set_store_function.3.gz +man/man3/gnutls_deinit.3.gz +man/man3/gnutls_dh_get_group.3.gz +man/man3/gnutls_dh_get_peers_public_bits.3.gz +man/man3/gnutls_dh_get_prime_bits.3.gz +man/man3/gnutls_dh_get_pubkey.3.gz +man/man3/gnutls_dh_get_secret_bits.3.gz +man/man3/gnutls_dh_params_cpy.3.gz +man/man3/gnutls_dh_params_deinit.3.gz +man/man3/gnutls_dh_params_export_pkcs3.3.gz +man/man3/gnutls_dh_params_export_raw.3.gz +man/man3/gnutls_dh_params_generate2.3.gz +man/man3/gnutls_dh_params_import_pkcs3.3.gz +man/man3/gnutls_dh_params_import_raw.3.gz +man/man3/gnutls_dh_params_init.3.gz +man/man3/gnutls_dh_set_prime_bits.3.gz +man/man3/gnutls_error_is_fatal.3.gz +man/man3/gnutls_error_to_alert.3.gz +man/man3/gnutls_ext_register.3.gz +man/man3/gnutls_extra_check_version.3.gz +man/man3/gnutls_fingerprint.3.gz +man/man3/gnutls_free.3.gz +man/man3/gnutls_global_deinit.3.gz +man/man3/gnutls_global_init.3.gz +man/man3/gnutls_global_init_extra.3.gz +man/man3/gnutls_global_set_log_function.3.gz +man/man3/gnutls_global_set_log_level.3.gz +man/man3/gnutls_global_set_mem_functions.3.gz +man/man3/gnutls_global_set_mutex.3.gz +man/man3/gnutls_global_set_time_function.3.gz +man/man3/gnutls_handshake.3.gz +man/man3/gnutls_handshake_get_last_in.3.gz +man/man3/gnutls_handshake_get_last_out.3.gz +man/man3/gnutls_handshake_set_max_packet_length.3.gz +man/man3/gnutls_handshake_set_post_client_hello_function.3.gz +man/man3/gnutls_handshake_set_private_extensions.3.gz +man/man3/gnutls_hash.3.gz +man/man3/gnutls_hash_deinit.3.gz +man/man3/gnutls_hash_fast.3.gz +man/man3/gnutls_hash_get_len.3.gz +man/man3/gnutls_hash_init.3.gz +man/man3/gnutls_hash_output.3.gz +man/man3/gnutls_hex2bin.3.gz +man/man3/gnutls_hex_decode.3.gz +man/man3/gnutls_hex_encode.3.gz +man/man3/gnutls_hmac.3.gz +man/man3/gnutls_hmac_deinit.3.gz +man/man3/gnutls_hmac_fast.3.gz +man/man3/gnutls_hmac_get_len.3.gz +man/man3/gnutls_hmac_init.3.gz +man/man3/gnutls_hmac_output.3.gz +man/man3/gnutls_ia_allocate_client_credentials.3.gz +man/man3/gnutls_ia_allocate_server_credentials.3.gz +man/man3/gnutls_ia_enable.3.gz +man/man3/gnutls_ia_endphase_send.3.gz +man/man3/gnutls_ia_extract_inner_secret.3.gz +man/man3/gnutls_ia_free_client_credentials.3.gz +man/man3/gnutls_ia_free_server_credentials.3.gz +man/man3/gnutls_ia_generate_challenge.3.gz +man/man3/gnutls_ia_get_client_avp_ptr.3.gz +man/man3/gnutls_ia_get_server_avp_ptr.3.gz +man/man3/gnutls_ia_handshake.3.gz +man/man3/gnutls_ia_handshake_p.3.gz +man/man3/gnutls_ia_permute_inner_secret.3.gz +man/man3/gnutls_ia_recv.3.gz +man/man3/gnutls_ia_send.3.gz +man/man3/gnutls_ia_set_client_avp_function.3.gz +man/man3/gnutls_ia_set_client_avp_ptr.3.gz +man/man3/gnutls_ia_set_server_avp_function.3.gz +man/man3/gnutls_ia_set_server_avp_ptr.3.gz +man/man3/gnutls_ia_verify_endphase.3.gz +man/man3/gnutls_init.3.gz +man/man3/gnutls_kx_get.3.gz +man/man3/gnutls_kx_get_id.3.gz +man/man3/gnutls_kx_get_name.3.gz +man/man3/gnutls_kx_list.3.gz +man/man3/gnutls_kx_set_priority.3.gz +man/man3/gnutls_mac_get.3.gz +man/man3/gnutls_mac_get_id.3.gz +man/man3/gnutls_mac_get_key_size.3.gz +man/man3/gnutls_mac_get_name.3.gz +man/man3/gnutls_mac_list.3.gz +man/man3/gnutls_mac_set_priority.3.gz +man/man3/gnutls_malloc.3.gz +man/man3/gnutls_openpgp_crt_check_hostname.3.gz +man/man3/gnutls_openpgp_crt_deinit.3.gz +man/man3/gnutls_openpgp_crt_export.3.gz +man/man3/gnutls_openpgp_crt_get_auth_subkey.3.gz +man/man3/gnutls_openpgp_crt_get_creation_time.3.gz +man/man3/gnutls_openpgp_crt_get_expiration_time.3.gz +man/man3/gnutls_openpgp_crt_get_fingerprint.3.gz +man/man3/gnutls_openpgp_crt_get_key_id.3.gz +man/man3/gnutls_openpgp_crt_get_key_usage.3.gz +man/man3/gnutls_openpgp_crt_get_name.3.gz +man/man3/gnutls_openpgp_crt_get_pk_algorithm.3.gz +man/man3/gnutls_openpgp_crt_get_pk_dsa_raw.3.gz +man/man3/gnutls_openpgp_crt_get_pk_rsa_raw.3.gz +man/man3/gnutls_openpgp_crt_get_preferred_key_id.3.gz +man/man3/gnutls_openpgp_crt_get_revoked_status.3.gz +man/man3/gnutls_openpgp_crt_get_subkey_count.3.gz +man/man3/gnutls_openpgp_crt_get_subkey_creation_time.3.gz +man/man3/gnutls_openpgp_crt_get_subkey_expiration_time.3.gz +man/man3/gnutls_openpgp_crt_get_subkey_fingerprint.3.gz +man/man3/gnutls_openpgp_crt_get_subkey_id.3.gz +man/man3/gnutls_openpgp_crt_get_subkey_idx.3.gz +man/man3/gnutls_openpgp_crt_get_subkey_pk_algorithm.3.gz +man/man3/gnutls_openpgp_crt_get_subkey_pk_dsa_raw.3.gz +man/man3/gnutls_openpgp_crt_get_subkey_pk_rsa_raw.3.gz +man/man3/gnutls_openpgp_crt_get_subkey_revoked_status.3.gz +man/man3/gnutls_openpgp_crt_get_subkey_usage.3.gz +man/man3/gnutls_openpgp_crt_get_version.3.gz +man/man3/gnutls_openpgp_crt_import.3.gz +man/man3/gnutls_openpgp_crt_init.3.gz +man/man3/gnutls_openpgp_crt_print.3.gz +man/man3/gnutls_openpgp_crt_set_preferred_key_id.3.gz +man/man3/gnutls_openpgp_crt_verify_ring.3.gz +man/man3/gnutls_openpgp_crt_verify_self.3.gz +man/man3/gnutls_openpgp_keyring_check_id.3.gz +man/man3/gnutls_openpgp_keyring_deinit.3.gz +man/man3/gnutls_openpgp_keyring_get_crt.3.gz +man/man3/gnutls_openpgp_keyring_get_crt_count.3.gz +man/man3/gnutls_openpgp_keyring_import.3.gz +man/man3/gnutls_openpgp_keyring_init.3.gz +man/man3/gnutls_openpgp_privkey_deinit.3.gz +man/man3/gnutls_openpgp_privkey_export.3.gz +man/man3/gnutls_openpgp_privkey_export_dsa_raw.3.gz +man/man3/gnutls_openpgp_privkey_export_rsa_raw.3.gz +man/man3/gnutls_openpgp_privkey_export_subkey_dsa_raw.3.gz +man/man3/gnutls_openpgp_privkey_export_subkey_rsa_raw.3.gz +man/man3/gnutls_openpgp_privkey_get_fingerprint.3.gz +man/man3/gnutls_openpgp_privkey_get_key_id.3.gz +man/man3/gnutls_openpgp_privkey_get_pk_algorithm.3.gz +man/man3/gnutls_openpgp_privkey_get_preferred_key_id.3.gz +man/man3/gnutls_openpgp_privkey_get_revoked_status.3.gz +man/man3/gnutls_openpgp_privkey_get_subkey_count.3.gz +man/man3/gnutls_openpgp_privkey_get_subkey_creation_time.3.gz +man/man3/gnutls_openpgp_privkey_get_subkey_expiration_time.3.gz +man/man3/gnutls_openpgp_privkey_get_subkey_fingerprint.3.gz +man/man3/gnutls_openpgp_privkey_get_subkey_id.3.gz +man/man3/gnutls_openpgp_privkey_get_subkey_idx.3.gz +man/man3/gnutls_openpgp_privkey_get_subkey_pk_algorithm.3.gz +man/man3/gnutls_openpgp_privkey_get_subkey_revoked_status.3.gz +man/man3/gnutls_openpgp_privkey_import.3.gz +man/man3/gnutls_openpgp_privkey_init.3.gz +man/man3/gnutls_openpgp_privkey_sec_param.3.gz +man/man3/gnutls_openpgp_privkey_set_preferred_key_id.3.gz +man/man3/gnutls_openpgp_privkey_sign_hash.3.gz +man/man3/gnutls_openpgp_send_cert.3.gz +man/man3/gnutls_openpgp_set_recv_key_function.3.gz +man/man3/gnutls_pem_base64_decode.3.gz +man/man3/gnutls_pem_base64_decode_alloc.3.gz +man/man3/gnutls_pem_base64_encode.3.gz +man/man3/gnutls_pem_base64_encode_alloc.3.gz +man/man3/gnutls_perror.3.gz +man/man3/gnutls_pk_algorithm_get_name.3.gz +man/man3/gnutls_pk_bits_to_sec_param.3.gz +man/man3/gnutls_pk_get_id.3.gz +man/man3/gnutls_pk_get_name.3.gz +man/man3/gnutls_pk_list.3.gz +man/man3/gnutls_pkcs11_add_provider.3.gz +man/man3/gnutls_pkcs11_copy_secret_key.3.gz +man/man3/gnutls_pkcs11_copy_x509_crt.3.gz +man/man3/gnutls_pkcs11_copy_x509_privkey.3.gz +man/man3/gnutls_pkcs11_deinit.3.gz +man/man3/gnutls_pkcs11_delete_url.3.gz +man/man3/gnutls_pkcs11_init.3.gz +man/man3/gnutls_pkcs11_obj_deinit.3.gz +man/man3/gnutls_pkcs11_obj_export.3.gz +man/man3/gnutls_pkcs11_obj_export_url.3.gz +man/man3/gnutls_pkcs11_obj_get_info.3.gz +man/man3/gnutls_pkcs11_obj_get_type.3.gz +man/man3/gnutls_pkcs11_obj_import_url.3.gz +man/man3/gnutls_pkcs11_obj_init.3.gz +man/man3/gnutls_pkcs11_obj_list_import_url.3.gz +man/man3/gnutls_pkcs11_privkey_deinit.3.gz +man/man3/gnutls_pkcs11_privkey_export_url.3.gz +man/man3/gnutls_pkcs11_privkey_get_info.3.gz +man/man3/gnutls_pkcs11_privkey_get_pk_algorithm.3.gz +man/man3/gnutls_pkcs11_privkey_import_url.3.gz +man/man3/gnutls_pkcs11_privkey_init.3.gz +man/man3/gnutls_pkcs11_set_pin_function.3.gz +man/man3/gnutls_pkcs11_set_token_function.3.gz +man/man3/gnutls_pkcs11_token_get_flags.3.gz +man/man3/gnutls_pkcs11_token_get_info.3.gz +man/man3/gnutls_pkcs11_token_get_mechanism.3.gz +man/man3/gnutls_pkcs11_token_get_url.3.gz +man/man3/gnutls_pkcs11_token_init.3.gz +man/man3/gnutls_pkcs11_token_set_pin.3.gz +man/man3/gnutls_pkcs12_bag_decrypt.3.gz +man/man3/gnutls_pkcs12_bag_deinit.3.gz +man/man3/gnutls_pkcs12_bag_encrypt.3.gz +man/man3/gnutls_pkcs12_bag_get_count.3.gz +man/man3/gnutls_pkcs12_bag_get_data.3.gz +man/man3/gnutls_pkcs12_bag_get_friendly_name.3.gz +man/man3/gnutls_pkcs12_bag_get_key_id.3.gz +man/man3/gnutls_pkcs12_bag_get_type.3.gz +man/man3/gnutls_pkcs12_bag_init.3.gz +man/man3/gnutls_pkcs12_bag_set_crl.3.gz +man/man3/gnutls_pkcs12_bag_set_crt.3.gz +man/man3/gnutls_pkcs12_bag_set_data.3.gz +man/man3/gnutls_pkcs12_bag_set_friendly_name.3.gz +man/man3/gnutls_pkcs12_bag_set_key_id.3.gz +man/man3/gnutls_pkcs12_deinit.3.gz +man/man3/gnutls_pkcs12_export.3.gz +man/man3/gnutls_pkcs12_generate_mac.3.gz +man/man3/gnutls_pkcs12_get_bag.3.gz +man/man3/gnutls_pkcs12_import.3.gz +man/man3/gnutls_pkcs12_init.3.gz +man/man3/gnutls_pkcs12_set_bag.3.gz +man/man3/gnutls_pkcs12_verify_mac.3.gz +man/man3/gnutls_pkcs7_deinit.3.gz +man/man3/gnutls_pkcs7_delete_crl.3.gz +man/man3/gnutls_pkcs7_delete_crt.3.gz +man/man3/gnutls_pkcs7_export.3.gz +man/man3/gnutls_pkcs7_get_crl_count.3.gz +man/man3/gnutls_pkcs7_get_crl_raw.3.gz +man/man3/gnutls_pkcs7_get_crt_count.3.gz +man/man3/gnutls_pkcs7_get_crt_raw.3.gz +man/man3/gnutls_pkcs7_import.3.gz +man/man3/gnutls_pkcs7_init.3.gz +man/man3/gnutls_pkcs7_set_crl.3.gz +man/man3/gnutls_pkcs7_set_crl_raw.3.gz +man/man3/gnutls_pkcs7_set_crt.3.gz +man/man3/gnutls_pkcs7_set_crt_raw.3.gz +man/man3/gnutls_prf.3.gz +man/man3/gnutls_prf_raw.3.gz +man/man3/gnutls_priority_deinit.3.gz +man/man3/gnutls_priority_init.3.gz +man/man3/gnutls_priority_set.3.gz +man/man3/gnutls_priority_set_direct.3.gz +man/man3/gnutls_privkey_decrypt_data.3.gz +man/man3/gnutls_privkey_deinit.3.gz +man/man3/gnutls_privkey_get_pk_algorithm.3.gz +man/man3/gnutls_privkey_get_type.3.gz +man/man3/gnutls_privkey_import_openpgp.3.gz +man/man3/gnutls_privkey_import_pkcs11.3.gz +man/man3/gnutls_privkey_import_x509.3.gz +man/man3/gnutls_privkey_init.3.gz +man/man3/gnutls_privkey_sign_data.3.gz +man/man3/gnutls_privkey_sign_hash.3.gz +man/man3/gnutls_protocol_get_id.3.gz +man/man3/gnutls_protocol_get_name.3.gz +man/man3/gnutls_protocol_get_version.3.gz +man/man3/gnutls_protocol_list.3.gz +man/man3/gnutls_protocol_set_priority.3.gz +man/man3/gnutls_psk_allocate_client_credentials.3.gz +man/man3/gnutls_psk_allocate_server_credentials.3.gz +man/man3/gnutls_psk_client_get_hint.3.gz +man/man3/gnutls_psk_free_client_credentials.3.gz +man/man3/gnutls_psk_free_server_credentials.3.gz +man/man3/gnutls_psk_netconf_derive_key.3.gz +man/man3/gnutls_psk_server_get_username.3.gz +man/man3/gnutls_psk_set_client_credentials.3.gz +man/man3/gnutls_psk_set_client_credentials_function.3.gz +man/man3/gnutls_psk_set_params_function.3.gz +man/man3/gnutls_psk_set_server_credentials_file.3.gz +man/man3/gnutls_psk_set_server_credentials_function.3.gz +man/man3/gnutls_psk_set_server_credentials_hint.3.gz +man/man3/gnutls_psk_set_server_dh_params.3.gz +man/man3/gnutls_psk_set_server_params_function.3.gz +man/man3/gnutls_pubkey_deinit.3.gz +man/man3/gnutls_pubkey_export.3.gz +man/man3/gnutls_pubkey_get_key_id.3.gz +man/man3/gnutls_pubkey_get_key_usage.3.gz +man/man3/gnutls_pubkey_get_pk_algorithm.3.gz +man/man3/gnutls_pubkey_get_pk_dsa_raw.3.gz +man/man3/gnutls_pubkey_get_pk_rsa_raw.3.gz +man/man3/gnutls_pubkey_get_preferred_hash_algorithm.3.gz +man/man3/gnutls_pubkey_get_verify_algorithm.3.gz +man/man3/gnutls_pubkey_import.3.gz +man/man3/gnutls_pubkey_import_dsa_raw.3.gz +man/man3/gnutls_pubkey_import_openpgp.3.gz +man/man3/gnutls_pubkey_import_pkcs11.3.gz +man/man3/gnutls_pubkey_import_pkcs11_url.3.gz +man/man3/gnutls_pubkey_import_privkey.3.gz +man/man3/gnutls_pubkey_import_rsa_raw.3.gz +man/man3/gnutls_pubkey_import_x509.3.gz +man/man3/gnutls_pubkey_init.3.gz +man/man3/gnutls_pubkey_set_key_usage.3.gz +man/man3/gnutls_pubkey_verify_data.3.gz +man/man3/gnutls_pubkey_verify_hash.3.gz +man/man3/gnutls_record_check_pending.3.gz +man/man3/gnutls_record_disable_padding.3.gz +man/man3/gnutls_record_get_direction.3.gz +man/man3/gnutls_record_get_max_size.3.gz +man/man3/gnutls_record_recv.3.gz +man/man3/gnutls_record_send.3.gz +man/man3/gnutls_record_set_max_size.3.gz +man/man3/gnutls_register_md5_handler.3.gz +man/man3/gnutls_rehandshake.3.gz +man/man3/gnutls_rnd.3.gz +man/man3/gnutls_rsa_export_get_modulus_bits.3.gz +man/man3/gnutls_rsa_export_get_pubkey.3.gz +man/man3/gnutls_rsa_params_cpy.3.gz +man/man3/gnutls_rsa_params_deinit.3.gz +man/man3/gnutls_rsa_params_export_pkcs1.3.gz +man/man3/gnutls_rsa_params_export_raw.3.gz +man/man3/gnutls_rsa_params_generate2.3.gz +man/man3/gnutls_rsa_params_import_pkcs1.3.gz +man/man3/gnutls_rsa_params_import_raw.3.gz +man/man3/gnutls_rsa_params_init.3.gz +man/man3/gnutls_safe_renegotiation_status.3.gz +man/man3/gnutls_sec_param_get_name.3.gz +man/man3/gnutls_sec_param_to_pk_bits.3.gz +man/man3/gnutls_server_name_get.3.gz +man/man3/gnutls_server_name_set.3.gz +man/man3/gnutls_session_channel_binding.3.gz +man/man3/gnutls_session_enable_compatibility_mode.3.gz +man/man3/gnutls_session_get_data.3.gz +man/man3/gnutls_session_get_data2.3.gz +man/man3/gnutls_session_get_id.3.gz +man/man3/gnutls_session_get_ptr.3.gz +man/man3/gnutls_session_is_resumed.3.gz +man/man3/gnutls_session_set_data.3.gz +man/man3/gnutls_session_set_ptr.3.gz +man/man3/gnutls_session_ticket_enable_client.3.gz +man/man3/gnutls_session_ticket_enable_server.3.gz +man/man3/gnutls_session_ticket_key_generate.3.gz +man/man3/gnutls_set_default_export_priority.3.gz +man/man3/gnutls_set_default_priority.3.gz +man/man3/gnutls_sign_algorithm_get_name.3.gz +man/man3/gnutls_sign_algorithm_get_requested.3.gz +man/man3/gnutls_sign_callback_get.3.gz +man/man3/gnutls_sign_callback_set.3.gz +man/man3/gnutls_sign_get_id.3.gz +man/man3/gnutls_sign_get_name.3.gz +man/man3/gnutls_sign_list.3.gz +man/man3/gnutls_srp_allocate_client_credentials.3.gz +man/man3/gnutls_srp_allocate_server_credentials.3.gz +man/man3/gnutls_srp_base64_decode.3.gz +man/man3/gnutls_srp_base64_decode_alloc.3.gz +man/man3/gnutls_srp_base64_encode.3.gz +man/man3/gnutls_srp_base64_encode_alloc.3.gz +man/man3/gnutls_srp_free_client_credentials.3.gz +man/man3/gnutls_srp_free_server_credentials.3.gz +man/man3/gnutls_srp_server_get_username.3.gz +man/man3/gnutls_srp_set_client_credentials.3.gz +man/man3/gnutls_srp_set_client_credentials_function.3.gz +man/man3/gnutls_srp_set_prime_bits.3.gz +man/man3/gnutls_srp_set_server_credentials_file.3.gz +man/man3/gnutls_srp_set_server_credentials_function.3.gz +man/man3/gnutls_srp_verifier.3.gz +man/man3/gnutls_strerror.3.gz +man/man3/gnutls_strerror_name.3.gz +man/man3/gnutls_supplemental_get_name.3.gz +man/man3/gnutls_transport_get_ptr.3.gz +man/man3/gnutls_transport_get_ptr2.3.gz +man/man3/gnutls_transport_set_errno.3.gz +man/man3/gnutls_transport_set_errno_function.3.gz +man/man3/gnutls_transport_set_global_errno.3.gz +man/man3/gnutls_transport_set_lowat.3.gz +man/man3/gnutls_transport_set_ptr.3.gz +man/man3/gnutls_transport_set_ptr2.3.gz +man/man3/gnutls_transport_set_pull_function.3.gz +man/man3/gnutls_transport_set_push_function.3.gz +man/man3/gnutls_transport_set_vec_push_function.3.gz +man/man3/gnutls_x509_crl_check_issuer.3.gz +man/man3/gnutls_x509_crl_deinit.3.gz +man/man3/gnutls_x509_crl_export.3.gz +man/man3/gnutls_x509_crl_get_authority_key_id.3.gz +man/man3/gnutls_x509_crl_get_crt_count.3.gz +man/man3/gnutls_x509_crl_get_crt_serial.3.gz +man/man3/gnutls_x509_crl_get_dn_oid.3.gz +man/man3/gnutls_x509_crl_get_extension_data.3.gz +man/man3/gnutls_x509_crl_get_extension_info.3.gz +man/man3/gnutls_x509_crl_get_extension_oid.3.gz +man/man3/gnutls_x509_crl_get_issuer_dn.3.gz +man/man3/gnutls_x509_crl_get_issuer_dn_by_oid.3.gz +man/man3/gnutls_x509_crl_get_next_update.3.gz +man/man3/gnutls_x509_crl_get_number.3.gz +man/man3/gnutls_x509_crl_get_raw_issuer_dn.3.gz +man/man3/gnutls_x509_crl_get_signature.3.gz +man/man3/gnutls_x509_crl_get_signature_algorithm.3.gz +man/man3/gnutls_x509_crl_get_this_update.3.gz +man/man3/gnutls_x509_crl_get_version.3.gz +man/man3/gnutls_x509_crl_import.3.gz +man/man3/gnutls_x509_crl_init.3.gz +man/man3/gnutls_x509_crl_print.3.gz +man/man3/gnutls_x509_crl_privkey_sign.3.gz +man/man3/gnutls_x509_crl_set_authority_key_id.3.gz +man/man3/gnutls_x509_crl_set_crt.3.gz +man/man3/gnutls_x509_crl_set_crt_serial.3.gz +man/man3/gnutls_x509_crl_set_next_update.3.gz +man/man3/gnutls_x509_crl_set_number.3.gz +man/man3/gnutls_x509_crl_set_this_update.3.gz +man/man3/gnutls_x509_crl_set_version.3.gz +man/man3/gnutls_x509_crl_sign.3.gz +man/man3/gnutls_x509_crl_sign2.3.gz +man/man3/gnutls_x509_crl_verify.3.gz +man/man3/gnutls_x509_crq_deinit.3.gz +man/man3/gnutls_x509_crq_export.3.gz +man/man3/gnutls_x509_crq_get_attribute_by_oid.3.gz +man/man3/gnutls_x509_crq_get_attribute_data.3.gz +man/man3/gnutls_x509_crq_get_attribute_info.3.gz +man/man3/gnutls_x509_crq_get_basic_constraints.3.gz +man/man3/gnutls_x509_crq_get_challenge_password.3.gz +man/man3/gnutls_x509_crq_get_dn.3.gz +man/man3/gnutls_x509_crq_get_dn_by_oid.3.gz +man/man3/gnutls_x509_crq_get_dn_oid.3.gz +man/man3/gnutls_x509_crq_get_extension_by_oid.3.gz +man/man3/gnutls_x509_crq_get_extension_data.3.gz +man/man3/gnutls_x509_crq_get_extension_info.3.gz +man/man3/gnutls_x509_crq_get_key_id.3.gz +man/man3/gnutls_x509_crq_get_key_purpose_oid.3.gz +man/man3/gnutls_x509_crq_get_key_rsa_raw.3.gz +man/man3/gnutls_x509_crq_get_key_usage.3.gz +man/man3/gnutls_x509_crq_get_pk_algorithm.3.gz +man/man3/gnutls_x509_crq_get_subject_alt_name.3.gz +man/man3/gnutls_x509_crq_get_subject_alt_othername_oid.3.gz +man/man3/gnutls_x509_crq_get_version.3.gz +man/man3/gnutls_x509_crq_import.3.gz +man/man3/gnutls_x509_crq_init.3.gz +man/man3/gnutls_x509_crq_print.3.gz +man/man3/gnutls_x509_crq_privkey_sign.3.gz +man/man3/gnutls_x509_crq_set_attribute_by_oid.3.gz +man/man3/gnutls_x509_crq_set_basic_constraints.3.gz +man/man3/gnutls_x509_crq_set_challenge_password.3.gz +man/man3/gnutls_x509_crq_set_dn_by_oid.3.gz +man/man3/gnutls_x509_crq_set_key.3.gz +man/man3/gnutls_x509_crq_set_key_purpose_oid.3.gz +man/man3/gnutls_x509_crq_set_key_rsa_raw.3.gz +man/man3/gnutls_x509_crq_set_key_usage.3.gz +man/man3/gnutls_x509_crq_set_pubkey.3.gz +man/man3/gnutls_x509_crq_set_subject_alt_name.3.gz +man/man3/gnutls_x509_crq_set_version.3.gz +man/man3/gnutls_x509_crq_sign.3.gz +man/man3/gnutls_x509_crq_sign2.3.gz +man/man3/gnutls_x509_crq_verify.3.gz +man/man3/gnutls_x509_crt_check_hostname.3.gz +man/man3/gnutls_x509_crt_check_issuer.3.gz +man/man3/gnutls_x509_crt_check_revocation.3.gz +man/man3/gnutls_x509_crt_cpy_crl_dist_points.3.gz +man/man3/gnutls_x509_crt_deinit.3.gz +man/man3/gnutls_x509_crt_export.3.gz +man/man3/gnutls_x509_crt_get_activation_time.3.gz +man/man3/gnutls_x509_crt_get_authority_key_id.3.gz +man/man3/gnutls_x509_crt_get_basic_constraints.3.gz +man/man3/gnutls_x509_crt_get_ca_status.3.gz +man/man3/gnutls_x509_crt_get_crl_dist_points.3.gz +man/man3/gnutls_x509_crt_get_dn.3.gz +man/man3/gnutls_x509_crt_get_dn_by_oid.3.gz +man/man3/gnutls_x509_crt_get_dn_oid.3.gz +man/man3/gnutls_x509_crt_get_expiration_time.3.gz +man/man3/gnutls_x509_crt_get_extension_by_oid.3.gz +man/man3/gnutls_x509_crt_get_extension_data.3.gz +man/man3/gnutls_x509_crt_get_extension_info.3.gz +man/man3/gnutls_x509_crt_get_extension_oid.3.gz +man/man3/gnutls_x509_crt_get_fingerprint.3.gz +man/man3/gnutls_x509_crt_get_issuer.3.gz +man/man3/gnutls_x509_crt_get_issuer_alt_name.3.gz +man/man3/gnutls_x509_crt_get_issuer_alt_name2.3.gz +man/man3/gnutls_x509_crt_get_issuer_alt_othername_oid.3.gz +man/man3/gnutls_x509_crt_get_issuer_dn.3.gz +man/man3/gnutls_x509_crt_get_issuer_dn_by_oid.3.gz +man/man3/gnutls_x509_crt_get_issuer_dn_oid.3.gz +man/man3/gnutls_x509_crt_get_issuer_unique_id.3.gz +man/man3/gnutls_x509_crt_get_key_id.3.gz +man/man3/gnutls_x509_crt_get_key_purpose_oid.3.gz +man/man3/gnutls_x509_crt_get_key_usage.3.gz +man/man3/gnutls_x509_crt_get_pk_algorithm.3.gz +man/man3/gnutls_x509_crt_get_pk_dsa_raw.3.gz +man/man3/gnutls_x509_crt_get_pk_rsa_raw.3.gz +man/man3/gnutls_x509_crt_get_preferred_hash_algorithm.3.gz +man/man3/gnutls_x509_crt_get_proxy.3.gz +man/man3/gnutls_x509_crt_get_raw_dn.3.gz +man/man3/gnutls_x509_crt_get_raw_issuer_dn.3.gz +man/man3/gnutls_x509_crt_get_serial.3.gz +man/man3/gnutls_x509_crt_get_signature.3.gz +man/man3/gnutls_x509_crt_get_signature_algorithm.3.gz +man/man3/gnutls_x509_crt_get_subject.3.gz +man/man3/gnutls_x509_crt_get_subject_alt_name.3.gz +man/man3/gnutls_x509_crt_get_subject_alt_name2.3.gz +man/man3/gnutls_x509_crt_get_subject_alt_othername_oid.3.gz +man/man3/gnutls_x509_crt_get_subject_key_id.3.gz +man/man3/gnutls_x509_crt_get_subject_unique_id.3.gz +man/man3/gnutls_x509_crt_get_verify_algorithm.3.gz +man/man3/gnutls_x509_crt_get_version.3.gz +man/man3/gnutls_x509_crt_import.3.gz +man/man3/gnutls_x509_crt_import_pkcs11.3.gz +man/man3/gnutls_x509_crt_import_pkcs11_url.3.gz +man/man3/gnutls_x509_crt_init.3.gz +man/man3/gnutls_x509_crt_list_import.3.gz +man/man3/gnutls_x509_crt_list_import_pkcs11.3.gz +man/man3/gnutls_x509_crt_list_verify.3.gz +man/man3/gnutls_x509_crt_print.3.gz +man/man3/gnutls_x509_crt_privkey_sign.3.gz +man/man3/gnutls_x509_crt_set_activation_time.3.gz +man/man3/gnutls_x509_crt_set_authority_key_id.3.gz +man/man3/gnutls_x509_crt_set_basic_constraints.3.gz +man/man3/gnutls_x509_crt_set_ca_status.3.gz +man/man3/gnutls_x509_crt_set_crl_dist_points.3.gz +man/man3/gnutls_x509_crt_set_crl_dist_points2.3.gz +man/man3/gnutls_x509_crt_set_crq.3.gz +man/man3/gnutls_x509_crt_set_crq_extensions.3.gz +man/man3/gnutls_x509_crt_set_dn_by_oid.3.gz +man/man3/gnutls_x509_crt_set_expiration_time.3.gz +man/man3/gnutls_x509_crt_set_extension_by_oid.3.gz +man/man3/gnutls_x509_crt_set_issuer_dn_by_oid.3.gz +man/man3/gnutls_x509_crt_set_key.3.gz +man/man3/gnutls_x509_crt_set_key_purpose_oid.3.gz +man/man3/gnutls_x509_crt_set_key_usage.3.gz +man/man3/gnutls_x509_crt_set_proxy.3.gz +man/man3/gnutls_x509_crt_set_proxy_dn.3.gz +man/man3/gnutls_x509_crt_set_pubkey.3.gz +man/man3/gnutls_x509_crt_set_serial.3.gz +man/man3/gnutls_x509_crt_set_subject_alt_name.3.gz +man/man3/gnutls_x509_crt_set_subject_alternative_name.3.gz +man/man3/gnutls_x509_crt_set_subject_key_id.3.gz +man/man3/gnutls_x509_crt_set_version.3.gz +man/man3/gnutls_x509_crt_sign.3.gz +man/man3/gnutls_x509_crt_sign2.3.gz +man/man3/gnutls_x509_crt_verify.3.gz +man/man3/gnutls_x509_crt_verify_data.3.gz +man/man3/gnutls_x509_crt_verify_hash.3.gz +man/man3/gnutls_x509_dn_deinit.3.gz +man/man3/gnutls_x509_dn_export.3.gz +man/man3/gnutls_x509_dn_get_rdn_ava.3.gz +man/man3/gnutls_x509_dn_import.3.gz +man/man3/gnutls_x509_dn_init.3.gz +man/man3/gnutls_x509_dn_oid_known.3.gz +man/man3/gnutls_x509_privkey_cpy.3.gz +man/man3/gnutls_x509_privkey_deinit.3.gz +man/man3/gnutls_x509_privkey_export.3.gz +man/man3/gnutls_x509_privkey_export_dsa_raw.3.gz +man/man3/gnutls_x509_privkey_export_pkcs8.3.gz +man/man3/gnutls_x509_privkey_export_rsa_raw.3.gz +man/man3/gnutls_x509_privkey_export_rsa_raw2.3.gz +man/man3/gnutls_x509_privkey_fix.3.gz +man/man3/gnutls_x509_privkey_generate.3.gz +man/man3/gnutls_x509_privkey_get_key_id.3.gz +man/man3/gnutls_x509_privkey_get_pk_algorithm.3.gz +man/man3/gnutls_x509_privkey_import.3.gz +man/man3/gnutls_x509_privkey_import_dsa_raw.3.gz +man/man3/gnutls_x509_privkey_import_pkcs8.3.gz +man/man3/gnutls_x509_privkey_import_rsa_raw.3.gz +man/man3/gnutls_x509_privkey_import_rsa_raw2.3.gz +man/man3/gnutls_x509_privkey_init.3.gz +man/man3/gnutls_x509_privkey_sec_param.3.gz +man/man3/gnutls_x509_privkey_sign_data.3.gz +man/man3/gnutls_x509_privkey_sign_hash.3.gz +man/man3/gnutls_x509_privkey_verify_data.3.gz +man/man3/gnutls_x509_rdn_get.3.gz +man/man3/gnutls_x509_rdn_get_by_oid.3.gz +man/man3/gnutls_x509_rdn_get_oid.3.gz %%NLS%%share/locale/cs/LC_MESSAGES/libgnutls.mo %%NLS%%share/locale/de/LC_MESSAGES/libgnutls.mo %%NLS%%share/locale/en@boldquot/LC_MESSAGES/libgnutls.mo @@ -61,3 +717,7 @@ %%NLS%%share/locale/vi/LC_MESSAGES/libgnutls.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/libgnutls.mo @dirrm include/gnutls +@dirrmtry share/locale/en@quot/LC_MESSAGES +@dirrmtry share/locale/en@quot +@dirrmtry share/locale/en@boldquot/LC_MESSAGES +@dirrmtry share/locale/en@boldquot --- gnutls-2.12.23_2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 05:10:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B201A25E; Thu, 2 Jan 2014 05:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 86E8A1500; Thu, 2 Jan 2014 05:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s025A9Ke036214; Thu, 2 Jan 2014 05:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s025A9fR036213; Thu, 2 Jan 2014 05:10:09 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 05:10:09 GMT Message-Id: <201401020510.s025A9fR036213@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185408: [MAINTAINER] sysutils/py-glances: [SUMMARIZE CHANGES] X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 05:10:09 -0000 Synopsis: [MAINTAINER] sysutils/py-glances: [SUMMARIZE CHANGES] Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 05:10:09 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185408 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 05:10:17 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B08E828F; Thu, 2 Jan 2014 05:10:17 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 859C71502; Thu, 2 Jan 2014 05:10:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s025AHqK036297; Thu, 2 Jan 2014 05:10:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s025AHXv036296; Thu, 2 Jan 2014 05:10:17 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 05:10:17 GMT Message-Id: <201401020510.s025AHXv036296@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, novel@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185409: [PATCH] security/gnutls: fix StageDir X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 05:10:17 -0000 Synopsis: [PATCH] security/gnutls: fix StageDir Responsible-Changed-From-To: freebsd-ports-bugs->novel Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 05:10:17 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185409 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 05:49:13 2014 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D32BD8F3; Thu, 2 Jan 2014 05:49:13 +0000 (UTC) Received: from mail-ig0-x22a.google.com (mail-ig0-x22a.google.com [IPv6:2607:f8b0:4001:c05::22a]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 95FCB1721; Thu, 2 Jan 2014 05:49:13 +0000 (UTC) Received: by mail-ig0-f170.google.com with SMTP id k19so40668971igc.1 for ; Wed, 01 Jan 2014 21:49:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=yoDdQARhvSCKjcRCgkhAdvQ6CT42UJyTiTsIuqKv604=; b=WBzgeInPhN+RQfsn7t8in7spwXXCYGV76Xqkr5Cqlgj2c/VSNHUyXAeJXLbHMhtg4H 7+TFqJRNsbea9PMIjI1gVdWrHj9TRc7bHiFYbvtrRE9o1vbsw0LMYYXmRUrgN0dZd9zS DWLls74FLDvJXLadYs6fN87TWa8m7dMaqyFrXROZhOFkztTmw5cq9GImT+icwfjryksZ PyRm3jexEjm0YrtgaHhID7sXvpkbbkzrzt8apMlrT68++xEvlypG2hckRn+lZYz0Uv34 zh3Lh2dxK5i6iGUtEyuhvbtOKeSwQOQi3aPsh5HUK9jlCZp3R2OMgGyqnxSNJB9BJAqG M2bw== MIME-Version: 1.0 X-Received: by 10.50.141.133 with SMTP id ro5mr68473088igb.35.1388641753012; Wed, 01 Jan 2014 21:49:13 -0800 (PST) Received: by 10.64.244.7 with HTTP; Wed, 1 Jan 2014 21:49:12 -0800 (PST) In-Reply-To: References: <20131228213858.4A775115A1@mail.thistledew.org> <201312282140.rBSLe0ZR035499@freefall.freebsd.org> Date: Wed, 1 Jan 2014 21:49:12 -0800 Message-ID: Subject: Re: ports/185252: pango can't find fonts From: paul beard To: freebsd-gnats-submit , freebsd-ports-bugs@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 05:49:14 -0000 Not sure if this is a bug or just incorrect usage. non-root users can invoke pango and get result. UID 0 cannot. root: 41146: access("/usr/local/lib/libgmodule-2.0.so.0",0) = 0 (0x0) 41146: open("/usr/local/lib/libgmodule-2.0.so.0",O_RDONLY,027757761374) = 3 (0x3) 41146: open("../modules/pango.modules",O_RDONLY,0666) ERR#2 'No such file or directory' non-root: 41017: access("/usr/local/lib/libgmodule-2.0.so.0",0) = 0 (0x0) 41017: open("/usr/local/lib/libgmodule-2.0.so.0",O_RDONLY,027757761134) = 3 (0x3) 41017: open("/usr/local/lib/pango/1.8.0/modules.cache",O_RDONLY,0666) = 3 (0x3) 41017: open("/usr/local/etc/pango/pango.modules",O_RDONLY,0666) = 3 (0x3) 41017: stat("/usr/local/lib/pango/1.8.0/modules/pango-basic-fc.so",{ mode=-rwxr-xr-x ,inode=56008269,size=11499,blksize=16384 }) = 0 (0x0) 41017: open("/usr/local/lib/pango/1.8.0/modules/pango-basic-fc.so",O_RDONLY,06361253337) = 3 (0x3) On Sat, Dec 28, 2013 at 5:48 PM, paul beard wrote: > If the font called by rrdtool (how I'm using this) is DejaVu [Serif|Sans] > the result is an empty png file but no complaining about the missing > pango.modules file. > > 84476: access("/usr/local/lib/libgmodule-2.0.so.0",0) = 0 (0x0) > > 84476: open("/usr/local/lib/libgmodule-2.0.so.0",O_RDONLY,027757761234) = > 3 (0x3) > > -rw-r--r-- 1 root wheel 0 Dec 28 17:42 /usr/local/www/test.png > > > Change it to Times, Courier, whatever and get these results: > > > 84842: access("/usr/local/lib/libgmodule-2.0.so.0",0) = 0 (0x0) > > 84842: open("/usr/local/lib/libgmodule-2.0.so.0",O_RDONLY,027757761274) = > 3 (0x3) > > 84842: open("../modules/pango.modules",O_RDONLY,0666) ERR#2 'No such file > or directory' > > -rw-r--r-- 1 root wheel 13110 Dec 28 17:46 /usr/local/www/test.png > > > > > On Sat, Dec 28, 2013 at 1:40 PM, wrote: > >> Thank you very much for your problem report. >> It has the internal identification `ports/185252'. >> The individual assigned to look at your >> report is: freebsd-ports-bugs. >> >> You can access the state of your problem report at any time >> via this link: >> >> http://www.freebsd.org/cgi/query-pr.cgi?pr=185252 >> >> >Category: ports >> >Responsible: freebsd-ports-bugs >> >Synopsis: pango can't find fonts >> >Arrival-Date: Sat Dec 28 21:40:00 UTC 2013 >> > > > > -- > Paul Beard / www.paulbeard.org/ > -- Paul Beard / www.paulbeard.org/ From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 06:30:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AB0251F1 for ; Thu, 2 Jan 2014 06:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8B149197C for ; Thu, 2 Jan 2014 06:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s026U04m056863 for ; Thu, 2 Jan 2014 06:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s026U0rr056862; Thu, 2 Jan 2014 06:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 06:30:00 GMT Resent-Message-Id: <201401020630.s026U0rr056862@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, Gasol Wu Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7ADD91ED for ; Thu, 2 Jan 2014 06:29:54 +0000 (UTC) Received: from kkbox.com (ip-203-69-67-167.kkcube.com [203.69.67.167]) by mx1.freebsd.org (Postfix) with ESMTP id 4B2741978 for ; Thu, 2 Jan 2014 06:29:53 +0000 (UTC) Received: by goingmarry.kkbox.com (Postfix, from userid 1033) id 19E7C7501EF; Thu, 2 Jan 2014 14:29:51 +0800 (CST) Message-Id: <20140102062951.19E7C7501EF@goingmarry.kkbox.com> Date: Thu, 2 Jan 2014 14:29:51 +0800 (CST) From: Gasol Wu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185410: [NEW PORT] security/pecl-crypto: Objective wrapper for OpenSSL Crypto Library X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 06:30:00 -0000 >Number: 185410 >Category: ports >Synopsis: [NEW PORT] security/pecl-crypto: Objective wrapper for OpenSSL Crypto 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: Thu Jan 02 06:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Gasol Wu >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD goingmarry 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC >Description: This package provides an objective wrapper for OpenSSL Crypto Library WWW: http://pecl.php.net/package/crypto Generated with FreeBSD Port Tools 0.99_11 (mode: new) >How-To-Repeat: >Fix: --- .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: # # pecl-crypto # pecl-crypto/Makefile # pecl-crypto/pkg-descr # pecl-crypto/files # pecl-crypto/files/patch-config.m4 # pecl-crypto/distinfo # echo c - pecl-crypto mkdir -p pecl-crypto > /dev/null 2>&1 echo x - pecl-crypto/Makefile sed 's/^X//' >pecl-crypto/Makefile << '44a029b00fe6d43fdd4739ddf05b5866' X# Created by: Gasol Wu X# $FreeBSD$ X XPORTNAME= crypto XPORTVERSION= 0.1.0 XCATEGORIES= security XMASTER_SITES= http://pecl.php.net/get/ XPKGNAMEPREFIX= pecl- XEXTRACT_SUFX= .tgz XDIST_SUBDIR= PECL X XMAINTAINER= gasol.wu@gmail.com XCOMMENT= Objective wrapper for OpenSSL Crypto Library X XLICENSE= PHP301 X XBUILD_DEPENDS= openssl>=0:${PORTSDIR}/security/openssl X XCONFIGURE_ARGS= --with-crypto XUSE_PHP= yes XUSE_PHPEXT= yes XUSE_PHPIZE= yes X X.include 44a029b00fe6d43fdd4739ddf05b5866 echo x - pecl-crypto/pkg-descr sed 's/^X//' >pecl-crypto/pkg-descr << '4253ee15478c58a3b9c6485045cade4a' XThis package provides an objective wrapper for OpenSSL Crypto Library X XWWW: http://pecl.php.net/package/crypto 4253ee15478c58a3b9c6485045cade4a echo c - pecl-crypto/files mkdir -p pecl-crypto/files > /dev/null 2>&1 echo x - pecl-crypto/files/patch-config.m4 sed 's/^X//' >pecl-crypto/files/patch-config.m4 << '94456d8c3fadfbd5fedbc0b7aa931f02' X--- ./config.m4.orig 2014-01-02 12:57:12.000000000 +0800 X+++ ./config.m4 2014-01-02 12:57:18.000000000 +0800 X@@ -15,8 +15,10 @@ X if test -x "$PKG_CONFIG" && $PKG_CONFIG --exists openssl; then X OPENSSL_INCDIR=`$PKG_CONFIG --variable=includedir openssl` X PHP_ADD_INCLUDE($OPENSSL_INCDIR) X+ CRYPTO_LIBS=`$PKG_CONFIG --libs openssl` X+ PHP_EVAL_LIBLINE($CRYPTO_LIBS, CRYPTO_SHARED_LIBADD) X fi X- X+ X AC_DEFINE(HAVE_CRYPTOLIB,1,[Enable objective OpenSSL Crypto wrapper]) X PHP_SUBST(CRYPTO_SHARED_LIBADD) X PHP_NEW_EXTENSION(crypto, crypto.c crypto_alg.c crypto_base64.c crypto_rand.c, $ext_shared) 94456d8c3fadfbd5fedbc0b7aa931f02 echo x - pecl-crypto/distinfo sed 's/^X//' >pecl-crypto/distinfo << '3630ccf4245974ddb5a5c2ab744bf131' XSHA256 (PECL/crypto-0.1.0.tgz) = 7e1d459c7e1c7d6ee4218c0ad1f729bbba57a96e10b7bdcc55c21eaae8f9af1a XSIZE (PECL/crypto-0.1.0.tgz) = 30614 3630ccf4245974ddb5a5c2ab744bf131 exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 06:30:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF794220; Thu, 2 Jan 2014 06:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B3ED4197E; Thu, 2 Jan 2014 06:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s026U8wb057025; Thu, 2 Jan 2014 06:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s026U8Ma057024; Thu, 2 Jan 2014 06:30:08 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 06:30:08 GMT Message-Id: <201401020630.s026U8Ma057024@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185410: [NEW PORT] security/pecl-crypto: Objective wrapper for OpenSSL Crypto Library X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 06:30:08 -0000 Synopsis: [NEW PORT] security/pecl-crypto: Objective wrapper for OpenSSL Crypto Library Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 06:30:08 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185410 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 07:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99273F64 for ; Thu, 2 Jan 2014 07:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 72E2F1E87 for ; Thu, 2 Jan 2014 07:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s027e0Ff081878 for ; Thu, 2 Jan 2014 07:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s027e0iT081877; Thu, 2 Jan 2014 07:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 07:40:00 GMT Resent-Message-Id: <201401020740.s027e0iT081877@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 Hixson Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AA1B2F52 for ; Thu, 2 Jan 2014 07:39:09 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8A03C1E7D for ; Thu, 2 Jan 2014 07:39:09 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s027d9YJ013662 for ; Thu, 2 Jan 2014 07:39:09 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s027d9ks013655; Thu, 2 Jan 2014 07:39:09 GMT (envelope-from nobody) Message-Id: <201401020739.s027d9ks013655@oldred.freebsd.org> Date: Thu, 2 Jan 2014 07:39:09 GMT From: John Hixson To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185411: update pithos from 0.3.17 to 0.3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 07:40:00 -0000 >Number: 185411 >Category: ports >Synopsis: update pithos from 0.3.17 to 0.3.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: Thu Jan 02 07:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: John Hixson >Release: 11.0-CURRENT >Organization: iXsystems, Inc. >Environment: FreeBSD thinkbsd 11.0-CURRENT FreeBSD 11.0-CURRENT #17 r259022M: Fri Dec 6 12:03:57 PST 2013 john@thinkbsd:/usr/obj/usr/src/sys/THINKBSD amd64 >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN pithos.orig/Makefile pithos/Makefile --- pithos.orig/Makefile 2013-09-20 07:36:35.000000000 -0700 +++ pithos/Makefile 2014-01-01 23:22:40.544673960 -0800 @@ -2,10 +2,14 @@ # $FreeBSD: audio/pithos/Makefile 327706 2013-09-20 14:36:35Z bapt $ PORTNAME= pithos -PORTVERSION= 0.3.17 +PORTVERSION= 0.3.18 CATEGORIES= audio -MASTER_SITES= DEBIAN -DISTNAME= ${PORTNAME}_${PORTVERSION}.orig +DISTNAME= ${PORTVERSION} + +USE_GITHUB= yes +GH_ACCOUNT= pithos +GH_PROJECT= pithos +GH_COMMIT= 0770210 MAINTAINER= john@pcbsd.org COMMENT= Pandora client for the GNOME desktop @@ -17,23 +21,18 @@ ${LOCALBASE}/libdata/pkgconfig/notify-python.pc:${PORTSDIR}/devel/py-notify \ ${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus -WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} - USE_PYTHON= 2.6+ NO_STAGE= yes USE_GNOME= pygtk2 -USE_PYDISTUTILS= yes +USE_PYDISTUTILS= easy_install USE_GSTREAMER= good bad python +PYDISTUTILS_AUTOPLIST= yes PYDISTUTILS_PKGNAME= ${PORTNAME} - -post-patch: - ${REINPLACE_CMD} -e "s,../data/,${DATADIR}/," ${WRKSRC}/pithos/pithosconfig.py - ${REINPLACE_CMD} -e "s,Icon=pithos,${DATADIR}/media/icon.png," ${WRKSRC}/pithos.desktop +PYEASYINSTALL_EGG= pithos-0.3-py2.7.egg post-install: - @${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \ - ${WRKSRC}/bin/${PORTNAME} ${PREFIX}/bin/${PORTNAME} @${MKDIR} ${DATADIR} @(cd ${WRKSRC}/data/ && ${COPYTREE_SHARE} \* ${DATADIR}) + @(cd ${WRKSRC}/pithos/data/ && ${COPYTREE_SHARE} \* ${DATADIR}) .include diff -urN pithos.orig/distinfo pithos/distinfo --- pithos.orig/distinfo 2012-07-14 05:56:14.000000000 -0700 +++ pithos/distinfo 2013-12-13 11:51:47.147912386 -0800 @@ -1,2 +1,2 @@ -SHA256 (pithos_0.3.17.orig.tar.gz) = ef6ee1545fa60b065b0043d79fe89fd1c1b70fe4ae944055d2c7b9d890cf1bde -SIZE (pithos_0.3.17.orig.tar.gz) = 141332 +SHA256 (0.3.18.tar.gz) = e676d455341c03cf271bffc698771713d42f86655f2171a493ffb1a74b51fdac +SIZE (0.3.18.tar.gz) = 115198 diff -urN pithos.orig/files/patch-setup.py pithos/files/patch-setup.py --- pithos.orig/files/patch-setup.py 2012-07-14 05:56:14.000000000 -0700 +++ pithos/files/patch-setup.py 2014-01-01 23:26:29.815406879 -0800 @@ -1,85 +1,26 @@ ---- setup.py 2012-05-03 13:47:11.000000000 -0700 -+++ setup.py 2012-06-01 11:40:31.000000000 -0700 -@@ -17,74 +17,19 @@ - - ###################### DO NOT TOUCH THIS (HEAD TO THE SECOND PART) ###################### - --try: -- import DistUtilsExtra.auto --except ImportError: -- import sys -- print >> sys.stderr, 'To build pithos you need https://launchpad.net/python-distutils-extra' -- sys.exit(1) -- --assert DistUtilsExtra.auto.__version__ >= '2.10', 'needs DistUtilsExtra.auto >= 2.10' -+import sys - import os -+from distutils.core import setup - -- --def update_data_path(prefix, oldvalue=None): -- -- try: -- fin = file('pithos/pithosconfig.py', 'r') -- fout = file(fin.name + '.new', 'w') -- -- for line in fin: -- fields = line.split(' = ') # Separate variable from value -- if fields[0] == '__pithos_data_directory__': -- # update to prefix, store oldvalue -- if not oldvalue: -- oldvalue = fields[1] -- line = "%s = '%s'\n" % (fields[0], prefix) -- else: # restore oldvalue -- line = "%s = %s" % (fields[0], oldvalue) -- fout.write(line) -- -- fout.flush() -- fout.close() -- fin.close() -- os.rename(fout.name, fin.name) -- except (OSError, IOError), e: -- print ("ERROR: Can't find pithos/pithosconfig.py") -- sys.exit(1) -- return oldvalue -- -- --class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto): -- def run(self): -- if self.root or self.home: -- print "WARNING: You don't use a standard --prefix installation, take care that you eventually " \ -- "need to update quickly/quicklyconfig.py file to adjust __quickly_data_directory__. You can " \ -- "ignore this warning if you are packaging and uses --prefix." -- previous_value = update_data_path(self.prefix + '/share/pithos/') -- DistUtilsExtra.auto.install_auto.run(self) -- update_data_path(self.prefix, previous_value) -- --from distutils.cmd import Command --class OverrideI18NCommand(Command): -- def initialize_options(self): pass -- def finalize_options(self): pass -- def run(self): -- self.distribution.data_files.append(('share/applications', ['pithos.desktop'])) -- --from DistUtilsExtra.command.build_extra import build_extra --from DistUtilsExtra.command.build_icons import build_icons -- --DistUtilsExtra.auto.setup( -+required = [] -+setup( - name='pithos', -- version='0.3', -- ext_modules=[], -+ version='0.3.17', - license='GPL-3', - author='Kevin Mehall', - author_email='km@kevinmehall.net', - description='Pandora.com client for the GNOME desktop', -- #long_description='Here a longer description', - url='https://launchpad.net/pithos', -- cmdclass={'install': InstallAndUpdateDataDirectory, 'build_icons':build_icons, 'build':build_extra, 'build_i18n':OverrideI18NCommand} -- ) -- -+ packages=['pithos', 'pithos.pandora', 'pithos.plugins'], -+ package_dir = {'pithos':'pithos'} -+) +--- setup.py 2013-12-05 06:59:17.000000000 -0800 ++++ setup.py 2014-01-01 23:25:57.944668958 -0800 +@@ -50,12 +50,13 @@ + 'License :: OSI Approved :: GPL License', + 'Programming Language :: Python' + ], ++ + data_files=[ +- ('/usr/share/icons/hicolor/scalable/apps', [ ++ ('share/pithos/icons/hicolor/scalable/apps', [ + 'data/icons/scalable/apps/pithos-mono.svg', + 'data/icons/scalable/apps/pithos.svg' + ]), +- ('/usr/share/applications', ['data/pithos.desktop']) ++ ('share/pithos/applications', ['data/pithos.desktop']) + ], + package_data={ + 'pithos': [ +@@ -70,6 +71,7 @@ + ], + packages=find_packages(), + include_package_data=True, ++ zip_safe=False, + entry_points={ + 'gui_scripts': ['pithos = pithos.pithos:main'] + } diff -urN pithos.orig/pkg-plist pithos/pkg-plist --- pithos.orig/pkg-plist 2012-07-14 05:56:14.000000000 -0700 +++ pithos/pkg-plist 2014-01-01 23:31:15.545174511 -0800 @@ -1,94 +1,25 @@ -bin/pithos -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.py -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.py -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.py -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.py -%%PYTHON_SITELIBDIR%%/pithos/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.py -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.py -%%PYTHON_SITELIBDIR%%/pithos/plugin.py -%%PYTHON_SITELIBDIR%%/pithos/pylast.py -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.pyo -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.py -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.pyc -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugin.pyc -%%PYTHON_SITELIBDIR%%/pithos/pylast.pyc -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.pyc -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.pyc -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.pyo -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugin.pyo -%%PYTHON_SITELIBDIR%%/pithos/pylast.pyo -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.pyo -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.pyo -%%DATADIR%%/icons/scalable/apps/pithos-mono.svg -%%DATADIR%%/icons/scalable/apps/pithos.svg -%%DATADIR%%/media/album_default.png -%%DATADIR%%/media/album_default.svg -%%DATADIR%%/media/icon.png %%DATADIR%%/media/pithos-mono.png -%%DATADIR%%/media/rate_bg.png +%%DATADIR%%/media/icon.png %%DATADIR%%/media/rate_bg.svg -%%DATADIR%%/ui/AboutPithosDialog.ui +%%DATADIR%%/media/album_default.png +%%DATADIR%%/media/rate_bg.png +%%DATADIR%%/media/album_default.svg +%%DATADIR%%/icons/scalable/apps/pithos-mono.svg +%%DATADIR%%/icons/scalable/apps/pithos.svg +%%DATADIR%%/pithos.desktop %%DATADIR%%/ui/PithosWindow.ui +%%DATADIR%%/ui/preferences_pithos_dialog.xml +%%DATADIR%%/ui/pithos_window.xml %%DATADIR%%/ui/PreferencesPithosDialog.ui +%%DATADIR%%/ui/stations_dialog.xml +%%DATADIR%%/ui/search_dialog.xml +%%DATADIR%%/ui/AboutPithosDialog.ui +%%DATADIR%%/ui/about_pithos_dialog.xml %%DATADIR%%/ui/SearchDialog.ui %%DATADIR%%/ui/StationsDialog.ui -%%DATADIR%%/ui/about_pithos_dialog.xml -%%DATADIR%%/ui/pithos_window.xml -%%DATADIR%%/ui/preferences_pithos_dialog.xml -%%DATADIR%%/ui/search_dialog.xml -%%DATADIR%%/ui/stations_dialog.xml -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/media @dirrm %%DATADIR%%/icons/scalable/apps @dirrm %%DATADIR%%/icons/scalable @dirrm %%DATADIR%%/icons +@dirrm %%DATADIR%%/media +@dirrm %%DATADIR%%/ui @dirrm %%DATADIR%% -@dirrm %%PYTHON_SITELIBDIR%%/pithos/plugins -@dirrm %%PYTHON_SITELIBDIR%%/pithos/pandora -@dirrm %%PYTHON_SITELIBDIR%%/pithos >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 08:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F9A011C for ; Thu, 2 Jan 2014 08:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7302C1230 for ; Thu, 2 Jan 2014 08:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s028e1GM099560 for ; Thu, 2 Jan 2014 08:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s028e1ND099559; Thu, 2 Jan 2014 08:40:01 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 08:40:01 GMT Message-Id: <201401020840.s028e1ND099559@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Pakhom Golynga Subject: Re: ports/185169: net-mgmt/zabbix22-server: incorrect php version in IGNORE_WITH_PHP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Pakhom Golynga List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 08:40:01 -0000 The following reply was made to PR ports/185169; it has been noted by GNATS. From: Pakhom Golynga To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/185169: net-mgmt/zabbix22-server: incorrect php version in IGNORE_WITH_PHP Date: Thu, 02 Jan 2014 12:33:07 +0400 Hello! Yes, according to zabbix documentation required php 5.3.0 or later. The options 'IGNORE_WITH_PHP= 5 52' means that doesn't work with PHP version 5.0 and 5.2 bsd.php.mk:# IGNORE_WITH_PHP=N - The port doesn't work with PHP version N. With PHP version > 5.3 port does work: # pkg_info |grep php php55-5.5.7 PHP Scripting Language php55-bcmath-5.5.7 The bcmath shared extension for php php55-ctype-5.5.7 The ctype shared extension for php php55-dom-5.5.7 The dom shared extension for php php55-gd-5.5.7 The gd shared extension for php php55-gettext-5.5.7 The gettext shared extension for php php55-ldap-5.5.7 The ldap shared extension for php php55-mbstring-5.5.7 The mbstring shared extension for php php55-mysql-5.5.7 The mysql shared extension for php php55-mysqli-5.5.7 The mysqli shared extension for php php55-session-5.5.7 The session shared extension for php php55-simplexml-5.5.7 The simplexml shared extension for php php55-snmp-5.5.7 The snmp shared extension for php php55-sockets-5.5.7 The sockets shared extension for php php55-xml-5.5.7 The xml shared extension for php php55-xmlreader-5.5.7 The xmlreader shared extension for php php55-xmlwriter-5.5.7 The xmlwriter shared extension for php cd /usr/ports/net-mgmt/zabbix22-frontend # make ===> License GPLv2 accepted by the user ===> Found saved configuration for zabbix22-frontend-2.2.1 => zabbix-2.2.1.tar.gz doesn't seem to exist in /var/fs/dist/. => Attempting to fetch http://heanet.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/2.2.1/zabbix-2.2.1.tar.gz zabbix-2.2.1.tar.gz 100% of 13 MB 3702 kBps 00m04s ===> Fetching all distfiles required by zabbix22-frontend-2.2.1 for building ===> Extracting for zabbix22-frontend-2.2.1 => SHA256 Checksum OK for zabbix-2.2.1.tar.gz. ===> Patching for zabbix22-frontend-2.2.1 ===> Configuring for zabbix22-frontend-2.2.1 # make install # pkg_info |grep zab zabbix22-frontend-2.2.1 Enterprise-class open source distributed monitoring (fronte 30.12.2013 07:15, Edwin Groothuis пишет: > Maintainer of net-mgmt/zabbix22-server, > > Please note that PR ports/185169 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/185169 > From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 09:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2875853 for ; Thu, 2 Jan 2014 09:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9E20013D2 for ; Thu, 2 Jan 2014 09:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s029A0Ej005746 for ; Thu, 2 Jan 2014 09:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s029A0Vd005745; Thu, 2 Jan 2014 09:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 09:10:00 GMT Resent-Message-Id: <201401020910.s029A0Vd005745@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, Pakhom Golynga Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C1DF7678 for ; Thu, 2 Jan 2014 09:03:01 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AF02513B3 for ; Thu, 2 Jan 2014 09:03:01 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s02931q8004851 for ; Thu, 2 Jan 2014 09:03:01 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s02931ch004843; Thu, 2 Jan 2014 09:03:01 GMT (envelope-from nobody) Message-Id: <201401020903.s02931ch004843@oldred.freebsd.org> Date: Thu, 2 Jan 2014 09:03:01 GMT From: Pakhom Golynga To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185412: net-mgmt/zabbix22-server: update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 09:10:00 -0000 >Number: 185412 >Category: ports >Synopsis: net-mgmt/zabbix22-server: update >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 Jan 02 09:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Pakhom Golynga >Release: 9.2-RELEASE-p1 >Organization: >Environment: >Description: - Add VMware support by adding libxml2 - Add ICONV_PREFIX to the configure arguments (PR: ports/185197) >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN zabbix22-server.orig/Makefile zabbix22-server/Makefile --- zabbix22-server.orig/Makefile 2014-01-02 11:50:11.302717000 +0400 +++ zabbix22-server/Makefile 2014-01-02 12:45:39.689718601 +0400 @@ -3,7 +3,7 @@ PORTNAME= zabbix22 PORTVERSION= 2.2.1 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} PKGNAMESUFFIX?= -server @@ -59,7 +59,8 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-${ZABBIX_BUILD} \ --sysconfdir=${ETCDIR} \ - --datadir=${ETCDIR} + --datadir=${ETCDIR} \ + --with-iconv=${ICONV_PREFIX} .if ${ZABBIX_BUILD} != "agent" LIB_DEPENDS= netsnmp:${PORTSDIR}/net-mgmt/net-snmp \ @@ -71,7 +72,7 @@ OPTIONSFILE= ${PORT_DBDIR}/${PORTNAME}${PKGNAMESUFFIX}/options -OPTIONS_DEFINE= IPV6 FPING JABBER CURL LDAP IPMI SSH NMAP ODBC JAVAGW MYSQL +OPTIONS_DEFINE= IPV6 FPING JABBER CURL LDAP IPMI SSH NMAP ODBC JAVAGW MYSQL LIBXML2 OPTIONS_DEFAULT= MYSQL IPV6 FPING JABBER CURL CURL_DESC= Support for web monitoring @@ -85,6 +86,7 @@ JAVAGW_DESC= Support for Java gateway IODBC_DESC= Use iODBC for ODBC support UNIXODBC_DESC= Use UnixODBC for ODBC support +LIBXML2_DESC= Support for libxml2 (required by monitoring VMware) OPTIONS_SINGLE= DB ODBC OPTIONS_SINGLE_DB= MYSQL PGSQL SQLITE ORACLE @@ -174,6 +176,11 @@ PLIST_SUB+= JAVAGW="@comment " .endif +.if ${PORT_OPTIONS:MLIBXML2} +LIB_DEPENDS+= xml2:${PORTSDIR}/textproc/libxml2 +CONFIGURE_ARGS+= --with-libxml2 +.endif + post-patch: @${GREP} -rl "/etc/zabbix" ${WRKSRC} \ | ${XARGS} ${REINPLACE_CMD} -e 's#/etc/zabbix#${ETCDIR}#g' >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 09:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73A889E7 for ; Thu, 2 Jan 2014 09:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5D8FB14C8 for ; Thu, 2 Jan 2014 09:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s029K172008629 for ; Thu, 2 Jan 2014 09:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s029K1oL008628; Thu, 2 Jan 2014 09:20:01 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 09:20:01 GMT Message-Id: <201401020920.s029K1oL008628@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Pakhom Golynga Subject: Re: ports/185294: net-mgmt/zabbix22-server: Add VMware support for Zabbix 2.2 Server by adding libxml2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Pakhom Golynga List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 09:20:01 -0000 The following reply was made to PR ports/185294; it has been noted by GNATS. From: Pakhom Golynga To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/185294: net-mgmt/zabbix22-server: Add VMware support for Zabbix 2.2 Server by adding libxml2 Date: Thu, 02 Jan 2014 13:17:55 +0400 Added to patch ports/185412 Please close this PR. Thanks! 31.12.2013 07:13, Edwin Groothuis пишет: > Maintainer of net-mgmt/zabbix22-server, > > Please note that PR ports/185294 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/185294 > From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 09:20:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76F659E8 for ; Thu, 2 Jan 2014 09:20:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 62E2314C9 for ; Thu, 2 Jan 2014 09:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s029K2WO008636 for ; Thu, 2 Jan 2014 09:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s029K2IN008635; Thu, 2 Jan 2014 09:20:02 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 09:20:02 GMT Message-Id: <201401020920.s029K2IN008635@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Pakhom Golynga Subject: Re: ports/185197: net-mgmt/zabbix22-server (and friends) fail to find iconv in alternate path X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Pakhom Golynga List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 09:20:02 -0000 The following reply was made to PR ports/185197; it has been noted by GNATS. From: Pakhom Golynga To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/185197: net-mgmt/zabbix22-server (and friends) fail to find iconv in alternate path Date: Thu, 02 Jan 2014 13:17:40 +0400 Added to patch ports/185412 Please close this PR. Thanks! 26.12.2013 09:40, Edwin Groothuis пишет: > Maintainer of net-mgmt/zabbix22-server, > > Please note that PR ports/185197 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/185197 > From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 09:20:03 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B42BB9E9 for ; Thu, 2 Jan 2014 09:20:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 870F214CA for ; Thu, 2 Jan 2014 09:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s029K35m008642 for ; Thu, 2 Jan 2014 09:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s029K3ra008641; Thu, 2 Jan 2014 09:20:03 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 09:20:03 GMT Message-Id: <201401020920.s029K3ra008641@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: "l.bartoletti" Subject: Re: ports/185407: [Patch] devel/codeblocks requires GCC X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: "l.bartoletti" List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 09:20:03 -0000 The following reply was made to PR ports/185407; it has been noted by GNATS. From: "l.bartoletti" To: bug-followup@FreeBSD.org, shurd@sasktel.net Cc: Subject: Re: ports/185407: [Patch] devel/codeblocks requires GCC Date: Thu, 02 Jan 2014 10:19:18 +0100 Thank you for your help. This seems to be the right solution. However this does not work as you can see from these logs. https://redports.org/buildarchive/20140102083010-03656/ I try to port the 13.12 version under development, but I still have problems in version 10 FreeBSD. Courtesly. From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 10:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C91085E0 for ; Thu, 2 Jan 2014 10:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A68FC188E for ; Thu, 2 Jan 2014 10:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02AK0H9021363 for ; Thu, 2 Jan 2014 10:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02AK0Yt021362; Thu, 2 Jan 2014 10:20:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 10:20:00 GMT Resent-Message-Id: <201401021020.s02AK0Yt021362@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, Kurt Jaeger Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8BAFD181; Thu, 2 Jan 2014 10:11:54 +0000 (UTC) Received: from fi9.opsec.eu (unknown [IPv6:2001:14f8:200:4::7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 46650184D; Thu, 2 Jan 2014 10:11:53 +0000 (UTC) Received: from pi by fi9.opsec.eu with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1VyfFm-000LAv-I2; Thu, 02 Jan 2014 11:11:50 +0100 Message-Id: Date: Thu, 02 Jan 2014 11:11:50 +0100 From: Kurt Jaeger To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/185413: [ports update] graphics/webp does not install, strange pkg-plist Cc: johans@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Kurt Jaeger List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 10:20:00 -0000 >Number: 185413 >Category: ports >Synopsis: [ports update] graphics/webp does not install, strange pkg-plist >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 Jan 02 10:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Kurt Jaeger >Release: FreeBSD 9.2-RELEASE i386 >Organization: - >Environment: System: FreeBSD fi9.opsec.eu 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Fri Sep 27 03:52:52 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: fi9$ pwd /usr/ports/graphics/webp fi9$ l total 40 drwxrwxr-x 2 root wheel 512 Jan 2 10:55 . drwxrwxr-x 1084 root wheel 24064 Dec 29 21:28 .. -rw-r--r-- 1 root wheel 932 Dec 29 21:28 Makefile -rw-r--r-- 1 root wheel 134 Sep 10 21:28 distinfo -rw-rw-r-- 1 root wheel 316 Jan 1 2013 pkg-descr -rw-r--r-- 1 root wheel 798 Dec 29 21:28 pkg-plist -rw-r--r-- 1 root wheel 715 Dec 29 21:28 pkg-plist.mine -rw-r--r-- 1 root wheel 725 Dec 29 21:28 pkg-plist.r337897 -rw-r--r-- 1 root wheel 732 Dec 29 21:28 pkg-plist.r338038 The pkg-plist, from what I understand, contains an unresolved merge conflict -- and some additional pkg-plist-files which are not really required ? See: [...] bin/gif2webp <<<<<<< .mine ||||||| .r337897 bin/vwebp ======= %%X11%%bin/vwebp >How-To-Repeat: cd /usr/ports/graphics/webp make install fails with [...] Creating bzip'd tar ball in '/usr/local/ports/graphics/webp/work/webp-0.3.1_4.tbz' tar: <<<<<<< .mine: Cannot stat: No such file or directory tar: ||||||| .r337897: Cannot stat: No such file or directory tar: =======: Cannot stat: No such file or directory tar: >>>>>>> .r338038: Cannot stat: No such file or directory tar: Error exit delayed from previous errors. pkg_create: make_dist: tar command failed with code 256 *** [do-package] Error code 1 >Fix: diff -r -u graphics/webp/pkg-plist /usr/home/pi/myp/graphics/webp/pkg-plist --- graphics/webp/pkg-plist 2013-12-29 21:28:56.000000000 +0100 +++ /usr/home/pi/myp/graphics/webp/pkg-plist 2014-01-02 10:55:54.000000000 +0100 @@ -1,12 +1,7 @@ bin/cwebp bin/dwebp bin/gif2webp -<<<<<<< .mine -||||||| .r337897 bin/vwebp -======= -%%X11%%bin/vwebp ->>>>>>> .r338038 bin/webpmux include/webp/decode.h include/webp/demux.h Only in graphics/webp: pkg-plist.mine Only in graphics/webp: pkg-plist.r337897 Only in graphics/webp: pkg-plist.r338038 >Release-Note: >Audit-Trail: >Unformatted: >>>>>>> .r338038 bin/webpmux [...] Still open: How would a webp build with OPTION X11 disabled work if the pkg-plist is fixed ? From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 10:20:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 60AD2610; Thu, 2 Jan 2014 10:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 356741891; Thu, 2 Jan 2014 10:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02AK9E7021508; Thu, 2 Jan 2014 10:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02AK9la021507; Thu, 2 Jan 2014 10:20:09 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 10:20:09 GMT Message-Id: <201401021020.s02AK9la021507@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, johans@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185413: [ports update] graphics/webp does not install, strange pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 10:20:09 -0000 Synopsis: [ports update] graphics/webp does not install, strange pkg-plist Responsible-Changed-From-To: freebsd-ports-bugs->johans Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 10:20:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185413 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 10:30:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 06EABA83 for ; Thu, 2 Jan 2014 10:30:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CE2A61940 for ; Thu, 2 Jan 2014 10:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02AU1fZ023487 for ; Thu, 2 Jan 2014 10:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02AU1QX023486; Thu, 2 Jan 2014 10:30:01 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 10:30:01 GMT Message-Id: <201401021030.s02AU1QX023486@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Sunry Chen Subject: Re: ports/185398: Fix comms/xmorse build with Clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Sunry Chen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 10:30:02 -0000 The following reply was made to PR ports/185398; it has been noted by GNATS. From: Sunry Chen To: bug-followup@freebsd.org Cc: Edwin Groothuis Subject: Re: ports/185398: Fix comms/xmorse build with Clang Date: Thu, 2 Jan 2014 18:20:12 +0800 --089e0149373c91225704eefa23db Content-Type: text/plain; charset=ISO-8859-1 Yes, it works. I approve the patch. On Thu, Jan 2, 2014 at 6:00 AM, Edwin Groothuis wrote: > Maintainer of comms/xmorse, > > Please note that PR ports/185398 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/185398 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > --089e0149373c91225704eefa23db Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Yes, it works.
I approve the patch.


On Thu, Jan 2, 2= 014 at 6:00 AM, Edwin Groothuis <edwin@freebsd.org> wrote:
Maintainer of comms/xmorse,

Please note that PR ports/185398 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:
=A0 =A0 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/185= 398

--
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org

--089e0149373c91225704eefa23db-- From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 10:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B65FAEC for ; Thu, 2 Jan 2014 10:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 908CC1A97 for ; Thu, 2 Jan 2014 10:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02Ao0Yp027398 for ; Thu, 2 Jan 2014 10:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02Ao0hw027394; Thu, 2 Jan 2014 10:50:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 10:50:00 GMT Resent-Message-Id: <201401021050.s02Ao0hw027394@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, Bartek Rutkowski Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99D3EEF0 for ; Thu, 2 Jan 2014 10:46:32 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 85C021A7E for ; Thu, 2 Jan 2014 10:46:32 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s02AkVZ5066138 for ; Thu, 2 Jan 2014 10:46:31 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s02AkVdP066131; Thu, 2 Jan 2014 10:46:31 GMT (envelope-from nobody) Message-Id: <201401021046.s02AkVdP066131@oldred.freebsd.org> Date: Thu, 2 Jan 2014 10:46:31 GMT From: Bartek Rutkowski To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185416: [port-update] www/rubygem-passenger update to 4.0.31 to fix CLANG build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 10:50:00 -0000 >Number: 185416 >Category: ports >Synopsis: [port-update] www/rubygem-passenger update to 4.0.31 to fix CLANG build >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 Jan 02 10:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Bartek Rutkowski >Release: 10.0-RC3 >Organization: Pixeware LTD >Environment: FreeBSD dzierzynski 10.0-RC3 FreeBSD 10.0-RC3 #0 r259778: Mon Dec 23 23:27:58 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/DZIERZYNSKI amd64 >Description: This is Phusion Passenger update that fixes the issue of building it using CLANG 3.3 on FreeBSD 10.0-RC3 as reported in: http://lists.freebsd.org/pipermail/freebsd-ports/2014-January/088787.html >How-To-Repeat: Apply the patch, build the www/rubygem-passenger port. >Fix: Patch applied. Patch attached with submission follows: diff -ruN rubygem-passenger.orig/Makefile rubygem-passenger/Makefile --- rubygem-passenger.orig/Makefile 2014-01-02 10:30:12.985698999 +0000 +++ rubygem-passenger/Makefile 2014-01-02 00:35:47.002758987 +0000 @@ -2,7 +2,7 @@ # $FreeBSD: www/rubygem-passenger/Makefile 338325 2013-12-31 15:24:36Z osa $ PORTNAME= passenger -PORTVERSION= 4.0.30 +PORTVERSION= 4.0.31 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMEPREFIX= rubygem- diff -ruN rubygem-passenger.orig/distinfo rubygem-passenger/distinfo --- rubygem-passenger.orig/distinfo 1970-01-01 00:00:00.000000000 +0000 +++ rubygem-passenger/distinfo 2014-01-02 00:36:15.011777987 +0000 @@ -0,0 +1,2 @@ +SHA256 (rubygem/passenger-4.0.31.gem) = c95f03b11b44ed043c2fac16992d23bf76b201a1bca65320745082a442b46f36 +SIZE (rubygem/passenger-4.0.31.gem) = 4277760 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 10:50:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 38CE511B; Thu, 2 Jan 2014 10:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D71C1AE8; Thu, 2 Jan 2014 10:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02Ao7XN027554; Thu, 2 Jan 2014 10:50:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02Ao7n7027553; Thu, 2 Jan 2014 10:50:07 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 10:50:07 GMT Message-Id: <201401021050.s02Ao7n7027553@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, osa@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185416: [port-update] www/rubygem-passenger update to 4.0.31 to fix CLANG build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 10:50:08 -0000 Synopsis: [port-update] www/rubygem-passenger update to 4.0.31 to fix CLANG build Responsible-Changed-From-To: freebsd-ports-bugs->osa Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 10:50:07 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185416 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCD0A5FF for ; Thu, 2 Jan 2014 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9A59F1D46 for ; Thu, 2 Jan 2014 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BA19I031693 for ; Thu, 2 Jan 2014 11:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BA1Qa031692; Thu, 2 Jan 2014 11:10:01 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 11:10:01 GMT Resent-Message-Id: <201401021110.s02BA1Qa031692@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 [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 46F5B43E for ; Thu, 2 Jan 2014 11:05:54 +0000 (UTC) Received: from cse.tw (cse.tw [140.138.145.234]) by mx1.freebsd.org (Postfix) with ESMTP id 155961CC6 for ; Thu, 2 Jan 2014 11:05:54 +0000 (UTC) Received: from cse.tw (localhost [127.0.0.1]) by cse.tw (Postfix) with ESMTP id 37014187B03F for ; Thu, 2 Jan 2014 19:01:18 +0800 (CST) Received: (from gaod@localhost) by cse.tw (8.14.5/8.14.5/Submit) id s02B1IH6074962; Thu, 2 Jan 2014 19:01:18 +0800 (CST) (envelope-from gaod) Message-Id: <201401021101.s02B1IH6074962@cse.tw> Date: Thu, 2 Jan 2014 19:01:18 +0800 (CST) From: Hung-Yi Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185418: [NEW PORT] net-mgmt/p5-Net-SNMPTrapd: SNMP Trap Listener in Perl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:10:01 -0000 >Number: 185418 >Category: ports >Synopsis: [NEW PORT] net-mgmt/p5-Net-SNMPTrapd: SNMP Trap Listener in Perl >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 Jan 02 11:10:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Hung-Yi Chen >Release: FreeBSD 9.1-RELEASE-p6 amd64 >Organization: >Environment: System: FreeBSD cse.tw 9.1-RELEASE-p6 FreeBSD 9.1-RELEASE-p6 #0: Wed Aug 21 20:40:52 UTC 2013 >Description: The Net::SNMPTrapd module implements an SNMP Trap Listener. WWW: http://search.cpan.org/dist/Net-SNMPTrapd/ Generated with FreeBSD Port Tools 0.99_11 (mode: new) >How-To-Repeat: >Fix: --- .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: # # p5-Net-SNMPTrapd # p5-Net-SNMPTrapd/pkg-plist # p5-Net-SNMPTrapd/pkg-descr # p5-Net-SNMPTrapd/distinfo # p5-Net-SNMPTrapd/Makefile # echo c - p5-Net-SNMPTrapd mkdir -p p5-Net-SNMPTrapd > /dev/null 2>&1 echo x - p5-Net-SNMPTrapd/pkg-plist sed 's/^X//' >p5-Net-SNMPTrapd/pkg-plist << '42156a62cfe19bfa4fb33a2699df1ab8' Xbin/snmptrapd-simple.pl Xbin/snmptrapd-sendtest.pl X%%SITE_PERL%%/Net/SNMPTrapd.pm X%%PERL5_MAN3%%/Net::SNMPTrapd.3.gz Xman/man1/snmptrapd-sendtest.pl.1.gz Xman/man1/snmptrapd-simple.pl.1.gz X@dirrmtry %%SITE_PERL%%/Net 42156a62cfe19bfa4fb33a2699df1ab8 echo x - p5-Net-SNMPTrapd/pkg-descr sed 's/^X//' >p5-Net-SNMPTrapd/pkg-descr << '96cd3dd3e5e63854c44595faf4ca9808' XThe Net::SNMPTrapd module implements an SNMP Trap Listener. X XWWW: http://search.cpan.org/dist/Net-SNMPTrapd/ 96cd3dd3e5e63854c44595faf4ca9808 echo x - p5-Net-SNMPTrapd/distinfo sed 's/^X//' >p5-Net-SNMPTrapd/distinfo << 'dbc798327288c8b34fda7b3e49577880' XSHA256 (Net-SNMPTrapd-0.12.tar.gz) = c3ce863618583153b1133168b8c809501bcf7111236b35447e4803e2ca41f4ae XSIZE (Net-SNMPTrapd-0.12.tar.gz) = 15692 dbc798327288c8b34fda7b3e49577880 echo x - p5-Net-SNMPTrapd/Makefile sed 's/^X//' >p5-Net-SNMPTrapd/Makefile << '387ae971f5617bec4a746c35377b78f4' X# Created by: Hung-Yi Chen X# $FreeBSD$ X XPORTNAME= Net-SNMPTrapd XPORTVERSION= 0.12 XCATEGORIES= net-mgmt perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- X XMAINTAINER= gaod@hychen.org XCOMMENT= SNMP Trap Listener in Perl X XBUILD_DEPENDS= p5-ExtUtils-MakeMaker>=0:${PORTSDIR}/devel/p5-ExtUtils-MakeMaker XRUN_DEPENDS= p5-Convert-ASN1>=0:${PORTSDIR}/converters/p5-Convert-ASN1 \ X p5-IO-Socket-IP>=0:${PORTSDIR}/net/p5-IO-Socket-IP \ X p5-Socket>=0:${PORTSDIR}/net/p5-Socket X XUSES= perl5 XUSE_PERL5= configure X XMAN1= snmptrapd-sendtest.pl.1 \ X snmptrapd-simple.pl.1 X XMAN3= Net::SNMPTrapd.3 X X.include 387ae971f5617bec4a746c35377b78f4 exit --- .shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:10:10 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2571E62C; Thu, 2 Jan 2014 11:10:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ED7601D47; Thu, 2 Jan 2014 11:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BA9BL031771; Thu, 2 Jan 2014 11:10:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BA9fQ031770; Thu, 2 Jan 2014 11:10:09 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 11:10:09 GMT Message-Id: <201401021110.s02BA9fQ031770@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185418: [NEW PORT] net-mgmt/p5-Net-SNMPTrapd: SNMP Trap Listener in Perl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:10:10 -0000 Synopsis: [NEW PORT] net-mgmt/p5-Net-SNMPTrapd: SNMP Trap Listener in Perl Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 11:10:09 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185418 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 755065FB for ; Thu, 2 Jan 2014 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 517361D42 for ; Thu, 2 Jan 2014 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BA07r031680 for ; Thu, 2 Jan 2014 11:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BA0o4031679; Thu, 2 Jan 2014 11:10:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 11:10:00 GMT Resent-Message-Id: <201401021110.s02BA0o4031679@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 [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AF6BA430 for ; Thu, 2 Jan 2014 11:05:11 +0000 (UTC) Received: from cse.tw (cse.tw [140.138.145.234]) by mx1.freebsd.org (Postfix) with ESMTP id DB5831CBD for ; Thu, 2 Jan 2014 11:05:09 +0000 (UTC) Received: from cse.tw (localhost [127.0.0.1]) by cse.tw (Postfix) with ESMTP id BFA14187B00D; Thu, 2 Jan 2014 19:05:21 +0800 (CST) Received: (from gaod@localhost) by cse.tw (8.14.5/8.14.5/Submit) id s02B5L9U007963; Thu, 2 Jan 2014 19:05:21 +0800 (CST) (envelope-from gaod) Message-Id: <201401021105.s02B5L9U007963@cse.tw> Date: Thu, 2 Jan 2014 19:05:21 +0800 (CST) From: Hung-Yi Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185417: [PATCH] net-mgmt/p5-NetApp: update to 500.002, take maintainership Cc: snowfly@yuntech.edu.tw X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:10:01 -0000 >Number: 185417 >Category: ports >Synopsis: [PATCH] net-mgmt/p5-NetApp: update to 500.002, take maintainership >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Thu Jan 02 11:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Hung-Yi Chen >Release: FreeBSD 9.1-RELEASE-p6 amd64 >Organization: >Environment: System: FreeBSD cse.tw 9.1-RELEASE-p6 FreeBSD 9.1-RELEASE-p6 #0: Wed Aug 21 20:40:52 UTC 2013 >Description: - Update to 500.002 - Take maintainership Port maintainer (snowfly@yuntech.edu.tw) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: ports) >How-To-Repeat: >Fix: --- p5-NetApp-500.002.patch begins here --- diff -ruN /usr/ports/net-mgmt/p5-NetApp/Makefile ./Makefile --- /usr/ports/net-mgmt/p5-NetApp/Makefile 2013-09-21 06:24:43.000000000 +0800 +++ ./Makefile 2014-01-02 19:05:05.699880789 +0800 @@ -2,15 +2,13 @@ # $FreeBSD: net-mgmt/p5-NetApp/Makefile 327757 2013-09-20 22:24:43Z bapt $ PORTNAME= NetApp -PORTVERSION= 1.1.2 -PORTREVISION= 2 +PORTVERSION= 500.002 CATEGORIES= net-mgmt perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= NetApp PKGNAMEPREFIX= p5- -EXTRACT_SUFX= .tgz -MAINTAINER= snowfly@yuntech.edu.tw +MAINTAINER= gaod@hychen.org COMMENT= Perl interface to manage NetApp NAS devices RUN_DEPENDS= p5-IPC-Cmd>=0:${PORTSDIR}/devel/p5-IPC-Cmd \ @@ -23,7 +21,7 @@ BUILD_DEPENDS:= ${RUN_DEPENDS} USES= perl5 -USE_PERL5= modbuild +USE_PERL5= configure MAN3= NetApp::Aggregate.3 \ NetApp::Aggregate::Plex.3 \ @@ -40,5 +38,4 @@ NetApp::Snapshot::Schedule.3 \ NetApp::Volume.3 -NO_STAGE= yes .include diff -ruN /usr/ports/net-mgmt/p5-NetApp/distinfo ./distinfo --- /usr/ports/net-mgmt/p5-NetApp/distinfo 2012-07-14 22:29:18.000000000 +0800 +++ ./distinfo 2014-01-02 19:02:59.613789834 +0800 @@ -1,2 +1,2 @@ -SHA256 (NetApp-1.1.2.tgz) = d87c7873b6b5d7c7fe5ad23dc4ecc131f4c87ceeb7ec356f9336d1d9f70fcdf1 -SIZE (NetApp-1.1.2.tgz) = 43407 +SHA256 (NetApp-500.002.tar.gz) = ff9f2ffadacbe5ecb333e95eb7541df2177e7b198063821671daa0effa38c7c2 +SIZE (NetApp-500.002.tar.gz) = 57584 diff -ruN /usr/ports/net-mgmt/p5-NetApp/files/patch-lib_NetApp_Filer_Version.pm ./files/patch-lib_NetApp_Filer_Version.pm --- /usr/ports/net-mgmt/p5-NetApp/files/patch-lib_NetApp_Filer_Version.pm 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-lib_NetApp_Filer_Version.pm 2014-01-02 19:02:59.531952716 +0800 @@ -0,0 +1,11 @@ +--- lib/NetApp/Filer/Version.pm.orig 2013-12-30 22:00:16.000000000 +0800 ++++ lib/NetApp/Filer/Version.pm 2013-12-30 22:00:33.000000000 +0800 +@@ -40,7 +40,7 @@ + $string_of{$ident} = $args{string}; + + $args{string} =~ +- m{ NetApp \s+ Release \s+ (\S+) : \s+ (.*) }gmx || ++ m{ NetApp \s+ Release \s+ (.+): \s+ (.+) }gmx || + croak ("Invalid version string: $args{string}\n"); + + $release_of{$ident} = $1; diff -ruN /usr/ports/net-mgmt/p5-NetApp/files/patch-lib_NetApp_Snapshot.pm ./files/patch-lib_NetApp_Snapshot.pm --- /usr/ports/net-mgmt/p5-NetApp/files/patch-lib_NetApp_Snapshot.pm 1970-01-01 08:00:00.000000000 +0800 +++ ./files/patch-lib_NetApp_Snapshot.pm 2014-01-02 19:02:59.531952716 +0800 @@ -0,0 +1,27 @@ +--- lib/NetApp/Snapshot.pm.orig 2012-06-05 22:44:25.000000000 +0800 ++++ lib/NetApp/Snapshot.pm 2013-12-30 23:50:33.000000000 +0800 +@@ -8,6 +8,7 @@ + use warnings; + use English; + use Carp; ++use DateTime; + + use Class::Std; + use Params::Validate qw( :all ); +@@ -243,6 +244,7 @@ + my (%args) = validate( @_, { + parent => { type => OBJECT }, + name => { type => SCALAR }, ++ snapname => { default => DateTime->now() }, + }); + + my $parent = $args{parent}; +@@ -253,7 +255,7 @@ + push @command, '-A'; + } + +- push @command, $args{name}; ++ push @command, $args{name}, $args{snapname}; + + return $parent->get_filer->_run_command( + command => \@command, diff -ruN /usr/ports/net-mgmt/p5-NetApp/pkg-descr ./pkg-descr --- /usr/ports/net-mgmt/p5-NetApp/pkg-descr 2012-07-14 22:29:18.000000000 +0800 +++ ./pkg-descr 2014-01-02 19:03:51.548531281 +0800 @@ -18,4 +18,4 @@ although such changes will be made only when justified. The author does not believe in infinite backwards compatibility. -WWW: http://search.cpan.org/dist/NetApp/ +WWW: http://search.cpan.org/dist/NetApp/ --- p5-NetApp-500.002.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:10:16 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D569D65D; Thu, 2 Jan 2014 11:10:16 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A9C841D4A; Thu, 2 Jan 2014 11:10:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BAG67033475; Thu, 2 Jan 2014 11:10:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BAGFH033474; Thu, 2 Jan 2014 11:10:16 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 11:10:16 GMT Message-Id: <201401021110.s02BAGFH033474@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185417: [PATCH] net-mgmt/p5-NetApp: update to 500.002, take maintainership X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:10:16 -0000 Synopsis: [PATCH] net-mgmt/p5-NetApp: update to 500.002, take maintainership Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 11:10:16 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185417 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:20:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9ABEEA68; Thu, 2 Jan 2014 11:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6F9DF1DCA; Thu, 2 Jan 2014 11:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BK93H035186; Thu, 2 Jan 2014 11:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BK9O7035185; Thu, 2 Jan 2014 11:20:09 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 11:20:09 GMT Message-Id: <201401021120.s02BK9O7035185@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185403: patch www/py-django-json-rpc to work with django 1.6.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:20:09 -0000 Synopsis: patch www/py-django-json-rpc to work with django 1.6.1 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 11:20:09 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185403 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:20:57 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 72F16ABB; Thu, 2 Jan 2014 11:20:57 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4649A1DD2; Thu, 2 Jan 2014 11:20:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BKv6Y036870; Thu, 2 Jan 2014 11:20:57 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BKvoT036869; Thu, 2 Jan 2014 11:20:57 GMT (envelope-from linimon) Date: Thu, 2 Jan 2014 11:20:57 GMT Message-Id: <201401021120.s02BKvoT036869@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/185406: update www/py-django-simple-captcha from 0.4.0 to 0.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:20:57 -0000 Old Synopsis: update py-django-simple-captcha from 0.4.0 to 0.4.1 New Synopsis: update www/py-django-simple-captcha from 0.4.0 to 0.4.1 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 2 11:20:22 UTC 2014 Responsible-Changed-Why: make this a ports PR and fix Synopsis. http://www.freebsd.org/cgi/query-pr.cgi?pr=185406 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:21:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 160E8ABE; Thu, 2 Jan 2014 11:21:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DE0E11DD4; Thu, 2 Jan 2014 11:21:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BL1cb036967; Thu, 2 Jan 2014 11:21:01 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BL1Rv036966; Thu, 2 Jan 2014 11:21:01 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 11:21:01 GMT Message-Id: <201401021121.s02BL1Rv036966@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185406: update www/py-django-simple-captcha from 0.4.0 to 0.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:21:02 -0000 Synopsis: update www/py-django-simple-captcha from 0.4.0 to 0.4.1 Class-Changed-From-To: sw-bug->maintainer-update Class-Changed-By: edwin Class-Changed-When: Thu Jan 2 11:21:01 UTC 2014 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185406 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:21:03 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C5EC6AC0; Thu, 2 Jan 2014 11:21:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 99EFC1DD5; Thu, 2 Jan 2014 11:21:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BL36X037048; Thu, 2 Jan 2014 11:21:03 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BL3w6037047; Thu, 2 Jan 2014 11:21:03 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 11:21:03 GMT Message-Id: <201401021121.s02BL3w6037047@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185406: update www/py-django-simple-captcha from 0.4.0 to 0.4.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:21:03 -0000 Synopsis: update www/py-django-simple-captcha from 0.4.0 to 0.4.1 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 11:21:03 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185406 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:23:07 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E5421BDD; Thu, 2 Jan 2014 11:23:07 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B91A81E3C; Thu, 2 Jan 2014 11:23:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BN7MT037291; Thu, 2 Jan 2014 11:23:07 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BN6ji037290; Thu, 2 Jan 2014 11:23:06 GMT (envelope-from linimon) Date: Thu, 2 Jan 2014 11:23:06 GMT Message-Id: <201401021123.s02BN6ji037290@freefall.freebsd.org> To: pakhom706@gmail.com, alex@i.org.ua, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/185294: net-mgmt/zabbix22-server: Add VMware support for Zabbix 2.2 Server by adding libxml2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:23:08 -0000 Synopsis: net-mgmt/zabbix22-server: Add VMware support for Zabbix 2.2 Server by adding libxml2 State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Thu Jan 2 11:22:45 UTC 2014 State-Changed-Why: see ports/185412. http://www.freebsd.org/cgi/query-pr.cgi?pr=185294 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:23:32 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26548C2A; Thu, 2 Jan 2014 11:23:32 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EE4DB1E43; Thu, 2 Jan 2014 11:23:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BNVme037339; Thu, 2 Jan 2014 11:23:31 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BNVwn037338; Thu, 2 Jan 2014 11:23:31 GMT (envelope-from linimon) Date: Thu, 2 Jan 2014 11:23:31 GMT Message-Id: <201401021123.s02BNVwn037338@freefall.freebsd.org> To: pakhom706@gmail.com, jhujhiti@adjectivism.org, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/185197: net-mgmt/zabbix22-server (and friends) fail to find iconv in alternate path X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:23:32 -0000 Synopsis: net-mgmt/zabbix22-server (and friends) fail to find iconv in alternate path State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Thu Jan 2 11:23:21 UTC 2014 State-Changed-Why: see ports/185412. http://www.freebsd.org/cgi/query-pr.cgi?pr=185197 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:25:56 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A7482EFB; Thu, 2 Jan 2014 11:25:56 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 756D31E59; Thu, 2 Jan 2014 11:25:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BPu8e037490; Thu, 2 Jan 2014 11:25:56 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BPukW037489; Thu, 2 Jan 2014 11:25:56 GMT (envelope-from linimon) Date: Thu, 2 Jan 2014 11:25:56 GMT Message-Id: <201401021125.s02BPukW037489@freefall.freebsd.org> To: johans@FreeBSD.org, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/185414: Re: [ports update] graphics/webp does not install, strange pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:25:56 -0000 Synopsis: Re: [ports update] graphics/webp does not install, strange pkg-plist State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Jan 2 11:25:05 UTC 2014 State-Changed-Why: Misfiled followup to ports/185413; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 2 11:25:05 UTC 2014 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=185414 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 11:26:43 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDCCCF48; Thu, 2 Jan 2014 11:26:43 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C0E651E62; Thu, 2 Jan 2014 11:26:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02BQh44037548; Thu, 2 Jan 2014 11:26:43 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02BQhQb037547; Thu, 2 Jan 2014 11:26:43 GMT (envelope-from linimon) Date: Thu, 2 Jan 2014 11:26:43 GMT Message-Id: <201401021126.s02BQhQb037547@freefall.freebsd.org> To: pi@opsec.eu, linimon@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/185415: Re: [ports update] graphics/webp does not install, strange pkg-plist X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 11:26:44 -0000 Synopsis: Re: [ports update] graphics/webp does not install, strange pkg-plist State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Thu Jan 2 11:26:10 UTC 2014 State-Changed-Why: Misfiled followup to ports/185413; content migrated. Responsible-Changed-From-To: gnats-admin->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Thu Jan 2 11:26:10 UTC 2014 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=185415 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 12:00:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4EBAF8A6 for ; Thu, 2 Jan 2014 12:00:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2EBCB1111 for ; Thu, 2 Jan 2014 12:00:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02C024m043733 for ; Thu, 2 Jan 2014 12:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02C026M043732; Thu, 2 Jan 2014 12:00:02 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 12:00:02 GMT Resent-Message-Id: <201401021200.s02C026M043732@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 Gmelin Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20BA664D for ; Thu, 2 Jan 2014 11:55:09 +0000 (UTC) Received: from mail.grem.de (outcast.grem.de [213.239.217.27]) by mx1.freebsd.org (Postfix) with SMTP id 602F0105E for ; Thu, 2 Jan 2014 11:55:07 +0000 (UTC) Received: (qmail 35231 invoked by uid 0); 2 Jan 2014 11:55:07 -0000 Message-Id: <20140102115507.35230.qmail@mail.grem.de> Date: 2 Jan 2014 11:55:07 -0000 From: Michael Gmelin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185419: [PATCH] net/jags: Build with clang (and on 10) Cc: gahr@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 12:00:02 -0000 >Number: 185419 >Category: ports >Synopsis: [PATCH] net/jags: Build with clang (and on 10) >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 Jan 02 12:00:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Michael Gmelin >Release: FreeBSD 9.1-RELEASE-p2 amd64 >Organization: Grem Equity GmbH >Environment: System: FreeBSD bsd64 9.1-RELEASE-p2 FreeBSD 9.1-RELEASE-p2 #5 r249052M: Fri May 31 17:50:16 UTC >Description: Make port build on 10/clang See http://lists.freebsd.org/pipermail/freebsd-pkg-fallout/Week-of-Mon-20130902/016631.html and http://lists.freebsd.org/pipermail/freebsd-ports/2014-January/088790.html Port maintainer (gahr@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_7 (mode: change, diff: suffix) >How-To-Repeat: >Fix: --- jags-0.22.1_5.patch begins here --- diff -ruN ../jags.orig/files/patch-src_jagsabout.h ./files/patch-src_jagsabout.h --- ../jags.orig/files/patch-src_jagsabout.h 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-src_jagsabout.h 2014-01-02 12:50:09.965305458 +0100 @@ -0,0 +1,9 @@ +--- src/jagsabout.h~ 2003-09-04 23:14:54.000000000 +0200 ++++ src/jagsabout.h 2014-01-02 12:44:48.685333562 +0100 +@@ -42,4 +42,6 @@ + + }; + ++gint on_close(GtkWidget *widget, JagsAbout *about); ++ + #endif diff -ruN ../jags.orig/files/patch-src_jagsmenubar.h ./files/patch-src_jagsmenubar.h --- ../jags.orig/files/patch-src_jagsmenubar.h 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-src_jagsmenubar.h 2014-01-02 12:50:09.965305458 +0100 @@ -0,0 +1,26 @@ +--- src/jagsmenubar.h~ 2003-09-04 23:14:54.000000000 +0200 ++++ src/jagsmenubar.h 2014-01-02 12:45:17.432291625 +0100 +@@ -105,4 +105,23 @@ + + }; + ++gint mount_and_browse(GtkMenuItem *item, JagsMenuBar *jmb); ++gint browse(GtkMenuItem *item, JagsMenuBar *jmb); ++gint mount(GtkMenuItem *item, JagsMenuBar *jmb); ++gint mount_with(GtkMenuItem *item, JagsMenuBar *jmb); ++gint mount_with_command(GtkMenuItem *item, JagsMenuBar *jmb); ++gint preferences(GtkMenuItem *item, JagsConfig *conf); ++gint about(GtkMenuItem *item, JagsMenuBar *jmb); ++gint my_search(GtkMenuItem *item, JagsMenuBar *jmb); ++gint umount(GtkMenuItem *item, JagsMenuBar *jmb); ++gint mnts_window(GtkMenuItem *item, JagsMenuBar *jmb); ++gint bookmark_menu(GtkMenuItem *item, JagsMenuBar *jmb); ++gint bookmark_add(GtkMenuItem *item, JagsMenuBar *jmb); ++gint bookmark_edit(GtkMenuItem *item, JagsMenuBar *jmb); ++gint bookmark_selected(GtkMenuItem *item, JagsMenuBar *jmb); ++gint bookmarks_add_edit(GtkMenuItem *item, JagsMenuBar *jmb); ++void bookmarks_radio_local_toggle (GtkWidget *widget, gpointer data); ++gint bookmarks_edit_add_close(GtkWidget *widget, gpointer data); ++gint bookmarks_edit_add_ok(GtkWidget *widget, gpointer data); ++ + #endif diff -ruN ../jags.orig/files/patch-src_jagsmntswindow.h ./files/patch-src_jagsmntswindow.h --- ../jags.orig/files/patch-src_jagsmntswindow.h 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-src_jagsmntswindow.h 2014-01-02 12:50:09.965305458 +0100 @@ -0,0 +1,17 @@ +--- src/jagsmntswindow.h~ 2003-09-04 23:14:54.000000000 +0200 ++++ src/jagsmntswindow.h 2014-01-02 12:45:32.595614897 +0100 +@@ -64,4 +64,14 @@ + + }; + ++gint close_mntswindow(GtkWidget *widget, JagsMntsWindow *me); ++gint toggle_automount(GtkWidget *widget, JagsMntsWindow *me); ++gint unmount_share(GtkWidget *widget, JagsMntsWindow *me); ++gint mnts_browse(GtkWidget *widget, JagsMntsWindow *me); ++gint change_mnt_path(GtkWidget *widget, JagsMntsWindow *me); ++void selection_made(GtkWidget *, gint, gint, GdkEventButton *, ++ gpointer, JagsMntsWindow *); ++gint mw_button_press(GtkWidget *widget, GdkEventButton *event, ++ JagsMntsWindow *me); ++ + #endif diff -ruN ../jags.orig/files/patch-src_jagsmountwith.h ./files/patch-src_jagsmountwith.h --- ../jags.orig/files/patch-src_jagsmountwith.h 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-src_jagsmountwith.h 2014-01-02 12:50:09.965305458 +0100 @@ -0,0 +1,10 @@ +--- src/jagsmountwith.h~ 2003-09-04 23:14:54.000000000 +0200 ++++ src/jagsmountwith.h 2014-01-02 12:45:38.895645766 +0100 +@@ -50,4 +50,7 @@ + void browse(void); + }; + ++gint on_mount_with_ok(GtkWidget *, JagsMountWith *); ++gint on_mount_with_cancel(GtkWidget *, JagsMountWith *); ++ + #endif diff -ruN ../jags.orig/files/patch-src_jagsmountwithcommand.h ./files/patch-src_jagsmountwithcommand.h --- ../jags.orig/files/patch-src_jagsmountwithcommand.h 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-src_jagsmountwithcommand.h 2014-01-02 12:50:09.965305458 +0100 @@ -0,0 +1,10 @@ +--- src/jagsmountwithcommand.h~ 2003-09-04 23:14:54.000000000 +0200 ++++ src/jagsmountwithcommand.h 2014-01-02 12:45:43.960048086 +0100 +@@ -45,5 +45,7 @@ + ~JagsMountWithCommand(); + }; + ++gint on_mount_with_command_ok(GtkWidget *, JagsMountWithCommand *); ++gint on_mount_with_command_cancel(GtkWidget *, JagsMountWithCommand *); + + #endif diff -ruN ../jags.orig/files/patch-src_jagsprefsdialog.h ./files/patch-src_jagsprefsdialog.h --- ../jags.orig/files/patch-src_jagsprefsdialog.h 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-src_jagsprefsdialog.h 2014-01-02 12:50:09.965305458 +0100 @@ -0,0 +1,13 @@ +--- src/jagsprefsdialog.h~ 2003-09-04 23:14:54.000000000 +0200 ++++ src/jagsprefsdialog.h 2014-01-02 12:45:54.745715817 +0100 +@@ -57,4 +57,10 @@ + ~JagsPrefsDialog(); + }; + ++gint onPluginsChanged(GtkWidget *, GdkEvent *, JagsPrefsDialog *pd); ++gint on_cancel(GtkWidget *widget, JagsConfig *conf); ++gint on_apply(GtkWidget *widget, JagsConfig *conf2); ++gint on_close(GtkWidget *widget, JagsConfig *conf); ++void on_toggle_sound(GtkWidget *widget, JagsConfig *conf); ++ + #endif diff -ruN ../jags.orig/files/patch-src_jagssearchdialog.h ./files/patch-src_jagssearchdialog.h --- ../jags.orig/files/patch-src_jagssearchdialog.h 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-src_jagssearchdialog.h 2014-01-02 12:50:09.965305458 +0100 @@ -0,0 +1,16 @@ +--- src/jagssearchdialog.h~ 2003-09-04 23:14:54.000000000 +0200 ++++ src/jagssearchdialog.h 2014-01-02 12:46:12.927792310 +0100 +@@ -52,6 +52,13 @@ + void set_string(gchar *s); + }; + ++gint search_clicked(GtkWidget *widget, JagsSearchDialog *me); ++gint on_close(GtkWidget *widget, JagsSearchDialog *me); ++gint onn_collapse(GtkWidget *item, JagsSearchDialog *mw); ++gint expandd_server(GtkWidget *widget, JagsSearchDialog *mw); ++gint onn_share_selected(GtkTree *tree, GtkWidget *widget, gpointer data, JagsSearchDialog *mw); ++gint check_dd_click(GtkWidget *widget, GdkEventButton *event, JagsSearchDialog *mw); ++gint button_presss (GtkWidget *widget, GdkEventButton *event, JagsSearchDialog *mw); + + + #endif diff -ruN ../jags.orig/files/patch-src_mainwindow.h ./files/patch-src_mainwindow.h --- ../jags.orig/files/patch-src_mainwindow.h 1970-01-01 01:00:00.000000000 +0100 +++ ./files/patch-src_mainwindow.h 2014-01-02 12:50:09.965305458 +0100 @@ -0,0 +1,15 @@ +--- src/mainwindow.h~ 2003-09-04 23:14:54.000000000 +0200 ++++ src/mainwindow.h 2014-01-02 12:46:30.655449596 +0100 +@@ -59,5 +59,12 @@ + + gint on_collapse(GtkWidget *item, MainWindow *mw); + gint check_server_click(GtkWidget *widget, GdkEventButton *event, MainWindow *mw); ++gint expand_network(GtkWidget *widget, MainWindow *mw); ++gint expand_workgroup(GtkWidget *widget, MainWindow *mw); ++gint expand_server(GtkWidget *widget, GtkTree *root_tree); ++gint on_share_selected(GtkTree *tree, GtkWidget *widget, gpointer data); ++gint on_workgroup_selected(GtkTree *tree, GtkWidget *widget, GtkTree *root_tree); ++gint check_d_click(GtkWidget *widget, GdkEventButton *event, MainWindow *mw); ++gint button_press(GtkWidget *, GdkEventButton *, MainWindow *mw); + + #endif --- jags-0.22.1_5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 12:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5B1C8A2 for ; Thu, 2 Jan 2014 12:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A8E10110E for ; Thu, 2 Jan 2014 12:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02C01W8043720 for ; Thu, 2 Jan 2014 12:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02C01FV043719; Thu, 2 Jan 2014 12:00:01 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 12:00:01 GMT Message-Id: <201401021200.s02C01FV043719@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Leo Vandewoestijne Subject: Re: ports/184946: [UPDATE]: dns/knot 1.3.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Leo Vandewoestijne List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 12:00:01 -0000 The following reply was made to PR ports/184946; it has been noted by GNATS. From: Leo Vandewoestijne To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184946: [UPDATE]: dns/knot 1.3.4 Date: Thu, 2 Jan 2014 11:57:26 +0000 Hi, All perfect, thanks! (and apologies for my slow response) -- Met vriendelijke groet, With kind regards, Leo Vandewoestijne -- Sent from my Google Glass From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 12:00:15 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C303D92F; Thu, 2 Jan 2014 12:00:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 97C1A111E; Thu, 2 Jan 2014 12:00:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02C0FRI043813; Thu, 2 Jan 2014 12:00:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02C0Fds043812; Thu, 2 Jan 2014 12:00:15 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 12:00:15 GMT Message-Id: <201401021200.s02C0Fds043812@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gahr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185419: [PATCH] net/jags: Build with clang (and on 10) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 12:00:15 -0000 Synopsis: [PATCH] net/jags: Build with clang (and on 10) Responsible-Changed-From-To: freebsd-ports-bugs->gahr Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 12:00:15 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185419 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 14:01:26 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF81029C; Thu, 2 Jan 2014 14:01:26 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A3E671D0C; Thu, 2 Jan 2014 14:01:26 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02E1QbY074897; Thu, 2 Jan 2014 14:01:26 GMT (envelope-from mat@freefall.freebsd.org) Received: (from mat@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02E1QA2074896; Thu, 2 Jan 2014 14:01:26 GMT (envelope-from mat) Date: Thu, 2 Jan 2014 14:01:26 GMT Message-Id: <201401021401.s02E1QA2074896@freefall.freebsd.org> To: mat@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mat@FreeBSD.org From: mat@FreeBSD.org Subject: Re: ports/182816: print/pdftk needs runtime dep on gcc46 for libgcj.so.12 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 14:01:26 -0000 Synopsis: print/pdftk needs runtime dep on gcc46 for libgcj.so.12 Responsible-Changed-From-To: freebsd-ports-bugs->mat Responsible-Changed-By: mat Responsible-Changed-When: Thu Jan 2 14:01:26 UTC 2014 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=182816 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 14:01:27 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D7F0729E; Thu, 2 Jan 2014 14:01:27 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AC5B01D0D; Thu, 2 Jan 2014 14:01:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02E1R1P074941; Thu, 2 Jan 2014 14:01:27 GMT (envelope-from mat@freefall.freebsd.org) Received: (from mat@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02E1R47074940; Thu, 2 Jan 2014 14:01:27 GMT (envelope-from mat) Date: Thu, 2 Jan 2014 14:01:27 GMT Message-Id: <201401021401.s02E1R47074940@freefall.freebsd.org> To: mat@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, mat@FreeBSD.org From: mat@FreeBSD.org Subject: Re: ports/182817: print/pdftk always rebuilds in poudriere X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 14:01:27 -0000 Synopsis: print/pdftk always rebuilds in poudriere Responsible-Changed-From-To: freebsd-ports-bugs->mat Responsible-Changed-By: mat Responsible-Changed-When: Thu Jan 2 14:01:26 UTC 2014 Responsible-Changed-Why: Take http://www.freebsd.org/cgi/query-pr.cgi?pr=182817 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 15:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BDFEF53D for ; Thu, 2 Jan 2014 15:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 98E061345 for ; Thu, 2 Jan 2014 15:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02Fe0Aw095621 for ; Thu, 2 Jan 2014 15:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02Fe0pG095620; Thu, 2 Jan 2014 15:40:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 15:40:00 GMT Resent-Message-Id: <201401021540.s02Fe0pG095620@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, Hardy Schumacher Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64C9533F for ; Thu, 2 Jan 2014 15:30:54 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 383DA12FA for ; Thu, 2 Jan 2014 15:30:54 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s02FUrH8004066 for ; Thu, 2 Jan 2014 15:30:53 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s02FUrAw004035; Thu, 2 Jan 2014 15:30:53 GMT (envelope-from nobody) Message-Id: <201401021530.s02FUrAw004035@oldred.freebsd.org> Date: Thu, 2 Jan 2014 15:30:53 GMT From: Hardy Schumacher To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185420: [UPDATE] games/palomino to v20131213 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 15:40:00 -0000 >Number: 185420 >Category: ports >Synopsis: [UPDATE] games/palomino to v20131213 >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 Jan 02 15:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Hardy Schumacher >Release: FreeBSD-9.2 >Organization: >Environment: FreeBSD gamma.low.org 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255996: Thu Oct 3 20:40:04 CEST 2013 root@gamma.low.org:/usr/obj/usr/src/sys/LOW_GAMMA i386 >Description: Update for port games/palomino to v20131231 is available. It contains several bugfixes and improvements. Note: Port games/palomino has a direct dependency to port graphics/osg. So maybe this change should be done together with PR:185227: [UPDATE] graphics/osg to v3.2.0. >How-To-Repeat: n/a >Fix: Patch attached with submission follows: diff -ruN /usr/ports/games/palomino/Makefile ./palomino/Makefile --- /usr/ports/games/palomino/Makefile 2013-10-27 16:23:24.000000000 +0100 +++ ./palomino/Makefile 2014-01-02 16:20:41.000000000 +0100 @@ -2,9 +2,9 @@ # $FreeBSD: head/games/palomino/Makefile 331340 2013-10-23 00:19:37Z nemysis $ PORTNAME= palomino -PORTVERSION= 20130527 +PORTVERSION= 20131231 CATEGORIES= games -MASTER_SITES= ftp://ftp.palomino3d.org/sim/ +MASTER_SITES= http://www.palomino3d.org/software/${PORTNAME}/ DISTFILES= ${PORTNAME}_src_${PORTVERSION}.txz \ ${PORTNAME}_data_misc_${MISC_VER}.tar.bz2 \ ${PORTNAME}_data_models_${MODELS_VER}.tar.bz2 \ diff -ruN /usr/ports/games/palomino/distinfo ./palomino/distinfo --- /usr/ports/games/palomino/distinfo 2013-06-22 14:53:19.000000000 +0200 +++ ./palomino/distinfo 2014-01-02 16:20:51.000000000 +0100 @@ -1,5 +1,5 @@ -SHA256 (palomino_src_20130527.txz) = ae5be1a8e146030289ec75b2c44f0dde11641809ef57a572038cb746c64bceca -SIZE (palomino_src_20130527.txz) = 572468 +SHA256 (palomino_src_20131231.txz) = 9dfa62f3a340637518e346824643e75fa8f320fe0dee951e028df6b64b9d1e2c +SIZE (palomino_src_20131231.txz) = 572412 SHA256 (palomino_data_misc_20091027.tar.bz2) = f5b7183ae98a7842dcc626de388d396a50c98011745bc6afca7da402c13fdac8 SIZE (palomino_data_misc_20091027.tar.bz2) = 632943 SHA256 (palomino_data_models_20090615.tar.bz2) = 53acdb00a61cbfe5faca7c30276ae76a2d0c8a169eff292b54fc9701bfbe885a >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 15:40:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85C0256C; Thu, 2 Jan 2014 15:40:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5BCA81396; Thu, 2 Jan 2014 15:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02Fe9sK095761; Thu, 2 Jan 2014 15:40:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02Fe97j095760; Thu, 2 Jan 2014 15:40:09 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 15:40:09 GMT Message-Id: <201401021540.s02Fe97j095760@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nemysis@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185420: [UPDATE] games/palomino to v20131213 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 15:40:09 -0000 Synopsis: [UPDATE] games/palomino to v20131213 Responsible-Changed-From-To: freebsd-ports-bugs->nemysis Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 15:40:09 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185420 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 15:46:17 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 03AC5702; Thu, 2 Jan 2014 15:46:17 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C9D211497; Thu, 2 Jan 2014 15:46:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02FkG5w097587; Thu, 2 Jan 2014 15:46:16 GMT (envelope-from skreuzer@freefall.freebsd.org) Received: (from skreuzer@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02FkGvZ097586; Thu, 2 Jan 2014 15:46:16 GMT (envelope-from skreuzer) Date: Thu, 2 Jan 2014 15:46:16 GMT Message-Id: <201401021546.s02FkGvZ097586@freefall.freebsd.org> To: skreuzer@FreeBSD.org, skreuzer@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: skreuzer@FreeBSD.org Subject: Re: ports/180245: new port: sysutils/rmlint -- remove stale or duplicate files from the file system X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 15:46:17 -0000 Synopsis: new port: sysutils/rmlint -- remove stale or duplicate files from the file system Responsible-Changed-From-To: skreuzer->freebsd-ports-bugs Responsible-Changed-By: skreuzer Responsible-Changed-When: Thu Jan 2 15:45:31 UTC 2014 Responsible-Changed-Why: Kicking this back into the pool http://www.freebsd.org/cgi/query-pr.cgi?pr=180245 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 15:47:15 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E6A5676F; Thu, 2 Jan 2014 15:47:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BA79B149D; Thu, 2 Jan 2014 15:47:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02FlF9o097645; Thu, 2 Jan 2014 15:47:15 GMT (envelope-from skreuzer@freefall.freebsd.org) Received: (from skreuzer@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02FlFJj097644; Thu, 2 Jan 2014 15:47:15 GMT (envelope-from skreuzer) Date: Thu, 2 Jan 2014 15:47:15 GMT Message-Id: <201401021547.s02FlFJj097644@freefall.freebsd.org> To: skreuzer@FreeBSD.org, skreuzer@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: skreuzer@FreeBSD.org Subject: Re: ports/181438: shells/pdksh hangs when doing an ls X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 15:47:16 -0000 Synopsis: shells/pdksh hangs when doing an ls Responsible-Changed-From-To: skreuzer->freebsd-ports-bugs Responsible-Changed-By: skreuzer Responsible-Changed-When: Thu Jan 2 15:46:35 UTC 2014 Responsible-Changed-Why: Kicking this back into the pool as I am no longer the maintainer of this port http://www.freebsd.org/cgi/query-pr.cgi?pr=181438 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 15:50:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5512F888 for ; Thu, 2 Jan 2014 15:50:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 40AA41510 for ; Thu, 2 Jan 2014 15:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02Fo2CC097812 for ; Thu, 2 Jan 2014 15:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02Fo2CI097811; Thu, 2 Jan 2014 15:50:02 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 15:50:02 GMT Message-Id: <201401021550.s02Fo2CI097811@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/179843: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Thu, 02 Jan 2014 15:50:02 -0000 The following reply was made to PR ports/179843; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/179843: commit references a PR Date: Thu, 2 Jan 2014 15:43:28 +0000 (UTC) Author: ashish Date: Thu Jan 2 15:43:18 2014 New Revision: 338450 URL: http://svnweb.freebsd.org/changeset/ports/338450 Log: - Add PKGNAMESUFFIX - Add STAGE support - Use OptionsNG helpers - Rename X11TOOLKIT option to X11 - Add OPTIONS for emacs-nox11 slave - Install info manuals to their own directory to avoid conflicts[1][3][4] - Add a patch from upstream to fix building on non-X11 platforms[2] - Add a patch from upstream to fix building on 9.x and later platforms due to C11 support - Explicitly depend on GCC for i386 platforms, broken due to clang bug# 18171 - Mark port as MAKE_JOBS_SAFE PR: ports/183064[2], ports/181758[3], ports/179843[4] Reported by: Jay Borkenhagen [1] Added: head/editors/emacs/files/patch-c113322.diff (contents, props changed) head/editors/emacs/files/patch-src_xdisp.c (contents, props changed) Modified: head/editors/emacs-nox11/Makefile head/editors/emacs/Makefile head/editors/emacs/files/patch-src_sysdep.c head/editors/emacs/pkg-plist Modified: head/editors/emacs-nox11/Makefile ============================================================================== --- head/editors/emacs-nox11/Makefile Thu Jan 2 15:36:47 2014 (r338449) +++ head/editors/emacs-nox11/Makefile Thu Jan 2 15:43:18 2014 (r338450) @@ -1,33 +1,17 @@ # Created by: phoffman@proper.com # $FreeBSD$ -PORTREVISION= 8 PKGNAMESUFFIX= -nox11 -WITHOUT_CANNA= yes -WITHOUT_DBUS= yes -WITHOUT_GCONF= yes -WITHOUT_GTK2= yes -WITHOUT_JPEG= yes -WITHOUT_M17N= yes -WITHOUT_MOTIF= yes -WITHOUT_OTF= yes -WITHOUT_PNG= yes -WITHOUT_SVG= yes -WITHOUT_TIFF= yes -WITHOUT_XAW= yes -WITHOUT_XAW3D= yes -WITH_SYNC_INPUT= yes -WITHOUT_SCROLLBARS= yes -WITHOUT_X11= yes -WITHOUT_XFT= yes -WITHOUT_XIM= yes -WITHOUT_XPM= yes +PORTREVISION= 9 + +OPTIONS_EXCLUDE=GCONF GIF JPEG OTF M17N PNG SVG TIFF SYNC_INPUT GTK2 GTK3 \ + SCROLLBARS XFT XIM XPM MAGICK GSETTINGS X11 CANNA \ + XAW XAW3D MOTIF EMACS_NO_X11_SLAVE= yes MASTERDIR= ${.CURDIR}/../emacs LATEST_LINK= emacs-nox11 -NO_STAGE= yes .include "${MASTERDIR}/Makefile" Modified: head/editors/emacs/Makefile ============================================================================== --- head/editors/emacs/Makefile Thu Jan 2 15:36:47 2014 (r338449) +++ head/editors/emacs/Makefile Thu Jan 2 15:43:18 2014 (r338450) @@ -3,10 +3,15 @@ PORTNAME= emacs PORTVERSION= ${EMACS_VER} +PORTREVISION?= 1 PORTEPOCH= 3 CATEGORIES= editors ipv6 MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= ${PORTNAME} +PKGNAMESUFFIX?= 24 + +PATCH_SITE_SUBDIR+= ashish +PATCH_DIST_STRIP= -p1 MAINTAINER= ashish@FreeBSD.org COMMENT= GNU editing macros @@ -14,6 +19,7 @@ COMMENT= GNU editing macros LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING +MAKE_JOBS_SAFE= yes CONFLICTS= emacs-19.* emacs-21.* emacs-22.* emacs-23.* \ xemacs-[0-9]* xemacs-devel-[0-9]* \ @@ -25,13 +31,13 @@ USES= ncurses gmake pkgconfig USE_XZ= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ARGS= --localstatedir=/var +INFO_PATH= ${DATADIR_REL}/info +CONFIGURE_ARGS= --localstatedir=/var --without-compress-info WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} MAN1= ctags.1 ebrowse.1 emacs.1 emacsclient.1 etags.1 \ grep-changelog.1 -MANCOMPRESSED= yes -PLIST_SUB= EMACS_VER=${EMACS_VER} +PLIST_SUB= EMACS_VER=${EMACS_VER} INFODIR=${INFO_PATH} EMACS_DIRS= ${DATADIR}/${EMACS_VER}/leim ${DATADIR}/${EMACS_VER}/lisp ${DATADIR}/${EMACS_VER}/src \ ${PREFIX}/libexec/${PORTNAME} @@ -45,12 +51,11 @@ INFO= ada-mode auth autotype bovine cal org pcl-cvs pgg rcirc reftex remember sasl sc semantic ses sieve \ smtpmail speedbar srecode tramp url vip viper widget wisent woman -.if !defined(EMACS_NO_X11_SLAVE) CONFLICTS+= emacs-nox11-[0-9]* -OPTIONS_DEFINE= CANNA DBUS GCONF GIF JPEG M17N OTF PNG SOUND SOURCES SVG TIFF SYNC_INPUT SCROLLBARS XFT \ +OPTIONS_DEFINE= CANNA DBUS GCONF GIF JPEG M17N OTF PNG SOUND SOURCES SVG TIFF SYNC_INPUT SCROLLBARS X11 XFT \ XIM XML XPM MAGICK GNUTLS GSETTINGS -OPTIONS_SINGLE= X11TOOLKIT +OPTIONS_SINGLE= X11 CANNA_DESC= Canna support GSETTINGS_DESC= GSettings support (requires DBUS) @@ -64,183 +69,143 @@ XIM_DESC= X Input Method Support M17N_DESC= M17N support for text-shaping OTF_DESC= Opentype fonts suport -OPTIONS_SINGLE_X11TOOLKIT= GTK2 GTK3 XAW XAW3D MOTIF +OPTIONS_SINGLE_X11= GTK2 GTK3 XAW XAW3D MOTIF +.if !defined(EMACS_NO_X11_SLAVE) OPTIONS_DEFAULT=DBUS GCONF GIF GTK2 JPEG M17N OTF PNG SOUND SOURCES SVG TIFF SYNC_INPUT \ - SCROLLBARS XFT XIM XML XPM MAGICK GNUTLS GSETTINGS + SCROLLBARS XFT XIM XML XPM MAGICK GNUTLS GSETTINGS X11 +.else +OPTIONS_DEFAULT=SOURCES GNUTLS XML .endif -NO_STAGE= yes -.include - -DBUS_PTHREAD_LIBS= ${CC} -dumpspecs | ${GREP} -m 1 pthread: | ${SED} -e 's|^.*%{\!pg: %{pthread:||' -e 's|}.*$$||' || ${TRUE} +OPTIONS_SUB= SOURCES -.if ${PORT_OPTIONS:MCANNA} -PATCH_SITES+= http://distfiles.pirateparty.in/%SUBDIR%/ ${MASTER_SITE_LOCAL} -PATCH_SITE_SUBDIR+= ashish -PATCHFILES+= emacs24.3canna-20130321.diff.gz -PATCH_DIST_STRIP= -p1 -CONFIGURE_ARGS+= --with-canna \ +CANNA_CONFIGURE_ON= --with-canna \ --with-canna-includes=${LOCALBASE}/include \ --with-canna-libraries=${LOCALBASE}/lib -LIB_DEPENDS+= canna:${PORTSDIR}/japanese/canna-lib -.endif +CANNA_PATCH_SITES= http://distfiles.pirateparty.in/%SUBDIR%/ ${MASTER_SITE_LOCAL} +CANNA_PATCHFILES= emacs24.3canna-20130321.diff.gz +CANNA_LIB_DEPENDS= canna:${PORTSDIR}/japanese/canna-lib -.if defined(WITHOUT_X11) -CONFIGURE_ARGS+= --without-x -.else -USE_XORG= x11 -USE_GNOME= -INSTALLS_ICONS= yes +SOUND_CONFIGURE_WITH= sound -.if ${PORT_OPTIONS:MSVG} -USE_GNOME+= librsvg2 -.else -CONFIGURE_ARGS+= --without-rsvg -.endif +DBUS_LIB_DEPENDS= dbus-1:${PORTSDIR}/devel/dbus +DBUS_CONFIGURE_WITH= dbus -.if ${PORT_OPTIONS:MGTK2} -USE_GNOME+= gtk20 -CONFIGURE_ARGS+= --with-x-toolkit=gtk2 -.elif ${PORT_OPTIONS:MGTK3} -USE_GNOME+= gtk30 -CONFIGURE_ARGS+= --with-x-toolkit=gtk3 -.elif ${PORT_OPTIONS:MXAW3D} -LIB_DEPENDS+= Xaw3d:${PORTSDIR}/x11-toolkits/Xaw3d -CONFIGURE_ARGS+= --with-x-toolkit=athena -.elif ${PORT_OPTIONS:MXAW} -USE_XORG= xaw -CONFIGURE_ARGS+= --with-x-toolkit=athena --without-xaw3d -.elif ${PORT_OPTIONS:MMOTIF} -USES+= motif -CONFIGURE_ARGS+= --with-x-toolkit=motif -.endif +GNUTLS_LIB_DEPENDS= gnutls:${PORTSDIR}/security/gnutls +GNUTLS_CONFIGURE_WITH= gnutls -.if !${PORT_OPTIONS:MSCROLLBARS} -CONFIGURE_ARGS+= --without-toolkit-scroll-bars -.endif +XML_USE= GNOME=libxml2 +XML_CONFIGURE_WITH= xml2 -.if !${PORT_OPTIONS:MSYNC_INPUT} -CONFIGURE_ARGS+= --without-sync-input -.endif +SVG_USE= GNOME=librsvg2 +SVG_CONFIGURE_WITH= rsvg -.if ${PORT_OPTIONS:MJPEG} -LIB_DEPENDS+= jpeg:${PORTSDIR}/graphics/jpeg -.else -CONFIGURE_ARGS+= --without-jpeg -.endif +GTK2_USE= GNOME=gtk20 +GTK2_CONFIGURE_ON= --with-x-toolkit=gtk2 -.if ${PORT_OPTIONS:MTIFF} -LIB_DEPENDS+= tiff:${PORTSDIR}/graphics/tiff -.else -CONFIGURE_ARGS+= --without-tiff -.endif +GTK3_USE= GNOME=gtk30 +GTK3_CONFIGURE_ON= --with-x-toolkit=gtk3 -.if ${PORT_OPTIONS:MGIF} -LIB_DEPENDS+= gif:${PORTSDIR}/graphics/giflib -.else -CONFIGURE_ARGS+= --without-gif -.endif +XAW3D_LIB_DEPENDS= Xaw3d:${PORTSDIR}/x11-toolkits/Xaw3d +XAW3D_CONFIGURE_ON= --with-x-toolkit=athena -.if ${PORT_OPTIONS:MPNG} -LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png -.else -CONFIGURE_ARGS+= --without-png -.endif +XAW_USE= XORG=xaw +XAW_CONFIGURE_ON+= --with-x-toolkit=athena --without-xaw3d -.if ${PORT_OPTIONS:MXPM} -USE_XORG+= xpm -.else -CONFIGURE_ARGS+= --without-xpm -.endif +MOTIF_USES= motif +MOTIF_CONFIGURE_ON+= --with-x-toolkit=motif -.if ${PORT_OPTIONS:MXFT} -USE_XORG+= xft -LIB_DEPENDS+= freetype:${PORTSDIR}/print/freetype2 -CONFIGURE_ARGS+= --with-xft -.if ${PORT_OPTIONS:MM17N} -CONFIGURE_ARGS+= --with-m17n-flt -LIB_DEPENDS+= m17n:${PORTSDIR}/devel/m17n-lib -.else -CONFIGURE_ARGS+= --without-m17n-flt -.endif -.if ${PORT_OPTIONS:MOTF} -CONFIGURE_ARGS+= --with-otf -LIB_DEPENDS+= otf:${PORTSDIR}/print/libotf -.else -CONFIGURE_ARGS+= --without-libotf +SCROLLBARS_CONFIGURE_WITH= toolkit-scroll-bars + +SYNC_INPUT_CONFIGURE_WITH= sync-input + +JPEG_LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg +JPEG_CONFIGURE_WITH= jpeg + +TIFF_LIB_DEPENDS= tiff:${PORTSDIR}/graphics/tiff +TIFF_CONFIGURE_WITH= tiff + +GIF_LIB_DEPENDS= gif:${PORTSDIR}/graphics/giflib +GIF_CONFIGURE_WITH= gif + +PNG_LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png +PNG_CONFIGURE_WITH= png + +XPM_USE= XORG=xpm +XPM_CONFIGURE_WITH= xpm + +XFT_USE= XORG=xft +XFT_LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 +XFT_CONFIGURE_WITH= xft + +M17N_LIB_DEPENDS= m17n:${PORTSDIR}/devel/m17n-lib +M17N_CONFIGURE_WITH= m17n-flt + +OTF_LIB_DEPENDS= otf:${PORTSDIR}/print/libotf +OTF_CONFIGURE_WITH= libotf + +MAGICK_LIB_DEPENDS= MagickCore:${PORTSDIR}/graphics/ImageMagick +MAGICK_CONFIGURE_WITH= imagemagick + +GSETTINGS_USE= gnome=glib20 +GSETTINGS_CONFIGURE_WITH= gsettings + +GCONF_USE= gnome=gconf2 +GCONF_CONFIGURE_WITH= gconf + +XIM_CONFIGURE_WITH= xim + +.include + +# clang is broken on i386 platform in -O2, due to use of alloca +# and %esi as frame pointer register +.if ${ARCH} == "i386" +USE_GCC= any .endif -.else -CONFIGURE_ARGS+= --without-xft + +DBUS_PTHREAD_LIBS= ${CC} -dumpspecs | ${GREP} -m 1 pthread: | ${SED} -e 's|^.*%{\!pg: %{pthread:||' -e 's|}.*$$||' || ${TRUE} + +.if ${PORT_OPTIONS:MX11} + +CONFIGURE_ARGS+= --with-x +USE_XORG= x11 + +INSTALLS_ICONS= yes + +.if !${PORT_OPTIONS:MXFT} .if ${PORT_OPTIONS:MM17N} IGNORE= m17n support for text-shaping requires Xft. Please run 'make config' .elif ${PORT_OPTIONS:MOTF} IGNORE= opentype fonts support requires Xft. Please run 'make config' .endif -CONFIGURE_ARGS+= --without-otf --without-m17n-flt .endif -.if ${PORT_OPTIONS:MMAGICK} -LIB_DEPENDS+= MagickCore:${PORTSDIR}/graphics/ImageMagick -CONFIGURE_ARGS+= --with-imagemagick .else -CONFIGURE_ARGS+= --without-imagemagick -.endif -.if ${PORT_OPTIONS:MGSETTINGS} -USE_GNOME+= glib20 -CONFIGURE_ARGS+= --with-gsettings -.else -CONFIGURE_ARGS+= --without-gsettings -.endif - -.if ${PORT_OPTIONS:MGCONF} -USE_GNOME+= gconf2 -CONFIGURE_ARGS+= --with-gconf -.else -CONFIGURE_ARGS+= --without-gconf -.endif - -.if ${PORT_OPTIONS:MXIM} -CONFIGURE_ARGS+= --with-xim -.else -CONFIGURE_ARGS+= --without-xim -.endif +CONFIGURE_ARGS+= --without-x +.for OPT in SVG GTK2 GTK3 XAW3D XAW MOTIF SCROLLBARS JPEG TIFF GIF PNG XPM XFT M17N MAGICK GCONF GSETTINGS XIM +.if ${PORT_OPTIONS:M${OPT}} +IGNORE= ${OPT} option depends on X11 option .endif +.endfor -.if ${PORT_OPTIONS:MSOUND} -CONFIGURE_ARGS+= --with-sound -.else -CONFIGURE_ARGS+= --without-sound .endif -.if ${PORT_OPTIONS:MDBUS} -LIB_DEPENDS+= dbus-1:${PORTSDIR}/devel/dbus -CONFIGURE_ARGS+= --with-dbus -.else -CONFIGURE_ARGS+= --without-dbus +.if !${PORT_OPTIONS:MDBUS} .if ${PORT_OPTIONS:MGSETTINGS} IGNORE= GSettings support requires DBUS. Please run 'make config' .endif .endif -.if ${PORT_OPTIONS:MXML} -USE_GNOME+= libxml2 -CONFIGURE_ARGS+= --with-xml2 -.else -CONFIGURE_ARGS+= --without-xml2 -.endif +.include -.if ${PORT_OPTIONS:MGNUTLS} -LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls -CONFIGURE_ARGS+= --with-gnutls -.else -CONFIGURE_ARGS+= --without-gnutls +# Building with GCC 4.6+ requires it +.if ${ncurses_ARGS} == "port" +LDFLAGS+= -ltinfo .endif -.include - .if ${ARCH} == "ia64" BROKEN= Emacs 24.X does not currently build on ia64 .endif @@ -248,7 +213,7 @@ BROKEN= Emacs 24.X does not currently bu post-patch: @${RM} -f ${WRKSRC}/info/* @${REINPLACE_CMD} -e "s/%%EMACS_VER%%/${EMACS_VER}/g" -e "s/%%DATADIR%%/${DATADIR:C/\//\\\//g}/g" ${WRKSRC}/sources.el -.if defined(WITHOUT_X11) +.if ${PORT_OPTIONS:MX11} @${REINPLACE_CMD} -e 's/^Terminal=.*$$/Terminal=true/' ${WRKSRC}/etc/emacs.desktop .endif @@ -257,33 +222,29 @@ post-configure: add-plist-data: .for i in ${EMACS_DIRS} - @${FIND} ${i} -type f |${SED} -E -e 's,^${PREFIX}/,,g' >>${TMPPLIST} + @${FIND} ${STAGEDIR}${i} -type f |${SED} -E -e 's,^${STAGEDIR}${PREFIX}/,,g' >>${TMPPLIST} .endfor @${FIND} ${WRKSRC}/etc -type f |${SED} -E -e 's,^${WRKSRC},${DATADIR_REL}/${EMACS_VER},g' -e '/etc\/(\..*|ChangeLog|DOC)$$/d' >>${TMPPLIST} @${FIND} ${WRKSRC}/etc -type d -depth |${SED} -E -e 's,^${WRKSRC},@dirrm ${DATADIR_REL}/${EMACS_VER},g' >>${TMPPLIST} .for i in ${EMACS_DIRS} - @${FIND} ${i} -type d -depth |${SED} -E -e 's,^${PREFIX}/,@dirrm ,g' >>${TMPPLIST} + @${FIND} ${STAGEDIR}${i} -type d -depth |${SED} -E -e 's,^${STAGEDIR}${PREFIX}/,@dirrm ,g' >>${TMPPLIST} .endfor @${ECHO} "@unexec rmdir %D/${DATADIR_REL}/${EMACS_VER} 2>/dev/null || true" >>${TMPPLIST} -.if defined(WITH_SOURCES) -PLIST_SUB+= SOURCES="" - +.if ${PORT_OPTIONS:MSOURCES} post-install: - @${MKDIR} ${DATADIR}/${EMACS_VER}/src - @${INSTALL_DATA} ${WRKSRC}/src/*.[ch] ${DATADIR}/${EMACS_VER}/src - @${INSTALL_DATA} ${WRKSRC}/sources.el ${DATADIR}/${EMACS_VER}/site-lisp/site-start.el -.else -PLIST_SUB+= SOURCES="@comment " + @${MKDIR} ${STAGEDIR}${DATADIR}/${EMACS_VER}/src + @${INSTALL_DATA} ${WRKSRC}/src/*.[ch] ${STAGEDIR}${DATADIR}/${EMACS_VER}/src + @${INSTALL_DATA} ${WRKSRC}/sources.el ${STAGEDIR}${DATADIR}/${EMACS_VER}/site-lisp/site-start.el .endif pre-everything:: -.if !defined(WITHOUT_X11) +.if ${PORT_OPTIONS:MX11} @${ECHO_MSG} - @${ECHO_MSG} "====> To disable X11 support, define: WITHOUT_X11." + @${ECHO_MSG} "====> To disable X11 support, unset option: X11." @${ECHO_MSG} .endif -.if defined(WITH_CANNA) +.if ${PORT_OPTIONS:MCANNA} @${ECHO_MSG} "====> Canna support is not part of standard distribution" @${ECHO_MSG} "====> of GNU Emacs and is therefore not supported by GNU" @${ECHO_MSG} "====> Emacs development team." Added: head/editors/emacs/files/patch-c113322.diff ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/emacs/files/patch-c113322.diff Thu Jan 2 15:43:18 2014 (r338450) @@ -0,0 +1,276 @@ + +$FreeBSD$ + +Backport of changeset: 113322 +fixes bug: http://debbugs.gnu.org/14812 +committer: Paul Eggert +branch nick: trunk +timestamp: Sun 2013-07-07 23:15:38 -0700 +message: + Try to fix FreeBSD 9.1 porting problem. + + This incorporates the following merge from gnulib: + 2013-07-07 stdalign, verify: port to FreeBSD 9.1, to C11, and to C++11 + +--- lib/verify.h.orig ++++ lib/verify.h +@@ -18,7 +18,7 @@ + /* Written by Paul Eggert, Bruno Haible, and Jim Meyering. */ + + #ifndef _GL_VERIFY_H +-# define _GL_VERIFY_H ++#define _GL_VERIFY_H + + + /* Define _GL_HAVE__STATIC_ASSERT to 1 if _Static_assert works as per C11. +@@ -31,14 +31,24 @@ + Use this only with GCC. If we were willing to slow 'configure' + down we could also use it with other compilers, but since this + affects only the quality of diagnostics, why bother? */ +-# if (4 < __GNUC__ || (__GNUC__ == 4 && 6 <= __GNUC_MINOR__)) && !defined __cplusplus +-# define _GL_HAVE__STATIC_ASSERT 1 +-# endif ++#if (4 < __GNUC__ + (6 <= __GNUC_MINOR__) \ ++ && (201112L <= __STDC_VERSION__ || !defined __STRICT_ANSI__) \ ++ && !defined __cplusplus) ++# define _GL_HAVE__STATIC_ASSERT 1 ++#endif + /* The condition (99 < __GNUC__) is temporary, until we know about the + first G++ release that supports static_assert. */ +-# if (99 < __GNUC__) && defined __cplusplus +-# define _GL_HAVE_STATIC_ASSERT 1 +-# endif ++#if (99 < __GNUC__) && defined __cplusplus ++# define _GL_HAVE_STATIC_ASSERT 1 ++#endif ++ ++/* FreeBSD 9.1 , included by and lots of other ++ system headers, defines a conflicting _Static_assert that is no ++ better than ours; override it. */ ++#ifndef _GL_HAVE_STATIC_ASSERT ++# include ++# undef _Static_assert ++#endif + + /* Each of these macros verifies that its argument R is nonzero. To + be portable, R should be an integer constant expression. Unlike +@@ -141,50 +151,50 @@ + Use a template type to work around the problem. */ + + /* Concatenate two preprocessor tokens. */ +-# define _GL_CONCAT(x, y) _GL_CONCAT0 (x, y) +-# define _GL_CONCAT0(x, y) x##y ++#define _GL_CONCAT(x, y) _GL_CONCAT0 (x, y) ++#define _GL_CONCAT0(x, y) x##y + + /* _GL_COUNTER is an integer, preferably one that changes each time we + use it. Use __COUNTER__ if it works, falling back on __LINE__ + otherwise. __LINE__ isn't perfect, but it's better than a + constant. */ +-# if defined __COUNTER__ && __COUNTER__ != __COUNTER__ +-# define _GL_COUNTER __COUNTER__ +-# else +-# define _GL_COUNTER __LINE__ +-# endif ++#if defined __COUNTER__ && __COUNTER__ != __COUNTER__ ++# define _GL_COUNTER __COUNTER__ ++#else ++# define _GL_COUNTER __LINE__ ++#endif + + /* Generate a symbol with the given prefix, making it unique if + possible. */ +-# define _GL_GENSYM(prefix) _GL_CONCAT (prefix, _GL_COUNTER) ++#define _GL_GENSYM(prefix) _GL_CONCAT (prefix, _GL_COUNTER) + + /* Verify requirement R at compile-time, as an integer constant expression + that returns 1. If R is false, fail at compile-time, preferably + with a diagnostic that includes the string-literal DIAGNOSTIC. */ + +-# define _GL_VERIFY_TRUE(R, DIAGNOSTIC) \ +- (!!sizeof (_GL_VERIFY_TYPE (R, DIAGNOSTIC))) ++#define _GL_VERIFY_TRUE(R, DIAGNOSTIC) \ ++ (!!sizeof (_GL_VERIFY_TYPE (R, DIAGNOSTIC))) + +-# ifdef __cplusplus +-# if !GNULIB_defined_struct__gl_verify_type ++#ifdef __cplusplus ++# if !GNULIB_defined_struct__gl_verify_type + template + struct _gl_verify_type { + unsigned int _gl_verify_error_if_negative: w; + }; +-# define GNULIB_defined_struct__gl_verify_type 1 +-# endif +-# define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ +- _gl_verify_type<(R) ? 1 : -1> +-# elif defined _GL_HAVE__STATIC_ASSERT +-# define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ +- struct { \ +- _Static_assert (R, DIAGNOSTIC); \ +- int _gl_dummy; \ +- } +-# else +-# define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ +- struct { unsigned int _gl_verify_error_if_negative: (R) ? 1 : -1; } ++# define GNULIB_defined_struct__gl_verify_type 1 + # endif ++# define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ ++ _gl_verify_type<(R) ? 1 : -1> ++#elif defined _GL_HAVE__STATIC_ASSERT ++# define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ ++ struct { \ ++ _Static_assert (R, DIAGNOSTIC); \ ++ int _gl_dummy; \ ++ } ++#else ++# define _GL_VERIFY_TYPE(R, DIAGNOSTIC) \ ++ struct { unsigned int _gl_verify_error_if_negative: (R) ? 1 : -1; } ++#endif + + /* Verify requirement R at compile-time, as a declaration without a + trailing ';'. If R is false, fail at compile-time, preferably +@@ -193,23 +203,23 @@ + Unfortunately, unlike C11, this implementation must appear as an + ordinary declaration, and cannot appear inside struct { ... }. */ + +-# ifdef _GL_HAVE__STATIC_ASSERT +-# define _GL_VERIFY _Static_assert +-# else +-# define _GL_VERIFY(R, DIAGNOSTIC) \ +- extern int (*_GL_GENSYM (_gl_verify_function) (void)) \ +- [_GL_VERIFY_TRUE (R, DIAGNOSTIC)] +-# endif ++#ifdef _GL_HAVE__STATIC_ASSERT ++# define _GL_VERIFY _Static_assert ++#else ++# define _GL_VERIFY(R, DIAGNOSTIC) \ ++ extern int (*_GL_GENSYM (_gl_verify_function) (void)) \ ++ [_GL_VERIFY_TRUE (R, DIAGNOSTIC)] ++#endif + + /* _GL_STATIC_ASSERT_H is defined if this code is copied into assert.h. */ +-# ifdef _GL_STATIC_ASSERT_H +-# if !defined _GL_HAVE__STATIC_ASSERT && !defined _Static_assert +-# define _Static_assert(R, DIAGNOSTIC) _GL_VERIFY (R, DIAGNOSTIC) +-# endif +-# if !defined _GL_HAVE_STATIC_ASSERT && !defined static_assert +-# define static_assert _Static_assert /* C11 requires this #define. */ +-# endif ++#ifdef _GL_STATIC_ASSERT_H ++# if !defined _GL_HAVE__STATIC_ASSERT && !defined _Static_assert ++# define _Static_assert(R, DIAGNOSTIC) _GL_VERIFY (R, DIAGNOSTIC) ++# endif ++# if !defined _GL_HAVE_STATIC_ASSERT && !defined static_assert ++# define static_assert _Static_assert /* C11 requires this #define. */ + # endif ++#endif + + /* @assert.h omit start@ */ + +@@ -227,18 +237,18 @@ + + verify_true is obsolescent; please use verify_expr instead. */ + +-# define verify_true(R) _GL_VERIFY_TRUE (R, "verify_true (" #R ")") ++#define verify_true(R) _GL_VERIFY_TRUE (R, "verify_true (" #R ")") + + /* Verify requirement R at compile-time. Return the value of the + expression E. */ + +-# define verify_expr(R, E) \ +- (_GL_VERIFY_TRUE (R, "verify_expr (" #R ", " #E ")") ? (E) : (E)) ++#define verify_expr(R, E) \ ++ (_GL_VERIFY_TRUE (R, "verify_expr (" #R ", " #E ")") ? (E) : (E)) + + /* Verify requirement R at compile-time, as a declaration without a + trailing ';'. */ + +-# define verify(R) _GL_VERIFY (R, "verify (" #R ")") ++#define verify(R) _GL_VERIFY (R, "verify (" #R ")") + + /* @assert.h omit end@ */ + + +--- lib/stdalign.in.h.orig ++++ lib/stdalign.in.h +@@ -41,13 +41,28 @@ + are 4 unless the option '-malign-double' is used. + + The result cannot be used as a value for an 'enum' constant, if you +- want to be portable to HP-UX 10.20 cc and AIX 3.2.5 xlc. */ ++ want to be portable to HP-UX 10.20 cc and AIX 3.2.5 xlc. ++ ++ Include for offsetof. */ + #include +-#if defined __cplusplus ++ ++/* FreeBSD 9.1 , included by and lots of other ++ standard headers, defines conflicting implementations of _Alignas ++ and _Alignof that are no better than ours; override them. */ ++#undef _Alignas ++#undef _Alignof ++ ++#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112 ++# ifdef __cplusplus ++# if 201103 <= __cplusplus ++# define _Alignof(type) alignof (type) ++# else + template struct __alignof_helper { char __a; __t __b; }; +-# define _Alignof(type) offsetof (__alignof_helper, __b) +-#else +-# define _Alignof(type) offsetof (struct { char __a; type __b; }, __b) ++# define _Alignof(type) offsetof (__alignof_helper, __b) ++# endif ++# else ++# define _Alignof(type) offsetof (struct { char __a; type __b; }, __b) ++# endif + #endif + #define alignof _Alignof + #define __alignof_is_defined 1 +@@ -77,12 +92,16 @@ + + */ + +-#if __GNUC__ || __IBMC__ || __IBMCPP__ || 0x5110 <= __SUNPRO_C +-# define _Alignas(a) __attribute__ ((__aligned__ (a))) +-#elif 1300 <= _MSC_VER +-# define _Alignas(a) __declspec (align (a)) ++#if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112 ++# if defined __cplusplus && 201103 <= __cplusplus ++# define _Alignas(a) alignas (a) ++# elif __GNUC__ || __IBMC__ || __IBMCPP__ || __ICC || 0x5110 <= __SUNPRO_C ++# define _Alignas(a) __attribute__ ((__aligned__ (a))) ++# elif 1300 <= _MSC_VER ++# define _Alignas(a) __declspec (align (a)) ++# endif + #endif +-#ifdef _Alignas ++#if defined _Alignas || (defined __STDC_VERSION && 201112 <= __STDC_VERSION__) + # define alignas _Alignas + # define __alignas_is_defined 1 + #endif +--- m4/stdalign.m4.orig ++++ m4/stdalign.m4 +@@ -31,7 +31,8 @@ + + /* Test _Alignas only on platforms where gnulib can help. */ + #if \ +- (__GNUC__ || __IBMC__ || __IBMCPP__ \ ++ ((defined __cplusplus && 201103 <= __cplusplus) \ ++ || __GNUC__ || __IBMC__ || __IBMCPP__ || __ICC \ + || 0x5110 <= __SUNPRO_C || 1300 <= _MSC_VER) + int alignas (8) alignas_int = 1; + char test_alignas[_Alignof (alignas_int) == 8 ? 1 : -1]; +--- ChangeLog.orig ++++ ChangeLog +@@ -1,3 +1,9 @@ ++2013-07-08 Paul Eggert ++ ++ Try to fix FreeBSD 9.1 porting problem (Bug#14812). ++ This incorporates the following merge from gnulib: ++ 2013-07-07 stdalign, verify: port to FreeBSD 9.1, to C11, and to C++11 ++ + 2013-03-11 Glenn Morris + + * Verson 24.3 released. Modified: head/editors/emacs/files/patch-src_sysdep.c ============================================================================== --- head/editors/emacs/files/patch-src_sysdep.c Thu Jan 2 15:36:47 2014 (r338449) +++ head/editors/emacs/files/patch-src_sysdep.c Thu Jan 2 15:43:18 2014 (r338450) @@ -3,24 +3,29 @@ $FreeBSD$ --- src/sysdep.c.orig +++ src/sysdep.c -@@ -46,7 +46,15 @@ - #endif +@@ -37,6 +37,20 @@ + #include "sysselect.h" + #include "blockinput.h" - #ifdef __FreeBSD__ ++#ifdef __FreeBSD__ +#include +/* machine/frame.h in Sparc/ARM has 'struct frame' which conflicts with Emacs' 'struct frame', so rename it */ +#if defined(__sparc__) || defined(__arm__) +#define frame freebsd_sparc_frame +#endif - #include ++#include +#if defined(__sparc__) || defined(__arm__) +#undef frame +#endif - #include - #include - #endif -@@ -2691,6 +2699,40 @@ - return proclist; ++#include ++#include ++#endif ++ + #ifdef WINDOWSNT + #define read sys_read + #define write sys_write +@@ -2529,6 +2543,40 @@ + return proclist; } +#elif defined (__FreeBSD__) @@ -60,7 +65,7 @@ $FreeBSD$ /* The WINDOWSNT implementation is in w32.c. The MSDOS implementation is in dosfns.c. */ #elif !defined (WINDOWSNT) && !defined (MSDOS) -@@ -3402,6 +3444,176 @@ +@@ -3079,6 +3127,176 @@ return attrs; } Added: head/editors/emacs/files/patch-src_xdisp.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/emacs/files/patch-src_xdisp.c Thu Jan 2 15:43:18 2014 (r338450) @@ -0,0 +1,23 @@ +This patch is taken from upstream repository r114482. + + +$FreeBSD$ + +--- src/xdisp.c.orig ++++ src/xdisp.c +@@ -6870,6 +6870,7 @@ + } + } + ++#ifdef HAVE_WINDOW_SYSTEM + /* Adjust face id for a multibyte character. There are no multibyte + character in unibyte text. */ + if ((it->what == IT_CHARACTER || it->what == IT_COMPOSITION) +@@ -6910,6 +6911,7 @@ + it->face_id = FACE_FOR_CHAR (it->f, face, c, pos, it->string); + } + } ++#endif /* HAVE_WINDOW_SYSTEM */ + + done: + /* Is this character the last one of a run of characters with Modified: head/editors/emacs/pkg-plist ============================================================================== --- head/editors/emacs/pkg-plist Thu Jan 2 15:36:47 2014 (r338449) +++ head/editors/emacs/pkg-plist Thu Jan 2 15:43:18 2014 (r338450) @@ -5,10 +5,17 @@ bin/emacs-%%EMACS_VER%% bin/emacsclient bin/etags bin/grep-changelog +man/man1/grep-changelog.1.gz +man/man1/etags.1.gz +man/man1/ctags.1.gz +man/man1/ebrowse.1.gz +man/man1/emacsclient.1.gz +man/man1/emacs.1.gz share/applications/emacs.desktop %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/site-lisp/site-start.el %%DATADIR%%/%%EMACS_VER%%/site-lisp/subdirs.el %%DATADIR%%/site-lisp/subdirs.el +%%INFODIR%%/dir share/icons/hicolor/128x128/apps/emacs.png share/icons/hicolor/16x16/apps/emacs.png share/icons/hicolor/24x24/apps/emacs.png @@ -16,6 +23,7 @@ share/icons/hicolor/32x32/apps/emacs.png share/icons/hicolor/48x48/apps/emacs.png share/icons/hicolor/scalable/apps/emacs.svg share/icons/hicolor/scalable/mimetypes/emacs-document.svg +@dirrmtry %%INFODIR%% @dirrmtry %%DATADIR%%/%%EMACS_VER%%/site-lisp @dirrmtry share/icons/hicolor/scalable/mimetypes @dirrmtry share/icons/hicolor/scalable/apps _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 16:10:56 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BA626C28; Thu, 2 Jan 2014 16:10:56 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 907421763; Thu, 2 Jan 2014 16:10:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02GAuu3003689; Thu, 2 Jan 2014 16:10:56 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02GAudZ003688; Thu, 2 Jan 2014 16:10:56 GMT (envelope-from arved) Date: Thu, 2 Jan 2014 16:10:56 GMT Message-Id: <201401021610.s02GAudZ003688@freefall.freebsd.org> To: thomas.e.zander@googlemail.com, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: arved@FreeBSD.org Subject: Re: ports/185145: Adjust legal status of mplayer in LEGAL file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 16:10:56 -0000 Synopsis: Adjust legal status of mplayer in LEGAL file State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Thu Jan 2 16:10:51 UTC 2014 State-Changed-Why: Committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=185145 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 16:15:36 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8867E07; Thu, 2 Jan 2014 16:15:36 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BD494179A; Thu, 2 Jan 2014 16:15:36 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02GFa8l004741; Thu, 2 Jan 2014 16:15:36 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02GFaqx004740; Thu, 2 Jan 2014 16:15:36 GMT (envelope-from arved) Date: Thu, 2 Jan 2014 16:15:36 GMT Message-Id: <201401021615.s02GFaqx004740@freefall.freebsd.org> To: stb@lassiut.de, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: arved@FreeBSD.org Subject: Re: ports/182979: audio/cantus: endless loop in configure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 16:15:37 -0000 Synopsis: audio/cantus: endless loop in configure State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Thu Jan 2 16:15:06 UTC 2014 State-Changed-Why: Closed, port is already marked as NO_PACKAGE http://www.freebsd.org/cgi/query-pr.cgi?pr=182979 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 16:17:20 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B57A0F5D; Thu, 2 Jan 2014 16:17:20 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 891A417B4; Thu, 2 Jan 2014 16:17:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02GHKBY004810; Thu, 2 Jan 2014 16:17:20 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02GHKdi004809; Thu, 2 Jan 2014 16:17:20 GMT (envelope-from arved) Date: Thu, 2 Jan 2014 16:17:20 GMT Message-Id: <201401021617.s02GHKdi004809@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, stefan@FreeBSD.org From: arved@FreeBSD.org Subject: Re: ports/182923: some ports still require WITH_PKGNG=1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 16:17:20 -0000 Synopsis: some ports still require WITH_PKGNG=1 Responsible-Changed-From-To: freebsd-ports-bugs->stefan Responsible-Changed-By: arved Responsible-Changed-When: Thu Jan 2 16:17:02 UTC 2014 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=182923 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 16:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 47468C1 for ; Thu, 2 Jan 2014 16:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 341F517E1 for ; Thu, 2 Jan 2014 16:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02GK0BK004936 for ; Thu, 2 Jan 2014 16:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02GK0IH004935; Thu, 2 Jan 2014 16:20:00 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 16:20:00 GMT Message-Id: <201401021620.s02GK0IH004935@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/185145: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Thu, 02 Jan 2014 16:20:01 -0000 The following reply was made to PR ports/185145; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/185145: commit references a PR Date: Thu, 2 Jan 2014 16:10:35 +0000 (UTC) Author: arved Date: Thu Jan 2 16:10:28 2014 New Revision: 338452 URL: http://svnweb.freebsd.org/changeset/ports/338452 Log: Remove entry for mplayer, it is no longer restricted PR: 185145 Submitted by: Thomas Zander Modified: head/LEGAL Modified: head/LEGAL ============================================================================== --- head/LEGAL Thu Jan 2 15:55:37 2014 (r338451) +++ head/LEGAL Thu Jan 2 16:10:28 2014 (r338452) @@ -184,7 +184,6 @@ mikachan-ttfonts/ver*.* japanese/mikacha mindfocus-* games/mindfocus Contains commercial character data mindterm-* security/mindterm-binary Do not sell for profit molden* biology/molden Free for academic, non-profit usage; do not redistribute source and executable -MPlayer* multimedia/mplayer Restricted binary distribution msql-* databases/msql Not free for commercial organizations mypaedia-* japanese/mypaedia-fpw The original dictionary is not free ncftpd-* ftp/ncftpd 30 day evaluation license _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 16:20:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BFA90C2 for ; Thu, 2 Jan 2014 16:20:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AC95E17E2 for ; Thu, 2 Jan 2014 16:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02GK2Ks004943 for ; Thu, 2 Jan 2014 16:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02GK2tU004942; Thu, 2 Jan 2014 16:20:02 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 16:20:02 GMT Message-Id: <201401021620.s02GK2tU004942@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Morten Kristensen Subject: Re: ports/185307: x11/dzen2 staging X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Morten Kristensen List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 16:20:02 -0000 The following reply was made to PR ports/185307; it has been noted by GNATS. From: Morten Kristensen To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/185307: x11/dzen2 staging Date: Thu, 2 Jan 2014 17:07:36 +0100 I agree with the change. Thanks. On Dec 30, 2013, at 21:10, Edwin Groothuis wrote: > Maintainer of x11/dzen2, > > Please note that PR ports/185307 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/185307 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 16:23:59 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 686748B7; Thu, 2 Jan 2014 16:23:59 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2EF451898; Thu, 2 Jan 2014 16:23:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02GNxon006670; Thu, 2 Jan 2014 16:23:59 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02GNwCH006669; Thu, 2 Jan 2014 16:23:58 GMT (envelope-from arved) Date: Thu, 2 Jan 2014 16:23:58 GMT Message-Id: <201401021623.s02GNwCH006669@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, kde@FreeBSD.org From: arved@FreeBSD.org Subject: Re: ports/180407: x11-fm/dolphin in kde-4.10.5 will cause reboot X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 16:23:59 -0000 Synopsis: x11-fm/dolphin in kde-4.10.5 will cause reboot Responsible-Changed-From-To: freebsd-ports-bugs->kde Responsible-Changed-By: arved Responsible-Changed-When: Thu Jan 2 16:23:27 UTC 2014 Responsible-Changed-Why: Despite the subject, i think this is about the kde4 dolphin so over to kde@ http://www.freebsd.org/cgi/query-pr.cgi?pr=180407 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 16:27:12 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15945A48; Thu, 2 Jan 2014 16:27:12 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DC63E18B2; Thu, 2 Jan 2014 16:27:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02GRBxl007321; Thu, 2 Jan 2014 16:27:11 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02GRAeP007320; Thu, 2 Jan 2014 16:27:10 GMT (envelope-from arved) Date: Thu, 2 Jan 2014 16:27:10 GMT Message-Id: <201401021627.s02GRAeP007320@freefall.freebsd.org> To: wood_elf@126.com, arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: arved@FreeBSD.org Subject: Re: ports/184312: Graphics/dri-9.1.6_3,2 failed to build X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 16:27:12 -0000 Synopsis: Graphics/dri-9.1.6_3,2 failed to build State-Changed-From-To: open->closed State-Changed-By: arved State-Changed-When: Thu Jan 2 16:26:58 UTC 2014 State-Changed-Why: Closed on submitters request http://www.freebsd.org/cgi/query-pr.cgi?pr=184312 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 16:28:31 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D89EFBD5; Thu, 2 Jan 2014 16:28:31 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AC93B18C2; Thu, 2 Jan 2014 16:28:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02GSVRO007427; Thu, 2 Jan 2014 16:28:31 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02GSViI007426; Thu, 2 Jan 2014 16:28:31 GMT (envelope-from arved) Date: Thu, 2 Jan 2014 16:28:31 GMT Message-Id: <201401021628.s02GSViI007426@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, x11@FreeBSD.org From: arved@FreeBSD.org Subject: Re: ports/184302: graphics/dri-9.1.6_3, 2 gallium/auxiliary/util/Makefile: No such file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 16:28:31 -0000 Synopsis: graphics/dri-9.1.6_3,2 gallium/auxiliary/util/Makefile: No such file Responsible-Changed-From-To: freebsd-ports-bugs->x11 Responsible-Changed-By: arved Responsible-Changed-When: Thu Jan 2 16:28:16 UTC 2014 Responsible-Changed-Why: over to maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=184302 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 16:30:22 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CD86FC80; Thu, 2 Jan 2014 16:30:22 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A224818E2; Thu, 2 Jan 2014 16:30:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02GUMrL007775; Thu, 2 Jan 2014 16:30:22 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02GUMmJ007774; Thu, 2 Jan 2014 16:30:22 GMT (envelope-from arved) Date: Thu, 2 Jan 2014 16:30:22 GMT Message-Id: <201401021630.s02GUMmJ007774@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, x11@FreeBSD.org From: arved@FreeBSD.org Subject: Re: ports/183304: [patch] graphics/dri on armv6 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 16:30:22 -0000 Synopsis: [patch] graphics/dri on armv6 Responsible-Changed-From-To: freebsd-ports-bugs->x11 Responsible-Changed-By: arved Responsible-Changed-When: Thu Jan 2 16:30:07 UTC 2014 Responsible-Changed-Why: over to maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=183304 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 16:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6AC252DC for ; Thu, 2 Jan 2014 16:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3D73E19B5 for ; Thu, 2 Jan 2014 16:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02Ge165009669 for ; Thu, 2 Jan 2014 16:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02Ge1BN009668; Thu, 2 Jan 2014 16:40:01 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 16:40:01 GMT Message-Id: <201401021640.s02Ge1BN009668@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: =?ISO-8859-1?Q?Tilman_Keskin=F6z?= Subject: Re: ports/185385: portsnap fetch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?ISO-8859-1?Q?Tilman_Keskin=F6z?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 16:40:01 -0000 The following reply was made to PR ports/185385; it has been noted by GNATS. From: =?ISO-8859-1?Q?Tilman_Keskin=F6z?= To: bug-followup@FreeBSD.org, nezamabadimohamad@gmail.com Cc: Subject: Re: ports/185385: portsnap fetch Date: Thu, 02 Jan 2014 17:34:47 +0100 Try cleaning /var/db/portsnap From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 17:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF851AB8 for ; Thu, 2 Jan 2014 17:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 907AC1B12 for ; Thu, 2 Jan 2014 17:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02H00aw013422 for ; Thu, 2 Jan 2014 17:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02H00AC013421; Thu, 2 Jan 2014 17:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 17:00:00 GMT Resent-Message-Id: <201401021700.s02H00AC013421@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, Hardy Schumacher Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2531193A for ; Thu, 2 Jan 2014 16:51:42 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 115621AD4 for ; Thu, 2 Jan 2014 16:51:42 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s02GpfNx096497 for ; Thu, 2 Jan 2014 16:51:41 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s02Gpfxj096490; Thu, 2 Jan 2014 16:51:41 GMT (envelope-from nobody) Message-Id: <201401021651.s02Gpfxj096490@oldred.freebsd.org> Date: Thu, 2 Jan 2014 16:51:41 GMT From: Hardy Schumacher To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185423: [UPDATE] java/netbeans, add license information X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 17:00:00 -0000 >Number: 185423 >Category: ports >Synopsis: [UPDATE] java/netbeans, add license information >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 Jan 02 17:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Hardy Schumacher >Release: FreeBSD-9.2 >Organization: >Environment: FreeBSD gamma.low.org 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255996: Thu Oct 3 20:40:04 CEST 2013 root@gamma.low.org:/usr/obj/usr/src/sys/LOW_GAMMA i386 >Description: Add license information to port java/netbeans. >How-To-Repeat: n/a >Fix: Patch attached with submission follows: diff -ruN /usr/ports/java/netbeans/Makefile ./netbeans/Makefile --- /usr/ports/java/netbeans/Makefile 2013-11-07 19:16:41.000000000 +0100 +++ ./netbeans/Makefile 2014-01-02 16:57:27.000000000 +0100 @@ -11,6 +11,9 @@ MAINTAINER= gahr@FreeBSD.org COMMENT= A full-featured integrated environment for Java +LICENSE= CDDL GPLv2 +LICENSE_COMB= multi + USE_ZIP= yes USE_JAVA= yes JAVA_VERSION= 1.7+ @@ -26,7 +29,7 @@ ${DATADIR}/nb/netbeans.png \ ${PORTNAME}-${PORTVERSION} \ "Development;" \ - ${FALSE} + false post-patch: @${REINPLACE_CMD} -i "" -e '57s|#||;57s|/path/to/jdk|${JAVA_HOME}|' \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 17:00:07 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D29C9AE5; Thu, 2 Jan 2014 17:00:07 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A7C0F1B13; Thu, 2 Jan 2014 17:00:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02H07qH013573; Thu, 2 Jan 2014 17:00:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02H076U013572; Thu, 2 Jan 2014 17:00:07 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 17:00:07 GMT Message-Id: <201401021700.s02H076U013572@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gahr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185423: [UPDATE] java/netbeans, add license information X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 17:00:07 -0000 Synopsis: [UPDATE] java/netbeans, add license information Responsible-Changed-From-To: freebsd-ports-bugs->gahr Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 17:00:07 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185423 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 17:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE630D83 for ; Thu, 2 Jan 2014 17:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 91C861CEE for ; Thu, 2 Jan 2014 17:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02HA1sq015698 for ; Thu, 2 Jan 2014 17:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02HA1rY015697; Thu, 2 Jan 2014 17:10:01 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 17:10:01 GMT Message-Id: <201401021710.s02HA1rY015697@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Tor Halvard Furulund Subject: Re: ports/184726: Makefile error in net/miniupnpd port for PF patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Tor Halvard Furulund List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 17:10:01 -0000 The following reply was made to PR ports/184726; it has been noted by GNATS. From: Tor Halvard Furulund To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184726: Makefile error in net/miniupnpd port for PF patch Date: Thu, 02 Jan 2014 17:00:30 +0100 Hi, I, as maintainer of miniupnpd, approve and recommend this patch. Sorry for the delayed answer. -- Tor Halvard Furulund From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 18:30:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 92F4BCFF for ; Thu, 2 Jan 2014 18:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D65213C1 for ; Thu, 2 Jan 2014 18:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02IU0WY040073 for ; Thu, 2 Jan 2014 18:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02IU0Jq040072; Thu, 2 Jan 2014 18:30:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 18:30:00 GMT Resent-Message-Id: <201401021830.s02IU0Jq040072@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 Volat Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BFF38A17 for ; Thu, 2 Jan 2014 18:23:57 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 91DB81381 for ; Thu, 2 Jan 2014 18:23:57 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s02INu6X021008 for ; Thu, 2 Jan 2014 18:23:56 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s02INukV020993; Thu, 2 Jan 2014 18:23:56 GMT (envelope-from nobody) Message-Id: <201401021823.s02INukV020993@oldred.freebsd.org> Date: Thu, 2 Jan 2014 18:23:56 GMT From: Matthieu Volat To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185424: [patch] graphic/lensfun upgrade & stagedir support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 18:30:00 -0000 >Number: 185424 >Category: ports >Synopsis: [patch] graphic/lensfun upgrade & stagedir support >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 Jan 02 18:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Matthieu Volat >Release: 10.0-RC4 >Organization: >Environment: FreeBSD freedom.alkumuna.eu 10.0-RC4 FreeBSD 10.0-RC4 #0 r260130: Tue Dec 31 17:10:01 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: lensfun 0.2.8 was released last october, while a minor update regarding code, it add many entries in the lenses db and so would be very appreciated in the ports tree. >How-To-Repeat: - >Fix: here is a patch to update the version, the main changes are PORTVERSION and using BERLIOS as MASTERSITE with fetch(1) options that allows redirection, the means of retrieving sources having changed a bit. it also add stagedir support. Patch attached with submission follows: diff -ru lensfun.orig/Makefile lensfun/Makefile --- lensfun.orig/Makefile 2013-12-14 11:51:26.000000000 +0100 +++ lensfun/Makefile 2014-01-02 19:17:27.000000000 +0100 @@ -2,9 +2,9 @@ # $FreeBSD: graphics/lensfun/Makefile 336435 2013-12-14 10:51:26Z mva $ PORTNAME= lensfun -PORTVERSION= 0.2.7 +PORTVERSION= 0.2.8 CATEGORIES= graphics -MASTER_SITES= SF/lensfun.berlios +MASTER_SITES= BERLIOS MAINTAINER= danfe@FreeBSD.org COMMENT= Library for fixing lens geometry distortions @@ -13,6 +13,7 @@ LIB_DEPENDS= png15:${PORTSDIR}/graphics/png +FETCH_ARGS= -Fpr USES= pkgconfig USE_BZIP2= yes USE_GMAKE= yes @@ -40,9 +41,8 @@ ${WRKSRC}/build/tibs/compiler/gcc.mak ${REINPLACE_CMD} -e '/GROUPS/s| DOCS||' ${WRKSRC}/build/tibs/rules.mak -NO_STAGE= yes post-install: ${LN} -sf lib${PORTNAME}.so \ - ${PREFIX}/lib/lib${PORTNAME}.so.${LIBVERSION} + ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so.${LIBVERSION} .include diff -ru lensfun.orig/distinfo lensfun/distinfo --- lensfun.orig/distinfo 2013-03-05 08:57:10.000000000 +0100 +++ lensfun/distinfo 2014-01-02 19:12:36.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (lensfun-0.2.7.tar.bz2) = 3ddf0747bd6af1ec7d722f8c45dafdd8adfb96c081492b216c14d89f82806477 -SIZE (lensfun-0.2.7.tar.bz2) = 552960 +SHA256 (lensfun-0.2.8.tar.bz2) = f88f97fbc78259a2b2edddef295caf50770901107c8469e54bb5e9699faa1a48 +SIZE (lensfun-0.2.8.tar.bz2) = 628913 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 19:12:25 2014 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6223DFAD; Thu, 2 Jan 2014 19:12:25 +0000 (UTC) Received: from nordhaug.priv.no (mail.nordhaug.priv.no [37.44.175.18]) by mx1.freebsd.org (Postfix) with ESMTP id 1A4FA1813; Thu, 2 Jan 2014 19:12:23 +0000 (UTC) Received: from nordhaug.priv.no (localhost [127.0.0.1]) by nordhaug.priv.no (Postfix) with ESMTP id C4B238ACD6; Thu, 2 Jan 2014 20:04:29 +0100 (CET) X-Virus-Scanned: amavisd-new at nordhaug.priv.no 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 WyAuAP0cg0u0; Thu, 2 Jan 2014 20:04:27 +0100 (CET) Received: by nordhaug.priv.no (Postfix, from userid 1002) id 652258ACD1; Thu, 2 Jan 2014 20:04:27 +0100 (CET) Date: Thu, 2 Jan 2014 20:04:27 +0100 From: Hans Fredrik Nordhaug To: amdmi3@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/184979: [MAINTAINER] www/piwik: update to 2.0 Message-ID: <20140102190427.GA74867@nordhaug.priv.no> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline User-Agent: Mutt/1.5.22 (2013-10-16) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 19:12:25 -0000 This is the third time I'm trying to respond. (The two first tries was from work - using a mail server located under himolde.no.) I'm always using "port test" before submitting port update. I even updated to "Port Tools 0.99_11", but still the missing dirrm wasn't reported. Argh. Anyway, feel free to add the missing dirrm to pkg-plist. Regards, Hans Nordhaug From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 21:00:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7FB08B8C for ; Thu, 2 Jan 2014 21:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 422331240 for ; Thu, 2 Jan 2014 21:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02L08JY070835 for ; Thu, 2 Jan 2014 21:00:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02L08NM070834; Thu, 2 Jan 2014 21:00:08 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 21:00:08 GMT Resent-Message-Id: <201401022100.s02L08NM070834@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, Radim Kolar Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 721F748F for ; Thu, 2 Jan 2014 20:52:59 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5E2B311E9 for ; Thu, 2 Jan 2014 20:52:59 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s02KqwHO015607 for ; Thu, 2 Jan 2014 20:52:58 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s02KqwDY015597; Thu, 2 Jan 2014 20:52:58 GMT (envelope-from nobody) Message-Id: <201401022052.s02KqwDY015597@oldred.freebsd.org> Date: Thu, 2 Jan 2014 20:52:58 GMT From: Radim Kolar To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185426: distcc: missing icom X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 21:00:08 -0000 >Number: 185426 >Category: ports >Synopsis: distcc: missing icom >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 Jan 02 21:00:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Radim Kolar >Release: 10.0 >Organization: >Environment: >Description: distcc-gtk is missing icon ===> The following configuration options are available for distcc-gtk-3.1_4: AVAHI=off: Avahi Zeroconf/mDNS/Bonjour support COMPILER_LINKS=off GNOME=off: GUI monitor based on GNOME GTK=on: Build GUI monitor based on GTK IPV6=on: IPv6 protocol support $ distccmon-gnome (distccmon-gnome:64145): Gtk-WARNING **: Error loading icon from file '/usr/local/share/distcc/distccmon-gnome-icon.png': Failed to open file '/usr/local/share/distcc/distccmon-gnome-icon.png': No such file or directory >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 21:51:10 2014 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BDF4E6EF for ; Thu, 2 Jan 2014 21:51:10 +0000 (UTC) Received: from mail-gw.glidecom.se (mail-gw.glidecom.se [89.221.241.7]) by mx1.freebsd.org (Postfix) with ESMTP id 815AB16B6 for ; Thu, 2 Jan 2014 21:51:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail-gw.glidecom.se (Postfix) with ESMTP id DA56915B4D52 for ; Thu, 2 Jan 2014 22:51:02 +0100 (CET) Received: from mail-gw.glidecom.se ([127.0.0.1]) by localhost (mail-gw.glidecom.se [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23031-01-5 for ; Thu, 2 Jan 2014 22:51:01 +0100 (CET) Received: from ernst.glidecom.se (ernst.glidecom.se [89.221.241.4]) by mail-gw.glidecom.se (Postfix) with ESMTP id 433E515B3CB4 for ; Thu, 2 Jan 2014 22:44:34 +0100 (CET) Received: by ernst.glidecom.se (Postfix, from userid 30) id A3392161308; Thu, 2 Jan 2014 22:44:52 +0100 (CET) To: freebsd-ports-bugs@freebsd.org Subject: Enc: Orcamento 2/1/2014 19:45:05 From: Giovanna Ribeiro Message-Id: <20140102214452.A3392161308@ernst.glidecom.se> Date: Thu, 2 Jan 2014 22:44:52 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 21:51:10 -0000 [1]Planilha-B7HTK8.docx (98,6 KB) References 1. http://www.nampapalao.com/EN/jz/doc.php#/B7HTK8/document/B7HTK8.aspx From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 22:42:03 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76E715F7; Thu, 2 Jan 2014 22:42:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4B1E61AFC; Thu, 2 Jan 2014 22:42:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02Mg3GA093750; Thu, 2 Jan 2014 22:42:03 GMT (envelope-from rakuco@freefall.freebsd.org) Received: (from rakuco@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02Mg30N093749; Thu, 2 Jan 2014 22:42:03 GMT (envelope-from rakuco) Date: Thu, 2 Jan 2014 22:42:03 GMT Message-Id: <201401022242.s02Mg30N093749@freefall.freebsd.org> To: john@pcbsd.org, rakuco@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: rakuco@FreeBSD.org Subject: Re: ports/185411: update audio/pithos from 0.3.17 to 0.3.18 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 22:42:03 -0000 Synopsis: update audio/pithos from 0.3.17 to 0.3.18 State-Changed-From-To: open->closed State-Changed-By: rakuco State-Changed-When: Thu Jan 2 22:42:02 UTC 2014 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=185411 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 22:50:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99ED1720 for ; Thu, 2 Jan 2014 22:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 82E811B3D for ; Thu, 2 Jan 2014 22:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02Mo1sd093951 for ; Thu, 2 Jan 2014 22:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02Mo1uQ093950; Thu, 2 Jan 2014 22:50:01 GMT (envelope-from gnats) Date: Thu, 2 Jan 2014 22:50:01 GMT Message-Id: <201401022250.s02Mo1uQ093950@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/185411: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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: Thu, 02 Jan 2014 22:50:01 -0000 The following reply was made to PR ports/185411; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/185411: commit references a PR Date: Thu, 2 Jan 2014 22:41:26 +0000 (UTC) Author: rakuco Date: Thu Jan 2 22:41:18 2014 New Revision: 338506 URL: http://svnweb.freebsd.org/changeset/ports/338506 Log: Update to 0.3.18. PR: ports/185411 Submitted by: John Hixson (maintainer) Modified: head/audio/pithos/Makefile head/audio/pithos/distinfo head/audio/pithos/files/patch-setup.py head/audio/pithos/pkg-plist Modified: head/audio/pithos/Makefile ============================================================================== --- head/audio/pithos/Makefile Thu Jan 2 21:29:37 2014 (r338505) +++ head/audio/pithos/Makefile Thu Jan 2 22:41:18 2014 (r338506) @@ -2,10 +2,14 @@ # $FreeBSD$ PORTNAME= pithos -PORTVERSION= 0.3.17 +PORTVERSION= 0.3.18 CATEGORIES= audio -MASTER_SITES= DEBIAN -DISTNAME= ${PORTNAME}_${PORTVERSION}.orig +DISTNAME= ${PORTVERSION} + +USE_GITHUB= yes +GH_ACCOUNT= pithos +GH_PROJECT= pithos +GH_COMMIT= 0770210 MAINTAINER= john@pcbsd.org COMMENT= Pandora client for the GNOME desktop @@ -17,23 +21,18 @@ RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/xdg/_ ${LOCALBASE}/libdata/pkgconfig/notify-python.pc:${PORTSDIR}/devel/py-notify \ ${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus -WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} - USE_PYTHON= 2.6+ NO_STAGE= yes USE_GNOME= pygtk2 -USE_PYDISTUTILS= yes +USE_PYDISTUTILS= easy_install USE_GSTREAMER= good bad python +PYDISTUTILS_AUTOPLIST= yes PYDISTUTILS_PKGNAME= ${PORTNAME} - -post-patch: - ${REINPLACE_CMD} -e "s,../data/,${DATADIR}/," ${WRKSRC}/pithos/pithosconfig.py - ${REINPLACE_CMD} -e "s,Icon=pithos,${DATADIR}/media/icon.png," ${WRKSRC}/pithos.desktop +PYEASYINSTALL_EGG= pithos-0.3-py2.7.egg post-install: - @${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 555 \ - ${WRKSRC}/bin/${PORTNAME} ${PREFIX}/bin/${PORTNAME} @${MKDIR} ${DATADIR} @(cd ${WRKSRC}/data/ && ${COPYTREE_SHARE} \* ${DATADIR}) + @(cd ${WRKSRC}/pithos/data/ && ${COPYTREE_SHARE} \* ${DATADIR}) .include Modified: head/audio/pithos/distinfo ============================================================================== --- head/audio/pithos/distinfo Thu Jan 2 21:29:37 2014 (r338505) +++ head/audio/pithos/distinfo Thu Jan 2 22:41:18 2014 (r338506) @@ -1,2 +1,2 @@ -SHA256 (pithos_0.3.17.orig.tar.gz) = ef6ee1545fa60b065b0043d79fe89fd1c1b70fe4ae944055d2c7b9d890cf1bde -SIZE (pithos_0.3.17.orig.tar.gz) = 141332 +SHA256 (0.3.18.tar.gz) = e676d455341c03cf271bffc698771713d42f86655f2171a493ffb1a74b51fdac +SIZE (0.3.18.tar.gz) = 115198 Modified: head/audio/pithos/files/patch-setup.py ============================================================================== --- head/audio/pithos/files/patch-setup.py Thu Jan 2 21:29:37 2014 (r338505) +++ head/audio/pithos/files/patch-setup.py Thu Jan 2 22:41:18 2014 (r338506) @@ -1,85 +1,26 @@ ---- setup.py 2012-05-03 13:47:11.000000000 -0700 -+++ setup.py 2012-06-01 11:40:31.000000000 -0700 -@@ -17,74 +17,19 @@ - - ###################### DO NOT TOUCH THIS (HEAD TO THE SECOND PART) ###################### - --try: -- import DistUtilsExtra.auto --except ImportError: -- import sys -- print >> sys.stderr, 'To build pithos you need https://launchpad.net/python-distutils-extra' -- sys.exit(1) -- --assert DistUtilsExtra.auto.__version__ >= '2.10', 'needs DistUtilsExtra.auto >= 2.10' -+import sys - import os -+from distutils.core import setup - -- --def update_data_path(prefix, oldvalue=None): -- -- try: -- fin = file('pithos/pithosconfig.py', 'r') -- fout = file(fin.name + '.new', 'w') -- -- for line in fin: -- fields = line.split(' = ') # Separate variable from value -- if fields[0] == '__pithos_data_directory__': -- # update to prefix, store oldvalue -- if not oldvalue: -- oldvalue = fields[1] -- line = "%s = '%s'\n" % (fields[0], prefix) -- else: # restore oldvalue -- line = "%s = %s" % (fields[0], oldvalue) -- fout.write(line) -- -- fout.flush() -- fout.close() -- fin.close() -- os.rename(fout.name, fin.name) -- except (OSError, IOError), e: -- print ("ERROR: Can't find pithos/pithosconfig.py") -- sys.exit(1) -- return oldvalue -- -- --class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto): -- def run(self): -- if self.root or self.home: -- print "WARNING: You don't use a standard --prefix installation, take care that you eventually " \ -- "need to update quickly/quicklyconfig.py file to adjust __quickly_data_directory__. You can " \ -- "ignore this warning if you are packaging and uses --prefix." -- previous_value = update_data_path(self.prefix + '/share/pithos/') -- DistUtilsExtra.auto.install_auto.run(self) -- update_data_path(self.prefix, previous_value) -- --from distutils.cmd import Command --class OverrideI18NCommand(Command): -- def initialize_options(self): pass -- def finalize_options(self): pass -- def run(self): -- self.distribution.data_files.append(('share/applications', ['pithos.desktop'])) -- --from DistUtilsExtra.command.build_extra import build_extra --from DistUtilsExtra.command.build_icons import build_icons -- --DistUtilsExtra.auto.setup( -+required = [] -+setup( - name='pithos', -- version='0.3', -- ext_modules=[], -+ version='0.3.17', - license='GPL-3', - author='Kevin Mehall', - author_email='km@kevinmehall.net', - description='Pandora.com client for the GNOME desktop', -- #long_description='Here a longer description', - url='https://launchpad.net/pithos', -- cmdclass={'install': InstallAndUpdateDataDirectory, 'build_icons':build_icons, 'build':build_extra, 'build_i18n':OverrideI18NCommand} -- ) -- -+ packages=['pithos', 'pithos.pandora', 'pithos.plugins'], -+ package_dir = {'pithos':'pithos'} -+) +--- setup.py 2013-12-05 06:59:17.000000000 -0800 ++++ setup.py 2014-01-01 23:25:57.944668958 -0800 +@@ -50,12 +50,13 @@ + 'License :: OSI Approved :: GPL License', + 'Programming Language :: Python' + ], ++ + data_files=[ +- ('/usr/share/icons/hicolor/scalable/apps', [ ++ ('share/pithos/icons/hicolor/scalable/apps', [ + 'data/icons/scalable/apps/pithos-mono.svg', + 'data/icons/scalable/apps/pithos.svg' + ]), +- ('/usr/share/applications', ['data/pithos.desktop']) ++ ('share/pithos/applications', ['data/pithos.desktop']) + ], + package_data={ + 'pithos': [ +@@ -70,6 +71,7 @@ + ], + packages=find_packages(), + include_package_data=True, ++ zip_safe=False, + entry_points={ + 'gui_scripts': ['pithos = pithos.pithos:main'] + } Modified: head/audio/pithos/pkg-plist ============================================================================== --- head/audio/pithos/pkg-plist Thu Jan 2 21:29:37 2014 (r338505) +++ head/audio/pithos/pkg-plist Thu Jan 2 22:41:18 2014 (r338506) @@ -1,94 +1,25 @@ -bin/pithos -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.py -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.py -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.py -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.py -%%PYTHON_SITELIBDIR%%/pithos/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.py -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.py -%%PYTHON_SITELIBDIR%%/pithos/plugin.py -%%PYTHON_SITELIBDIR%%/pithos/pylast.py -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.py -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.pyc -%%PYTHON_SITELIBDIR%%/pithos/pandora/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/blowfish.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/fake.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora.pyo -%%PYTHON_SITELIBDIR%%/pithos/pandora/pandora_keys.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.py -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugins/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/mediakeys.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/notification_icon.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/notify.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/screensaver_pause.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugins/scrobble.pyo -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.py -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.pyc -%%PYTHON_SITELIBDIR%%/pithos/__init__.pyc -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.pyc -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.pyc -%%PYTHON_SITELIBDIR%%/pithos/plugin.pyc -%%PYTHON_SITELIBDIR%%/pithos/pylast.pyc -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.pyc -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.pyc -%%PYTHON_SITELIBDIR%%/pithos/AboutPithosDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/PreferencesPithosDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/SearchDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/StationsDialog.pyo -%%PYTHON_SITELIBDIR%%/pithos/__init__.pyo -%%PYTHON_SITELIBDIR%%/pithos/dbus_service.pyo -%%PYTHON_SITELIBDIR%%/pithos/gobject_worker.pyo -%%PYTHON_SITELIBDIR%%/pithos/plugin.pyo -%%PYTHON_SITELIBDIR%%/pithos/pylast.pyo -%%PYTHON_SITELIBDIR%%/pithos/sound_menu.pyo -%%PYTHON_SITELIBDIR%%/pithos/pithosconfig.pyo -%%DATADIR%%/icons/scalable/apps/pithos-mono.svg -%%DATADIR%%/icons/scalable/apps/pithos.svg -%%DATADIR%%/media/album_default.png -%%DATADIR%%/media/album_default.svg -%%DATADIR%%/media/icon.png %%DATADIR%%/media/pithos-mono.png -%%DATADIR%%/media/rate_bg.png +%%DATADIR%%/media/icon.png %%DATADIR%%/media/rate_bg.svg -%%DATADIR%%/ui/AboutPithosDialog.ui +%%DATADIR%%/media/album_default.png +%%DATADIR%%/media/rate_bg.png +%%DATADIR%%/media/album_default.svg +%%DATADIR%%/icons/scalable/apps/pithos-mono.svg +%%DATADIR%%/icons/scalable/apps/pithos.svg +%%DATADIR%%/pithos.desktop %%DATADIR%%/ui/PithosWindow.ui +%%DATADIR%%/ui/preferences_pithos_dialog.xml +%%DATADIR%%/ui/pithos_window.xml %%DATADIR%%/ui/PreferencesPithosDialog.ui +%%DATADIR%%/ui/stations_dialog.xml +%%DATADIR%%/ui/search_dialog.xml +%%DATADIR%%/ui/AboutPithosDialog.ui +%%DATADIR%%/ui/about_pithos_dialog.xml %%DATADIR%%/ui/SearchDialog.ui %%DATADIR%%/ui/StationsDialog.ui -%%DATADIR%%/ui/about_pithos_dialog.xml -%%DATADIR%%/ui/pithos_window.xml -%%DATADIR%%/ui/preferences_pithos_dialog.xml -%%DATADIR%%/ui/search_dialog.xml -%%DATADIR%%/ui/stations_dialog.xml -@dirrm %%DATADIR%%/ui -@dirrm %%DATADIR%%/media @dirrm %%DATADIR%%/icons/scalable/apps @dirrm %%DATADIR%%/icons/scalable @dirrm %%DATADIR%%/icons +@dirrm %%DATADIR%%/media +@dirrm %%DATADIR%%/ui @dirrm %%DATADIR%% -@dirrm %%PYTHON_SITELIBDIR%%/pithos/plugins -@dirrm %%PYTHON_SITELIBDIR%%/pithos/pandora -@dirrm %%PYTHON_SITELIBDIR%%/pithos _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 23:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id AD7547D2 for ; Thu, 2 Jan 2014 23:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 88ACB1CE0 for ; Thu, 2 Jan 2014 23:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02N00Qh095753 for ; Thu, 2 Jan 2014 23:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02N00v7095752; Thu, 2 Jan 2014 23:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 2 Jan 2014 23:00:00 GMT Resent-Message-Id: <201401022300.s02N00v7095752@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, Alexandre Biancalana Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF21D78A for ; Thu, 2 Jan 2014 22:54:52 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A13DD1CBD for ; Thu, 2 Jan 2014 22:54:52 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s02Msqlr095391 for ; Thu, 2 Jan 2014 22:54:52 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s02MsqvL095384; Thu, 2 Jan 2014 22:54:52 GMT (envelope-from nobody) Message-Id: <201401022254.s02MsqvL095384@oldred.freebsd.org> Date: Thu, 2 Jan 2014 22:54:52 GMT From: Alexandre Biancalana To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185428: new port: net/p5-Net-SMTPS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 23:00:00 -0000 >Number: 185428 >Category: ports >Synopsis: new port: net/p5-Net-SMTPS >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 Jan 02 23:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Alexandre Biancalana >Release: 9.2-RELEASE >Organization: >Environment: FreeBSD poudriere 9.2-RELEASE FreeBSD 9.2-RELEASE #8 r245111M: Thu Oct 10 23:54:14 BRT 2013 root@poudriere:/usr/obj/usr/src/sys/XENHVM amd64 >Description: >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: # # mail/p5-Net-SMTPS # mail/p5-Net-SMTPS/Makefile # mail/p5-Net-SMTPS/distinfo # mail/p5-Net-SMTPS/pkg-descr # mail/p5-Net-SMTPS/pkg-plist # echo c - mail/p5-Net-SMTPS mkdir -p mail/p5-Net-SMTPS > /dev/null 2>&1 echo x - mail/p5-Net-SMTPS/Makefile sed 's/^X//' >mail/p5-Net-SMTPS/Makefile << '9b3cd2249847de127e6ea3053bc693ab' X# Created by: Alexandre Biancalana X# $FreeBSD$ X XPORTNAME= Net-SMTPS XPORTVERSION= 0.03 XCATEGORIES= mail perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- X XMAINTAINER= ale@biancalanas.net XCOMMENT= SSL/STARTTLS support for Net::SMTP X XRUN_DEPENDS= p5-Authen-SASL>=2:${PORTSDIR}/security/p5-Authen-SASL \ X p5-IO-Socket-SSL>=1.9:${PORTSDIR}/security/p5-IO-Socket-SSL XBUILD_DEPENDS:= ${RUN_DEPENDS} X XMAKE_JOBS_UNSAFE= yes XUSES= perl5 XUSE_PERL5= configure X X XMAN3= Net::SMTPS.3 X X.include 9b3cd2249847de127e6ea3053bc693ab echo x - mail/p5-Net-SMTPS/distinfo sed 's/^X//' >mail/p5-Net-SMTPS/distinfo << '3f4d0e31bc15544eddea28d524e4f33f' XSHA256 (Net-SMTPS-0.03.tar.gz) = f8b2f1c2812df87e4a901388df760de913607481747e9a39e495582baeeb0a08 XSIZE (Net-SMTPS-0.03.tar.gz) = 4569 3f4d0e31bc15544eddea28d524e4f33f echo x - mail/p5-Net-SMTPS/pkg-descr sed 's/^X//' >mail/p5-Net-SMTPS/pkg-descr << 'c1d6e2d7f8c13db2fd1435c8c82517fa' XNet::SMTPS - SSL/STARTTLS support for Net::SMTP X XWWW: http://search.cpan.org/dist/Net-SMTPS/ c1d6e2d7f8c13db2fd1435c8c82517fa echo x - mail/p5-Net-SMTPS/pkg-plist sed 's/^X//' >mail/p5-Net-SMTPS/pkg-plist << '7b607cf6daa2e1351700b608cafbc9b5' X%%SITE_PERL%%/Net/SMTPS.pm X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/SMTPS/.packlist X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net/SMTPS X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Net X@dirrmtry %%SITE_PERL%%/Net 7b607cf6daa2e1351700b608cafbc9b5 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 23:00:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F2A680B; Thu, 2 Jan 2014 23:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1436B1CE2; Thu, 2 Jan 2014 23:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02N08IC095880; Thu, 2 Jan 2014 23:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02N08PX095879; Thu, 2 Jan 2014 23:00:08 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 23:00:08 GMT Message-Id: <201401022300.s02N08PX095879@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185428: new port: net/p5-Net-SMTPS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 23:00:09 -0000 Synopsis: new port: net/p5-Net-SMTPS Class-Changed-From-To: update->change-request Class-Changed-By: edwin Class-Changed-When: Thu Jan 2 23:00:08 UTC 2014 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=185428 From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Jan 2 23:00:11 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 04D7780D; Thu, 2 Jan 2014 23:00:11 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CE4041CE3; Thu, 2 Jan 2014 23:00:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s02N0ALB095961; Thu, 2 Jan 2014 23:00:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s02N0ABK095960; Thu, 2 Jan 2014 23:00:10 GMT (envelope-from edwin) Date: Thu, 2 Jan 2014 23:00:10 GMT Message-Id: <201401022300.s02N0ABK095960@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185428: new port: net/p5-Net-SMTPS X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Jan 2014 23:00:11 -0000 Synopsis: new port: net/p5-Net-SMTPS Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 2 23:00:10 UTC 2014 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185428 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 00:20:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C15B11BF for ; Fri, 3 Jan 2014 00:20:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9B4F01240 for ; Fri, 3 Jan 2014 00:20:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s030K2Kh023671 for ; Fri, 3 Jan 2014 00:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s030K2Fh023670; Fri, 3 Jan 2014 00:20:02 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 00:20:02 GMT Resent-Message-Id: <201401030020.s030K2Fh023670@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, Dimitry Andric Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96EA2EAA for ; Fri, 3 Jan 2014 00:14:45 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8290A120F for ; Fri, 3 Jan 2014 00:14:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s030EjHw020135 for ; Fri, 3 Jan 2014 00:14:45 GMT (envelope-from dim@freefall.freebsd.org) Received: (from dim@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s030EjXu020134; Fri, 3 Jan 2014 00:14:45 GMT (envelope-from dim) Message-Id: <201401030014.s030EjXu020134@freefall.freebsd.org> Date: Fri, 3 Jan 2014 00:14:45 GMT From: Dimitry Andric To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/185430: [exp-run] Update clang to 3.4 release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Dimitry Andric List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 00:20:02 -0000 >Number: 185430 >Category: ports >Synopsis: [exp-run] Update clang to 3.4 release >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: Fri Jan 03 00:20:02 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Dimitry Andric >Release: FreeBSD 11.0-CURRENT amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD freefall.freebsd.org 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r259961: Fri Dec 27 21:56:39 UTC 2013 peter@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL amd64 >Description: I intend to update clang in 11.0-CURRENT from 3.3 to 3.4 release. See also this thread on freebsd-toolchain@: http://docs.freebsd.org/cgi/mid.cgi?541C998A-071A-4917-9D91-DD00CB0E2689 For ports, the most important change is most likely the more strict option parsing introduced with clang 3.4. In earlier releases, unknown or unsupported command line options were ignored, with just a "argument unused during compilation" warning. From 3.4 onwards, such options will result in a "unknown argument" error, instead. The current patch, which must be applied to head r260207 or later, can be downloaded here: http://www.andric.com/freebsd/clang/head-r260207-clang34-1.diff.xz SHA256 (head-r260207-clang34-1.diff.xz) = 02ddf89b5173bb1dac1e18e529b146ba5882f5ae6cb9c3527ef4eb514e17dd3c To apply, unxz the file into a fresh head checkout, and run: svn patch head-r260207-clang34-1.diff Please check carefully if Subversion reports no problems during patching, as it is rather fragile. Afterwards, you can do a normal world and kernel build, and installation. >How-To-Repeat: n/a >Fix: n/a >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 02:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 729F5E1 for ; Fri, 3 Jan 2014 02:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 536421CA6 for ; Fri, 3 Jan 2014 02:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s032e1Jp054771 for ; Fri, 3 Jan 2014 02:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s032e12b054770; Fri, 3 Jan 2014 02:40:01 GMT (envelope-from gnats) Date: Fri, 3 Jan 2014 02:40:01 GMT Message-Id: <201401030240.s032e12b054770@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Mark Felder Subject: Re: ports/184946: [UPDATE]: dns/knot 1.3.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Mark Felder List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 02:40:01 -0000 The following reply was made to PR ports/184946; it has been noted by GNATS. From: Mark Felder To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/184946: [UPDATE]: dns/knot 1.3.4 Date: Thu, 2 Jan 2014 20:31:30 -0600 --Apple-Mail=_F0145274-EB24-4AEC-9AAA-298DF5AF464C Content-Type: multipart/mixed; boundary="Apple-Mail=_850980A1-4E66-4416-A57B-60F32B1A158E" --Apple-Mail=_850980A1-4E66-4416-A57B-60F32B1A158E Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii Would you mind testing this more comprehensive patch? I've made some = changes so knot better adheres to the FreeBSD heir(7) and best practices --Apple-Mail=_850980A1-4E66-4416-A57B-60F32B1A158E Content-Disposition: attachment; filename=knot.txt Content-Type: text/plain; name="knot.txt" Content-Transfer-Encoding: quoted-printable Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- Makefile (revision 338178) +++ Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ =20 PORTNAME=3D knot -DISTVERSION=3D 1.3.3 -PORTREVISION=3D 1 +DISTVERSION=3D 1.3.4 CATEGORIES=3D dns ipv6 MASTER_SITES=3D https://secure.nic.cz/files/knot-dns/ \ http://dns-lab.com/downloads/knot-dns/ @@ -23,24 +22,26 @@ USE_OPENSSL=3D yes GNU_CONFIGURE=3D yes =20 +CONFIGURE_ARGS+=3D--with-storage=3D/var/db/knot +CONFIGURE_ARGS+=3D--with-rundir=3D/var/run/knot + SUB_FILES=3D pkg-message =20 -USE_RC_SUBR=3D ${PORTNAME}d +USE_RC_SUBR=3D ${PORTNAME} =20 INFO=3D knot =20 PORTDOCS=3D AUTHORS COPYING ChangeLog INSTALL NEWS README THANKS =20 -OPTIONS_DEFINE=3D DOCS +USERS=3D knot +GROUPS=3D knot =20 +SUB_LIST+=3D USERS=3D"${USERS}" GROUPS=3D"${GROUPS}" + post-install: - @${MKDIR} ${STAGEDIR}${ETCDIR} + ${MKDIR} ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/samples/knot.sample.conf = ${STAGEDIR}${ETCDIR} - @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} = ${STAGEDIR}${DOCSDIR}/ - @${MKDIR} ${PREFIX}/var/lib/knot - @${MKDIR} ${PREFIX}/var/run/knot - @${CHOWN} 53:53 ${PREFIX}/var/lib/knot - @${CHOWN} 53:53 ${PREFIX}/var/run/knot =20 .include Index: distinfo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- distinfo (revision 338178) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (knot-1.3.3.tar.gz) =3D = 70f5237871a92cd8a777c73b80b6ac339212ea084d4adfaf314388be704027b4 -SIZE (knot-1.3.3.tar.gz) =3D 1148233 +SHA256 (knot-1.3.4.tar.gz) =3D = 0e15fb93de9eb2b8cb5d25c2239566462858125cb1b8455fc744835589212399 +SIZE (knot-1.3.4.tar.gz) =3D 1208147 Index: files/knot.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/knot.in (revision 338178) +++ files/knot.in (working copy) @@ -10,7 +10,7 @@ # # knot_enable=3D"YES": Set to NO by default. # Set it to YES to enable knot. -# knot_config=3D"": Set to %%PREFIX%%/etc/knot/knot.conf +# knot_config=3D"": Set to /usr/local/etc/knot/knot.conf # by default. =20 . /etc/rc.subr @@ -18,22 +18,39 @@ name=3Dknot rcvar=3Dknot_enable =20 -extra_commands=3D"reload" -reload_cmd=3D"${name}_x reload" -status_cmd=3D"${name}_x status" -stop_cmd=3D" ${name}_x stop" - load_rc_config ${name} =20 -: ${knot_enable:=3D"NO"} -: ${knot_config=3D"%%PREFIX%%/etc/knot/knot.conf"} +: ${knot_enable:=3DNO} +: ${knot_config=3D"%%PREFIX%%/knot/knot.conf"} =20 -command=3D%%PREFIX%%/sbin/${name}d +command=3D%%PREFIX%%/sbin/knotd command_args=3D"-c ${knot_config} -d" +control=3D%%PREFIX%%/sbin/knotc +pidfile=3D/var/run/knot/knot.pid + required_files=3D${knot_config} =20 -knot_x() { - %%PREFIX%%/sbin/${name}c -c ${knot_config} "$1" - } +extra_commands=3Dreload +reload_cmd=3D"${name}_reload" +start_precmd=3D"${name}_prestart" =20 +knot_prestart() +{ + if [ ! -d /var/run/knot ]; then + install -d -o %%USERS%% -g %%GROUPS%% /var/run/knot + fi +=09 + if [ ! -d /var/db/knot ]; then + install -d -o %%USERS%% -g %%GROUPS%% /var/db/knot + fi + + ${control} -c ${knot_config} checkconf +} + +knot_reload() +{ + echo "Reloading ${name}." + ${control} -c ${knot_config} reload +} + run_rc_command "$1" Index: files/knotd.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/knotd.in (revision 338178) +++ files/knotd.in (working copy) @@ -1,39 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# -# PROVIDE: knot -# REQUIRE: SERVERS cleanvar -# KEYWORD: shutdown -# -# Add the following lines to /etc/rc.conf to enable knot: -# -# knot_enable=3D"YES": Set to NO by default. -# Set it to YES to enable knot. -# knot_config=3D"": Set to %%PREFIX%%/etc/knot/knot.conf -# by default. - -. /etc/rc.subr - -name=3Dknot -rcvar=3Dknot_enable - -extra_commands=3D"reload" -reload_cmd=3D"${name}_x reload" -status_cmd=3D"${name}_x status" -stop_cmd=3D" ${name}_x stop" - -load_rc_config ${name} - -: ${knot_enable:=3D"NO"} -: ${knot_config=3D"%%PREFIX%%/etc/knot/knot.conf"} - -command=3D%%PREFIX%%/sbin/${name}d -command_args=3D"-c ${knot_config} -d" -required_files=3D${knot_config} - -knot_x() { - %%PREFIX%%/sbin/${name}c -c ${knot_config} "$1" - } - -run_rc_command "$1" Index: files/patch-src-Makefile.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/patch-src-Makefile.in (revision 0) +++ files/patch-src-Makefile.in (working copy) @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig 2013-12-24 09:39:02.671817934 -0600 ++++ src/Makefile.in 2013-12-24 09:39:11.577816555 -0600 +@@ -1979,8 +1979,6 @@ + # Create storage and run-time directories + install-data-hook: + $(INSTALL) -d $(DESTDIR)/@config_dir@ +- $(INSTALL) -d $(DESTDIR)/@run_dir@ +- $(INSTALL) -d $(DESTDIR)/@storage_dir@ +=20 + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. Property changes on: files/patch-src-Makefile.in ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: files/pkg-message.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- files/pkg-message.in (revision 338178) +++ files/pkg-message.in (working copy) @@ -7,7 +7,7 @@ $EDITOR %%ETCDIR%%/knot.conf echo knot_enable=3D\"YES\" >> /etc/rc.conf # echo knot_config=3D\"%%PREFIX%%/etc/knot/knot.conf\" >> /etc/rc.conf - %%PREFIX%%/etc/rc.d/knotd start + %%PREFIX%%/etc/rc.d/knot start # #################################################################### =20 Index: pkg-plist =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- pkg-plist (revision 338178) +++ pkg-plist (working copy) @@ -1,4 +1,4 @@ -@unexec if cmp -s %B/knot.sample.conf %B/knot.conf; then rm -f = %B/knot.conf; fi +@unexec if cmp -s %D/%%ETCDIR%%/knot.sample.conf = %D/%%ETCDIR%%/knot.conf; then rm -f %D/%%ETCDIR%%/knot.conf; fi %%ETCDIR%%/knot.sample.conf @exec [ -f %B/knot.conf ] || cp %B/%f %B/knot.conf %%ETCDIR%%/example.com.zone @@ -9,11 +9,6 @@ man/man8/knotc.8.gz man/man8/knotd.8.gz @dirrmtry %%ETCDIR%% -@dirrmtry var/run/knot -@dirrmtry var/run -@dirrmtry var/lib/knot -@dirrmtry var/lib -@dirrmtry var bin/kdig bin/khost bin/knsupdate --Apple-Mail=_850980A1-4E66-4416-A57B-60F32B1A158E Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=us-ascii - configure the storage dir at build time to be /var/db/knot - configure the run dir at build time to be /var/run/knot - rename the rc script from knotd to knot so there is consistency = between the rc script filename and the rc.conf entry "knot_enable=3D"YES",= etc - add a user and group for knot -- yes, we finally run as our own user = instead of root! - knot's rc script will create the /var/db/knot and /var/run/knot before = starting if those directories don't already exist. It also sets to the = correct permissions/ownership based on what you built the port with (in = case you don't want to use the "knot" user for some reason) - knot's rc script does a checkconf before starting so you can get a = useful error message on the console if you have a syntax issue in your = knot configuration! - the patch that was added was to fix a staging violation: knot's build = framework is a bit too aggressive about creating the run dir and storage = dir and build time. Thank you for your time! --Apple-Mail=_850980A1-4E66-4416-A57B-60F32B1A158E-- --Apple-Mail=_F0145274-EB24-4AEC-9AAA-298DF5AF464C Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=signature.asc Content-Type: application/pgp-signature; name=signature.asc Content-Description: Message signed with OpenPGP using GPGMail -----BEGIN PGP SIGNATURE----- Comment: GPGTools - https://gpgtools.org iQEcBAEBCgAGBQJSxiECAAoJEJg7ZFAfE+JSfjUH/ROlqMzLopsySsSQT/HWI6sS XHj3nMEdRDJnXfn1n9Y1LyueEKaxyfaTVXOXlx0tO3bUEME8EjYNFjSHxKgdA8YI jm8GzHe+DclIWZWauBqUlWGr4nhRFlACQJOy8N9YAoA+Fi8jOV78dkbJBL6bKNII AHSM2pRXPSPwKF5bQJZj1V8SjFuhbS4Aom2kyjM/zN2knICamKGVagyIhvsIH6EJ brDkvDawzTsndgqurkWtcJWA0qg7Z2kzs9qpHAjt3tF8EMcGbY5PEESS0HNJgR+Q +zxY4l1svdbefDsW/1kCViguA9+oUlgDTEnhVMPX3Uvje/3WOsk2isFPExzCudc= =1HsX -----END PGP SIGNATURE----- --Apple-Mail=_F0145274-EB24-4AEC-9AAA-298DF5AF464C-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 04:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 102A8705 for ; Fri, 3 Jan 2014 04:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DB1EB1318 for ; Fri, 3 Jan 2014 04:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s034A08u073497 for ; Fri, 3 Jan 2014 04:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s034A09j073476; Fri, 3 Jan 2014 04:10:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 04:10:00 GMT Resent-Message-Id: <201401030410.s034A09j073476@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 [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E4DB1700 for ; Fri, 3 Jan 2014 04:08:36 +0000 (UTC) Received: from nordhaug.priv.no (mail.nordhaug.priv.no [37.44.175.18]) by mx1.freebsd.org (Postfix) with ESMTP id D6A591314 for ; Fri, 3 Jan 2014 04:08:32 +0000 (UTC) Received: from nordhaug.priv.no (localhost [127.0.0.1]) by nordhaug.priv.no (Postfix) with ESMTP id 81D678ACD6 for ; Fri, 3 Jan 2014 05:08:30 +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 JGloK75xVNRm for ; Fri, 3 Jan 2014 05:08:03 +0100 (CET) Received: by nordhaug.priv.no (Postfix, from userid 0) id 7F6798A998; Fri, 3 Jan 2014 05:08:03 +0100 (CET) Message-Id: <20140103040803.7F6798A998@nordhaug.priv.no> Date: Fri, 3 Jan 2014 05:08:03 +0100 (CET) From: Hans Fredrik Nordhaug To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185432: [MAINTAINER] www/piwik: update to 2.0.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 04:10:01 -0000 >Number: 185432 >Category: ports >Synopsis: [MAINTAINER] www/piwik: update to 2.0.2 >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 Jan 03 04:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Hans Fredrik Nordhaug >Release: FreeBSD 9.1-RELEASE-p7 i386 >Organization: >Environment: System: FreeBSD nordhaug.priv.no 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:23:37 UTC >Description: - Update to 2.0.2 - Please close PR 184979 which is obsoleted by this PR/update. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- piwik-2.0.2.patch begins here --- diff -ruN ../piwik.orig/Makefile ./Makefile --- ../piwik.orig/Makefile 2013-12-19 01:06:25.000000000 +0100 +++ ./Makefile 2014-01-03 04:58:04.000000000 +0100 @@ -2,7 +2,7 @@ # $FreeBSD: www/piwik/Makefile 327776 2013-09-20 23:36:50Z bapt $ PORTNAME= piwik -PORTVERSION= 1.12 +PORTVERSION= 2.0.2 CATEGORIES= www MASTER_SITES= http://builds.piwik.org/ diff -ruN ../piwik.orig/distinfo ./distinfo --- ../piwik.orig/distinfo 2013-12-19 01:06:25.000000000 +0100 +++ ./distinfo 2014-01-03 04:36:00.000000000 +0100 @@ -1,2 +1,2 @@ -SHA256 (piwik-1.12.tar.gz) = b008dd452541af8051cdcf262a333937ba5c86af34e070932d378d256f03fba2 -SIZE (piwik-1.12.tar.gz) = 6822406 +SHA256 (piwik-2.0.2.tar.gz) = 930140f20c5e8b4c20e815e859d232c10079cdb56cf00627ead3c9b5682b1bcb +SIZE (piwik-2.0.2.tar.gz) = 7259635 diff -ruN ../piwik.orig/pkg-plist ./pkg-plist --- ../piwik.orig/pkg-plist 2013-12-19 01:06:25.000000000 +0100 +++ ./pkg-plist 2014-01-03 05:00:52.000000000 +0100 @@ -1,35 +1,56 @@ %%WWWDIR%%/LEGALNOTICE %%WWWDIR%%/README.md %%WWWDIR%%/composer.json -%%WWWDIR%%/config/config.ini.sample.php +%%WWWDIR%%/composer.lock %%WWWDIR%%/config/global.ini.php %%WWWDIR%%/config/manifest.inc.php +%%WWWDIR%%/console %%WWWDIR%%/core/API/DataTableGenericFilter.php %%WWWDIR%%/core/API/DataTableManipulator.php %%WWWDIR%%/core/API/DataTableManipulator/Flattener.php %%WWWDIR%%/core/API/DataTableManipulator/LabelFilter.php +%%WWWDIR%%/core/API/DataTableManipulator/ReportTotalsCalculator.php %%WWWDIR%%/core/API/DocumentationGenerator.php %%WWWDIR%%/core/API/Proxy.php %%WWWDIR%%/core/API/Request.php %%WWWDIR%%/core/API/ResponseBuilder.php %%WWWDIR%%/core/Access.php %%WWWDIR%%/core/Archive.php -%%WWWDIR%%/core/Archive/Array.php -%%WWWDIR%%/core/Archive/Array/IndexedByDate.php -%%WWWDIR%%/core/Archive/Array/IndexedBySite.php -%%WWWDIR%%/core/Archive/Single.php -%%WWWDIR%%/core/ArchiveProcessing.php -%%WWWDIR%%/core/ArchiveProcessing/Day.php -%%WWWDIR%%/core/ArchiveProcessing/Period.php +%%WWWDIR%%/core/Archive/DataCollection.php +%%WWWDIR%%/core/Archive/DataTableFactory.php +%%WWWDIR%%/core/Archive/Parameters.php +%%WWWDIR%%/core/ArchiveProcessor.php +%%WWWDIR%%/core/ArchiveProcessor/Loader.php +%%WWWDIR%%/core/ArchiveProcessor/Parameters.php +%%WWWDIR%%/core/ArchiveProcessor/PluginsArchiver.php +%%WWWDIR%%/core/ArchiveProcessor/Rules.php %%WWWDIR%%/core/AssetManager.php +%%WWWDIR%%/core/AssetManager/UIAsset.php +%%WWWDIR%%/core/AssetManager/UIAsset/InMemoryUIAsset.php +%%WWWDIR%%/core/AssetManager/UIAsset/OnDiskUIAsset.php +%%WWWDIR%%/core/AssetManager/UIAssetCacheBuster.php +%%WWWDIR%%/core/AssetManager/UIAssetCatalog.php +%%WWWDIR%%/core/AssetManager/UIAssetCatalogSorter.php +%%WWWDIR%%/core/AssetManager/UIAssetFetcher.php +%%WWWDIR%%/core/AssetManager/UIAssetFetcher/JScriptUIAssetFetcher.php +%%WWWDIR%%/core/AssetManager/UIAssetFetcher/StaticUIAssetFetcher.php +%%WWWDIR%%/core/AssetManager/UIAssetFetcher/StylesheetUIAssetFetcher.php +%%WWWDIR%%/core/AssetManager/UIAssetMerger.php +%%WWWDIR%%/core/AssetManager/UIAssetMerger/JScriptUIAssetMerger.php +%%WWWDIR%%/core/AssetManager/UIAssetMerger/StylesheetUIAssetMerger.php +%%WWWDIR%%/core/AssetManager/UIAssetMinifier.php %%WWWDIR%%/core/Auth.php %%WWWDIR%%/core/CacheFile.php %%WWWDIR%%/core/Common.php %%WWWDIR%%/core/Config.php -%%WWWDIR%%/core/Config/Compat.php -%%WWWDIR%%/core/Controller.php -%%WWWDIR%%/core/Controller/Admin.php +%%WWWDIR%%/core/Console.php %%WWWDIR%%/core/Cookie.php +%%WWWDIR%%/core/CronArchive.php +%%WWWDIR%%/core/DataAccess/ArchiveSelector.php +%%WWWDIR%%/core/DataAccess/ArchiveTableCreator.php +%%WWWDIR%%/core/DataAccess/ArchiveWriter.php +%%WWWDIR%%/core/DataAccess/LogAggregator.php +%%WWWDIR%%/core/DataArray.php %%WWWDIR%%/core/DataFiles/Countries.php %%WWWDIR%%/core/DataFiles/Currencies.php %%WWWDIR%%/core/DataFiles/LanguageToCountry.php @@ -38,11 +59,11 @@ %%WWWDIR%%/core/DataFiles/SearchEngines.php %%WWWDIR%%/core/DataFiles/Socials.php %%WWWDIR%%/core/DataTable.php -%%WWWDIR%%/core/DataTable/Array.php -%%WWWDIR%%/core/DataTable/Filter.php +%%WWWDIR%%/core/DataTable/BaseFilter.php +%%WWWDIR%%/core/DataTable/Bridges.php +%%WWWDIR%%/core/DataTable/DataTableInterface.php %%WWWDIR%%/core/DataTable/Filter/AddColumnsProcessedMetrics.php %%WWWDIR%%/core/DataTable/Filter/AddColumnsProcessedMetricsGoal.php -%%WWWDIR%%/core/DataTable/Filter/AddConstantMetadata.php %%WWWDIR%%/core/DataTable/Filter/AddSummaryRow.php %%WWWDIR%%/core/DataTable/Filter/BeautifyRangeLabels.php %%WWWDIR%%/core/DataTable/Filter/BeautifyTimeRangeLabels.php @@ -59,7 +80,6 @@ %%WWWDIR%%/core/DataTable/Filter/Limit.php %%WWWDIR%%/core/DataTable/Filter/MetadataCallbackAddMetadata.php %%WWWDIR%%/core/DataTable/Filter/MetadataCallbackReplace.php -%%WWWDIR%%/core/DataTable/Filter/Null.php %%WWWDIR%%/core/DataTable/Filter/Pattern.php %%WWWDIR%%/core/DataTable/Filter/PatternRecursive.php %%WWWDIR%%/core/DataTable/Filter/RangeCheck.php @@ -69,6 +89,7 @@ %%WWWDIR%%/core/DataTable/Filter/Sort.php %%WWWDIR%%/core/DataTable/Filter/Truncate.php %%WWWDIR%%/core/DataTable/Manager.php +%%WWWDIR%%/core/DataTable/Map.php %%WWWDIR%%/core/DataTable/Renderer.php %%WWWDIR%%/core/DataTable/Renderer/Console.php %%WWWDIR%%/core/DataTable/Renderer/Csv.php @@ -79,36 +100,41 @@ %%WWWDIR%%/core/DataTable/Renderer/Tsv.php %%WWWDIR%%/core/DataTable/Renderer/Xml.php %%WWWDIR%%/core/DataTable/Row.php -%%WWWDIR%%/core/DataTable/Row/DataTableSummary.php +%%WWWDIR%%/core/DataTable/Row/DataTableSummaryRow.php %%WWWDIR%%/core/DataTable/Simple.php %%WWWDIR%%/core/Date.php +%%WWWDIR%%/core/Db.php %%WWWDIR%%/core/Db/Adapter.php -%%WWWDIR%%/core/Db/Adapter/Interface.php %%WWWDIR%%/core/Db/Adapter/Mysqli.php %%WWWDIR%%/core/Db/Adapter/Pdo/Mssql.php %%WWWDIR%%/core/Db/Adapter/Pdo/Mysql.php %%WWWDIR%%/core/Db/Adapter/Pdo/Pgsql.php +%%WWWDIR%%/core/Db/AdapterInterface.php +%%WWWDIR%%/core/Db/BatchInsert.php %%WWWDIR%%/core/Db/Schema.php -%%WWWDIR%%/core/Db/Schema/Interface.php %%WWWDIR%%/core/Db/Schema/Myisam.php -%%WWWDIR%%/core/ErrorHandler.php +%%WWWDIR%%/core/Db/SchemaInterface.php +%%WWWDIR%%/core/DbHelper.php +%%WWWDIR%%/core/Error.php +%%WWWDIR%%/core/EventDispatcher.php %%WWWDIR%%/core/ExceptionHandler.php +%%WWWDIR%%/core/Filechecks.php +%%WWWDIR%%/core/Filesystem.php %%WWWDIR%%/core/FrontController.php -%%WWWDIR%%/core/HTMLPurifier.php %%WWWDIR%%/core/Http.php %%WWWDIR%%/core/IP.php %%WWWDIR%%/core/Loader.php %%WWWDIR%%/core/Log.php -%%WWWDIR%%/core/Log/APICall.php -%%WWWDIR%%/core/Log/Error.php -%%WWWDIR%%/core/Log/Exception.php -%%WWWDIR%%/core/Log/Message.php %%WWWDIR%%/core/Mail.php -%%WWWDIR%%/core/Menu/Abstract.php -%%WWWDIR%%/core/Menu/Admin.php -%%WWWDIR%%/core/Menu/Main.php -%%WWWDIR%%/core/Menu/Top.php +%%WWWDIR%%/core/Menu/MenuAbstract.php +%%WWWDIR%%/core/Menu/MenuAdmin.php +%%WWWDIR%%/core/Menu/MenuMain.php +%%WWWDIR%%/core/Menu/MenuTop.php +%%WWWDIR%%/core/Metrics.php +%%WWWDIR%%/core/MetricsFormatter.php %%WWWDIR%%/core/Nonce.php +%%WWWDIR%%/core/Notification.php +%%WWWDIR%%/core/Notification/Manager.php %%WWWDIR%%/core/Option.php %%WWWDIR%%/core/Period.php %%WWWDIR%%/core/Period/Day.php @@ -118,13 +144,22 @@ %%WWWDIR%%/core/Period/Year.php %%WWWDIR%%/core/Piwik.php %%WWWDIR%%/core/Plugin.php -%%WWWDIR%%/core/Plugin/Config.php -%%WWWDIR%%/core/PluginsFunctions/Sql.php -%%WWWDIR%%/core/PluginsFunctions/WidgetsList.php -%%WWWDIR%%/core/PluginsManager.php +%%WWWDIR%%/core/Plugin/API.php +%%WWWDIR%%/core/Plugin/Archiver.php +%%WWWDIR%%/core/Plugin/ConsoleCommand.php +%%WWWDIR%%/core/Plugin/Controller.php +%%WWWDIR%%/core/Plugin/ControllerAdmin.php +%%WWWDIR%%/core/Plugin/Manager.php +%%WWWDIR%%/core/Plugin/MetadataLoader.php +%%WWWDIR%%/core/Plugin/Settings.php +%%WWWDIR%%/core/Plugin/ViewDataTable.php +%%WWWDIR%%/core/Plugin/Visualization.php +%%WWWDIR%%/core/Profiler.php %%WWWDIR%%/core/ProxyHeaders.php +%%WWWDIR%%/core/ProxyHttp.php %%WWWDIR%%/core/QuickForm2.php %%WWWDIR%%/core/RankingQuery.php +%%WWWDIR%%/core/Registry.php %%WWWDIR%%/core/ReportRenderer.php %%WWWDIR%%/core/ReportRenderer/Html.php %%WWWDIR%%/core/ReportRenderer/Pdf.php @@ -137,55 +172,60 @@ %%WWWDIR%%/core/Segment.php %%WWWDIR%%/core/SegmentExpression.php %%WWWDIR%%/core/Session.php -%%WWWDIR%%/core/Session/Namespace.php %%WWWDIR%%/core/Session/SaveHandler/DbTable.php +%%WWWDIR%%/core/Session/SessionNamespace.php +%%WWWDIR%%/core/Settings/Manager.php +%%WWWDIR%%/core/Settings/Setting.php +%%WWWDIR%%/core/Settings/StorageInterface.php +%%WWWDIR%%/core/Settings/SystemSetting.php +%%WWWDIR%%/core/Settings/UserSetting.php +%%WWWDIR%%/core/SettingsPiwik.php +%%WWWDIR%%/core/SettingsServer.php +%%WWWDIR%%/core/Singleton.php %%WWWDIR%%/core/Site.php -%%WWWDIR%%/core/Smarty.php -%%WWWDIR%%/core/SmartyPlugins/block.purify.php -%%WWWDIR%%/core/SmartyPlugins/function.ajaxErrorDiv.php -%%WWWDIR%%/core/SmartyPlugins/function.ajaxLoadingDiv.php -%%WWWDIR%%/core/SmartyPlugins/function.ajaxRequestErrorDiv.php -%%WWWDIR%%/core/SmartyPlugins/function.hiddenurl.php -%%WWWDIR%%/core/SmartyPlugins/function.includeAssets.php -%%WWWDIR%%/core/SmartyPlugins/function.loadJavascriptTranslations.php -%%WWWDIR%%/core/SmartyPlugins/function.logoHtml.php -%%WWWDIR%%/core/SmartyPlugins/function.postEvent.php -%%WWWDIR%%/core/SmartyPlugins/function.sparkline.php -%%WWWDIR%%/core/SmartyPlugins/function.url.php -%%WWWDIR%%/core/SmartyPlugins/modifier.inlineHelp.php -%%WWWDIR%%/core/SmartyPlugins/modifier.money.php -%%WWWDIR%%/core/SmartyPlugins/modifier.stripeol.php -%%WWWDIR%%/core/SmartyPlugins/modifier.sumtime.php -%%WWWDIR%%/core/SmartyPlugins/modifier.translate.php -%%WWWDIR%%/core/SmartyPlugins/modifier.unescape.php -%%WWWDIR%%/core/SmartyPlugins/modifier.urlRewriteBasicView.php -%%WWWDIR%%/core/SmartyPlugins/modifier.urlRewriteWithParameters.php -%%WWWDIR%%/core/SmartyPlugins/outputfilter.ajaxcdn.php -%%WWWDIR%%/core/SmartyPlugins/outputfilter.cachebuster.php %%WWWDIR%%/core/TCPDF.php -%%WWWDIR%%/core/TablePartitioning.php %%WWWDIR%%/core/TaskScheduler.php +%%WWWDIR%%/core/Theme.php %%WWWDIR%%/core/Timer.php %%WWWDIR%%/core/Tracker.php %%WWWDIR%%/core/Tracker/Action.php +%%WWWDIR%%/core/Tracker/ActionClickUrl.php +%%WWWDIR%%/core/Tracker/ActionEvent.php +%%WWWDIR%%/core/Tracker/ActionPageview.php +%%WWWDIR%%/core/Tracker/ActionSiteSearch.php %%WWWDIR%%/core/Tracker/Cache.php -%%WWWDIR%%/core/Tracker/Config.php %%WWWDIR%%/core/Tracker/Db.php -%%WWWDIR%%/core/Tracker/Db/Exception.php +%%WWWDIR%%/core/Tracker/Db/DbException.php %%WWWDIR%%/core/Tracker/Db/Mysqli.php %%WWWDIR%%/core/Tracker/Db/Pdo/Mysql.php %%WWWDIR%%/core/Tracker/Db/Pdo/Pgsql.php %%WWWDIR%%/core/Tracker/GoalManager.php %%WWWDIR%%/core/Tracker/IgnoreCookie.php +%%WWWDIR%%/core/Tracker/PageUrl.php +%%WWWDIR%%/core/Tracker/Referrer.php +%%WWWDIR%%/core/Tracker/Request.php +%%WWWDIR%%/core/Tracker/TableLogAction.php %%WWWDIR%%/core/Tracker/Visit.php -%%WWWDIR%%/core/Tracker/javascriptCode.tpl +%%WWWDIR%%/core/Tracker/VisitExcluded.php +%%WWWDIR%%/core/Tracker/VisitInterface.php +%%WWWDIR%%/core/Tracker/VisitorNotFoundInDb.php %%WWWDIR%%/core/Translate.php -%%WWWDIR%%/core/TranslationWriter.php +%%WWWDIR%%/core/Translate/Filter/ByBaseTranslations.php +%%WWWDIR%%/core/Translate/Filter/ByParameterCount.php +%%WWWDIR%%/core/Translate/Filter/EmptyTranslations.php +%%WWWDIR%%/core/Translate/Filter/EncodedEntities.php +%%WWWDIR%%/core/Translate/Filter/FilterAbstract.php +%%WWWDIR%%/core/Translate/Filter/UnnecassaryWhitespaces.php +%%WWWDIR%%/core/Translate/Validate/CoreTranslations.php +%%WWWDIR%%/core/Translate/Validate/NoScripts.php +%%WWWDIR%%/core/Translate/Validate/ValidateAbstract.php +%%WWWDIR%%/core/Translate/Writer.php +%%WWWDIR%%/core/Twig.php %%WWWDIR%%/core/Unzip.php %%WWWDIR%%/core/Unzip/Gzip.php -%%WWWDIR%%/core/Unzip/Interface.php %%WWWDIR%%/core/Unzip/PclZip.php %%WWWDIR%%/core/Unzip/Tar.php +%%WWWDIR%%/core/Unzip/UncompressInterface.php %%WWWDIR%%/core/Unzip/ZipArchive.php %%WWWDIR%%/core/UpdateCheck.php %%WWWDIR%%/core/Updater.php @@ -248,89 +288,90 @@ %%WWWDIR%%/core/Updates/1.9.3-b10.php %%WWWDIR%%/core/Updates/1.9.3-b3.php %%WWWDIR%%/core/Updates/1.9.3-b8.php +%%WWWDIR%%/core/Updates/2.0-a12.php +%%WWWDIR%%/core/Updates/2.0-a13.php +%%WWWDIR%%/core/Updates/2.0-a17.php +%%WWWDIR%%/core/Updates/2.0-a7.php +%%WWWDIR%%/core/Updates/2.0-b10.php +%%WWWDIR%%/core/Updates/2.0-b13.php +%%WWWDIR%%/core/Updates/2.0-b3.php +%%WWWDIR%%/core/Updates/2.0-b9.php +%%WWWDIR%%/core/Updates/2.0-rc1.php %%WWWDIR%%/core/Url.php +%%WWWDIR%%/core/UrlHelper.php %%WWWDIR%%/core/Version.php %%WWWDIR%%/core/View.php -%%WWWDIR%%/core/View/Interface.php %%WWWDIR%%/core/View/OneClickDone.php %%WWWDIR%%/core/View/ReportsByDimension.php -%%WWWDIR%%/core/ViewDataTable.php -%%WWWDIR%%/core/ViewDataTable/Cloud.php -%%WWWDIR%%/core/ViewDataTable/GenerateGraphData.php -%%WWWDIR%%/core/ViewDataTable/GenerateGraphData/ChartEvolution.php -%%WWWDIR%%/core/ViewDataTable/GenerateGraphData/ChartPie.php -%%WWWDIR%%/core/ViewDataTable/GenerateGraphData/ChartVerticalBar.php -%%WWWDIR%%/core/ViewDataTable/GenerateGraphHTML.php -%%WWWDIR%%/core/ViewDataTable/GenerateGraphHTML/ChartEvolution.php -%%WWWDIR%%/core/ViewDataTable/GenerateGraphHTML/ChartPie.php -%%WWWDIR%%/core/ViewDataTable/GenerateGraphHTML/ChartVerticalBar.php -%%WWWDIR%%/core/ViewDataTable/HtmlTable.php -%%WWWDIR%%/core/ViewDataTable/HtmlTable/AllColumns.php -%%WWWDIR%%/core/ViewDataTable/HtmlTable/Goals.php -%%WWWDIR%%/core/ViewDataTable/Sparkline.php -%%WWWDIR%%/core/Visualization/Chart.php -%%WWWDIR%%/core/Visualization/Chart/Evolution.php -%%WWWDIR%%/core/Visualization/Chart/Pie.php -%%WWWDIR%%/core/Visualization/Chart/VerticalBar.php -%%WWWDIR%%/core/Visualization/Cloud.php +%%WWWDIR%%/core/View/ViewInterface.php +%%WWWDIR%%/core/ViewDataTable/Config.php +%%WWWDIR%%/core/ViewDataTable/Factory.php +%%WWWDIR%%/core/ViewDataTable/Manager.php +%%WWWDIR%%/core/ViewDataTable/Request.php +%%WWWDIR%%/core/ViewDataTable/RequestConfig.php %%WWWDIR%%/core/Visualization/Sparkline.php +%%WWWDIR%%/core/WidgetsList.php %%WWWDIR%%/core/testMinimumPhpVersion.php %%WWWDIR%%/index.php %%WWWDIR%%/js/LICENSE.txt %%WWWDIR%%/js/README.md %%WWWDIR%%/js/index.php %%WWWDIR%%/js/piwik.js -%%WWWDIR%%/lang/am.php -%%WWWDIR%%/lang/ar.php -%%WWWDIR%%/lang/be.php -%%WWWDIR%%/lang/bg.php -%%WWWDIR%%/lang/ca.php -%%WWWDIR%%/lang/cs.php -%%WWWDIR%%/lang/cy.php -%%WWWDIR%%/lang/da.php -%%WWWDIR%%/lang/de.php -%%WWWDIR%%/lang/el.php -%%WWWDIR%%/lang/en.php -%%WWWDIR%%/lang/es.php -%%WWWDIR%%/lang/et.php -%%WWWDIR%%/lang/eu.php -%%WWWDIR%%/lang/fa.php -%%WWWDIR%%/lang/fi.php -%%WWWDIR%%/lang/fr.php -%%WWWDIR%%/lang/gl.php -%%WWWDIR%%/lang/he.php -%%WWWDIR%%/lang/hr.php -%%WWWDIR%%/lang/hu.php -%%WWWDIR%%/lang/id.php -%%WWWDIR%%/lang/is.php -%%WWWDIR%%/lang/it.php -%%WWWDIR%%/lang/ja.php -%%WWWDIR%%/lang/ka.php -%%WWWDIR%%/lang/ko.php -%%WWWDIR%%/lang/lt.php -%%WWWDIR%%/lang/lv.php -%%WWWDIR%%/lang/nb.php -%%WWWDIR%%/lang/nl.php -%%WWWDIR%%/lang/nn.php -%%WWWDIR%%/lang/pl.php -%%WWWDIR%%/lang/pt-br.php -%%WWWDIR%%/lang/pt.php -%%WWWDIR%%/lang/ro.php -%%WWWDIR%%/lang/ru.php -%%WWWDIR%%/lang/sk.php -%%WWWDIR%%/lang/sl.php -%%WWWDIR%%/lang/sq.php -%%WWWDIR%%/lang/sr.php -%%WWWDIR%%/lang/sv.php -%%WWWDIR%%/lang/te.php -%%WWWDIR%%/lang/th.php -%%WWWDIR%%/lang/tr.php -%%WWWDIR%%/lang/uk.php -%%WWWDIR%%/lang/zh-cn.php -%%WWWDIR%%/lang/zh-tw.php +%%WWWDIR%%/lang/README.md +%%WWWDIR%%/lang/am.json +%%WWWDIR%%/lang/ar.json +%%WWWDIR%%/lang/be.json +%%WWWDIR%%/lang/bg.json +%%WWWDIR%%/lang/bn.json +%%WWWDIR%%/lang/bs.json +%%WWWDIR%%/lang/ca.json +%%WWWDIR%%/lang/cs.json +%%WWWDIR%%/lang/cy.json +%%WWWDIR%%/lang/da.json +%%WWWDIR%%/lang/de.json +%%WWWDIR%%/lang/el.json +%%WWWDIR%%/lang/en.json +%%WWWDIR%%/lang/es.json +%%WWWDIR%%/lang/et.json +%%WWWDIR%%/lang/eu.json +%%WWWDIR%%/lang/fa.json +%%WWWDIR%%/lang/fi.json +%%WWWDIR%%/lang/fr.json +%%WWWDIR%%/lang/gl.json +%%WWWDIR%%/lang/he.json +%%WWWDIR%%/lang/hi.json +%%WWWDIR%%/lang/hr.json +%%WWWDIR%%/lang/hu.json +%%WWWDIR%%/lang/id.json +%%WWWDIR%%/lang/is.json +%%WWWDIR%%/lang/it.json +%%WWWDIR%%/lang/ja.json +%%WWWDIR%%/lang/ka.json +%%WWWDIR%%/lang/ko.json +%%WWWDIR%%/lang/lt.json +%%WWWDIR%%/lang/lv.json +%%WWWDIR%%/lang/nb.json +%%WWWDIR%%/lang/nl.json +%%WWWDIR%%/lang/nn.json +%%WWWDIR%%/lang/pl.json +%%WWWDIR%%/lang/pt-br.json +%%WWWDIR%%/lang/pt.json +%%WWWDIR%%/lang/ro.json +%%WWWDIR%%/lang/ru.json +%%WWWDIR%%/lang/sk.json +%%WWWDIR%%/lang/sl.json +%%WWWDIR%%/lang/sq.json +%%WWWDIR%%/lang/sr.json +%%WWWDIR%%/lang/sv.json +%%WWWDIR%%/lang/ta.json +%%WWWDIR%%/lang/te.json +%%WWWDIR%%/lang/th.json +%%WWWDIR%%/lang/tr.json +%%WWWDIR%%/lang/uk.json +%%WWWDIR%%/lang/vi.json +%%WWWDIR%%/lang/zh-cn.json +%%WWWDIR%%/lang/zh-tw.json %%WWWDIR%%/libs/Archive_Tar/Tar.php -%%WWWDIR%%/libs/Event/Dispatcher.php -%%WWWDIR%%/libs/Event/Notification.php %%WWWDIR%%/libs/HTML/Common2.php %%WWWDIR%%/libs/HTML/QuickForm2.php %%WWWDIR%%/libs/HTML/QuickForm2/Container.php @@ -407,101 +448,9 @@ %%WWWDIR%%/libs/PiwikTracker/LICENSE.txt %%WWWDIR%%/libs/PiwikTracker/PiwikTracker.php %%WWWDIR%%/libs/README.md -%%WWWDIR%%/libs/Smarty/Config_File.class.php -%%WWWDIR%%/libs/Smarty/Smarty.class.php -%%WWWDIR%%/libs/Smarty/Smarty_Compiler.class.php -%%WWWDIR%%/libs/Smarty/debug.tpl -%%WWWDIR%%/libs/Smarty/gpl.txt -%%WWWDIR%%/libs/Smarty/internals/core.assemble_plugin_filepath.php -%%WWWDIR%%/libs/Smarty/internals/core.assign_smarty_interface.php -%%WWWDIR%%/libs/Smarty/internals/core.create_dir_structure.php -%%WWWDIR%%/libs/Smarty/internals/core.display_debug_console.php -%%WWWDIR%%/libs/Smarty/internals/core.get_include_path.php -%%WWWDIR%%/libs/Smarty/internals/core.get_microtime.php -%%WWWDIR%%/libs/Smarty/internals/core.get_php_resource.php -%%WWWDIR%%/libs/Smarty/internals/core.is_secure.php -%%WWWDIR%%/libs/Smarty/internals/core.is_trusted.php -%%WWWDIR%%/libs/Smarty/internals/core.load_plugins.php -%%WWWDIR%%/libs/Smarty/internals/core.load_resource_plugin.php -%%WWWDIR%%/libs/Smarty/internals/core.process_cached_inserts.php -%%WWWDIR%%/libs/Smarty/internals/core.process_compiled_include.php -%%WWWDIR%%/libs/Smarty/internals/core.read_cache_file.php -%%WWWDIR%%/libs/Smarty/internals/core.rm_auto.php -%%WWWDIR%%/libs/Smarty/internals/core.rmdir.php -%%WWWDIR%%/libs/Smarty/internals/core.run_insert_handler.php -%%WWWDIR%%/libs/Smarty/internals/core.smarty_include_php.php -%%WWWDIR%%/libs/Smarty/internals/core.write_cache_file.php -%%WWWDIR%%/libs/Smarty/internals/core.write_compiled_include.php -%%WWWDIR%%/libs/Smarty/internals/core.write_compiled_resource.php -%%WWWDIR%%/libs/Smarty/internals/core.write_file.php -%%WWWDIR%%/libs/Smarty/lgpl-2.1.txt -%%WWWDIR%%/libs/Smarty/lgpl-3.0.txt -%%WWWDIR%%/libs/Smarty/plugins/block.textformat.php -%%WWWDIR%%/libs/Smarty/plugins/compiler.assign.php -%%WWWDIR%%/libs/Smarty/plugins/function.assign_debug_info.php -%%WWWDIR%%/libs/Smarty/plugins/function.config_load.php -%%WWWDIR%%/libs/Smarty/plugins/function.counter.php -%%WWWDIR%%/libs/Smarty/plugins/function.cycle.php -%%WWWDIR%%/libs/Smarty/plugins/function.debug.php -%%WWWDIR%%/libs/Smarty/plugins/function.eval.php -%%WWWDIR%%/libs/Smarty/plugins/function.fetch.php -%%WWWDIR%%/libs/Smarty/plugins/function.html_checkboxes.php -%%WWWDIR%%/libs/Smarty/plugins/function.html_image.php -%%WWWDIR%%/libs/Smarty/plugins/function.html_options.php -%%WWWDIR%%/libs/Smarty/plugins/function.html_radios.php -%%WWWDIR%%/libs/Smarty/plugins/function.html_select_date.php -%%WWWDIR%%/libs/Smarty/plugins/function.html_select_time.php -%%WWWDIR%%/libs/Smarty/plugins/function.html_table.php -%%WWWDIR%%/libs/Smarty/plugins/function.mailto.php -%%WWWDIR%%/libs/Smarty/plugins/function.math.php -%%WWWDIR%%/libs/Smarty/plugins/function.popup.php -%%WWWDIR%%/libs/Smarty/plugins/function.popup_init.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.capitalize.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.cat.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.count_characters.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.count_paragraphs.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.count_sentences.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.count_words.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.date_format.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.debug_print_var.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.default.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.escape.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.indent.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.lower.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.nl2br.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.regex_replace.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.replace.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.spacify.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.string_format.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.strip.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.strip_tags.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.truncate.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.upper.php -%%WWWDIR%%/libs/Smarty/plugins/modifier.wordwrap.php -%%WWWDIR%%/libs/Smarty/plugins/outputfilter.trimwhitespace.php -%%WWWDIR%%/libs/Smarty/plugins/shared.escape_special_chars.php -%%WWWDIR%%/libs/Smarty/plugins/shared.make_timestamp.php %%WWWDIR%%/libs/UserAgentParser/README.md %%WWWDIR%%/libs/UserAgentParser/UserAgentParser.php %%WWWDIR%%/libs/UserAgentParser/UserAgentParser.test.php -%%WWWDIR%%/libs/Zend/Auth.php -%%WWWDIR%%/libs/Zend/Auth/Adapter/DbTable.php -%%WWWDIR%%/libs/Zend/Auth/Adapter/Digest.php -%%WWWDIR%%/libs/Zend/Auth/Adapter/Exception.php -%%WWWDIR%%/libs/Zend/Auth/Adapter/Http.php -%%WWWDIR%%/libs/Zend/Auth/Adapter/Http/Resolver/Exception.php -%%WWWDIR%%/libs/Zend/Auth/Adapter/Http/Resolver/File.php -%%WWWDIR%%/libs/Zend/Auth/Adapter/Http/Resolver/Interface.php -%%WWWDIR%%/libs/Zend/Auth/Adapter/InfoCard.php -%%WWWDIR%%/libs/Zend/Auth/Adapter/Interface.php -%%WWWDIR%%/libs/Zend/Auth/Adapter/Ldap.php -%%WWWDIR%%/libs/Zend/Auth/Adapter/OpenId.php -%%WWWDIR%%/libs/Zend/Auth/Exception.php -%%WWWDIR%%/libs/Zend/Auth/Result.php -%%WWWDIR%%/libs/Zend/Auth/Storage/Exception.php -%%WWWDIR%%/libs/Zend/Auth/Storage/Interface.php -%%WWWDIR%%/libs/Zend/Auth/Storage/NonPersistent.php -%%WWWDIR%%/libs/Zend/Auth/Storage/Session.php %%WWWDIR%%/libs/Zend/Cache.php %%WWWDIR%%/libs/Zend/Cache/Backend.php %%WWWDIR%%/libs/Zend/Cache/Backend/Apc.php @@ -598,153 +547,7 @@ %%WWWDIR%%/libs/Zend/Db/Table/Select.php %%WWWDIR%%/libs/Zend/Db/Table/Select/Exception.php %%WWWDIR%%/libs/Zend/Exception.php -%%WWWDIR%%/libs/Zend/Feed.php -%%WWWDIR%%/libs/Zend/Feed/Abstract.php -%%WWWDIR%%/libs/Zend/Feed/Atom.php -%%WWWDIR%%/libs/Zend/Feed/Builder.php -%%WWWDIR%%/libs/Zend/Feed/Builder/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Builder/Exception.php -%%WWWDIR%%/libs/Zend/Feed/Builder/Header.php -%%WWWDIR%%/libs/Zend/Feed/Builder/Header/Itunes.php -%%WWWDIR%%/libs/Zend/Feed/Builder/Interface.php -%%WWWDIR%%/libs/Zend/Feed/Element.php -%%WWWDIR%%/libs/Zend/Feed/Entry/Abstract.php -%%WWWDIR%%/libs/Zend/Feed/Entry/Atom.php -%%WWWDIR%%/libs/Zend/Feed/Entry/Rss.php -%%WWWDIR%%/libs/Zend/Feed/Exception.php -%%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub.php -%%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/CallbackAbstract.php -%%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/CallbackInterface.php -%%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/Exception.php -%%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/HttpResponse.php -%%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/Model/ModelAbstract.php -%%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/Model/Subscription.php -%%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/Model/SubscriptionInterface.php -%%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/Publisher.php -%%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/Subscriber.php -%%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/Subscriber/Callback.php -%%WWWDIR%%/libs/Zend/Feed/Reader.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Collection.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Collection/Author.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Collection/Category.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Collection/CollectionAbstract.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Entry/Atom.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Entry/Rss.php -%%WWWDIR%%/libs/Zend/Feed/Reader/EntryAbstract.php -%%WWWDIR%%/libs/Zend/Feed/Reader/EntryInterface.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Atom/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Atom/Feed.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Content/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/CreativeCommons/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/CreativeCommons/Feed.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/DublinCore/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/DublinCore/Feed.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/EntryAbstract.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/FeedAbstract.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Podcast/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Podcast/Feed.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Slash/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Syndication/Feed.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Thread/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Extension/WellFormedWeb/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Feed/Atom.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Feed/Atom/Source.php -%%WWWDIR%%/libs/Zend/Feed/Reader/Feed/Rss.php -%%WWWDIR%%/libs/Zend/Feed/Reader/FeedAbstract.php -%%WWWDIR%%/libs/Zend/Feed/Reader/FeedInterface.php -%%WWWDIR%%/libs/Zend/Feed/Reader/FeedSet.php -%%WWWDIR%%/libs/Zend/Feed/Rss.php -%%WWWDIR%%/libs/Zend/Feed/Writer.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Deleted.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Exception/InvalidMethodException.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Atom/Renderer/Feed.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Content/Renderer/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/DublinCore/Renderer/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/DublinCore/Renderer/Feed.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/ITunes/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/ITunes/Feed.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/ITunes/Renderer/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/ITunes/Renderer/Feed.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/RendererAbstract.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/RendererInterface.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Slash/Renderer/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Threading/Renderer/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Extension/WellFormedWeb/Renderer/Entry.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Feed.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Feed/FeedAbstract.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/Entry/Atom.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/Entry/Atom/Deleted.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/Entry/Rss.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/Feed/Atom.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/Feed/Atom/AtomAbstract.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/Feed/Atom/Source.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/Feed/Rss.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/RendererAbstract.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/RendererInterface.php -%%WWWDIR%%/libs/Zend/Feed/Writer/Source.php -%%WWWDIR%%/libs/Zend/Http/Client.php -%%WWWDIR%%/libs/Zend/Http/Client/Adapter/Curl.php -%%WWWDIR%%/libs/Zend/Http/Client/Adapter/Exception.php -%%WWWDIR%%/libs/Zend/Http/Client/Adapter/Interface.php -%%WWWDIR%%/libs/Zend/Http/Client/Adapter/Proxy.php -%%WWWDIR%%/libs/Zend/Http/Client/Adapter/Socket.php -%%WWWDIR%%/libs/Zend/Http/Client/Adapter/Stream.php -%%WWWDIR%%/libs/Zend/Http/Client/Adapter/Test.php -%%WWWDIR%%/libs/Zend/Http/Client/Exception.php -%%WWWDIR%%/libs/Zend/Http/Cookie.php -%%WWWDIR%%/libs/Zend/Http/CookieJar.php -%%WWWDIR%%/libs/Zend/Http/Exception.php -%%WWWDIR%%/libs/Zend/Http/Response.php -%%WWWDIR%%/libs/Zend/Http/Response/Stream.php -%%WWWDIR%%/libs/Zend/Http/UserAgent.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/AbstractDevice.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Bot.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Checker.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Console.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Desktop.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Device.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Email.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Exception.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Features/Adapter.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Features/Adapter/DeviceAtlas.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Features/Adapter/TeraWurfl.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Features/Adapter/WurflApi.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Features/Exception.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Feed.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Mobile.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Offline.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Probe.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Spam.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Storage.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Storage/Exception.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Storage/NonPersistent.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Storage/Session.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Text.php -%%WWWDIR%%/libs/Zend/Http/UserAgent/Validator.php %%WWWDIR%%/libs/Zend/LICENSE.txt -%%WWWDIR%%/libs/Zend/Log.php -%%WWWDIR%%/libs/Zend/Log/Exception.php -%%WWWDIR%%/libs/Zend/Log/FactoryInterface.php -%%WWWDIR%%/libs/Zend/Log/Filter/Abstract.php -%%WWWDIR%%/libs/Zend/Log/Filter/Interface.php -%%WWWDIR%%/libs/Zend/Log/Filter/Message.php -%%WWWDIR%%/libs/Zend/Log/Filter/Priority.php -%%WWWDIR%%/libs/Zend/Log/Filter/Suppress.php -%%WWWDIR%%/libs/Zend/Log/Formatter/Abstract.php -%%WWWDIR%%/libs/Zend/Log/Formatter/Firebug.php -%%WWWDIR%%/libs/Zend/Log/Formatter/Interface.php -%%WWWDIR%%/libs/Zend/Log/Formatter/Simple.php -%%WWWDIR%%/libs/Zend/Log/Formatter/Xml.php -%%WWWDIR%%/libs/Zend/Log/Writer/Abstract.php -%%WWWDIR%%/libs/Zend/Log/Writer/Db.php -%%WWWDIR%%/libs/Zend/Log/Writer/Firebug.php -%%WWWDIR%%/libs/Zend/Log/Writer/Mail.php -%%WWWDIR%%/libs/Zend/Log/Writer/Mock.php -%%WWWDIR%%/libs/Zend/Log/Writer/Null.php -%%WWWDIR%%/libs/Zend/Log/Writer/Stream.php -%%WWWDIR%%/libs/Zend/Log/Writer/Syslog.php -%%WWWDIR%%/libs/Zend/Log/Writer/ZendMonitor.php %%WWWDIR%%/libs/Zend/Mail.php %%WWWDIR%%/libs/Zend/Mail/Exception.php %%WWWDIR%%/libs/Zend/Mail/Message.php @@ -795,51 +598,15 @@ %%WWWDIR%%/libs/Zend/Session/Validator/Abstract.php %%WWWDIR%%/libs/Zend/Session/Validator/HttpUserAgent.php %%WWWDIR%%/libs/Zend/Session/Validator/Interface.php -%%WWWDIR%%/libs/Zend/Uri.php -%%WWWDIR%%/libs/Zend/Uri/Exception.php -%%WWWDIR%%/libs/Zend/Uri/Http.php %%WWWDIR%%/libs/Zend/Validate.php %%WWWDIR%%/libs/Zend/Validate/Abstract.php %%WWWDIR%%/libs/Zend/Validate/Alnum.php %%WWWDIR%%/libs/Zend/Validate/Alpha.php -%%WWWDIR%%/libs/Zend/Validate/Barcode.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/AdapterAbstract.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/AdapterInterface.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Code25.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Code25interleaved.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Code39.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Code39ext.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Code93.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Code93ext.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Ean12.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Ean13.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Ean14.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Ean18.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Ean2.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Ean5.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Ean8.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Gtin12.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Gtin13.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Gtin14.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Identcode.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Intelligentmail.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Issn.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Itf14.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Leitcode.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Planet.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Postnet.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Royalmail.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Sscc.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Upca.php -%%WWWDIR%%/libs/Zend/Validate/Barcode/Upce.php %%WWWDIR%%/libs/Zend/Validate/Between.php %%WWWDIR%%/libs/Zend/Validate/Callback.php %%WWWDIR%%/libs/Zend/Validate/Ccnum.php %%WWWDIR%%/libs/Zend/Validate/CreditCard.php %%WWWDIR%%/libs/Zend/Validate/Date.php -%%WWWDIR%%/libs/Zend/Validate/Db/Abstract.php -%%WWWDIR%%/libs/Zend/Validate/Db/NoRecordExists.php -%%WWWDIR%%/libs/Zend/Validate/Db/RecordExists.php %%WWWDIR%%/libs/Zend/Validate/Digits.php %%WWWDIR%%/libs/Zend/Validate/EmailAddress.php %%WWWDIR%%/libs/Zend/Validate/Exception.php @@ -880,14 +647,8 @@ %%WWWDIR%%/libs/Zend/Validate/NotEmpty.php %%WWWDIR%%/libs/Zend/Validate/PostCode.php %%WWWDIR%%/libs/Zend/Validate/Regex.php -%%WWWDIR%%/libs/Zend/Validate/Sitemap/Changefreq.php -%%WWWDIR%%/libs/Zend/Validate/Sitemap/Lastmod.php -%%WWWDIR%%/libs/Zend/Validate/Sitemap/Loc.php -%%WWWDIR%%/libs/Zend/Validate/Sitemap/Priority.php %%WWWDIR%%/libs/Zend/Validate/StringLength.php %%WWWDIR%%/libs/Zend/Version.php -%%WWWDIR%%/libs/cssmin/MIT-LICENSE.txt -%%WWWDIR%%/libs/cssmin/cssmin.php %%WWWDIR%%/libs/html5shiv/html5shiv.js %%WWWDIR%%/libs/javascript/json2.js %%WWWDIR%%/libs/javascript/sprintf.js @@ -923,13 +684,22 @@ %%WWWDIR%%/libs/jquery/MIT-LICENSE-scrollto.txt %%WWWDIR%%/libs/jquery/gpl-2.0.txt %%WWWDIR%%/libs/jquery/gpl-3.0.txt +%%WWWDIR%%/libs/jquery/images/down_arrow.png +%%WWWDIR%%/libs/jquery/images/scroller.png +%%WWWDIR%%/libs/jquery/images/slide.png +%%WWWDIR%%/libs/jquery/images/up_arrow.png %%WWWDIR%%/libs/jquery/jquery-ui.js %%WWWDIR%%/libs/jquery/jquery.browser.js %%WWWDIR%%/libs/jquery/jquery.history.js %%WWWDIR%%/libs/jquery/jquery.js +%%WWWDIR%%/libs/jquery/jquery.jscrollpane.js +%%WWWDIR%%/libs/jquery/jquery.mousewheel.js %%WWWDIR%%/libs/jquery/jquery.placeholder.js %%WWWDIR%%/libs/jquery/jquery.scrollTo.js %%WWWDIR%%/libs/jquery/jquery.truncate.js +%%WWWDIR%%/libs/jquery/mwheelIntent.js +%%WWWDIR%%/libs/jquery/stylesheets/jquery.jscrollpane.css +%%WWWDIR%%/libs/jquery/stylesheets/scroll.less %%WWWDIR%%/libs/jquery/themes/base/images/ui-anim_basic_16x16.gif %%WWWDIR%%/libs/jquery/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png %%WWWDIR%%/libs/jquery/themes/base/images/ui-bg_flat_75_ffffff_40x100.png @@ -945,14 +715,12 @@ %%WWWDIR%%/libs/jquery/themes/base/images/ui-icons_888888_256x240.png %%WWWDIR%%/libs/jquery/themes/base/images/ui-icons_cd0a0a_256x240.png %%WWWDIR%%/libs/jquery/themes/base/jquery-ui.css -%%WWWDIR%%/libs/jsmin/jsmin.php %%WWWDIR%%/libs/pChart2.1.3/GPLv3.txt %%WWWDIR%%/libs/pChart2.1.3/change.log %%WWWDIR%%/libs/pChart2.1.3/class/pData.class.php %%WWWDIR%%/libs/pChart2.1.3/class/pDraw.class.php %%WWWDIR%%/libs/pChart2.1.3/class/pImage.class.php %%WWWDIR%%/libs/pChart2.1.3/class/pPie.class.php -%%WWWDIR%%/libs/pChart2.1.3/index.php %%WWWDIR%%/libs/pChart2.1.3/readme.txt %%WWWDIR%%/libs/sparkline/CHANGES %%WWWDIR%%/libs/sparkline/DESIGN @@ -963,10 +731,12 @@ %%WWWDIR%%/libs/sparkline/lib/Sparkline.php %%WWWDIR%%/libs/sparkline/lib/Sparkline_Bar.php %%WWWDIR%%/libs/sparkline/lib/Sparkline_Line.php +%%WWWDIR%%/libs/spyc.php %%WWWDIR%%/libs/tcpdf/2dbarcodes.php -%%WWWDIR%%/libs/tcpdf/CHANGELOG.TXT +%%WWWDIR%%/libs/tcpdf/LICENSE.TXT %%WWWDIR%%/libs/tcpdf/README.TXT %%WWWDIR%%/libs/tcpdf/barcodes.php +%%WWWDIR%%/libs/tcpdf/composer.json %%WWWDIR%%/libs/tcpdf/config/lang/eng.php %%WWWDIR%%/libs/tcpdf/config/tcpdf_config.php %%WWWDIR%%/libs/tcpdf/config/tcpdf_config_alt.php @@ -992,6 +762,13 @@ %%WWWDIR%%/libs/tcpdf/fonts/timesi.php %%WWWDIR%%/libs/tcpdf/gpl.txt %%WWWDIR%%/libs/tcpdf/htmlcolors.php +%%WWWDIR%%/libs/tcpdf/include/sRGB.icc +%%WWWDIR%%/libs/tcpdf/include/tcpdf_colors.php +%%WWWDIR%%/libs/tcpdf/include/tcpdf_filters.php +%%WWWDIR%%/libs/tcpdf/include/tcpdf_font_data.php +%%WWWDIR%%/libs/tcpdf/include/tcpdf_fonts.php +%%WWWDIR%%/libs/tcpdf/include/tcpdf_images.php +%%WWWDIR%%/libs/tcpdf/include/tcpdf_static.php %%WWWDIR%%/libs/tcpdf/lgpl-3.0.txt %%WWWDIR%%/libs/tcpdf/pdf417.php %%WWWDIR%%/libs/tcpdf/qrcode.php @@ -1000,6 +777,9 @@ %%WWWDIR%%/libs/tcpdf/tcpdf.fdf %%WWWDIR%%/libs/tcpdf/tcpdf.p12 %%WWWDIR%%/libs/tcpdf/tcpdf.php +%%WWWDIR%%/libs/tcpdf/tcpdf_autoconfig.php +%%WWWDIR%%/libs/tcpdf/tcpdf_import.php +%%WWWDIR%%/libs/tcpdf/tcpdf_parser.php %%WWWDIR%%/libs/tcpdf/unicode_data.php %%WWWDIR%%/libs/upgradephp/README %%WWWDIR%%/libs/upgradephp/upgrade.php @@ -1031,159 +811,298 @@ %%WWWDIR%%/misc/others/widget_example_lastvisits.html %%WWWDIR%%/misc/proxy-hide-piwik-url/README.md %%WWWDIR%%/misc/proxy-hide-piwik-url/piwik.php +%%WWWDIR%%/misc/translationTool.sh +%%WWWDIR%%/misc/user/.gitkeep +%%WWWDIR%%/misc/user/.htaccess %%WWWDIR%%/piwik.js %%WWWDIR%%/piwik.php %%WWWDIR%%/plugins/API/API.php %%WWWDIR%%/plugins/API/Controller.php -%%WWWDIR%%/plugins/API/css/styles.css -%%WWWDIR%%/plugins/API/templates/listAllAPI.tpl +%%WWWDIR%%/plugins/API/ProcessedReport.php +%%WWWDIR%%/plugins/API/RowEvolution.php +%%WWWDIR%%/plugins/API/stylesheets/listAllAPI.less +%%WWWDIR%%/plugins/API/templates/listAllAPI.twig %%WWWDIR%%/plugins/Actions/API.php %%WWWDIR%%/plugins/Actions/Actions.php -%%WWWDIR%%/plugins/Actions/Archiving.php +%%WWWDIR%%/plugins/Actions/Archiver.php %%WWWDIR%%/plugins/Actions/ArchivingHelper.php %%WWWDIR%%/plugins/Actions/Controller.php -%%WWWDIR%%/plugins/Actions/templates/indexSiteSearch.tpl +%%WWWDIR%%/plugins/Actions/javascripts/actionsDataTable.js +%%WWWDIR%%/plugins/Actions/stylesheets/dataTableActions.less +%%WWWDIR%%/plugins/Actions/templates/indexSiteSearch.twig %%WWWDIR%%/plugins/Annotations/API.php %%WWWDIR%%/plugins/Annotations/AnnotationList.php %%WWWDIR%%/plugins/Annotations/Annotations.php %%WWWDIR%%/plugins/Annotations/Controller.php -%%WWWDIR%%/plugins/Annotations/templates/annotation.tpl -%%WWWDIR%%/plugins/Annotations/templates/annotationManager.tpl -%%WWWDIR%%/plugins/Annotations/templates/annotations.js -%%WWWDIR%%/plugins/Annotations/templates/annotations.tpl -%%WWWDIR%%/plugins/Annotations/templates/evolutionAnnotations.tpl -%%WWWDIR%%/plugins/Annotations/templates/styles.css +%%WWWDIR%%/plugins/Annotations/javascripts/annotations.js +%%WWWDIR%%/plugins/Annotations/stylesheets/annotations.less +%%WWWDIR%%/plugins/Annotations/templates/_annotation.twig +%%WWWDIR%%/plugins/Annotations/templates/_annotationList.twig +%%WWWDIR%%/plugins/Annotations/templates/getAnnotationManager.twig +%%WWWDIR%%/plugins/Annotations/templates/getEvolutionIcons.twig +%%WWWDIR%%/plugins/Annotations/templates/saveAnnotation.twig %%WWWDIR%%/plugins/AnonymizeIP/AnonymizeIP.php %%WWWDIR%%/plugins/CoreAdminHome/API.php %%WWWDIR%%/plugins/CoreAdminHome/Controller.php %%WWWDIR%%/plugins/CoreAdminHome/CoreAdminHome.php -%%WWWDIR%%/plugins/CoreAdminHome/templates/footer.tpl -%%WWWDIR%%/plugins/CoreAdminHome/templates/generalSettings.js -%%WWWDIR%%/plugins/CoreAdminHome/templates/generalSettings.tpl -%%WWWDIR%%/plugins/CoreAdminHome/templates/header.tpl -%%WWWDIR%%/plugins/CoreAdminHome/templates/jsTrackingGenerator.css -%%WWWDIR%%/plugins/CoreAdminHome/templates/jsTrackingGenerator.js -%%WWWDIR%%/plugins/CoreAdminHome/templates/jsTrackingGenerator.tpl -%%WWWDIR%%/plugins/CoreAdminHome/templates/menu.css -%%WWWDIR%%/plugins/CoreAdminHome/templates/menu.tpl -%%WWWDIR%%/plugins/CoreAdminHome/templates/optOut.tpl -%%WWWDIR%%/plugins/CoreAdminHome/templates/styles.css +%%WWWDIR%%/plugins/CoreAdminHome/javascripts/generalSettings.js +%%WWWDIR%%/plugins/CoreAdminHome/javascripts/jsTrackingGenerator.js +%%WWWDIR%%/plugins/CoreAdminHome/javascripts/pluginSettings.js +%%WWWDIR%%/plugins/CoreAdminHome/stylesheets/generalSettings.less +%%WWWDIR%%/plugins/CoreAdminHome/stylesheets/jsTrackingGenerator.css +%%WWWDIR%%/plugins/CoreAdminHome/stylesheets/menu.less +%%WWWDIR%%/plugins/CoreAdminHome/stylesheets/pluginSettings.less +%%WWWDIR%%/plugins/CoreAdminHome/templates/_menu.twig +%%WWWDIR%%/plugins/CoreAdminHome/templates/generalSettings.twig +%%WWWDIR%%/plugins/CoreAdminHome/templates/optOut.twig +%%WWWDIR%%/plugins/CoreAdminHome/templates/pluginSettings.twig +%%WWWDIR%%/plugins/CoreAdminHome/templates/trackingCodeGenerator.twig +%%WWWDIR%%/plugins/CoreConsole/Commands/CodeCoverage.php +%%WWWDIR%%/plugins/CoreConsole/Commands/GenerateApi.php +%%WWWDIR%%/plugins/CoreConsole/Commands/GenerateCommand.php +%%WWWDIR%%/plugins/CoreConsole/Commands/GenerateController.php +%%WWWDIR%%/plugins/CoreConsole/Commands/GeneratePlugin.php +%%WWWDIR%%/plugins/CoreConsole/Commands/GeneratePluginBase.php +%%WWWDIR%%/plugins/CoreConsole/Commands/GenerateSettings.php +%%WWWDIR%%/plugins/CoreConsole/Commands/GenerateTest.php +%%WWWDIR%%/plugins/CoreConsole/Commands/GenerateVisualizationPlugin.php +%%WWWDIR%%/plugins/CoreConsole/Commands/GitCommit.php +%%WWWDIR%%/plugins/CoreConsole/Commands/GitPull.php +%%WWWDIR%%/plugins/CoreConsole/Commands/GitPush.php +%%WWWDIR%%/plugins/CoreConsole/Commands/RunTests.php +%%WWWDIR%%/plugins/CoreConsole/Commands/SyncUITestScreenshots.php +%%WWWDIR%%/plugins/CoreConsole/Commands/WatchLog.php +%%WWWDIR%%/plugins/CoreConsole/CoreConsole.php %%WWWDIR%%/plugins/CoreHome/Controller.php %%WWWDIR%%/plugins/CoreHome/CoreHome.php %%WWWDIR%%/plugins/CoreHome/DataTableRowAction/MultiRowEvolution.php %%WWWDIR%%/plugins/CoreHome/DataTableRowAction/RowEvolution.php -%%WWWDIR%%/plugins/CoreHome/templates/autocomplete.js -%%WWWDIR%%/plugins/CoreHome/templates/broadcast.js -%%WWWDIR%%/plugins/CoreHome/templates/calendar.js -%%WWWDIR%%/plugins/CoreHome/templates/cloud.css -%%WWWDIR%%/plugins/CoreHome/templates/cloud.tpl -%%WWWDIR%%/plugins/CoreHome/templates/datatable.css -%%WWWDIR%%/plugins/CoreHome/templates/datatable.js -%%WWWDIR%%/plugins/CoreHome/templates/datatable.tpl -%%WWWDIR%%/plugins/CoreHome/templates/datatable_actions.tpl -%%WWWDIR%%/plugins/CoreHome/templates/datatable_actions_recursive.tpl -%%WWWDIR%%/plugins/CoreHome/templates/datatable_actions_subdatable.tpl -%%WWWDIR%%/plugins/CoreHome/templates/datatable_cell.tpl -%%WWWDIR%%/plugins/CoreHome/templates/datatable_footer.tpl -%%WWWDIR%%/plugins/CoreHome/templates/datatable_head.tpl -%%WWWDIR%%/plugins/CoreHome/templates/datatable_js.tpl -%%WWWDIR%%/plugins/CoreHome/templates/datatable_manager.js -%%WWWDIR%%/plugins/CoreHome/templates/datatable_rowactions.js -%%WWWDIR%%/plugins/CoreHome/templates/date.js -%%WWWDIR%%/plugins/CoreHome/templates/donate.css -%%WWWDIR%%/plugins/CoreHome/templates/donate.js -%%WWWDIR%%/plugins/CoreHome/templates/donate.tpl -%%WWWDIR%%/plugins/CoreHome/templates/footer.tpl -%%WWWDIR%%/plugins/CoreHome/templates/graph.tpl -%%WWWDIR%%/plugins/CoreHome/templates/header.tpl -%%WWWDIR%%/plugins/CoreHome/templates/header_message.tpl -%%WWWDIR%%/plugins/CoreHome/templates/html_report_body.tpl -%%WWWDIR%%/plugins/CoreHome/templates/html_report_footer.tpl -%%WWWDIR%%/plugins/CoreHome/templates/html_report_header.tpl -%%WWWDIR%%/plugins/CoreHome/templates/iframe_buster_body.tpl -%%WWWDIR%%/plugins/CoreHome/templates/iframe_buster_header.tpl -%%WWWDIR%%/plugins/CoreHome/templates/images/bg_header.jpg -%%WWWDIR%%/plugins/CoreHome/templates/images/bullet1.gif -%%WWWDIR%%/plugins/CoreHome/templates/images/bullet2.gif -%%WWWDIR%%/plugins/CoreHome/templates/images/favicon.ico -%%WWWDIR%%/plugins/CoreHome/templates/images/more.png -%%WWWDIR%%/plugins/CoreHome/templates/images/more_date.gif -%%WWWDIR%%/plugins/CoreHome/templates/images/more_period.gif -%%WWWDIR%%/plugins/CoreHome/templates/images/promo_splash.png -%%WWWDIR%%/plugins/CoreHome/templates/images/reset_search.png -%%WWWDIR%%/plugins/CoreHome/templates/images/search.png -%%WWWDIR%%/plugins/CoreHome/templates/index.tpl -%%WWWDIR%%/plugins/CoreHome/templates/index_before_menu.tpl -%%WWWDIR%%/plugins/CoreHome/templates/index_content.tpl -%%WWWDIR%%/plugins/CoreHome/templates/jqplot.css -%%WWWDIR%%/plugins/CoreHome/templates/jqplot.js -%%WWWDIR%%/plugins/CoreHome/templates/jquery.ui.autocomplete.css -%%WWWDIR%%/plugins/CoreHome/templates/js_css_includes.tpl -%%WWWDIR%%/plugins/CoreHome/templates/js_disabled_notice.tpl -%%WWWDIR%%/plugins/CoreHome/templates/js_global_variables.tpl -%%WWWDIR%%/plugins/CoreHome/templates/logo.tpl -%%WWWDIR%%/plugins/CoreHome/templates/menu.css -%%WWWDIR%%/plugins/CoreHome/templates/menu.js -%%WWWDIR%%/plugins/CoreHome/templates/menu.tpl -%%WWWDIR%%/plugins/CoreHome/templates/menu_init.js -%%WWWDIR%%/plugins/CoreHome/templates/misc.js -%%WWWDIR%%/plugins/CoreHome/templates/period_select.tpl -%%WWWDIR%%/plugins/CoreHome/templates/piwik_tag.tpl -%%WWWDIR%%/plugins/CoreHome/templates/popover.js -%%WWWDIR%%/plugins/CoreHome/templates/popover_multirowevolution.tpl -%%WWWDIR%%/plugins/CoreHome/templates/popover_rowevolution.tpl -%%WWWDIR%%/plugins/CoreHome/templates/promo_video.tpl -%%WWWDIR%%/plugins/CoreHome/templates/reports_by_dimension.tpl -%%WWWDIR%%/plugins/CoreHome/templates/single_report.tpl -%%WWWDIR%%/plugins/CoreHome/templates/sites_selection.tpl -%%WWWDIR%%/plugins/CoreHome/templates/sparkline.js -%%WWWDIR%%/plugins/CoreHome/templates/sparkline_footer.tpl -%%WWWDIR%%/plugins/CoreHome/templates/styles.css -%%WWWDIR%%/plugins/CoreHome/templates/top_bar.tpl -%%WWWDIR%%/plugins/CoreHome/templates/top_bar_hello_menu.tpl -%%WWWDIR%%/plugins/CoreHome/templates/top_bar_top_menu.tpl -%%WWWDIR%%/plugins/CoreHome/templates/top_screen.tpl -%%WWWDIR%%/plugins/CoreHome/templates/warning_invalid_host.tpl +%%WWWDIR%%/plugins/CoreHome/images/bg_header.jpg +%%WWWDIR%%/plugins/CoreHome/images/bullet1.gif +%%WWWDIR%%/plugins/CoreHome/images/bullet2.gif +%%WWWDIR%%/plugins/CoreHome/images/favicon.ico +%%WWWDIR%%/plugins/CoreHome/images/more.png +%%WWWDIR%%/plugins/CoreHome/images/more_date.gif +%%WWWDIR%%/plugins/CoreHome/images/more_period.gif +%%WWWDIR%%/plugins/CoreHome/images/promo_splash.png +%%WWWDIR%%/plugins/CoreHome/images/reset_search.png +%%WWWDIR%%/plugins/CoreHome/images/search.png +%%WWWDIR%%/plugins/CoreHome/javascripts/autocomplete.js +%%WWWDIR%%/plugins/CoreHome/javascripts/broadcast.js +%%WWWDIR%%/plugins/CoreHome/javascripts/calendar.js +%%WWWDIR%%/plugins/CoreHome/javascripts/color_manager.js +%%WWWDIR%%/plugins/CoreHome/javascripts/corehome.js +%%WWWDIR%%/plugins/CoreHome/javascripts/dataTable.js +%%WWWDIR%%/plugins/CoreHome/javascripts/dataTable_rowactions.js +%%WWWDIR%%/plugins/CoreHome/javascripts/donate.js +%%WWWDIR%%/plugins/CoreHome/javascripts/menu.js +%%WWWDIR%%/plugins/CoreHome/javascripts/menu_init.js +%%WWWDIR%%/plugins/CoreHome/javascripts/notification.js +%%WWWDIR%%/plugins/CoreHome/javascripts/notification_parser.js +%%WWWDIR%%/plugins/CoreHome/javascripts/popover.js +%%WWWDIR%%/plugins/CoreHome/javascripts/promo.js +%%WWWDIR%%/plugins/CoreHome/javascripts/require.js +%%WWWDIR%%/plugins/CoreHome/javascripts/sparkline.js +%%WWWDIR%%/plugins/CoreHome/javascripts/top_controls.js +%%WWWDIR%%/plugins/CoreHome/javascripts/uiControl.js +%%WWWDIR%%/plugins/CoreHome/stylesheets/_donate.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/cloud.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/color_manager.css +%%WWWDIR%%/plugins/CoreHome/stylesheets/coreHome.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_dataTable.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_limitSelection.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_reportDocumentation.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_rowActions.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_subDataTable.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable/_tableConfiguration.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/jqplotColors.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/jquery.ui.autocomplete.css +%%WWWDIR%%/plugins/CoreHome/stylesheets/menu.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/notification.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/promo.less +%%WWWDIR%%/plugins/CoreHome/stylesheets/sparklineColors.less +%%WWWDIR%%/plugins/CoreHome/templates/ReportRenderer/_htmlReportBody.twig +%%WWWDIR%%/plugins/CoreHome/templates/ReportRenderer/_htmlReportFooter.twig +%%WWWDIR%%/plugins/CoreHome/templates/ReportRenderer/_htmlReportHeader.twig +%%WWWDIR%%/plugins/CoreHome/templates/ReportsByDimension/_reportsByDimension.twig +%%WWWDIR%%/plugins/CoreHome/templates/_dataTable.twig +%%WWWDIR%%/plugins/CoreHome/templates/_dataTableCell.twig +%%WWWDIR%%/plugins/CoreHome/templates/_dataTableFooter.twig +%%WWWDIR%%/plugins/CoreHome/templates/_dataTableHead.twig +%%WWWDIR%%/plugins/CoreHome/templates/_dataTableJS.twig +%%WWWDIR%%/plugins/CoreHome/templates/_donate.twig +%%WWWDIR%%/plugins/CoreHome/templates/_headerMessage.twig +%%WWWDIR%%/plugins/CoreHome/templates/_indexContent.twig +%%WWWDIR%%/plugins/CoreHome/templates/_javaScriptDisabled.twig +%%WWWDIR%%/plugins/CoreHome/templates/_logo.twig +%%WWWDIR%%/plugins/CoreHome/templates/_menu.twig +%%WWWDIR%%/plugins/CoreHome/templates/_notifications.twig +%%WWWDIR%%/plugins/CoreHome/templates/_periodSelect.twig +%%WWWDIR%%/plugins/CoreHome/templates/_singleReport.twig +%%WWWDIR%%/plugins/CoreHome/templates/_siteSelect.twig +%%WWWDIR%%/plugins/CoreHome/templates/_siteSelectHeader.twig +%%WWWDIR%%/plugins/CoreHome/templates/_topBar.twig +%%WWWDIR%%/plugins/CoreHome/templates/_topBarHelloMenu.twig +%%WWWDIR%%/plugins/CoreHome/templates/_topBarTopMenu.twig +%%WWWDIR%%/plugins/CoreHome/templates/_topScreen.twig +%%WWWDIR%%/plugins/CoreHome/templates/_warningInvalidHost.twig +%%WWWDIR%%/plugins/CoreHome/templates/checkForUpdates.twig +%%WWWDIR%%/plugins/CoreHome/templates/getDefaultIndexView.twig +%%WWWDIR%%/plugins/CoreHome/templates/getDonateForm.twig +%%WWWDIR%%/plugins/CoreHome/templates/getMultiRowEvolutionPopover.twig +%%WWWDIR%%/plugins/CoreHome/templates/getPromoVideo.twig +%%WWWDIR%%/plugins/CoreHome/templates/getRowEvolutionPopover.twig %%WWWDIR%%/plugins/CorePluginsAdmin/Controller.php %%WWWDIR%%/plugins/CorePluginsAdmin/CorePluginsAdmin.php -%%WWWDIR%%/plugins/CorePluginsAdmin/templates/manage.tpl +%%WWWDIR%%/plugins/CorePluginsAdmin/Marketplace.php +%%WWWDIR%%/plugins/CorePluginsAdmin/MarketplaceApiClient.php +%%WWWDIR%%/plugins/CorePluginsAdmin/MarketplaceApiException.php +%%WWWDIR%%/plugins/CorePluginsAdmin/PluginInstaller.php +%%WWWDIR%%/plugins/CorePluginsAdmin/PluginInstallerException.php +%%WWWDIR%%/plugins/CorePluginsAdmin/images/plugins.png +%%WWWDIR%%/plugins/CorePluginsAdmin/images/rating_important.png +%%WWWDIR%%/plugins/CorePluginsAdmin/images/themes.png +%%WWWDIR%%/plugins/CorePluginsAdmin/javascripts/pluginDetail.js +%%WWWDIR%%/plugins/CorePluginsAdmin/javascripts/pluginExtend.js +%%WWWDIR%%/plugins/CorePluginsAdmin/javascripts/pluginOverview.js +%%WWWDIR%%/plugins/CorePluginsAdmin/javascripts/plugins.js +%%WWWDIR%%/plugins/CorePluginsAdmin/stylesheets/marketplace.less +%%WWWDIR%%/plugins/CorePluginsAdmin/stylesheets/plugins_admin.less +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/browsePlugins.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/browsePluginsActions.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/browseThemes.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/extend.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/installPlugin.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/macros.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/pluginDetails.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/pluginMetadata.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/pluginOverview.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/plugins.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/safemode.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/themeOverview.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/themes.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/updatePlugin.twig +%%WWWDIR%%/plugins/CorePluginsAdmin/templates/uploadPlugin.twig %%WWWDIR%%/plugins/CoreUpdater/Controller.php %%WWWDIR%%/plugins/CoreUpdater/CoreUpdater.php -%%WWWDIR%%/plugins/CoreUpdater/templates/cli_update_database_done.tpl -%%WWWDIR%%/plugins/CoreUpdater/templates/cli_update_welcome.tpl -%%WWWDIR%%/plugins/CoreUpdater/templates/footer.tpl -%%WWWDIR%%/plugins/CoreUpdater/templates/header.tpl -%%WWWDIR%%/plugins/CoreUpdater/templates/update_database_done.tpl -%%WWWDIR%%/plugins/CoreUpdater/templates/update_new_version_available.tpl -%%WWWDIR%%/plugins/CoreUpdater/templates/update_one_click_results.tpl -%%WWWDIR%%/plugins/CoreUpdater/templates/update_welcome.tpl +%%WWWDIR%%/plugins/CoreUpdater/javascripts/updateLayout.js +%%WWWDIR%%/plugins/CoreUpdater/stylesheets/updateLayout.css +%%WWWDIR%%/plugins/CoreUpdater/templates/layout.twig +%%WWWDIR%%/plugins/CoreUpdater/templates/newVersionAvailable.twig +%%WWWDIR%%/plugins/CoreUpdater/templates/oneClickResults.twig +%%WWWDIR%%/plugins/CoreUpdater/templates/runUpdaterAndExit_done.twig +%%WWWDIR%%/plugins/CoreUpdater/templates/runUpdaterAndExit_done_cli.twig +%%WWWDIR%%/plugins/CoreUpdater/templates/runUpdaterAndExit_welcome.twig +%%WWWDIR%%/plugins/CoreUpdater/templates/runUpdaterAndExit_welcome_cli.twig +%%WWWDIR%%/plugins/CoreVisualizations/CoreVisualizations.php +%%WWWDIR%%/plugins/CoreVisualizations/JqplotDataGenerator.php +%%WWWDIR%%/plugins/CoreVisualizations/JqplotDataGenerator/Chart.php +%%WWWDIR%%/plugins/CoreVisualizations/JqplotDataGenerator/Evolution.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/Cloud.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/Cloud/Config.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/Graph.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/Graph/Config.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/HtmlTable.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/HtmlTable/AllColumns.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/HtmlTable/Config.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/HtmlTable/RequestConfig.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/JqplotGraph.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/JqplotGraph/Bar.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/JqplotGraph/Config.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/JqplotGraph/Evolution.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/JqplotGraph/Evolution/Config.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/JqplotGraph/Pie.php +%%WWWDIR%%/plugins/CoreVisualizations/Visualizations/Sparkline.php +%%WWWDIR%%/plugins/CoreVisualizations/javascripts/jqplot.js +%%WWWDIR%%/plugins/CoreVisualizations/javascripts/jqplotBarGraph.js +%%WWWDIR%%/plugins/CoreVisualizations/javascripts/jqplotEvolutionGraph.js +%%WWWDIR%%/plugins/CoreVisualizations/javascripts/jqplotPieGraph.js +%%WWWDIR%%/plugins/CoreVisualizations/javascripts/seriesPicker.js +%%WWWDIR%%/plugins/CoreVisualizations/stylesheets/dataTableVisualizations.less +%%WWWDIR%%/plugins/CoreVisualizations/stylesheets/jqplot.css +%%WWWDIR%%/plugins/CoreVisualizations/templates/_dataTableViz_htmlTable.twig +%%WWWDIR%%/plugins/CoreVisualizations/templates/_dataTableViz_jqplotGraph.twig +%%WWWDIR%%/plugins/CoreVisualizations/templates/_dataTableViz_tagCloud.twig %%WWWDIR%%/plugins/CustomVariables/API.php +%%WWWDIR%%/plugins/CustomVariables/Archiver.php %%WWWDIR%%/plugins/CustomVariables/Controller.php %%WWWDIR%%/plugins/CustomVariables/CustomVariables.php %%WWWDIR%%/plugins/DBStats/API.php %%WWWDIR%%/plugins/DBStats/Controller.php %%WWWDIR%%/plugins/DBStats/DBStats.php %%WWWDIR%%/plugins/DBStats/MySQLMetadataProvider.php -%%WWWDIR%%/plugins/DBStats/templates/index.tpl +%%WWWDIR%%/plugins/DBStats/lang/am.json +%%WWWDIR%%/plugins/DBStats/lang/ar.json +%%WWWDIR%%/plugins/DBStats/lang/be.json +%%WWWDIR%%/plugins/DBStats/lang/bg.json +%%WWWDIR%%/plugins/DBStats/lang/ca.json +%%WWWDIR%%/plugins/DBStats/lang/cs.json +%%WWWDIR%%/plugins/DBStats/lang/da.json +%%WWWDIR%%/plugins/DBStats/lang/de.json +%%WWWDIR%%/plugins/DBStats/lang/el.json +%%WWWDIR%%/plugins/DBStats/lang/en.json +%%WWWDIR%%/plugins/DBStats/lang/es.json +%%WWWDIR%%/plugins/DBStats/lang/et.json +%%WWWDIR%%/plugins/DBStats/lang/eu.json +%%WWWDIR%%/plugins/DBStats/lang/fa.json +%%WWWDIR%%/plugins/DBStats/lang/fi.json +%%WWWDIR%%/plugins/DBStats/lang/fr.json +%%WWWDIR%%/plugins/DBStats/lang/he.json +%%WWWDIR%%/plugins/DBStats/lang/hi.json +%%WWWDIR%%/plugins/DBStats/lang/hu.json +%%WWWDIR%%/plugins/DBStats/lang/id.json +%%WWWDIR%%/plugins/DBStats/lang/is.json +%%WWWDIR%%/plugins/DBStats/lang/it.json +%%WWWDIR%%/plugins/DBStats/lang/ja.json +%%WWWDIR%%/plugins/DBStats/lang/ka.json +%%WWWDIR%%/plugins/DBStats/lang/ko.json +%%WWWDIR%%/plugins/DBStats/lang/lt.json +%%WWWDIR%%/plugins/DBStats/lang/lv.json +%%WWWDIR%%/plugins/DBStats/lang/nb.json +%%WWWDIR%%/plugins/DBStats/lang/nl.json +%%WWWDIR%%/plugins/DBStats/lang/nn.json +%%WWWDIR%%/plugins/DBStats/lang/pl.json +%%WWWDIR%%/plugins/DBStats/lang/pt-br.json +%%WWWDIR%%/plugins/DBStats/lang/pt.json +%%WWWDIR%%/plugins/DBStats/lang/ro.json +%%WWWDIR%%/plugins/DBStats/lang/ru.json +%%WWWDIR%%/plugins/DBStats/lang/sk.json +%%WWWDIR%%/plugins/DBStats/lang/sl.json +%%WWWDIR%%/plugins/DBStats/lang/sq.json +%%WWWDIR%%/plugins/DBStats/lang/sr.json +%%WWWDIR%%/plugins/DBStats/lang/sv.json +%%WWWDIR%%/plugins/DBStats/lang/te.json +%%WWWDIR%%/plugins/DBStats/lang/th.json +%%WWWDIR%%/plugins/DBStats/lang/tr.json +%%WWWDIR%%/plugins/DBStats/lang/uk.json +%%WWWDIR%%/plugins/DBStats/lang/vi.json +%%WWWDIR%%/plugins/DBStats/lang/zh-cn.json +%%WWWDIR%%/plugins/DBStats/lang/zh-tw.json +%%WWWDIR%%/plugins/DBStats/stylesheets/dbStatsTable.less +%%WWWDIR%%/plugins/DBStats/templates/index.twig %%WWWDIR%%/plugins/Dashboard/API.php %%WWWDIR%%/plugins/Dashboard/Controller.php %%WWWDIR%%/plugins/Dashboard/Dashboard.php -%%WWWDIR%%/plugins/Dashboard/templates/dashboard.css -%%WWWDIR%%/plugins/Dashboard/templates/dashboard.js -%%WWWDIR%%/plugins/Dashboard/templates/dashboardObject.js -%%WWWDIR%%/plugins/Dashboard/templates/dashboardWidget.js -%%WWWDIR%%/plugins/Dashboard/templates/header.tpl -%%WWWDIR%%/plugins/Dashboard/templates/index.tpl -%%WWWDIR%%/plugins/Dashboard/templates/standalone.tpl -%%WWWDIR%%/plugins/Dashboard/templates/widgetMenu.js +%%WWWDIR%%/plugins/Dashboard/javascripts/dashboard.js +%%WWWDIR%%/plugins/Dashboard/javascripts/dashboardObject.js +%%WWWDIR%%/plugins/Dashboard/javascripts/dashboardWidget.js +%%WWWDIR%%/plugins/Dashboard/javascripts/widgetMenu.js +%%WWWDIR%%/plugins/Dashboard/stylesheets/dashboard.less +%%WWWDIR%%/plugins/Dashboard/stylesheets/standalone.css +%%WWWDIR%%/plugins/Dashboard/templates/_dashboardSettings.twig +%%WWWDIR%%/plugins/Dashboard/templates/_header.twig +%%WWWDIR%%/plugins/Dashboard/templates/embeddedIndex.twig +%%WWWDIR%%/plugins/Dashboard/templates/index.twig %%WWWDIR%%/plugins/DevicesDetection/API.php +%%WWWDIR%%/plugins/DevicesDetection/Archiver.php %%WWWDIR%%/plugins/DevicesDetection/Controller.php %%WWWDIR%%/plugins/DevicesDetection/DevicesDetection.php +%%WWWDIR%%/plugins/DevicesDetection/Updates/1.14.php %%WWWDIR%%/plugins/DevicesDetection/UserAgentParserEnhanced/UserAgentParserEnhanced.php %%WWWDIR%%/plugins/DevicesDetection/UserAgentParserEnhanced/regexes/browsers.yml %%WWWDIR%%/plugins/DevicesDetection/UserAgentParserEnhanced/regexes/mobiles.yml %%WWWDIR%%/plugins/DevicesDetection/UserAgentParserEnhanced/regexes/oss.yml -%%WWWDIR%%/plugins/DevicesDetection/UserAgentParserEnhanced/spyc.php %%WWWDIR%%/plugins/DevicesDetection/functions.php %%WWWDIR%%/plugins/DevicesDetection/images/brand/Acer.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Alcatel.ico @@ -1199,6 +1118,7 @@ %%WWWDIR%%/plugins/DevicesDetection/images/brand/Dell.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/DoCoMo.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Ericsson.ico +%%WWWDIR%%/plugins/DevicesDetection/images/brand/Fly.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Google.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Gradiente.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Grundig.ico @@ -1221,6 +1141,7 @@ %%WWWDIR%%/plugins/DevicesDetection/images/brand/Mitsubishi.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Motorola.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/MyPhone.ico +%%WWWDIR%%/plugins/DevicesDetection/images/brand/NEC.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/NGM.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Nintendo.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Nokia.ico @@ -1228,7 +1149,6 @@ %%WWWDIR%%/plugins/DevicesDetection/images/brand/OPPO.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Onda.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Orange.ico -%%WWWDIR%%/plugins/DevicesDetection/images/brand/Palm.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Panasonic.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Pantech.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Philips.ico @@ -1236,14 +1156,18 @@ %%WWWDIR%%/plugins/DevicesDetection/images/brand/Samsung.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Sanyo.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Sega.ico +%%WWWDIR%%/plugins/DevicesDetection/images/brand/Sharp.ico +%%WWWDIR%%/plugins/DevicesDetection/images/brand/Siemens.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Softbank.ico -%%WWWDIR%%/plugins/DevicesDetection/images/brand/Sony Ericsson.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Sony.ico +%%WWWDIR%%/plugins/DevicesDetection/images/brand/Sony_Ericsson.ico +%%WWWDIR%%/plugins/DevicesDetection/images/brand/Spice.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/T-Mobile.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Telit.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/TiPhone.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Vertu.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Videocon.ico +%%WWWDIR%%/plugins/DevicesDetection/images/brand/ZTE.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/Zonda.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/eTouch.ico %%WWWDIR%%/plugins/DevicesDetection/images/brand/i-mobile.ico @@ -1258,21 +1182,38 @@ %%WWWDIR%%/plugins/DevicesDetection/images/screens/tv.png %%WWWDIR%%/plugins/DevicesDetection/images/screens/unknown.gif %%WWWDIR%%/plugins/DevicesDetection/images/screens/wide.gif -%%WWWDIR%%/plugins/DevicesDetection/lang/en.php -%%WWWDIR%%/plugins/DevicesDetection/templates/index.tpl +%%WWWDIR%%/plugins/DevicesDetection/lang/en.json +%%WWWDIR%%/plugins/DevicesDetection/templates/index.twig %%WWWDIR%%/plugins/DoNotTrack/DoNotTrack.php +%%WWWDIR%%/plugins/Events/Archiver.php +%%WWWDIR%%/plugins/Events/Events.php +%%WWWDIR%%/plugins/Events/plugin.json %%WWWDIR%%/plugins/ExampleAPI/API.php %%WWWDIR%%/plugins/ExampleAPI/ExampleAPI.php +%%WWWDIR%%/plugins/ExampleAPI/plugin.json +%%WWWDIR%%/plugins/ExampleCommand/Commands/HelloWorld.php +%%WWWDIR%%/plugins/ExampleCommand/ExampleCommand.php +%%WWWDIR%%/plugins/ExampleCommand/plugin.json +%%WWWDIR%%/plugins/ExamplePlugin/.gitignore +%%WWWDIR%%/plugins/ExamplePlugin/.travis.yml +%%WWWDIR%%/plugins/ExamplePlugin/API.php %%WWWDIR%%/plugins/ExamplePlugin/Controller.php %%WWWDIR%%/plugins/ExamplePlugin/ExamplePlugin.php -%%WWWDIR%%/plugins/ExamplePlugin/config/.htaccess -%%WWWDIR%%/plugins/ExamplePlugin/config/local.config.sample.php -%%WWWDIR%%/plugins/ExamplePlugin/lang/en.php -%%WWWDIR%%/plugins/ExamplePlugin/templates/piwikDownloads.tpl +%%WWWDIR%%/plugins/ExamplePlugin/README.md +%%WWWDIR%%/plugins/ExamplePlugin/javascripts/plugin.js +%%WWWDIR%%/plugins/ExamplePlugin/plugin.json +%%WWWDIR%%/plugins/ExamplePlugin/screenshots/.gitkeep +%%WWWDIR%%/plugins/ExamplePlugin/templates/index.twig %%WWWDIR%%/plugins/ExampleRssWidget/Controller.php %%WWWDIR%%/plugins/ExampleRssWidget/ExampleRssWidget.php -%%WWWDIR%%/plugins/ExampleRssWidget/Rss.php -%%WWWDIR%%/plugins/ExampleRssWidget/templates/styles.css +%%WWWDIR%%/plugins/ExampleRssWidget/RssRenderer.php +%%WWWDIR%%/plugins/ExampleRssWidget/plugin.json +%%WWWDIR%%/plugins/ExampleRssWidget/stylesheets/rss.less +%%WWWDIR%%/plugins/ExampleSettingsPlugin/Settings.php +%%WWWDIR%%/plugins/ExampleSettingsPlugin/plugin.json +%%WWWDIR%%/plugins/ExampleTheme/README.md +%%WWWDIR%%/plugins/ExampleTheme/plugin.json +%%WWWDIR%%/plugins/ExampleTheme/stylesheets/theme.less %%WWWDIR%%/plugins/ExampleUI/API.php %%WWWDIR%%/plugins/ExampleUI/Controller.php %%WWWDIR%%/plugins/ExampleUI/ExampleUI.php @@ -1285,26 +1226,38 @@ %%WWWDIR%%/plugins/ExampleUI/images/icons-planet/saturn.png %%WWWDIR%%/plugins/ExampleUI/images/icons-planet/uranus.png %%WWWDIR%%/plugins/ExampleUI/images/icons-planet/venus.png +%%WWWDIR%%/plugins/ExampleUI/plugin.json +%%WWWDIR%%/plugins/ExampleUI/templates/evolutiongraph.twig +%%WWWDIR%%/plugins/ExampleUI/templates/notifications.twig +%%WWWDIR%%/plugins/ExampleUI/templates/sparklines.twig +%%WWWDIR%%/plugins/ExampleVisualization/ExampleVisualization.php +%%WWWDIR%%/plugins/ExampleVisualization/README.md +%%WWWDIR%%/plugins/ExampleVisualization/SimpleTable.php +%%WWWDIR%%/plugins/ExampleVisualization/images/table.png +%%WWWDIR%%/plugins/ExampleVisualization/plugin.json +%%WWWDIR%%/plugins/ExampleVisualization/templates/simpleTable.twig %%WWWDIR%%/plugins/Feedback/Controller.php %%WWWDIR%%/plugins/Feedback/Feedback.php %%WWWDIR%%/plugins/Feedback/images/go-previous.png -%%WWWDIR%%/plugins/Feedback/templates/feedback.js -%%WWWDIR%%/plugins/Feedback/templates/index.tpl -%%WWWDIR%%/plugins/Feedback/templates/sent.tpl -%%WWWDIR%%/plugins/Feedback/templates/styles.css +%%WWWDIR%%/plugins/Feedback/javascripts/feedback.js +%%WWWDIR%%/plugins/Feedback/stylesheets/feedback.less +%%WWWDIR%%/plugins/Feedback/templates/index.twig +%%WWWDIR%%/plugins/Feedback/templates/sendFeedback.twig %%WWWDIR%%/plugins/Goals/API.php +%%WWWDIR%%/plugins/Goals/Archiver.php %%WWWDIR%%/plugins/Goals/Controller.php %%WWWDIR%%/plugins/Goals/Goals.php -%%WWWDIR%%/plugins/Goals/templates/GoalForm.js -%%WWWDIR%%/plugins/Goals/templates/add_edit_goal.tpl -%%WWWDIR%%/plugins/Goals/templates/add_new_goal.tpl -%%WWWDIR%%/plugins/Goals/templates/form_add_goal.tpl -%%WWWDIR%%/plugins/Goals/templates/goals.css -%%WWWDIR%%/plugins/Goals/templates/list_goal_edit.tpl -%%WWWDIR%%/plugins/Goals/templates/list_top_dimension.tpl -%%WWWDIR%%/plugins/Goals/templates/overview.tpl -%%WWWDIR%%/plugins/Goals/templates/single_goal.tpl -%%WWWDIR%%/plugins/Goals/templates/title_and_evolution_graph.tpl +%%WWWDIR%%/plugins/Goals/Visualizations/Goals.php +%%WWWDIR%%/plugins/Goals/javascripts/goalsForm.js +%%WWWDIR%%/plugins/Goals/stylesheets/goals.css +%%WWWDIR%%/plugins/Goals/templates/_addEditGoal.twig +%%WWWDIR%%/plugins/Goals/templates/_formAddGoal.twig +%%WWWDIR%%/plugins/Goals/templates/_listGoalEdit.twig +%%WWWDIR%%/plugins/Goals/templates/_listTopDimension.twig +%%WWWDIR%%/plugins/Goals/templates/_titleAndEvolutionGraph.twig +%%WWWDIR%%/plugins/Goals/templates/addNewGoal.twig +%%WWWDIR%%/plugins/Goals/templates/getGoalReportView.twig +%%WWWDIR%%/plugins/Goals/templates/getOverviewView.twig %%WWWDIR%%/plugins/ImageGraph/API.php %%WWWDIR%%/plugins/ImageGraph/Controller.php %%WWWDIR%%/plugins/ImageGraph/ImageGraph.php @@ -1318,89 +1271,174 @@ %%WWWDIR%%/plugins/ImageGraph/StaticGraph/PieGraph.php %%WWWDIR%%/plugins/ImageGraph/StaticGraph/VerticalBar.php %%WWWDIR%%/plugins/ImageGraph/fonts/tahoma.ttf -%%WWWDIR%%/plugins/ImageGraph/templates/debug_graphs_all_sizes.tpl -%%WWWDIR%%/plugins/ImageGraph/templates/index.tpl +%%WWWDIR%%/plugins/ImageGraph/templates/index.twig +%%WWWDIR%%/plugins/ImageGraph/templates/testAllSizes.twig %%WWWDIR%%/plugins/Installation/Controller.php %%WWWDIR%%/plugins/Installation/FormDatabaseSetup.php %%WWWDIR%%/plugins/Installation/FormFirstWebsiteSetup.php %%WWWDIR%%/plugins/Installation/FormGeneralSetup.php %%WWWDIR%%/plugins/Installation/Installation.php +%%WWWDIR%%/plugins/Installation/ServerFilesGenerator.php %%WWWDIR%%/plugins/Installation/View.php -%%WWWDIR%%/plugins/Installation/templates/allSteps.tpl -%%WWWDIR%%/plugins/Installation/templates/databaseCheck.tpl -%%WWWDIR%%/plugins/Installation/templates/databaseSetup.tpl -%%WWWDIR%%/plugins/Installation/templates/displayJavascriptCode.tpl -%%WWWDIR%%/plugins/Installation/templates/finished.tpl -%%WWWDIR%%/plugins/Installation/templates/firstWebsiteSetup.tpl -%%WWWDIR%%/plugins/Installation/templates/generalSetup.tpl -%%WWWDIR%%/plugins/Installation/templates/install.css -%%WWWDIR%%/plugins/Installation/templates/integrityDetails.tpl -%%WWWDIR%%/plugins/Installation/templates/structure.tpl -%%WWWDIR%%/plugins/Installation/templates/systemCheck.tpl -%%WWWDIR%%/plugins/Installation/templates/systemCheckPage.css -%%WWWDIR%%/plugins/Installation/templates/systemCheckPage.tpl -%%WWWDIR%%/plugins/Installation/templates/systemCheckSection.tpl -%%WWWDIR%%/plugins/Installation/templates/systemCheck_legend.tpl -%%WWWDIR%%/plugins/Installation/templates/tablesCreation.tpl -%%WWWDIR%%/plugins/Installation/templates/welcome.tpl +%%WWWDIR%%/plugins/Installation/javascripts/installation.js +%%WWWDIR%%/plugins/Installation/stylesheets/installation.css +%%WWWDIR%%/plugins/Installation/stylesheets/systemCheckPage.less +%%WWWDIR%%/plugins/Installation/templates/_allSteps.twig +%%WWWDIR%%/plugins/Installation/templates/_integrityDetails.twig +%%WWWDIR%%/plugins/Installation/templates/_systemCheckLegend.twig +%%WWWDIR%%/plugins/Installation/templates/_systemCheckSection.twig +%%WWWDIR%%/plugins/Installation/templates/databaseCheck.twig +%%WWWDIR%%/plugins/Installation/templates/databaseSetup.twig +%%WWWDIR%%/plugins/Installation/templates/finished.twig +%%WWWDIR%%/plugins/Installation/templates/firstWebsiteSetup.twig +%%WWWDIR%%/plugins/Installation/templates/generalSetup.twig +%%WWWDIR%%/plugins/Installation/templates/layout.twig +%%WWWDIR%%/plugins/Installation/templates/systemCheck.twig +%%WWWDIR%%/plugins/Installation/templates/systemCheckPage.twig +%%WWWDIR%%/plugins/Installation/templates/tablesCreation.twig +%%WWWDIR%%/plugins/Installation/templates/trackingCode.twig +%%WWWDIR%%/plugins/Installation/templates/welcome.twig %%WWWDIR%%/plugins/LanguagesManager/API.php +%%WWWDIR%%/plugins/LanguagesManager/Commands/CreatePull.php +%%WWWDIR%%/plugins/LanguagesManager/Commands/FetchFromOTrance.php +%%WWWDIR%%/plugins/LanguagesManager/Commands/LanguageCodes.php +%%WWWDIR%%/plugins/LanguagesManager/Commands/LanguageNames.php +%%WWWDIR%%/plugins/LanguagesManager/Commands/PluginsWithTranslations.php +%%WWWDIR%%/plugins/LanguagesManager/Commands/SetTranslations.php +%%WWWDIR%%/plugins/LanguagesManager/Commands/Update.php %%WWWDIR%%/plugins/LanguagesManager/Controller.php %%WWWDIR%%/plugins/LanguagesManager/LanguagesManager.php -%%WWWDIR%%/plugins/LanguagesManager/templates/languageSelector.js -%%WWWDIR%%/plugins/LanguagesManager/templates/languages.tpl +%%WWWDIR%%/plugins/LanguagesManager/javascripts/languageSelector.js +%%WWWDIR%%/plugins/LanguagesManager/templates/getLanguagesSelector.twig +%%WWWDIR%%/plugins/LeftMenu/plugin.json +%%WWWDIR%%/plugins/LeftMenu/stylesheets/theme.less %%WWWDIR%%/plugins/Live/API.php %%WWWDIR%%/plugins/Live/Controller.php %%WWWDIR%%/plugins/Live/Live.php %%WWWDIR%%/plugins/Live/Visitor.php -%%WWWDIR%%/plugins/Live/templates/images/file0.png -%%WWWDIR%%/plugins/Live/templates/images/file1.png -%%WWWDIR%%/plugins/Live/templates/images/file2.png -%%WWWDIR%%/plugins/Live/templates/images/file3.png -%%WWWDIR%%/plugins/Live/templates/images/file4.png -%%WWWDIR%%/plugins/Live/templates/images/file5.png -%%WWWDIR%%/plugins/Live/templates/images/file6.png -%%WWWDIR%%/plugins/Live/templates/images/file7.png -%%WWWDIR%%/plugins/Live/templates/images/file8.png -%%WWWDIR%%/plugins/Live/templates/images/file9.png -%%WWWDIR%%/plugins/Live/templates/images/pause.gif -%%WWWDIR%%/plugins/Live/templates/images/pause_disabled.gif -%%WWWDIR%%/plugins/Live/templates/images/play.gif -%%WWWDIR%%/plugins/Live/templates/images/play_disabled.gif -%%WWWDIR%%/plugins/Live/templates/images/returningVisitor.gif -%%WWWDIR%%/plugins/Live/templates/index.tpl -%%WWWDIR%%/plugins/Live/templates/lastVisits.tpl -%%WWWDIR%%/plugins/Live/templates/live.css -%%WWWDIR%%/plugins/Live/templates/scripts/live.js -%%WWWDIR%%/plugins/Live/templates/simpleLastVisitCount.tpl -%%WWWDIR%%/plugins/Live/templates/totalVisits.tpl -%%WWWDIR%%/plugins/Live/templates/visitorLog.tpl +%%WWWDIR%%/plugins/Live/VisitorLog.php +%%WWWDIR%%/plugins/Live/images/avatar_frame.png +%%WWWDIR%%/plugins/Live/images/file0.png +%%WWWDIR%%/plugins/Live/images/file1.png +%%WWWDIR%%/plugins/Live/images/file2.png +%%WWWDIR%%/plugins/Live/images/file3.png +%%WWWDIR%%/plugins/Live/images/file4.png +%%WWWDIR%%/plugins/Live/images/file5.png +%%WWWDIR%%/plugins/Live/images/file6.png +%%WWWDIR%%/plugins/Live/images/file7.png +%%WWWDIR%%/plugins/Live/images/file8.png +%%WWWDIR%%/plugins/Live/images/file9.png +%%WWWDIR%%/plugins/Live/images/paperclip.png +%%WWWDIR%%/plugins/Live/images/pause.gif +%%WWWDIR%%/plugins/Live/images/pause_disabled.gif +%%WWWDIR%%/plugins/Live/images/play.gif +%%WWWDIR%%/plugins/Live/images/play_disabled.gif +%%WWWDIR%%/plugins/Live/images/returningVisitor.gif +%%WWWDIR%%/plugins/Live/images/unknown_avatar.jpg +%%WWWDIR%%/plugins/Live/images/visitorProfileLaunch.png +%%WWWDIR%%/plugins/Live/images/visitor_profile_background.jpg +%%WWWDIR%%/plugins/Live/images/visitor_profile_close.png +%%WWWDIR%%/plugins/Live/images/visitor_profile_gradient.png +%%WWWDIR%%/plugins/Live/javascripts/live.js +%%WWWDIR%%/plugins/Live/javascripts/visitorLog.js +%%WWWDIR%%/plugins/Live/javascripts/visitorProfile.js +%%WWWDIR%%/plugins/Live/stylesheets/live.less +%%WWWDIR%%/plugins/Live/stylesheets/visitor_profile.less +%%WWWDIR%%/plugins/Live/templates/_actionsList.twig +%%WWWDIR%%/plugins/Live/templates/_dataTableViz_visitorLog.twig +%%WWWDIR%%/plugins/Live/templates/_totalVisitors.twig +%%WWWDIR%%/plugins/Live/templates/ajaxTotalVisitors.twig +%%WWWDIR%%/plugins/Live/templates/getLastVisitsStart.twig +%%WWWDIR%%/plugins/Live/templates/getSimpleLastVisitCount.twig +%%WWWDIR%%/plugins/Live/templates/getSingleVisitSummary.twig +%%WWWDIR%%/plugins/Live/templates/getVisitList.twig +%%WWWDIR%%/plugins/Live/templates/getVisitorProfilePopup.twig +%%WWWDIR%%/plugins/Live/templates/index.twig +%%WWWDIR%%/plugins/Live/templates/indexVisitorLog.twig %%WWWDIR%%/plugins/Login/Auth.php %%WWWDIR%%/plugins/Login/Controller.php %%WWWDIR%%/plugins/Login/FormLogin.php %%WWWDIR%%/plugins/Login/FormResetPassword.php %%WWWDIR%%/plugins/Login/Login.php -%%WWWDIR%%/plugins/Login/templates/header.tpl -%%WWWDIR%%/plugins/Login/templates/login.css -%%WWWDIR%%/plugins/Login/templates/login.js -%%WWWDIR%%/plugins/Login/templates/login.tpl -%%WWWDIR%%/plugins/Login/templates/message.tpl +%%WWWDIR%%/plugins/Login/javascripts/login.js +%%WWWDIR%%/plugins/Login/stylesheets/login.css +%%WWWDIR%%/plugins/Login/templates/login.twig +%%WWWDIR%%/plugins/Login/templates/resetPassword.twig %%WWWDIR%%/plugins/MobileMessaging/API.php %%WWWDIR%%/plugins/MobileMessaging/APIException.php %%WWWDIR%%/plugins/MobileMessaging/Controller.php %%WWWDIR%%/plugins/MobileMessaging/CountryCallingCodes.php %%WWWDIR%%/plugins/MobileMessaging/GSMCharset.php %%WWWDIR%%/plugins/MobileMessaging/MobileMessaging.php -%%WWWDIR%%/plugins/MobileMessaging/ReportRenderer/Exception.php +%%WWWDIR%%/plugins/MobileMessaging/ReportRenderer/ReportRendererException.php %%WWWDIR%%/plugins/MobileMessaging/ReportRenderer/Sms.php %%WWWDIR%%/plugins/MobileMessaging/SMSProvider.php %%WWWDIR%%/plugins/MobileMessaging/SMSProvider/Clockwork.php %%WWWDIR%%/plugins/MobileMessaging/SMSProvider/StubbedProvider.php %%WWWDIR%%/plugins/MobileMessaging/images/Clockwork.png %%WWWDIR%%/plugins/MobileMessaging/images/phone.png -%%WWWDIR%%/plugins/MobileMessaging/scripts/MobileMessagingSettings.js -%%WWWDIR%%/plugins/MobileMessaging/templates/ReportParameters.tpl -%%WWWDIR%%/plugins/MobileMessaging/templates/SMSReport.tpl -%%WWWDIR%%/plugins/MobileMessaging/templates/Settings.tpl +%%WWWDIR%%/plugins/MobileMessaging/javascripts/MobileMessagingSettings.js +%%WWWDIR%%/plugins/MobileMessaging/stylesheets/MobileMessagingSettings.less +%%WWWDIR%%/plugins/MobileMessaging/templates/SMSReport.twig +%%WWWDIR%%/plugins/MobileMessaging/templates/index.twig +%%WWWDIR%%/plugins/MobileMessaging/templates/reportParametersScheduledReports.twig +%%WWWDIR%%/plugins/Morpheus/images/add.png +%%WWWDIR%%/plugins/Morpheus/images/bullet.png +%%WWWDIR%%/plugins/Morpheus/images/calendar.gif +%%WWWDIR%%/plugins/Morpheus/images/chart_bar.png +%%WWWDIR%%/plugins/Morpheus/images/chart_pie.png +%%WWWDIR%%/plugins/Morpheus/images/cities.png +%%WWWDIR%%/plugins/Morpheus/images/close.png +%%WWWDIR%%/plugins/Morpheus/images/configure.png +%%WWWDIR%%/plugins/Morpheus/images/datepicker_arr_l.png +%%WWWDIR%%/plugins/Morpheus/images/datepicker_arr_r.png +%%WWWDIR%%/plugins/Morpheus/images/export.png +%%WWWDIR%%/plugins/Morpheus/images/forms-sprite.png +%%WWWDIR%%/plugins/Morpheus/images/goal.png +%%WWWDIR%%/plugins/Morpheus/images/grey_marker.png +%%WWWDIR%%/plugins/Morpheus/images/help.png +%%WWWDIR%%/plugins/Morpheus/images/ico_delete.png +%%WWWDIR%%/plugins/Morpheus/images/ico_edit.png +%%WWWDIR%%/plugins/Morpheus/images/icon-calendar.gif +%%WWWDIR%%/plugins/Morpheus/images/image.png +%%WWWDIR%%/plugins/Morpheus/images/info.png +%%WWWDIR%%/plugins/Morpheus/images/link.gif +%%WWWDIR%%/plugins/Morpheus/images/loading-blue.gif +%%WWWDIR%%/plugins/Morpheus/images/logo-header.png +%%WWWDIR%%/plugins/Morpheus/images/logo.png +%%WWWDIR%%/plugins/Morpheus/images/logo.svg +%%WWWDIR%%/plugins/Morpheus/images/maximise.png +%%WWWDIR%%/plugins/Morpheus/images/minimise.png +%%WWWDIR%%/plugins/Morpheus/images/pause.gif +%%WWWDIR%%/plugins/Morpheus/images/pause_disabled.gif +%%WWWDIR%%/plugins/Morpheus/images/play.gif +%%WWWDIR%%/plugins/Morpheus/images/play_disabled.gif +%%WWWDIR%%/plugins/Morpheus/images/refresh.png +%%WWWDIR%%/plugins/Morpheus/images/regions.png +%%WWWDIR%%/plugins/Morpheus/images/search_ico.png +%%WWWDIR%%/plugins/Morpheus/images/segment-users.png +%%WWWDIR%%/plugins/Morpheus/images/sort_subtable_desc.png +%%WWWDIR%%/plugins/Morpheus/images/sortasc.png +%%WWWDIR%%/plugins/Morpheus/images/sortdesc.png +%%WWWDIR%%/plugins/Morpheus/images/table.png +%%WWWDIR%%/plugins/Morpheus/images/table_more.png +%%WWWDIR%%/plugins/Morpheus/images/tagcloud.png +%%WWWDIR%%/plugins/Morpheus/images/zoom-out-disabled.png +%%WWWDIR%%/plugins/Morpheus/images/zoom-out.png +%%WWWDIR%%/plugins/Morpheus/javascripts/jquery.icheck.min.js +%%WWWDIR%%/plugins/Morpheus/javascripts/morpheus.js +%%WWWDIR%%/plugins/Morpheus/plugin.json +%%WWWDIR%%/plugins/Morpheus/stylesheets/admin.less +%%WWWDIR%%/plugins/Morpheus/stylesheets/charts.less +%%WWWDIR%%/plugins/Morpheus/stylesheets/colors.less +%%WWWDIR%%/plugins/Morpheus/stylesheets/components.less +%%WWWDIR%%/plugins/Morpheus/stylesheets/forms.less +%%WWWDIR%%/plugins/Morpheus/stylesheets/map.less +%%WWWDIR%%/plugins/Morpheus/stylesheets/mixins.less +%%WWWDIR%%/plugins/Morpheus/stylesheets/popups.less +%%WWWDIR%%/plugins/Morpheus/stylesheets/theme.less +%%WWWDIR%%/plugins/Morpheus/stylesheets/tooltip.less +%%WWWDIR%%/plugins/Morpheus/stylesheets/typography.less %%WWWDIR%%/plugins/MultiSites/API.php %%WWWDIR%%/plugins/MultiSites/Controller.php %%WWWDIR%%/plugins/MultiSites/MultiSites.php @@ -1414,10 +1452,10 @@ %%WWWDIR%%/plugins/MultiSites/images/link.gif %%WWWDIR%%/plugins/MultiSites/images/loading-blue.gif %%WWWDIR%%/plugins/MultiSites/images/stop.png -%%WWWDIR%%/plugins/MultiSites/templates/common.js -%%WWWDIR%%/plugins/MultiSites/templates/index.tpl -%%WWWDIR%%/plugins/MultiSites/templates/row.tpl -%%WWWDIR%%/plugins/MultiSites/templates/styles.css +%%WWWDIR%%/plugins/MultiSites/javascripts/multiSites.js +%%WWWDIR%%/plugins/MultiSites/stylesheets/multiSites.less +%%WWWDIR%%/plugins/MultiSites/templates/_siteRow.twig +%%WWWDIR%%/plugins/MultiSites/templates/getSitesInfo.twig %%WWWDIR%%/plugins/Overlay/API.php %%WWWDIR%%/plugins/Overlay/Controller.php %%WWWDIR%%/plugins/Overlay/Overlay.php @@ -1433,321 +1471,324 @@ %%WWWDIR%%/plugins/Overlay/client/loading.gif %%WWWDIR%%/plugins/Overlay/client/translations.js %%WWWDIR%%/plugins/Overlay/client/urlnormalizer.js -%%WWWDIR%%/plugins/Overlay/templates/error_wrong_domain.tpl -%%WWWDIR%%/plugins/Overlay/templates/helper.js -%%WWWDIR%%/plugins/Overlay/templates/index.css -%%WWWDIR%%/plugins/Overlay/templates/index.js -%%WWWDIR%%/plugins/Overlay/templates/index.tpl -%%WWWDIR%%/plugins/Overlay/templates/index_noframe.tpl -%%WWWDIR%%/plugins/Overlay/templates/info.png -%%WWWDIR%%/plugins/Overlay/templates/notify_parent_iframe.tpl -%%WWWDIR%%/plugins/Overlay/templates/overlay_icon.png -%%WWWDIR%%/plugins/Overlay/templates/overlay_icon_hover.png -%%WWWDIR%%/plugins/Overlay/templates/rowaction.js -%%WWWDIR%%/plugins/Overlay/templates/sidebar.tpl -%%WWWDIR%%/plugins/PDFReports/API.php -%%WWWDIR%%/plugins/PDFReports/Controller.php -%%WWWDIR%%/plugins/PDFReports/PDFReports.php -%%WWWDIR%%/plugins/PDFReports/config/tcpdf_config.php -%%WWWDIR%%/plugins/PDFReports/templates/add.tpl -%%WWWDIR%%/plugins/PDFReports/templates/index.tpl -%%WWWDIR%%/plugins/PDFReports/templates/list.tpl -%%WWWDIR%%/plugins/PDFReports/templates/pdf.js -%%WWWDIR%%/plugins/PDFReports/templates/report_parameters.tpl +%%WWWDIR%%/plugins/Overlay/images/info.png +%%WWWDIR%%/plugins/Overlay/images/overlay_icon.png +%%WWWDIR%%/plugins/Overlay/images/overlay_icon_hover.png +%%WWWDIR%%/plugins/Overlay/javascripts/Overlay_Helper.js +%%WWWDIR%%/plugins/Overlay/javascripts/Piwik_Overlay.js +%%WWWDIR%%/plugins/Overlay/javascripts/rowaction.js +%%WWWDIR%%/plugins/Overlay/stylesheets/overlay.css +%%WWWDIR%%/plugins/Overlay/stylesheets/showErrorWrongDomain.css +%%WWWDIR%%/plugins/Overlay/templates/index.twig +%%WWWDIR%%/plugins/Overlay/templates/index_noframe.twig +%%WWWDIR%%/plugins/Overlay/templates/notifyParentIframe.twig +%%WWWDIR%%/plugins/Overlay/templates/renderSidebar.twig +%%WWWDIR%%/plugins/Overlay/templates/showErrorWrongDomain.twig %%WWWDIR%%/plugins/PrivacyManager/Controller.php %%WWWDIR%%/plugins/PrivacyManager/LogDataPurger.php %%WWWDIR%%/plugins/PrivacyManager/PrivacyManager.php %%WWWDIR%%/plugins/PrivacyManager/ReportsPurger.php -%%WWWDIR%%/plugins/PrivacyManager/templates/databaseSize.tpl -%%WWWDIR%%/plugins/PrivacyManager/templates/privacySettings.js -%%WWWDIR%%/plugins/PrivacyManager/templates/privacySettings.tpl +%%WWWDIR%%/plugins/PrivacyManager/javascripts/privacySettings.js +%%WWWDIR%%/plugins/PrivacyManager/templates/getDatabaseSize.twig +%%WWWDIR%%/plugins/PrivacyManager/templates/privacySettings.twig %%WWWDIR%%/plugins/Provider/API.php +%%WWWDIR%%/plugins/Provider/Archiver.php %%WWWDIR%%/plugins/Provider/Controller.php %%WWWDIR%%/plugins/Provider/Provider.php %%WWWDIR%%/plugins/Provider/functions.php %%WWWDIR%%/plugins/Proxy/Controller.php %%WWWDIR%%/plugins/Proxy/Proxy.php -%%WWWDIR%%/plugins/Proxy/templates/exportImage.tpl -%%WWWDIR%%/plugins/Referers/API.php -%%WWWDIR%%/plugins/Referers/Controller.php -%%WWWDIR%%/plugins/Referers/Referers.php -%%WWWDIR%%/plugins/Referers/functions.php -%%WWWDIR%%/plugins/Referers/images/searchEngines/1.cz.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/abcsok.no.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/alexa.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/all.by.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/apollo.lv.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/apollo7.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/arama.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/ariadna.elmundo.es.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/arianna.libero.it.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/ask.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/bg.setooz.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/bing.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/blekko.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/blogs.icerocket.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/blogsearch.google.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/busca.orange.es.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/busca.uol.com.br.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/buscador.terra.es.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/cgi.search.biglobe.ne.jp.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/daemon-search.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/digg.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/dir.gigablast.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/dmoz.org.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/duckduckgo.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/ecosia.org.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/encrypted.google.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/eo.st.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/forestle.org.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/fr.dir.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/fr.wedoo.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/friendfeed.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/gais.cs.ccu.edu.tw.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/geona.net.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/go.mail.ru.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/google.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/googlesyndicatedsearch.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/holmes.ge.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/images.google.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/images.search.yahoo.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/images.yandex.ru.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/infospace.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/iwon.ask.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/ixquick.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/junglekey.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/jyxo.1188.cz.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/ko.search.need2find.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/lo.st.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/maps.google.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/meta.rrzn.uni-hannover.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/meta.ua.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/metager2.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/news.google.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/nigma.ru.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/nova.rambler.ru.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/online.no.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/otsing.delfi.ee.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/p.zhongsou.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/pesquisa.clix.pt.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/pesquisa.sapo.pt.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/poisk.ru.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/recherche.francite.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/rechercher.aliceadsl.fr.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/req.hit-parade.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/ricerca.virgilio.it.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/rpmfind.net.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/s1.metacrawler.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/scour.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.aol.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.babylon.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.bluewin.ch.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.centrum.cz.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.comcast.net.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.conduit.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.daum.net.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.earthlink.net.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.excite.it.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.free.fr.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.freecause.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.goo.ne.jp.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.ke.voila.fr.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.lycos.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.nate.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.naver.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.nifty.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.peoplepc.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.qip.ru.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.rr.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.seznam.cz.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.softonic.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.tiscali.it.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.winamp.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.www.ee.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.yahoo.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.yam.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/search.yippy.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/searchalot.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/searchatlas.centrum.cz.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/searchservice.myspace.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/sm.aport.ru.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/smart.delfi.lv.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/so.360.cn.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/start.iplay.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/startgoogle.startpagina.nl.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/suche.freenet.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/suche.info.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/suche.t-online.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/suche.web.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/szukaj.onet.pl.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/szukaj.wp.pl.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/technorati.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/translate.google.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/video.google.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/web.canoe.ca.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/web.volny.cz.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/websearch.cs.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/websearch.rakuten.co.jp.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.123people.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.1881.no.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.abacho.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.acoon.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.allesklar.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.alltheweb.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.altavista.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.arcor.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.baidu.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.blogdigger.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.blogpulse.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.charter.net.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.crawler.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.cuil.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.dasoertliche.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.eniro.se.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.eurip.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.euroseek.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.everyclick.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.exalead.fr.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.facebook.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.fastbrowsersearch.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.fireball.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.firstsfind.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.fixsuche.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.flix.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.gigablast.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.gnadenmeer.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.gomeo.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.google.interia.pl.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.goyellow.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.gulesider.no.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.highbeam.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.hooseek.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.hotbot.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.icq.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.ilse.nl.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.jungle-spider.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.kataweb.it.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.kvasir.no.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.latne.lv.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.looksmart.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.maailm.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.mamma.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.meinestadt.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.mister-wong.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.monstercrawler.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.mozbot.fr.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.mysearch.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.najdi.si.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.neti.ee.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.paperball.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.picsearch.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.plazoo.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.qualigo.at.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.search.ch.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.search.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.searchcanvas.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.searchy.co.uk.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.sharelook.fr.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.skynet.be.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.sogou.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.soso.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.startsiden.no.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.suchmaschine.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.suchnase.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.talktalk.co.uk.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.teoma.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.tixuma.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.toile.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.toolbarhome.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.trouvez.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.trovarapido.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.trusted--search.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.twingly.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.url.org.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.vinden.nl.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.vindex.nl.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.walhello.info.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.web.nl.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.weborama.fr.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.websearch.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.witch.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.x-recherche.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.yasni.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.yatedo.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.yougoo.fr.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.zapmeta.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.zoeken.nl.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www.zoznam.sk.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www1.dastelefonbuch.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www2.austronaut.at.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www2.inbox.com.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/www3.zoek.nl.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/xx.gif -%%WWWDIR%%/plugins/Referers/images/searchEngines/xx.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/yandex.ru.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/yellowmap.de.png -%%WWWDIR%%/plugins/Referers/images/searchEngines/zoohoo.cz.png -%%WWWDIR%%/plugins/Referers/images/socials/badoo.com.png -%%WWWDIR%%/plugins/Referers/images/socials/bebo.com.png -%%WWWDIR%%/plugins/Referers/images/socials/blackplanet.com.png -%%WWWDIR%%/plugins/Referers/images/socials/buzznet.com.png -%%WWWDIR%%/plugins/Referers/images/socials/classmates.com.png -%%WWWDIR%%/plugins/Referers/images/socials/douban.com.png -%%WWWDIR%%/plugins/Referers/images/socials/facebook.com.png -%%WWWDIR%%/plugins/Referers/images/socials/flickr.com.png -%%WWWDIR%%/plugins/Referers/images/socials/flixster.com.png -%%WWWDIR%%/plugins/Referers/images/socials/foursquare.com.png -%%WWWDIR%%/plugins/Referers/images/socials/friendsreunited.com.png -%%WWWDIR%%/plugins/Referers/images/socials/friendster.com.png -%%WWWDIR%%/plugins/Referers/images/socials/gaiaonline.com.png -%%WWWDIR%%/plugins/Referers/images/socials/geni.com.png -%%WWWDIR%%/plugins/Referers/images/socials/github.com.png -%%WWWDIR%%/plugins/Referers/images/socials/habbo.com.png -%%WWWDIR%%/plugins/Referers/images/socials/hi5.com.png -%%WWWDIR%%/plugins/Referers/images/socials/hyves.nl.png -%%WWWDIR%%/plugins/Referers/images/socials/identi.ca.png -%%WWWDIR%%/plugins/Referers/images/socials/lastfm.ru.png -%%WWWDIR%%/plugins/Referers/images/socials/linkedin.com.png -%%WWWDIR%%/plugins/Referers/images/socials/livejournal.ru.png -%%WWWDIR%%/plugins/Referers/images/socials/login.live.com.png -%%WWWDIR%%/plugins/Referers/images/socials/mixi.jp.png -%%WWWDIR%%/plugins/Referers/images/socials/moikrug.ru.png -%%WWWDIR%%/plugins/Referers/images/socials/multiply.com.png -%%WWWDIR%%/plugins/Referers/images/socials/myheritage.com.png -%%WWWDIR%%/plugins/Referers/images/socials/mylife.ru.png -%%WWWDIR%%/plugins/Referers/images/socials/myspace.com.png -%%WWWDIR%%/plugins/Referers/images/socials/myyearbook.com.png -%%WWWDIR%%/plugins/Referers/images/socials/news.ycombinator.com.png -%%WWWDIR%%/plugins/Referers/images/socials/nk.pl.png -%%WWWDIR%%/plugins/Referers/images/socials/odnoklassniki.ru.png -%%WWWDIR%%/plugins/Referers/images/socials/orkut.com.png -%%WWWDIR%%/plugins/Referers/images/socials/pinterest.com.png -%%WWWDIR%%/plugins/Referers/images/socials/plaxo.com.png -%%WWWDIR%%/plugins/Referers/images/socials/qzone.qq.com.png -%%WWWDIR%%/plugins/Referers/images/socials/reddit.com.png -%%WWWDIR%%/plugins/Referers/images/socials/renren.com.png -%%WWWDIR%%/plugins/Referers/images/socials/ru.netlog.com.png -%%WWWDIR%%/plugins/Referers/images/socials/skyrock.com.png -%%WWWDIR%%/plugins/Referers/images/socials/sonico.com.png -%%WWWDIR%%/plugins/Referers/images/socials/sourceforge.net.png -%%WWWDIR%%/plugins/Referers/images/socials/stackoverflow.com.png -%%WWWDIR%%/plugins/Referers/images/socials/studivz.net.png -%%WWWDIR%%/plugins/Referers/images/socials/stumbleupon.com.png -%%WWWDIR%%/plugins/Referers/images/socials/tagged.com.png -%%WWWDIR%%/plugins/Referers/images/socials/taringa.net.png -%%WWWDIR%%/plugins/Referers/images/socials/tuenti.com.png -%%WWWDIR%%/plugins/Referers/images/socials/twitter.com.png -%%WWWDIR%%/plugins/Referers/images/socials/url.google.com.png -%%WWWDIR%%/plugins/Referers/images/socials/viadeo.com.png -%%WWWDIR%%/plugins/Referers/images/socials/vk.com.png -%%WWWDIR%%/plugins/Referers/images/socials/vkontakte.ru.png -%%WWWDIR%%/plugins/Referers/images/socials/vkrugudruzei.ru.png -%%WWWDIR%%/plugins/Referers/images/socials/weibo.com.png -%%WWWDIR%%/plugins/Referers/images/socials/xing.com.png -%%WWWDIR%%/plugins/Referers/images/socials/xx.png -%%WWWDIR%%/plugins/Referers/templates/Websites_SocialNetworks.tpl -%%WWWDIR%%/plugins/Referers/templates/index.tpl -%%WWWDIR%%/plugins/Referers/templates/searchEngines_Keywords.tpl +%%WWWDIR%%/plugins/Referrers/API.php +%%WWWDIR%%/plugins/Referrers/Archiver.php +%%WWWDIR%%/plugins/Referrers/Controller.php +%%WWWDIR%%/plugins/Referrers/Referrers.php +%%WWWDIR%%/plugins/Referrers/functions.php +%%WWWDIR%%/plugins/Referrers/images/searchEngines/1.cz.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/abcsok.no.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/alexa.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/all.by.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/apollo.lv.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/apollo7.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/arama.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/ariadna.elmundo.es.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/arianna.libero.it.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/ask.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/bg.setooz.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/bing.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/blekko.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/blogs.icerocket.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/blogsearch.google.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/busca.orange.es.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/busca.uol.com.br.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/buscador.terra.es.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/cgi.search.biglobe.ne.jp.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/claro-search.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/daemon-search.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/digg.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/dir.gigablast.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/dmoz.org.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/duckduckgo.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/ecosia.org.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/encrypted.google.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/eo.st.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/forestle.org.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/fr.dir.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/fr.wedoo.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/friendfeed.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/gais.cs.ccu.edu.tw.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/geona.net.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/go.mail.ru.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/google.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/googlesyndicatedsearch.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/holmes.ge.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/images.google.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/images.search.yahoo.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/images.yandex.ru.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/infospace.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/iwon.ask.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/ixquick.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/junglekey.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/jyxo.1188.cz.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/ko.search.need2find.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/lo.st.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/maps.google.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/meta.rrzn.uni-hannover.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/meta.ua.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/metager2.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/news.google.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/nigma.ru.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/nova.rambler.ru.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/online.no.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/otsing.delfi.ee.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/p.zhongsou.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/pesquisa.clix.pt.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/pesquisa.sapo.pt.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/plusnetwork.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/poisk.ru.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/recherche.francite.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/rechercher.aliceadsl.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/req.hit-parade.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/ricerca.virgilio.it.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/rpmfind.net.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/s1.metacrawler.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/scholar.google.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/scour.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.aol.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.babylon.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.bluewin.ch.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.centrum.cz.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.comcast.net.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.conduit.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.daum.net.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.earthlink.net.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.excite.it.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.free.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.freecause.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.goo.ne.jp.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.imesh.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.ke.voila.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.lycos.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.nate.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.naver.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.nifty.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.peoplepc.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.qip.ru.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.rr.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.seznam.cz.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.smartaddressbar.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.snap.do.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.softonic.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.tiscali.it.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.winamp.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.www.ee.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.yahoo.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.yam.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/search.yippy.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/searchalot.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/searchatlas.centrum.cz.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/searchservice.myspace.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/sm.aport.ru.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/smart.delfi.lv.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/so.360.cn.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/start.iplay.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/startgoogle.startpagina.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/suche.freenet.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/suche.info.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/suche.t-online.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/suche.web.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/surfcanyon.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/szukaj.onet.pl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/szukaj.wp.pl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/technorati.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/translate.google.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/video.google.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/web.canoe.ca.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/web.volny.cz.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/websearch.cs.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/websearch.rakuten.co.jp.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.123people.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.1881.no.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.abacho.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.acoon.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.allesklar.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.alltheweb.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.altavista.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.arcor.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.baidu.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.blogdigger.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.blogpulse.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.charter.net.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.crawler.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.cuil.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.dasoertliche.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.eniro.se.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.eurip.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.euroseek.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.everyclick.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.exalead.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.facebook.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.fastbrowsersearch.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.fireball.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.firstsfind.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.fixsuche.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.flix.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.gigablast.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.gnadenmeer.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.gomeo.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.google.interia.pl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.goyellow.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.gulesider.no.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.highbeam.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.hooseek.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.hotbot.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.icq.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.ilse.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.jungle-spider.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.kataweb.it.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.kvasir.no.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.latne.lv.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.looksmart.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.maailm.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.mamma.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.meinestadt.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.mister-wong.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.monstercrawler.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.mozbot.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.mysearch.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.najdi.si.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.neti.ee.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.paperball.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.picsearch.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.plazoo.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.qualigo.at.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.search.ch.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.search.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.searchcanvas.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.searchy.co.uk.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.sharelook.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.skynet.be.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.sogou.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.soso.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.startsiden.no.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.suchmaschine.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.suchnase.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.talimba.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.talktalk.co.uk.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.teoma.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.tixuma.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.toile.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.toolbarhome.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.trouvez.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.trovarapido.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.trusted-search.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.twingly.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.url.org.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.vinden.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.vindex.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.walhello.info.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.web.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.weborama.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.websearch.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.witch.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.x-recherche.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.yasni.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.yatedo.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.yougoo.fr.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.zapmeta.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.zoeken.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www.zoznam.sk.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www1.dastelefonbuch.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www2.austronaut.at.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www2.inbox.com.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/www3.zoek.nl.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/xx.gif +%%WWWDIR%%/plugins/Referrers/images/searchEngines/xx.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/yandex.ru.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/yellowmap.de.png +%%WWWDIR%%/plugins/Referrers/images/searchEngines/zoohoo.cz.png +%%WWWDIR%%/plugins/Referrers/images/socials/badoo.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/bebo.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/blackplanet.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/buzznet.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/classmates.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/douban.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/facebook.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/flickr.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/flixster.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/foursquare.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/friendsreunited.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/friendster.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/gaiaonline.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/geni.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/github.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/habbo.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/hi5.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/hyves.nl.png +%%WWWDIR%%/plugins/Referrers/images/socials/identi.ca.png +%%WWWDIR%%/plugins/Referrers/images/socials/lastfm.ru.png +%%WWWDIR%%/plugins/Referrers/images/socials/linkedin.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/livejournal.ru.png +%%WWWDIR%%/plugins/Referrers/images/socials/login.live.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/mixi.jp.png +%%WWWDIR%%/plugins/Referrers/images/socials/moikrug.ru.png +%%WWWDIR%%/plugins/Referrers/images/socials/multiply.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/myheritage.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/mylife.ru.png +%%WWWDIR%%/plugins/Referrers/images/socials/myspace.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/myyearbook.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/news.ycombinator.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/nk.pl.png +%%WWWDIR%%/plugins/Referrers/images/socials/odnoklassniki.ru.png +%%WWWDIR%%/plugins/Referrers/images/socials/orkut.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/pinterest.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/plaxo.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/qzone.qq.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/reddit.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/renren.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/ru.netlog.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/skyrock.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/sonico.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/sourceforge.net.png +%%WWWDIR%%/plugins/Referrers/images/socials/stackoverflow.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/studivz.net.png +%%WWWDIR%%/plugins/Referrers/images/socials/stumbleupon.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/tagged.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/taringa.net.png +%%WWWDIR%%/plugins/Referrers/images/socials/tuenti.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/twitter.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/url.google.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/viadeo.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/vimeo.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/vk.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/vkontakte.ru.png +%%WWWDIR%%/plugins/Referrers/images/socials/vkrugudruzei.ru.png +%%WWWDIR%%/plugins/Referrers/images/socials/weibo.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/xing.com.png +%%WWWDIR%%/plugins/Referrers/images/socials/xx.png +%%WWWDIR%%/plugins/Referrers/images/socials/youtube.com.png +%%WWWDIR%%/plugins/Referrers/templates/getSearchEnginesAndKeywords.twig +%%WWWDIR%%/plugins/Referrers/templates/index.twig +%%WWWDIR%%/plugins/Referrers/templates/indexWebsites.twig %%WWWDIR%%/plugins/SEO/API.php %%WWWDIR%%/plugins/SEO/Controller.php %%WWWDIR%%/plugins/SEO/MajesticClient.php @@ -1755,43 +1796,17 @@ %%WWWDIR%%/plugins/SEO/SEO.php %%WWWDIR%%/plugins/SEO/images/majesticseo.png %%WWWDIR%%/plugins/SEO/images/whois.png -%%WWWDIR%%/plugins/SEO/templates/index.tpl -%%WWWDIR%%/plugins/SEO/templates/rank.js -%%WWWDIR%%/plugins/SecurityInfo/Controller.php -%%WWWDIR%%/plugins/SecurityInfo/LICENSE -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/PhpSecInfo.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/README -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Application/php.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Application/piwik.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/CGI/force_redirect.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/allow_url_fopen.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/allow_url_include.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/display_errors.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/expose_php.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/file_uploads.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/gid.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/magic_quotes_gpc.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/memory_limit.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/open_basedir.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/post_max_size.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/register_globals.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/uid.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/upload_max_filesize.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core/upload_tmp_dir.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Curl/file_support.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Session/save_path.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Session/use_trans_sid.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Suhosin/extension.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Suhosin/patch.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Test.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Test_Application.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Test_Cgi.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Test_Core.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Test_Curl.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Test_Session.php -%%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Test_Suhosin.php -%%WWWDIR%%/plugins/SecurityInfo/SecurityInfo.php -%%WWWDIR%%/plugins/SecurityInfo/templates/index.tpl +%%WWWDIR%%/plugins/SEO/javascripts/rank.js +%%WWWDIR%%/plugins/SEO/templates/getRank.twig +%%WWWDIR%%/plugins/ScheduledReports/API.php +%%WWWDIR%%/plugins/ScheduledReports/Controller.php +%%WWWDIR%%/plugins/ScheduledReports/ScheduledReports.php +%%WWWDIR%%/plugins/ScheduledReports/config/tcpdf_config.php +%%WWWDIR%%/plugins/ScheduledReports/javascripts/pdf.js +%%WWWDIR%%/plugins/ScheduledReports/templates/_addReport.twig +%%WWWDIR%%/plugins/ScheduledReports/templates/_listReports.twig +%%WWWDIR%%/plugins/ScheduledReports/templates/index.twig +%%WWWDIR%%/plugins/ScheduledReports/templates/reportParametersScheduledReports.twig %%WWWDIR%%/plugins/SegmentEditor/API.php %%WWWDIR%%/plugins/SegmentEditor/Controller.php %%WWWDIR%%/plugins/SegmentEditor/SegmentEditor.php @@ -1802,40 +1817,34 @@ %%WWWDIR%%/plugins/SegmentEditor/images/close.png %%WWWDIR%%/plugins/SegmentEditor/images/close_btn.png %%WWWDIR%%/plugins/SegmentEditor/images/dashboard_h_bg_hover.png -%%WWWDIR%%/plugins/SegmentEditor/images/down_arrow.png %%WWWDIR%%/plugins/SegmentEditor/images/icon-users.png %%WWWDIR%%/plugins/SegmentEditor/images/reset_search.png -%%WWWDIR%%/plugins/SegmentEditor/images/scroller.png %%WWWDIR%%/plugins/SegmentEditor/images/search_btn.png %%WWWDIR%%/plugins/SegmentEditor/images/segment-close.png %%WWWDIR%%/plugins/SegmentEditor/images/segment-move.png -%%WWWDIR%%/plugins/SegmentEditor/images/slide.png -%%WWWDIR%%/plugins/SegmentEditor/images/up_arrow.png -%%WWWDIR%%/plugins/SegmentEditor/templates/Segmentation.css -%%WWWDIR%%/plugins/SegmentEditor/templates/Segmentation.js -%%WWWDIR%%/plugins/SegmentEditor/templates/jquery.jscrollpane.css -%%WWWDIR%%/plugins/SegmentEditor/templates/jquery.jscrollpane.js -%%WWWDIR%%/plugins/SegmentEditor/templates/jquery.mousewheel.js -%%WWWDIR%%/plugins/SegmentEditor/templates/mwheelIntent.js -%%WWWDIR%%/plugins/SegmentEditor/templates/scroll.css -%%WWWDIR%%/plugins/SegmentEditor/templates/selector.tpl +%%WWWDIR%%/plugins/SegmentEditor/javascripts/Segmentation.js +%%WWWDIR%%/plugins/SegmentEditor/stylesheets/segmentation.less +%%WWWDIR%%/plugins/SegmentEditor/templates/getSelector.twig %%WWWDIR%%/plugins/SitesManager/API.php %%WWWDIR%%/plugins/SitesManager/Controller.php %%WWWDIR%%/plugins/SitesManager/SitesManager.php -%%WWWDIR%%/plugins/SitesManager/templates/DisplayAlternativeTags.tpl -%%WWWDIR%%/plugins/SitesManager/templates/DisplayJavascriptCode.tpl -%%WWWDIR%%/plugins/SitesManager/templates/SitesManager.js -%%WWWDIR%%/plugins/SitesManager/templates/SitesManager.tpl -%%WWWDIR%%/plugins/SitesManager/templates/Tracking.tpl +%%WWWDIR%%/plugins/SitesManager/javascripts/SitesManager.js +%%WWWDIR%%/plugins/SitesManager/stylesheets/SitesManager.less +%%WWWDIR%%/plugins/SitesManager/templates/_displayJavascriptCode.twig +%%WWWDIR%%/plugins/SitesManager/templates/displayAlternativeTagsHelp.twig +%%WWWDIR%%/plugins/SitesManager/templates/displayJavascriptCode.twig +%%WWWDIR%%/plugins/SitesManager/templates/index.twig %%WWWDIR%%/plugins/Transitions/API.php %%WWWDIR%%/plugins/Transitions/Controller.php %%WWWDIR%%/plugins/Transitions/Transitions.php -%%WWWDIR%%/plugins/Transitions/templates/transitions.css -%%WWWDIR%%/plugins/Transitions/templates/transitions.js -%%WWWDIR%%/plugins/Transitions/templates/transitions.tpl -%%WWWDIR%%/plugins/Transitions/templates/transitions_icon.png -%%WWWDIR%%/plugins/Transitions/templates/transitions_icon_hover.png +%%WWWDIR%%/plugins/Transitions/images/transitions_icon.png +%%WWWDIR%%/plugins/Transitions/images/transitions_icon_hover.png +%%WWWDIR%%/plugins/Transitions/javascripts/transitions.js +%%WWWDIR%%/plugins/Transitions/stylesheets/_transitionColors.less +%%WWWDIR%%/plugins/Transitions/stylesheets/transitions.less +%%WWWDIR%%/plugins/Transitions/templates/renderPopover.twig %%WWWDIR%%/plugins/UserCountry/API.php +%%WWWDIR%%/plugins/UserCountry/Archiver.php %%WWWDIR%%/plugins/UserCountry/Controller.php %%WWWDIR%%/plugins/UserCountry/GeoIPAutoUpdater.php %%WWWDIR%%/plugins/UserCountry/LocationProvider.php @@ -1845,306 +1854,302 @@ %%WWWDIR%%/plugins/UserCountry/LocationProvider/GeoIp/Php.php %%WWWDIR%%/plugins/UserCountry/LocationProvider/GeoIp/ServerBased.php %%WWWDIR%%/plugins/UserCountry/UserCountry.php -%%WWWDIR%%/plugins/UserCountry/flags/a1.png -%%WWWDIR%%/plugins/UserCountry/flags/a2.png -%%WWWDIR%%/plugins/UserCountry/flags/ac.png -%%WWWDIR%%/plugins/UserCountry/flags/ad.png -%%WWWDIR%%/plugins/UserCountry/flags/ae.png -%%WWWDIR%%/plugins/UserCountry/flags/af.png -%%WWWDIR%%/plugins/UserCountry/flags/ag.png -%%WWWDIR%%/plugins/UserCountry/flags/ai.png -%%WWWDIR%%/plugins/UserCountry/flags/al.png -%%WWWDIR%%/plugins/UserCountry/flags/am.png -%%WWWDIR%%/plugins/UserCountry/flags/an.png -%%WWWDIR%%/plugins/UserCountry/flags/ao.png -%%WWWDIR%%/plugins/UserCountry/flags/ap.png -%%WWWDIR%%/plugins/UserCountry/flags/aq.png -%%WWWDIR%%/plugins/UserCountry/flags/ar.png -%%WWWDIR%%/plugins/UserCountry/flags/as.png -%%WWWDIR%%/plugins/UserCountry/flags/at.png -%%WWWDIR%%/plugins/UserCountry/flags/au.png -%%WWWDIR%%/plugins/UserCountry/flags/aw.png -%%WWWDIR%%/plugins/UserCountry/flags/ax.png -%%WWWDIR%%/plugins/UserCountry/flags/az.png -%%WWWDIR%%/plugins/UserCountry/flags/ba.png -%%WWWDIR%%/plugins/UserCountry/flags/bb.png -%%WWWDIR%%/plugins/UserCountry/flags/bd.png -%%WWWDIR%%/plugins/UserCountry/flags/be.png -%%WWWDIR%%/plugins/UserCountry/flags/bf.png -%%WWWDIR%%/plugins/UserCountry/flags/bg.png -%%WWWDIR%%/plugins/UserCountry/flags/bh.png -%%WWWDIR%%/plugins/UserCountry/flags/bi.png -%%WWWDIR%%/plugins/UserCountry/flags/bj.png -%%WWWDIR%%/plugins/UserCountry/flags/bl.png -%%WWWDIR%%/plugins/UserCountry/flags/bm.png -%%WWWDIR%%/plugins/UserCountry/flags/bn.png -%%WWWDIR%%/plugins/UserCountry/flags/bo.png -%%WWWDIR%%/plugins/UserCountry/flags/bq.png -%%WWWDIR%%/plugins/UserCountry/flags/br.png -%%WWWDIR%%/plugins/UserCountry/flags/bs.png -%%WWWDIR%%/plugins/UserCountry/flags/bt.png -%%WWWDIR%%/plugins/UserCountry/flags/bu.png -%%WWWDIR%%/plugins/UserCountry/flags/bv.png -%%WWWDIR%%/plugins/UserCountry/flags/bw.png -%%WWWDIR%%/plugins/UserCountry/flags/by.png -%%WWWDIR%%/plugins/UserCountry/flags/bz.png -%%WWWDIR%%/plugins/UserCountry/flags/ca.png -%%WWWDIR%%/plugins/UserCountry/flags/cat.png -%%WWWDIR%%/plugins/UserCountry/flags/cc.png -%%WWWDIR%%/plugins/UserCountry/flags/cd.png -%%WWWDIR%%/plugins/UserCountry/flags/cf.png -%%WWWDIR%%/plugins/UserCountry/flags/cg.png -%%WWWDIR%%/plugins/UserCountry/flags/ch.png -%%WWWDIR%%/plugins/UserCountry/flags/ci.png -%%WWWDIR%%/plugins/UserCountry/flags/ck.png -%%WWWDIR%%/plugins/UserCountry/flags/cl.png -%%WWWDIR%%/plugins/UserCountry/flags/cm.png -%%WWWDIR%%/plugins/UserCountry/flags/cn.png -%%WWWDIR%%/plugins/UserCountry/flags/co.png -%%WWWDIR%%/plugins/UserCountry/flags/cp.png -%%WWWDIR%%/plugins/UserCountry/flags/cr.png -%%WWWDIR%%/plugins/UserCountry/flags/cs.png -%%WWWDIR%%/plugins/UserCountry/flags/cu.png -%%WWWDIR%%/plugins/UserCountry/flags/cv.png -%%WWWDIR%%/plugins/UserCountry/flags/cw.png -%%WWWDIR%%/plugins/UserCountry/flags/cx.png -%%WWWDIR%%/plugins/UserCountry/flags/cy.png -%%WWWDIR%%/plugins/UserCountry/flags/cz.png -%%WWWDIR%%/plugins/UserCountry/flags/de.png -%%WWWDIR%%/plugins/UserCountry/flags/dg.png -%%WWWDIR%%/plugins/UserCountry/flags/dj.png -%%WWWDIR%%/plugins/UserCountry/flags/dk.png -%%WWWDIR%%/plugins/UserCountry/flags/dm.png -%%WWWDIR%%/plugins/UserCountry/flags/do.png -%%WWWDIR%%/plugins/UserCountry/flags/dz.png -%%WWWDIR%%/plugins/UserCountry/flags/ea.png -%%WWWDIR%%/plugins/UserCountry/flags/ec.png -%%WWWDIR%%/plugins/UserCountry/flags/ee.png -%%WWWDIR%%/plugins/UserCountry/flags/eg.png -%%WWWDIR%%/plugins/UserCountry/flags/eh.png -%%WWWDIR%%/plugins/UserCountry/flags/er.png -%%WWWDIR%%/plugins/UserCountry/flags/es.png -%%WWWDIR%%/plugins/UserCountry/flags/et.png -%%WWWDIR%%/plugins/UserCountry/flags/eu.png -%%WWWDIR%%/plugins/UserCountry/flags/fi.png -%%WWWDIR%%/plugins/UserCountry/flags/fj.png -%%WWWDIR%%/plugins/UserCountry/flags/fk.png -%%WWWDIR%%/plugins/UserCountry/flags/fm.png -%%WWWDIR%%/plugins/UserCountry/flags/fo.png -%%WWWDIR%%/plugins/UserCountry/flags/fr.png -%%WWWDIR%%/plugins/UserCountry/flags/fx.png -%%WWWDIR%%/plugins/UserCountry/flags/ga.png -%%WWWDIR%%/plugins/UserCountry/flags/gb.png -%%WWWDIR%%/plugins/UserCountry/flags/gd.png -%%WWWDIR%%/plugins/UserCountry/flags/ge.png -%%WWWDIR%%/plugins/UserCountry/flags/gf.png -%%WWWDIR%%/plugins/UserCountry/flags/gg.png -%%WWWDIR%%/plugins/UserCountry/flags/gh.png -%%WWWDIR%%/plugins/UserCountry/flags/gi.png -%%WWWDIR%%/plugins/UserCountry/flags/gl.png -%%WWWDIR%%/plugins/UserCountry/flags/gm.png -%%WWWDIR%%/plugins/UserCountry/flags/gn.png -%%WWWDIR%%/plugins/UserCountry/flags/gp.png -%%WWWDIR%%/plugins/UserCountry/flags/gq.png -%%WWWDIR%%/plugins/UserCountry/flags/gr.png -%%WWWDIR%%/plugins/UserCountry/flags/gs.png -%%WWWDIR%%/plugins/UserCountry/flags/gt.png -%%WWWDIR%%/plugins/UserCountry/flags/gu.png -%%WWWDIR%%/plugins/UserCountry/flags/gw.png -%%WWWDIR%%/plugins/UserCountry/flags/gy.png -%%WWWDIR%%/plugins/UserCountry/flags/hk.png -%%WWWDIR%%/plugins/UserCountry/flags/hm.png -%%WWWDIR%%/plugins/UserCountry/flags/hn.png -%%WWWDIR%%/plugins/UserCountry/flags/hr.png -%%WWWDIR%%/plugins/UserCountry/flags/ht.png -%%WWWDIR%%/plugins/UserCountry/flags/hu.png -%%WWWDIR%%/plugins/UserCountry/flags/ic.png -%%WWWDIR%%/plugins/UserCountry/flags/id.png -%%WWWDIR%%/plugins/UserCountry/flags/ie.png -%%WWWDIR%%/plugins/UserCountry/flags/il.png -%%WWWDIR%%/plugins/UserCountry/flags/im.png -%%WWWDIR%%/plugins/UserCountry/flags/in.png -%%WWWDIR%%/plugins/UserCountry/flags/io.png -%%WWWDIR%%/plugins/UserCountry/flags/iq.png -%%WWWDIR%%/plugins/UserCountry/flags/ir.png -%%WWWDIR%%/plugins/UserCountry/flags/is.png -%%WWWDIR%%/plugins/UserCountry/flags/it.png -%%WWWDIR%%/plugins/UserCountry/flags/je.png -%%WWWDIR%%/plugins/UserCountry/flags/jm.png -%%WWWDIR%%/plugins/UserCountry/flags/jo.png -%%WWWDIR%%/plugins/UserCountry/flags/jp.png -%%WWWDIR%%/plugins/UserCountry/flags/ke.png -%%WWWDIR%%/plugins/UserCountry/flags/kg.png -%%WWWDIR%%/plugins/UserCountry/flags/kh.png -%%WWWDIR%%/plugins/UserCountry/flags/ki.png -%%WWWDIR%%/plugins/UserCountry/flags/km.png -%%WWWDIR%%/plugins/UserCountry/flags/kn.png -%%WWWDIR%%/plugins/UserCountry/flags/kp.png -%%WWWDIR%%/plugins/UserCountry/flags/kr.png -%%WWWDIR%%/plugins/UserCountry/flags/kw.png -%%WWWDIR%%/plugins/UserCountry/flags/ky.png -%%WWWDIR%%/plugins/UserCountry/flags/kz.png -%%WWWDIR%%/plugins/UserCountry/flags/la.png -%%WWWDIR%%/plugins/UserCountry/flags/lb.png -%%WWWDIR%%/plugins/UserCountry/flags/lc.png -%%WWWDIR%%/plugins/UserCountry/flags/li.png -%%WWWDIR%%/plugins/UserCountry/flags/lk.png -%%WWWDIR%%/plugins/UserCountry/flags/lr.png -%%WWWDIR%%/plugins/UserCountry/flags/ls.png -%%WWWDIR%%/plugins/UserCountry/flags/lt.png -%%WWWDIR%%/plugins/UserCountry/flags/lu.png -%%WWWDIR%%/plugins/UserCountry/flags/lv.png -%%WWWDIR%%/plugins/UserCountry/flags/ly.png -%%WWWDIR%%/plugins/UserCountry/flags/ma.png -%%WWWDIR%%/plugins/UserCountry/flags/mc.png -%%WWWDIR%%/plugins/UserCountry/flags/md.png -%%WWWDIR%%/plugins/UserCountry/flags/me.png -%%WWWDIR%%/plugins/UserCountry/flags/mf.png -%%WWWDIR%%/plugins/UserCountry/flags/mg.png -%%WWWDIR%%/plugins/UserCountry/flags/mh.png -%%WWWDIR%%/plugins/UserCountry/flags/mk.png -%%WWWDIR%%/plugins/UserCountry/flags/ml.png -%%WWWDIR%%/plugins/UserCountry/flags/mm.png -%%WWWDIR%%/plugins/UserCountry/flags/mn.png -%%WWWDIR%%/plugins/UserCountry/flags/mo.png -%%WWWDIR%%/plugins/UserCountry/flags/mp.png -%%WWWDIR%%/plugins/UserCountry/flags/mq.png -%%WWWDIR%%/plugins/UserCountry/flags/mr.png -%%WWWDIR%%/plugins/UserCountry/flags/ms.png -%%WWWDIR%%/plugins/UserCountry/flags/mt.png -%%WWWDIR%%/plugins/UserCountry/flags/mu.png -%%WWWDIR%%/plugins/UserCountry/flags/mv.png -%%WWWDIR%%/plugins/UserCountry/flags/mw.png -%%WWWDIR%%/plugins/UserCountry/flags/mx.png -%%WWWDIR%%/plugins/UserCountry/flags/my.png -%%WWWDIR%%/plugins/UserCountry/flags/mz.png -%%WWWDIR%%/plugins/UserCountry/flags/na.png -%%WWWDIR%%/plugins/UserCountry/flags/nc.png -%%WWWDIR%%/plugins/UserCountry/flags/ne.png -%%WWWDIR%%/plugins/UserCountry/flags/nf.png -%%WWWDIR%%/plugins/UserCountry/flags/ng.png -%%WWWDIR%%/plugins/UserCountry/flags/ni.png -%%WWWDIR%%/plugins/UserCountry/flags/nl.png -%%WWWDIR%%/plugins/UserCountry/flags/no.png -%%WWWDIR%%/plugins/UserCountry/flags/np.png -%%WWWDIR%%/plugins/UserCountry/flags/nr.png -%%WWWDIR%%/plugins/UserCountry/flags/nt.png -%%WWWDIR%%/plugins/UserCountry/flags/nu.png -%%WWWDIR%%/plugins/UserCountry/flags/nz.png -%%WWWDIR%%/plugins/UserCountry/flags/o1.png -%%WWWDIR%%/plugins/UserCountry/flags/om.png -%%WWWDIR%%/plugins/UserCountry/flags/pa.png -%%WWWDIR%%/plugins/UserCountry/flags/pe.png -%%WWWDIR%%/plugins/UserCountry/flags/pf.png -%%WWWDIR%%/plugins/UserCountry/flags/pg.png -%%WWWDIR%%/plugins/UserCountry/flags/ph.png -%%WWWDIR%%/plugins/UserCountry/flags/pk.png -%%WWWDIR%%/plugins/UserCountry/flags/pl.png -%%WWWDIR%%/plugins/UserCountry/flags/pm.png -%%WWWDIR%%/plugins/UserCountry/flags/pn.png -%%WWWDIR%%/plugins/UserCountry/flags/pr.png -%%WWWDIR%%/plugins/UserCountry/flags/ps.png -%%WWWDIR%%/plugins/UserCountry/flags/pt.png -%%WWWDIR%%/plugins/UserCountry/flags/pw.png -%%WWWDIR%%/plugins/UserCountry/flags/py.png -%%WWWDIR%%/plugins/UserCountry/flags/qa.png -%%WWWDIR%%/plugins/UserCountry/flags/re.png -%%WWWDIR%%/plugins/UserCountry/flags/ro.png -%%WWWDIR%%/plugins/UserCountry/flags/rs.png -%%WWWDIR%%/plugins/UserCountry/flags/ru.png -%%WWWDIR%%/plugins/UserCountry/flags/rw.png -%%WWWDIR%%/plugins/UserCountry/flags/sa.png -%%WWWDIR%%/plugins/UserCountry/flags/sb.png -%%WWWDIR%%/plugins/UserCountry/flags/sc.png -%%WWWDIR%%/plugins/UserCountry/flags/sd.png -%%WWWDIR%%/plugins/UserCountry/flags/se.png -%%WWWDIR%%/plugins/UserCountry/flags/sf.png -%%WWWDIR%%/plugins/UserCountry/flags/sg.png -%%WWWDIR%%/plugins/UserCountry/flags/sh.png -%%WWWDIR%%/plugins/UserCountry/flags/si.png -%%WWWDIR%%/plugins/UserCountry/flags/sj.png -%%WWWDIR%%/plugins/UserCountry/flags/sk.png -%%WWWDIR%%/plugins/UserCountry/flags/sl.png -%%WWWDIR%%/plugins/UserCountry/flags/sm.png -%%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 -%%WWWDIR%%/plugins/UserCountry/flags/sx.png -%%WWWDIR%%/plugins/UserCountry/flags/sy.png -%%WWWDIR%%/plugins/UserCountry/flags/sz.png -%%WWWDIR%%/plugins/UserCountry/flags/ta.png -%%WWWDIR%%/plugins/UserCountry/flags/tc.png -%%WWWDIR%%/plugins/UserCountry/flags/td.png -%%WWWDIR%%/plugins/UserCountry/flags/tf.png -%%WWWDIR%%/plugins/UserCountry/flags/tg.png -%%WWWDIR%%/plugins/UserCountry/flags/th.png -%%WWWDIR%%/plugins/UserCountry/flags/ti.png -%%WWWDIR%%/plugins/UserCountry/flags/tj.png -%%WWWDIR%%/plugins/UserCountry/flags/tk.png -%%WWWDIR%%/plugins/UserCountry/flags/tl.png -%%WWWDIR%%/plugins/UserCountry/flags/tm.png -%%WWWDIR%%/plugins/UserCountry/flags/tn.png -%%WWWDIR%%/plugins/UserCountry/flags/to.png -%%WWWDIR%%/plugins/UserCountry/flags/tp.png -%%WWWDIR%%/plugins/UserCountry/flags/tr.png -%%WWWDIR%%/plugins/UserCountry/flags/tt.png -%%WWWDIR%%/plugins/UserCountry/flags/tv.png -%%WWWDIR%%/plugins/UserCountry/flags/tw.png -%%WWWDIR%%/plugins/UserCountry/flags/tz.png -%%WWWDIR%%/plugins/UserCountry/flags/ua.png -%%WWWDIR%%/plugins/UserCountry/flags/ug.png -%%WWWDIR%%/plugins/UserCountry/flags/uk.png -%%WWWDIR%%/plugins/UserCountry/flags/um.png -%%WWWDIR%%/plugins/UserCountry/flags/us.png -%%WWWDIR%%/plugins/UserCountry/flags/uy.png -%%WWWDIR%%/plugins/UserCountry/flags/uz.png -%%WWWDIR%%/plugins/UserCountry/flags/va.png -%%WWWDIR%%/plugins/UserCountry/flags/vc.png -%%WWWDIR%%/plugins/UserCountry/flags/ve.png -%%WWWDIR%%/plugins/UserCountry/flags/vg.png -%%WWWDIR%%/plugins/UserCountry/flags/vi.png -%%WWWDIR%%/plugins/UserCountry/flags/vn.png -%%WWWDIR%%/plugins/UserCountry/flags/vu.png -%%WWWDIR%%/plugins/UserCountry/flags/wf.png -%%WWWDIR%%/plugins/UserCountry/flags/ws.png -%%WWWDIR%%/plugins/UserCountry/flags/xx.png -%%WWWDIR%%/plugins/UserCountry/flags/ye.png -%%WWWDIR%%/plugins/UserCountry/flags/yt.png -%%WWWDIR%%/plugins/UserCountry/flags/yu.png -%%WWWDIR%%/plugins/UserCountry/flags/za.png -%%WWWDIR%%/plugins/UserCountry/flags/zm.png -%%WWWDIR%%/plugins/UserCountry/flags/zr.png -%%WWWDIR%%/plugins/UserCountry/flags/zw.png %%WWWDIR%%/plugins/UserCountry/functions.php -%%WWWDIR%%/plugins/UserCountry/templates/admin.js -%%WWWDIR%%/plugins/UserCountry/templates/adminIndex.tpl -%%WWWDIR%%/plugins/UserCountry/templates/index.tpl -%%WWWDIR%%/plugins/UserCountry/templates/styles.css -%%WWWDIR%%/plugins/UserCountry/templates/updaterSetup.tpl +%%WWWDIR%%/plugins/UserCountry/images/flags/a1.png +%%WWWDIR%%/plugins/UserCountry/images/flags/a2.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ac.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ad.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ae.png +%%WWWDIR%%/plugins/UserCountry/images/flags/af.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ag.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ai.png +%%WWWDIR%%/plugins/UserCountry/images/flags/al.png +%%WWWDIR%%/plugins/UserCountry/images/flags/am.png +%%WWWDIR%%/plugins/UserCountry/images/flags/an.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ao.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ap.png +%%WWWDIR%%/plugins/UserCountry/images/flags/aq.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ar.png +%%WWWDIR%%/plugins/UserCountry/images/flags/as.png +%%WWWDIR%%/plugins/UserCountry/images/flags/at.png +%%WWWDIR%%/plugins/UserCountry/images/flags/au.png +%%WWWDIR%%/plugins/UserCountry/images/flags/aw.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ax.png +%%WWWDIR%%/plugins/UserCountry/images/flags/az.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ba.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bb.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bd.png +%%WWWDIR%%/plugins/UserCountry/images/flags/be.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bf.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bg.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bh.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bi.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bj.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bl.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bn.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bo.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bq.png +%%WWWDIR%%/plugins/UserCountry/images/flags/br.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bs.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bt.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bu.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bv.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bw.png +%%WWWDIR%%/plugins/UserCountry/images/flags/by.png +%%WWWDIR%%/plugins/UserCountry/images/flags/bz.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ca.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cat.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cc.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cd.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cf.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cg.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ch.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ci.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ck.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cl.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cn.png +%%WWWDIR%%/plugins/UserCountry/images/flags/co.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cp.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cs.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cu.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cv.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cw.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cx.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cy.png +%%WWWDIR%%/plugins/UserCountry/images/flags/cz.png +%%WWWDIR%%/plugins/UserCountry/images/flags/de.png +%%WWWDIR%%/plugins/UserCountry/images/flags/dg.png +%%WWWDIR%%/plugins/UserCountry/images/flags/dj.png +%%WWWDIR%%/plugins/UserCountry/images/flags/dk.png +%%WWWDIR%%/plugins/UserCountry/images/flags/dm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/do.png +%%WWWDIR%%/plugins/UserCountry/images/flags/dz.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ea.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ec.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ee.png +%%WWWDIR%%/plugins/UserCountry/images/flags/eg.png +%%WWWDIR%%/plugins/UserCountry/images/flags/eh.png +%%WWWDIR%%/plugins/UserCountry/images/flags/er.png +%%WWWDIR%%/plugins/UserCountry/images/flags/es.png +%%WWWDIR%%/plugins/UserCountry/images/flags/et.png +%%WWWDIR%%/plugins/UserCountry/images/flags/eu.png +%%WWWDIR%%/plugins/UserCountry/images/flags/fi.png +%%WWWDIR%%/plugins/UserCountry/images/flags/fj.png +%%WWWDIR%%/plugins/UserCountry/images/flags/fk.png +%%WWWDIR%%/plugins/UserCountry/images/flags/fm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/fo.png +%%WWWDIR%%/plugins/UserCountry/images/flags/fr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/fx.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ga.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gb.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gd.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ge.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gf.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gg.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gh.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gi.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gl.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gn.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gp.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gq.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gs.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gt.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gu.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gw.png +%%WWWDIR%%/plugins/UserCountry/images/flags/gy.png +%%WWWDIR%%/plugins/UserCountry/images/flags/hk.png +%%WWWDIR%%/plugins/UserCountry/images/flags/hm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/hn.png +%%WWWDIR%%/plugins/UserCountry/images/flags/hr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ht.png +%%WWWDIR%%/plugins/UserCountry/images/flags/hu.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ic.png +%%WWWDIR%%/plugins/UserCountry/images/flags/id.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ie.png +%%WWWDIR%%/plugins/UserCountry/images/flags/il.png +%%WWWDIR%%/plugins/UserCountry/images/flags/im.png +%%WWWDIR%%/plugins/UserCountry/images/flags/in.png +%%WWWDIR%%/plugins/UserCountry/images/flags/io.png +%%WWWDIR%%/plugins/UserCountry/images/flags/iq.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ir.png +%%WWWDIR%%/plugins/UserCountry/images/flags/is.png +%%WWWDIR%%/plugins/UserCountry/images/flags/it.png +%%WWWDIR%%/plugins/UserCountry/images/flags/je.png +%%WWWDIR%%/plugins/UserCountry/images/flags/jm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/jo.png +%%WWWDIR%%/plugins/UserCountry/images/flags/jp.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ke.png +%%WWWDIR%%/plugins/UserCountry/images/flags/kg.png +%%WWWDIR%%/plugins/UserCountry/images/flags/kh.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ki.png +%%WWWDIR%%/plugins/UserCountry/images/flags/km.png +%%WWWDIR%%/plugins/UserCountry/images/flags/kn.png +%%WWWDIR%%/plugins/UserCountry/images/flags/kp.png +%%WWWDIR%%/plugins/UserCountry/images/flags/kr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/kw.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ky.png +%%WWWDIR%%/plugins/UserCountry/images/flags/kz.png +%%WWWDIR%%/plugins/UserCountry/images/flags/la.png +%%WWWDIR%%/plugins/UserCountry/images/flags/lb.png +%%WWWDIR%%/plugins/UserCountry/images/flags/lc.png +%%WWWDIR%%/plugins/UserCountry/images/flags/li.png +%%WWWDIR%%/plugins/UserCountry/images/flags/lk.png +%%WWWDIR%%/plugins/UserCountry/images/flags/lr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ls.png +%%WWWDIR%%/plugins/UserCountry/images/flags/lt.png +%%WWWDIR%%/plugins/UserCountry/images/flags/lu.png +%%WWWDIR%%/plugins/UserCountry/images/flags/lv.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ly.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ma.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mc.png +%%WWWDIR%%/plugins/UserCountry/images/flags/md.png +%%WWWDIR%%/plugins/UserCountry/images/flags/me.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mf.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mg.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mh.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mk.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ml.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mn.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mo.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mp.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mq.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ms.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mt.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mu.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mv.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mw.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mx.png +%%WWWDIR%%/plugins/UserCountry/images/flags/my.png +%%WWWDIR%%/plugins/UserCountry/images/flags/mz.png +%%WWWDIR%%/plugins/UserCountry/images/flags/na.png +%%WWWDIR%%/plugins/UserCountry/images/flags/nc.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ne.png +%%WWWDIR%%/plugins/UserCountry/images/flags/nf.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ng.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ni.png +%%WWWDIR%%/plugins/UserCountry/images/flags/nl.png +%%WWWDIR%%/plugins/UserCountry/images/flags/no.png +%%WWWDIR%%/plugins/UserCountry/images/flags/np.png +%%WWWDIR%%/plugins/UserCountry/images/flags/nr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/nt.png +%%WWWDIR%%/plugins/UserCountry/images/flags/nu.png +%%WWWDIR%%/plugins/UserCountry/images/flags/nz.png +%%WWWDIR%%/plugins/UserCountry/images/flags/o1.png +%%WWWDIR%%/plugins/UserCountry/images/flags/om.png +%%WWWDIR%%/plugins/UserCountry/images/flags/pa.png +%%WWWDIR%%/plugins/UserCountry/images/flags/pe.png +%%WWWDIR%%/plugins/UserCountry/images/flags/pf.png +%%WWWDIR%%/plugins/UserCountry/images/flags/pg.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ph.png +%%WWWDIR%%/plugins/UserCountry/images/flags/pk.png +%%WWWDIR%%/plugins/UserCountry/images/flags/pl.png +%%WWWDIR%%/plugins/UserCountry/images/flags/pm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/pn.png +%%WWWDIR%%/plugins/UserCountry/images/flags/pr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ps.png +%%WWWDIR%%/plugins/UserCountry/images/flags/pt.png +%%WWWDIR%%/plugins/UserCountry/images/flags/pw.png +%%WWWDIR%%/plugins/UserCountry/images/flags/py.png +%%WWWDIR%%/plugins/UserCountry/images/flags/qa.png +%%WWWDIR%%/plugins/UserCountry/images/flags/re.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ro.png +%%WWWDIR%%/plugins/UserCountry/images/flags/rs.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ru.png +%%WWWDIR%%/plugins/UserCountry/images/flags/rw.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sa.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sb.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sc.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sd.png +%%WWWDIR%%/plugins/UserCountry/images/flags/se.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sf.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sg.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sh.png +%%WWWDIR%%/plugins/UserCountry/images/flags/si.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sj.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sk.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sl.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sn.png +%%WWWDIR%%/plugins/UserCountry/images/flags/so.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ss.png +%%WWWDIR%%/plugins/UserCountry/images/flags/st.png +%%WWWDIR%%/plugins/UserCountry/images/flags/su.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sv.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sx.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sy.png +%%WWWDIR%%/plugins/UserCountry/images/flags/sz.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ta.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tc.png +%%WWWDIR%%/plugins/UserCountry/images/flags/td.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tf.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tg.png +%%WWWDIR%%/plugins/UserCountry/images/flags/th.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ti.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tj.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tk.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tl.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tn.png +%%WWWDIR%%/plugins/UserCountry/images/flags/to.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tp.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tt.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tv.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tw.png +%%WWWDIR%%/plugins/UserCountry/images/flags/tz.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ua.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ug.png +%%WWWDIR%%/plugins/UserCountry/images/flags/uk.png +%%WWWDIR%%/plugins/UserCountry/images/flags/um.png +%%WWWDIR%%/plugins/UserCountry/images/flags/us.png +%%WWWDIR%%/plugins/UserCountry/images/flags/uy.png +%%WWWDIR%%/plugins/UserCountry/images/flags/uz.png +%%WWWDIR%%/plugins/UserCountry/images/flags/va.png +%%WWWDIR%%/plugins/UserCountry/images/flags/vc.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ve.png +%%WWWDIR%%/plugins/UserCountry/images/flags/vg.png +%%WWWDIR%%/plugins/UserCountry/images/flags/vi.png +%%WWWDIR%%/plugins/UserCountry/images/flags/vn.png +%%WWWDIR%%/plugins/UserCountry/images/flags/vu.png +%%WWWDIR%%/plugins/UserCountry/images/flags/wf.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ws.png +%%WWWDIR%%/plugins/UserCountry/images/flags/xx.png +%%WWWDIR%%/plugins/UserCountry/images/flags/ye.png +%%WWWDIR%%/plugins/UserCountry/images/flags/yt.png +%%WWWDIR%%/plugins/UserCountry/images/flags/yu.png +%%WWWDIR%%/plugins/UserCountry/images/flags/za.png +%%WWWDIR%%/plugins/UserCountry/images/flags/zm.png +%%WWWDIR%%/plugins/UserCountry/images/flags/zr.png +%%WWWDIR%%/plugins/UserCountry/images/flags/zw.png +%%WWWDIR%%/plugins/UserCountry/javascripts/userCountry.js +%%WWWDIR%%/plugins/UserCountry/stylesheets/userCountry.less +%%WWWDIR%%/plugins/UserCountry/templates/_updaterManage.twig +%%WWWDIR%%/plugins/UserCountry/templates/adminIndex.twig +%%WWWDIR%%/plugins/UserCountry/templates/getGeoIpUpdaterManageScreen.twig +%%WWWDIR%%/plugins/UserCountry/templates/index.twig %%WWWDIR%%/plugins/UserCountryMap/Controller.php %%WWWDIR%%/plugins/UserCountryMap/UserCountryMap.php -%%WWWDIR%%/plugins/UserCountryMap/css/map.css -%%WWWDIR%%/plugins/UserCountryMap/css/realtime-map.css -%%WWWDIR%%/plugins/UserCountryMap/css/visitor-map.css -%%WWWDIR%%/plugins/UserCountryMap/img/cities.png -%%WWWDIR%%/plugins/UserCountryMap/img/info.png -%%WWWDIR%%/plugins/UserCountryMap/img/realtimemap-loading.gif -%%WWWDIR%%/plugins/UserCountryMap/img/regions.png -%%WWWDIR%%/plugins/UserCountryMap/img/world.png -%%WWWDIR%%/plugins/UserCountryMap/img/zoom-out-disabled.png -%%WWWDIR%%/plugins/UserCountryMap/img/zoom-out.png -%%WWWDIR%%/plugins/UserCountryMap/js/realtime-map.js -%%WWWDIR%%/plugins/UserCountryMap/js/vendor/chroma.min.js -%%WWWDIR%%/plugins/UserCountryMap/js/vendor/jquery.qtip.min.js -%%WWWDIR%%/plugins/UserCountryMap/js/vendor/kartograph.js -%%WWWDIR%%/plugins/UserCountryMap/js/vendor/kartograph.min.js -%%WWWDIR%%/plugins/UserCountryMap/js/vendor/kmeans.js -%%WWWDIR%%/plugins/UserCountryMap/js/vendor/raphael.min.js -%%WWWDIR%%/plugins/UserCountryMap/js/visitor-map.js +%%WWWDIR%%/plugins/UserCountryMap/images/cities.png +%%WWWDIR%%/plugins/UserCountryMap/images/realtimemap-loading.gif +%%WWWDIR%%/plugins/UserCountryMap/images/regions.png +%%WWWDIR%%/plugins/UserCountryMap/images/zoom-out-disabled.png +%%WWWDIR%%/plugins/UserCountryMap/javascripts/realtime-map.js +%%WWWDIR%%/plugins/UserCountryMap/javascripts/vendor/chroma.min.js +%%WWWDIR%%/plugins/UserCountryMap/javascripts/vendor/jquery.qtip.min.js +%%WWWDIR%%/plugins/UserCountryMap/javascripts/vendor/kartograph.min.js +%%WWWDIR%%/plugins/UserCountryMap/javascripts/vendor/raphael.min.js +%%WWWDIR%%/plugins/UserCountryMap/javascripts/visitor-map.js +%%WWWDIR%%/plugins/UserCountryMap/stylesheets/map.css +%%WWWDIR%%/plugins/UserCountryMap/stylesheets/realtime-map.less +%%WWWDIR%%/plugins/UserCountryMap/stylesheets/visitor-map.less %%WWWDIR%%/plugins/UserCountryMap/svg/AF.svg %%WWWDIR%%/plugins/UserCountryMap/svg/AFG.svg %%WWWDIR%%/plugins/UserCountryMap/svg/AGO.svg @@ -2325,9 +2330,10 @@ %%WWWDIR%%/plugins/UserCountryMap/svg/ZWE.svg %%WWWDIR%%/plugins/UserCountryMap/svg/tmp.svg %%WWWDIR%%/plugins/UserCountryMap/svg/world.svg -%%WWWDIR%%/plugins/UserCountryMap/templates/realtime-map.tpl -%%WWWDIR%%/plugins/UserCountryMap/templates/visitor-map.tpl +%%WWWDIR%%/plugins/UserCountryMap/templates/realtimeMap.twig +%%WWWDIR%%/plugins/UserCountryMap/templates/visitorMap.twig %%WWWDIR%%/plugins/UserSettings/API.php +%%WWWDIR%%/plugins/UserSettings/Archiver.php %%WWWDIR%%/plugins/UserSettings/Controller.php %%WWWDIR%%/plugins/UserSettings/UserSettings.php %%WWWDIR%%/plugins/UserSettings/functions.php @@ -2462,163 +2468,496 @@ %%WWWDIR%%/plugins/UserSettings/images/screens/normal.gif %%WWWDIR%%/plugins/UserSettings/images/screens/unknown.gif %%WWWDIR%%/plugins/UserSettings/images/screens/wide.gif -%%WWWDIR%%/plugins/UserSettings/templates/index.tpl +%%WWWDIR%%/plugins/UserSettings/templates/index.twig %%WWWDIR%%/plugins/UsersManager/API.php %%WWWDIR%%/plugins/UsersManager/Controller.php %%WWWDIR%%/plugins/UsersManager/UsersManager.php %%WWWDIR%%/plugins/UsersManager/images/add.png %%WWWDIR%%/plugins/UsersManager/images/no-access.png %%WWWDIR%%/plugins/UsersManager/images/ok.png -%%WWWDIR%%/plugins/UsersManager/templates/UsersManager.js -%%WWWDIR%%/plugins/UsersManager/templates/UsersManager.tpl -%%WWWDIR%%/plugins/UsersManager/templates/userSettings.js -%%WWWDIR%%/plugins/UsersManager/templates/userSettings.tpl +%%WWWDIR%%/plugins/UsersManager/javascripts/usersManager.js +%%WWWDIR%%/plugins/UsersManager/javascripts/usersSettings.js +%%WWWDIR%%/plugins/UsersManager/stylesheets/usersManager.less +%%WWWDIR%%/plugins/UsersManager/templates/index.twig +%%WWWDIR%%/plugins/UsersManager/templates/userSettings.twig %%WWWDIR%%/plugins/VisitFrequency/API.php %%WWWDIR%%/plugins/VisitFrequency/Controller.php %%WWWDIR%%/plugins/VisitFrequency/VisitFrequency.php -%%WWWDIR%%/plugins/VisitFrequency/templates/index.tpl -%%WWWDIR%%/plugins/VisitFrequency/templates/sparklines.tpl +%%WWWDIR%%/plugins/VisitFrequency/templates/_sparklines.twig +%%WWWDIR%%/plugins/VisitFrequency/templates/getSparklines.twig +%%WWWDIR%%/plugins/VisitFrequency/templates/index.twig %%WWWDIR%%/plugins/VisitTime/API.php +%%WWWDIR%%/plugins/VisitTime/Archiver.php %%WWWDIR%%/plugins/VisitTime/Controller.php %%WWWDIR%%/plugins/VisitTime/VisitTime.php -%%WWWDIR%%/plugins/VisitTime/templates/index.tpl -%%WWWDIR%%/plugins/VisitorGenerator/Controller.php -%%WWWDIR%%/plugins/VisitorGenerator/VisitorGenerator.php -%%WWWDIR%%/plugins/VisitorGenerator/data/access.log -%%WWWDIR%%/plugins/VisitorGenerator/templates/generate.tpl -%%WWWDIR%%/plugins/VisitorGenerator/templates/index.tpl +%%WWWDIR%%/plugins/VisitTime/functions.php +%%WWWDIR%%/plugins/VisitTime/templates/index.twig %%WWWDIR%%/plugins/VisitorInterest/API.php +%%WWWDIR%%/plugins/VisitorInterest/Archiver.php %%WWWDIR%%/plugins/VisitorInterest/Controller.php %%WWWDIR%%/plugins/VisitorInterest/VisitorInterest.php -%%WWWDIR%%/plugins/VisitorInterest/templates/index.tpl +%%WWWDIR%%/plugins/VisitorInterest/templates/index.twig %%WWWDIR%%/plugins/VisitsSummary/API.php %%WWWDIR%%/plugins/VisitsSummary/Controller.php %%WWWDIR%%/plugins/VisitsSummary/VisitsSummary.php -%%WWWDIR%%/plugins/VisitsSummary/templates/index.tpl -%%WWWDIR%%/plugins/VisitsSummary/templates/sparklines.tpl +%%WWWDIR%%/plugins/VisitsSummary/templates/_sparklines.twig +%%WWWDIR%%/plugins/VisitsSummary/templates/getSparklines.twig +%%WWWDIR%%/plugins/VisitsSummary/templates/index.twig %%WWWDIR%%/plugins/Widgetize/Controller.php %%WWWDIR%%/plugins/Widgetize/Widgetize.php -%%WWWDIR%%/plugins/Widgetize/templates/empty.tpl -%%WWWDIR%%/plugins/Widgetize/templates/iframe.tpl -%%WWWDIR%%/plugins/Widgetize/templates/index.tpl -%%WWWDIR%%/plugins/Widgetize/templates/js.tpl -%%WWWDIR%%/plugins/Widgetize/templates/test_jsinclude.tpl -%%WWWDIR%%/plugins/Widgetize/templates/test_jsinclude2.tpl -%%WWWDIR%%/plugins/Widgetize/templates/widgetize.js +%%WWWDIR%%/plugins/Widgetize/javascripts/widgetize.js +%%WWWDIR%%/plugins/Widgetize/stylesheets/widgetize.less +%%WWWDIR%%/plugins/Widgetize/templates/iframe.twig +%%WWWDIR%%/plugins/Widgetize/templates/iframe_empty.twig +%%WWWDIR%%/plugins/Widgetize/templates/index.twig +%%WWWDIR%%/plugins/Widgetize/templates/testJsInclude1.twig +%%WWWDIR%%/plugins/Widgetize/templates/testJsInclude2.twig +%%WWWDIR%%/plugins/Zeitgeist/images/affix-arrow.png +%%WWWDIR%%/plugins/Zeitgeist/images/arr_r.png +%%WWWDIR%%/plugins/Zeitgeist/images/background-submit.png +%%WWWDIR%%/plugins/Zeitgeist/images/chart_bar.png +%%WWWDIR%%/plugins/Zeitgeist/images/chart_line_edit.png +%%WWWDIR%%/plugins/Zeitgeist/images/chart_line_edit_bg.png +%%WWWDIR%%/plugins/Zeitgeist/images/chart_pie.png +%%WWWDIR%%/plugins/Zeitgeist/images/close.png +%%WWWDIR%%/plugins/Zeitgeist/images/collapsed_arrows.gif +%%WWWDIR%%/plugins/Zeitgeist/images/configure-highlight.png +%%WWWDIR%%/plugins/Zeitgeist/images/configure.png +%%WWWDIR%%/plugins/Zeitgeist/images/dashboard_h_bg.png +%%WWWDIR%%/plugins/Zeitgeist/images/dashboard_h_bg_hover.png +%%WWWDIR%%/plugins/Zeitgeist/images/data_table_footer_active_item.png +%%WWWDIR%%/plugins/Zeitgeist/images/datepicker_arr_l.png +%%WWWDIR%%/plugins/Zeitgeist/images/datepicker_arr_r.png +%%WWWDIR%%/plugins/Zeitgeist/images/delete.png +%%WWWDIR%%/plugins/Zeitgeist/images/download.png +%%WWWDIR%%/plugins/Zeitgeist/images/ecommerceAbandonedCart.gif +%%WWWDIR%%/plugins/Zeitgeist/images/ecommerceOrder.gif +%%WWWDIR%%/plugins/Zeitgeist/images/email.png +%%WWWDIR%%/plugins/Zeitgeist/images/error.png +%%WWWDIR%%/plugins/Zeitgeist/images/error_medium.png +%%WWWDIR%%/plugins/Zeitgeist/images/event.png +%%WWWDIR%%/plugins/Zeitgeist/images/expanded_arrows.gif +%%WWWDIR%%/plugins/Zeitgeist/images/export.png +%%WWWDIR%%/plugins/Zeitgeist/images/feed.png +%%WWWDIR%%/plugins/Zeitgeist/images/fullscreen.png +%%WWWDIR%%/plugins/Zeitgeist/images/goal.png +%%WWWDIR%%/plugins/Zeitgeist/images/grey_marker.png +%%WWWDIR%%/plugins/Zeitgeist/images/help.png +%%WWWDIR%%/plugins/Zeitgeist/images/help_grey.png +%%WWWDIR%%/plugins/Zeitgeist/images/html_icon.png +%%WWWDIR%%/plugins/Zeitgeist/images/ico_alert.png +%%WWWDIR%%/plugins/Zeitgeist/images/ico_delete.png +%%WWWDIR%%/plugins/Zeitgeist/images/ico_edit.png +%%WWWDIR%%/plugins/Zeitgeist/images/ico_info.png +%%WWWDIR%%/plugins/Zeitgeist/images/icon-calendar.gif +%%WWWDIR%%/plugins/Zeitgeist/images/image.png +%%WWWDIR%%/plugins/Zeitgeist/images/inp_bg.png +%%WWWDIR%%/plugins/Zeitgeist/images/li_dbl_gray.gif +%%WWWDIR%%/plugins/Zeitgeist/images/link.gif +%%WWWDIR%%/plugins/Zeitgeist/images/loading-blue.gif +%%WWWDIR%%/plugins/Zeitgeist/images/login-sprite.png +%%WWWDIR%%/plugins/Zeitgeist/images/logo-header.png +%%WWWDIR%%/plugins/Zeitgeist/images/logo-marketplace.png +%%WWWDIR%%/plugins/Zeitgeist/images/logo.png +%%WWWDIR%%/plugins/Zeitgeist/images/logo.svg +%%WWWDIR%%/plugins/Zeitgeist/images/maximise.png +%%WWWDIR%%/plugins/Zeitgeist/images/minimise.png +%%WWWDIR%%/plugins/Zeitgeist/images/minus.png +%%WWWDIR%%/plugins/Zeitgeist/images/newtab.png +%%WWWDIR%%/plugins/Zeitgeist/images/ok.png +%%WWWDIR%%/plugins/Zeitgeist/images/paypal_subscribe.gif +%%WWWDIR%%/plugins/Zeitgeist/images/plus.png +%%WWWDIR%%/plugins/Zeitgeist/images/plus_blue.png +%%WWWDIR%%/plugins/Zeitgeist/images/refresh.png +%%WWWDIR%%/plugins/Zeitgeist/images/reload.png +%%WWWDIR%%/plugins/Zeitgeist/images/row_evolution.png +%%WWWDIR%%/plugins/Zeitgeist/images/row_evolution_hover.png +%%WWWDIR%%/plugins/Zeitgeist/images/search_bg.png +%%WWWDIR%%/plugins/Zeitgeist/images/search_ico.png +%%WWWDIR%%/plugins/Zeitgeist/images/sites_selection.png +%%WWWDIR%%/plugins/Zeitgeist/images/smileyprog_0.png +%%WWWDIR%%/plugins/Zeitgeist/images/smileyprog_1.png +%%WWWDIR%%/plugins/Zeitgeist/images/smileyprog_2.png +%%WWWDIR%%/plugins/Zeitgeist/images/smileyprog_3.png +%%WWWDIR%%/plugins/Zeitgeist/images/smileyprog_4.png +%%WWWDIR%%/plugins/Zeitgeist/images/sort_subtable_asc.png +%%WWWDIR%%/plugins/Zeitgeist/images/sort_subtable_asc_light.png +%%WWWDIR%%/plugins/Zeitgeist/images/sort_subtable_desc.png +%%WWWDIR%%/plugins/Zeitgeist/images/sort_subtable_desc_light.png +%%WWWDIR%%/plugins/Zeitgeist/images/sortasc.png +%%WWWDIR%%/plugins/Zeitgeist/images/sortdesc.png +%%WWWDIR%%/plugins/Zeitgeist/images/star.png +%%WWWDIR%%/plugins/Zeitgeist/images/star_empty.png +%%WWWDIR%%/plugins/Zeitgeist/images/success_medium.png +%%WWWDIR%%/plugins/Zeitgeist/images/table.png +%%WWWDIR%%/plugins/Zeitgeist/images/table_more.png +%%WWWDIR%%/plugins/Zeitgeist/images/tagcloud.png +%%WWWDIR%%/plugins/Zeitgeist/images/video_play.png +%%WWWDIR%%/plugins/Zeitgeist/images/warning.png +%%WWWDIR%%/plugins/Zeitgeist/images/warning_medium.png +%%WWWDIR%%/plugins/Zeitgeist/images/warning_small.png +%%WWWDIR%%/plugins/Zeitgeist/images/yellow_marker.png +%%WWWDIR%%/plugins/Zeitgeist/images/zoom-out.png +%%WWWDIR%%/plugins/Zeitgeist/javascripts/ajaxHelper.js +%%WWWDIR%%/plugins/Zeitgeist/javascripts/piwikHelper.js +%%WWWDIR%%/plugins/Zeitgeist/plugin.json +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/base.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/general/_default.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/general/_form.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/general/_jqueryUI.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/general/_misc.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/general/_utils.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/ieonly.css +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/rtl.css +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/simple_structure.css +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/ui/_dataTable.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/ui/_header.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/ui/_headerMessage.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/ui/_languageSelect.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/ui/_loading.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/ui/_periodSelect.less +%%WWWDIR%%/plugins/Zeitgeist/stylesheets/ui/_siteSelect.less +%%WWWDIR%%/plugins/Zeitgeist/templates/_iframeBuster.twig +%%WWWDIR%%/plugins/Zeitgeist/templates/_jsCssIncludes.twig +%%WWWDIR%%/plugins/Zeitgeist/templates/_jsGlobalVariables.twig +%%WWWDIR%%/plugins/Zeitgeist/templates/_piwikTag.twig +%%WWWDIR%%/plugins/Zeitgeist/templates/_sparklineFooter.twig +%%WWWDIR%%/plugins/Zeitgeist/templates/admin.twig +%%WWWDIR%%/plugins/Zeitgeist/templates/ajaxMacros.twig +%%WWWDIR%%/plugins/Zeitgeist/templates/dashboard.twig +%%WWWDIR%%/plugins/Zeitgeist/templates/genericForm.twig +%%WWWDIR%%/plugins/Zeitgeist/templates/javascriptCode.tpl +%%WWWDIR%%/plugins/Zeitgeist/templates/macros.twig +%%WWWDIR%%/plugins/Zeitgeist/templates/simpleLayoutFooter.tpl +%%WWWDIR%%/plugins/Zeitgeist/templates/simpleLayoutHeader.tpl %%WWWDIR%%/tests/README.md -%%WWWDIR%%/themes/default/ajaxHelper.js -%%WWWDIR%%/themes/default/common.css -%%WWWDIR%%/themes/default/common.js -%%WWWDIR%%/themes/default/genericForm.tpl -%%WWWDIR%%/themes/default/ieonly.css -%%WWWDIR%%/themes/default/images/affix-arrow.png -%%WWWDIR%%/themes/default/images/arr_r.png -%%WWWDIR%%/themes/default/images/background-submit.png -%%WWWDIR%%/themes/default/images/chart_bar.png -%%WWWDIR%%/themes/default/images/chart_line_edit.png -%%WWWDIR%%/themes/default/images/chart_line_edit_bg.png -%%WWWDIR%%/themes/default/images/chart_pie.png -%%WWWDIR%%/themes/default/images/close.png -%%WWWDIR%%/themes/default/images/collapsed_arrows.gif -%%WWWDIR%%/themes/default/images/configure-highlight.png -%%WWWDIR%%/themes/default/images/configure.png -%%WWWDIR%%/themes/default/images/dashboard_h_bg.png -%%WWWDIR%%/themes/default/images/dashboard_h_bg_hover.png -%%WWWDIR%%/themes/default/images/data_table_footer_active_item.png -%%WWWDIR%%/themes/default/images/datepicker_arr_l.png -%%WWWDIR%%/themes/default/images/datepicker_arr_r.png -%%WWWDIR%%/themes/default/images/delete.png -%%WWWDIR%%/themes/default/images/download.png -%%WWWDIR%%/themes/default/images/ecommerceAbandonedCart.gif -%%WWWDIR%%/themes/default/images/ecommerceOrder.gif -%%WWWDIR%%/themes/default/images/email.png -%%WWWDIR%%/themes/default/images/error.png -%%WWWDIR%%/themes/default/images/error_medium.png -%%WWWDIR%%/themes/default/images/expanded_arrows.gif -%%WWWDIR%%/themes/default/images/export.png -%%WWWDIR%%/themes/default/images/feed.png -%%WWWDIR%%/themes/default/images/fullscreen.png -%%WWWDIR%%/themes/default/images/goal.png -%%WWWDIR%%/themes/default/images/grey_marker.png -%%WWWDIR%%/themes/default/images/help.png -%%WWWDIR%%/themes/default/images/help_grey.png -%%WWWDIR%%/themes/default/images/html_icon.png -%%WWWDIR%%/themes/default/images/ico_alert.png -%%WWWDIR%%/themes/default/images/ico_delete.png -%%WWWDIR%%/themes/default/images/ico_edit.png -%%WWWDIR%%/themes/default/images/ico_info.png -%%WWWDIR%%/themes/default/images/icon-calendar.gif -%%WWWDIR%%/themes/default/images/image.png -%%WWWDIR%%/themes/default/images/inp_bg.png -%%WWWDIR%%/themes/default/images/li_dbl_gray.gif -%%WWWDIR%%/themes/default/images/link.gif -%%WWWDIR%%/themes/default/images/loading-blue.gif -%%WWWDIR%%/themes/default/images/login-sprite.png -%%WWWDIR%%/themes/default/images/logo-header.png -%%WWWDIR%%/themes/default/images/logo.png -%%WWWDIR%%/themes/default/images/logo.svg -%%WWWDIR%%/themes/default/images/maximise.png -%%WWWDIR%%/themes/default/images/minimise.png -%%WWWDIR%%/themes/default/images/minus.png -%%WWWDIR%%/themes/default/images/newtab.png -%%WWWDIR%%/themes/default/images/ok.png -%%WWWDIR%%/themes/default/images/page_border_grad.png -%%WWWDIR%%/themes/default/images/paypal_subscribe.gif -%%WWWDIR%%/themes/default/images/plus.png -%%WWWDIR%%/themes/default/images/plus_blue.png -%%WWWDIR%%/themes/default/images/refresh.png -%%WWWDIR%%/themes/default/images/reload.png -%%WWWDIR%%/themes/default/images/row_evolution.png -%%WWWDIR%%/themes/default/images/row_evolution_hover.png -%%WWWDIR%%/themes/default/images/search_bg.png -%%WWWDIR%%/themes/default/images/search_ico.png -%%WWWDIR%%/themes/default/images/sites_selection.png -%%WWWDIR%%/themes/default/images/smileyprog_0.png -%%WWWDIR%%/themes/default/images/smileyprog_1.png -%%WWWDIR%%/themes/default/images/smileyprog_2.png -%%WWWDIR%%/themes/default/images/smileyprog_3.png -%%WWWDIR%%/themes/default/images/smileyprog_4.png -%%WWWDIR%%/themes/default/images/sort_subtable_asc.png -%%WWWDIR%%/themes/default/images/sort_subtable_asc_light.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/star.png -%%WWWDIR%%/themes/default/images/star_empty.png -%%WWWDIR%%/themes/default/images/success_medium.png -%%WWWDIR%%/themes/default/images/table.png -%%WWWDIR%%/themes/default/images/table_more.png -%%WWWDIR%%/themes/default/images/tagcloud.png -%%WWWDIR%%/themes/default/images/video_play.png -%%WWWDIR%%/themes/default/images/warning.png -%%WWWDIR%%/themes/default/images/warning_medium.png -%%WWWDIR%%/themes/default/images/warning_small.png -%%WWWDIR%%/themes/default/images/yellow_marker.png -%%WWWDIR%%/themes/default/rtl.css -%%WWWDIR%%/themes/default/simple_structure.css -%%WWWDIR%%/themes/default/simple_structure_footer.tpl -%%WWWDIR%%/themes/default/simple_structure_header.tpl -%%WWWDIR%%/themes/default/styles.css +%%WWWDIR%%/vendor/autoload.php +%%WWWDIR%%/vendor/composer/ClassLoader.php +%%WWWDIR%%/vendor/composer/autoload_classmap.php +%%WWWDIR%%/vendor/composer/autoload_namespaces.php +%%WWWDIR%%/vendor/composer/autoload_real.php +%%WWWDIR%%/vendor/composer/installed.json +%%WWWDIR%%/vendor/leafo/lessphp/.gitignore +%%WWWDIR%%/vendor/leafo/lessphp/.travis.yml +%%WWWDIR%%/vendor/leafo/lessphp/LICENSE +%%WWWDIR%%/vendor/leafo/lessphp/Makefile +%%WWWDIR%%/vendor/leafo/lessphp/README.md +%%WWWDIR%%/vendor/leafo/lessphp/composer.json +%%WWWDIR%%/vendor/leafo/lessphp/docs/docs.md +%%WWWDIR%%/vendor/leafo/lessphp/lessc.inc.php +%%WWWDIR%%/vendor/leafo/lessphp/lessify +%%WWWDIR%%/vendor/leafo/lessphp/lessify.inc.php +%%WWWDIR%%/vendor/leafo/lessphp/package.sh +%%WWWDIR%%/vendor/leafo/lessphp/plessc +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/.gitignore +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Application.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/CHANGELOG.md +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Command/Command.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Command/HelpCommand.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Command/ListCommand.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/ConsoleEvents.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Descriptor/ApplicationDescription.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Descriptor/Descriptor.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Descriptor/DescriptorInterface.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Descriptor/JsonDescriptor.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Descriptor/MarkdownDescriptor.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Descriptor/TextDescriptor.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Descriptor/XmlDescriptor.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Event/ConsoleCommandEvent.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Event/ConsoleEvent.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Event/ConsoleExceptionEvent.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Event/ConsoleTerminateEvent.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Formatter/OutputFormatter.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Formatter/OutputFormatterInterface.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Formatter/OutputFormatterStyle.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Formatter/OutputFormatterStyleInterface.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Formatter/OutputFormatterStyleStack.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Helper/DescriptorHelper.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Helper/DialogHelper.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Helper/FormatterHelper.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Helper/Helper.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Helper/HelperInterface.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Helper/HelperSet.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Helper/InputAwareHelper.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Helper/ProgressHelper.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Helper/TableHelper.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Input/ArgvInput.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Input/ArrayInput.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Input/Input.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Input/InputArgument.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Input/InputAwareInterface.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Input/InputDefinition.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Input/InputInterface.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Input/InputOption.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Input/StringInput.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/LICENSE +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Output/BufferedOutput.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Output/ConsoleOutput.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Output/ConsoleOutputInterface.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Output/NullOutput.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Output/Output.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Output/OutputInterface.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Output/StreamOutput.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/README.md +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Shell.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Tester/ApplicationTester.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Tester/CommandTester.php +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/composer.json +%%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/phpunit.xml.dist +%%WWWDIR%%/vendor/tedivm/jshrink/.gitignore +%%WWWDIR%%/vendor/tedivm/jshrink/.travis.yml +%%WWWDIR%%/vendor/tedivm/jshrink/LICENSE +%%WWWDIR%%/vendor/tedivm/jshrink/README.md +%%WWWDIR%%/vendor/tedivm/jshrink/composer.json +%%WWWDIR%%/vendor/tedivm/jshrink/src/JShrink/Minifier.php +%%WWWDIR%%/vendor/twig/twig/.editorconfig +%%WWWDIR%%/vendor/twig/twig/.gitignore +%%WWWDIR%%/vendor/twig/twig/.travis.yml +%%WWWDIR%%/vendor/twig/twig/AUTHORS +%%WWWDIR%%/vendor/twig/twig/CHANGELOG +%%WWWDIR%%/vendor/twig/twig/LICENSE +%%WWWDIR%%/vendor/twig/twig/README.rst +%%WWWDIR%%/vendor/twig/twig/composer.json +%%WWWDIR%%/vendor/twig/twig/ext/twig/.gitignore +%%WWWDIR%%/vendor/twig/twig/ext/twig/LICENSE +%%WWWDIR%%/vendor/twig/twig/ext/twig/config.m4 +%%WWWDIR%%/vendor/twig/twig/ext/twig/config.w32 +%%WWWDIR%%/vendor/twig/twig/ext/twig/php_twig.h +%%WWWDIR%%/vendor/twig/twig/ext/twig/twig.c +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Autoloader.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Compiler.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/CompilerInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Environment.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Error.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Error/Loader.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Error/Runtime.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Error/Syntax.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/ExistsLoaderInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/ExpressionParser.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Core.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Debug.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Escaper.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Optimizer.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Sandbox.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/Staging.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension/StringLoader.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/ExtensionInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Filter.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Filter/Function.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Filter/Method.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Filter/Node.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/FilterCallableInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/FilterInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Function.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Function/Function.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Function/Method.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Function/Node.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/FunctionCallableInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/FunctionInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Lexer.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/LexerInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Loader/Array.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Loader/Chain.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Loader/Filesystem.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Loader/String.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/LoaderInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Markup.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/AutoEscape.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Block.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/BlockReference.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Body.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Do.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Embed.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Array.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/AssignName.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Add.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/And.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseAnd.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseOr.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/BitwiseXor.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Concat.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Div.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/EndsWith.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Equal.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/FloorDiv.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Greater.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/GreaterEqual.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/In.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Less.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/LessEqual.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Matches.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Mod.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Mul.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/NotEqual.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/NotIn.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Or.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Power.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Range.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/StartsWith.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary/Sub.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/BlockReference.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Call.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Conditional.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Constant.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/ExtensionReference.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Filter.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Filter/Default.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Function.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/GetAttr.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/MethodCall.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Name.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Parent.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/TempName.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Test.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Test/Constant.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Test/Defined.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Test/Divisibleby.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Test/Even.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Test/Null.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Test/Odd.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Test/Sameas.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Unary.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Neg.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Not.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Unary/Pos.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Flush.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/For.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/ForLoop.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/If.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Import.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Include.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Macro.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Module.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Print.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Sandbox.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/SandboxedModule.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/SandboxedPrint.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Set.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/SetTemp.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Spaceless.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Text.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/NodeInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/NodeOutputInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/NodeTraverser.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/NodeVisitor/Escaper.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/NodeVisitor/Optimizer.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/NodeVisitor/SafeAnalysis.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/NodeVisitor/Sandbox.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/NodeVisitorInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Parser.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/ParserInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Sandbox/SecurityError.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Sandbox/SecurityPolicy.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Sandbox/SecurityPolicyInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/SimpleFilter.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/SimpleFunction.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/SimpleTest.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Template.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TemplateInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Test.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Test/Function.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Test/IntegrationTestCase.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Test/Method.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Test/Node.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Test/NodeTestCase.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TestCallableInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TestInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/Token.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/AutoEscape.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Block.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Do.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Embed.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Extends.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Filter.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Flush.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/For.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/From.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/If.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Import.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Include.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Macro.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Sandbox.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Set.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Spaceless.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser/Use.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParserBroker.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParserBrokerInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParserInterface.php +%%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenStream.php +%%WWWDIR%%/vendor/twig/twig/phpunit.xml.dist +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/TokenParser +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Test +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Sandbox +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/NodeVisitor +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Unary +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Test +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Filter +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression/Binary +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node/Expression +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Node +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Loader +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Function +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Filter +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Extension +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig/Error +@dirrm %%WWWDIR%%/vendor/twig/twig/lib/Twig +@dirrm %%WWWDIR%%/vendor/twig/twig/lib +@dirrm %%WWWDIR%%/vendor/twig/twig/ext/twig +@dirrm %%WWWDIR%%/vendor/twig/twig/ext +@dirrm %%WWWDIR%%/vendor/twig/twig +@dirrm %%WWWDIR%%/vendor/twig +@dirrm %%WWWDIR%%/vendor/tedivm/jshrink/src/JShrink +@dirrm %%WWWDIR%%/vendor/tedivm/jshrink/src +@dirrm %%WWWDIR%%/vendor/tedivm/jshrink +@dirrm %%WWWDIR%%/vendor/tedivm +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Tester +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Resources +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Output +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Input +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Helper +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Formatter +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Event +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Descriptor +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console/Command +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony/Component/Console +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony/Component +@dirrm %%WWWDIR%%/vendor/symfony/console/Symfony +@dirrm %%WWWDIR%%/vendor/symfony/console +@dirrm %%WWWDIR%%/vendor/symfony +@dirrm %%WWWDIR%%/vendor/leafo/lessphp/docs +@dirrm %%WWWDIR%%/vendor/leafo/lessphp +@dirrm %%WWWDIR%%/vendor/leafo +@dirrm %%WWWDIR%%/vendor/composer +@dirrm %%WWWDIR%%/vendor @dirrm %%WWWDIR%%/tmp -@dirrm %%WWWDIR%%/themes/default/images -@dirrm %%WWWDIR%%/themes/default -@dirrm %%WWWDIR%%/themes @dirrm %%WWWDIR%%/tests +@dirrm %%WWWDIR%%/plugins/Zeitgeist/templates +@dirrm %%WWWDIR%%/plugins/Zeitgeist/stylesheets/ui +@dirrm %%WWWDIR%%/plugins/Zeitgeist/stylesheets/general +@dirrm %%WWWDIR%%/plugins/Zeitgeist/stylesheets +@dirrm %%WWWDIR%%/plugins/Zeitgeist/javascripts +@dirrm %%WWWDIR%%/plugins/Zeitgeist/images +@dirrm %%WWWDIR%%/plugins/Zeitgeist @dirrm %%WWWDIR%%/plugins/Widgetize/templates +@dirrm %%WWWDIR%%/plugins/Widgetize/stylesheets +@dirrm %%WWWDIR%%/plugins/Widgetize/javascripts @dirrm %%WWWDIR%%/plugins/Widgetize @dirrm %%WWWDIR%%/plugins/VisitsSummary/templates @dirrm %%WWWDIR%%/plugins/VisitsSummary @dirrm %%WWWDIR%%/plugins/VisitorInterest/templates @dirrm %%WWWDIR%%/plugins/VisitorInterest -@dirrm %%WWWDIR%%/plugins/VisitorGenerator/templates -@dirrm %%WWWDIR%%/plugins/VisitorGenerator/data -@dirrm %%WWWDIR%%/plugins/VisitorGenerator @dirrm %%WWWDIR%%/plugins/VisitTime/templates @dirrm %%WWWDIR%%/plugins/VisitTime @dirrm %%WWWDIR%%/plugins/VisitFrequency/templates @dirrm %%WWWDIR%%/plugins/VisitFrequency @dirrm %%WWWDIR%%/plugins/UsersManager/templates +@dirrm %%WWWDIR%%/plugins/UsersManager/stylesheets +@dirrm %%WWWDIR%%/plugins/UsersManager/javascripts @dirrm %%WWWDIR%%/plugins/UsersManager/images @dirrm %%WWWDIR%%/plugins/UsersManager @dirrm %%WWWDIR%%/plugins/UserSettings/templates @@ -2630,90 +2969,126 @@ @dirrm %%WWWDIR%%/plugins/UserSettings @dirrm %%WWWDIR%%/plugins/UserCountryMap/templates @dirrm %%WWWDIR%%/plugins/UserCountryMap/svg -@dirrm %%WWWDIR%%/plugins/UserCountryMap/js/vendor -@dirrm %%WWWDIR%%/plugins/UserCountryMap/js -@dirrm %%WWWDIR%%/plugins/UserCountryMap/img -@dirrm %%WWWDIR%%/plugins/UserCountryMap/css +@dirrm %%WWWDIR%%/plugins/UserCountryMap/stylesheets +@dirrm %%WWWDIR%%/plugins/UserCountryMap/javascripts/vendor +@dirrm %%WWWDIR%%/plugins/UserCountryMap/javascripts +@dirrm %%WWWDIR%%/plugins/UserCountryMap/images @dirrm %%WWWDIR%%/plugins/UserCountryMap @dirrm %%WWWDIR%%/plugins/UserCountry/templates -@dirrm %%WWWDIR%%/plugins/UserCountry/flags +@dirrm %%WWWDIR%%/plugins/UserCountry/stylesheets +@dirrm %%WWWDIR%%/plugins/UserCountry/javascripts +@dirrm %%WWWDIR%%/plugins/UserCountry/images/flags +@dirrm %%WWWDIR%%/plugins/UserCountry/images @dirrm %%WWWDIR%%/plugins/UserCountry/LocationProvider/GeoIp @dirrm %%WWWDIR%%/plugins/UserCountry/LocationProvider @dirrm %%WWWDIR%%/plugins/UserCountry @dirrm %%WWWDIR%%/plugins/Transitions/templates +@dirrm %%WWWDIR%%/plugins/Transitions/stylesheets +@dirrm %%WWWDIR%%/plugins/Transitions/javascripts +@dirrm %%WWWDIR%%/plugins/Transitions/images @dirrm %%WWWDIR%%/plugins/Transitions @dirrm %%WWWDIR%%/plugins/SitesManager/templates +@dirrm %%WWWDIR%%/plugins/SitesManager/stylesheets +@dirrm %%WWWDIR%%/plugins/SitesManager/javascripts @dirrm %%WWWDIR%%/plugins/SitesManager @dirrm %%WWWDIR%%/plugins/SegmentEditor/templates +@dirrm %%WWWDIR%%/plugins/SegmentEditor/stylesheets +@dirrm %%WWWDIR%%/plugins/SegmentEditor/javascripts @dirrm %%WWWDIR%%/plugins/SegmentEditor/images @dirrm %%WWWDIR%%/plugins/SegmentEditor -@dirrm %%WWWDIR%%/plugins/SecurityInfo/templates -@dirrm %%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Suhosin -@dirrm %%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Session -@dirrm %%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Curl -@dirrm %%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Core -@dirrm %%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/CGI -@dirrm %%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test/Application -@dirrm %%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo/Test -@dirrm %%WWWDIR%%/plugins/SecurityInfo/PhpSecInfo -@dirrm %%WWWDIR%%/plugins/SecurityInfo +@dirrm %%WWWDIR%%/plugins/ScheduledReports/templates +@dirrm %%WWWDIR%%/plugins/ScheduledReports/javascripts +@dirrm %%WWWDIR%%/plugins/ScheduledReports/config +@dirrm %%WWWDIR%%/plugins/ScheduledReports @dirrm %%WWWDIR%%/plugins/SEO/templates +@dirrm %%WWWDIR%%/plugins/SEO/javascripts @dirrm %%WWWDIR%%/plugins/SEO/images @dirrm %%WWWDIR%%/plugins/SEO -@dirrm %%WWWDIR%%/plugins/Referers/templates -@dirrm %%WWWDIR%%/plugins/Referers/images/socials -@dirrm %%WWWDIR%%/plugins/Referers/images/searchEngines -@dirrm %%WWWDIR%%/plugins/Referers/images -@dirrm %%WWWDIR%%/plugins/Referers -@dirrm %%WWWDIR%%/plugins/Proxy/templates +@dirrm %%WWWDIR%%/plugins/Referrers/templates +@dirrm %%WWWDIR%%/plugins/Referrers/images/socials +@dirrm %%WWWDIR%%/plugins/Referrers/images/searchEngines +@dirrm %%WWWDIR%%/plugins/Referrers/images +@dirrm %%WWWDIR%%/plugins/Referrers @dirrm %%WWWDIR%%/plugins/Proxy @dirrm %%WWWDIR%%/plugins/Provider @dirrm %%WWWDIR%%/plugins/PrivacyManager/templates +@dirrm %%WWWDIR%%/plugins/PrivacyManager/javascripts @dirrm %%WWWDIR%%/plugins/PrivacyManager -@dirrm %%WWWDIR%%/plugins/PDFReports/templates -@dirrm %%WWWDIR%%/plugins/PDFReports/config -@dirrm %%WWWDIR%%/plugins/PDFReports @dirrm %%WWWDIR%%/plugins/Overlay/templates +@dirrm %%WWWDIR%%/plugins/Overlay/stylesheets +@dirrm %%WWWDIR%%/plugins/Overlay/javascripts +@dirrm %%WWWDIR%%/plugins/Overlay/images @dirrm %%WWWDIR%%/plugins/Overlay/client @dirrm %%WWWDIR%%/plugins/Overlay @dirrm %%WWWDIR%%/plugins/MultiSites/templates +@dirrm %%WWWDIR%%/plugins/MultiSites/stylesheets +@dirrm %%WWWDIR%%/plugins/MultiSites/javascripts @dirrm %%WWWDIR%%/plugins/MultiSites/images @dirrm %%WWWDIR%%/plugins/MultiSites +@dirrm %%WWWDIR%%/plugins/Morpheus/stylesheets +@dirrm %%WWWDIR%%/plugins/Morpheus/javascripts +@dirrm %%WWWDIR%%/plugins/Morpheus/images +@dirrm %%WWWDIR%%/plugins/Morpheus @dirrm %%WWWDIR%%/plugins/MobileMessaging/templates -@dirrm %%WWWDIR%%/plugins/MobileMessaging/scripts +@dirrm %%WWWDIR%%/plugins/MobileMessaging/stylesheets +@dirrm %%WWWDIR%%/plugins/MobileMessaging/javascripts @dirrm %%WWWDIR%%/plugins/MobileMessaging/images @dirrm %%WWWDIR%%/plugins/MobileMessaging/SMSProvider @dirrm %%WWWDIR%%/plugins/MobileMessaging/ReportRenderer @dirrm %%WWWDIR%%/plugins/MobileMessaging @dirrm %%WWWDIR%%/plugins/Login/templates +@dirrm %%WWWDIR%%/plugins/Login/stylesheets +@dirrm %%WWWDIR%%/plugins/Login/javascripts @dirrm %%WWWDIR%%/plugins/Login -@dirrm %%WWWDIR%%/plugins/Live/templates/scripts -@dirrm %%WWWDIR%%/plugins/Live/templates/images @dirrm %%WWWDIR%%/plugins/Live/templates +@dirrm %%WWWDIR%%/plugins/Live/stylesheets +@dirrm %%WWWDIR%%/plugins/Live/javascripts +@dirrm %%WWWDIR%%/plugins/Live/images @dirrm %%WWWDIR%%/plugins/Live +@dirrm %%WWWDIR%%/plugins/LeftMenu/stylesheets +@dirrm %%WWWDIR%%/plugins/LeftMenu @dirrm %%WWWDIR%%/plugins/LanguagesManager/templates +@dirrm %%WWWDIR%%/plugins/LanguagesManager/javascripts +@dirrm %%WWWDIR%%/plugins/LanguagesManager/Commands @dirrm %%WWWDIR%%/plugins/LanguagesManager @dirrm %%WWWDIR%%/plugins/Installation/templates +@dirrm %%WWWDIR%%/plugins/Installation/stylesheets +@dirrm %%WWWDIR%%/plugins/Installation/javascripts @dirrm %%WWWDIR%%/plugins/Installation @dirrm %%WWWDIR%%/plugins/ImageGraph/templates @dirrm %%WWWDIR%%/plugins/ImageGraph/fonts @dirrm %%WWWDIR%%/plugins/ImageGraph/StaticGraph @dirrm %%WWWDIR%%/plugins/ImageGraph @dirrm %%WWWDIR%%/plugins/Goals/templates +@dirrm %%WWWDIR%%/plugins/Goals/stylesheets +@dirrm %%WWWDIR%%/plugins/Goals/javascripts +@dirrm %%WWWDIR%%/plugins/Goals/Visualizations @dirrm %%WWWDIR%%/plugins/Goals @dirrm %%WWWDIR%%/plugins/Feedback/templates +@dirrm %%WWWDIR%%/plugins/Feedback/stylesheets +@dirrm %%WWWDIR%%/plugins/Feedback/javascripts @dirrm %%WWWDIR%%/plugins/Feedback/images @dirrm %%WWWDIR%%/plugins/Feedback +@dirrm %%WWWDIR%%/plugins/ExampleVisualization/templates +@dirrm %%WWWDIR%%/plugins/ExampleVisualization/images +@dirrm %%WWWDIR%%/plugins/ExampleVisualization +@dirrm %%WWWDIR%%/plugins/ExampleUI/templates @dirrm %%WWWDIR%%/plugins/ExampleUI/images/icons-planet @dirrm %%WWWDIR%%/plugins/ExampleUI/images @dirrm %%WWWDIR%%/plugins/ExampleUI -@dirrm %%WWWDIR%%/plugins/ExampleRssWidget/templates +@dirrm %%WWWDIR%%/plugins/ExampleTheme/stylesheets +@dirrm %%WWWDIR%%/plugins/ExampleTheme +@dirrm %%WWWDIR%%/plugins/ExampleSettingsPlugin +@dirrm %%WWWDIR%%/plugins/ExampleRssWidget/stylesheets @dirrm %%WWWDIR%%/plugins/ExampleRssWidget @dirrm %%WWWDIR%%/plugins/ExamplePlugin/templates -@dirrm %%WWWDIR%%/plugins/ExamplePlugin/lang -@dirrm %%WWWDIR%%/plugins/ExamplePlugin/config +@dirrm %%WWWDIR%%/plugins/ExamplePlugin/screenshots +@dirrm %%WWWDIR%%/plugins/ExamplePlugin/javascripts @dirrm %%WWWDIR%%/plugins/ExamplePlugin +@dirrm %%WWWDIR%%/plugins/ExampleCommand/Commands +@dirrm %%WWWDIR%%/plugins/ExampleCommand @dirrm %%WWWDIR%%/plugins/ExampleAPI +@dirrm %%WWWDIR%%/plugins/Events @dirrm %%WWWDIR%%/plugins/DoNotTrack @dirrm %%WWWDIR%%/plugins/DevicesDetection/templates @dirrm %%WWWDIR%%/plugins/DevicesDetection/lang @@ -2722,31 +3097,66 @@ @dirrm %%WWWDIR%%/plugins/DevicesDetection/images @dirrm %%WWWDIR%%/plugins/DevicesDetection/UserAgentParserEnhanced/regexes @dirrm %%WWWDIR%%/plugins/DevicesDetection/UserAgentParserEnhanced +@dirrm %%WWWDIR%%/plugins/DevicesDetection/Updates @dirrm %%WWWDIR%%/plugins/DevicesDetection @dirrm %%WWWDIR%%/plugins/Dashboard/templates +@dirrm %%WWWDIR%%/plugins/Dashboard/stylesheets +@dirrm %%WWWDIR%%/plugins/Dashboard/javascripts @dirrm %%WWWDIR%%/plugins/Dashboard @dirrm %%WWWDIR%%/plugins/DBStats/templates +@dirrm %%WWWDIR%%/plugins/DBStats/stylesheets +@dirrm %%WWWDIR%%/plugins/DBStats/lang @dirrm %%WWWDIR%%/plugins/DBStats @dirrm %%WWWDIR%%/plugins/CustomVariables +@dirrm %%WWWDIR%%/plugins/CoreVisualizations/templates +@dirrm %%WWWDIR%%/plugins/CoreVisualizations/stylesheets +@dirrm %%WWWDIR%%/plugins/CoreVisualizations/javascripts +@dirrm %%WWWDIR%%/plugins/CoreVisualizations/Visualizations/JqplotGraph/Evolution +@dirrm %%WWWDIR%%/plugins/CoreVisualizations/Visualizations/JqplotGraph +@dirrm %%WWWDIR%%/plugins/CoreVisualizations/Visualizations/HtmlTable +@dirrm %%WWWDIR%%/plugins/CoreVisualizations/Visualizations/Graph +@dirrm %%WWWDIR%%/plugins/CoreVisualizations/Visualizations/Cloud +@dirrm %%WWWDIR%%/plugins/CoreVisualizations/Visualizations +@dirrm %%WWWDIR%%/plugins/CoreVisualizations/JqplotDataGenerator +@dirrm %%WWWDIR%%/plugins/CoreVisualizations @dirrm %%WWWDIR%%/plugins/CoreUpdater/templates +@dirrm %%WWWDIR%%/plugins/CoreUpdater/stylesheets +@dirrm %%WWWDIR%%/plugins/CoreUpdater/javascripts @dirrm %%WWWDIR%%/plugins/CoreUpdater @dirrm %%WWWDIR%%/plugins/CorePluginsAdmin/templates +@dirrm %%WWWDIR%%/plugins/CorePluginsAdmin/stylesheets +@dirrm %%WWWDIR%%/plugins/CorePluginsAdmin/javascripts +@dirrm %%WWWDIR%%/plugins/CorePluginsAdmin/images @dirrm %%WWWDIR%%/plugins/CorePluginsAdmin -@dirrm %%WWWDIR%%/plugins/CoreHome/templates/images +@dirrm %%WWWDIR%%/plugins/CoreHome/templates/ReportsByDimension +@dirrm %%WWWDIR%%/plugins/CoreHome/templates/ReportRenderer @dirrm %%WWWDIR%%/plugins/CoreHome/templates +@dirrm %%WWWDIR%%/plugins/CoreHome/stylesheets/dataTable +@dirrm %%WWWDIR%%/plugins/CoreHome/stylesheets +@dirrm %%WWWDIR%%/plugins/CoreHome/javascripts +@dirrm %%WWWDIR%%/plugins/CoreHome/images @dirrm %%WWWDIR%%/plugins/CoreHome/DataTableRowAction @dirrm %%WWWDIR%%/plugins/CoreHome +@dirrm %%WWWDIR%%/plugins/CoreConsole/Commands +@dirrm %%WWWDIR%%/plugins/CoreConsole @dirrm %%WWWDIR%%/plugins/CoreAdminHome/templates +@dirrm %%WWWDIR%%/plugins/CoreAdminHome/stylesheets +@dirrm %%WWWDIR%%/plugins/CoreAdminHome/javascripts @dirrm %%WWWDIR%%/plugins/CoreAdminHome @dirrm %%WWWDIR%%/plugins/AnonymizeIP @dirrm %%WWWDIR%%/plugins/Annotations/templates +@dirrm %%WWWDIR%%/plugins/Annotations/stylesheets +@dirrm %%WWWDIR%%/plugins/Annotations/javascripts @dirrm %%WWWDIR%%/plugins/Annotations @dirrm %%WWWDIR%%/plugins/Actions/templates +@dirrm %%WWWDIR%%/plugins/Actions/stylesheets +@dirrm %%WWWDIR%%/plugins/Actions/javascripts @dirrm %%WWWDIR%%/plugins/Actions @dirrm %%WWWDIR%%/plugins/API/templates -@dirrm %%WWWDIR%%/plugins/API/css +@dirrm %%WWWDIR%%/plugins/API/stylesheets @dirrm %%WWWDIR%%/plugins/API @dirrm %%WWWDIR%%/plugins +@dirrm %%WWWDIR%%/misc/user @dirrm %%WWWDIR%%/misc/proxy-hide-piwik-url @dirrm %%WWWDIR%%/misc/others/phpstorm-codestyles @dirrm %%WWWDIR%%/misc/others @@ -2754,6 +3164,7 @@ @dirrm %%WWWDIR%%/misc/cron @dirrm %%WWWDIR%%/misc @dirrm %%WWWDIR%%/libs/upgradephp +@dirrm %%WWWDIR%%/libs/tcpdf/include @dirrm %%WWWDIR%%/libs/tcpdf/fonts @dirrm %%WWWDIR%%/libs/tcpdf/config/lang @dirrm %%WWWDIR%%/libs/tcpdf/config @@ -2762,23 +3173,19 @@ @dirrm %%WWWDIR%%/libs/sparkline @dirrm %%WWWDIR%%/libs/pChart2.1.3/class @dirrm %%WWWDIR%%/libs/pChart2.1.3 -@dirrm %%WWWDIR%%/libs/jsmin @dirrm %%WWWDIR%%/libs/jquery/themes/base/images @dirrm %%WWWDIR%%/libs/jquery/themes/base @dirrm %%WWWDIR%%/libs/jquery/themes +@dirrm %%WWWDIR%%/libs/jquery/stylesheets +@dirrm %%WWWDIR%%/libs/jquery/images @dirrm %%WWWDIR%%/libs/jquery @dirrm %%WWWDIR%%/libs/jqplot/plugins @dirrm %%WWWDIR%%/libs/jqplot @dirrm %%WWWDIR%%/libs/javascript @dirrm %%WWWDIR%%/libs/html5shiv -@dirrm %%WWWDIR%%/libs/cssmin -@dirrm %%WWWDIR%%/libs/Zend/Validate/Sitemap @dirrm %%WWWDIR%%/libs/Zend/Validate/Hostname @dirrm %%WWWDIR%%/libs/Zend/Validate/File -@dirrm %%WWWDIR%%/libs/Zend/Validate/Db -@dirrm %%WWWDIR%%/libs/Zend/Validate/Barcode @dirrm %%WWWDIR%%/libs/Zend/Validate -@dirrm %%WWWDIR%%/libs/Zend/Uri @dirrm %%WWWDIR%%/libs/Zend/Session/Validator @dirrm %%WWWDIR%%/libs/Zend/Session/SaveHandler @dirrm %%WWWDIR%%/libs/Zend/Session @@ -2793,63 +3200,6 @@ @dirrm %%WWWDIR%%/libs/Zend/Mail/Part @dirrm %%WWWDIR%%/libs/Zend/Mail/Message @dirrm %%WWWDIR%%/libs/Zend/Mail -@dirrm %%WWWDIR%%/libs/Zend/Log/Writer -@dirrm %%WWWDIR%%/libs/Zend/Log/Formatter -@dirrm %%WWWDIR%%/libs/Zend/Log/Filter -@dirrm %%WWWDIR%%/libs/Zend/Log -@dirrm %%WWWDIR%%/libs/Zend/Http/UserAgent/Storage -@dirrm %%WWWDIR%%/libs/Zend/Http/UserAgent/Features/Adapter -@dirrm %%WWWDIR%%/libs/Zend/Http/UserAgent/Features -@dirrm %%WWWDIR%%/libs/Zend/Http/UserAgent -@dirrm %%WWWDIR%%/libs/Zend/Http/Response -@dirrm %%WWWDIR%%/libs/Zend/Http/Client/Adapter -@dirrm %%WWWDIR%%/libs/Zend/Http/Client -@dirrm %%WWWDIR%%/libs/Zend/Http -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/Feed/Atom -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/Feed -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/Entry/Atom -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Renderer/Entry -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Renderer -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Feed -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/WellFormedWeb/Renderer -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/WellFormedWeb -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Threading/Renderer -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Threading -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Slash/Renderer -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Slash -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/ITunes/Renderer -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/ITunes -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/DublinCore/Renderer -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/DublinCore -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Content/Renderer -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Content -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Atom/Renderer -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension/Atom -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Extension -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer/Exception -@dirrm %%WWWDIR%%/libs/Zend/Feed/Writer -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Feed/Atom -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Feed -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Extension/WellFormedWeb -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Thread -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Syndication -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Slash -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Podcast -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Extension/DublinCore -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Extension/CreativeCommons -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Content -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Extension/Atom -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Extension -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Entry -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader/Collection -@dirrm %%WWWDIR%%/libs/Zend/Feed/Reader -@dirrm %%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/Subscriber -@dirrm %%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub/Model -@dirrm %%WWWDIR%%/libs/Zend/Feed/Pubsubhubbub -@dirrm %%WWWDIR%%/libs/Zend/Feed/Entry -@dirrm %%WWWDIR%%/libs/Zend/Feed/Builder/Header -@dirrm %%WWWDIR%%/libs/Zend/Feed/Builder -@dirrm %%WWWDIR%%/libs/Zend/Feed @dirrm %%WWWDIR%%/libs/Zend/Db/Table/Select @dirrm %%WWWDIR%%/libs/Zend/Db/Table/Rowset @dirrm %%WWWDIR%%/libs/Zend/Db/Table/Row @@ -2876,16 +3226,8 @@ @dirrm %%WWWDIR%%/libs/Zend/Cache/Backend/ZendServer @dirrm %%WWWDIR%%/libs/Zend/Cache/Backend @dirrm %%WWWDIR%%/libs/Zend/Cache -@dirrm %%WWWDIR%%/libs/Zend/Auth/Storage -@dirrm %%WWWDIR%%/libs/Zend/Auth/Adapter/Http/Resolver -@dirrm %%WWWDIR%%/libs/Zend/Auth/Adapter/Http -@dirrm %%WWWDIR%%/libs/Zend/Auth/Adapter -@dirrm %%WWWDIR%%/libs/Zend/Auth @dirrm %%WWWDIR%%/libs/Zend @dirrm %%WWWDIR%%/libs/UserAgentParser -@dirrm %%WWWDIR%%/libs/Smarty/plugins -@dirrm %%WWWDIR%%/libs/Smarty/internals -@dirrm %%WWWDIR%%/libs/Smarty @dirrm %%WWWDIR%%/libs/PiwikTracker @dirrm %%WWWDIR%%/libs/PclZip @dirrm %%WWWDIR%%/libs/PEAR @@ -2899,33 +3241,30 @@ @dirrm %%WWWDIR%%/libs/HTML/QuickForm2/Container @dirrm %%WWWDIR%%/libs/HTML/QuickForm2 @dirrm %%WWWDIR%%/libs/HTML -@dirrm %%WWWDIR%%/libs/Event @dirrm %%WWWDIR%%/libs/Archive_Tar @dirrm %%WWWDIR%%/libs @dirrm %%WWWDIR%%/lang @dirrm %%WWWDIR%%/js -@dirrm %%WWWDIR%%/core/Visualization/Chart @dirrm %%WWWDIR%%/core/Visualization -@dirrm %%WWWDIR%%/core/ViewDataTable/HtmlTable -@dirrm %%WWWDIR%%/core/ViewDataTable/GenerateGraphHTML -@dirrm %%WWWDIR%%/core/ViewDataTable/GenerateGraphData @dirrm %%WWWDIR%%/core/ViewDataTable @dirrm %%WWWDIR%%/core/View @dirrm %%WWWDIR%%/core/Updates @dirrm %%WWWDIR%%/core/Unzip +@dirrm %%WWWDIR%%/core/Translate/Validate +@dirrm %%WWWDIR%%/core/Translate/Filter +@dirrm %%WWWDIR%%/core/Translate @dirrm %%WWWDIR%%/core/Tracker/Db/Pdo @dirrm %%WWWDIR%%/core/Tracker/Db @dirrm %%WWWDIR%%/core/Tracker -@dirrm %%WWWDIR%%/core/SmartyPlugins +@dirrm %%WWWDIR%%/core/Settings @dirrm %%WWWDIR%%/core/Session/SaveHandler @dirrm %%WWWDIR%%/core/Session @dirrm %%WWWDIR%%/core/ScheduledTime @dirrm %%WWWDIR%%/core/ReportRenderer -@dirrm %%WWWDIR%%/core/PluginsFunctions @dirrm %%WWWDIR%%/core/Plugin @dirrm %%WWWDIR%%/core/Period +@dirrm %%WWWDIR%%/core/Notification @dirrm %%WWWDIR%%/core/Menu -@dirrm %%WWWDIR%%/core/Log @dirrm %%WWWDIR%%/core/Db/Schema @dirrm %%WWWDIR%%/core/Db/Adapter/Pdo @dirrm %%WWWDIR%%/core/Db/Adapter @@ -2935,10 +3274,12 @@ @dirrm %%WWWDIR%%/core/DataTable/Filter @dirrm %%WWWDIR%%/core/DataTable @dirrm %%WWWDIR%%/core/DataFiles -@dirrm %%WWWDIR%%/core/Controller -@dirrm %%WWWDIR%%/core/Config -@dirrm %%WWWDIR%%/core/ArchiveProcessing -@dirrm %%WWWDIR%%/core/Archive/Array +@dirrm %%WWWDIR%%/core/DataAccess +@dirrm %%WWWDIR%%/core/AssetManager/UIAssetMerger +@dirrm %%WWWDIR%%/core/AssetManager/UIAssetFetcher +@dirrm %%WWWDIR%%/core/AssetManager/UIAsset +@dirrm %%WWWDIR%%/core/AssetManager +@dirrm %%WWWDIR%%/core/ArchiveProcessor @dirrm %%WWWDIR%%/core/Archive @dirrm %%WWWDIR%%/core/API/DataTableManipulator @dirrm %%WWWDIR%%/core/API --- piwik-2.0.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 04:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 987047AE for ; Fri, 3 Jan 2014 04:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 736B01397 for ; Fri, 3 Jan 2014 04:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s034K0s0076371 for ; Fri, 3 Jan 2014 04:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s034K01G076370; Fri, 3 Jan 2014 04:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 04:20:00 GMT Resent-Message-Id: <201401030420.s034K01G076370@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, Mark Felder Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 486D0742 for ; Fri, 3 Jan 2014 04:11:03 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2936C1370 for ; Fri, 3 Jan 2014 04:11:03 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s034B3x2056373 for ; Fri, 3 Jan 2014 04:11:03 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s034B33c056372; Fri, 3 Jan 2014 04:11:03 GMT (envelope-from nobody) Message-Id: <201401030411.s034B33c056372@oldred.freebsd.org> Date: Fri, 3 Jan 2014 04:11:03 GMT From: Mark Felder To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185433: [PATCH] security/john: OPENMP option doesn't choose correct compiler X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 04:20:00 -0000 >Number: 185433 >Category: ports >Synopsis: [PATCH] security/john: OPENMP option doesn't choose correct compiler >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 Jan 03 04:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Mark Felder >Release: CURRENT >Organization: >Environment: FreeBSD mwi1.coffeenet.org 11.0-CURRENT FreeBSD 11.0-CURRENT #4 r260171: Wed Jan 1 20:12:38 CST 2014 root@mwi1.coffeenet.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Noticed when I tried building john with OPENMP that it wasn't choosing the right compiler; it was still using clang and ignoring the -fopenmp CFLAG This patch should give john stage support and fix the OPENMP option I tried running john through portlint to look for any other obvious issues but portlint does not like this port; I think it's because of some of the syntax used in the MASTER_SITES >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 338178) +++ Makefile (working copy) @@ -3,6 +3,7 @@ PORTNAME= john DISTVERSION= 1.7.9-jumbo-5 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.openwall.com/john/g/ \ http://mirrors.kernel.org/openwall/projects/john/${DISTVERSION:C/-.*//}/ \ @@ -15,7 +16,7 @@ LICENSE= GPLv2 USE_BZIP2= yes -USE_GMAKE= yes +USES= gmake BUILD_WRKSRC= ${WRKDIR}/${DISTNAME}/src # We prefer -jumbo (community-enhanced) versions instead of vanilla releases @@ -37,7 +38,12 @@ OPTIONS_DEFINE= OPENMP DOCS OPENMP_DESC= Compile with OpenMP support -NO_STAGE= yes +.include + +.if ${PORT_OPTIONS:MOPENMP} +USES+= compiler:openmp +.endif + .include .if ${ARCH} == "i386" @@ -80,20 +86,17 @@ @${ECHO_CMD} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/run/john ${PREFIX}/bin - ${LN} -sf john ${PREFIX}/bin/xtract - ${LN} -sf john ${PREFIX}/bin/unshadow - @${MKDIR} ${DATADIR} - cd ${WRKSRC}/run && ${INSTALL_DATA} *.??? [^j]*.conf ${DATADIR} - cd ${WRKSRC}/run && ${INSTALL_SCRIPT} *.?? mailer ${DATADIR} + ${INSTALL_PROGRAM} ${WRKSRC}/run/john ${STAGEDIR}${PREFIX}/bin + ${LN} -sf john ${STAGEDIR}${PREFIX}/bin/xtract + ${LN} -sf john ${STAGEDIR}${PREFIX}/bin/unshadow + ${MKDIR} ${STAGEDIR}${DATADIR} + cd ${WRKSRC}/run && ${INSTALL_DATA} *.??? [^j]*.conf ${STAGEDIR}${DATADIR} + cd ${WRKSRC}/run && ${INSTALL_SCRIPT} *.?? mailer ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${WRKSRC}/run/john.conf \ - ${PREFIX}/etc/john.conf.default -.if !exists(${PREFIX}/etc/john.conf) - ${INSTALL_DATA} ${WRKSRC}/run/john.conf ${PREFIX}/etc -.endif + ${STAGEDIR}${PREFIX}/etc/john.conf.default .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/doc/|} ${STAGEDIR}${DOCSDIR} .endif .include Index: pkg-plist =================================================================== --- pkg-plist (revision 338178) +++ pkg-plist (working copy) @@ -25,4 +25,4 @@ %%DATADIR%%/sap_prepare.pl %%DATADIR%%/sha-dump.pl %%DATADIR%%/sha-test.pl -@dirrm %%DATADIR%% +@dirrmtry %%DATADIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 04:20:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 85B707DB; Fri, 3 Jan 2014 04:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5BB4F1398; Fri, 3 Jan 2014 04:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s034K8nP076505; Fri, 3 Jan 2014 04:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s034K8Vq076504; Fri, 3 Jan 2014 04:20:08 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 04:20:08 GMT Message-Id: <201401030420.s034K8Vq076504@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danfe@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185433: [PATCH] security/john: OPENMP option doesn't choose correct compiler X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 04:20:08 -0000 Synopsis: [PATCH] security/john: OPENMP option doesn't choose correct compiler Responsible-Changed-From-To: freebsd-ports-bugs->danfe Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 3 04:20:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185433 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 07:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2A6DE1E for ; Fri, 3 Jan 2014 07:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7E4E61EB4 for ; Fri, 3 Jan 2014 07:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03700gv016509 for ; Fri, 3 Jan 2014 07:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0370086016508; Fri, 3 Jan 2014 07:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 07:00:00 GMT Resent-Message-Id: <201401030700.s0370086016508@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, Oleg Ginzburg Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7CEF9B64 for ; Fri, 3 Jan 2014 06:50:00 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 506631E1B for ; Fri, 3 Jan 2014 06:50:00 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s036nxri063028 for ; Fri, 3 Jan 2014 06:49:59 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s036nxtq063023; Fri, 3 Jan 2014 06:49:59 GMT (envelope-from nobody) Message-Id: <201401030649.s036nxtq063023@oldred.freebsd.org> Date: Fri, 3 Jan 2014 06:49:59 GMT From: Oleg Ginzburg To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185434: sysutils/ioping update to 0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 07:00:00 -0000 >Number: 185434 >Category: ports >Synopsis: sysutils/ioping update to 0.8 >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 Jan 03 07:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Oleg Ginzburg >Release: >Organization: >Environment: >Description: - update to 0.8 - remove patch for fdatasync which is pushed to upstream - STAGE-ing >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ioping.bak/Makefile ioping/Makefile --- ioping.bak/Makefile 2014-01-01 04:00:59.000000000 +0400 +++ ioping/Makefile 2014-01-03 10:45:26.000000000 +0400 @@ -2,7 +2,7 @@ # $FreeBSD: head/sysutils/ioping/Makefile 327772 2013-09-20 23:05:58Z bapt $ PORTNAME= ioping -PORTVERSION= 0.7 +PORTVERSION= 0.8 CATEGORIES= sysutils MASTER_SITES= GOOGLE_CODE @@ -19,13 +19,12 @@ # for the benefit of <80000 CFLAGS+= -lm -NO_STAGE= yes do-build: cd ${WRKSRC}; \ ${SETENV} ${MAKE_ENV} ${CC} ${CFLAGS} -DVERSION=${PORTVERSION} ioping.c -o ioping do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/ioping ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/ioping.1 ${MAN1PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/ioping ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/ioping.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 .include diff -ruN ioping.bak/distinfo ioping/distinfo --- ioping.bak/distinfo 2014-01-01 04:00:59.000000000 +0400 +++ ioping/distinfo 2014-01-03 10:34:02.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (ioping-0.7.tar.gz) = 234e28eeb256e77756a077604b48d59f206a5288c3da6f207629e783f54b13b0 -SIZE (ioping-0.7.tar.gz) = 10011 +SHA256 (ioping-0.8.tar.gz) = e23fdbd7298e26b63986137d6007e5a72d495da7265b9edea4c12f1b0c55fe48 +SIZE (ioping-0.8.tar.gz) = 10590 diff -ruN ioping.bak/files/patch-ioping.c ioping/files/patch-ioping.c --- ioping.bak/files/patch-ioping.c 2014-01-01 04:00:59.000000000 +0400 +++ ioping/files/patch-ioping.c 2014-01-03 10:36:59.000000000 +0400 @@ -1,32 +1,6 @@ ---- ioping.c.orig 2013-02-02 21:00:59.000000000 +0400 -+++ ioping.c 2013-07-23 15:53:52.000000000 +0400 -@@ -154,11 +154,6 @@ - return FlushFileBuffers(h) ? 0 : -1; - } - --int fdatasync(int fd) --{ -- return fsync(fd); --} -- - void srandom(unsigned int seed) - { - srand(seed); -@@ -178,6 +173,13 @@ - - #endif /* __MINGW32__ */ - -+#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__MINGW32__) -+int fdatasync(int fd) -+{ -+ return fsync(fd); -+} -+#endif /* (__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__MINGW32__) */ -+ - #ifndef HAVE_POSIX_MEMALIGN - /* don't free it */ - int posix_memalign(void **memptr, size_t alignment, size_t size) -@@ -222,7 +224,7 @@ +--- ioping.c.orig 2014-01-03 10:36:08.000000000 +0400 ++++ ioping.c 2014-01-03 10:36:48.000000000 +0400 +@@ -247,7 +247,7 @@ void version(void) { >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 07:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6B4FA77F for ; Fri, 3 Jan 2014 07:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 43157108C for ; Fri, 3 Jan 2014 07:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s037K03h022598 for ; Fri, 3 Jan 2014 07:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s037K0A3022597; Fri, 3 Jan 2014 07:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 07:20:00 GMT Resent-Message-Id: <201401030720.s037K0A3022597@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, Stephen Hurd Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6FE94536 for ; Fri, 3 Jan 2014 07:13:48 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 500131017 for ; Fri, 3 Jan 2014 07:13:48 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s037DmcB080705 for ; Fri, 3 Jan 2014 07:13:48 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s037Dmw9080696; Fri, 3 Jan 2014 07:13:48 GMT (envelope-from nobody) Message-Id: <201401030713.s037Dmw9080696@oldred.freebsd.org> Date: Fri, 3 Jan 2014 07:13:48 GMT From: Stephen Hurd To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185435: [Maintainer update] ports-mgmt/pkg_cleanup update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 07:20:00 -0000 >Number: 185435 >Category: ports >Synopsis: [Maintainer update] ports-mgmt/pkg_cleanup update >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 Jan 03 07:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Stephen Hurd >Release: 10.0-RC3 >Organization: >Environment: FreeBSD portable 10.0-RC3 FreeBSD 10.0-RC3 #0 r259778: Mon Dec 23 23:27:58 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Update to support pkg, bump to v2.0 >How-To-Repeat: >Fix: Update attached. Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 338396) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pkg_cleanup -PORTVERSION= 1.1 +PORTVERSION= 2.0 CATEGORIES= ports-mgmt DISTFILES= @@ -9,13 +9,11 @@ MAINTAINER= shurd@sasktel.net COMMENT= Interactive program for deinstalling 'leaf' packages -MAN1= pkg_cleanup.1 - WRKSRC= ${WRKDIR}/${PORTNAME} -PLIST_FILES= sbin/pkg_cleanup +PLIST_FILES= sbin/pkg_cleanup \ + man/man1/pkg_cleanup.1.gz -NO_STAGE= yes .include .if ${OSVERSION} >= 900000 && ${OSVERSION} < 900038 @@ -33,7 +31,7 @@ make -C ${WRKSRC} do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/pkg_cleanup ${PREFIX}/sbin/pkg_cleanup - ${INSTALL_MAN} ${WRKSRC}/pkg_cleanup.1 ${MAN1PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/pkg_cleanup ${STAGEDIR}${PREFIX}/sbin/pkg_cleanup + ${INSTALL_MAN} ${WRKSRC}/pkg_cleanup.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 .include Index: files/pkg_cleanup.c =================================================================== --- files/pkg_cleanup.c (revision 338396) +++ files/pkg_cleanup.c (working copy) @@ -9,9 +9,11 @@ #include #include #include +#include #include #include #include +#include #include #include @@ -20,6 +22,14 @@ #endif static glob_t gl; /* A cached list of all files in /var/db/pkg */ +static StringList *sl; +static size_t pathc; +static char **pathv; +static bool uses_pkg; +static int menulen=0; +static int helpfile=-1; +static char *helpfname="/tmp/pkgcleanup.XXXX"; + #ifdef OLD_DIALOG typedef dialogMenuItem ListItem; #else @@ -36,7 +46,17 @@ #define ITEM_CHECKED state #endif -int menulen=0; +bool check_pkg(void) +{ + if(WEXITSTATUS(system("TMPDIR=/dev/null " + "ASSUME_ALWAYS_YES=1 " + "PACKAGESITE=file:///nonexistent " + "pkg info -x 'pkg(-devel)?$' " + ">/dev/null 2>&1") + )==0) + return true; + return false; +} void free_menu(void) { @@ -68,6 +88,66 @@ return(hsearch(item, operation)!=NULL); } +char *read_desc(char *path) +{ + if(uses_pkg) { + char newpath[MAXPATHLEN+1]; + char *p=NULL; + char *np=NULL; + FILE *pkg; + char chunk[1024]; + size_t cs, len=0; + + sprintf(newpath,"/usr/sbin/pkg query %%e \"%s\"", path); + fflush(stdout); + pkg=popen(newpath, "r"); + if(!pkg) + return NULL; + while((cs=fread(chunk, 1, sizeof(chunk), pkg))) { + np=(char *)realloc(p, len+cs+1); + if(!np) { + pclose(pkg); + free(p); + return NULL; + } + p=np; + memcpy(p+len, chunk, cs); + len+=cs; + p[len]=0; + } + pclose(pkg); + if(len==0) { + free(p); + return NULL; + } + return p; + } + else { + char *p; + char newpath[MAXPATHLEN+1]; + FILE *file; + struct stat sb; + + sprintf(newpath,"/var/db/pkg/%s/+DESC",path); + file=fopen(newpath, "r"); + if(file) { + if(fstat(fileno(file), &sb)==0) { + p=(char *)malloc(sb.st_size+1); + if(p) { + if(fread(p, sb.st_size, 1, file)==1) { + fclose(file); + p[sb.st_size]=0; + return p; + } + free(p); + } + } + fclose(file); + } + } + return NULL; +} + #ifdef OLD_DIALOG int fire(struct _dmenu_item *item) { @@ -89,8 +169,19 @@ wattrset(stdscr, dialog_attr); mvwaddnstr(stdscr, 4, 4, (char *)item->data, maxx-6); wrefresh(stdscr); - sprintf(path,"/var/db/pkg/%s/+DESC",item->prompt); - use_helpfile(path); + if(uses_pkg) { + char *desc=read_desc(item->prompt); + lseek(helpfile, 0, SEEK_SET); + if(desc) { + write(helpfile, desc, strlen(desc)); + free(desc); + } + ftruncate(helpfile, lseek(helpfile, 0, SEEK_CUR)); + } + else { + sprintf(path,"/var/db/pkg/%s/+DESC",item->prompt); + use_helpfile(path); + } } } @@ -102,19 +193,74 @@ } #endif +char *read_comment(char *path) +{ + if(uses_pkg) { + char newpath[MAXPATHLEN+1]; + char *p=NULL; + char *np=NULL; + FILE *pkg; + char chunk[1024]; + size_t cs, len=0; + + sprintf(newpath,"/usr/sbin/pkg query %%c \"%s\"", path); + fflush(stdout); + pkg=popen(newpath, "r"); + if(!pkg) + return strdup(""); + while((cs=fread(chunk, 1, sizeof(chunk), pkg))) { + np=(char *)realloc(p, len+cs+1); + if(!np) { + pclose(pkg); + free(p); + return strdup(""); + } + p=np; + memcpy(p+len, chunk, cs); + len+=cs; + p[len]=0; + } + pclose(pkg); + if(len==0) { + free(p); + return strdup(""); + } + return p; + } + else { + char comment[80]; + FILE *file; + char newpath[MAXPATHLEN+1]; + char *p; + + /* Read +COMMENT */ + sprintf(newpath,"%s/+COMMENT",path); + file=fopen(newpath,"r"); + if(file) { + fgets(comment, sizeof(comment), file); + fclose(file); + /* Remove trailing whitespace */ + for(p=strchr(comment,0)-1; p>=comment; p--) { + if(isspace(*p)) + *p=0; + else + break; + } + return strdup(comment); + } + } + return strdup(""); +} + /* Read +COMMENT, add to menu and blacklist */ -int add_item(char *path) +int add_item(char *path, char *comment) { char *p; - char comment[80]; - FILE *file; - char newpath[MAXPATHLEN+1]; ListItem *newmenu; if(blacklist(path,FIND)) return(0); blacklist(path,ENTER); - comment[0]=0; newmenu=(ListItem *)realloc(menu, sizeof(ListItem)*(menulen+1)); if(newmenu==NULL) @@ -122,10 +268,12 @@ menu=newmenu; p=strrchr(path,'/'); - if(p==NULL) /* Not possible */ - return(-1); + if(p==NULL) + p=path; + else + p++; - menu[menulen].ITEM_PROMPT=strdup(p+1); + menu[menulen].ITEM_PROMPT=strdup(p); menu[menulen].ITEM_CHECKED=0; #ifdef OLD_DIALOG menu[menulen].title=""; @@ -139,20 +287,6 @@ menu[menulen].text=""; #endif - /* Read +COMMENT */ - sprintf(newpath,"%s/+COMMENT",path); - file=fopen(newpath,"r"); - if(file) { - fgets(comment, sizeof(comment), file); - fclose(file); - /* Remove trailing whitespace */ - for(p=strchr(comment,0)-1; p>=comment; p--) { - if(isspace(*p)) - *p=0; - else - break; - } - } menu[menulen].ITEM_DATA=strdup(comment); menulen++; @@ -187,28 +321,12 @@ loop: switch(ret=dlg_checklist("Welcome to pkg_cleanup.", "These are the leaf packages installed on your system\nChose the packages to deinstall. Help will display the package description.", maxy-1, maxx, maxy-9, menulen, menu, " X", FLAG_CHECK, &curr)) { case DLG_EXIT_HELP: { - char *p; - char newpath[MAXPATHLEN+1]; - FILE *file; - struct stat sb; - - /* READ +DESC */ - sprintf(newpath,"/var/db/pkg/%s/+DESC",menu[curr].ITEM_PROMPT); - file=fopen(newpath, "r"); - if(file) { - if(fstat(fileno(file), &sb)==0) { - p=(char *)malloc(sb.st_size+1); - if(p) { - if(fread(p, sb.st_size, 1, file)==1) { - p[sb.st_size]=0; - dialog_vars.help_button=0; - dialog_msgbox(menu[curr].ITEM_DATA, p, maxy-4, maxx-4, TRUE); - dialog_vars.help_button=1; - } - free(p); - } - } - fclose(file); + char *p = read_desc(menu[curr].ITEM_PROMPT); + if(p) { + dialog_vars.help_button=0; + dialog_msgbox(menu[curr].ITEM_DATA, p, maxy-4, maxx-4, TRUE); + dialog_vars.help_button=1; + free(p); } goto loop; } @@ -226,90 +344,161 @@ return(ret); } -/* Goes through the glob contents, looking for zero-length +REQUIRED-BY */ -int read_pkglist(int loops) +bool is_leaf_package(char *path) { - char path[MAXPATHLEN+1]; - int p; + char newpath[MAXPATHLEN+1]; struct stat sb; - int maxx,maxy; - int lastgauge=-1; - int gauge; -#ifndef OLD_DIALOG - int pipepair[2]; - FILE *read_pipe; - FILE *write_pipe; -#endif - do_init_dialog(); - getmaxyx(stdscr, maxy, maxx); - for(p=0;pline && isspace(*p); p--) + *p=0; + p=strtok(line, "\t"); + p=strtok(NULL, "\0"); + add_item(line, p?p:""); + } + if(WEXITSTATUS(pclose(pkg)) && menulen==0) { + fputs("pkg returned an error.\n", stderr); + return -1; + } #ifdef OLD_DIALOG - dialog_gauge(NULL, "Searching for leaves", maxy/2-1, maxx/2-12, 7, 24, 100); - dialog_clear_norefresh(); + dialog_clear_norefresh(); #else - if(pipe(pipepair)!=0) { - fputs("Cannot create pipe pair.\n", stderr); - return(-1); + dlg_clear(); +#endif } - if((read_pipe=fdopen(pipepair[0], "r"))==NULL) { - fputs("Cannot open read end of pipe pair.\n", stderr); - return(-1); + else { + int p; + int maxx,maxy; + int lastgauge=-1; + int gauge; + char *comment; +#ifndef OLD_DIALOG + int pipepair[2]; + FILE *read_pipe; + FILE *write_pipe; +#endif + + do_init_dialog(); + getmaxyx(stdscr, maxy, maxx); + for(p=0;p 0 && line[len-1]=='\n') + len--; + nline = strndup(line, len); + if(!nline) { + fprintf(stderr, "Unable allocate memory for \"%.*s\" to list\n", (int)len, line); + return EX_UNAVAILABLE; + } + if(sl_add(sl, nline)) { + fprintf(stderr, "Unable to add package \"%s\" to list\n", nline); + return EX_UNAVAILABLE; + } + } + ret = pclose(pkg); + if(WEXITSTATUS(ret)) { + fprintf(stderr, "pkg exited with error %d\n", WEXITSTATUS(ret)); + return WEXITSTATUS(ret); + } + + pathc = sl->sl_cur; + pathv = sl->sl_str; + } + else { + /* glob() package directories */ + if(glob("/var/db/pkg/*", GLOB_ERR, NULL, &gl)) { + fputs("Unable to get list of packages\n",stderr); + switch(errno) { + case GLOB_NOSPACE: + return(EX_UNAVAILABLE); + case GLOB_ABORTED: + return(EX_NOINPUT); + case GLOB_NOMATCH: + return(EX_NOINPUT); + } + return(EXIT_FAILURE); + } + pathc = gl.gl_pathc; + pathv = gl.gl_pathv; + } + return 0; +} + /* * The hash table is to keep track of leaves which have already been displayed * to the user. @@ -397,37 +660,34 @@ */ int main(int argc, char **argv) { - char **pathv; - struct stat sb; - int loops=0; + int i; - /* glob() package directories */ - if(glob("/var/db/pkg/*", GLOB_ERR, NULL, &gl)) { - fputs("Unable to get list of packages\n",stderr); - switch(errno) { - case GLOB_NOSPACE: - return(EX_UNAVAILABLE); - case GLOB_ABORTED: - return(EX_NOINPUT); - case GLOB_NOMATCH: - return(EX_NOINPUT); - } - return(EXIT_FAILURE); - } + uses_pkg = check_pkg(); - if(gl.gl_pathc==0) { + i = glob_packages(); + if(i) + return i; + + if(pathc==0) { fputs("No packages found.\n",stderr); return(EXIT_FAILURE); } /* Initialize space for blacklist hash table */ - if(hcreate(1000)==0) { + if(hcreate(10000)==0) { fputs("Cannot create hash table.\n",stderr); return(EX_UNAVAILABLE); } + /* Create temp help file for the description when using pkg on 8.x */ +#ifdef OLD_DIALOG + if(uses_pkg) + helpfile=mkstemp(helpfname); +#endif + + i=0; do { - if(read_pkglist(loops++)) + if(read_pkglist(i++)) break; if(display_menu()) break; @@ -436,6 +696,13 @@ free_menu(); } while(keep_going()); +#ifdef OLD_DIALOG + if(helpfile != -1) { + close(helpfile); + unlink(helpfname); + } +#endif + fputs("\nProgram Terminated Successfully\n",stderr); return(0); } >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 09:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EB4A7D0F for ; Fri, 3 Jan 2014 09:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AC8391926 for ; Fri, 3 Jan 2014 09:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s039K0tf058331 for ; Fri, 3 Jan 2014 09:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s039K0AE058330; Fri, 3 Jan 2014 09:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 09:20:00 GMT Resent-Message-Id: <201401030920.s039K0AE058330@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, Stephen Hurd Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D7A8CB7 for ; Fri, 3 Jan 2014 09:18:41 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EDE581917 for ; Fri, 3 Jan 2014 09:18:40 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s039IeHJ014898 for ; Fri, 3 Jan 2014 09:18:40 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s039IeIH014886; Fri, 3 Jan 2014 09:18:40 GMT (envelope-from nobody) Message-Id: <201401030918.s039IeIH014886@oldred.freebsd.org> Date: Fri, 3 Jan 2014 09:18:40 GMT From: Stephen Hurd To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185436: devel/gmake default value of CXX is g++ X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 09:20:01 -0000 >Number: 185436 >Category: ports >Synopsis: devel/gmake default value of CXX is g++ >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 Jan 03 09:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Stephen Hurd >Release: 10.0-RC4 >Organization: >Environment: FreeBSD portable 10.0-RC4 FreeBSD 10.0-RC4 #0 r260130: Tue Dec 31 17:10:01 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The devel/gmake port when installed defaults the CXX variable to g++ instead of c++. This means that in a default FreeBSD 10 install, the built-in C++ rules are broken by default. >How-To-Repeat: Attempt to build a C++ progrma using the CXX variable on FreeBSD 10 without a g++ in the path. >Fix: Change the default to c++... this appears to be the GCC compiler on older releases. >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 09:20:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 37042D40; Fri, 3 Jan 2014 09:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0B8971929; Fri, 3 Jan 2014 09:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s039K846060094; Fri, 3 Jan 2014 09:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s039K8RZ060093; Fri, 3 Jan 2014 09:20:08 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 09:20:08 GMT Message-Id: <201401030920.s039K8RZ060093@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, autotools@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185436: devel/gmake default value of CXX is g++ X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 09:20:09 -0000 Synopsis: devel/gmake default value of CXX is g++ Responsible-Changed-From-To: freebsd-ports-bugs->autotools Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 3 09:20:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185436 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 09:29:54 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2E3AE6B; Fri, 3 Jan 2014 09:29:54 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 95C5E19CC; Fri, 3 Jan 2014 09:29:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s039Ts2d060285; Fri, 3 Jan 2014 09:29:54 GMT (envelope-from tijl@freefall.freebsd.org) Received: (from tijl@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s039TrNG060284; Fri, 3 Jan 2014 10:29:53 +0100 (CET) (envelope-from tijl) Date: Fri, 3 Jan 2014 10:29:53 +0100 (CET) Message-Id: <201401030929.s039TrNG060284@freefall.freebsd.org> To: samm@os2.kiev.ua, c.kworr@gmail.com, tijl@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-bugs@FreeBSD.org From: tijl@FreeBSD.org Subject: Re: kern/177371: [cam] ATA_IDENTIFY command timeout, disk lost X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 09:29:54 -0000 Old Synopsis: sysutils/smartmontools - triggers channel blocking New Synopsis: [cam] ATA_IDENTIFY command timeout, disk lost State-Changed-From-To: feedback->open State-Changed-By: tijl State-Changed-When: Fri Jan 3 10:18:28 CET 2014 State-Changed-Why: While the problem has been described using smartmontools it is not believed to be a ports PR. Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-bugs Responsible-Changed-By: tijl Responsible-Changed-When: Fri Jan 3 10:18:28 CET 2014 Responsible-Changed-Why: While the problem has been described using smartmontools it is not believed to be a ports PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=177371 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 10:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2A811A03 for ; Fri, 3 Jan 2014 10:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E64981EAF for ; Fri, 3 Jan 2014 10:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03AU0OP073061 for ; Fri, 3 Jan 2014 10:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03AU0OR073060; Fri, 3 Jan 2014 10:30:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 10:30:00 GMT Resent-Message-Id: <201401031030.s03AU0OR073060@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, Ilya Bakulin Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C522B9EE; Fri, 3 Jan 2014 10:29:21 +0000 (UTC) Received: from olymp.kibab.com (olymp6.kibab.com [IPv6:2a01:4f8:160:84c1::2]) by mx1.freebsd.org (Postfix) with ESMTP id 8BC9D1EAA; Fri, 3 Jan 2014 10:29:21 +0000 (UTC) Message-Id: <20140103102911.B03123F52D@olymp.kibab.com> Date: Fri, 3 Jan 2014 11:29:11 +0100 (CET) From: Ilya Bakulin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185437: [PATCH] lang/php5: Enable building php-fpm by default Cc: ale@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 10:30:01 -0000 >Number: 185437 >Category: ports >Synopsis: [PATCH] lang/php5: Enable building php-fpm by default >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 Jan 03 10:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ilya Bakulin >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: Deglitch Networks >Environment: System: FreeBSD olymp.kibab.com 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:34:37 UTC >Description: php-fpm was integrated in PHP core since release 5.4 and is quite stable. Many high-loaded web sites use it as a PHP backend. It has no extra dependencies. So it makes sense to enable building it by default. Port maintainer (ale@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- php5-5.4.23.patch begins here --- diff -ruN /usr/ports//lang/php5/Makefile ./Makefile --- /usr/ports//lang/php5/Makefile 2013-12-24 22:22:21.000000000 +0100 +++ ./Makefile 2014-01-03 11:20:53.000000000 +0100 @@ -38,7 +38,7 @@ USE_GNOME= libxml2 OPTIONS_DEFINE= CLI CGI FPM APACHE AP2FILTER EMBED DEBUG DTRACE IPV6 MAILHEAD LINKTHR ZTS -OPTIONS_DEFAULT=CLI CGI IPV6 LINKTHR +OPTIONS_DEFAULT=CLI CGI FPM IPV6 LINKTHR CLI_DESC= Build CLI version CGI_DESC= Build CGI version --- php5-5.4.23.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 10:30:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EDC07A34; Fri, 3 Jan 2014 10:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C33131EB2; Fri, 3 Jan 2014 10:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03AU8kF073139; Fri, 3 Jan 2014 10:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03AU8K3073138; Fri, 3 Jan 2014 10:30:08 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 10:30:08 GMT Message-Id: <201401031030.s03AU8K3073138@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185437: [PATCH] lang/php5: Enable building php-fpm by default X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 10:30:09 -0000 Synopsis: [PATCH] lang/php5: Enable building php-fpm by default Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 3 10:30:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185437 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 10:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C62CCF15 for ; Fri, 3 Jan 2014 10:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E8BE1F73 for ; Fri, 3 Jan 2014 10:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Ae0bn074970 for ; Fri, 3 Jan 2014 10:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Ae0M5074969; Fri, 3 Jan 2014 10:40:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 10:40:00 GMT Resent-Message-Id: <201401031040.s03Ae0M5074969@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, Ilya Bakulin Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCEF0CF5; Fri, 3 Jan 2014 10:32:59 +0000 (UTC) Received: from olymp.kibab.com (olymp.kibab.com [5.9.14.202]) by mx1.freebsd.org (Postfix) with ESMTP id 9F6CD1F33; Fri, 3 Jan 2014 10:32:59 +0000 (UTC) Message-Id: <20140103103258.1684C3F62A@olymp.kibab.com> Date: Fri, 3 Jan 2014 11:32:58 +0100 (CET) From: Ilya Bakulin To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185438: [PATCH] lang/php55: Enable building php-fpm by default Cc: ale@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 10:40:00 -0000 >Number: 185438 >Category: ports >Synopsis: [PATCH] lang/php55: Enable building php-fpm by default >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 Jan 03 10:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ilya Bakulin >Release: FreeBSD 9.1-RELEASE-p7 amd64 >Organization: Deglitch Networks >Environment: System: FreeBSD olymp.kibab.com 9.1-RELEASE-p7 FreeBSD 9.1-RELEASE-p7 #0: Mon Sep 9 21:34:37 UTC >Description: php-fpm was integrated in PHP core since release 5.4 and is quite stable. Many high-loaded web sites use it as a PHP backend. It has no extra dependencies. So it makes sense to enable building it by default. Port maintainer (ale@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- php55-5.5.7.patch begins here --- diff -ruN /usr/ports//lang/php55/Makefile ./Makefile --- /usr/ports//lang/php55/Makefile 2013-12-24 22:22:21.000000000 +0100 +++ ./Makefile 2014-01-03 11:21:12.000000000 +0100 @@ -38,7 +38,7 @@ USE_GNOME= libxml2 OPTIONS_DEFINE= CLI CGI FPM APACHE AP2FILTER EMBED DEBUG DTRACE IPV6 MAILHEAD LINKTHR ZTS -OPTIONS_DEFAULT=CLI CGI IPV6 LINKTHR +OPTIONS_DEFAULT=CLI CGI FPM IPV6 LINKTHR CLI_DESC= Build CLI version CGI_DESC= Build CGI version --- php55-5.5.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 10:40:14 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1A01CF52; Fri, 3 Jan 2014 10:40:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E17201F77; Fri, 3 Jan 2014 10:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03AeDdW075104; Fri, 3 Jan 2014 10:40:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03AeDFI075103; Fri, 3 Jan 2014 10:40:13 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 10:40:13 GMT Message-Id: <201401031040.s03AeDFI075103@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ale@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185438: [PATCH] lang/php55: Enable building php-fpm by default X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 10:40:14 -0000 Synopsis: [PATCH] lang/php55: Enable building php-fpm by default Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 3 10:40:13 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185438 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 11:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BF751588 for ; Fri, 3 Jan 2014 11:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9A10E1136 for ; Fri, 3 Jan 2014 11:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03B00G8078853 for ; Fri, 3 Jan 2014 11:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03B00ad078852; Fri, 3 Jan 2014 11:00:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 11:00:00 GMT Resent-Message-Id: <201401031100.s03B00ad078852@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, Andras JAKO Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 322B6402 for ; Fri, 3 Jan 2014 10:53:49 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1D8F3110C for ; Fri, 3 Jan 2014 10:53:49 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s03Arme1053671 for ; Fri, 3 Jan 2014 10:53:48 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s03ArmEZ053664; Fri, 3 Jan 2014 10:53:48 GMT (envelope-from nobody) Message-Id: <201401031053.s03ArmEZ053664@oldred.freebsd.org> Date: Fri, 3 Jan 2014 10:53:48 GMT From: Andras JAKO To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185439: security/openvpn-auth-radius: Fix build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 11:00:00 -0000 >Number: 185439 >Category: ports >Synopsis: security/openvpn-auth-radius: Fix build 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: Fri Jan 03 11:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Andras JAKO >Release: 10.0-PRERELEASE >Organization: Budapest University of Technology and Economics >Environment: FreeBSD beat.eik.bme.hu 10.0-PRERELEASE FreeBSD 10.0-PRERELEASE #14: Sat Dec 28 23:25:07 CET 2013 root@beat.eik.bme.hu:/usr/obj/usr/src/sys/BEAT amd64 >Description: security/openvpn-auth-radius doesn't build with clang: gmake[1]: Entering directory `/usr/ports/security/openvpn-auth-radius.orig/work/radiusplugin' OBJ: RadiusClass/RadiusAttribute.o OBJ: RadiusClass/RadiusPacket.o OBJ: RadiusClass/RadiusConfig.o gmake[1]: g++: Command not found .. >How-To-Repeat: make >Fix: Fix hardcoded CC=g++ in Makefile.bsd so that it can be built with clang. Patch attached with submission follows: diff -ruN openvpn-auth-radius.orig/files/patch-Makefile.bsd openvpn-auth-radius/files/patch-Makefile.bsd --- openvpn-auth-radius.orig/files/patch-Makefile.bsd 1970-01-01 01:00:00.000000000 +0100 +++ openvpn-auth-radius/files/patch-Makefile.bsd 2014-01-03 11:29:44.000000000 +0100 @@ -0,0 +1,8 @@ +--- ./Makefile.bsd.orig 2010-04-06 19:07:33.000000000 +0200 ++++ ./Makefile.bsd 2014-01-03 11:29:36.000000000 +0100 +@@ -1,4 +1,4 @@ +-CC=g++ ++CC?=g++ + INCL=-I/usr/local/include + LDFLAGS=-L/usr/local/lib + LIBS=-lgcrypt -lgpg-error -lstdc++ -lm -lpthread >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 11:00:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 970715B9; Fri, 3 Jan 2014 11:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6D42F1138; Fri, 3 Jan 2014 11:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03B08SI078978; Fri, 3 Jan 2014 11:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03B08nR078977; Fri, 3 Jan 2014 11:00:08 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 11:00:08 GMT Message-Id: <201401031100.s03B08nR078977@freefall.freebsd.org> To: jako.andras@eik.bme.hu, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185439: security/openvpn-auth-radius: Fix build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 11:00:08 -0000 Synopsis: security/openvpn-auth-radius: Fix build with clang State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Jan 3 11:00:08 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185439 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 11:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6E4DD845 for ; Fri, 3 Jan 2014 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 57E6B11D4 for ; Fri, 3 Jan 2014 11:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03BA1vg081168 for ; Fri, 3 Jan 2014 11:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03BA1pF081167; Fri, 3 Jan 2014 11:10:01 GMT (envelope-from gnats) Date: Fri, 3 Jan 2014 11:10:01 GMT Message-Id: <201401031110.s03BA1pF081167@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/185439: security/openvpn-auth-radius: Fix build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 03 Jan 2014 11:10:01 -0000 The following reply was made to PR ports/185439; it has been noted by GNATS. From: Edwin Groothuis To: m.tsatsenko@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/185439: security/openvpn-auth-radius: Fix build with clang Date: Fri, 3 Jan 2014 11:00:07 UT Maintainer of security/openvpn-auth-radius, Please note that PR ports/185439 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/185439 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 11:50:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C30F1E79 for ; Fri, 3 Jan 2014 11:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9DBD8148F for ; Fri, 3 Jan 2014 11:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Bo1G9089674 for ; Fri, 3 Jan 2014 11:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Bo1Y8089673; Fri, 3 Jan 2014 11:50:01 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 11:50:01 GMT Resent-Message-Id: <201401031150.s03Bo1Y8089673@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, Oleg Ginzburg Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5F6CBDFD for ; Fri, 3 Jan 2014 11:41:51 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3EC78145A for ; Fri, 3 Jan 2014 11:41:51 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s03Bfowe048014 for ; Fri, 3 Jan 2014 11:41:50 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s03BfovC048007; Fri, 3 Jan 2014 11:41:50 GMT (envelope-from nobody) Message-Id: <201401031141.s03BfovC048007@oldred.freebsd.org> Date: Fri, 3 Jan 2014 11:41:50 GMT From: Oleg Ginzburg To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185440: net/nakenchat update to 3.00b1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 11:50:01 -0000 >Number: 185440 >Category: ports >Synopsis: net/nakenchat update to 3.00b1 >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 Jan 03 11:50:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Oleg Ginzburg >Release: >Organization: >Environment: >Description: - update to 3.00b1 - fix build with clang - STAGE-ing support - Add License >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN nakenchat.bak/Makefile nakenchat/Makefile --- nakenchat.bak/Makefile 2014-01-01 03:58:48.000000000 +0400 +++ nakenchat/Makefile 2014-01-03 15:36:54.000000000 +0400 @@ -2,26 +2,30 @@ # $FreeBSD: head/net/nakenchat/Makefile 327755 2013-09-20 22:10:23Z bapt $ PORTNAME= nakenchat -PORTVERSION= 2.12 +PORTVERSION= 3.00b1 CATEGORIES= net -MASTER_SITES= http://downloads.mikekohn.net/nakenchat/ +MASTER_SITES= http://downloads.mikekohn.net/nakenchat/ \ + http://www.bsdstore.ru/downloads/ MAINTAINER= olevole@olevole.ru COMMENT= Small (under 50k) chat server with many features +LICENSE= GPLv2 + HAS_CONFIGURE= yes USE_RC_SUBR= nakenchat OPTIONS_DEFINE= NOKEEPALIVE NOUSERCHANLIST DEBUG HIDDENCAVES DOTQ \ - FUSERLIST ELITEFILTER + FUSERLIST ELITEFILTER OPENSSL -NOKEEPALIVE_DESC= Disable socket keepalive option -NOUSERCHANLIST_DESC= Disable userlist based on channel -DEBUG_DESC= Compile in debug code -HIDDENCAVES_DESC= Enable hidden caves feature -DOTQ_DESC= Compile in .Q option -FUSERLIST_DESC= Support saving current userlist to a file -ELITEFILTER_DESC= Enable the 3li73 filter +NOKEEPALIVE_DESC= "Disable socket keepalive option" +NOUSERCHANLIST_DESC= "Disable userlist based on channel" +DEBUG_DESC= "Compile in debug code" +HIDDENCAVES_DESC= "Enable hidden caves feature" +DOTQ_DESC= "Compile in .Q option" +FUSERLIST_DESC= "Support saving current userlist to a file" +ELITEFILTER_DESC= "Enable the 3li73 filter" +OPENSSL_DESC= "Enable OpenSSL encryption" NOKEEPALIVE_CONFIGURE_ON= --disable-keepalive NOUSERCHANLIST_CONFIGURE_ON= --disable-userchanlist @@ -30,13 +34,17 @@ DOTQ_CONFIGURE_ON= --enable-dotQ FUSERLIST_CONFIGURE_ON= --enable-whofile ELITEFILTER_CONFIGURE_ON= --enable-elite +OPENSSL_CONFIGURE_ON= --enable-ssl -NO_STAGE= yes .include +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/src/nakenchat ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/nakenchat.conf ${STAGEDIR}${PREFIX}/etc/nakenchat.conf.sample + post-install: - @if [ ! -f ${PREFIX}/etc/nakenchat.conf ]; then \ - ${CP} -p ${PREFIX}/etc/nakenchat.conf.sample ${PREFIX}/etc/nakenchat.conf ; \ + @if [ ! -f ${STAGEDIR}${PREFIX}/etc/nakenchat.conf ]; then \ + ${CP} -p ${STAGEDIR}${PREFIX}/etc/nakenchat.conf.sample ${STAGEDIR}${PREFIX}/etc/nakenchat.conf ; \ fi .include diff -ruN nakenchat.bak/distinfo nakenchat/distinfo --- nakenchat.bak/distinfo 2014-01-01 03:58:48.000000000 +0400 +++ nakenchat/distinfo 2014-01-03 14:45:14.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (nakenchat-2.12.tar.gz) = 1597d7759b3849f9b53ada323fa72f7cfc238d4e0c741dccafab3fae66bd900b -SIZE (nakenchat-2.12.tar.gz) = 41839 +SHA256 (nakenchat-3.00b1.tar.gz) = 00a46e8431584ef7412079eb1657fe6ac6ad205af793444a57852d0ff171205f +SIZE (nakenchat-3.00b1.tar.gz) = 49330 diff -ruN nakenchat.bak/files/patch-Makefile nakenchat/files/patch-Makefile --- nakenchat.bak/files/patch-Makefile 2014-01-01 03:58:48.000000000 +0400 +++ nakenchat/files/patch-Makefile 1970-01-01 03:00:00.000000000 +0300 @@ -1,20 +0,0 @@ ---- ./Makefile.orig 2007-06-27 22:06:34.000000000 -0400 -+++ ./Makefile 2008-11-23 14:24:11.028905510 -0500 -@@ -28,14 +28,9 @@ - install: - @if [ ! -d $(PREFIX)/bin ]; then mkdir $(PREFIX)/bin; fi; - @if [ ! -d $(PREFIX)/etc ]; then mkdir $(PREFIX)/etc; fi; -- cp nakenchat $(PREFIX)/bin -- cp nakenpasswd $(PREFIX)/bin -- @echo "cp nakenchat.conf $(PREFIX)/etc" -- @if [ -f $(PREFIX)/etc/nakenchat.conf ]; then \ -- echo "$(PREFIX)/etc/nakenchat.conf exists."; \ -- else \ -- cp nakenchat.conf $(PREFIX)/etc; \ -- fi -+ cp src/nakenchat $(PREFIX)/bin -+ cp src/nakenpasswd $(PREFIX)/bin -+ cp nakenchat.conf $(PREFIX)/etc/nakenchat.conf.sample; - - clean: - cd src && make clean diff -ruN nakenchat.bak/files/patch-configure nakenchat/files/patch-configure --- nakenchat.bak/files/patch-configure 2014-01-01 03:58:48.000000000 +0400 +++ nakenchat/files/patch-configure 2014-01-03 15:07:24.000000000 +0400 @@ -1,13 +1,11 @@ ---- ./configure.orig 2007-06-27 22:06:34.000000000 -0400 -+++ ./configure 2008-11-23 14:23:54.364898213 -0500 -@@ -2,11 +2,11 @@ - +--- configure.orig 2013-07-04 22:47:19.000000000 +0400 ++++ configure 2014-01-03 15:07:12.000000000 +0400 +@@ -3,10 +3,10 @@ # Based on FFMPEG's configure (http://ffmpeg.sourceforge.net/) --PREFIX=/usr/local + PREFIX=/usr/local -CC=gcc -+PREFIX=${PREFIX:=/usr/local} -+CC=${CC:=gcc} ++CC=${CC:=cc} COMPILER_PREFIX= FLAGS="" -CFLAGS="-Wall" @@ -15,26 +13,12 @@ LDFLAGS="" LANGUAGE="english" CONFIG_USER_CHAN_LIST="-DUSER_LIST_CHAN" -@@ -134,7 +134,7 @@ - case "$option" in - --help) show_help - ;; -- --cflags=*) CFLAGS="${CFLAGS} $optval" -+ --cflags=*) CFLAGS="$optval" - ;; - --compiler-prefix=*) COMPILER_PREFIX="$optval" - ;; -@@ -158,12 +158,9 @@ +@@ -260,7 +260,7 @@ + FLAGS="${FLAGS} -DLANGUAGE_${CONFIG_LANG} ${CONFIG_USER_CHAN_LIST} ${CONFIG_KEEPALIVE} ${CONFIG_REALIDLETIME}" - done + if ! instr "-O" "${CFLAGS}"; then CFLAGS="${CFLAGS} -O2"; fi +-if ! instr "-DDEBUG" "${FLAGS}"; then CFLAGS="${CFLAGS} -s"; fi ++if ! instr "-DDEBUG" "${FLAGS}"; then CFLAGS="${CFLAGS}"; fi --if test_compiler "gcc" -+if ! test_compiler $CC + if ! instr "WINDOWS" "${FLAGS}" then - CC="gcc" --elif test_compiler "cc" --then -- CC="cc" - fi - - if test_lib "-lpthread"; then LDFLAGS="${LDFLAGS} -lpthread"; fi diff -ruN nakenchat.bak/pkg-plist nakenchat/pkg-plist --- nakenchat.bak/pkg-plist 2014-01-01 03:58:48.000000000 +0400 +++ nakenchat/pkg-plist 2014-01-03 15:33:23.000000000 +0400 @@ -1,5 +1,4 @@ bin/nakenchat -bin/nakenpasswd @unexec if cmp -s %D/etc/nakenchat.conf.sample %D/etc/nakenchat.conf; then rm -f %D/etc/nakenchat.conf; fi etc/nakenchat.conf.sample @exec if [ ! -f %D/etc/nakenchat.conf ] ; then cp -p %D/%F %B/nakenchat.conf; fi >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 11:50:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DBF30EA6; Fri, 3 Jan 2014 11:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B05011493; Fri, 3 Jan 2014 11:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Bo9Vj089746; Fri, 3 Jan 2014 11:50:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Bo9BU089745; Fri, 3 Jan 2014 11:50:09 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 11:50:09 GMT Message-Id: <201401031150.s03Bo9BU089745@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185440: net/nakenchat update to 3.00b1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 11:50:09 -0000 Synopsis: net/nakenchat update to 3.00b1 Class-Changed-From-To: sw-bug->maintainer-update Class-Changed-By: edwin Class-Changed-When: Fri Jan 3 11:50:09 UTC 2014 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185440 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 12:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C2F30634 for ; Fri, 3 Jan 2014 12:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9CC9216AE for ; Fri, 3 Jan 2014 12:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03CK0qk000171 for ; Fri, 3 Jan 2014 12:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03CK0sI000170; Fri, 3 Jan 2014 12:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 12:20:00 GMT Resent-Message-Id: <201401031220.s03CK0sI000170@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 Molloy Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 54C6B5B0 for ; Fri, 3 Jan 2014 12:16:32 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 337AC1693 for ; Fri, 3 Jan 2014 12:16:32 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s03CGVLF004968 for ; Fri, 3 Jan 2014 12:16:31 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s03CGVKu004945; Fri, 3 Jan 2014 12:16:31 GMT (envelope-from nobody) Message-Id: <201401031216.s03CGVKu004945@oldred.freebsd.org> Date: Fri, 3 Jan 2014 12:16:31 GMT From: John Molloy To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185442: gnumeric 1.12.9 coredumps when trying to open a file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 12:20:00 -0000 >Number: 185442 >Category: ports >Synopsis: gnumeric 1.12.9 coredumps when trying to open a 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 Jan 03 12:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: John Molloy >Release: FreeBSD 10.0-RC4 >Organization: self >Environment: FreeBSD delta 10.0-RC4 FreeBSD 10.0-RC4 #0 r260130: Tue Dec 31 17:10:01 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/4ERIC amd6 >Description: Installed FreeBSD 10.0-RC4. The installation was fine no issues. Upon installation, updated ports by first installing subversion and then performing commands: svn checkout https://svn0.us-east.FreeBSD/ports/head /usr/ports svn update /usr/ports installed x11/xorg with default options using make config-recursive then make install clean configured X environment per handbook. All worked fine installed math/gnumeric with default options using make config-recursive then make install clean logged in to non-privileged user account performed startx from default window manager xterm executed gnumeric& once application window was active, attempted to open a file using the file open icon. At this point gnumeric dumped core. >How-To-Repeat: start the gnumeric application and attempt to open a file using the file open icon. >Fix: Patch attached with submission follows: Copyright (c) 1992-2014 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 10.0-RC4 #0 r260130: Tue Dec 31 17:10:01 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 FreeBSD clang version 3.3 (tags/RELEASE_33/final 183502) 20130610 CPU: Intel(R) Core(TM) i7-4900MQ CPU @ 2.80GHz (2793.59-MHz K8-class CPU) Origin = "GenuineIntel" Id = 0x306c3 Family = 0x6 Model = 0x3c Stepping = 3 Features=0xbfebfbff Features2=0x7ffafbff,FMA,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,MOVBE,POPCNT,TSCDLT,AESNI,XSAVE,OSXSAVE,AVX,F16C,RDRAND> AMD Features=0x2c100800 AMD Features2=0x21 Standard Extended Features=0x2fbb TSC: P-state invariant, performance statistics real memory = 17179869184 (16384 MB) avail memory = 16518164480 (15752 MB) Event timer "LAPIC" quality 600 ACPI APIC Table: FreeBSD/SMP: Multiprocessor System Detected: 8 CPUs FreeBSD/SMP: 1 package(s) x 4 core(s) x 2 SMT threads cpu0 (BSP): APIC ID: 0 cpu1 (AP): APIC ID: 1 cpu2 (AP): APIC ID: 2 cpu3 (AP): APIC ID: 3 cpu4 (AP): APIC ID: 4 cpu5 (AP): APIC ID: 5 cpu6 (AP): APIC ID: 6 cpu7 (AP): APIC ID: 7 ioapic0 irqs 0-23 on motherboard kbd1 at kbdmux0 random: initialized acpi0: on motherboard acpi0: Power Button (fixed) cpu0: on acpi0 cpu1: on acpi0 cpu2: on acpi0 cpu3: on acpi0 cpu4: on acpi0 cpu5: on acpi0 cpu6: on acpi0 cpu7: on acpi0 hpet0: iomem 0xfed00000-0xfed003ff on acpi0 Timecounter "HPET" frequency 14318180 Hz quality 950 Event timer "HPET" frequency 14318180 Hz quality 550 atrtc0: port 0x70-0x77 irq 8 on acpi0 atrtc0: Warning: Couldn't map I/O. Event timer "RTC" frequency 32768 Hz quality 0 attimer0: port 0x40-0x43,0x50-0x53 irq 0 on acpi0 Timecounter "i8254" frequency 1193182 Hz quality 0 Event timer "i8254" frequency 1193182 Hz quality 100 Timecounter "ACPI-fast" frequency 3579545 Hz quality 900 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x1808-0x180b on acpi0 acpi_ec0: port 0x62,0x66 on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 pcib1: irq 16 at device 1.0 on pci0 pci1: on pcib1 vgapci0: port 0xf000-0xf03f mem 0xf7800000-0xf7bfffff,0xe0000000-0xefffffff irq 16 at device 2.0 on pci0 vgapci0: Boot video device hdac0: mem 0xf7e14000-0xf7e17fff irq 16 at device 3.0 on pci0 xhci0: mem 0xf7e00000-0xf7e0ffff irq 16 at device 20.0 on pci0 xhci0: 32 byte context size. xhci0: Port routing mask set to 0xffffffff usbus0 on xhci0 pci0: at device 22.0 (no driver attached) ehci0: mem 0xf7e1c000-0xf7e1c3ff irq 16 at device 26.0 on pci0 usbus1: EHCI version 1.0 usbus1 on ehci0 hdac1: mem 0xf7e10000-0xf7e13fff irq 22 at device 27.0 on pci0 pcib2: irq 16 at device 28.0 on pci0 pci2: on pcib2 pcib3: irq 18 at device 28.2 on pci0 pci3: on pcib3 iwn0: mem 0xf7d00000-0xf7d01fff irq 18 at device 0.0 on pci3 iwn0: adapter type 12 not supported iwn0: could not attach device, error 45 device_attach: iwn0 attach returned 45 pcib4: irq 19 at device 28.3 on pci0 pci4: on pcib4 pci4: at device 0.0 (no driver attached) re0: port 0xe000-0xe0ff mem 0xf0004000-0xf0004fff,0xf0000000-0xf0003fff irq 19 at device 0.2 on pci4 re0: Using 1 MSI-X message re0: turning off MSI enable bit. re0: Chip rev. 0x48800000 re0: MAC rev. 0x00000000 miibus0: on re0 rgephy0: PHY 1 on miibus0 rgephy0: none, 10baseT, 10baseT-FDX, 10baseT-FDX-flow, 100baseTX, 100baseTX-FDX, 100baseTX-FDX-flow, 1000baseT-FDX, 1000baseT-FDX-master, 1000baseT-FDX-flow, 1000baseT-FDX-flow-master, auto, auto-flow re0: Ethernet address: 00:90:f5:ef:4c:6f ehci1: mem 0xf7e1b000-0xf7e1b3ff irq 23 at device 29.0 on pci0 usbus2: EHCI version 1.0 usbus2 on ehci1 isab0: at device 31.0 on pci0 isa0: on isab0 ahci0: port 0xf0b0-0xf0b7,0xf0a0-0xf0a3,0xf090-0xf097,0xf080-0xf083,0xf060-0xf07f mem 0xf7e1a000-0xf7e1a7ff irq 19 at device 31.2 on pci0 ahci0: AHCI v1.30 with 4 6Gbps ports, Port Multiplier not supported ahcich0: at channel 0 on ahci0 ahcich2: at channel 2 on ahci0 ahcich5: at channel 5 on ahci0 ahciem0: on ahci0 pci0: at device 31.3 (no driver attached) acpi_button0: on acpi0 acpi_button1: on acpi0 acpi_lid0: on acpi0 acpi_acad0: on acpi0 battery0: on acpi0 acpi_tz0: on acpi0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: model Generic PS/2 mouse, device ID 0 orm0: at iomem 0xcf000-0xcffff on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 ppc0: cannot reserve I/O port range est0: on cpu0 p4tcc0: on cpu0 est1: on cpu1 p4tcc1: on cpu1 est2: on cpu2 p4tcc2: on cpu2 est3: on cpu3 p4tcc3: on cpu3 est4: on cpu4 p4tcc4: on cpu4 est5: on cpu5 p4tcc5: on cpu5 est6: on cpu6 p4tcc6: on cpu6 est7: on cpu7 p4tcc7: on cpu7 Timecounters tick every 1.000 msec hdacc0: at cad 0 on hdac0 hdaa0: at nid 1 on hdacc0 pcm0: at nid 5 on hdaa0 pcm1: at nid 6 on hdaa0 pcm2: at nid 7 on hdaa0 hdacc1: at cad 0 on hdac1 hdaa1: at nid 1 on hdacc1 pcm3: at nid 36,37 and 41 on hdaa1 pcm4: at nid 43 on hdaa1 random: unblocking device. usbus0: 5.0Gbps Super Speed USB v3.0 usbus1: 480Mbps High Speed USB v2.0 usbus2: 480Mbps High Speed USB v2.0 ugen1.1: at usbus1 uhub0: on usbus1 ugen0.1: <0x8086> at usbus0 uhub1: <0x8086 XHCI root HUB, class 9/0, rev 3.00/1.00, addr 1> on usbus0 ugen2.1: at usbus2 uhub2: on usbus2 ada0 at ahcich5 bus 0 scbus2 target 0 lun 0 ada0: ATA-8 SATA 3.x device ada0: Serial Number JA4000C0GK218C ada0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 8192bytes) ada0: Command Queueing enabled ada0: 953869MB (1953525168 512 byte sectors: 16H 63S/T 16383C) ada0: Previously was known as ad8 ses0 at ahciem0 bus 0 scbus3 target 0 lun 0 ses0: SEMB S-E-S 2.00 device ses0: SEMB SES Device cd0 at ahcich0 bus 0 scbus0 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: Serial Number R8XW6YAD900BDG cd0: 150.000MB/s transfers (SATA 1.x, UDMA5, ATAPI 12bytes, PIO 8192bytes) cd0: Attempt to query device size failed: NOT READY, Medium not present - tray closed Netvsc initializing... SMP: AP CPU #1 Launched! SMP: AP CPU #2 Launched! SMP: AP CPU #7 Launched! SMP: AP CPU #5 Launched! SMP: AP CPU #4 Launched! SMP: AP CPU #6 Launched! SMP: AP CPU #3 Launched! Timecounter "TSC-low" frequency 1396792908 Hz quality 1000 Root mount waiting for: usbus2 usbus1 usbus0 uhub1: 19 ports with 19 removable, self powered uhub2: 2 ports with 2 removable, self powered uhub0: 2 ports with 2 removable, self powered Root mount waiting for: usbus2 usbus1 usbus0 xhci0: Port routing mask set to 0x00000000 usb_alloc_device: device init 2 failed (USB_ERR_IOERROR, ignored) ugen0.2: at usbus0 (disconnected) uhub_reattach_port: could not allocate new device ugen1.2: at usbus1 uhub3: on usbus1 ugen2.2: at usbus2 uhub4: on usbus2 uhub3: 6 ports with 6 removable, self powered uhub4: 8 ports with 8 removable, self powered ugen1.3: at usbus1 Root mount waiting for: usbus1 ugen1.4: at usbus1 Trying to mount root from ufs:/dev/ada0p3 [rw]... ubt0: on usbus1 WARNING: attempt to domain_add(bluetooth) after domainfinalize() WARNING: attempt to domain_add(netgraph) after domainfinalize() ugen1.5: at usbus1 ums0: on usbus1 ums0: 2 buttons and [XY] coordinates ID=0 pid 17280 (gnumeric-1.12.9), uid 1001: exited on signal 11 (core dumped) >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 12:47:20 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E72DCB47; Fri, 3 Jan 2014 12:47:20 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BB28A1884; Fri, 3 Jan 2014 12:47:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03ClK21006031; Fri, 3 Jan 2014 12:47:20 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03ClKnD006030; Fri, 3 Jan 2014 12:47:20 GMT (envelope-from antoine) Date: Fri, 3 Jan 2014 12:47:20 GMT Message-Id: <201401031247.s03ClKnD006030@freefall.freebsd.org> To: tkato432@yahoo.com, antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/181893: print/typetools: Update to version 2.99 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 12:47:21 -0000 Synopsis: print/typetools: Update to version 2.99 State-Changed-From-To: open->closed State-Changed-By: antoine State-Changed-When: Fri Jan 3 12:46:50 UTC 2014 State-Changed-Why: Take, I have some patches to make it build with clang http://www.freebsd.org/cgi/query-pr.cgi?pr=181893 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 12:48:07 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 40156B88; Fri, 3 Jan 2014 12:48:07 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 13E88188A; Fri, 3 Jan 2014 12:48:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Cm6Ou006091; Fri, 3 Jan 2014 12:48:06 GMT (envelope-from antoine@freefall.freebsd.org) Received: (from antoine@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Cm6Sm006090; Fri, 3 Jan 2014 12:48:06 GMT (envelope-from antoine) Date: Fri, 3 Jan 2014 12:48:06 GMT Message-Id: <201401031248.s03Cm6Sm006090@freefall.freebsd.org> To: tkato432@yahoo.com, antoine@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, antoine@FreeBSD.org From: antoine@FreeBSD.org Subject: Re: ports/181893: print/typetools: Update to version 2.99 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 12:48:07 -0000 Synopsis: print/typetools: Update to version 2.99 State-Changed-From-To: closed->open State-Changed-By: antoine State-Changed-When: Fri Jan 3 12:47:30 UTC 2014 State-Changed-Why: Take, I have some patches to make it build with clang Responsible-Changed-From-To: freebsd-ports-bugs->antoine Responsible-Changed-By: antoine Responsible-Changed-When: Fri Jan 3 12:47:30 UTC 2014 Responsible-Changed-Why: Take, I have some patches to make it build with clang http://www.freebsd.org/cgi/query-pr.cgi?pr=181893 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 13:40:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E20E5579 for ; Fri, 3 Jan 2014 13:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BBCA81CD8 for ; Fri, 3 Jan 2014 13:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03De1NI016883 for ; Fri, 3 Jan 2014 13:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03De1Kp016882; Fri, 3 Jan 2014 13:40:01 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 13:40:01 GMT Resent-Message-Id: <201401031340.s03De1Kp016882@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, Vladimir Chukharev Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D7391439 for ; Fri, 3 Jan 2014 13:36:46 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A8B141CB4 for ; Fri, 3 Jan 2014 13:36:46 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s03DakuB038315 for ; Fri, 3 Jan 2014 13:36:46 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s03Daksv038314; Fri, 3 Jan 2014 13:36:46 GMT (envelope-from nobody) Message-Id: <201401031336.s03Daksv038314@oldred.freebsd.org> Date: Fri, 3 Jan 2014 13:36:46 GMT From: Vladimir Chukharev To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185443: [Maintainer Update] devel/py-robotframework-selenium2library 1.4.0 -> 1.5.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 13:40:01 -0000 >Number: 185443 >Category: ports >Synopsis: [Maintainer Update] devel/py-robotframework-selenium2library 1.4.0 -> 1.5.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: Fri Jan 03 13:40:01 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Vladimir Chukharev >Release: 9.2-STABLE >Organization: >Environment: FreeBSD vovaasus 9.2-STABLE FreeBSD 9.2-STABLE #7 r259028: Sun Dec 8 14:46:24 EET 2013 root@vovaasus:/usr/obj/usr/src/sys/VOVA amd64 >Description: Update devel/py-robotframework-selenium2library version 1.4.0 to version 1.5.0. Changes made within the 1.5 release include ... - Added new 'Create Webdriver' keyword to allow greater control of local WebDrivers, such as setting a proxy or using Chrome options. - Added support for Safari Browser. - Copy Desired Capabilities before modifying to prevent affecting future sesions. - Fixed Mouse Up keyword attempting to click and hold one more time before release. - Refixed issue with parsing desired capabilities. - Fixed compatibility with RobotFramework v2.8.1 - Modified how internal tests are run and ignore known browser issues. Known Issues: - There is currently an issue with Firefox and 'Click Element At Coordinates' (added in Selenium2Library 1.3.0) does not currently work at Firefox. If this keyword is used in Firefox it will behave in same manner as the Click Element keyword (which always click in the center of an element). >How-To-Repeat: >Fix: Delete file pkp-plist ('svn diff' does not show this on a read-only work copy) and apply the attached patch. Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 338534) +++ Makefile (working copy) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= robotframework-selenium2library -PORTVERSION= 1.4.0 +PORTVERSION= 1.5.0 CATEGORIES= devel www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,7 +16,7 @@ ${PYTHON_PKGNAMEPREFIX}decorator>=3.4.0:${PORTSDIR}/devel/py-decorator USE_PYTHON= -2.7 -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes +PYDISTUTILS_AUTOPLIST= yes -NO_STAGE= yes .include Index: distinfo =================================================================== --- distinfo (revision 338534) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (robotframework-selenium2library-1.4.0.tar.gz) = 028729f29a3f3c7ae2fd71020a584da6a83a7b8c1db75dd3a5e4f8c87297ffe5 -SIZE (robotframework-selenium2library-1.4.0.tar.gz) = 215011 +SHA256 (robotframework-selenium2library-1.5.0.tar.gz) = e173cb9a6cc8b831ec9a96a702ea36a450e599fd88a9c9d675581a7352565542 +SIZE (robotframework-selenium2library-1.5.0.tar.gz) = 216937 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 13:40:10 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8DF6A5BD; Fri, 3 Jan 2014 13:40:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 629BD1CDA; Fri, 3 Jan 2014 13:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03DeAOx018588; Fri, 3 Jan 2014 13:40:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03DeAVI018587; Fri, 3 Jan 2014 13:40:10 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 13:40:10 GMT Message-Id: <201401031340.s03DeAVI018587@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185443: [Maintainer Update] devel/py-robotframework-selenium2library 1.4.0 -> 1.5.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 13:40:10 -0000 Synopsis: [Maintainer Update] devel/py-robotframework-selenium2library 1.4.0 -> 1.5.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 3 13:40:10 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185443 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 14:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E39FE87 for ; Fri, 3 Jan 2014 14:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7F2B01024 for ; Fri, 3 Jan 2014 14:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03EA1v4023022 for ; Fri, 3 Jan 2014 14:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03EA18i023021; Fri, 3 Jan 2014 14:10:01 GMT (envelope-from gnats) Date: Fri, 3 Jan 2014 14:10:01 GMT Message-Id: <201401031410.s03EA18i023021@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Mikhail Tsatsenko Subject: Re: ports/185439: security/openvpn-auth-radius: Fix build with clang X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Mikhail Tsatsenko List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 14:10:01 -0000 The following reply was made to PR ports/185439; it has been noted by GNATS. From: Mikhail Tsatsenko To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/185439: security/openvpn-auth-radius: Fix build with clang Date: Fri, 3 Jan 2014 18:06:52 +0400 --20cf307ca5340bea3d04ef116cad Content-Type: text/plain; charset=ISO-8859-1 Thanks for your work. Updated patch attached: - Fix build on 10.x and later - Pet portlint - Enable staging -- Mikhail --20cf307ca5340bea3d04ef116cad Content-Type: text/plain; charset=US-ASCII; name="openvpn-auth-radius.txt" Content-Disposition: attachment; filename="openvpn-auth-radius.txt" Content-Transfer-Encoding: base64 X-Attachment-Id: f_hpzinjdx0 SW5kZXg6IG9wZW52cG4tYXV0aC1yYWRpdXMvTWFrZWZpbGUKPT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQotLS0gb3BlbnZw bi1hdXRoLXJhZGl1cy9NYWtlZmlsZQkocmV2aXNpb24gMjEyODcpCisrKyBvcGVudnBuLWF1dGgt cmFkaXVzL01ha2VmaWxlCShyZXZpc2lvbiAyMTI5NSkKQEAgLTEyLDExICsxMiwxMSBAQAogTUFJ TlRBSU5FUj0JbS50c2F0c2Vua29AZ21haWwuY29tCiBDT01NRU5UPQlSQURJVVMgYXV0aGVudGlj YXRpb24gcGx1Z2luIGZvciBPcGVuVlBOCiAKK0xJQ0VOU0U9CUdQTHYyCisKIFJVTl9ERVBFTkRT PQlvcGVudnBuOiR7UE9SVFNESVJ9L3NlY3VyaXR5L29wZW52cG4KIExJQl9ERVBFTkRTPQlnY3J5 cHQ6JHtQT1JUU0RJUn0vc2VjdXJpdHkvbGliZ2NyeXB0CiAKLUxJQ0VOU0U9CUdQTHYyCi0KIFVT RV9HTUFLRT0JeWVzCiBNQUtFRklMRT0JTWFrZWZpbGUuYnNkCiBXUktTUkM9CQkke1dSS0RJUn0v cmFkaXVzcGx1Z2luCkBAIC0yNSwyMCArMjUsMTkgQEAKIFBPUlRFWEFNUExFUz0JcmFkaXVzcGx1 Z2luLmNuZgogUExJU1RfRklMRVM9CWxpYi9yYWRpdXNwbHVnaW4uc28KIAotTk9fU1RBR0U9CXll cwogLmluY2x1ZGUgPGJzZC5wb3J0LnByZS5taz4KIAogZG8taW5zdGFsbDoKLQkke0lOU1RBTExf TElCfSAke1dSS1NSQ30vcmFkaXVzcGx1Z2luLnNvICR7TE9DQUxCQVNFfS9saWIKKwkke0lOU1RB TExfTElCfSAke1dSS1NSQ30vcmFkaXVzcGx1Z2luLnNvICR7U1RBR0VESVJ9JHtMT0NBTEJBU0V9 L2xpYgogCiBwb3N0LWluc3RhbGw6Ci0uaWYgIWRlZmluZWQoTk9QT1JURE9DUykKLQkke01LRElS fSAke0RPQ1NESVJ9Ci0JJHtJTlNUQUxMX0RBVEF9ICR7V1JLU1JDfS9SRUFETUUgJHtET0NTRElS fQorLmlmICR7UE9SVF9PUFRJT05TOk1ET0NTfQorCSR7TUtESVJ9ICR7U1RBR0VESVJ9JHtET0NT RElSfQorCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vUkVBRE1FICR7U1RBR0VESVJ9JHtET0NT RElSfQogLmVuZGlmCi0uaWYgIWRlZmluZWQoTk9QT1JURVhBTVBMRVMpCi0JJHtNS0RJUn0gJHtF WEFNUExFU0RJUn0KLQkke0lOU1RBTExfREFUQX0gJHtXUktTUkN9L3JhZGl1c3BsdWdpbi5jbmYg JHtFWEFNUExFU0RJUn0KKy5pZiAke1BPUlRfT1BUSU9OUzpNRVhBTVBMRVN9CisJJHtNS0RJUn0g JHtTVEFHRURJUn0ke0VYQU1QTEVTRElSfQorCSR7SU5TVEFMTF9EQVRBfSAke1dSS1NSQ30vcmFk aXVzcGx1Z2luLmNuZiAke1NUQUdFRElSfSR7RVhBTVBMRVNESVJ9CiAuZW5kaWYKIAogLmluY2x1 ZGUgPGJzZC5wb3J0LnBvc3QubWs+CkluZGV4OiBvcGVudnBuLWF1dGgtcmFkaXVzL2ZpbGVzL3Bh dGNoLU1ha2VmaWxlLmJzZAo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09Ci0tLSBvcGVudnBuLWF1dGgtcmFkaXVzL2ZpbGVz L3BhdGNoLU1ha2VmaWxlLmJzZAkocmV2aXNpb24gMCkKKysrIG9wZW52cG4tYXV0aC1yYWRpdXMv ZmlsZXMvcGF0Y2gtTWFrZWZpbGUuYnNkCShyZXZpc2lvbiAyMTI5NSkKQEAgLTAsMCArMSw5IEBA CistLS0gLi9NYWtlZmlsZS5ic2Qub3JpZwkyMDEwLTA0LTA2IDE5OjA3OjMzLjAwMDAwMDAwMCAr MDIwMAorKysrIC4vTWFrZWZpbGUuYnNkCTIwMTQtMDEtMDMgMTE6Mjk6MzYuMDAwMDAwMDAwICsw MTAwCitAQCAtMSw0ICsxLDQgQEAKKy1DQz1nKysKKytDQz89ZysrCisgSU5DTD0tSS91c3IvbG9j YWwvaW5jbHVkZQorIExERkxBR1M9LUwvdXNyL2xvY2FsL2xpYgorIExJQlM9LWxnY3J5cHQgLWxn cGctZXJyb3IgLWxzdGRjKysgLWxtIC1scHRocmVhZAorCg== --20cf307ca5340bea3d04ef116cad-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 14:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9B021E83 for ; Fri, 3 Jan 2014 14:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 745901021 for ; Fri, 3 Jan 2014 14:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03EA0Bd022961 for ; Fri, 3 Jan 2014 14:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03EA0N0022960; Fri, 3 Jan 2014 14:10:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 14:10:00 GMT Resent-Message-Id: <201401031410.s03EA0N0022960@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, Hardy Schumacher Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF7A2D29 for ; Fri, 3 Jan 2014 14:07:00 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CA65D1FF2 for ; Fri, 3 Jan 2014 14:07:00 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s03E70nO043563 for ; Fri, 3 Jan 2014 14:07:00 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s03E70bS043559; Fri, 3 Jan 2014 14:07:00 GMT (envelope-from nobody) Message-Id: <201401031407.s03E70bS043559@oldred.freebsd.org> Date: Fri, 3 Jan 2014 14:07:00 GMT From: Hardy Schumacher To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185444: [NEW PORT] games/wesnoth-devel X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 14:10:00 -0000 >Number: 185444 >Category: ports >Synopsis: [NEW PORT] games/wesnoth-devel >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 Jan 03 14:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Hardy Schumacher >Release: FreeBSD-9.2 >Organization: >Environment: FreeBSD gamma.low.org 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255996: Thu Oct 3 20:40:04 CEST 2013 root@gamma.low.org:/usr/obj/usr/src/sys/LOW_GAMMA i386 >Description: Wesnoth development team provides two versions for the game: one is the stable versin, which has already a port games/wesnoth, and one is the development version. To support both versions, for testing purposes, it is recommended to add a port for the devel version (similar to other ports). >How-To-Repeat: n/a >Fix: Patch attached with submission follows: diff -ruN /usr/ports/games/wesnoth-devel/Makefile ./wesnoth-devel/Makefile --- /usr/ports/games/wesnoth-devel/Makefile 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/Makefile 2014-01-03 14:57:31.000000000 +0100 @@ -0,0 +1,174 @@ +# $FreeBSD: head/games/wesnoth/Makefile 336255 2013-12-12 11:14:49Z bapt $ + +PORTNAME= wesnoth +PORTVERSION= 1.11.7 +CATEGORIES= games +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \ + http://files.wesnoth.org/ +PKGNAMESUFFIX= -devel + +MAINTAINER= rnejdl@ringofsaturn.com +COMMENT= Fantasy turn-based strategy game + +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/COPYING + +BUILD_DEPENDS= ${LOCALBASE}/lib/X11/fonts/junicode/Junicode.ttf:${PORTSDIR}/x11-fonts/junicode +LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \ + libpng15.so:${PORTSDIR}/graphics/png + +CONFLICTS= wesnoth-[0-9]* + +USE_SDL= image mixer net ttf +USE_GNOME= pango desktopfileutils +USE_BZIP2= yes +USES= cmake pkgconfig +CMAKE_ARGS= -DMANDIR="man" + +MAN6= wesnoth.6 + +PORTDOCS= * +PORTDATA= * + +OPTIONS_DEFINE= ANA CAMPAIGN FRIBIDI LOWMEM NOTIFY OPENMP POOLALLOC PYTHON \ + RAWSOCKETS SERVER TESTS TOOLS + +OPTIONS_DEFAULT= CAMPAIGN FRIBIDI NOTIFY SERVER TOOLS + +ANA_DESC= Asynchronous Network API (WIP) +CAMPAIGN_DESC= Campaign server +FRIBIDI_DESC= Bidirectional support +LOWMEM_DESC= Reduce memory usage (disables animations) +NOTIFY_DESC= Desktop notifications +OPENMP_DESC= OpenMP support +POOLALLOC_DESC= Use wesnoth own memory allocator +PYTHON_DESC= Python developer tools +RAWSOCKETS_DESC= Use raw receiving sockets in multiplayer +SERVER_DESC= Server +TESTS_DESC= Unit tests +TOOLS_DESC= Extra tools for artists and translators + +NO_STAGE= yes +.include + +# XXX: breaks compilation because of -Werror +.if empty(PORT_OPTIONS:MSTRICT) +CMAKE_ARGS+= -DENABLE_STRICT_COMPILATION=off +.endif + +.if ${PORT_OPTIONS:MANA} +CMAKE_ARGS+= -DUSE_ANA_NETWORK=on +.else +CMAKE_ARGS+= -DUSE_ANA_NETWORK=off +.endif + +.if ${PORT_OPTIONS:MCAMPAIGN} +CMAKE_ARGS+= -DENABLE_CAMPAIGN_SERVER=on +PLIST_SUB+= CAMPAIGN="" +.else +CMAKE_ARGS+= -DENABLE_CAMPAIGN_SERVER=off +PLIST_SUB+= CAMPAIGN="@comment " +.endif + +.if ${PORT_OPTIONS:MFRIBIDI} +CMAKE_ARGS+= -DENABLE_FRIBIDI=on +LIB_DEPENDS+= fribidi:${PORTSDIR}/converters/fribidi +.else +CMAKE_ARGS+= -DENABLE_FRIBIDI=off +.endif + +.if ${PORT_OPTIONS:MLOWMEM} +CMAKE_ARGS+= -DENABLE_LOW_MEM=on +.else +CMAKE_ARGS+= -DENABLE_LOW_MEM=off +.endif + +.if ${PORT_OPTIONS:MNOTIFY} +CMAKE_ARGS+= -DENABLE_NOTIFICATIONS=on +LIB_DEPENDS+= dbus-1:${PORTSDIR}/devel/dbus +.else +CMAKE_ARGS+= -DENABLE_NOTIFICATIONS=off +.endif + +.if ${PORT_OPTIONS:MNLS} +CMAKE_ARGS+= -DENABLE_NLS=on -DLOCALEDIR=${PREFIX}/share/locale +USES+= gettext +MANLANG= "" cs de en_GB es et fi fr gl hu id it lt pl ru sk \ + sr sr@ijekavian sr@ijekavianlatin sr@latin vi zh_CN zh_TW +.if ${PORT_OPTIONS:MSERVER} +_MANPAGES+= ${PREFIX}/man/ja/man6/wesnothd.6 \ + ${PREFIX}/man/pt_BR/man6/wesnothd.6 \ + ${PREFIX}/man/tr/man6/wesnothd.6 +.endif +PLIST_SUB+= NLS="" +.else +CMAKE_ARGS+= -DENABLE_NLS=off +PLIST_SUB+= NLS="@comment " +.endif + +.if ${PORT_OPTIONS:MOPENMP} +CMAKE_ARGS+= -DENABLE_OMP=on +.else +CMAKE_ARGS+= -DENABLE_OMP=off +.endif + +.if ${PORT_OPTIONS:MPOOLALLOC} +CMAKE_ARGS+= -DENABLE_POOL_ALLOC=on +BROKEN= does not build with pool alloc +.else +CMAKE_ARGS+= -DENABLE_POOL_ALLOC=off +.endif + +.if ${PORT_OPTIONS:MPYTHON} +BROKEN= cmake build doesn't support installing python tools +USE_PYTHON= yes +CONFIGURE_ENV+= PYTHON_PREFIX=${PREFIX} \ + PYTHON_VERSION=${PYTHON_VERSION:S/python//} +CONFIGURE_ARGS+=--enable-python-install +PLIST_SUB+= PYTHON="" +.else +PLIST_SUB+= PYTHON="@comment " +.endif + +.if ${PORT_OPTIONS:MRAWSOCKETS} +CFLAGS+= -DNETWORK_USE_RAW_SOCKETS +.endif + +.if ${PORT_OPTIONS:MSERVER} +CMAKE_ARGS+= -DENABLE_SERVER=on +MAN6+= wesnothd.6 +PLIST_SUB+= SERVER="" +.else +CMAKE_ARGS+= -DENABLE_SERVER=off +PLIST_SUB+= SERVER="@comment " +.endif + +.if ${PORT_OPTIONS:MTESTS} +CMAKE_ARGS+= -DENABLE_TESTS=on +PLIST_SUB+= TESTS="" +.else +CMAKE_ARGS+= -DENABLE_TESTS=off +PLIST_SUB+= TESTS="@comment " +.endif + +.if ${PORT_OPTIONS:MTOOLS} +CMAKE_ARGS+= -DENABLE_TOOLS=on +PLIST_SUB+= TOOLS="" +.else +CMAKE_ARGS+= -DENABLE_TOOLS=off +PLIST_SUB+= TOOLS="@comment " +.endif + +.if empty(PORT_OPTIONS:MDOCS) +CMAKE_ARGS+= -DDOCDIR=none +.endif + +pre-build: + ${CP} ${LOCALBASE}/lib/X11/fonts/junicode/Junicode.ttf \ + ${WRKSRC}/fonts/Junicode-Regular.ttf + +post-install: + -@update-desktop-database ${PREFIX}/share/applications + +.include diff -ruN /usr/ports/games/wesnoth-devel/distinfo ./wesnoth-devel/distinfo --- /usr/ports/games/wesnoth-devel/distinfo 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/distinfo 2014-01-02 17:06:23.000000000 +0100 @@ -0,0 +1,2 @@ +SHA256 (wesnoth-1.11.7.tar.bz2) = fb450063da576f8bd2a5de37b5072803ca499f36ffcc5814ec52e595847e636d +SIZE (wesnoth-1.11.7.tar.bz2) = 386014045 diff -ruN /usr/ports/games/wesnoth-devel/files/patch-CMakeLists.txt ./wesnoth-devel/files/patch-CMakeLists.txt --- /usr/ports/games/wesnoth-devel/files/patch-CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/files/patch-CMakeLists.txt 2014-01-03 13:41:26.000000000 +0100 @@ -0,0 +1,60 @@ +--- CMakeLists.txt.orig 2013-11-16 09:48:26.000000000 +0100 ++++ CMakeLists.txt 2014-01-03 13:40:44.000000000 +0100 +@@ -24,10 +24,12 @@ + find_package(Boost 1.36 REQUIRED COMPONENTS iostreams program_options regex system) + + # no, gettext executables are not required when NLS is deactivated ++if(ENABLE_NLS) + find_package(Gettext) + # yes, libintl is *required* even when NLS is deactivated (this is to compile + # src/gettext.cpp since it includes libintl.h) + find_package(Libintl REQUIRED) ++endif(ENABLE_NLS) + + find_package(X11) + +@@ -77,7 +79,7 @@ + option(ENABLE_GAME "Enable compilation of the game" ON) + option(ENABLE_CAMPAIGN_SERVER "Enable compilation of campaign server") + option(ENABLE_SERVER "Enable compilation of server" ON) +-option(ENABLE_TOOLS "Enable building and installation of tools for artists and WML maintainers") ++option(ENABLE_TOOLS "Enable building and installation of tools for artists and WML maintainers" OFF) + option(ENABLE_TESTS "Build unit tests") + option(ENABLE_NLS "Enable building of translations" ON) + option(ENABLE_LOW_MEM "Reduce memory usage by removing extra functionality" OFF) +@@ -433,6 +435,11 @@ + add_definitions(-D_X11) + endif(X11_FOUND) + ++if(ENABLE_NLS) ++ set(CMAKE_C_FLAGS "-DENABLE_NLS ${CMAKE_C_FLAGS}") ++ set(CMAKE_CXX_FLAGS "-DENABLE_NLS ${CMAKE_CXX_FLAGS}") ++endif(ENABLE_NLS) ++ + add_definitions(-DLOCALEDIR=\\\"${LOCALEDIR}\\\") + + # When the path starts with a / on a Unix system it's an absolute path. +@@ -440,6 +447,7 @@ + if(LOCALEDIR MATCHES "^/") + add_definitions(-DHAS_RELATIVE_LOCALEDIR=0) + set(LOCALE_INSTALL ${LOCALEDIR}) ++ set(LOCALEDIR "translations") + else(LOCALEDIR MATCHES "^/") + add_definitions(-DHAS_RELATIVE_LOCALEDIR=1) + set(LOCALE_INSTALL ${DATADIR}/${LOCALEDIR}) +@@ -505,10 +513,14 @@ + find_package( Boost 1.36 REQUIRED COMPONENTS unit_test_framework ) + endif(ENABLE_TESTS) + if(ENABLE_GAME) +- find_package( FriBiDi ) ++ pkg_check_modules( FRIBIDI fribidi>=0.19.0 ) + if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES) + add_definitions(-DHAVE_FRIBIDI) + elseif(ENABLE_FRIBIDI AND NOT FRIBIDI_LIBRARIES) ++ pkg_check_modules( FRIBIDI fribidi ) ++ if(FRIBIDI_LIBRARIES) ++ add_definitions(-DOLD_FRIBIDI) ++ endif(FRIBIDI_LIBRARIES) + message("Could not find FriBiDi. Disabling FriBiDi support.") + endif() + diff -ruN /usr/ports/games/wesnoth-devel/files/patch-doc-CMakeLists.txt ./wesnoth-devel/files/patch-doc-CMakeLists.txt --- /usr/ports/games/wesnoth-devel/files/patch-doc-CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/files/patch-doc-CMakeLists.txt 2014-01-03 13:50:21.000000000 +0100 @@ -0,0 +1,8 @@ +--- doc/CMakeLists.txt.orig 2013-11-16 09:48:28.000000000 +0100 ++++ doc/CMakeLists.txt 2014-01-03 13:49:28.000000000 +0100 +@@ -1,3 +1,5 @@ + add_subdirectory(design) + add_subdirectory(man) ++if(NOT DOCDIR STREQUAL "none") + add_subdirectory(manual) ++endif(NOT DOCDIR STREQUAL "none") diff -ruN /usr/ports/games/wesnoth-devel/files/patch-po-CMakeLists.txt ./wesnoth-devel/files/patch-po-CMakeLists.txt --- /usr/ports/games/wesnoth-devel/files/patch-po-CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/files/patch-po-CMakeLists.txt 2014-01-03 13:54:57.000000000 +0100 @@ -0,0 +1,24 @@ +--- po/CMakeLists.txt.orig 2013-11-16 09:48:28.000000000 +0100 ++++ po/CMakeLists.txt 2014-01-03 13:54:27.000000000 +0100 +@@ -246,9 +246,6 @@ + COMMENT "mo-update [${DOMAIN}-${LINGUA}]: Creating mo file." + ) + +- install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo +- DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES) +- + set(mo-update-SRC ${mo-update-SRC} + ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo + ) +@@ -258,6 +255,11 @@ + + endforeach(DOMAIN ${DOMAINS}) + ++ foreach(DOMAIN ${NORMAL_DOMAINS}) ++ install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo ++ DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES) ++ endforeach(DOMAIN ${NORMAL_DOMAINS}) ++ + if(ENABLE_POT_UPDATE_TARGET) + add_custom_target(mo-update-${LINGUA} + COMMENT "mo-update ${LINGUA}: Done." diff -ruN /usr/ports/games/wesnoth-devel/files/patch-src-CMakeLists.txt ./wesnoth-devel/files/patch-src-CMakeLists.txt --- /usr/ports/games/wesnoth-devel/files/patch-src-CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/files/patch-src-CMakeLists.txt 2014-01-03 14:29:28.000000000 +0100 @@ -0,0 +1,46 @@ +--- src/CMakeLists.txt.orig 2013-11-16 09:48:33.000000000 +0100 ++++ src/CMakeLists.txt 2014-01-03 14:28:50.000000000 +0100 +@@ -126,7 +126,7 @@ + ) + + if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES) +- include_directories(SYSTEM ${FRIBIDI_INCLUDE_DIR} ) ++ include_directories(SYSTEM ${FRIBIDI_INCLUDE_DIRS} ) + set(game-external-libs ${game-external-libs} ${FRIBIDI_LIBRARIES}) + endif(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES) + +@@ -313,7 +313,7 @@ + if(CMAKE_COMPILER_IS_GNUCXX) + set_target_properties(wesnoth-lua + PROPERTIES COMPILE_FLAGS +- "-Wno-old-style-cast -Wno-useless-cast" ++ "-Wno-old-style-cast" + ) + set_source_files_properties( + clipboard.cpp +@@ -325,7 +325,7 @@ + desktop_util.cpp + text.cpp + PROPERTIES +- COMPILE_FLAGS "-Wno-old-style-cast -Wno-useless-cast") ++ COMPILE_FLAGS "-Wno-old-style-cast") + endif(CMAKE_COMPILER_IS_GNUCXX) + + ########### Helper libraries ############### +@@ -1221,7 +1221,7 @@ + boost_unit_test_framework + ) + set_target_properties(test +- PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}test${BINARY_SUFFIX} ++ PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}wesnoth_test${BINARY_SUFFIX} + ) + + if(ENABLE_TOOLS) +@@ -1241,5 +1241,7 @@ + set_target_properties(create_images PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}create_images${BINARY_SUFFIX}) + endif(ENABLE_TOOLS) + ++ install(TARGETS test DESTINATION ${BINDIR}) ++ + endif(ENABLE_TESTS) + diff -ruN /usr/ports/games/wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt ./wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt --- /usr/ports/games/wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt 2014-01-03 14:05:08.000000000 +0100 @@ -0,0 +1,34 @@ +--- src/ana/src/CMakeLists.txt.orig 2013-11-16 09:48:33.000000000 +0100 ++++ src/ana/src/CMakeLists.txt 2014-01-03 14:04:12.000000000 +0100 +@@ -3,7 +3,7 @@ + + find_package(Boost 1.35 REQUIRED COMPONENTS thread system) + +-set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -ggdb3") ++set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}") + + set(common_srcs asio_listener.cpp asio_sender.cpp asio_timers.cpp) + +@@ -19,11 +19,11 @@ + + set(CMAKE_INSTALL_PREFIX /usr/local) + +-if(NOT MSVC) ++if(FALSE) + set(CMAKE_INSTALL_PREFIX /usr/local) + install(TARGETS ana LIBRARY DESTINATION lib) + install(TARGETS ana-static ARCHIVE DESTINATION lib) +-endif(NOT MSVC) ++endif(FALSE) + + set(ana_headers + ../api/ana.hpp +@@ -34,6 +34,6 @@ + ../api/binary_streams.hpp + ) + +-if(NOT MSVC) ++if(FALSE) + install(FILES ${ana_headers} DESTINATION include/ana) +-endif(NOT MSVC) ++endif(FALSE) diff -ruN /usr/ports/games/wesnoth-devel/files/patch-src-chat_events.hpp ./wesnoth-devel/files/patch-src-chat_events.hpp --- /usr/ports/games/wesnoth-devel/files/patch-src-chat_events.hpp 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/files/patch-src-chat_events.hpp 2014-01-03 14:08:30.000000000 +0100 @@ -0,0 +1,10 @@ +--- src/chat_events.hpp.orig 2013-11-16 09:48:33.000000000 +0100 ++++ src/chat_events.hpp 2014-01-03 14:07:40.000000000 +0100 +@@ -20,6 +20,7 @@ + + #include + #include ++#include + + namespace events { + diff -ruN /usr/ports/games/wesnoth-devel/files/patch-src-gettext.cpp ./wesnoth-devel/files/patch-src-gettext.cpp --- /usr/ports/games/wesnoth-devel/files/patch-src-gettext.cpp 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/files/patch-src-gettext.cpp 2014-01-03 14:12:02.000000000 +0100 @@ -0,0 +1,15 @@ +--- src/gettext.cpp.orig 2013-11-16 09:48:33.000000000 +0100 ++++ src/gettext.cpp 2014-01-03 14:11:18.000000000 +0100 +@@ -18,6 +18,12 @@ + + #include + ++#ifndef ENABLE_NLS ++char *textdomain (const char *domainname) { ++ return "dummy"; ++} ++#endif ++ + char const *egettext(char const *msgid) + { + return msgid[0] == '\0' ? msgid : gettext(msgid); diff -ruN /usr/ports/games/wesnoth-devel/files/patch-src-gettext.hpp ./wesnoth-devel/files/patch-src-gettext.hpp --- /usr/ports/games/wesnoth-devel/files/patch-src-gettext.hpp 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/files/patch-src-gettext.hpp 2014-01-03 14:15:43.000000000 +0100 @@ -0,0 +1,25 @@ +--- src/gettext.hpp.orig 2013-11-16 09:48:33.000000000 +0100 ++++ src/gettext.hpp 2014-01-03 14:15:01.000000000 +0100 +@@ -35,7 +35,21 @@ + + // gettext-related declarations + +-#include ++#include "wesconfig.h" ++ ++#ifdef ENABLE_NLS ++# include ++#else ++# define bind_textdomain_codeset(Domain, Codeset) "C" ++# define bindtextdomain(Domain, Directory) "/nonexistent" ++# define gettext(String) gettext_noop(String) ++# define ngettext(Singular, Plural, Number) gettext_noop(Number == 1 ? Singular : Plural) ++# define dgettext(Domain, String) gettext_noop(String) ++# define dngettext(Domain, Singular, Plural, Number) gettext_noop(Number == 1 ? Singular : Plural) ++# define dcgettext(Domain, String, Category) gettext_noop(String) ++# define dcngettext(Domain, Singular, Plural, Number, Category) gettext_noop(Number == 1 ? Singular : Plural) ++char *textdomain (const char *domainname); ++#endif + + #ifdef setlocale + // Someone in libintl world decided it was a good idea to define a "setlocale" macro. diff -ruN /usr/ports/games/wesnoth-devel/files/patch-src-server-user_handler.cpp ./wesnoth-devel/files/patch-src-server-user_handler.cpp --- /usr/ports/games/wesnoth-devel/files/patch-src-server-user_handler.cpp 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/files/patch-src-server-user_handler.cpp 2014-01-03 14:20:55.000000000 +0100 @@ -0,0 +1,10 @@ +--- src/server/user_handler.cpp.orig 2013-11-16 09:48:33.000000000 +0100 ++++ src/server/user_handler.cpp 2014-01-03 14:20:18.000000000 +0100 +@@ -17,6 +17,7 @@ + #include "serialization/string_utils.hpp" + + #include ++#include + + bool user_handler::send_mail(const std::string& to_user, + const std::string& /*subject*/, const std::string& /*message*/) { diff -ruN /usr/ports/games/wesnoth-devel/pkg-descr ./wesnoth-devel/pkg-descr --- /usr/ports/games/wesnoth-devel/pkg-descr 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/pkg-descr 2014-01-02 16:24:10.000000000 +0100 @@ -0,0 +1,7 @@ +Battle for Wesnoth is a fantasy turn-based strategy game. Battle for control of +villages, using variety of units which have advantages and disadvantages in +different types of terrains and against different types of attacks. Units gain +experience and advance levels, and are carried over from one scenario to the +next campaign. + +WWW: http://www.wesnoth.org/ diff -ruN /usr/ports/games/wesnoth-devel/pkg-plist ./wesnoth-devel/pkg-plist --- /usr/ports/games/wesnoth-devel/pkg-plist 1970-01-01 01:00:00.000000000 +0100 +++ ./wesnoth-devel/pkg-plist 2014-01-02 16:24:10.000000000 +0100 @@ -0,0 +1,1607 @@ +%%CAMPAIGN%%bin/campaignd +%%TOOLS%%bin/cutter +%%TOOLS%%bin/exploder +%%TOOLS%%bin/schema_generator +%%TOOLS%%bin/schema_validator +bin/wesnoth +%%PYTHON%%%%TOOLS%%bin/wesnoth_addon_manager +%%TESTS%%bin/wesnoth_test +%%SERVER%%bin/wesnothd +%%PYTHON%%%%TOOLS%%bin/wmlindent +%%PYTHON%%%%TOOLS%%bin/wmllint +%%PYTHON%%%%TOOLS%%bin/wmlscope +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.pyo +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.py +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyc +%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyo +share/applications/wesnoth.desktop +share/applications/wesnoth_editor.desktop +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-anl.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-aoi.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-did.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dm.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dw.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-help.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-l.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-lib.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-multiplayer.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-nr.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-sof.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-sotbe.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-tb.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-test.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-thot.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-trow.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-tsg.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-tutorial.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-units.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-utbs.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth.mo +share/pixmaps/wesnoth-icon.png +share/pixmaps/wesnoth_editor-icon.png +%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/wesnoth +@dirrmtry man/af/man6 +@dirrmtry man/af +@dirrmtry man/ang/man6 +@dirrmtry man/ang +@dirrmtry man/ang@latin/man6 +@dirrmtry man/ang@latin +@dirrmtry man/ar/man6 +@dirrmtry man/ar +@dirrmtry man/bg/man6 +@dirrmtry man/bg +@dirrmtry man/ca/man6 +@dirrmtry man/ca +@dirrmtry man/ca_ES@valencia/man6 +@dirrmtry man/ca_ES@valencia +@dirrmtry man/cs/man6 +@dirrmtry man/cs +@dirrmtry man/da/man6 +@dirrmtry man/da +@dirrmtry man/de/man6 +@dirrmtry man/de +@dirrmtry man/el/man6 +@dirrmtry man/el +@dirrmtry man/en@shaw/man6 +@dirrmtry man/en@shaw +@dirrmtry man/en_GB/man6 +@dirrmtry man/en_GB +@dirrmtry man/eo/man6 +@dirrmtry man/eo +@dirrmtry man/es/man6 +@dirrmtry man/es +@dirrmtry man/et/man6 +@dirrmtry man/et +@dirrmtry man/eu/man6 +@dirrmtry man/eu +@dirrmtry man/fi/man6 +@dirrmtry man/fi +@dirrmtry man/fr/man6 +@dirrmtry man/fr +@dirrmtry man/fur_IT/man6 +@dirrmtry man/fur_IT +@dirrmtry man/ga/man6 +@dirrmtry man/ga +@dirrmtry man/gl/man6 +@dirrmtry man/gl +@dirrmtry man/he/man6 +@dirrmtry man/he +@dirrmtry man/hr/man6 +@dirrmtry man/hr +@dirrmtry man/hu/man6 +@dirrmtry man/hu +@dirrmtry man/id/man6 +@dirrmtry man/id +@dirrmtry man/is/man6 +@dirrmtry man/is +@dirrmtry man/it/man6 +@dirrmtry man/it +@dirrmtry man/ko/man6 +@dirrmtry man/ko +@dirrmtry man/la/man6 +@dirrmtry man/la +@dirrmtry man/lt/man6 +@dirrmtry man/lt +@dirrmtry man/lv/man6 +@dirrmtry man/lv +@dirrmtry man/mk/man6 +@dirrmtry man/mk +@dirrmtry man/mr/man6 +@dirrmtry man/mr +@dirrmtry man/nb_NO/man6 +@dirrmtry man/nb_NO +@dirrmtry man/nl/man6 +@dirrmtry man/nl +@dirrmtry man/pl/man6 +@dirrmtry man/pl +@dirrmtry man/pt/man6 +@dirrmtry man/pt +@dirrmtry man/pt_BR/man6 +@dirrmtry man/pt_BR +@dirrmtry man/racv/man6 +@dirrmtry man/racv +@dirrmtry man/ro/man6 +@dirrmtry man/ro +@dirrmtry man/ru/man6 +@dirrmtry man/ru +@dirrmtry man/sk/man6 +@dirrmtry man/sk +@dirrmtry man/sl/man6 +@dirrmtry man/sl +@dirrmtry man/sr/man6 +@dirrmtry man/sr +@dirrmtry man/sr@ijekavian/man6 +@dirrmtry man/sr@ijekavian +@dirrmtry man/sr@ijekavianlatin/man6 +@dirrmtry man/sr@ijekavianlatin +@dirrmtry man/sr@latin/man6 +@dirrmtry man/sr@latin +@dirrmtry man/sv/man6 +@dirrmtry man/sv +@dirrmtry man/tl/man6 +@dirrmtry man/tl +@dirrmtry man/tr/man6 +@dirrmtry man/tr +@dirrmtry man/uk/man6 +@dirrmtry man/uk +@dirrmtry man/vi/man6 +@dirrmtry man/vi +@dirrmtry man/zh_CN/man6 +@dirrmtry man/zh_CN +@dirrmtry man/zh_TW/man6 +@dirrmtry man/zh_TW +%%NLS%%@dirrmtry share/locale/ang/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ang +%%NLS%%@dirrmtry share/locale/ang@latin/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ang@latin +%%NLS%%@dirrmtry share/locale/ca_ES@valencia/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ca_ES@valencia +%%NLS%%@dirrmtry share/locale/en@shaw/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/en@shaw +%%NLS%%@dirrmtry share/locale/fur_IT/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/fur_IT +%%NLS%%@dirrmtry share/locale/gd/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/gd +%%NLS%%@dirrmtry share/locale/la/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/la +%%NLS%%@dirrmtry share/locale/mr/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/mr +%%NLS%%@dirrmtry share/locale/nb_NO/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/nb_NO +%%NLS%%@dirrmtry share/locale/racv/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/racv +%%NLS%%@dirrmtry share/locale/sr@ijekavian/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/sr@ijekavian +%%NLS%%@dirrmtry share/locale/sr@ijekavianlatin/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/sr@ijekavianlatin +%%NLS%%@dirrmtry share/locale/sr@latin/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/sr@latin +%%NLS%%@dirrmtry share/locale/tl/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/tl +@exec %%LOCALBASE%%/bin/update-desktop-database %D/share/applications 2>/dev/null || true +@unexec %%LOCALBASE%%/bin/update-desktop-database %D/share/applications 2>/dev/null || true +%%SERVER%%@unexec rmdir /var/run/wesnothd 2>/dev/null || echo "If you are permanently removing this port, you should do a 'rm -rf /var/run/wesnothd' to remove it." | fmt >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 14:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0FF32D6 for ; Fri, 3 Jan 2014 14:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BDA7111AF for ; Fri, 3 Jan 2014 14:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03EU0Uf027697 for ; Fri, 3 Jan 2014 14:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03EU0db027696; Fri, 3 Jan 2014 14:30:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 14:30:00 GMT Resent-Message-Id: <201401031430.s03EU0db027696@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 Chen Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 76195E2 for ; Fri, 3 Jan 2014 14:20:05 +0000 (UTC) Received: from www.johnpupu.tw (60-199-173-18.static.tfn.net.tw [60.199.173.18]) by mx1.freebsd.org (Postfix) with ESMTP id 3E51F1108 for ; Fri, 3 Jan 2014 14:20:03 +0000 (UTC) Received: from www.johnpupu.tw (localhost [127.0.0.1]) by www.johnpupu.tw (Postfix) with ESMTP id 7C841536003 for ; Fri, 3 Jan 2014 22:19:49 +0800 (CST) Received: (from root@localhost) by www.johnpupu.tw (8.14.5/8.14.5/Submit) id s03EJn8a081036; Fri, 3 Jan 2014 22:19:49 +0800 (CST) (envelope-from johnpupu) Message-Id: <201401031419.s03EJn8a081036@www.johnpupu.tw> Date: Fri, 3 Jan 2014 22:19:49 +0800 (CST) From: John Chen To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185445: [MAINTAINER] www/pecl-yar: update to 1.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 14:30:01 -0000 >Number: 185445 >Category: ports >Synopsis: [MAINTAINER] www/pecl-yar: update to 1.2.2 >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 Jan 03 14:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: John Chen >Release: FreeBSD 9.1-RELEASE amd64 >Organization: Watcher >Environment: System: FreeBSD www.johnpupu.tw 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 >Description: - Update to 1.2.2 - Redports - https://redports.org/buildarchive/20140103141001-55732/ Generated with FreeBSD Port Tools 0.99_6 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- pecl-yar-1.2.2.patch begins here --- diff -ruN --exclude=CVS ../pecl-yar.orig/Makefile ./Makefile --- ../pecl-yar.orig/Makefile 2013-11-21 09:10:13.000000000 +0800 +++ ./Makefile 2014-01-03 22:05:56.000000000 +0800 @@ -2,7 +2,7 @@ # $FreeBSD: head/www/pecl-yar/Makefile 334441 2013-11-20 18:32:58Z sunpoet $ PORTNAME= yar -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 CATEGORIES= www MASTER_SITES= http://pecl.php.net/get/ PKGNAMEPREFIX= pecl- @@ -25,7 +25,12 @@ OPTIONS_DEFINE= MSGPACK MSGPACK_DESC= Enable MSGPACK module -MSGPACK_BUILD_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/msgpack.so:${PORTSDIR}/devel/pecl-msgpack -MSGPACK_RUN_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/msgpack.so:${PORTSDIR}/devel/pecl-msgpack + +.include + +.if ${PORT_OPTIONS:MMSGPACK} +BUILD_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/msgpack.so:${PORTSDIR}/devel/pecl-msgpack +RUN_DEPENDS= ${LOCALBASE}/lib/php/${PHP_EXT_DIR}/msgpack.so:${PORTSDIR}/devel/pecl-msgpack +.endif .include diff -ruN --exclude=CVS ../pecl-yar.orig/distinfo ./distinfo --- ../pecl-yar.orig/distinfo 2013-11-21 09:10:13.000000000 +0800 +++ ./distinfo 2014-01-03 22:08:40.000000000 +0800 @@ -1,2 +1,2 @@ -SHA256 (PECL/yar-1.2.1.tgz) = 3f70f161d5c92b01bb9489bcb80384869951c545f4753817f5edf4c8056a56a3 -SIZE (PECL/yar-1.2.1.tgz) = 35174 +SHA256 (PECL/yar-1.2.2.tgz) = 30d389bf9b036329e45a3623cfdd8f36f19b347b0f976cf28ac35ec56b026ed1 +SIZE (PECL/yar-1.2.2.tgz) = 37509 --- pecl-yar-1.2.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 14:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EA8CE2D7 for ; Fri, 3 Jan 2014 14:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BD83F11B0 for ; Fri, 3 Jan 2014 14:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03EU1Pm027757 for ; Fri, 3 Jan 2014 14:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03EU1iV027756; Fri, 3 Jan 2014 14:30:01 GMT (envelope-from gnats) Date: Fri, 3 Jan 2014 14:30:01 GMT Message-Id: <201401031430.s03EU1iV027756@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: krad Subject: Re: ports/184726: Makefile error in net/miniupnpd port for PF patch X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: krad List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 14:30:02 -0000 The following reply was made to PR ports/184726; it has been noted by GNATS. From: krad To: Daniel Engberg Cc: bug-followup@freebsd.org Subject: Re: ports/184726: Makefile error in net/miniupnpd port for PF patch Date: Fri, 3 Jan 2014 14:24:43 +0000 --001a1134a274dbd4f104ef11abc1 Content-Type: text/plain; charset=ISO-8859-1 I definitely works on 9-stabe and 10-stable, i will test in the next 24 hours unless someone beats me to it check the genconfig.sh if line 302 looks like the below the patch was applied and its some other issue echo "#define PF_ENABLE_FILTER_RULES">> ${CONFIGFILE} If it didnt apply did you check the pf enable in "make config" dialog box? On 31 December 2013 13:39, Daniel Engberg wrote: > Despite this fix it doesn't seem to work on -HEAD (CURRENT), can anyone > confirm? > > FreeBSD 11.0-CURRENT #0: Fri Dec 20 22:05:21 CET 2013 (AMD64) > r259514 > > > --001a1134a274dbd4f104ef11abc1 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
I definitely works on 9-stabe and 10-stable, i will test i= n the next 24 hours unless someone beats me to it

check the =A0genconfig.sh if line 302 looks like the below the patch was appli= ed
and its some other issue
ec= ho "#define PF_ENABLE_FILTER_RULES">> ${CONFIGFILE}<= span style=3D"color:rgb(0,160,0);font-family:monospace;font-size:medium;whi= te-space:pre">

If it= didnt apply did you check the pf enable in "make config" dialog = box?


On 31 D= ecember 2013 13:39, Daniel Engberg <diizzyy@gmail.com> wrote= :
Despite this fix it doesn't seem to work on -HEAD (CUR= RENT), can anyone confirm?

FreeBSD 11.0-CURRENT #0: Fri Dec 20 22:05= :21 CET 2013 (AMD64)
r259514



--001a1134a274dbd4f104ef11abc1-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 14:30:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 854BF306; Fri, 3 Jan 2014 14:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A54911B2; Fri, 3 Jan 2014 14:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03EU8dO027836; Fri, 3 Jan 2014 14:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03EU8dh027835; Fri, 3 Jan 2014 14:30:08 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 14:30:08 GMT Message-Id: <201401031430.s03EU8dh027835@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185445: [MAINTAINER] www/pecl-yar: update to 1.2.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 14:30:08 -0000 Synopsis: [MAINTAINER] www/pecl-yar: update to 1.2.2 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 3 14:30:08 UTC 2014 Responsible-Changed-Why: sunpoet@ wants this submitter's PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185445 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 14:43:56 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9F36B97F; Fri, 3 Jan 2014 14:43:56 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7339712FE; Fri, 3 Jan 2014 14:43:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Ehu6T031475; Fri, 3 Jan 2014 14:43:56 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03EhuwN031474; Fri, 3 Jan 2014 14:43:56 GMT (envelope-from linimon) Date: Fri, 3 Jan 2014 14:43:56 GMT Message-Id: <201401031443.s03EhuwN031474@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/185430: [exp-run] Update clang to 3.4 release X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 14:43:56 -0000 Synopsis: [exp-run] Update clang to 3.4 release Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: linimon Responsible-Changed-When: Fri Jan 3 14:43:46 UTC 2014 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=185430 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 14:48:53 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F25C1A69; Fri, 3 Jan 2014 14:48:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C41A8132D; Fri, 3 Jan 2014 14:48:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03EmqVR031827; Fri, 3 Jan 2014 14:48:52 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Emqaf031826; Fri, 3 Jan 2014 14:48:52 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 14:48:52 GMT Message-Id: <201401031448.s03Emqaf031826@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, skreuzer@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185426: devel/distcc: missing icom X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 14:48:53 -0000 Synopsis: devel/distcc: missing icom Responsible-Changed-From-To: freebsd-ports-bugs->skreuzer Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 3 14:48:52 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185426 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 15:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8636434 for ; Fri, 3 Jan 2014 15:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 82BA81865 for ; Fri, 3 Jan 2014 15:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Fo0gq044421 for ; Fri, 3 Jan 2014 15:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Fo0j6044420; Fri, 3 Jan 2014 15:50:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 15:50:00 GMT Resent-Message-Id: <201401031550.s03Fo0j6044420@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, Eero Hanninen Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15B8680 for ; Fri, 3 Jan 2014 15:43:39 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 01A7F17F0 for ; Fri, 3 Jan 2014 15:43:39 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s03FhbVp092112 for ; Fri, 3 Jan 2014 15:43:37 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s03FhbuH092106; Fri, 3 Jan 2014 15:43:37 GMT (envelope-from nobody) Message-Id: <201401031543.s03FhbuH092106@oldred.freebsd.org> Date: Fri, 3 Jan 2014 15:43:37 GMT From: Eero Hanninen To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185446: Can't build mail/postfix against databases/db6 (berkeley db 6) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 15:50:00 -0000 >Number: 185446 >Category: ports >Synopsis: Can't build mail/postfix against databases/db6 (berkeley db 6) >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 Jan 03 15:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Eero Hanninen >Release: 10.0-RC4 >Organization: >Environment: FreeBSD vussvillem.nohik.ee 10.0-RC4 FreeBSD 10.0-RC4 #0 r260130: Tue Dec 31 17:10:01 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: When build mail/postfix (current version 2.10.2) package from source against Berkeley DB ver 6, then build just fails with postfix source code error Unknown Berkeley DB version. >How-To-Repeat: change default Berkeley DB version to 6 in make.conf echo "WITH_BDB_VER=6" >> /etc/make.conf make -C /usr/ports/mail/postfix/Makefile install clean >Fix: There is two fix in my mind: 1. Wait when BDB 6 support officially become available in postfix and till that check default BDB version in mail/postfix port Makefile and if its greater than 5 then give error. 2. Add little patch to postfix port to support unofficially bdb ver 6: --- src/util/dict_db.c.orig 2014-01-03 17:01:52.189273146 +0200 +++ src/util/dict_db.c 2014-01-03 17:05:07.000258437 +0200 @@ -693,7 +693,7 @@ msg_fatal("set DB cache size %d: %m", dict_db_cache_size); if (type == DB_HASH && db->set_h_nelem(db, DICT_DB_NELM) != 0) msg_fatal("set DB hash element count %d: %m", DICT_DB_NELM); -#if DB_VERSION_MAJOR == 5 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR > 0) +#if DB_VERSION_MAJOR == 6 || DB_VERSION_MAJOR == 5 || (DB_VERSION_MAJOR == 4 && DB_VERSION_MINOR > 0) if ((errno = db->open(db, 0, db_path, 0, type, db_flags, 0644)) != 0) FREE_RETURN(dict_surrogate(class, path, open_flags, dict_flags, "open database %s: %m", db_path)); >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 15:50:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 90511461; Fri, 3 Jan 2014 15:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 65FFA1866; Fri, 3 Jan 2014 15:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Fo8rI044557; Fri, 3 Jan 2014 15:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Fo8IA044556; Fri, 3 Jan 2014 15:50:08 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 15:50:08 GMT Message-Id: <201401031550.s03Fo8IA044556@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sahil@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185446: Can't build mail/postfix against databases/db6 (berkeley db 6) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 15:50:08 -0000 Synopsis: Can't build mail/postfix against databases/db6 (berkeley db 6) Responsible-Changed-From-To: freebsd-ports-bugs->sahil Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 3 15:50:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185446 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 16:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BE2C5E94 for ; Fri, 3 Jan 2014 16:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8358719BD for ; Fri, 3 Jan 2014 16:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03GA0e0048666 for ; Fri, 3 Jan 2014 16:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03GA08V048665; Fri, 3 Jan 2014 16:10:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 16:10:00 GMT Resent-Message-Id: <201401031610.s03GA08V048665@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, Brad Davis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 105C1C68 for ; Fri, 3 Jan 2014 16:01:28 +0000 (UTC) Received: from valentine.liquidneon.com (cl-1479.chi-02.us.sixxs.net [IPv6:2001:4978:f:5c6::2]) by mx1.freebsd.org (Postfix) with ESMTP id DB0FD197F for ; Fri, 3 Jan 2014 16:01:27 +0000 (UTC) Received: by valentine.liquidneon.com (Postfix, from userid 1001) id E08688FF8E; Fri, 3 Jan 2014 09:01:25 -0700 (MST) Message-Id: <20140103160125.E08688FF8E@valentine.liquidneon.com> Date: Fri, 3 Jan 2014 09:01:25 -0700 (MST) From: Brad Davis To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185447: [patch] dns/djbdns: Update the IP address for d.root-servers.net X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Brad Davis List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 16:10:00 -0000 >Number: 185447 >Category: ports >Synopsis: [patch] dns/djbdns: Update the IP address for d.root-servers.net >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 Jan 03 16:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Brad Davis >Release: FreeBSD 9.1-RELEASE-p7 i386 >Organization: >Environment: >Description: Update the IP address for d.root-servers.net Per: http://d.root-servers.org/renumber.html >How-To-Repeat: >Fix: --- djbdns-update-dnsroots.patch begins here --- Index: dns/djbdns/Makefile =================================================================== --- dns/djbdns/Makefile (revision 338551) +++ dns/djbdns/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME?= djbdns PORTVERSION?= ${DJBDNS_VER} -PORTREVISION?= 14 +PORTREVISION?= 15 CATEGORIES?= dns MASTER_SITES= http://cr.yp.to/djbdns/ \ ftp://cr.yp.to/djbdns/ Index: dns/djbdns/files/patch-dnsroots.global =================================================================== --- dns/djbdns/files/patch-dnsroots.global (revision 338551) +++ dns/djbdns/files/patch-dnsroots.global (working copy) @@ -1,13 +1,14 @@ ---- dnsroots.global.orig 2001-02-11 23:11:45.000000000 +0200 -+++ dnsroots.global 2007-11-04 20:06:59.000000000 +0200 -@@ -1,5 +1,5 @@ +--- dnsroots.global.orig 2001-02-11 14:11:45.000000000 -0700 ++++ dnsroots.global 2014-01-03 08:54:45.000000000 -0700 +@@ -1,13 +1,13 @@ 198.41.0.4 -128.9.0.107 +192.228.79.201 192.33.4.12 - 128.8.10.90 +-128.8.10.90 ++199.7.91.13 192.203.230.10 -@@ -7,7 +7,7 @@ + 192.5.5.241 192.112.36.4 128.63.2.53 192.36.148.17 --- djbdns-update-dnsroots.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 16:10:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ADA3AEC5; Fri, 3 Jan 2014 16:10:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 82D6419C2; Fri, 3 Jan 2014 16:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03GA8ct050438; Fri, 3 Jan 2014 16:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03GA8fn050437; Fri, 3 Jan 2014 16:10:08 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 16:10:08 GMT Message-Id: <201401031610.s03GA8fn050437@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lx@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185447: [patch] dns/djbdns: Update the IP address for d.root-servers.net X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 16:10:08 -0000 Synopsis: [patch] dns/djbdns: Update the IP address for d.root-servers.net Responsible-Changed-From-To: freebsd-ports-bugs->lx Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 3 16:10:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185447 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 17:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CD484C2A for ; Fri, 3 Jan 2014 17:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id AA1DD1002 for ; Fri, 3 Jan 2014 17:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03HK0FC064116 for ; Fri, 3 Jan 2014 17:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03HK0Wh064115; Fri, 3 Jan 2014 17:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 17:20:00 GMT Resent-Message-Id: <201401031720.s03HK0Wh064115@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, Alan Hicks Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7262ABC2 for ; Fri, 3 Jan 2014 17:16:04 +0000 (UTC) Received: from avasout06.plus.net (avasout06.plus.net [212.159.14.18]) by mx1.freebsd.org (Postfix) with ESMTP id D74A51FF0 for ; Fri, 3 Jan 2014 17:16:03 +0000 (UTC) Received: from mail.p-o.co.uk ([80.229.143.200]) by avasout06 with smtp id 9VCs1n0044Ke75s01VCt6T; Fri, 03 Jan 2014 17:12:54 +0000 Received: from alan by p-o.co.uk with local (Exim 4.82 (FreeBSD)) (envelope-from ) id 1Vz8Dm-0009Zs-LX for FreeBSD-gnats-submit@freebsd.org; Fri, 03 Jan 2014 17:07:42 +0000 Message-Id: Date: Fri, 03 Jan 2014 17:07:42 +0000 From: Alan Hicks To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/185451: Upgrade mail/dbmail to 3.1.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Alan Hicks List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 17:20:01 -0000 >Number: 185451 >Category: ports >Synopsis: Upgrade mail/dbmail to 3.1.9 >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 Jan 03 17:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Alan Hicks >Release: FreeBSD 9.2-RELEASE i386 >Organization: >Environment: System: FreeBSD schnittke.p-o.co.uk 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Fri Sep 27 03:52:52 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC i386 >Description: Upgrade dbmail to latest 3.1.9 fixing many minor bugs >How-To-Repeat: >Fix: Apply patch to upgrade dbmail from 3.1.7 to 3.1.9 Also adds another download mirror and removes redundant DOCS option --- dbmail-317-319.diff begins here --- diff -ur /usr/ports/mail/dbmail/Makefile dbmail/Makefile --- /usr/ports/mail/dbmail/Makefile 2013-11-15 10:44:19.000000000 +0000 +++ dbmail/Makefile 2014-01-03 16:58:50.000000000 +0000 @@ -2,9 +2,10 @@ # $FreeBSD: mail/dbmail/Makefile 333848 2013-11-15 10:44:19Z sunpoet $ PORTNAME= dbmail -PORTVERSION= 3.1.7 +PORTVERSION= 3.1.9 CATEGORIES= mail -MASTER_SITES= http://www.dbmail.org/download/3.1/ +MASTER_SITES= http://www.dbmail.org/download/3.1/ \ + http://git.dbmail.eu/paul/dbmail/snapshot/ MAINTAINER= ahicks@p-o.co.uk COMMENT= SQL database-based mail system (POP3 and IMAP) @@ -22,7 +23,7 @@ CONFLICTS= dbmail-2.* dbmail22-[0-9]* -OPTIONS_DEFINE= DOCS LDAP SIEVE THREADS +OPTIONS_DEFINE= LDAP SIEVE THREADS OPTIONS_DEFAULT= THREADS SIEVE_DESC= Build with support for Sieve mail sorting language diff -ur /usr/ports/mail/dbmail/distinfo dbmail/distinfo --- /usr/ports/mail/dbmail/distinfo 2013-09-26 16:59:24.000000000 +0100 +++ dbmail/distinfo 2014-01-02 14:36:51.000000000 +0000 @@ -1,2 +1,2 @@ -SHA256 (dbmail-3.1.7.tar.gz) = 657965a87a217495b2bd5f292ef1b4948e85d195e54e9c0e4981d46cf72427aa -SIZE (dbmail-3.1.7.tar.gz) = 2395315 +SHA256 (dbmail-3.1.9.tar.gz) = 665f42700654aae767d24647dde284a4df7aec1702a00d1122d55b3f9f4318dd +SIZE (dbmail-3.1.9.tar.gz) = 2397293 --- dbmail-317-319.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 17:44:27 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 38BB6421; Fri, 3 Jan 2014 17:44:27 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0CB0C1228; Fri, 3 Jan 2014 17:44:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03HiQGM069676; Fri, 3 Jan 2014 17:44:26 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03HiQM3069675; Fri, 3 Jan 2014 17:44:26 GMT (envelope-from jgh) Date: Fri, 3 Jan 2014 17:44:26 GMT Message-Id: <201401031744.s03HiQM3069675@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Subject: Re: ports/185451: Upgrade mail/dbmail to 3.1.9 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 17:44:27 -0000 Synopsis: Upgrade mail/dbmail to 3.1.9 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Fri Jan 3 17:44:26 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=185451 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 17:52:51 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF0637BF; Fri, 3 Jan 2014 17:52:51 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A354A1308; Fri, 3 Jan 2014 17:52:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Hqp3x071730; Fri, 3 Jan 2014 17:52:51 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Hqp2j071729; Fri, 3 Jan 2014 17:52:51 GMT (envelope-from jgh) Date: Fri, 3 Jan 2014 17:52:51 GMT Message-Id: <201401031752.s03Hqp2j071729@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Subject: Re: ports/185434: sysutils/ioping update to 0.8 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 17:52:51 -0000 Synopsis: sysutils/ioping update to 0.8 Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Fri Jan 3 17:52:51 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=185434 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 18:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A766AE90 for ; Fri, 3 Jan 2014 18:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 823EF1704 for ; Fri, 3 Jan 2014 18:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Ie0gP084366 for ; Fri, 3 Jan 2014 18:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Ie0Ub084365; Fri, 3 Jan 2014 18:40:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 18:40:00 GMT Resent-Message-Id: <201401031840.s03Ie0Ub084365@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, Mark Felder Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F357B8F8 for ; Fri, 3 Jan 2014 18:31:57 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DE968169E for ; Fri, 3 Jan 2014 18:31:57 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s03IVvf5047054 for ; Fri, 3 Jan 2014 18:31:57 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s03IVv0m047042; Fri, 3 Jan 2014 18:31:57 GMT (envelope-from nobody) Message-Id: <201401031831.s03IVv0m047042@oldred.freebsd.org> Date: Fri, 3 Jan 2014 18:31:57 GMT From: Mark Felder To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185452: [PATCH] security/maia: lots of fixes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 18:40:00 -0000 >Number: 185452 >Category: ports >Synopsis: [PATCH] security/maia: lots of fixes >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 Jan 03 18:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Mark Felder >Release: >Organization: >Environment: >Description: security/maia has a lot of problems. One in particular right now is that the maintenance scripts that should be run regularly from cron are not even installed. This patch provides the following: - put the scripts in DATADIR - proper WWWOWN and WWWGRP usage - ETCDIR usage; config files are now in ${PREFIX}/etc/maia/ - template files are probably going to be edited by the users. Now they're in ${ETCDIR}/templates/ - STAGE support - MYSQLSERVER option is now: USE_MYSQL= server - PGSQLSERVER option is now: USE_PGSQL= server - lots of cleanup - several installation tasks should not have been silenced (prefixed with @) - rc script passes rclint - rc script handles the creation of several important directories in start_precmd - config files and templates are not overwritten on port upgrade if they have been modified On a clean server you can now successfully do: # pkg install maia # service maiad onestart and the service will start up with no errors! >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== --- Makefile (revision 338178) +++ Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= maia DISTVERSION= 1.0.3-${SVNREVISION} -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= security MASTER_SITES= http://www.purplehat.org/downloads/maia/ @@ -35,9 +35,10 @@ USERS= vscan GROUPS= vscan -MAIADIR?= /var/maiad +MAIAHOME= /var/maiad MAIAQUARANTINE?= /var/maiad/virusmails PEAR_DIR?= ${LOCALBASE}/share/pear +PLIST_SUB+= USERS="${USERS}" GROUPS="${GROUPS}" WWWOWN="${WWWOWN}" WWWGRP="${WWWGRP}" OPTIONS_DEFINE= APACHE LIGHTTPD WEBHOST MYSQL MYSQLSERVER PGSQL PGSQLSERVER DOVECOT \ POSTFIX PFA FUZZYOCR CLAMAV SPAMASSASSIN GRAPHICS BDB ALTERMIME CRYPT \ @@ -83,14 +84,14 @@ P7ZIP_DESC= P7ZIP support with archivers/p7zip TNEF_DESC= Add external tnef decoder -SUB_FILES= pkg-install pkg-deinstall pkg-message -SUB_LIST+= MAIAUSER=${USERS} \ - MAIAGROUP=${GROUPS} \ - MAIADIR=${MAIADIR} \ - MAIAQUARANTINE=${MAIAQUARANTINE} +SUB_FILES= maiad pkg-message +SUB_LIST+= USERS=${USERS} \ + GROUPS=${GROUPS} \ + MAIAHOME=${MAIAHOME} \ + MAIAQUARANTINE=${MAIAQUARANTINE} \ + ETCDIR=${ETCDIR} USE_RC_SUBR+= maiad -NO_STAGE= yes .include # Code is a bit fiddly here; we can't use USE variables after pre.mk so we have @@ -117,8 +118,6 @@ USE_PHP+= pgsql .endif -.include - .if ${PORT_OPTIONS:MLIGHTTPD} RUN_DEPENDS+= lighttpd:${PORTSDIR}/www/lighttpd .endif @@ -139,7 +138,7 @@ .endif .if ${PORT_OPTIONS:MMYSQLSERVER} -RUN_DEPENDS+= ${LOCALBASE}/bin/mysqld_safe:${PORTSDIR}/databases/mysql55-server +USE_MYSQL= server .endif .if ${PORT_OPTIONS:MPGSQL} @@ -147,7 +146,7 @@ .endif .if ${PORT_OPTIONS:MPGSQLSERVER} -RUN_DEPENDS+= ${LOCALBASE}/bin/pg_ctl:${PORTSDIR}/databases/postgresql84-server +USE_PGSQL= server .endif .if ${PORT_OPTIONS:MDOVECOT} @@ -282,85 +281,64 @@ RUN_DEPENDS+= tnef:${PORTSDIR}/converters/tnef .endif +.include + post-patch: .for m in scripts/configtest.pl scripts/expire-quarantine-cache.pl \ scripts/generate-key.pl scripts/load-sa-rules.pl scripts/maiadbtool.pl \ scripts/process-quarantine.pl scripts/resend.pl scripts/send-quarantine-digests.pl \ scripts/send-quarantine-reminders.pl scripts/stats-snapshot.pl - @${REINPLACE_CMD} -e "s|/etc/maia/maia.conf|${PREFIX}/etc/maia.conf|" \ + @${REINPLACE_CMD} -e "s|/etc/maia/maia.conf|${ETCDIR}/maia.conf|" \ ${WRKSRC}/${m} +.endfor +.for i in digest.tpl newuser.tpl reminder.tpl + ${MV} ${WRKSRC}/templates/${i} ${WRKSRC}/templates/${i}.dist .endfor -.for a in maiad.conf.dist + @${REINPLACE_CMD} -e "s|daemon_user = 'maia'|daemon_user = '${USERS}'|" \ -e "s|daemon_group = 'maia'|daemon_group = '${GROUPS}'|" \ - -e "s|/var/lib/maia|${MAIADIR}|" \ - -e "s|/var/log/maia|${MAIADIR}|" ${WRKSRC}/${a} -.endfor -.for i in maia.conf.dist - @${REINPLACE_CMD} -e "s|/etc/maia.conf|${PREFIX}/etc/maia.conf|" \ + -e "s|/var/lib/maia|${MAIAHOME}|" ${WRKSRC}/maiad.conf.dist + + @${REINPLACE_CMD} -e "s|/etc/maia.conf|${ETCDIR}/maia.conf|" \ -e "s|username = 'maia'|username = '${USERS}'|" \ - -e "s|/var/lib/maia|${MAIADIR}/maia|" \ - -e "s|/usr/bin/sa-learn|/usr/local/bin/sa-learn|" \ + -e "s|/var/lib/maia|${DATADIR}|" \ + -e "s|/usr/bin/sa-learn|${PREFIX}/bin/sa-learn|" \ -e "s|local_cf_dir = undef|local_cf_dir = '${PREFIX}/etc/mail/spamassassin'|" \ -e "s|system_rules_dir = undef|system_rules_dir = '/var/db/spamassassin'|" \ - -e "s|user_rules_dir = undef|user_rules_dir = '${MAIADIR}/.spamassassin'|" \ - -e "s|pid_dir = '/var/run/maia/'|pid_dir = '${MAIADIR}/'|" \ - -e "s|log_dir = '/var/log/maia'|log_dir = '${MAIADIR}'|" \ - -e "s|template_dir = '/etc/maia/templates/'|template_dir = '${MAIADIR}/maia/templates/'|" \ - ${WRKSRC}/${i} -.endfor -.for a in maiad - @${REINPLACE_CMD} -e "s|/etc/maia/maiad.conf|${PREFIX}/etc/maiad.conf|" \ - -e "s|/var/lib/maia|${MAIADIR}|" \ - -e "s@'zoo'\]@['zoo','unzoo'] ]@" ${WRKSRC}/${a} -.endfor + -e "s|user_rules_dir = undef|user_rules_dir = '${DATADIR}/.spamassassin'|" \ + -e "s|template_dir = '/etc/maia/templates/'|template_dir = '${ETCDIR}/templates/'|" \ + ${WRKSRC}/maia.conf.dist + + @${REINPLACE_CMD} -e "s|/etc/maia/maiad.conf|${ETCDIR}/maiad.conf|" \ + -e "s|/var/lib/maia|${DATADIR}|" \ + -e "s@'zoo'\]@['zoo','unzoo'] ]@" ${WRKSRC}/maiad + @${FIND} -E ${WRKSRC} -iregex '.*(bak|~)$$' -delete -pre-install: - @${SH} ${PKGINSTALL} ${DISTNAME} PRE-INSTALL - do-install: - @${INSTALL} -d ${WWWDIR} - @cd ${WRKSRC}/php && ${FIND} . | ${CPIO} --quiet -pdm -L ${WWWDIR} - @cd ${WRKSRC}/scripts && ${FIND} . | ${CPIO} --quiet -pdm -L ${MAIADIR}/maia/scripts - @cd ${WRKSRC}/templates && ${FIND} . | ${CPIO} --quiet -pdm -L ${MAIADIR}/maia/templates + ${MKDIR} -p ${STAGEDIR}${WWWDIR} + @cd ${WRKSRC}/php && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} + ${MKDIR} -p ${STAGEDIR}${DATADIR} + @cd ${WRKSRC}/scripts && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/scripts + ${MKDIR} -p ${STAGEDIR}${ETCDIR}/templates +.for i in digest.tpl newuser.tpl reminder.tpl + ${INSTALL} -m 644 ${WRKSRC}/templates/${i}.dist ${STAGEDIR}${ETCDIR}/templates +.endfor + ${INSTALL_SCRIPT} ${WRKSRC}/maiad ${STAGEDIR}${PREFIX}/sbin + ${INSTALL} -m 644 ${WRKSRC}/maiad.conf.dist ${STAGEDIR}${ETCDIR}/maiad.conf.dist + ${INSTALL} -m 644 ${WRKSRC}/maia.conf.dist ${STAGEDIR}${ETCDIR}/maia.conf.dist + ${CHOWN} ${WWWOWN}:${WWWGRP} ${STAGEDIR}${WWWDIR}/themes/*/compiled + ${LN} -s ${PREFIX}/share/smarty ${STAGEDIR}${WWWDIR}/libs/Smarty -.for i in maiad - @${INSTALL_SCRIPT} ${WRKSRC}/${i} ${PREFIX}/sbin -.endfor - @${INSTALL_SCRIPT} -m 640 ${WRKSRC}/maiad.conf.dist ${PREFIX}/etc/maiad.conf.dist - @${INSTALL_SCRIPT} -m 640 ${WRKSRC}/maia.conf.dist ${PREFIX}/etc/maia.conf.dist -# -# This can contain sensitive information, e.g. SQL passwords, so it should be handled -# with care. -# -.if !exists(${PREFIX}/www/${PORTNAME}/config.php) - @${INSTALL} -o ${WWWOWN} -g ${WWWGRP} -m 640 \ - ${WRKSRC}/php/config.php.dist \ - ${PREFIX}/www/${PORTNAME}/config.php -.endif .if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in ${DOCS} - @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .endif post-install: -.for maiaconf in maia maiad - @if [ ! -f ${PREFIX}/etc/${maiaconf}.conf ]; then \ - ${CP} -p ${PREFIX}/etc/${maiaconf}.conf.dist \ - ${PREFIX}/etc/${maiaconf}.conf ; \ - fi - @${CHOWN} ${USERS}:${GROUPS} ${PREFIX}/etc/${maiaconf}.conf \ - ${PREFIX}/etc/${maiaconf}.conf.dist -.endfor - @${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR} - @${CHOWN} -R ${USERS}:${GROUPS} ${MAIADIR}/ - @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}' >> ${TMPPLIST} - @${ECHO_CMD} '@exec ${CHOWN} -R ${USERS}:${GROUPS} ${MAIADIR}' >> ${TMPPLIST} - @${LN} -s ${PREFIX}/share/smarty ${PREFIX}/www/${PORTNAME}/libs/Smarty @${CAT} ${PKGMESSAGE} .include Index: files/maiad.in =================================================================== --- files/maiad.in (revision 338178) +++ files/maiad.in (working copy) @@ -13,34 +13,39 @@ . /etc/rc.subr -name="maiad" +name=maiad rcvar=maiad_enable load_rc_config $name -: ${maiad_enable="NO"} -: ${maiad_pidfile="%%MAIADIR%%/maiad.pid"} +: ${maiad_enable:=NO} +: ${maiad_pidfile="/var/run/maia/maiad.pid"} -required_files=%%PREFIX%%/etc/maiad.conf +required_files=%%ETCDIR%%/maiad.conf -start_cmd=${name}_start -stop_cmd=${name}_stop - +start_cmd="%%PREFIX%%/sbin/maiad start" +start_precmd="start_precmd" +extra_commands="status" pidfile=${maiad_pidfile} -procname=${maiad_procname} +procname=maiad -start_precmd=${name}_prestart +start_precmd() +{ + for i in db tmp var virusmails; do + if [ ! -e %%MAIAHOME%%/${i} ]; then + install -d -o %%USERS%% -g %%GROUPS%% -m 750 %%MAIAHOME%%/${i} + fi + done + + for i in log run lock; do + if [ ! -e /var/${i}/maia ]; then + install -d -o %%USERS%% -g %%GROUPS%% /var/${i}/maia + fi + done -maiad_prestart() { - rm -rf %%MAIADIR%%/tmp/* %%MAIADIR%%/tmp/.* 2>/dev/null || true + # not sure why, but previous maintainer had this in the rc script + rm -rf %%MAIAHOME%%/tmp/* %%MAIAHOME%%/tmp/.* 2>/dev/null || true } -maiad_start() { - %%PREFIX%%/sbin/maiad start -} +run_rc_command "$1" -maiad_stop() { - %%PREFIX%%/sbin/maiad stop -} - -run_rc_command "$1" Index: files/pkg-deinstall.in =================================================================== --- files/pkg-deinstall.in (revision 338178) +++ files/pkg-deinstall.in (working copy) @@ -1,20 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -DIR=%%MAIADIR%% -QUARANTINE=%%MAIAQUARANTINE%% -MAIAWEB=%%PREFIX%%/www/maia - -if [ "$2" = "POST-DEINSTALL" ]; then - if [ -e ${DIR} ]; then - echo "You should manually remove the \"${DIR}\" directory." - fi - if [ -e ${QUARANTINE} ]; then - echo "You should manually remove the \"${QUARANTINE}\" directory." - fi - if [ -e ${MAIAWEB} ]; then - echo "You should manually remove the \"${MAIAWEB}\" directory." - fi -fi Index: files/pkg-install.in =================================================================== --- files/pkg-install.in (revision 338178) +++ files/pkg-install.in (working copy) @@ -1,28 +0,0 @@ -#!/bin/sh -# -# $FreeBSD$ -# - -USER=%%MAIAUSER%% -GROUP=%%MAIAGROUP%% -DIR=%%MAIADIR%% -QUARANTINE=%%MAIAQUARANTINE%% - -if [ "$2" = "PRE-INSTALL" ]; then - /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR} - echo "Created \"${DIR}\" directory." - /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/db - echo "Created \"${DIR}/db\" directory." - /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/tmp - echo "Created \"${DIR}/tmp\" directory." - /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/var - echo "Created \"${DIR}/var\" directory." - /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/maia - echo "Created \"${DIR}/maia\" directory." - /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/maia/scripts - echo "Created \"${DIR}/maia/scripts\" directory." - /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${DIR}/maia/templates - echo "Created \"${DIR}/maia/templates\" directory." - /usr/bin/install -o ${USER} -g ${GROUP} -m 750 -d ${QUARANTINE} - echo "Created \"${QUARANTINE}\" directory." -fi Index: pkg-plist =================================================================== --- pkg-plist (revision 338178) +++ pkg-plist (working copy) @@ -1,9 +1,33 @@ -@unexec if cmp -s %D/etc/maiad.conf.dist %D/etc/maiad.conf; then rm -f %D/etc/maiad.conf; fi -etc/maiad.conf.dist -@exec if [ ! -f %D/etc/maiad.conf ] ; then cp -p %D/%F %B/maiad.conf; fi -@unexec if cmp -s %D/etc/maia.conf.dist %D/etc/maia.conf; then rm -f %D/etc/maia.conf; fi -etc/maia.conf.dist -@exec if [ ! -f %D/etc/maia.conf ] ; then cp -p %D/%F %B/maia.conf; fi +@unexec cmp -s %D/%%ETCDIR%%/maiad.conf.dist %D/%%ETCDIR%%/maiad.conf && rm -f %D/%%ETCDIR%%/maiad.conf || true +@exec if [ ! -f %D/%%ETCDIR%%/maiad.conf ] ; then cp -p %D/%%ETCDIR%%/maiad.conf.dist %D/%%ETCDIR%%/maiad.conf; fi +@unexec cmp -s %D/%%ETCDIR%%/maia.conf.dist %D/%%ETCDIR%%/maia.conf && rm -f %D/%%ETCDIR%%/maia.conf || true +@exec if [ ! -f %D/%%ETCDIR%%/maia.conf ] ; then cp -p %D/%%ETCDIR%%/maia.conf.dist %D/%%ETCDIR%%/maia.conf; fi +@unexec cmp -s %D/%%ETCDIR%%/templates/digest.tpl.dist %D/%%ETCDIR%%/templates/digest.tpl && rm -f %D/%%ETCDIR%%/templates/digest.tpl || true +@exec if [ ! -f %D/%%ETCDIR%%/templates/digest.tpl ] ; then cp -p %D/%%ETCDIR%%/templates/digest.tpl.dist %D/%%ETCDIR%%/templates/digest.tpl; fi +@unexec cmp -s %D/%%ETCDIR%%/templates/newuser.tpl.dist %D/%%ETCDIR%%/templates/newuser.tpl && rm -f %D/%%ETCDIR%%/templates/newuser.tpl || true +@exec if [ ! -f %D/%%ETCDIR%%/templates/newuser.tpl ] ; then cp -p %D/%%ETCDIR%%/templates/newuser.tpl.dist %D/%%ETCDIR%%/templates/newuser.tpl; fi +@unexec cmp -s %D/%%ETCDIR%%/templates/reminder.tpl.dist %D/%%ETCDIR%%/templates/reminder.tpl && rm -f %D/%%ETCDIR%%/templates/reminder.tpl || true +@exec if [ ! -f %D/%%ETCDIR%%/templates/reminder.tpl ] ; then cp -p %D/%%ETCDIR%%/templates/reminder.tpl.dist %D/%%ETCDIR%%/templates/reminder.tpl; fi +@unexec cmp -s %D/www/maia/config.php.dist %D/www/maia/config.php && rm -f %D/www/maia/config.php || true +@exec if [ ! -f %D/www/maia/config.php ] ; then cp -p %D/www/maia/config.php.dist %D/www/maia/config.php; fi +@exec install -d -o %%WWWOWN%% -g %%WWWGRP%% %D/www/maia/themes/desert_sand/compiled +@exec install -d -o %%WWWOWN%% -g %%WWWGRP%% %D/www/maia/themes/dgm/compiled +@exec install -d -o %%WWWOWN%% -g %%WWWGRP%% %D/www/maia/themes/ocean_surf/compiled +%%ETCDIR%%/maia.conf.dist +%%ETCDIR%%/maiad.conf.dist +%%ETCDIR%%/templates/digest.tpl.dist +%%ETCDIR%%/templates/newuser.tpl.dist +%%ETCDIR%%/templates/reminder.tpl.dist +share/maia/scripts/configtest.pl +share/maia/scripts/expire-quarantine-cache.pl +share/maia/scripts/generate-key.pl +share/maia/scripts/load-sa-rules.pl +share/maia/scripts/maiadbtool.pl +share/maia/scripts/process-quarantine.pl +share/maia/scripts/resend.pl +share/maia/scripts/send-quarantine-digests.pl +share/maia/scripts/send-quarantine-reminders.pl +share/maia/scripts/stats-snapshot.pl sbin/maiad %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/README @@ -47,10 +71,7 @@ %%WWWDIR%%/chart_rules.php %%WWWDIR%%/chart_stats.php %%WWWDIR%%/chart_virus.php -@unexec if cmp -s %D/www/maia/config.php.dist %D/www/maia/config.php; then rm -f %D/www/maia/config.php; fi %%WWWDIR%%/config.php.dist -@exec if [ ! -f %D/www/maia/config.php ] ; then cp -p %D/%F %B/config.php; fi -%%WWWDIR%%/config.php.dist %%WWWDIR%%/confirm.php %%WWWDIR%%/constants.php %%WWWDIR%%/core.php @@ -895,53 +916,57 @@ %%WWWDIR%%/ximpersonate.php %%WWWDIR%%/xlogin.php %%WWWDIR%%/xsettings.php -@dirrm %%WWWDIR%%/themes/ocean_surf/templates/settings -@dirrm %%WWWDIR%%/themes/ocean_surf/templates -@dirrm %%WWWDIR%%/themes/ocean_surf/javascript -@dirrm %%WWWDIR%%/themes/ocean_surf/images -@dirrm %%WWWDIR%%/themes/ocean_surf/css/images -@dirrm %%WWWDIR%%/themes/ocean_surf/css -@dirrm %%WWWDIR%%/themes/ocean_surf/compiled -@dirrm %%WWWDIR%%/themes/ocean_surf/code -@dirrm %%WWWDIR%%/themes/ocean_surf -@dirrm %%WWWDIR%%/themes/dgm/templates -@dirrm %%WWWDIR%%/themes/dgm/images -@dirrm %%WWWDIR%%/themes/dgm/css -@dirrm %%WWWDIR%%/themes/dgm/compiled -@dirrm %%WWWDIR%%/themes/dgm/code -@dirrm %%WWWDIR%%/themes/dgm -@dirrm %%WWWDIR%%/themes/desert_sand/templates/welcome -@dirrm %%WWWDIR%%/themes/desert_sand/templates/settings -@dirrm %%WWWDIR%%/themes/desert_sand/templates -@dirrm %%WWWDIR%%/themes/desert_sand/javascript -@dirrm %%WWWDIR%%/themes/desert_sand/images -@dirrm %%WWWDIR%%/themes/desert_sand/css/images -@dirrm %%WWWDIR%%/themes/desert_sand/css -@dirrm %%WWWDIR%%/themes/desert_sand/compiled -@dirrm %%WWWDIR%%/themes/desert_sand/code -@dirrm %%WWWDIR%%/themes/desert_sand -@dirrm %%WWWDIR%%/themes -@dirrm %%WWWDIR%%/overlib/mini -@dirrm %%WWWDIR%%/overlib -@dirrm %%WWWDIR%%/maia_db -@dirrm %%WWWDIR%%/locale/sv -@dirrm %%WWWDIR%%/locale/ru -@dirrm %%WWWDIR%%/locale/pt -@dirrm %%WWWDIR%%/locale/no -@dirrm %%WWWDIR%%/locale/nl -@dirrm %%WWWDIR%%/locale/it -@dirrm %%WWWDIR%%/locale/hu -@dirrm %%WWWDIR%%/locale/fr -@dirrm %%WWWDIR%%/locale/en -@dirrm %%WWWDIR%%/locale/de -@dirrm %%WWWDIR%%/locale/da -@dirrm %%WWWDIR%%/locale/cs -@dirrm %%WWWDIR%%/locale -@dirrm %%WWWDIR%%/libs/jquery/images -@dirrm %%WWWDIR%%/libs/jquery -@dirrm %%WWWDIR%%/libs -@dirrm %%WWWDIR%%/images -@dirrm %%WWWDIR%%/admin/scripts -@dirrm %%WWWDIR%%/admin +@dirrmtry %%WWWDIR%%/themes/ocean_surf/templates/settings +@dirrmtry %%WWWDIR%%/themes/ocean_surf/templates +@dirrmtry %%WWWDIR%%/themes/ocean_surf/javascript +@dirrmtry %%WWWDIR%%/themes/ocean_surf/images +@dirrmtry %%WWWDIR%%/themes/ocean_surf/css/images +@dirrmtry %%WWWDIR%%/themes/ocean_surf/css +@dirrmtry %%WWWDIR%%/themes/ocean_surf/compiled +@dirrmtry %%WWWDIR%%/themes/ocean_surf/code +@dirrmtry %%WWWDIR%%/themes/ocean_surf +@dirrmtry %%WWWDIR%%/themes/dgm/templates +@dirrmtry %%WWWDIR%%/themes/dgm/images +@dirrmtry %%WWWDIR%%/themes/dgm/css +@dirrmtry %%WWWDIR%%/themes/dgm/compiled +@dirrmtry %%WWWDIR%%/themes/dgm/code +@dirrmtry %%WWWDIR%%/themes/dgm +@dirrmtry %%WWWDIR%%/themes/desert_sand/templates/welcome +@dirrmtry %%WWWDIR%%/themes/desert_sand/templates/settings +@dirrmtry %%WWWDIR%%/themes/desert_sand/templates +@dirrmtry %%WWWDIR%%/themes/desert_sand/javascript +@dirrmtry %%WWWDIR%%/themes/desert_sand/images +@dirrmtry %%WWWDIR%%/themes/desert_sand/css/images +@dirrmtry %%WWWDIR%%/themes/desert_sand/css +@dirrmtry %%WWWDIR%%/themes/desert_sand/compiled +@dirrmtry %%WWWDIR%%/themes/desert_sand/code +@dirrmtry %%WWWDIR%%/themes/desert_sand +@dirrmtry %%WWWDIR%%/themes +@dirrmtry %%WWWDIR%%/overlib/mini +@dirrmtry %%WWWDIR%%/overlib +@dirrmtry %%WWWDIR%%/maia_db +@dirrmtry %%WWWDIR%%/locale/sv +@dirrmtry %%WWWDIR%%/locale/ru +@dirrmtry %%WWWDIR%%/locale/pt +@dirrmtry %%WWWDIR%%/locale/no +@dirrmtry %%WWWDIR%%/locale/nl +@dirrmtry %%WWWDIR%%/locale/it +@dirrmtry %%WWWDIR%%/locale/hu +@dirrmtry %%WWWDIR%%/locale/fr +@dirrmtry %%WWWDIR%%/locale/en +@dirrmtry %%WWWDIR%%/locale/de +@dirrmtry %%WWWDIR%%/locale/da +@dirrmtry %%WWWDIR%%/locale/cs +@dirrmtry %%WWWDIR%%/locale +@dirrmtry %%WWWDIR%%/libs/jquery/images +@dirrmtry %%WWWDIR%%/libs/jquery +@dirrmtry %%WWWDIR%%/libs +@dirrmtry %%WWWDIR%%/images +@dirrmtry %%WWWDIR%%/admin/scripts +@dirrmtry %%WWWDIR%%/admin @dirrmtry %%WWWDIR%% -%%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrmtry %%DATADIR%%/scripts +@dirrmtry %%DATADIR%% +@dirrmtry %%ETCDIR%%/templates +@dirrmtry %%ETCDIR%% +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 18:40:10 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6459EEC6; Fri, 3 Jan 2014 18:40:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 398AA1709; Fri, 3 Jan 2014 18:40:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03IeAFp084504; Fri, 3 Jan 2014 18:40:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03IeAnp084503; Fri, 3 Jan 2014 18:40:10 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 18:40:10 GMT Message-Id: <201401031840.s03IeAnp084503@freefall.freebsd.org> To: feld@FreeBSD.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185452: [PATCH] security/maia: lots of fixes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 18:40:10 -0000 Synopsis: [PATCH] security/maia: lots of fixes State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Jan 3 18:40:09 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185452 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 18:50:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D0CB4A0 for ; Fri, 3 Jan 2014 18:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1F18C17B7 for ; Fri, 3 Jan 2014 18:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Io0WD086420 for ; Fri, 3 Jan 2014 18:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Io09K086405; Fri, 3 Jan 2014 18:50:00 GMT (envelope-from gnats) Date: Fri, 3 Jan 2014 18:50:00 GMT Message-Id: <201401031850.s03Io09K086405@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Pakhom Golynga Subject: Re: ports/185412: net-mgmt/zabbix22-server: update X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Pakhom Golynga List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 18:50:01 -0000 The following reply was made to PR ports/185412; it has been noted by GNATS. From: Pakhom Golynga To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/185412: net-mgmt/zabbix22-server: update Date: Fri, 03 Jan 2014 22:43:27 +0400 This is a multi-part message in MIME format. --------------040505070704040702020209 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Please ignore previous patch and use this patch. Thanks --------------040505070704040702020209 Content-Type: text/plain; charset=UTF-8; name="zabbix22_1.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="zabbix22_1.txt" ZGlmZiAtdXJOIHphYmJpeDIyLXNlcnZlci5vcmlnL01ha2VmaWxlIHphYmJpeDIyLXNlcnZl ci9NYWtlZmlsZQotLS0gemFiYml4MjItc2VydmVyLm9yaWcvTWFrZWZpbGUJMjAxNC0wMS0w MiAxMTo1MDoxMS4zMDI3MTcwMDAgKzA0MDAKKysrIHphYmJpeDIyLXNlcnZlci9NYWtlZmls ZQkyMDE0LTAxLTAzIDIyOjM5OjMxLjI1ODcxNzQ1OSArMDQwMApAQCAtMyw3ICszLDcgQEAK IAogUE9SVE5BTUU9CXphYmJpeDIyCiBQT1JUVkVSU0lPTj0JMi4yLjEKLVBPUlRSRVZJU0lP Tj89CTAKK1BPUlRSRVZJU0lPTj89CTEKIENBVEVHT1JJRVM9CW5ldC1tZ210CiBNQVNURVJf U0lURVM9CVNGL3phYmJpeC9aQUJCSVglMjBMYXRlc3QlMjBTdGFibGUvJHtQT1JUVkVSU0lP Tn0KIFBLR05BTUVTVUZGSVg/PQktc2VydmVyCkBAIC0xNiw3ICsxNiw3IEBACiAKIENPTkZM SUNUUz0JJHtQS0dCQVNFfS0xLlswLThdKgogCi1JR05PUkVfV0lUSF9QSFA9CTUgNTIKK0lH Tk9SRV9XSVRIX1BIUD0JNTIKIElHTk9SRV9XSVRIX01ZU1FMPSAgICAgIDQxCiAKIC5pZiAk e1BLR05BTUVTVUZGSVh9ICE9ICItYWdlbnQiCkBAIC01OSw3ICs1OSw4IEBACiBHTlVfQ09O RklHVVJFPQl5ZXMKIENPTkZJR1VSRV9BUkdTKz0JLS1lbmFibGUtJHtaQUJCSVhfQlVJTER9 IFwKIAkJCS0tc3lzY29uZmRpcj0ke0VUQ0RJUn0gXAotCQkJLS1kYXRhZGlyPSR7RVRDRElS fQorCQkJLS1kYXRhZGlyPSR7RVRDRElSfSBcCisJCQktLXdpdGgtaWNvbnY9JHtJQ09OVl9Q UkVGSVh9CiAKIC5pZiAke1pBQkJJWF9CVUlMRH0gIT0gImFnZW50IgogTElCX0RFUEVORFM9 CW5ldHNubXA6JHtQT1JUU0RJUn0vbmV0LW1nbXQvbmV0LXNubXAgXApAQCAtNzEsNyArNzIs NyBAQAogCiBPUFRJT05TRklMRT0JJHtQT1JUX0RCRElSfS8ke1BPUlROQU1FfSR7UEtHTkFN RVNVRkZJWH0vb3B0aW9ucwogCi1PUFRJT05TX0RFRklORT0JSVBWNiBGUElORyBKQUJCRVIg Q1VSTCBMREFQIElQTUkgU1NIIE5NQVAgT0RCQyBKQVZBR1cgTVlTUUwKK09QVElPTlNfREVG SU5FPQlJUFY2IEZQSU5HIEpBQkJFUiBDVVJMIExEQVAgSVBNSSBTU0ggTk1BUCBPREJDIEpB VkFHVyBNWVNRTCBMSUJYTUwyCiBPUFRJT05TX0RFRkFVTFQ9CU1ZU1FMIElQVjYgRlBJTkcg SkFCQkVSIENVUkwKIAogQ1VSTF9ERVNDPQlTdXBwb3J0IGZvciB3ZWIgbW9uaXRvcmluZwpA QCAtODUsNiArODYsNyBAQAogSkFWQUdXX0RFU0M9CVN1cHBvcnQgZm9yIEphdmEgZ2F0ZXdh eQogSU9EQkNfREVTQz0JVXNlIGlPREJDIGZvciBPREJDIHN1cHBvcnQKIFVOSVhPREJDX0RF U0M9CVVzZSBVbml4T0RCQyBmb3IgT0RCQyBzdXBwb3J0CitMSUJYTUwyX0RFU0M9CVN1cHBv cnQgZm9yIGxpYnhtbDIgKHJlcXVpcmVkIGJ5IG1vbml0b3JpbmcgVk13YXJlKQogCiBPUFRJ T05TX1NJTkdMRT0JREIgT0RCQwogT1BUSU9OU19TSU5HTEVfREI9CU1ZU1FMIFBHU1FMIFNR TElURSBPUkFDTEUKQEAgLTE3NCw2ICsxNzYsMTEgQEAKIFBMSVNUX1NVQis9CUpBVkFHVz0i QGNvbW1lbnQgIgogLmVuZGlmCiAKKy5pZiAke1BPUlRfT1BUSU9OUzpNTElCWE1MMn0KK0xJ Ql9ERVBFTkRTKz0gICB4bWwyOiR7UE9SVFNESVJ9L3RleHRwcm9jL2xpYnhtbDIKK0NPTkZJ R1VSRV9BUkdTKz0JLS13aXRoLWxpYnhtbDIKKy5lbmRpZgorCiBwb3N0LXBhdGNoOgogCUAk e0dSRVB9IC1ybCAiL2V0Yy96YWJiaXgiICR7V1JLU1JDfSBcCiAJICB8ICR7WEFSR1N9ICR7 UkVJTlBMQUNFX0NNRH0gLWUgJ3MjL2V0Yy96YWJiaXgjJHtFVENESVJ9I2cnCg== --------------040505070704040702020209-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 18:50:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 499634A1 for ; Fri, 3 Jan 2014 18:50:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3705A17B8 for ; Fri, 3 Jan 2014 18:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Io2e1086458 for ; Fri, 3 Jan 2014 18:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Io1Dk086457; Fri, 3 Jan 2014 18:50:01 GMT (envelope-from gnats) Date: Fri, 3 Jan 2014 18:50:01 GMT Message-Id: <201401031850.s03Io1Dk086457@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/185452: [PATCH] security/maia: lots of fixes X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 03 Jan 2014 18:50:02 -0000 The following reply was made to PR ports/185452; it has been noted by GNATS. From: Edwin Groothuis To: ek@purplehat.org Cc: bug-followup@FreeBSD.org Subject: Re: ports/185452: [PATCH] security/maia: lots of fixes Date: Fri, 3 Jan 2014 18:40:09 UT Maintainer of security/maia, Please note that PR ports/185452 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/185452 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 19:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9DA087A3 for ; Fri, 3 Jan 2014 19:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 70A9E1876 for ; Fri, 3 Jan 2014 19:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03J01B4088482 for ; Fri, 3 Jan 2014 19:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03J01qp088481; Fri, 3 Jan 2014 19:00:01 GMT (envelope-from gnats) Date: Fri, 3 Jan 2014 19:00:01 GMT Message-Id: <201401031900.s03J01qp088481@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Pakhom Golynga Subject: Re: ports/185169: net-mgmt/zabbix22-server: incorrect php version in IGNORE_WITH_PHP X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Pakhom Golynga List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 19:00:01 -0000 The following reply was made to PR ports/185169; it has been noted by GNATS. From: Pakhom Golynga To: bug-followup@FreeBSD.org, hsn@sendmail.cz Cc: Subject: Re: ports/185169: net-mgmt/zabbix22-server: incorrect php version in IGNORE_WITH_PHP Date: Fri, 03 Jan 2014 22:52:57 +0400 I fix this problem in PR ports/185412 Please close this PR. Thanks From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 19:06:04 2014 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5783383B; Fri, 3 Jan 2014 19:06:04 +0000 (UTC) Received: from toco-domains.de (mail.toco-domains.de [176.9.39.170]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 14DA618F9; Fri, 3 Jan 2014 19:06:03 +0000 (UTC) Received: from [192.168.1.83] (dsdf-4db5ecd3.pool.mediaWays.net [77.181.236.211]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by toco-domains.de (Postfix) with ESMTPSA id 2C1C21AA9405; Fri, 3 Jan 2014 20:06:01 +0100 (CET) Message-ID: <52C70A18.90601@meisterderspiele.de> Date: Fri, 03 Jan 2014 20:06:00 +0100 From: =?ISO-8859-1?Q?Torsten_Z=FChlsdorff?= User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: FreeBSD-gnats-submit@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/183657: www/serendipity: Update to 1.7.3 (with patch) References: <201311041140.rA4Be0sf058252@freefall.freebsd.org> In-Reply-To: <201311041140.rA4Be0sf058252@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 19:06:04 -0000 Hello, after 2 months this little update is not committed yet. Can i do something to help you? Thanks for your work and a happy new year! Torsten On 04.11.2013 12:40, FreeBSD-gnats-submit@FreeBSD.org wrote: > Thank you very much for your problem report. > It has the internal identification `ports/183657'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=183657 > >> Category: ports >> Responsible: freebsd-ports-bugs >> Synopsis: www/serendipity: Update to 1.7.3 (with patch) >> Arrival-Date: Mon Nov 04 11:40:00 UTC 2013 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 19:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CC0CFF20 for ; Fri, 3 Jan 2014 19:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8DB581A91 for ; Fri, 3 Jan 2014 19:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03JK0sX093360 for ; Fri, 3 Jan 2014 19:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03JK01s093359; Fri, 3 Jan 2014 19:20:00 GMT (envelope-from gnats) Resent-Date: Fri, 3 Jan 2014 19:20:00 GMT Resent-Message-Id: <201401031920.s03JK01s093359@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, Paul Brooks Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9F26E4A for ; Fri, 3 Jan 2014 19:14:21 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D80041A5C for ; Fri, 3 Jan 2014 19:14:21 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s03JELMP053133 for ; Fri, 3 Jan 2014 19:14:21 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s03JELjR053129; Fri, 3 Jan 2014 19:14:21 GMT (envelope-from nobody) Message-Id: <201401031914.s03JELjR053129@oldred.freebsd.org> Date: Fri, 3 Jan 2014 19:14:21 GMT From: Paul Brooks To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185453: print/tex-luatex compilation fails on sparc64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 19:20:00 -0000 >Number: 185453 >Category: ports >Synopsis: print/tex-luatex compilation fails on sparc64 >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 Jan 03 19:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Paul Brooks >Release: FreeBSD 9.2-STABLE >Organization: >Environment: FreeBSD elon 9.2-STABLE FreeBSD 9.2-STABLE #0 r256546: Tue Oct 22 16:26:14 PDT 2013 root@elon:/usr/obj/usr/src/sys/ELON sparc64 >Description: On FreeBSD sparc64, the port print/tex-luatex fails to compile, with errors originating in luatexdir/lua51/lcoco.c >How-To-Repeat: Attempt to compile the current print/tex-luatex on FreeBSD sparc64 >Fix: A work around that allows the port to compile, albeit with slightly slower execution: --- /usr/ports/print/tex-luatex/Makefile 2013-09-04 00:55:49.000000000 -0700 +++ Makefile 2013-09-11 21:33:45.347352461 -0700 @@ -97,4 +97,11 @@ ${CAT} ${DISTDIR}/${DIST_SUBDIR}/texlive-${DISTVERSION_TEXMF}-texmf${EXTRACT_SUFX} \ ${EXTRACT_AFTER_ARGS_TEXMF} -.include +.include + +.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64" +CFLAGS+= -DCOCO_DISABLE +.endif + +.include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 19:20:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C34EEF4D; Fri, 3 Jan 2014 19:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 960C21A92; Fri, 3 Jan 2014 19:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03JK8WO093494; Fri, 3 Jan 2014 19:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03JK8SG093493; Fri, 3 Jan 2014 19:20:08 GMT (envelope-from edwin) Date: Fri, 3 Jan 2014 19:20:08 GMT Message-Id: <201401031920.s03JK8SG093493@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, hrs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185453: print/tex-luatex compilation fails on sparc64 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 19:20:08 -0000 Synopsis: print/tex-luatex compilation fails on sparc64 Responsible-Changed-From-To: freebsd-ports-bugs->hrs Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 3 19:20:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185453 From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 19:40:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80951B9D for ; Fri, 3 Jan 2014 19:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 617D11D23 for ; Fri, 3 Jan 2014 19:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Je24x097735 for ; Fri, 3 Jan 2014 19:40:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Je2Ek097734; Fri, 3 Jan 2014 19:40:02 GMT (envelope-from gnats) Date: Fri, 3 Jan 2014 19:40:02 GMT Message-Id: <201401031940.s03Je2Ek097734@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: KATO Tsuguru Subject: Re: ports/181890: net-p2p/gtk-gnutella: Update to version 1.0.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: KATO Tsuguru List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 19:40:02 -0000 The following reply was made to PR ports/181890; it has been noted by GNATS. From: KATO Tsuguru To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/181890: net-p2p/gtk-gnutella: Update to version 1.0.0 Date: Sat, 4 Jan 2014 04:22:27 +0900 This is a multi-part message in MIME format. --Multipart=_Sat__4_Jan_2014_04_22_27_+0900_SvpMc8379XiA6f80 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Version 1.0.1 has been released. --Multipart=_Sat__4_Jan_2014_04_22_27_+0900_SvpMc8379XiA6f80 Content-Type: text/x-diff; name="net-p2p_gtk-gnutella.diff" Content-Disposition: attachment; filename="net-p2p_gtk-gnutella.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/net-p2p/gtk-gnutella/Makefile net-p2p/gtk-gnutella/Makefile --- /usr/ports/net-p2p/gtk-gnutella/Makefile 2013-11-06 21:48:41.000000000 +0900 +++ net-p2p/gtk-gnutella/Makefile 2014-01-04 00:00:00.000000000 +0900 @@ -24,9 +24,6 @@ # # WITH_DBUS: Enable D-Bus IPC support. No further information available. # -# WITH_SQLITE: Enable to support storage of run-time information to a SQLite -# database file. Should ideally save some memory. -# # WITH_DEBUG: Compile with debugging symbols. Useful if you intend to make # a bug report. # @@ -36,8 +33,7 @@ # PORTNAME= gtk-gnutella -PORTVERSION= 0.98.4 -PORTREVISION= 1 +PORTVERSION= 1.0.1 CATEGORIES= net-p2p ipv6 MASTER_SITES= SF @@ -46,29 +42,32 @@ LICENSE= GPLv2 # (or later) -OPTIONS_DEFINE= GUI TLS NLS IPV6 DBUS SQLITE DEBUG PORTABILITY +OPTIONS_DEFINE= GUI TLS NLS IPV6 DBUS DEBUG PORTABILITY OPTIONS_DEFAULT=GUI TLS +OPTIONS_SUB= yes PORTABILITY_DESC= Use the PATH variable at run-time ONLY_FOR_ARCHS= i386 amd64 -NO_STAGE= yes USE_BZIP2= yes +USES= iconv perl5 pkgconfig USE_GNOME= glib20 libxml2 -USES= bison perl5 pkgconfig HAS_CONFIGURE= yes CONFIGURE_SCRIPT= Configure -CONFIGURE_ARGS= -O -Dyacc='bison -y' -Dprefix=${PREFIX} \ - -Dprivlib=${DATADIR} -Dsysman=${MANPREFIX}/man/man1 \ - -Dlocale=${PREFIX}/share/locale -Dcc='${CC}' \ - -Dccflags='${CFLAGS} -I${LOCALBASE}/include' \ - -Doptimize='undef' +CONFIGURE_ARGS= -O -Dyacc='byacc' \ + -Dprefix=${STAGEDIR}${PREFIX} \ + -Dprivlib=${STAGEDIR}${DATADIR} \ + -Dmansrc=${STAGEDIR}${MANPREFIX}/man/man1 \ + -Dlocale=${PREFIX}/share/locale \ + -Dcc='${CC}' -Doptimize='${CFLAGS}' \ + -Dccflags='${CPPFLAGS}' -Dldflags='${LDFLAGS}' INSTALL_TARGET= install install.man MAKE_JOBS_UNSAFE= yes -PLIST_SUB= ARCH="${ARCH}" +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib -MAN1= gtk-gnutella.1 +PLIST_SUB= ARCH="${ARCH}" .include @@ -77,51 +76,57 @@ .endif .if ${PORT_OPTIONS:MDEBUG} -CONFIGURE_ARGS+= -D optimize=-g -D official=false -.else -CONFIGURE_ARGS+= -D official=true +CONFIGURE_ARGS+= -Ud_official .endif .if ${PORT_OPTIONS:MGUI} USE_GNOME+= gtk20 -CONFIGURE_ARGS+= -D gtkversion=2 +INSTALLS_ICONS= yes .else -CONFIGURE_ARGS+= -D d_headless +CONFIGURE_ARGS+= -Dd_headless .endif .if ${PORT_OPTIONS:MPORTABILITY} -CONFIGURE_ARGS+= -D d_portable +CONFIGURE_ARGS+= -Dd_portable .endif .if ${PORT_OPTIONS:MTLS} -LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls +LIB_DEPENDS+= libgnutls.so:${PORTSDIR}/security/gnutls .else -CONFIGURE_ARGS+= -U d_gnutls +CONFIGURE_ARGS+= -Ud_gnutls .endif .if ${PORT_OPTIONS:MNLS} USES+= gettext -CONFIGURE_ARGS+= -D d_nls -PLIST_SUB+= NLS="" .else -CONFIGURE_ARGS+= -U d_nls -PLIST_SUB+= NLS="@comment " +CONFIGURE_ARGS+= -Ud_nls .endif .if empty(PORT_OPTIONS:MIPV6) -CONFIGURE_ARGS+= -D ipv6=false +CONFIGURE_ARGS+= -Ud_ipv6 .endif .if ${PORT_OPTIONS:MDBUS} -LIB_DEPENDS+= dbus:${PORTSDIR}/devel/dbus +LIB_DEPENDS+= libdbus.so:${PORTSDIR}/devel/dbus .else -CONFIGURE_ARGS+= -U d_dbus +CONFIGURE_ARGS+= -Ud_dbus .endif -.if ${PORT_OPTIONS:MSQLITE} -USE_SQLITE= yes -.else -CONFIGURE_ARGS+= -U d_sqlite +post-patch: + @${FIND} ${WRKSRC} -name "Makefile.SH" | ${XARGS} ${REINPLACE_CMD} -e \ + 's|@exit 0|@echo done|' + +post-install: +.if ${PORT_OPTIONS:MGUI} +.for i in 16 32 128 256 512 + @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps + (cd ${WRKSRC}/extra_files && ${INSTALL_DATA} gtk-gnutella.${i}.png \ + ${STAGEDIR}${PREFIX}/share/icons/hicolor/${i}x${i}/apps/gtk-gnutella.png) +.endfor + @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps + (cd ${WRKSRC}/extra_files && ${INSTALL_DATA} gtk-gnutella.svg \ + ${STAGEDIR}${PREFIX}/share/icons/hicolor/scalable/apps/gtk-gnutella.svg) .endif + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/gtk-gnutella .include diff -urN /usr/ports/net-p2p/gtk-gnutella/distinfo net-p2p/gtk-gnutella/distinfo --- /usr/ports/net-p2p/gtk-gnutella/distinfo 2013-11-06 21:48:41.000000000 +0900 +++ net-p2p/gtk-gnutella/distinfo 2014-01-04 00:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (gtk-gnutella-0.98.4.tar.bz2) = c4cac5707ece44a92e4b0387e309ca334be348a81e44c2db7f4c9946a8a58fb5 -SIZE (gtk-gnutella-0.98.4.tar.bz2) = 19078172 +SHA256 (gtk-gnutella-1.0.1.tar.bz2) = 0f54871782afac7f55f214597bf7162926081f12b3488b13187562dcc5fc0f04 +SIZE (gtk-gnutella-1.0.1.tar.bz2) = 19010641 diff -urN /usr/ports/net-p2p/gtk-gnutella/files/patch-Configure net-p2p/gtk-gnutella/files/patch-Configure --- /usr/ports/net-p2p/gtk-gnutella/files/patch-Configure 2013-11-06 21:48:41.000000000 +0900 +++ net-p2p/gtk-gnutella/files/patch-Configure 1970-01-01 09:00:00.000000000 +0900 @@ -1,14 +0,0 @@ ---- Configure Thu Oct 18 17:02:36 2007 -+++ Configure Thu Oct 18 17:03:04 2007 -@@ -8678,11 +8678,6 @@ - $aptget 'ADVICE: Run "apt-get install zlib1g-dev".' >&4 - fi - --if [ "$iconv" != yes ]; then -- bailout=yes -- echo 'ERROR: Cannot find iconv(). Library or header files might be missing.' >&4 --fi -- - if [ "$frontend" != none ]; then - case "$d_gtk" in - "$undef") diff -urN /usr/ports/net-p2p/gtk-gnutella/files/patch-src__common.h net-p2p/gtk-gnutella/files/patch-src__common.h --- /usr/ports/net-p2p/gtk-gnutella/files/patch-src__common.h 2013-11-06 21:48:41.000000000 +0900 +++ net-p2p/gtk-gnutella/files/patch-src__common.h 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ ---- src/common.h.orig 2012-11-12 01:29:34.000000000 +0900 -+++ src/common.h 2012-12-05 16:43:09.000000000 +0900 -@@ -756,7 +756,7 @@ - * warnings on a wrong __asm__ statement with glib 1.2. This version - * should be as efficient as the one defined by glib. - */ --#if HAS_GCC(4, 0) -+#if HAS_GCC(4, 0) && !defined(__FreeBSD__) - #define GUINT32_SWAP(x_) \ - (IS_CONSTANT(x_) ? GUINT32_SWAP_CONSTANT(x_) : __builtin_bswap32(x_)) - #else diff -urN /usr/ports/net-p2p/gtk-gnutella/pkg-plist net-p2p/gtk-gnutella/pkg-plist --- /usr/ports/net-p2p/gtk-gnutella/pkg-plist 2013-11-06 21:48:41.000000000 +0900 +++ net-p2p/gtk-gnutella/pkg-plist 2014-01-04 00:00:00.000000000 +0900 @@ -1,4 +1,5 @@ bin/gtk-gnutella +man/man1/gtk-gnutella.1.gz share/applications/gtk-gnutella.desktop %%DATADIR%%/%%ARCH%%-freebsd/gtk-gnutella.nm %%DATADIR%%/bogons.txt @@ -30,7 +31,7 @@ %%DATADIR%%/pixmaps/firewall_udp_punchable.xpm %%DATADIR%%/pixmaps/freeze.xpm %%DATADIR%%/pixmaps/icon.16x16.xpm -%%DATADIR%%/pixmaps/icon.32x32.xpm +%%DATADIR%%/pixmaps/icon.48x48.xpm %%DATADIR%%/pixmaps/icon.xpm %%DATADIR%%/pixmaps/leaf.xpm %%DATADIR%%/pixmaps/legacy.xpm @@ -63,6 +64,12 @@ %%DATADIR%%/spam.txt %%DATADIR%%/spam_sha1.txt %%DATADIR%%/tr/FAQ +%%GUI%%share/icons/hicolor/128x128/apps/gtk-gnutella.png +%%GUI%%share/icons/hicolor/16x16/apps/gtk-gnutella.png +%%GUI%%share/icons/hicolor/256x256/apps/gtk-gnutella.png +%%GUI%%share/icons/hicolor/32x32/apps/gtk-gnutella.png +%%GUI%%share/icons/hicolor/512x512/apps/gtk-gnutella.png +%%GUI%%share/icons/hicolor/scalable/apps/gtk-gnutella.svg %%NLS%%share/locale/de/LC_MESSAGES/gtk-gnutella.mo %%NLS%%share/locale/el/LC_MESSAGES/gtk-gnutella.mo %%NLS%%share/locale/es/LC_MESSAGES/gtk-gnutella.mo @@ -77,6 +84,8 @@ %%NLS%%share/locale/zh_CN/LC_MESSAGES/gtk-gnutella.mo share/pixmaps/gtk-gnutella.png share/pixmaps/gtk-gnutella.svg +%%GUI%%@dirrmtry share/icons/hicolor/512x512/apps +%%GUI%%@dirrmtry share/icons/hicolor/512x512 @dirrm %%DATADIR%%/tr @dirrm %%DATADIR%%/pixmaps @dirrm %%DATADIR%%/ja --Multipart=_Sat__4_Jan_2014_04_22_27_+0900_SvpMc8379XiA6f80-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 19:40:04 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8DF7CBA3 for ; Fri, 3 Jan 2014 19:40:04 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 790F11D26 for ; Fri, 3 Jan 2014 19:40:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03Je4NI097747 for ; Fri, 3 Jan 2014 19:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03Je4Lh097746; Fri, 3 Jan 2014 19:40:04 GMT (envelope-from gnats) Date: Fri, 3 Jan 2014 19:40:04 GMT Message-Id: <201401031940.s03Je4Lh097746@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: KATO Tsuguru Subject: Re: ports/174176: audio/timidity++: Update to version 2.14.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: KATO Tsuguru List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 19:40:04 -0000 The following reply was made to PR ports/174176; it has been noted by GNATS. From: KATO Tsuguru To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/174176: audio/timidity++: Update to version 2.14.0 Date: Sat, 4 Jan 2014 04:22:24 +0900 This is a multi-part message in MIME format. --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Remake of the patch against current tree. --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96 Content-Type: text/x-diff; name="audio_timidity++.diff" Content-Disposition: attachment; filename="audio_timidity++.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++/Makefile audio/timidity++/Makefile --- /usr/ports/audio/timidity++/Makefile 2014-01-04 03:59:30.000000000 +0900 +++ audio/timidity++/Makefile 2014-01-04 00:00:00.000000000 +0900 @@ -2,8 +2,8 @@ # $FreeBSD: head/audio/timidity++/Makefile 338547 2014-01-03 15:26:06Z adamw $ PORTNAME= timidity++ -PORTVERSION= 2.13.2 -PORTREVISION?= 11 +PORTVERSION= 2.14.0 +PORTREVISION?= 0 CATEGORIES+= audio MASTER_SITES= SF/timidity/TiMidity%2B%2B/TiMidity%2B%2B-${PORTVERSION} DISTNAME= TiMidity++-${PORTVERSION} @@ -11,84 +11,89 @@ MAINTAINER?= ports@FreeBSD.org COMMENT?= Software MIDI player +LICENSE= GPLv2 # (or later) + .if !defined(PKGNAMESUFFIX) -LIB_DEPENDS= libvorbis.so:${PORTSDIR}/audio/libvorbis \ - libarc.so:${PORTSDIR}/archivers/libarc -RUN_DEPENDS= ${LOCALBASE}/share/timidity/timidity.cfg:${PORTSDIR}/audio/eawpats +LIB_DEPENDS+= libarc.so:${PORTSDIR}/archivers/libarc \ + libvorbis.so:${PORTSDIR}/audio/libvorbis +RUN_DEPENDS+= eawpats>0:${PORTSDIR}/audio/eawpats + +OPTIONS_DEFINE= EAWPLUS ESOUND X11 DOCS +OPTIONS_DEFAULT=X11 +EAWPLUS_DESC= Collection of Gravis Ultrasound MIDI patches -CONFLICTS= timidity-0.* +CONFLICTS_INSTALL= timidity-[0-9]* .endif -USES= gmake -NO_STAGE= yes USE_BZIP2= yes +USES= gmake GNU_CONFIGURE= yes +CONFIGURE_ENV+= SHLD="${CC} -shared" +CPPFLAGS+= -I${LOCALBASE}/include/libarc -I${LOCALBASE}/include +LDFLAGS+= -Wl,--export-dynamic -PLIST_SUB+= TIMID_LIBDIR=${TIMID_LIBDIR} EUCJP_LOCALE=${EUCJP_LOCALE} +PLIST_SUB+= TIMID_LIBDIR="${TIMID_LIBDIR}" EUCJP_LOCALE="${EUCJP_LOCALE}" -EUCJP_LOCALE= ja_JP.eucJP TIMID_LIBDIR= lib/timidity +EUCJP_LOCALE= ja_JP.eucJP .include -.if !defined(PKGNAMESUFFIX) -WANT_GNOME= yes -EXTRACT_AFTER_ARGS= --exclude '*/libarc/*' \ - --exclude '*/utils/mblock.h' --exclude '*/utils/memb.h' - +.if defined(PKGNAMESUFFIX) +.include "Makefile.interface" +.else +USES+= ncurses CONFIGURE_ARGS= --enable-interface=ncurses,vt100,server \ - --program-transform-name= --enable-network -CPPFLAGS+= -I${LOCALBASE}/include/libarc -LDFLAGS+= -export-dynamic + --enable-network DOCFILES= README.alsaseq README.dl README.m2m README.mts README.sf -DOCLANG= C ja_JP.eucJP - -MANLANG= "" ja -MAN1= timidity.1 -MAN5= timidity.cfg.5 -.if defined(WITHOUT_X11) -CONFIGURE_ARGS+=--without-x --disable-spectrogram --disable-wrd --disable-dynamic -.else -CONFIGURE_ARGS+=--with-x --enable-spectrogram --enable-wrd --enable-dynamic -USE_XORG= x11 xext -LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png -CPPFLAGS+= -I${LOCALBASE}/include/libpng15 +.if ${PORT_OPTIONS:MEAWPLUS} +RUN_DEPENDS+= eawplus>0:${PORTSDIR}/audio/eawplus .endif -.include - -.if ${HAVE_GNOME:Mesound}!="" -USE_GNOME= esound +.if ${PORT_OPTIONS:MESOUND} +USE_GNOME+= esound CONFIGURE_ARGS+=--enable-audio=oss,esd,vorbis .else CONFIGURE_ARGS+=--enable-audio=oss,vorbis .endif -pre-su-install: - @${MKDIR} ${PREFIX}/share/timidity ${PREFIX}/${TIMID_LIBDIR} +.if ${PORT_OPTIONS:MX11} +LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png +USE_XORG= x11 xext +CONFIGURE_ARGS+=--with-x \ + --enable-spectrogram \ + --enable-wrd \ + --enable-dynamic +CPPFLAGS+= $$(libpng-config --I_opts) +.else +CONFIGURE_ARGS+=--without-x \ + --disable-spectrogram \ + --disable-wrd \ + --disable-dynamic +.endif -post-install:: - ${INSTALL_MAN} ${WRKSRC}/doc/ja_JP.eucJP/timidity.1 \ - ${PREFIX}/man/ja/man1 - ${INSTALL_MAN} ${WRKSRC}/doc/ja_JP.eucJP/timidity.cfg.5 \ - ${PREFIX}/man/ja/man5 -.else # defined(PKGNAMESUFFIX) -.include "${MASTERDIR}/Makefile.interface" -.endif # !defined(PKGNAMESUFFIX) +post-extract: + @${RM} -f ${WRKSRC}/libarc/*.h + @${RM} -f ${WRKSRC}/utils/mblock.h + +pre-su-install: + @${MKDIR} ${STAGEDIR}${PREFIX}/${TIMID_LIBDIR} + @${MKDIR} ${STAGEDIR}${PREFIX}/share/timidity post-install:: -.if ${PORT_OPTIONS:MDOCS} && defined(DOCFILES) -.for lang in ${DOCLANG} - ${MKDIR} ${PREFIX}/share/doc/${lang:C,^C$,,:C,ja_.*,ja/,}timidity++ - cd ${WRKSRC}/doc/${lang} && ${INSTALL_DATA} ${DOCFILES} \ - ${PREFIX}/share/doc/${lang:C,^C$,,:C,ja_.*,ja/,}timidity++/ -.endfor -.endif -.if exists(${PKGMESSAGE}) - @${CAT} ${PKGMESSAGE} -.endif + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_MAN} timidity.1 \ + ${STAGEDIR}${MANPREFIX}/man/ja/man1) + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_MAN} timidity.cfg.5 \ + ${STAGEDIR}${MANPREFIX}/man/ja/man5) + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc/C && ${INSTALL_DATA} ${DOCFILES} \ + ${STAGEDIR}${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME} + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_DATA} ${DOCFILES} \ + ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME}) -.include +.endif # PKGNAMESUFFIX +.include diff -urN /usr/ports/audio/timidity++/Makefile.interface audio/timidity++/Makefile.interface --- /usr/ports/audio/timidity++/Makefile.interface 2013-11-06 21:52:30.000000000 +0900 +++ audio/timidity++/Makefile.interface 2014-01-04 00:00:00.000000000 +0900 @@ -2,11 +2,13 @@ # Shared by timidity++ interface ports -RUN_DEPENDS+= ${LOCALBASE}/bin/timidity:${PORTSDIR}/audio/timidity++ +BUILD_DEPENDS+= libarc>0:${PORTSDIR}/archivers/libarc +RUN_DEPENDS+= timidity++>0:${PORTSDIR}/audio/timidity++ -SLAVEDIRS= audio/timidity++-gtk audio/timidity++-motif \ - audio/timidity++-slang audio/timidity++-tcltk \ - audio/timidity++-xaw audio/timidity++-xskin \ +SLAVEDIRS= audio/timidity++-emacs audio/timidity++-gtk \ + audio/timidity++-motif audio/timidity++-slang \ + audio/timidity++-tcltk audio/timidity++-xaw \ + audio/timidity++-xskin \ japanese/timidity++-slang japanese/timidity++-tcltk INTERFACE= ${PKGNAMESUFFIX:S/^-//} @@ -14,34 +16,35 @@ DESCR= ${.CURDIR}/pkg-descr .if exists(${.CURDIR}/pkg-plist) -PLIST= ${.CURDIR}/pkg-plist +PLIST= ${.CURDIR}/pkg-plist .else PLIST= ${NONEXISTENT} .endif + .if exists(${.CURDIR}/pkg-message) PKGMESSAGE= ${.CURDIR}/pkg-message .else PKGMESSAGE= ${NONEXISTENT} .endif -CONFIGURE_ENV+= SHLD="${CC} -shared ${LDFLAGS}" -LDFLAGS+= -export-dynamic - -CONFIGURE_ARGS+=--enable-dynamic=${INTERFACE} - BUILD_WRKSRC= ${WRKSRC}/interface INSTALL_WRKSRC= ${WRKSRC}/interface +CONFIGURE_ARGS+=--enable-dynamic=${INTERFACE} + # interface section .if ${INTERFACE} == "emacs" -ELISPDIR= share/emacs/site-lisp +CONFIGURE_ARGS+=--with-lispdir=${PREFIX}/share/emacs/site-lisp .endif .if ${INTERFACE} == "gtk" LINK= gtkmidi -USE_GNOME= gtk12 +USES+= pkgconfig +USE_GNOME= gtk20 + +DESKTOP_ENTRIES="GtkMidi" "" "" "${LINK}" "GTK;AudioVideo;Audio;Midi;" "" .endif .if ${INTERFACE} == "motif" @@ -49,52 +52,64 @@ USES+= motif -CONFIGURE_ENV+= MOTIFLIB="${MOTIFLIB}" +DESKTOP_ENTRIES="XmMidi" "" "" "${LINK}" "Motif;AudioVideo;Audio;Midi;" "" .endif .if ${INTERFACE} == "slang" -CONFIGURE_ARGS+=--with-includes=${LOCALBASE}/include \ +.if defined(JAPANESE) +LIB_DEPENDS+= libslang.so:${PORTSDIR}/japanese/libslang +.else +LIB_DEPENDS+= libslang.so:${PORTSDIR}/devel/libslang2 +.endif + +CONFIGURE_ENV+= LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS+=\ + --with-includes=${LOCALBASE}/include \ --with-libraries=${LOCALBASE}/lib \ --enable-ncurses - -LDFLAGS+= -L${LOCALBASE}/lib -LIB_DEPENDS+= slang.2:${PORTSDIR}/japanese/libslang .endif .if ${INTERFACE} == "tcltk" LINK= tkmidi -USE_XORG= x11 - -DOCFILES= README.tk -DOCLANG= C ja_JP.eucJP - .if defined(JAPANESE) -LIB_DEPENDS+= tk80jp.1:${PORTSDIR}/japanese/tk80 - -CONFIGURE_ARGS+= --with-tcl-includes=${LOCALBASE}/include/tcl8.0jp \ +LIB_DEPENDS+= libtk80jp.so:${PORTSDIR}/japanese/tk80 +CONFIGURE_ARGS+=\ + --with-tcl-includes=${LOCALBASE}/include/tcl8.0jp \ --with-tk-includes=${LOCALBASE}/include/tk8.0jp \ - --with-tcl-libs=${LOCALBASE}/lib --with-tk-libs=${LOCALBASE}/lib -CONFIGURE_ENV+= WISH=wish8.0jp + --with-tcl-libs=${LOCALBASE}/lib \ + --with-tk-libs=${LOCALBASE}/lib +WISH= ${LOCALBASE}/bin/wish8.0jp .else -LIB_DEPENDS+= tk84:${PORTSDIR}/x11-toolkits/tk84 - -CONFIGURE_ARGS+= --with-tcl-includes=${LOCALBASE}/include/tcl8.4 \ - --with-tk-includes=${LOCALBASE}/include/tk8.4 \ - --with-tcl-libs=${LOCALBASE}/lib --with-tk-libs=${LOCALBASE}/lib -CONFIGURE_ENV+= WISH=wish8.4 +USES+= tk +CONFIGURE_ARGS+=\ + --with-tcl-includes=${TCL_INCLUDEDIR} \ + --with-tk-includes=${TK_INCLUDEDIR} \ + --with-tcl-libs=${LOCALBASE}/lib \ + --with-tk-libs=${LOCALBASE}/lib .endif + +USES+= shebangfix +SHEBANG_FILES= interface/tkmidity.ptcl interface/tkpanel.tcl +SHEBANG_LANG= wish +wish_OLD_CMD= /usr/bin/wish +wish_CMD= ${WISH} +USE_XORG= x11 +CONFIGURE_ENV+= WISH="${WISH}" + +LDFLAGS+= -L${LOCALBASE}/lib -lX11 + +DESKTOP_ENTRIES="TkMidi" "" "" "${LINK}" "AudioVideo;Audio;Midi;" "" .endif .if ${INTERFACE} == "xaw" LINK= xawmidi -LIB_DEPENDS+= Xaw3d:${PORTSDIR}/x11-toolkits/Xaw3d -USE_XORG= xaw +LIB_DEPENDS+= libXaw3d.so:${PORTSDIR}/x11-toolkits/Xaw3d -DOCFILES= README.xaw -DOCLANG= C ja_JP.eucJP +USE_XORG= x11 xext xmu xt sm ice xpm +DESKTOP_ENTRIES="XawMidi" "" "" "${LINK}" "AudioVideo;Audio;Midi;" "" .endif .if ${INTERFACE} == "xskin" @@ -102,24 +117,64 @@ USE_XORG= x11 -DOCFILES= README.xskin -DOCLANG= C ja_JP.eucJP +DESKTOP_ENTRIES="XSkinMidi" "" "" "${LINK}" "AudioVideo;Audio;Midi;" "" .endif -.include +post-extract: + @${RM} -f ${WRKSRC}/libarc/*.h + @${RM} -f ${WRKSRC}/utils/mblock.h -post-install:: -.if ${INTERFACE} == "emacs" - @${MKDIR} ${PREFIX}/${ELISPDIR} - ${INSTALL_DATA} ${WRKSRC}/interface/timidity.el ${PREFIX}/${ELISPDIR} +post-patch: +.if ${INTERFACE} == "slang" + @${REINPLACE_CMD} -e \ + 's|"-lslang"|"-lslang $$LIBS"|' ${WRKSRC}/configure +.endif +.if ${INTERFACE} == "tcltk" +.if defined(JAPANESE) + @${REINPLACE_CMD} -e \ + 's|in tcl.*;|in tcl80jp;| ; \ + s|in tk.*;|in tk80jp;|' ${WRKSRC}/configure +.else + @${REINPLACE_CMD} -e \ + 's|in tcl.*;|in tcl${TCL_VER:S|.||};| ; \ + s|in tk.*;|in tk${TK_VER:S|.||};|' ${WRKSRC}/configure +.endif +.endif + +post-install: +.if ${INTERFACE} == "tcltk" + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc/C && ${INSTALL_DATA} README.tk \ + ${STAGEDIR}${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME} + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_DATA} README.tk \ + ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME}) .endif +# .if ${INTERFACE} == "xaw" - @${MKDIR} ${PREFIX}/lib/X11/${EUCJP_LOCALE}/app-defaults - ${INSTALL_DATA} ${WRKSRC}/TiMidity.ad \ - ${PREFIX}/lib/X11/app-defaults/TiMidity - ${INSTALL_DATA} ${WRKSRC}/TiMidity-uj.ad \ - ${PREFIX}/lib/X11/${EUCJP_LOCALE}/app-defaults/TiMidity + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/X11/app-defaults + cd ${INSTALL_WRKSRC} && ${INSTALL_DATA} TiMidity.ad \ + ${STAGEDIR}${PREFIX}/lib/X11/app-defaults/TiMidity + @${MKDIR} ${STAGEDIR}${PREFIX}/lib/X11/${EUCJP_LOCALE}/app-defaults + cd ${INSTALL_WRKSRC} && ${INSTALL_DATA} TiMidity-uj.ad \ + ${STAGEDIR}${PREFIX}/lib/X11/${EUCJP_LOCALE}/app-defaults/TiMidity + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc/C && ${INSTALL_DATA} README.xaw \ + ${STAGEDIR}${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME} + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_DATA} README.xaw \ + ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME}) +.endif +# +.if ${INTERFACE} == "xskin" + @${MKDIR} ${STAGEDIR}${DOCSDIR} + (cd ${WRKSRC}/doc/C && ${INSTALL_DATA} README.xskin \ + ${STAGEDIR}${DOCSDIR}) + @${MKDIR} ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME} + (cd ${WRKSRC}/doc/ja_JP.eucJP && ${INSTALL_DATA} README.xskin \ + ${STAGEDIR}${PREFIX}/share/doc/ja/${PORTNAME}) .endif +# .if defined(LINK) - ${LN} -sf ${PREFIX}/bin/timidity ${PREFIX}/bin/${LINK} + ${LN} -sf timidity ${STAGEDIR}${PREFIX}/bin/${LINK} .endif diff -urN /usr/ports/audio/timidity++/distinfo audio/timidity++/distinfo --- /usr/ports/audio/timidity++/distinfo 2013-11-06 21:52:30.000000000 +0900 +++ audio/timidity++/distinfo 2014-01-04 00:00:00.000000000 +0900 @@ -1,2 +1,2 @@ -SHA256 (TiMidity++-2.13.2.tar.bz2) = 0a8524b789b57eaf944c3d9bce32c21a4e893016b22a02a24cd0a4c6afee7260 -SIZE (TiMidity++-2.13.2.tar.bz2) = 1581230 +SHA256 (TiMidity++-2.14.0.tar.bz2) = f97fb643f049e9c2e5ef5b034ea9eeb582f0175dce37bc5df843cc85090f6476 +SIZE (TiMidity++-2.14.0.tar.bz2) = 1611424 diff -urN /usr/ports/audio/timidity++/files/patch-Makefile.in audio/timidity++/files/patch-Makefile.in --- /usr/ports/audio/timidity++/files/patch-Makefile.in 2013-11-06 21:52:30.000000000 +0900 +++ audio/timidity++/files/patch-Makefile.in 2014-01-04 00:00:00.000000000 +0900 @@ -1,37 +1,10 @@ -http://timidity-docs.sourceforge.jp/cgi-bin/kagemai-en/guest.cgi?project=timidity-bugs-en&action=view_report&id=56 - -Plus another patch... - ---- timidity/Makefile.in Sun Oct 3 08:39:54 2004 -+++ timidity/Makefile.in Thu Sep 22 03:11:09 2005 -@@ -478,5 +477,5 @@ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ --@BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ -+@BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ -larc \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ -@@ -509,5 +507,4 @@ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ --@BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ - @BORLANDC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ -@@ -585,5 +583,4 @@ - @BORLANDC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ - @BORLANDC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ --@BORLANDC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ - @BORLANDC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ - @BORLANDC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a -@@ -576,9 +576,8 @@ - p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ - if test -f $$p \ - ; then \ -- f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ -- echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ -- $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ -+ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$p"; \ -+ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$p || exit 1; \ - else :; fi; \ - done - +--- Makefile.in.orig 2012-06-28 23:14:25.000000000 +0900 ++++ Makefile.in 2012-10-01 02:41:14.000000000 +0900 +@@ -284,7 +284,6 @@ + SUBDIRS = \ + autoconf \ + utils \ +- libarc \ + libunimod \ + interface \ + timidity \ diff -urN /usr/ports/audio/timidity++/files/patch-configure audio/timidity++/files/patch-configure --- /usr/ports/audio/timidity++/files/patch-configure 2013-11-06 21:52:30.000000000 +0900 +++ audio/timidity++/files/patch-configure 1970-01-01 09:00:00.000000000 +0900 @@ -1,33 +0,0 @@ -http://timidity-docs.sourceforge.jp/cgi-bin/kagemai-en/guest.cgi?project=timidity-bugs-en&action=view_report&id=58 - ---- configure Sun Oct 3 08:39:51 2004 -+++ configure Thu Sep 22 02:49:01 2005 -@@ -16605,5 +16605,5 @@ - tcl_lib= - tk_lib= -- for l in tcl tcl8.4 tcl8.3 tcl8.0jp tcl7.6jp tcl80jp tcl76jp tcl8.0 tcl7.6 tcl80 tcl76; do -+ for l in tcl84 tcl83 tcl8.0jp tcl7.6jp tcl80jp tcl76jp tcl8.0 tcl7.6 tcl80 tcl76; do - case "x$tcl_lib" in x) as_ac_Lib=`echo "ac_cv_lib_$l''_Tcl_Init" | $as_tr_sh` - echo "$as_me:$LINENO: checking for Tcl_Init in -l$l" >&5 -@@ -16677,5 +16677,5 @@ - done - LIBS="$LIBS $tcl_lib" -- for l in tk tk8.4 tk8.3 tk8.0jp tk4.2jp tk80jp tk42jp tk8.0 tk4.2 tk80 tk42; do -+ for l in tk tk84 tk83 tk8.0jp tk4.2jp tk80jp tk42jp tk8.0 tk4.2 tk80 tk42; do - case "x$tk_lib" in x) as_ac_Lib=`echo "ac_cv_lib_$l''_Tk_Init" | $as_tr_sh` - echo "$as_me:$LINENO: checking for Tk_Init in -l$l" >&5 -@@ -19522,5 +19522,5 @@ - - -- ac_config_files="$ac_config_files Makefile autoconf/Makefile common.makefile configs/Makefile doc/Makefile doc/C/Makefile doc/ja_JP.eucJP/Makefile interface/Makefile interface/motif_bitmaps/Makefile interface/bitmaps/Makefile interface/pixmaps/Makefile libarc/Makefile libunimod/Makefile timidity/Makefile utils/Makefile script/M akefile TiMidity.ad TiMidity-uj.ad" -+ ac_config_files="$ac_config_files Makefile autoconf/Makefile common.makefile configs/Makefile doc/Makefile doc/C/Makefile doc/ja_JP.eucJP/Makefile interface/Makefile interface/motif_bitmaps/Makefile interface/bitmaps/Makefile interface/pixmaps/Makefile libunimod/Makefile timidity/Makefile utils/Makefile script/Makefile TiMidity .ad TiMidity-uj.ad" - - cat >confcache <<\_ACEOF ---- Makefile.in Wed Sep 22 13:23:32 2004 -+++ Makefile.in Thu Sep 22 02:49:17 2005 -@@ -268,5 +268,4 @@ - autoconf \ - utils \ -- libarc \ - libunimod \ - interface \ diff -urN /usr/ports/audio/timidity++/files/patch-dynamic audio/timidity++/files/patch-dynamic --- /usr/ports/audio/timidity++/files/patch-dynamic 2013-11-06 21:52:30.000000000 +0900 +++ audio/timidity++/files/patch-dynamic 1970-01-01 09:00:00.000000000 +0900 @@ -1,230 +0,0 @@ -http://timidity-docs.sourceforge.jp/cgi-bin/kagemai-en/guest.cgi?project=timidity-bugs-en&action=view_report&id=54 - ---- interface/Makefile.in Sun Oct 3 08:39:54 2004 -+++ interface/Makefile.in Thu Sep 22 00:01:34 2005 -@@ -1240,5 +1240,5 @@ - @NEEDDLOPEN_TRUE@install.dynamics: $(dynamic_targets) - @NEEDDLOPEN_TRUE@ test -d $(DESTDIR)$(SHLIB_DIR) || mkdir -p $(DESTDIR)$(SHLIB_DIR) --@NEEDDLOPEN_TRUE@ for f in $(dynamic_targets) ''; do case ".$$f" in .);; *) $(INSTALL_PROGRAM) $$f $(DESTDIR)$(SHLIB_DIR) ; $(INSTALL_DATA) $${f%%$(so)}txt $(DESTDIR)$(SHLIB_DIR);; esac; done -+@NEEDDLOPEN_TRUE@ for f in $(dynamic_targets) ''; do case ".$$f" in .);; *) $(INSTALL_PROGRAM) $$f $(DESTDIR)$(SHLIB_DIR);; esac; done - - @NEEDDLOPEN_TRUE@.c.$(so): ---- timidity/timidity.c Sat Oct 2 06:46:17 2004 -+++ timidity/timidity.c Thu Sep 22 02:32:24 2005 -@@ -386,5 +386,5 @@ - static inline int parse_opt_c(char *); - static inline int parse_opt_D(const char *); --static inline int parse_opt_d(const char *); -+static inline int parse_opt_d(char *); - static inline int parse_opt_E(char *); - static inline int parse_opt_mod_wheel(const char *); -@@ -418,5 +418,5 @@ - #ifdef IA_DYNAMIC - static inline void list_dyna_interface(FILE *, char *, char *); --static inline char *dynamic_interface_info(int); -+static inline const char *dynamic_interface_info(int); - char *dynamic_interface_module(int); - #endif -@@ -501,4 +501,5 @@ - #ifdef IA_DYNAMIC - MAIN_INTERFACE char dynamic_interface_id; -+ControlMode *ctl_load(int id); - #endif /* IA_DYNAMIC */ - -@@ -2929,11 +2930,9 @@ - } - --static inline int parse_opt_d(const char *arg) -+static inline int parse_opt_d(char *arg) - { - /* dynamic lib root */ - #ifdef IA_DYNAMIC -- if (dynamic_lib_root) -- free(dynamic_lib_root); -- dynamic_lib_root = safe_strdup(arg); -+ dynamic_lib_root = arg; - return 0; - #else -@@ -3935,5 +3934,6 @@ - { - URL url; -- char fname[BUFSIZ], *info; -+ char fname[63]; -+ const char *info; - int id; - -@@ -3946,6 +3946,5 @@ - continue; - mark[id] = 1; -- if ((info = dynamic_interface_info(id)) == NULL) -- info = dynamic_interface_module(id); -+ info = dynamic_interface_info(id); - if (info != NULL) - fprintf(fp, " -i%c %s" NLS, id, info); -@@ -3954,39 +3953,27 @@ - } - --static inline char *dynamic_interface_info(int id) -+static inline const char * -+dynamic_interface_info(int id) - { -- static char libinfo[MAXPATHLEN]; -- int fd, n; -- char *nl; -- -- sprintf(libinfo, "%s" PATH_STRING "interface_%c.txt", -- dynamic_lib_root, id); -- if ((fd = open(libinfo, 0)) < 0) -- return NULL; -- n = read(fd, libinfo, sizeof(libinfo) - 1); -- close(fd); -- if (n <= 0) -- return NULL; -- libinfo[n] = '\0'; -- if ((nl = strchr(libinfo, '\n')) == libinfo) -+ ControlMode *actl; -+ -+ actl = ctl_load(id); -+ if (actl == NULL) - return NULL; -- if (nl != NULL) { -- *nl = '\0'; -- if (*(nl - 1) == '\r') -- *(nl - 1) = '\0'; -- } -- return libinfo; -+ -+ return actl->id_name; - } - --char *dynamic_interface_module(int id) -+char * -+dynamic_interface_module(int id) - { -- static char shared_library[MAXPATHLEN]; -- int fd; -+ char *shared_library; - -+ shared_library = malloc(strlen(dynamic_lib_root) + -+ sizeof(PATH_STRING) - 1 + sizeof("interface_X") - 1 + -+ sizeof(SHARED_LIB_EXT) - 1 + 1); -- sprintf(shared_library, "%s" PATH_STRING "interface_%c%s", -- dynamic_lib_root, id, SHARED_LIB_EXT); -+ sprintf(shared_library, "%s" PATH_STRING "interface_%c" SHARED_LIB_EXT, -+ dynamic_lib_root, id); -- if ((fd = open(shared_library, 0)) < 0) -- return NULL; -- close(fd); -+ - return shared_library; - } -@@ -4012,5 +3996,5 @@ - #ifdef IA_DYNAMIC - if (cmp->id_character == dynamic_interface_id -- && dynamic_interface_module(*arg)) { -+ && ctl_load(*arg)) { - /* Dynamic interface loader */ - found = 1; ---- interface/dynamic_c.c Tue Jan 15 05:53:20 2002 -+++ interface/dynamic_c.c Thu Sep 22 01:17:11 2005 -@@ -80,40 +80,66 @@ - } - --static int ctl_open(int using_stdin, int using_stdout) -+ControlMode * -+ctl_load(int id) - { -- ControlMode *(* inferface_loader)(void); -- char *path; -- char buff[256]; -- int id; -- -- if(dynamic_control_mode.opened) -- return 0; -- dynamic_control_mode.opened = 1; -- -- id = dynamic_control_mode.id_character; -- path = dynamic_interface_module(id); -- if(path == NULL) -- { -- fprintf(stderr, "FATAL ERROR: dynamic_c.c: ctl_open()\n"); -- exit(1); -- } -- -- if((libhandle = dl_load_file(path)) == NULL) -- return -1; -- -- sprintf(buff, "interface_%c_loader", id); -- if((inferface_loader = (ControlMode *(*)(void)) -- dl_find_symbol(libhandle, buff)) == NULL) -- return -1; -- -- ctl = inferface_loader(); -- -- ctl->verbosity = dynamic_control_mode.verbosity; -- ctl->trace_playing = dynamic_control_mode.trace_playing; -- ctl->flags = dynamic_control_mode.flags; -- ctl_close_hook = ctl->close; -- ctl->close = dynamic_control_mode.close; /* ctl_close() */ -+ static int last_id; -+ static ControlMode *last_ctl; -+ ControlMode *(* inferface_loader)(void); -+ char *path; -+ char buff[sizeof("interface_%_loader")]; -+ -+ if (last_id == id) -+ return last_ctl; /* success */ -+ if (last_id) { -+ dl_free(libhandle); -+ last_ctl = NULL; -+ } -+ -+ last_id = id; -+ path = dynamic_interface_module(id); -+ if(path == NULL) { -+ fprintf(stderr, "FATAL ERROR: dynamic_c.c: ctl_load()\n"); -+ exit(1); -+ } -+ -+ libhandle = dl_load_file(path); -+ free(path); -+ if (libhandle == NULL) -+ return NULL; -+ -+ sprintf(buff, "interface_%c_loader", id); -+ if((inferface_loader = (ControlMode *(*)(void)) -+ dl_find_symbol(libhandle, buff)) == NULL) { -+ dl_free(libhandle); -+ return NULL; -+ } - -- return ctl->open(using_stdin, using_stdout); -+ last_ctl = inferface_loader(); -+ -+ return last_ctl; -+} -+ -+static int -+ctl_open(int using_stdin, int using_stdout) -+{ -+ int id; -+ ControlMode *newctl; -+ -+ if(dynamic_control_mode.opened) -+ return 0; -+ dynamic_control_mode.opened = 1; -+ -+ id = dynamic_control_mode.id_character; -+ newctl = ctl_load(id); -+ if (newctl == NULL) -+ return 0; -+ -+ ctl = newctl; -+ ctl->verbosity = dynamic_control_mode.verbosity; -+ ctl->trace_playing = dynamic_control_mode.trace_playing; -+ ctl->flags = dynamic_control_mode.flags; -+ ctl_close_hook = ctl->close; -+ ctl->close = dynamic_control_mode.close; /* ctl_close() */ -+ return ctl->open(using_stdin, using_stdout); - } - diff -urN /usr/ports/audio/timidity++/files/patch-interface__Makefile.in audio/timidity++/files/patch-interface__Makefile.in --- /usr/ports/audio/timidity++/files/patch-interface__Makefile.in 1970-01-01 09:00:00.000000000 +0900 +++ audio/timidity++/files/patch-interface__Makefile.in 2014-01-04 00:00:00.000000000 +0900 @@ -0,0 +1,10 @@ +--- interface/Makefile.in.orig 2012-06-28 23:14:25.000000000 +0900 ++++ interface/Makefile.in 2012-10-13 00:59:03.000000000 +0900 +@@ -340,7 +340,6 @@ + + INCLUDES = \ + -I$(top_srcdir)/timidity \ +- -I$(top_srcdir)/libarc \ + -I$(top_srcdir)/utils + + diff -urN /usr/ports/audio/timidity++/files/patch-interface__tk_c.c audio/timidity++/files/patch-interface__tk_c.c --- /usr/ports/audio/timidity++/files/patch-interface__tk_c.c 1970-01-01 09:00:00.000000000 +0900 +++ audio/timidity++/files/patch-interface__tk_c.c 2014-01-04 00:00:00.000000000 +0900 @@ -0,0 +1,11 @@ +--- interface/tk_c.c.orig ++++ interface/tk_c.c +@@ -913,7 +913,7 @@ + vsnprintf(buf, sizeof(buf), fmt, ap); + Tcl_Eval(my_interp, buf); + va_end(ap); +- return my_interp->result; ++ return Tcl_GetStringResult(my_interp); + } + + static const char *v_get2(const char *v1, const char *v2) diff -urN /usr/ports/audio/timidity++/files/patch-playmidi audio/timidity++/files/patch-playmidi --- /usr/ports/audio/timidity++/files/patch-playmidi 2013-11-06 21:52:30.000000000 +0900 +++ audio/timidity++/files/patch-playmidi 1970-01-01 09:00:00.000000000 +0900 @@ -1,11 +0,0 @@ -http://timidity-docs.sourceforge.jp/cgi-bin/kagemai-en/guest.cgi?project=timidity-bugs-en&action=view_report&id=55 - ---- timidity/playmidi.c Sat Aug 28 01:38:18 2004 -+++ timidity/playmidi.c Sat Sep 10 17:07:45 2005 -@@ -4160,5 +4162,5 @@ - case 0x20: /* Delay Send Level to Reverb */ - ctl->cmsg(CMSG_INFO,VERB_NOISY,"Delay Send Level to Reverb (%d)",val); -- if (delay_status_gs.send_reverb = val) { -+ if (delay_status_gs.send_reverb != val) { - delay_status_gs.send_reverb = val; - recompute_delay_status_gs(); diff -urN /usr/ports/audio/timidity++/files/patch-timidity__Makefile.in audio/timidity++/files/patch-timidity__Makefile.in --- /usr/ports/audio/timidity++/files/patch-timidity__Makefile.in 1970-01-01 09:00:00.000000000 +0900 +++ audio/timidity++/files/patch-timidity__Makefile.in 2014-01-04 00:00:00.000000000 +0900 @@ -0,0 +1,88 @@ +--- timidity/Makefile.in.orig 2012-06-28 23:14:25.000000000 +0900 ++++ timidity/Makefile.in 2012-10-01 03:09:08.000000000 +0900 +@@ -336,7 +336,6 @@ + + INCLUDES = \ + -I$(top_srcdir) \ +- -I$(top_srcdir)/libarc \ + -I$(top_srcdir)/libunimod \ + -I$(top_srcdir)/interface \ + -I$(top_srcdir)/utils \ +@@ -497,7 +496,7 @@ + @VCPP_TRUE@timidity_LDADD = \ + @VCPP_TRUE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @VCPP_TRUE@ $(top_builddir)/interface/interface.lib \ +-@VCPP_TRUE@ $(top_builddir)/libarc/arc.lib \ ++@VCPP_TRUE@ -larc \ + @VCPP_TRUE@ $(top_builddir)/libunimod/unimod.lib \ + @VCPP_TRUE@ $(top_builddir)/utils/utils.lib \ + @VCPP_TRUE@ $(W32GUI_RES) +@@ -528,7 +527,7 @@ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_LDADD = \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ ++@BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ -larc \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(W32GUI_RES) +@@ -558,7 +557,6 @@ + + @BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@ $(top_builddir)/interface/interface.lib \ +-@BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@ $(top_builddir)/libarc/arc.lib \ + @BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@ $(top_builddir)/libunimod/unimod.lib \ + @BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@ $(top_builddir)/utils/utils.lib \ + @BORLANDC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_TRUE@ $(W32GUI_RES) +@@ -573,7 +571,6 @@ + + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_dep = $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ + @BORLANDC_FALSE@@DMC_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(W32GUI_RES) +@@ -648,7 +645,6 @@ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_DEPENDENCIES = \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_TRUE@@WATCOM_C_TRUE@timidity_DEPENDENCIES = \ +@@ -695,7 +691,6 @@ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_DEPENDENCIES = \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_FALSE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/w32g_res.res +@@ -749,7 +744,6 @@ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_DEPENDENCIES = \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_FALSE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/w32g_res.res +@@ -803,7 +797,6 @@ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@timidity_DEPENDENCIES = \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(SYSEXTRAS:.c=.$(OBJEXT)) \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/libinterface.a \ +-@BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libarc/libarc.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/libunimod/libunimod.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/utils/libutils.a \ + @BORLANDC_FALSE@@DMC_FALSE@@ENABLE_W32GUI_TRUE@@ENABLE_W32G_SYN_TRUE@@POCC_FALSE@@VCPP_FALSE@@WATCOM_C_FALSE@ $(top_builddir)/interface/w32g_res.res +@@ -1538,9 +1531,8 @@ + p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ + if test -f $$p \ + ; then \ +- f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ +- echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \ +- $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f || exit 1; \ ++ echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$p"; \ ++ $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$p || exit 1; \ + else :; fi; \ + done + diff -urN /usr/ports/audio/timidity++/files/patch-x_sherry.c audio/timidity++/files/patch-x_sherry.c --- /usr/ports/audio/timidity++/files/patch-x_sherry.c 2013-11-06 21:52:30.000000000 +0900 +++ audio/timidity++/files/patch-x_sherry.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,28 +0,0 @@ ---- interface/x_sherry.c.orig 2002-07-14 23:19:32.000000000 +0200 -+++ interface/x_sherry.c 2012-04-27 13:12:58.000000000 +0200 -@@ -34,6 +34,7 @@ - #endif - #include - #include -+#include - - #include "timidity.h" - #include "common.h" -@@ -909,7 +910,7 @@ - { - if(png_get_valid(pngPtr, infoPtr, PNG_INFO_hIST)) - png_get_hIST(pngPtr, infoPtr, &hist); -- png_set_dither(pngPtr, palette, -+ png_set_quantize(pngPtr, palette, - numPalette, MAX_SCREEN_COLORS, hist, 1); - } - } -@@ -934,7 +935,7 @@ - } - } - } -- png_set_dither(pngPtr, stdColorCube, -+ png_set_quantize(pngPtr, stdColorCube, - 6*7*6, MAX_SCREEN_COLORS, - NULL, 1); - /*???*/ diff -urN /usr/ports/audio/timidity++/files/patch-xaw_i.c audio/timidity++/files/patch-xaw_i.c --- /usr/ports/audio/timidity++/files/patch-xaw_i.c 2013-11-06 21:52:30.000000000 +0900 +++ audio/timidity++/files/patch-xaw_i.c 1970-01-01 09:00:00.000000000 +0900 @@ -1,38 +0,0 @@ ---- interface/xaw_i.c.orig 2004-09-27 08:40:14.000000000 +0900 -+++ interface/xaw_i.c 2007-07-04 01:31:24.000000000 +0900 -@@ -261,7 +261,7 @@ - String bitmapdir = XAW_BITMAP_DIR; - Boolean arrangetitle,savelist; - static char **current_flist = NULL; --static int voices = 0, last_voice = 0, voices_num_width; -+static int xaw_i_voices = 0, last_voice = 0, voices_num_width; - static int maxentry_on_a_menu = 0,submenu_n = 0; - #define OPTIONS_WINDOW 1 - #define FLIST_WINDOW 2 -@@ -1329,7 +1329,7 @@ - c= *(local_buf+1); - n= atoi(local_buf+2); - if(c == 'L') -- voices = n; -+ xaw_i_voices = n; - else - last_voice = n; - if(IsTracePlaying()) drawVoices(); -@@ -2070,7 +2070,7 @@ - XSetForeground(disp, gct, tracecolor); - XFillRectangle(disp,XtWindow(trace),gct,voices_num_width +4, - MAX_XAW_MIDI_CHANNELS*BAR_SPACE+TRACEV_OFS+1,VOICENUM_WIDTH,TRACE_FOOT); -- sprintf(local_buf, "%3d/%d", last_voice, voices); -+ sprintf(local_buf, "%3d/%d", last_voice, xaw_i_voices); - XSetForeground(disp, gct, capcolor); - XDrawString(disp, XtWindow(trace),gct,voices_num_width+6, - MAX_XAW_MIDI_CHANNELS*BAR_SPACE+TRACEV_OFS+16,local_buf,strlen(local_buf)); -@@ -2326,7 +2326,7 @@ - if (c == LF || c == EOF || i > SSIZE) break; - *p++ = c; - } -- *p = (char)NULL; -+ *p = '\0'; - if (0 != strncasecmp(s, "set ", 4)) continue; - switch (configcmp(s+4, &k)) { - case S_RepeatPlay: diff -urN /usr/ports/audio/timidity++/pkg-descr audio/timidity++/pkg-descr --- /usr/ports/audio/timidity++/pkg-descr 2013-11-06 21:52:30.000000000 +0900 +++ audio/timidity++/pkg-descr 2014-01-04 00:00:00.000000000 +0900 @@ -9,4 +9,3 @@ Now, Masanao Izumo and many hackers are developing "TiMidity++". WWW: http://timidity.sourceforge.net/ -WWW: http://www.linet.gr.jp/~tamuki/ diff -urN /usr/ports/audio/timidity++/pkg-plist audio/timidity++/pkg-plist --- /usr/ports/audio/timidity++/pkg-plist 2013-11-06 21:52:30.000000000 +0900 +++ audio/timidity++/pkg-plist 2014-01-04 00:00:00.000000000 +0900 @@ -1,16 +1,20 @@ bin/timidity -%%PORTDOCS%%%%DOCSDIR%%/README.alsaseq -%%PORTDOCS%%%%DOCSDIR%%/README.dl -%%PORTDOCS%%%%DOCSDIR%%/README.m2m -%%PORTDOCS%%%%DOCSDIR%%/README.mts -%%PORTDOCS%%%%DOCSDIR%%/README.sf +man/ja/man1/timidity.1.gz +man/ja/man5/timidity.cfg.5.gz +man/man1/timidity.1.gz +man/man5/timidity.cfg.5.gz %%PORTDOCS%%share/doc/ja/timidity++/README.alsaseq %%PORTDOCS%%share/doc/ja/timidity++/README.dl %%PORTDOCS%%share/doc/ja/timidity++/README.m2m %%PORTDOCS%%share/doc/ja/timidity++/README.mts %%PORTDOCS%%share/doc/ja/timidity++/README.sf -%%PORTDOCS%%@dirrm share/doc/ja/timidity++/ +%%PORTDOCS%%%%DOCSDIR%%/README.alsaseq +%%PORTDOCS%%%%DOCSDIR%%/README.dl +%%PORTDOCS%%%%DOCSDIR%%/README.m2m +%%PORTDOCS%%%%DOCSDIR%%/README.mts +%%PORTDOCS%%%%DOCSDIR%%/README.sf %%PORTDOCS%%@dirrm %%DOCSDIR%% +%%PORTDOCS%%@dirrm share/doc/ja/timidity++ @exec mkdir -p %D/%%TIMID_LIBDIR%% @exec mkdir -p %D/share/timidity @dirrmtry %%TIMID_LIBDIR%% --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96 Content-Type: text/x-diff; name="audio_timidity++-emacs.diff" Content-Disposition: attachment; filename="audio_timidity++-emacs.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-emacs/Makefile audio/timidity++-emacs/Makefile --- /usr/ports/audio/timidity++-emacs/Makefile 2013-11-06 21:52:33.000000000 +0900 +++ audio/timidity++-emacs/Makefile 2014-01-04 00:00:00.000000000 +0900 @@ -8,7 +8,7 @@ MASTERDIR= ${.CURDIR}/../../audio/timidity++ -PLIST_FILES= ${TIMID_LIBDIR}/interface_e.so ${ELISPDIR}/timidity.el -NO_STAGE= yes +PLIST_FILES= ${TIMID_LIBDIR}/if_emacs.so \ + share/emacs/site-lisp/timidity.el .include "${MASTERDIR}/Makefile" --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96 Content-Type: text/x-diff; name="audio_timidity++-gtk.diff" Content-Disposition: attachment; filename="audio_timidity++-gtk.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-gtk/Makefile audio/timidity++-gtk/Makefile --- /usr/ports/audio/timidity++-gtk/Makefile 2013-11-06 21:52:17.000000000 +0900 +++ audio/timidity++-gtk/Makefile 2014-01-04 00:00:00.000000000 +0900 @@ -8,7 +8,6 @@ MASTERDIR= ${.CURDIR}/../../audio/timidity++ -PLIST_FILES= bin/gtkmidi ${TIMID_LIBDIR}/interface_g.so -NO_STAGE= yes +PLIST_FILES= bin/${LINK} ${TIMID_LIBDIR}/if_gtk.so .include "${MASTERDIR}/Makefile" --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96 Content-Type: text/x-diff; name="audio_timidity++-motif.diff" Content-Disposition: attachment; filename="audio_timidity++-motif.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-motif/Makefile audio/timidity++-motif/Makefile --- /usr/ports/audio/timidity++-motif/Makefile 2013-11-06 21:52:18.000000000 +0900 +++ audio/timidity++-motif/Makefile 2014-01-04 00:00:00.000000000 +0900 @@ -8,13 +8,6 @@ MASTERDIR= ${.CURDIR}/../../audio/timidity++ -PLIST_FILES= bin/xmmidi ${TIMID_LIBDIR}/interface_m.so -NO_STAGE= yes - -post-configure: - @${MV} ${WRKSRC}/interface/Makefile ${WRKSRC}/interface/Makefile.orig - @${SED} -e 's^m_so_libs = $$^m_so_libs = -L${LOCALBASE}/lib ${MOTIFLIB} -lXt -lXext -lSM -lICE -lX11 ^' \ - -e 's^dynamic_targets = $$^dynamic_targets = interface_m.so^' \ - ${WRKSRC}/interface/Makefile.orig > ${WRKSRC}/interface/Makefile +PLIST_FILES= bin/${LINK} ${TIMID_LIBDIR}/if_motif.so .include "${MASTERDIR}/Makefile" --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96 Content-Type: text/x-diff; name="audio_timidity++-slang.diff" Content-Disposition: attachment; filename="audio_timidity++-slang.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-slang/Makefile audio/timidity++-slang/Makefile --- /usr/ports/audio/timidity++-slang/Makefile 2013-11-06 21:51:57.000000000 +0900 +++ audio/timidity++-slang/Makefile 2014-01-04 00:00:00.000000000 +0900 @@ -6,10 +6,8 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Slang interface for TiMidity++ - MASTERDIR= ${.CURDIR}/../../audio/timidity++ -PLIST_FILES= ${TIMID_LIBDIR}/interface_s.so -NO_STAGE= yes +PLIST_FILES= ${TIMID_LIBDIR}/if_${INTERFACE}.so .include "${MASTERDIR}/Makefile" --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96 Content-Type: text/x-diff; name="audio_timidity++-tcltk.diff" Content-Disposition: attachment; filename="audio_timidity++-tcltk.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-tcltk/Makefile audio/timidity++-tcltk/Makefile --- /usr/ports/audio/timidity++-tcltk/Makefile 2013-11-06 21:52:04.000000000 +0900 +++ audio/timidity++-tcltk/Makefile 2014-01-04 00:00:00.000000000 +0900 @@ -6,7 +6,8 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Tcl/Tk interface for TiMidity++ +OPTIONS_DEFINE= DOCS + MASTERDIR= ${.CURDIR}/../../audio/timidity++ -NO_STAGE= yes .include "${MASTERDIR}/Makefile" diff -urN /usr/ports/audio/timidity++-tcltk/pkg-plist audio/timidity++-tcltk/pkg-plist --- /usr/ports/audio/timidity++-tcltk/pkg-plist 2013-11-06 21:52:04.000000000 +0900 +++ audio/timidity++-tcltk/pkg-plist 2014-01-04 00:00:00.000000000 +0900 @@ -1,21 +1,30 @@ bin/tkmidi +%%TIMID_LIBDIR%%/bitmaps/arrow.xbm %%TIMID_LIBDIR%%/bitmaps/back.xbm +%%TIMID_LIBDIR%%/bitmaps/check.xbm +%%TIMID_LIBDIR%%/bitmaps/fast.xbm %%TIMID_LIBDIR%%/bitmaps/fwrd.xbm +%%TIMID_LIBDIR%%/bitmaps/keydown.xbm +%%TIMID_LIBDIR%%/bitmaps/keyup.xbm %%TIMID_LIBDIR%%/bitmaps/next.xbm +%%TIMID_LIBDIR%%/bitmaps/off.xbm +%%TIMID_LIBDIR%%/bitmaps/on.xbm %%TIMID_LIBDIR%%/bitmaps/pause.xbm %%TIMID_LIBDIR%%/bitmaps/play.xbm %%TIMID_LIBDIR%%/bitmaps/prev.xbm %%TIMID_LIBDIR%%/bitmaps/quit.xbm %%TIMID_LIBDIR%%/bitmaps/random.xbm %%TIMID_LIBDIR%%/bitmaps/repeat.xbm +%%TIMID_LIBDIR%%/bitmaps/slow.xbm %%TIMID_LIBDIR%%/bitmaps/stop.xbm %%TIMID_LIBDIR%%/bitmaps/timidity.xbm %%TIMID_LIBDIR%%/browser.tcl -%%TIMID_LIBDIR%%/interface_k.so +%%TIMID_LIBDIR%%/if_tcltk.so %%TIMID_LIBDIR%%/misc.tcl -%%TIMID_LIBDIR%%/tclIndex %%TIMID_LIBDIR%%/tkmidity.tcl %%TIMID_LIBDIR%%/tkpanel.tcl %%PORTDOCS%%%%DOCSDIR%%/README.tk %%PORTDOCS%%share/doc/ja/timidity++/README.tk +%%PORTDOCS%%@dirrmtry share/doc/ja/timidity++ +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% @dirrm %%TIMID_LIBDIR%%/bitmaps --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96 Content-Type: text/x-diff; name="audio_timidity++-xaw.diff" Content-Disposition: attachment; filename="audio_timidity++-xaw.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-xaw/Makefile audio/timidity++-xaw/Makefile --- /usr/ports/audio/timidity++-xaw/Makefile 2013-11-06 21:51:58.000000000 +0900 +++ audio/timidity++-xaw/Makefile 2014-01-04 00:00:00.000000000 +0900 @@ -6,7 +6,8 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Xaw interface for TiMidity++ +OPTIONS_DEFINE= DOCS + MASTERDIR= ${.CURDIR}/../../audio/timidity++ -NO_STAGE= yes .include "${MASTERDIR}/Makefile" diff -urN /usr/ports/audio/timidity++-xaw/pkg-plist audio/timidity++-xaw/pkg-plist --- /usr/ports/audio/timidity++-xaw/pkg-plist 2013-11-06 21:51:58.000000000 +0900 +++ audio/timidity++-xaw/pkg-plist 2014-01-04 00:00:00.000000000 +0900 @@ -1,20 +1,10 @@ bin/xawmidi lib/X11/app-defaults/TiMidity lib/X11/%%EUCJP_LOCALE%%/app-defaults/TiMidity -%%TIMID_LIBDIR%%/bitmaps/back.xbm -%%TIMID_LIBDIR%%/bitmaps/fwrd.xbm -%%TIMID_LIBDIR%%/bitmaps/next.xbm -%%TIMID_LIBDIR%%/bitmaps/pause.xbm -%%TIMID_LIBDIR%%/bitmaps/play.xbm -%%TIMID_LIBDIR%%/bitmaps/prev.xbm -%%TIMID_LIBDIR%%/bitmaps/quit.xbm -%%TIMID_LIBDIR%%/bitmaps/random.xbm -%%TIMID_LIBDIR%%/bitmaps/repeat.xbm -%%TIMID_LIBDIR%%/bitmaps/stop.xbm -%%TIMID_LIBDIR%%/bitmaps/timidity.xbm -%%TIMID_LIBDIR%%/interface_a.so +%%TIMID_LIBDIR%%/if_xaw.so %%PORTDOCS%%%%DOCSDIR%%/README.xaw %%PORTDOCS%%share/doc/ja/timidity++/README.xaw -@dirrm %%TIMID_LIBDIR%%/bitmaps +%%PORTDOCS%%@dirrmtry share/doc/ja/timidity++ +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% @dirrmtry lib/X11/%%EUCJP_LOCALE%%/app-defaults @dirrmtry lib/X11/%%EUCJP_LOCALE%% --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96 Content-Type: text/x-diff; name="audio_timidity++-xskin.diff" Content-Disposition: attachment; filename="audio_timidity++-xskin.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/audio/timidity++-xskin/Makefile audio/timidity++-xskin/Makefile --- /usr/ports/audio/timidity++-xskin/Makefile 2013-11-06 21:52:25.000000000 +0900 +++ audio/timidity++-xskin/Makefile 2014-01-04 00:00:00.000000000 +0900 @@ -6,7 +6,8 @@ MAINTAINER= ports@FreeBSD.org COMMENT= X11AMP skin interface for TiMidity++ +OPTIONS_DEFINE= DOCS + MASTERDIR= ${.CURDIR}/../../audio/timidity++ -NO_STAGE= yes .include "${MASTERDIR}/Makefile" diff -urN /usr/ports/audio/timidity++-xskin/pkg-plist audio/timidity++-xskin/pkg-plist --- /usr/ports/audio/timidity++-xskin/pkg-plist 2013-11-06 21:52:25.000000000 +0900 +++ audio/timidity++-xskin/pkg-plist 2014-01-04 00:00:00.000000000 +0900 @@ -1,4 +1,6 @@ bin/xskinmidi -%%TIMID_LIBDIR%%/interface_i.so +%%TIMID_LIBDIR%%/if_xskin.so %%PORTDOCS%%%%DOCSDIR%%/README.xskin %%PORTDOCS%%share/doc/ja/timidity++/README.xskin +%%PORTDOCS%%@dirrmtry share/doc/ja/timidity++ +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96 Content-Type: text/x-diff; name="japanese_timidity++-slang.diff" Content-Disposition: attachment; filename="japanese_timidity++-slang.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/japanese/timidity++-slang/Makefile japanese/timidity++-slang/Makefile --- /usr/ports/japanese/timidity++-slang/Makefile 2013-11-06 21:58:50.000000000 +0900 +++ japanese/timidity++-slang/Makefile 2014-01-04 00:00:00.000000000 +0900 @@ -8,12 +8,10 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Slang interface for TiMidity++ with Japanese support - MASTERDIR= ${.CURDIR}/../../audio/timidity++ -JAPANESE= yes +PLIST_FILES= ${TIMID_LIBDIR}/if_slang.so -PLIST_FILES= ${TIMID_LIBDIR}/interface_s.so +JAPANESE= yes -NO_STAGE= yes .include "${MASTERDIR}/Makefile" --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96 Content-Type: text/x-diff; name="japanese_timidity++-tcltk.diff" Content-Disposition: attachment; filename="japanese_timidity++-tcltk.diff" Content-Transfer-Encoding: 7bit diff -urN /usr/ports/japanese/timidity++-tcltk/Makefile japanese/timidity++-tcltk/Makefile --- /usr/ports/japanese/timidity++-tcltk/Makefile 2013-11-06 21:58:36.000000000 +0900 +++ japanese/timidity++-tcltk/Makefile 2014-01-04 00:00:00.000000000 +0900 @@ -8,9 +8,10 @@ MAINTAINER= ports@FreeBSD.org COMMENT= Tcl/Tk interface for TiMidity++ with Japanese support -JAPANESE= yes +OPTIONS_DEFINE= DOCS MASTERDIR= ${.CURDIR}/../../audio/timidity++ -NO_STAGE= yes +JAPANESE= yes + .include "${MASTERDIR}/Makefile" diff -urN /usr/ports/japanese/timidity++-tcltk/pkg-plist japanese/timidity++-tcltk/pkg-plist --- /usr/ports/japanese/timidity++-tcltk/pkg-plist 2013-11-06 21:58:36.000000000 +0900 +++ japanese/timidity++-tcltk/pkg-plist 2014-01-04 00:00:00.000000000 +0900 @@ -1,21 +1,30 @@ bin/tkmidi +%%TIMID_LIBDIR%%/bitmaps/arrow.xbm %%TIMID_LIBDIR%%/bitmaps/back.xbm +%%TIMID_LIBDIR%%/bitmaps/check.xbm +%%TIMID_LIBDIR%%/bitmaps/fast.xbm %%TIMID_LIBDIR%%/bitmaps/fwrd.xbm +%%TIMID_LIBDIR%%/bitmaps/keydown.xbm +%%TIMID_LIBDIR%%/bitmaps/keyup.xbm %%TIMID_LIBDIR%%/bitmaps/next.xbm +%%TIMID_LIBDIR%%/bitmaps/off.xbm +%%TIMID_LIBDIR%%/bitmaps/on.xbm %%TIMID_LIBDIR%%/bitmaps/pause.xbm %%TIMID_LIBDIR%%/bitmaps/play.xbm %%TIMID_LIBDIR%%/bitmaps/prev.xbm %%TIMID_LIBDIR%%/bitmaps/quit.xbm %%TIMID_LIBDIR%%/bitmaps/random.xbm %%TIMID_LIBDIR%%/bitmaps/repeat.xbm +%%TIMID_LIBDIR%%/bitmaps/slow.xbm %%TIMID_LIBDIR%%/bitmaps/stop.xbm %%TIMID_LIBDIR%%/bitmaps/timidity.xbm %%TIMID_LIBDIR%%/browser.tcl -%%TIMID_LIBDIR%%/interface_k.so +%%TIMID_LIBDIR%%/if_tcltk.so %%TIMID_LIBDIR%%/misc.tcl -%%TIMID_LIBDIR%%/tclIndex %%TIMID_LIBDIR%%/tkmidity.tcl %%TIMID_LIBDIR%%/tkpanel.tcl -%%PORTDOCS%%share/doc/timidity++/README.tk +%%PORTDOCS%%%%DOCSDIR%%/README.tk %%PORTDOCS%%share/doc/ja/timidity++/README.tk +%%PORTDOCS%%@dirrmtry share/doc/ja/timidity++ +%%PORTDOCS%%@dirrmtry %%DOCSDIR%% @dirrm %%TIMID_LIBDIR%%/bitmaps --Multipart=_Sat__4_Jan_2014_04_22_24_+0900_f2FwXCX_OMqdFz96-- From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 20:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E8BE77A for ; Fri, 3 Jan 2014 20:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1F1D51F2C for ; Fri, 3 Jan 2014 20:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03KA0Cq004087 for ; Fri, 3 Jan 2014 20:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03KA0qV004086; Fri, 3 Jan 2014 20:10:00 GMT (envelope-from gnats) Date: Fri, 3 Jan 2014 20:10:00 GMT Message-Id: <201401032010.s03KA0qV004086@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: =?UTF-8?B?QmXDsWF0?= Gonzalez Etxepare Subject: Re: ports/184481: x11-fm/doublecmd compilation fail X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?UTF-8?B?QmXDsWF0?= Gonzalez Etxepare List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 20:10:01 -0000 The following reply was made to PR ports/184481; it has been noted by GNATS. From: =?UTF-8?B?QmXDsWF0?= Gonzalez Etxepare To: Toni Ballesta Cc: bug-followup@FreeBSD.org Subject: Re: ports/184481: x11-fm/doublecmd compilation fail Date: Fri, 03 Jan 2014 20:01:25 +0100 Hello Toni, Any update on this issue? Did you have the time to test again after deinstalling and reinstalling Lazarus ports as suggested? From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Jan 3 20:22:25 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 73BB0A23; Fri, 3 Jan 2014 20:22:25 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 45FB31030; Fri, 3 Jan 2014 20:22:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s03KMPmQ008782; Fri, 3 Jan 2014 20:22:25 GMT (envelope-from vg@freefall.freebsd.org) Received: (from vg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s03KMPkf008781; Fri, 3 Jan 2014 20:22:25 GMT (envelope-from vg) Date: Fri, 3 Jan 2014 20:22:25 GMT Message-Id: <201401032022.s03KMPkf008781@freefall.freebsd.org> To: vg@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, vg@FreeBSD.org From: vg@FreeBSD.org Subject: Re: ports/185440: net/nakenchat update to 3.00b1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Jan 2014 20:22:25 -0000 Synopsis: net/nakenchat update to 3.00b1 Responsible-Changed-From-To: freebsd-ports-bugs->vg Responsible-Changed-By: vg Responsible-Changed-When: Fri Jan 3 20:22:24 UTC 2014 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=185440 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 01:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C9ABEF4 for ; Sat, 4 Jan 2014 01:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 779ED1259 for ; Sat, 4 Jan 2014 01:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s041A0fI081367 for ; Sat, 4 Jan 2014 01:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s041A05p081366; Sat, 4 Jan 2014 01:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 01:10:00 GMT Resent-Message-Id: <201401040110.s041A05p081366@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, Craig Leres Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E9145D98 for ; Sat, 4 Jan 2014 01:06:50 +0000 (UTC) Received: from fun.ee.lbl.gov (fun.ee.lbl.gov [IPv6:2620:83:8000:102::ca]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D31471245 for ; Sat, 4 Jan 2014 01:06:50 +0000 (UTC) Received: from fun.ee.lbl.gov (localhost [127.0.0.1]) by fun.ee.lbl.gov (8.14.7/8.14.7) with ESMTP id s0416n8p078223 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 3 Jan 2014 17:06:49 -0800 (PST) Received: (from leres@localhost) by fun.ee.lbl.gov (8.14.7/8.14.7/Submit) id s0416nhs078222; Fri, 3 Jan 2014 17:06:49 -0800 (PST) Message-Id: <201401040106.s0416nhs078222@fun.ee.lbl.gov> Date: Fri, 3 Jan 2014 17:06:49 -0800 (PST) From: Craig Leres To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185455: [PATCH] security/bro: Fix pkg-fallout issue, Cc: leres@ee.lbl.gov X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Craig Leres List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 01:10:00 -0000 >Number: 185455 >Category: ports >Synopsis: [PATCH] security/bro: Fix pkg-fallout issue, >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 Jan 04 01:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Craig Leres >Release: FreeBSD 9.1-RELEASE amd64 >Organization: Lawrence Berkeley National Laboratory >Environment: System: FreeBSD fun.ee.lbl.gov 9.1-RELEASE FreeBSD 9.1-RELEASE #12 r27: Wed Oct 30 16:07:54 PDT 2013 leres@fun.ee.lbl.gov:/sys/amd64/compile/LBL amd64 >Description: This updates the Makefile to match recent changes to the security/broccoli port: - Convert to new-new OPTIONS framework - Use new *_DEPENDS formats Also included is a patch that attempts to solve recent current and 10 pkg-fallout issues. I wasn't able to reproduce the error using either the lang/clang33 or lang/clang-devel compilers but the Bro developement team provide the patch and claim it should work. >How-To-Repeat: pkg-fallout reports: [REL - head-amd64-default][security/bro] Failed for bro-2.2 in build [REL - head-i386-default][security/bro] Failed for bro-2.2 in build [REL - 10amd64-default][security/bro] Failed for bro-2.2 in build [REL - 10amd64-default][security/bro] Failed for bro-2.2 in build >Fix: --- patch.txt begins here --- --- Makefile.orig 2013-12-03 04:25:17.000000000 -0800 +++ Makefile 2014-01-03 15:33:26.000000000 -0800 @@ -3,6 +3,7 @@ PORTNAME= bro PORTVERSION= 2.2 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.bro.org/downloads/release/ @@ -11,9 +12,9 @@ LICENSE= BSD -BUILD_DEPENDS= bison:${PORTSDIR}/devel/bison \ - swig:${PORTSDIR}/devel/swig13 -LIB_DEPENDS= libGeoIP.so:${PORTSDIR}/net/GeoIP +BUILD_DEPENDS= ${LOCALBASE}/bin/bison:${PORTSDIR}/devel/bison \ + ${LOCALBASE}/bin/swig:${PORTSDIR}/devel/swig13 +LIB_DEPENDS= ${LOCALBASE}/lib/libGeoIP.so:${PORTSDIR}/net/GeoIP USES= cmake:outsource perl5 USE_PYTHON= yes @@ -24,7 +25,10 @@ .if defined(BRO_PREFIX) PREFIX=${BRO_PREFIX} PLIST_SUB+= CLEANUP_PREFIX="" -NEED_ROOT= yes +.if ! defined(WITH_PKGNG) && ! exists(${BRO_PREFIX}) +NEED_ROOT= yes +.endif +NO_MTREE= yes .else PLIST_SUB+= CLEANUP_PREFIX="@comment " .endif @@ -74,35 +78,35 @@ .if empty(PORT_OPTIONS:MIPSUMDUMP) IGNORE= the BROCTL option requires IPSUMDUMP .endif -BUILD_DEPENDS+= bash:${PORTSDIR}/shells/bash -RUN_DEPENDS+= bash:${PORTSDIR}/shells/bash -PLIST_SUB+= BROCTL="" -USE_LDCONFIG= yes -CMAKE_ARGS+= -D INSTALL_BROCTL:BOOL=true +BUILD_DEPENDS+= ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash +RUN_DEPENDS+= ${LOCALBASE}/bin/bash:${PORTSDIR}/shells/bash +PLIST_SUB+= BROCTL="" +USE_LDCONFIG= yes +CMAKE_ARGS+= -D INSTALL_BROCTL:BOOL=true .else -CMAKE_ARGS+= -D INSTALL_BROCTL:BOOL=false -PLIST_SUB+= BROCTL="@comment " +CMAKE_ARGS+= -D INSTALL_BROCTL:BOOL=false +PLIST_SUB+= BROCTL="@comment " .endif .if ${PORT_OPTIONS:MDEBUG} -CMAKE_ARGS+= -D ENABLE_DEBUG:BOOL=true +CMAKE_ARGS+= -D ENABLE_DEBUG:BOOL=true .else -CMAKE_ARGS+= -D ENABLE_DEBUG:BOOL=false +CMAKE_ARGS+= -D ENABLE_DEBUG:BOOL=false .endif .if ${PORT_OPTIONS:MLBL_HF} -RUN_DEPENDS+= hf:${PORTSDIR}/sysutils/lbl-hf +RUN_DEPENDS+= ${LOCALBASE}/bin/hf:${PORTSDIR}/sysutils/lbl-hf .endif .if ${PORT_OPTIONS:MLBL_CF} -RUN_DEPENDS+= cf:${PORTSDIR}/sysutils/lbl-cf +RUN_DEPENDS+= ${LOCALBASE}/bin/cf:${PORTSDIR}/sysutils/lbl-cf .endif .if ${PORT_OPTIONS:MPERFTOOLS} -CMAKE_ARGS+= -D ENABLE_PERFTOOLS:BOOL=true -RUN_DEPENDS+= pprof:${PORTSDIR}/devel/google-perftools +CMAKE_ARGS+= -D ENABLE_PERFTOOLS:BOOL=true +RUN_DEPENDS+= ${LOCALBASE}/bin/pprof:${PORTSDIR}/devel/google-perftools .else -CMAKE_ARGS+= -D ENABLE_PERFTOOLS:BOOL=false +CMAKE_ARGS+= -D ENABLE_PERFTOOLS:BOOL=false .endif .if ${PORT_OPTIONS:MIPSUMDUMP} @@ -111,8 +115,9 @@ .endif .if ${PORT_OPTIONS:MBROCTL} -post-stage:: -.if defined(BRO_PREFIX) +post-install: +.if defined(BRO_PREFIX) && !defined(WITH_PKGNG) && !exists(${BRO_PREFIX}) + # pkg_install needs PREFIX in order to make a package from STAGEDIR/PREFIX @${MKDIR} ${PREFIX} .endif @${MKDIR} ${STAGEDIR}${PREFIX}/spool/installed-scripts-do-not-touch/auto @@ -121,7 +126,7 @@ @${INSTALL_SCRIPT} ${INSTALL_WRKSRC}/aux/broctl/etc/${F} ${STAGEDIR}${PREFIX}/etc/${F}.example .endfor .for F in networks.cfg node.cfg - @${INSTALL_SCRIPT} ${WRKSRC}/aux/broctl/etc/${F} ${STAGEDIR}${PREFIX}/etc/${F}.example + @${MV} ${WRKSRC}/aux/broctl/etc/${F} ${STAGEDIR}${PREFIX}/etc/${F}.example .endfor .endif --- /dev/null 2014-01-03 16:07:09.000000000 -0800 +++ files/patch-logging-writers-SQLite.cc 2014-01-03 15:32:34.000000000 -0800 @@ -0,0 +1,11 @@ +--- src/logging/writers/SQLite.cc.orig 2013-11-07 10:27:11.000000000 -0800 ++++ src/logging/writers/SQLite.cc 2013-12-13 15:35:05.000000000 -0800 +@@ -126,7 +126,7 @@ + fullpath.append(".sqlite"); + string tablename; + +- map::const_iterator it = info.config.find("tablename"); ++ WriterInfo::config_map::const_iterator it = info.config.find("tablename"); + if ( it == info.config.end() ) + { + MsgThread::Info(Fmt("tablename configuration option not found. Defaulting to path %s", info.path)); --- patch.txt ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 02:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CDCB56D8 for ; Sat, 4 Jan 2014 02:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ADC2F158C for ; Sat, 4 Jan 2014 02:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s042009x092515 for ; Sat, 4 Jan 2014 02:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04200vB092514; Sat, 4 Jan 2014 02:00:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 02:00:00 GMT Resent-Message-Id: <201401040200.s04200vB092514@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 [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 34E8C6A0 for ; Sat, 4 Jan 2014 01:54:41 +0000 (UTC) Received: from sunpoet.net (sunpoet.net [220.135.71.135]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 02C511568 for ; Sat, 4 Jan 2014 01:54:40 +0000 (UTC) Received: by sunpoet.net (Postfix, from userid 1000) id 9893037D5; Sat, 4 Jan 2014 09:54:19 +0800 (CST) Message-Id: <20140104015419.9893037D5@sunpoet.net> Date: Sat, 4 Jan 2014 09:54:19 +0800 (CST) From: Sunpoet Po-Chuan Hsieh To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185456: [exp run] ftp/curl: update to 7.34.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 02:00:01 -0000 >Number: 185456 >Category: ports >Synopsis: [exp run] ftp/curl: update to 7.34.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: Sat Jan 04 02:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 10.0-PRERELEASE amd64 >Organization: The FreeBSD Project >Environment: System: FreeBSD bonjour.sunpoet.net 10.0-PRERELEASE FreeBSD 10.0-PRERELEASE #0 r260045: Mon Dec 30 16:24:36 CST >Description: - Update to 7.34.0 Request exp-run. Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: SVN) >How-To-Repeat: >Fix: --- curl-7.34.0.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 338620) +++ Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= curl -PORTVERSION= 7.33.0 -PORTREVISION= 2 +PORTVERSION= 7.34.0 CATEGORIES= ftp www MASTER_SITES= http://curl.haxx.se/download/ \ LOCAL/sunpoet Index: distinfo =================================================================== --- distinfo (revision 338620) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (curl-7.33.0.tar.lzma) = 17eaa3503d84b1aebc2fbf25b9649246f5cbd7c859a497c2aa42f04d0f83a046 -SIZE (curl-7.33.0.tar.lzma) = 2244539 +SHA256 (curl-7.34.0.tar.lzma) = 8ea8b72ccaa07625609fee2e41591162d245d416adbd0a3242d44dff8e3ad6f9 +SIZE (curl-7.34.0.tar.lzma) = 2256196 Index: files/patch-CVE-2013-6422 =================================================================== --- files/patch-CVE-2013-6422 (revision 338620) +++ files/patch-CVE-2013-6422 (working copy) @@ -1,32 +0,0 @@ ---- ./lib/gtls.c.orig 2013-10-12 15:05:06.000000000 -0700 -+++ ./lib/gtls.c 2013-12-18 15:00:22.000000000 -0800 -@@ -5,7 +5,7 @@ - * | (__| |_| | _ <| |___ - * \___|\___/|_| \_\_____| - * -- * Copyright (C) 1998 - 2012, Daniel Stenberg, , et al. -+ * Copyright (C) 1998 - 2013, Daniel Stenberg, , et al. - * - * This software is licensed as described in the file COPYING, which - * you should have received as part of this distribution. The terms -@@ -633,10 +633,8 @@ - else - infof(data, "\t server certificate verification OK\n"); - } -- else { -+ else - infof(data, "\t server certificate verification SKIPPED\n"); -- goto after_server_cert_verification; -- } - - /* initialize an X.509 certificate structure. */ - gnutls_x509_crt_init(&x509_cert); -@@ -766,8 +764,6 @@ - - gnutls_x509_crt_deinit(x509_cert); - --after_server_cert_verification: -- - /* compression algorithm (if any) */ - ptr = gnutls_compression_get_name(gnutls_compression_get(session)); - /* the *_get_name() says "NULL" if GNUTLS_COMP_NULL is returned */ --- curl-7.34.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 02:00:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C66D0707; Sat, 4 Jan 2014 02:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9BDE81591; Sat, 4 Jan 2014 02:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04208wf092646; Sat, 4 Jan 2014 02:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s042088j092645; Sat, 4 Jan 2014 02:00:08 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 02:00:08 GMT Message-Id: <201401040200.s042088j092645@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sunpoet@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185456: [exp run] ftp/curl: update to 7.34.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 02:00:08 -0000 Synopsis: [exp run] ftp/curl: update to 7.34.0 Responsible-Changed-From-To: freebsd-ports-bugs->sunpoet Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 02:00:08 UTC 2014 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=185456 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 02:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CEDB976C for ; Sat, 4 Jan 2014 02:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 90DEB1607 for ; Sat, 4 Jan 2014 02:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s042A0WX094769 for ; Sat, 4 Jan 2014 02:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s042A0PE094768; Sat, 4 Jan 2014 02:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 02:10:00 GMT Resent-Message-Id: <201401040210.s042A0PE094768@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, Ari Maniatis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CF4CC74B for ; Sat, 4 Jan 2014 02:02:24 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BC06B15F5 for ; Sat, 4 Jan 2014 02:02:24 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s0422OtS037892 for ; Sat, 4 Jan 2014 02:02:24 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s0422OWG037882; Sat, 4 Jan 2014 02:02:24 GMT (envelope-from nobody) Message-Id: <201401040202.s0422OWG037882@oldred.freebsd.org> Date: Sat, 4 Jan 2014 02:02:24 GMT From: Ari Maniatis To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185457: net-mgmt/zabbix22-frontend ignored for PHP5.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 02:10:00 -0000 >Number: 185457 >Category: ports >Synopsis: net-mgmt/zabbix22-frontend ignored for PHP5.4 >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 Jan 04 02:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Ari Maniatis >Release: 9.2 >Organization: ish >Environment: >Description: This port throws the following error when you try to install it against PHP 5.4: ---- Ignored: cannot be installed: doesn't work with lang/php5 port (doesn't support PHP 5.4 5.2) However there is nothing in the Zabbix documentation to suggest that there is a problem running it against PHP 5.4. In fact that appears to be the recommended PHP version. I found one old (fixed) bug report from back in the 2.1 release cycle: https://support.zabbix.com/browse/ZBX-5825 >How-To-Repeat: Install net-mgmt/zabbix22-frontend with PHP 5.4 installed. >Fix: Remove this line: IGNORE_WITH_PHP= 5 52 from net-mgmt/zabbix22-server/Makefile >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 02:10:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6A27979D; Sat, 4 Jan 2014 02:10:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 414DD1609; Sat, 4 Jan 2014 02:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s042A8Fn094896; Sat, 4 Jan 2014 02:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s042A8Pu094895; Sat, 4 Jan 2014 02:10:08 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 02:10:08 GMT Message-Id: <201401040210.s042A8Pu094895@freefall.freebsd.org> To: ari@ish.com.au, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185457: net-mgmt/zabbix22-frontend ignored for PHP5.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 02:10:08 -0000 Synopsis: net-mgmt/zabbix22-frontend ignored for PHP5.4 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Jan 4 02:10:07 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185457 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 02:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F7E2943 for ; Sat, 4 Jan 2014 02:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6A850169B for ; Sat, 4 Jan 2014 02:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s042K1Z2097817 for ; Sat, 4 Jan 2014 02:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s042K1wg097816; Sat, 4 Jan 2014 02:20:01 GMT (envelope-from gnats) Date: Sat, 4 Jan 2014 02:20:01 GMT Message-Id: <201401040220.s042K1wg097816@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/185457: net-mgmt/zabbix22-frontend ignored for PHP5.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 04 Jan 2014 02:20:01 -0000 The following reply was made to PR ports/185457; it has been noted by GNATS. From: Edwin Groothuis To: pakhom706@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/185457: net-mgmt/zabbix22-frontend ignored for PHP5.4 Date: Sat, 4 Jan 2014 02:10:07 UT Maintainer of net-mgmt/zabbix22-frontend, Please note that PR ports/185457 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/185457 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FC6ADD1 for ; Sat, 4 Jan 2014 05:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7C38011CB for ; Sat, 4 Jan 2014 05:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04501P8032426 for ; Sat, 4 Jan 2014 05:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04501CK032425; Sat, 4 Jan 2014 05:00:01 GMT (envelope-from gnats) Date: Sat, 4 Jan 2014 05:00:01 GMT Message-Id: <201401040500.s04501CK032425@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Pakhom Golynga Subject: Re: ports/185457: net-mgmt/zabbix22-frontend ignored for PHP5.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Pakhom Golynga List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:00:01 -0000 The following reply was made to PR ports/185457; it has been noted by GNATS. From: Pakhom Golynga To: bug-followup@FreeBSD.org, ari@ish.com.au Cc: Subject: Re: ports/185457: net-mgmt/zabbix22-frontend ignored for PHP5.4 Date: Sat, 04 Jan 2014 08:52:50 +0400 This is a multi-part message in MIME format. --------------000105070809070400050305 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Hello, I already fix this problem in PR ports/185412 Please close this PR. Thanks --------------000105070809070400050305 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: 7bit Hello,
I already fix this problem in PR ports/185412

Please close this PR.

Thanks --------------000105070809070400050305-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:12:44 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3666EF4D; Sat, 4 Jan 2014 05:12:44 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0A9E412B0; Sat, 4 Jan 2014 05:12:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s045ChTC036346; Sat, 4 Jan 2014 05:12:43 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s045Ch5J036345; Sat, 4 Jan 2014 05:12:43 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 05:12:43 GMT Message-Id: <201401040512.s045Ch5J036345@freefall.freebsd.org> To: pakhom706@gmail.com, ari@ish.com.au, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/185457: net-mgmt/zabbix22-frontend ignored for PHP5.4 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:12:44 -0000 Synopsis: net-mgmt/zabbix22-frontend ignored for PHP5.4 State-Changed-From-To: feedback->closed State-Changed-By: linimon State-Changed-When: Sat Jan 4 05:12:26 UTC 2014 State-Changed-Why: see ports/185412. http://www.freebsd.org/cgi/query-pr.cgi?pr=185457 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:30:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC09CFE7 for ; Sat, 4 Jan 2014 05:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B733B133A for ; Sat, 4 Jan 2014 05:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s045U0IM039382 for ; Sat, 4 Jan 2014 05:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s045U0vR039379; Sat, 4 Jan 2014 05:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 05:30:00 GMT Resent-Message-Id: <201401040530.s045U0vR039379@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, Oleksii Tsai Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 29267FD8 for ; Sat, 4 Jan 2014 05:29:31 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 09EA31331 for ; Sat, 4 Jan 2014 05:29:31 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s045TU38096352 for ; Sat, 4 Jan 2014 05:29:30 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s045TUpT096351; Sat, 4 Jan 2014 05:29:30 GMT (envelope-from nobody) Message-Id: <201401040529.s045TUpT096351@oldred.freebsd.org> Date: Sat, 4 Jan 2014 05:29:30 GMT From: Oleksii Tsai To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185458: [NEW PORT] devel/llnextgen parser generator X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:30:00 -0000 >Number: 185458 >Category: ports >Synopsis: [NEW PORT] devel/llnextgen parser generator >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 Jan 04 05:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Oleksii Tsai >Release: 9.2-RELEASE-p2 >Organization: >Environment: FreeBSD host 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #2 r256176M: Wed Dec 4 23:19:37 PST 2013 lyuts@panda:/usr/obj/usr/src/sys/CUSTOM amd64 >Description: LLnextgen is a parser generator. May be useful for people contributing to Rust project and who use FreeBSD. >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: # # llnextgen # llnextgen/pkg-plist # llnextgen/pkg-descr # llnextgen/distinfo # llnextgen/Makefile # echo c - llnextgen mkdir -p llnextgen > /dev/null 2>&1 echo x - llnextgen/pkg-plist sed 's/^X//' >llnextgen/pkg-plist << 'a6254e8afbc25cf706f14879261e24bf' Xbin/LLnextgen Xshare/man/man1/LLnextgen.1 Xshare/doc/%%DISTNAME%%/COPYING Xshare/doc/%%DISTNAME%%/Changelog Xshare/doc/%%DISTNAME%%/LLnextgen.pdf Xshare/doc/%%DISTNAME%%/LLnextgen.ps.gz Xshare/doc/%%DISTNAME%%/README Xshare/doc/%%DISTNAME%%/TODO Xshare/doc/%%DISTNAME%%/calculator.g Xshare/doc/%%DISTNAME%%/threadsafe.g X@dirrm share/doc/%%DISTNAME%% a6254e8afbc25cf706f14879261e24bf echo x - llnextgen/pkg-descr sed 's/^X//' >llnextgen/pkg-descr << 'fabbe7ffc89ea2ee14467a904d85834f' XLLnextgen is an Extended-LL(1) parser generator. It is a rewrite of the LLgen Xparser generator by D. Grune and C.J.H. Jacobs which is part of the Amsterdam XCompiler Kit (ACK). Like all parser generators, LLnextgen takes the description Xof the grammar with associated actions as input, and generates a parser routine Xfor use in compilers and other text processing programs. X XLLgen, and therefore LLnextgen, extends on the LL(1) class of parser generators Xby allowing FIRST/FIRST conflicts and FIRST/FOLLOW conflicts to be resolved with Xboth static and dynamic conditions. X XWWW: http://os.ghalkes.nl/LLnextgen/index.html fabbe7ffc89ea2ee14467a904d85834f echo x - llnextgen/distinfo sed 's/^X//' >llnextgen/distinfo << '97081bd809e48801cb25342dc9c4611c' XSHA256 (LLnextgen-0.5.5.tgz) = 665f72db855eb104000a38b884bb96075a6ba542e4b863508374a4928f52c83a XSIZE (LLnextgen-0.5.5.tgz) = 363140 97081bd809e48801cb25342dc9c4611c echo x - llnextgen/Makefile sed 's/^X//' >llnextgen/Makefile << '59e4aba0c888a7030dca4e761ba572ce' X# Created by: Oleksii Tsai X XPORTNAME= LLnextgen XPORTVERSION= 0.5.5 XCATEGORIES= devel XMASTER_SITES= http://os.ghalkes.nl/LLnextgen/releases/ XDISTNAME= ${PORTNAME}-${PORTVERSION} X XEXTRACT_SUFX= .tgz X XMAINTAINER= oleksii.tsai@googlemail.com XCOMMENT= An Extended LL(1) parser generator X XLICENSE= GPLv3 X XHAS_CONFIGURE= yes XNO_STAGE= yes X XWRKSRC= ${WRKDIR}/${DISTNAME} XPLIST_SUB= DISTNAME=${DISTNAME} X X.include 59e4aba0c888a7030dca4e761ba572ce exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:30:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3F5BF7E; Sat, 4 Jan 2014 05:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1494A133C; Sat, 4 Jan 2014 05:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s045U7fF039512; Sat, 4 Jan 2014 05:30:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s045U7Xj039511; Sat, 4 Jan 2014 05:30:07 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 05:30:07 GMT Message-Id: <201401040530.s045U7Xj039511@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185458: [NEW PORT] devel/llnextgen parser generator X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:30:08 -0000 Synopsis: [NEW PORT] devel/llnextgen parser generator Class-Changed-From-To: update->change-request Class-Changed-By: edwin Class-Changed-When: Sat Jan 4 05:30:07 UTC 2014 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=185458 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:40:48 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 15C59128; Sat, 4 Jan 2014 05:40:48 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DE57413BD; Sat, 4 Jan 2014 05:40:47 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s045el4W041499; Sat, 4 Jan 2014 05:40:47 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s045elHw041498; Sat, 4 Jan 2014 05:40:47 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 05:40:47 GMT Message-Id: <201401040540.s045elHw041498@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, cperciva@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: bin/185385: portsnap(8): portsnap fetch can't fetch file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:40:48 -0000 Old Synopsis: portsnap fetch New Synopsis: portsnap(8): portsnap fetch can't fetch file Responsible-Changed-From-To: freebsd-ports-bugs->cperciva Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 4 05:39:25 UTC 2014 Responsible-Changed-Why: reclassify and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=185385 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:44:05 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 02CAA18A; Sat, 4 Jan 2014 05:44:05 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CB578147B; Sat, 4 Jan 2014 05:44:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s045i4qK043313; Sat, 4 Jan 2014 05:44:04 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s045i42X043312; Sat, 4 Jan 2014 05:44:04 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 05:44:04 GMT Message-Id: <201401040544.s045i42X043312@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, danfe@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185424: [patch] graphics/lensfun upgrade & stagedir support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:44:05 -0000 Synopsis: [patch] graphics/lensfun upgrade & stagedir support Responsible-Changed-From-To: freebsd-ports-bugs->danfe Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 05:44:04 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185424 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:47:23 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4E9EB410; Sat, 4 Jan 2014 05:47:23 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 21DA714A2; Sat, 4 Jan 2014 05:47:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s045lMsN043499; Sat, 4 Jan 2014 05:47:22 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s045lMMU043498; Sat, 4 Jan 2014 05:47:22 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 05:47:22 GMT Message-Id: <201401040547.s045lMMU043498@freefall.freebsd.org> To: c.petrik.sosa@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, bsam@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/181248: [PATCH] print/cups-base Disable INSTALLS_ICONS for non-X11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:47:23 -0000 Synopsis: [PATCH] print/cups-base Disable INSTALLS_ICONS for non-X11 Responsible-Changed-From-To: freebsd-ports-bugs->bsam Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 4 05:46:49 UTC 2014 Responsible-Changed-Why: Over to new maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=181248 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:49:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CE2C2449; Sat, 4 Jan 2014 05:49:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A267314AD; Sat, 4 Jan 2014 05:49:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s045n226043567; Sat, 4 Jan 2014 05:49:02 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s045n21T043566; Sat, 4 Jan 2014 05:49:02 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 05:49:02 GMT Message-Id: <201401040549.s045n21T043566@freefall.freebsd.org> To: fiziologus@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, lua@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/180786: lang/lua52 lacks a pkgconfig file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:49:02 -0000 Synopsis: lang/lua52 lacks a pkgconfig file Responsible-Changed-From-To: freebsd-ports-bugs->lua Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 4 05:47:46 UTC 2014 Responsible-Changed-Why: reassign. http://www.freebsd.org/cgi/query-pr.cgi?pr=180786 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:51:15 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0A0F486; Sat, 4 Jan 2014 05:51:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9587314BA; Sat, 4 Jan 2014 05:51:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s045pFj9045530; Sat, 4 Jan 2014 05:51:15 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s045pFuJ045529; Sat, 4 Jan 2014 05:51:15 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 05:51:15 GMT Message-Id: <201401040551.s045pFuJ045529@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, theraven@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/179365: switch devel/gnustep-make dependency from lang/gcc42 to a more up to date version X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:51:15 -0000 Synopsis: switch devel/gnustep-make dependency from lang/gcc42 to a more up to date version Responsible-Changed-From-To: freebsd-ports-bugs->theraven Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 4 05:50:52 UTC 2014 Responsible-Changed-Why: Over to new maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=179365 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:53:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16F5A4BC; Sat, 4 Jan 2014 05:53:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DD55F1518; Sat, 4 Jan 2014 05:53:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s045r0Rp045625; Sat, 4 Jan 2014 05:53:00 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s045r0BE045624; Sat, 4 Jan 2014 05:53:00 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 05:53:00 GMT Message-Id: <201401040553.s045r0BE045624@freefall.freebsd.org> To: jarrod@downtools.com.au, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, demon@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/179003: Port net-mgmt/nagios has lost dependency(textproc/php5-xml) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:53:01 -0000 Synopsis: Port net-mgmt/nagios has lost dependency(textproc/php5-xml) Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 4 05:52:43 UTC 2014 Responsible-Changed-Why: Over to new maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=179003 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:55:58 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8DEF94F8; Sat, 4 Jan 2014 05:55:58 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6285D1528; Sat, 4 Jan 2014 05:55:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s045twGa045737; Sat, 4 Jan 2014 05:55:58 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s045twcm045736; Sat, 4 Jan 2014 05:55:58 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 05:55:58 GMT Message-Id: <201401040555.s045twcm045736@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, theraven@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/178229: devel/gnustep failed install - no objective c compiler X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:55:58 -0000 Synopsis: devel/gnustep failed install - no objective c compiler Responsible-Changed-From-To: freebsd-ports-bugs->theraven Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 4 05:55:48 UTC 2014 Responsible-Changed-Why: Over to new maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=178229 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 05:58:43 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C860D568; Sat, 4 Jan 2014 05:58:43 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9C2FB1554; Sat, 4 Jan 2014 05:58:43 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s045whlc045836; Sat, 4 Jan 2014 05:58:43 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s045wghP045835; Sat, 4 Jan 2014 05:58:42 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 05:58:42 GMT Message-Id: <201401040558.s045wghP045835@freefall.freebsd.org> To: feld@feld.me, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, feld@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/176012: irc/inspircd fails to detect OpenSSL in base running recent stable/9 r246610 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 05:58:43 -0000 Synopsis: irc/inspircd fails to detect OpenSSL in base running recent stable/9 r246610 Responsible-Changed-From-To: freebsd-ports-bugs->feld Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 4 05:58:29 UTC 2014 Responsible-Changed-Why: Over to new maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=176012 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 06:01:37 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A03055B0; Sat, 4 Jan 2014 06:01:37 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 74A3415C1; Sat, 4 Jan 2014 06:01:37 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0461bYZ047695; Sat, 4 Jan 2014 06:01:37 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0461bDx047694; Sat, 4 Jan 2014 06:01:37 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 06:01:37 GMT Message-Id: <201401040601.s0461bDx047694@freefall.freebsd.org> To: aryeh.friedman@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/182056: [NEW PORT] emulators/petitecloud -- thin frontend for bhve and in future versions other hyper-v's X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 06:01:37 -0000 Synopsis: [NEW PORT] emulators/petitecloud -- thin frontend for bhve and in future versions other hyper-v's State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Jan 4 06:01:17 UTC 2014 State-Changed-Why: Superseded by ports/185362. http://www.freebsd.org/cgi/query-pr.cgi?pr=182056 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 06:08:35 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0480A624; Sat, 4 Jan 2014 06:08:35 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CD43915DE; Sat, 4 Jan 2014 06:08:34 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0468Yci051552; Sat, 4 Jan 2014 06:08:34 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0468YFV051551; Sat, 4 Jan 2014 06:08:34 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 06:08:34 GMT Message-Id: <201401040608.s0468YFV051551@freefall.freebsd.org> To: lichray@gmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, nemysis@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/183756: [new port] Revive devel/pure-stldict X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 06:08:35 -0000 Synopsis: [new port] Revive devel/pure-stldict Responsible-Changed-From-To: freebsd-ports-bugs->nemysis Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 4 06:03:46 UTC 2014 Responsible-Changed-Why: Over to committer of http://svnweb.freebsd.org/ports?view=revision&revision=333095 , which removed it. http://www.freebsd.org/cgi/query-pr.cgi?pr=183756 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 06:36:49 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23D6C9E6; Sat, 4 Jan 2014 06:36:49 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ED648179E; Sat, 4 Jan 2014 06:36:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s046amEc062501; Sat, 4 Jan 2014 06:36:48 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s046amxu062500; Sat, 4 Jan 2014 06:36:48 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 06:36:48 GMT Message-Id: <201401040636.s046amxu062500@freefall.freebsd.org> To: linimon@FreeBSD.org, bapt@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/180662: sysutils/fusefs-libs: add birthtime support X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 06:36:49 -0000 Synopsis: sysutils/fusefs-libs: add birthtime support Responsible-Changed-From-To: bapt->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 4 06:36:33 UTC 2014 Responsible-Changed-Why: Maintainer was reset. http://www.freebsd.org/cgi/query-pr.cgi?pr=180662 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 06:36:58 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8609A1C; Sat, 4 Jan 2014 06:36:58 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BE1BF17A7; Sat, 4 Jan 2014 06:36:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s046awJO062539; Sat, 4 Jan 2014 06:36:58 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s046awSx062538; Sat, 4 Jan 2014 06:36:58 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 06:36:58 GMT Message-Id: <201401040636.s046awSx062538@freefall.freebsd.org> To: linimon@FreeBSD.org, bapt@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/182372: sysutils/fusefs-libs fails to build for package X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 06:36:59 -0000 Synopsis: sysutils/fusefs-libs fails to build for package Responsible-Changed-From-To: bapt->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 4 06:36:33 UTC 2014 Responsible-Changed-Why: Maintainer was reset. http://www.freebsd.org/cgi/query-pr.cgi?pr=182372 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 06:37:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 222D1A4D; Sat, 4 Jan 2014 06:37:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9C53117AB; Sat, 4 Jan 2014 06:37:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s046b70X062576; Sat, 4 Jan 2014 06:37:07 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s046b7Ug062575; Sat, 4 Jan 2014 06:37:07 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 06:37:07 GMT Message-Id: <201401040637.s046b7Ug062575@freefall.freebsd.org> To: linimon@FreeBSD.org, bapt@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/182407: sysutils/fusefs-libs crashes when option DOCS is on X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 06:37:08 -0000 Synopsis: sysutils/fusefs-libs crashes when option DOCS is on Responsible-Changed-From-To: bapt->freebsd-ports-bugs Responsible-Changed-By: linimon Responsible-Changed-When: Sat Jan 4 06:36:33 UTC 2014 Responsible-Changed-Why: Maintainer was reset. http://www.freebsd.org/cgi/query-pr.cgi?pr=182407 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 06:45:12 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6AF2CBAD; Sat, 4 Jan 2014 06:45:12 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3EFAB1858; Sat, 4 Jan 2014 06:45:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s046jClM064695; Sat, 4 Jan 2014 06:45:12 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s046jCpN064694; Sat, 4 Jan 2014 06:45:12 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 06:45:12 GMT Message-Id: <201401040645.s046jCpN064694@freefall.freebsd.org> To: mexas@bristol.ac.uk, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/176660: [ports] editors/pdfedit: build failure on ia64 -current: pdfedit-0.4.5/src/kernel/static.h:79:46: error: boost/algorithm/string/replace.hpp: No such file or directory X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 06:45:12 -0000 Synopsis: [ports] editors/pdfedit: build failure on ia64 -current: pdfedit-0.4.5/src/kernel/static.h:79:46: error: boost/algorithm/string/replace.hpp: No such file or directory State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Sat Jan 4 06:44:36 UTC 2014 State-Changed-Why: OBE: all KDE3-dependent ports have since been removed. http://www.freebsd.org/cgi/query-pr.cgi?pr=176660 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 06:55:46 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 96B43C54; Sat, 4 Jan 2014 06:55:46 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6AE4718DE; Sat, 4 Jan 2014 06:55:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s046tkaE066910; Sat, 4 Jan 2014 06:55:46 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s046tktw066909; Sat, 4 Jan 2014 06:55:46 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 06:55:46 GMT Message-Id: <201401040655.s046tktw066909@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185442: math/gnumeric 1.12.9 coredumps when trying to open a file X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 06:55:46 -0000 Synopsis: math/gnumeric 1.12.9 coredumps when trying to open a file Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 06:55:46 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185442 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 07:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 18A62D10 for ; Sat, 4 Jan 2014 07:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CCDF51976 for ; Sat, 4 Jan 2014 07:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s047A0sA069238 for ; Sat, 4 Jan 2014 07:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s047A0Zi069237; Sat, 4 Jan 2014 07:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 07:10:00 GMT Resent-Message-Id: <201401040710.s047A0Zi069237@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, "Chad J. Milios" Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 05ADCCD4 for ; Sat, 4 Jan 2014 07:01:56 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E50141956 for ; Sat, 4 Jan 2014 07:01:55 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s0471tMU005800 for ; Sat, 4 Jan 2014 07:01:55 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s0471tmp005793; Sat, 4 Jan 2014 07:01:55 GMT (envelope-from nobody) Message-Id: <201401040701.s0471tmp005793@oldred.freebsd.org> Date: Sat, 4 Jan 2014 07:01:55 GMT From: "Chad J. Milios" To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185459: New port: net-p2p/namecoin (ver Q.3.72) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 07:10:01 -0000 >Number: 185459 >Category: ports >Synopsis: New port: net-p2p/namecoin (ver Q.3.72) >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 Jan 04 07:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Chad J. Milios >Release: 9.2-RELEASE-p2/amd64 >Organization: Crop Circle Systems, Inc. >Environment: FreeBSD kakashi.ccsys.com 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #0 r259093: Thu Dec 12 23:34:17 UTC 2013 root@shikamaru.ccsys.com:/usr/obj/usr/src/sys/NUOS amd64 >Description: This is a port of namecoin stable release Q.3.72 and a slave port namecoin-daemon. QT4 user interface is supported including the new integrated name registration. The daemon can be installed by opting out of the GUI option OR by using the included slave port so as to allow namecoin-qt and namecoind to easily coexist as packaged a system. If you use this I'd appreciate your feedback. This is my first released port so go easy on me when you tell me how foolish I did it. :) I'd like some testing and community input, etc before this gets committed. This works great for my uses and limited testing and I don't think it should eat any of your coins but I wouldn't transfer hundreds of NMC into it just yet. :) This is just the standard Namecoin software and does not have any OPTIONS to automatically integrate with DNS resolution yet. Once I get this port to a satisfactory place I'll be adding integration with resolver(s). I have much more experience with the DNS system than I do with QT and Qmake. This port was my little holiday learning project so maybe I did everything wrong. I'm open to any input about which of the many ways there are to do it that people would prefer to have made simple via the port or the ways people are doing resolution of the .bit TLD already using FreeBSD. >How-To-Repeat: In particular, I'm out of my depth when it comes to getting a gcc from ports to properly play nice with qmake, and I resorted to a libconf.d config in this port that I'm hoping someone will teach my how to avoid. Maybe it's not terrible but my gut tells me I'm doing it wrong. The compilation output that starts: g++47 -Wl,-rpath=/usr/lib:/usr/local/lib -Wl,-rpath=/usr/local/lib/gcc47 -L/usr/local/lib/gcc47 -fstack-protector-all -Wl,-O1 -pthread -Wl,-rpath,/usr/local/lib/qt4 -o namecoin-qt seems to have too many -Wl,-rpath='s in it for my taste and without the included libmap.d hack results in a namecoin-qt that simply gasps as it dies: /usr/lib/libstdc++.so.6: version GLIBCXX_3.4.11 required by /usr/local/bin/namecoin-qt not found If anyone knows how to eliminate the need for the libconf.d/namecoin-qt.conf I included in this port, or how to eliminate the USE_GCC=yes altogether, your help would be much appreciated. I may be totally off base but hopefully this will start us off toward having a usable and stable namecoin client and rpc server on FreeBSD! >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: # # namecoin # namecoin/pkg-descr # namecoin/files # namecoin/files/patch-src_qt_configurenamedialog.h # namecoin/files/patch-src_net.cpp # namecoin/files/patch-src_main.h # namecoin/files/patch-src_qt_managenamespage.h # namecoin/files/libmap.conf # namecoin/files/makefile.unix # namecoin/distinfo # namecoin/Makefile # namecoin-daemon # namecoin-daemon/Makefile # echo c - namecoin mkdir -p namecoin > /dev/null 2>&1 echo x - namecoin/pkg-descr sed 's/^X//' >namecoin/pkg-descr << '117f67382f1626fb9fd126b6e66ee216' XNamecoin is an open source decentralized key/value registration and transfer system based on Bitcoin technology (a decentralized cryptocurrency). X XIt allows you to: X X Securely register and transfer arbitrary names (keys), no possible censorship! X Attach values (data) to the names (currently up to 520 bytes, will be extended) X Trade and transact namecoins, the digital currency NMC X XThere are plenty of possible use cases. Some examples: X X DNS: domain_name => domain_zone_configuration (also for i2p, Tor) X TLS: https like encryption and secure identification by Namecoin domain/ID/name X Alias/Identity: user_name => user_public_identity (email, name, gpg key, BTC-adress, etc) X Timestamping: document_hash => document_infos (name, hash, owner, etc) X Broadcasting / Messaging X Web of trust X Bonds, shares X Voting X Torrent tracker X XTo register a name, you must own some namecoins (NMC, the internal cryptocurrency used by the software). X XWWW: http://namecoin.info/ 117f67382f1626fb9fd126b6e66ee216 echo c - namecoin/files mkdir -p namecoin/files > /dev/null 2>&1 echo x - namecoin/files/patch-src_qt_configurenamedialog.h sed 's/^X//' >namecoin/files/patch-src_qt_configurenamedialog.h << 'fd458b3f77de7a4d2e771dad5f7c5475' X--- src/qt/configurenamedialog.h.orig 2014-01-03 19:35:57.779743611 +0000 X+++ src/qt/configurenamedialog.h 2014-01-03 19:36:36.515288567 +0000 X@@ -1,6 +1,9 @@ X #ifndef CONFIGURENAMEDIALOG_H X #define CONFIGURENAMEDIALOG_H X X+#include X+#include X+ X #include X X namespace Ui { fd458b3f77de7a4d2e771dad5f7c5475 echo x - namecoin/files/patch-src_net.cpp sed 's/^X//' >namecoin/files/patch-src_net.cpp << '586303403abf3298ba56c9d325e47c3b' X--- src/net.cpp.orig 2014-01-03 18:15:08.517743991 +0000 X+++ src/net.cpp 2014-01-03 18:16:00.387744056 +0000 X@@ -1094,13 +1094,8 @@ X char intClient[16]; X char intPort[6]; X X-#if !defined(__WXMSW__) && !defined(MAC_OSX) X- r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, X- port, port, lanaddr, 0, "TCP", 0); X-#else X r = UPNP_AddPortMapping(urls.controlURL, data.first.servicetype, X port, port, lanaddr, 0, "TCP", 0, "0"); X-#endif X if(r!=UPNPCOMMAND_SUCCESS) X printf("AddPortMapping(%s, %s, %s) failed with code %d (%s)\n", X port, port, lanaddr, r, strupnperror(r)); 586303403abf3298ba56c9d325e47c3b echo x - namecoin/files/patch-src_main.h sed 's/^X//' >namecoin/files/patch-src_main.h << 'bf1841f707c8c379965f83bbf4af097c' X--- src/main.h.orig 2014-01-03 14:53:49.331743939 +0000 X+++ src/main.h 2014-01-03 14:54:29.778743504 +0000 X@@ -16,7 +16,6 @@ X #ifdef __WXMSW__ X #include /* for _commit */ X #elif !defined(MAC_OSX) X-#include X #endif X X class CBlock; bf1841f707c8c379965f83bbf4af097c echo x - namecoin/files/patch-src_qt_managenamespage.h sed 's/^X//' >namecoin/files/patch-src_qt_managenamespage.h << '8df20cff343bcdb5a186bae5abcfa0c9' X--- src/qt/managenamespage.h.orig 2014-01-03 19:31:40.464744466 +0000 X+++ src/qt/managenamespage.h 2014-01-03 19:31:48.654744497 +0000 X@@ -1,6 +1,9 @@ X #ifndef MANAGENAMESPAGE_H X #define MANAGENAMESPAGE_H X X+#include X+#include X+ X #include X #include X 8df20cff343bcdb5a186bae5abcfa0c9 echo x - namecoin/files/libmap.conf sed 's/^X//' >namecoin/files/libmap.conf << 'b73e42350c757e7857779ba55f47a901' X[%%BINARY%%] Xlibstdc++.so.6 %%CC%%/libstdc++.so.6 b73e42350c757e7857779ba55f47a901 echo x - namecoin/files/makefile.unix sed 's/^X//' >namecoin/files/makefile.unix << '2869bc8ad2dd8f7c83a6384e6e3ce423' XCXX?=g++ XDEFS=-DNOPCH -DFOURWAYSSE2 -DUSE_SSL X XLIBS= \ X -Wl,-Bstatic \ X -l boost_system \ X -l boost_filesystem \ X -l boost_program_options \ X -l boost_thread \ X -l boost_chrono \ X -l db_cxx \ X -l ssl \ X -l crypto X XUSE_UPNP:=0 Xifneq (${USE_UPNP}, -) X LIBS += -l miniupnpc X DEFS += -DUSE_UPNP=$(USE_UPNP) Xendif X XLIBS+= \ X -Wl,-Bdynamic \ X -l gthread-2.0 \ X -l z \ X -l pthread X XCXXFLAGS+=-O2 -Wno-invalid-offsetof -Wformat $(DEFS) XHEADERS=headers.h strlcpy.h serialize.h uint256.h util.h key.h bignum.h base58.h \ X script.h allocators.h db.h walletdb.h crypter.h net.h irc.h keystore.h main.h \ X wallet.h bitcoinrpc.h uibase.h ui.h noui.h init.h auxpow.h X XBASE_OBJS= \ X obj/auxpow.o \ X obj/util.o \ X obj/key.o \ X obj/script.o \ X obj/db.o \ X obj/walletdb.o \ X obj/crypter.o \ X obj/net.o \ X obj/irc.o \ X obj/keystore.o \ X obj/main.o \ X obj/wallet.o \ X obj/bitcoinrpc.o \ X obj/init.o \ X cryptopp/obj/sha.o \ X cryptopp/obj/cpu.o X XOBJS = \ X $(BASE_OBJS) \ X obj/hook.o X Xall: namecoind X Xcryptopp/obj/%.o: cryptopp/%.cpp X $(CXX) -c $(CXXFLAGS) -O3 -o $@ $< X Xobj/nogui/%.o: %.cpp $(HEADERS) X $(CXX) -c $(CXXFLAGS) -o $@ $< X Xobj/test/%.o: test/%.cpp $(HEADERS) X $(CXX) -c $(CFLAGS) -o $@ $< X Xobj/nogui/namecoin.o: namecoin.h X Xnamecoind: $(BASE_OBJS:obj/%=obj/nogui/%) obj/nogui/namecoin.o X $(CXX) $(CXXFLAGS) -o $@ $^ $(LIBS) X Xclean: X -rm -f namecoin namecoind X -rm -f obj/*.o X -rm -f obj/nogui/*.o X -rm -f obj/test/*.o X -rm -f cryptopp/obj/*.o X -rm -f headers.h.gch 2869bc8ad2dd8f7c83a6384e6e3ce423 echo x - namecoin/distinfo sed 's/^X//' >namecoin/distinfo << 'af7280dcc6b0f3404156a1150a56ce37' XSHA256 (namecoin-Q.3.72.tar.gz) = 426b6c10b999ed11f436b2d8a56715a4355d30af41e13a1fd6e6ee5dd8348775 XSIZE (namecoin-Q.3.72.tar.gz) = 1453900 af7280dcc6b0f3404156a1150a56ce37 echo x - namecoin/Makefile sed 's/^X//' >namecoin/Makefile << 'e2404596dd40f9872699085b1b2157fb' X# Created by: Chad J. Milios X# $FreeBSD$ X XPORTNAME= namecoin XPORTVERSION= Q.3.72 XCATEGORIES= net-p2p dns XMASTER_SITES= GH X XMAINTAINER= milios@ccsys.com XCOMMENT= A decentralized, open DNS system and general purpose key/value store. X XLIB_DEPENDS= libboost_date_time.so:${PORTSDIR}/devel/boost-libs X XUSE_GCC= yes X XOPTIONS_DEFINE= GUI UPNP QRCODES XOPTIONS_DEFAULT= GUI QRCODES X XGUI_DESC= Build as a QT4 GUI XUPNP_DESC= Build with UPNP support XQRCODES_DESC= Build with QR code display X XUSE_GITHUB= yes XGH_ACCOUNT= namecoinq XGH_PROJECT= namecoinq XGH_COMMIT= cdf052b XGH_TAGNAME= v${PORTVERSION} X XUSE_GMAKE= yes XUSE_OPENSSL= yes XUSE_BDB= yes XWANT_BDB_VER= 48 X XCXXFLAGS+= -I${LOCALBASE}/include -I${BDB_INCLUDE_DIR} XCXXFLAGS+= -L${LOCALBASE}/lib -L${BDB_LIB_DIR} X X.include X X.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) XUSE_QT4= corelib gui qmake_build linguist uic moc rcc XBINARY= namecoin-qt XPLIST_FILES+= etc/libmap.d/${BINARY}.conf XLIB_DEPENDS+= libprotobuf.so:${PORTSDIR}/devel/protobuf X.else XBINARY= namecoind XMAKE_ARGS+= -C ${WRKSRC}/src X.endif X X.if ${PORT_OPTIONS:MQRCODES} XLIB_DEPENDS+= libqrencode.so:${PORTSDIR}/graphics/libqrencode XQMAKE_USE_QRCODE=1 X.else XQMAKE_USE_QRCODE=0 X.endif X X.if ${PORT_OPTIONS:MDBUS} XUSE_QT4+= dbus XQMAKE_USE_DBUS= 1 X.else XQMAKE_USE_DBUS= 0 X.endif X XPLIST_FILES+= bin/${BINARY} X X.if ${PORT_OPTIONS:MUPNP} XLIB_DEPENDS+= libminiupnpc.so:${PORTSDIR}/net/miniupnpc XQMAKE_USE_UPNP= 1 X.else XQMAKE_USE_UPNP= - X.endif X X.include X Xpost-patch: X.if !${PORT_OPTIONS:MGUI} || defined(WITHOUT_X11) X @cd ${WRKSRC}/src && ${CP} ${FILESDIR}/makefile.unix Makefile X @${REINPLACE_CMD} \ X -e 's|^USE_UPNP.*$$|USE_UPNP=${QMAKE_USE_UPNP}|' \ X -e 's|-l pthread|${PTHREAD_LIBS}|g' \ X ${WRKSRC}/src/Makefile X.else X @${CP} ${FILESDIR}/libmap.conf ${WRKSRC}/libmap.conf X @${REINPLACE_CMD} \ X -e 's|%%BINARY%%|${BINARY}|' \ X -e 's|%%CC%%|${CC}|' \ X ${WRKSRC}/libmap.conf X.endif X Xdo-configure: X.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) X cd ${WRKSRC} && ${SETENV} ${QMAKE_ENV} \ X ${QMAKE} ${QMAKE_ARGS} USE_UPNP=${QMAKE_USE_UPNP} USE_QRCODE=${QMAKE_USE_QRCODE} \ X QMAKE_LRELEASE=${LRELEASE} INCLUDEPATH+=${BDB_INCLUDE_DIR} \ X QMAKE_LIBDIR+=${BDB_LIB_DIR} ${BINARY}.pro X.endif X Xdo-install: X @${MKDIR} ${STAGEDIR}${PREFIX}/bin X.if ${PORT_OPTIONS:MGUI} && !defined(WITHOUT_X11) X @${MKDIR} ${STAGEDIR}${PREFIX}/etc/libmap.d X ${CP} ${WRKSRC}/libmap.conf ${STAGEDIR}${PREFIX}/etc/libmap.d/${BINARY}.conf X ${INSTALL_PROGRAM} ${WRKSRC}/${BINARY} ${STAGEDIR}${PREFIX}/bin/ X.else X ${INSTALL_PROGRAM} ${WRKSRC}/src/${BINARY} ${STAGEDIR}${PREFIX}/bin/ X.endif X X.include e2404596dd40f9872699085b1b2157fb echo c - namecoin-daemon mkdir -p namecoin-daemon > /dev/null 2>&1 echo x - namecoin-daemon/Makefile sed 's/^X//' >namecoin-daemon/Makefile << '133b970f294840a0aacb3b455ea21902' X# $FreeBSD$ X XPKGNAMESUFFIX= -daemon XCOMMENT= A decentralized, open DNS system and general purpose key/value store. XMASTERDIR= ${.CURDIR}/../namecoin XDESCR= ${MASTERDIR}/pkg-descr XSLAVE_PORT= yes XOPTIONS_EXCLUDE= GUI QRCODES X.include "${MASTERDIR}/Makefile" 133b970f294840a0aacb3b455ea21902 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 07:50:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E691160 for ; Sat, 4 Jan 2014 07:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0A0C91CA6 for ; Sat, 4 Jan 2014 07:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s047o0ah084393 for ; Sat, 4 Jan 2014 07:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s047o0ak084392; Sat, 4 Jan 2014 07:50:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 07:50:00 GMT Resent-Message-Id: <201401040750.s047o0ak084392@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, chris petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D65612E for ; Sat, 4 Jan 2014 07:44:04 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 70A8F1C8D for ; Sat, 4 Jan 2014 07:44:04 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s047i441070631 for ; Sat, 4 Jan 2014 07:44:04 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s047i4c0070626; Sat, 4 Jan 2014 07:44:04 GMT (envelope-from nobody) Message-Id: <201401040744.s047i4c0070626@oldred.freebsd.org> Date: Sat, 4 Jan 2014 07:44:04 GMT From: chris petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185461: Reset maintainer mail/alpine editors/pico-alpine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 07:50:01 -0000 >Number: 185461 >Category: ports >Synopsis: Reset maintainer mail/alpine editors/pico-alpine >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 Jan 04 07:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: chris petrik >Release: >Organization: bsdjunk >Environment: >Description: I don't use this enough to care to upgrade it. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 07:50:14 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 123101C0; Sat, 4 Jan 2014 07:50:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DC2BF1CA8; Sat, 4 Jan 2014 07:50:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s047oDeT084656; Sat, 4 Jan 2014 07:50:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s047oD17084655; Sat, 4 Jan 2014 07:50:13 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 07:50:13 GMT Message-Id: <201401040750.s047oD17084655@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185461: Reset maintainer mail/alpine editors/pico-alpine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 07:50:14 -0000 Synopsis: Reset maintainer mail/alpine editors/pico-alpine Class-Changed-From-To: change-request->maintainer-update Class-Changed-By: edwin Class-Changed-When: Sat Jan 4 07:50:13 UTC 2014 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185461 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 07:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CFC2915E for ; Sat, 4 Jan 2014 07:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A8BA61CA4 for ; Sat, 4 Jan 2014 07:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s047o0Ra084374 for ; Sat, 4 Jan 2014 07:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s047o0hJ084373; Sat, 4 Jan 2014 07:50:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 07:50:00 GMT Resent-Message-Id: <201401040750.s047o0hJ084373@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 [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9D0AA136 for ; Sat, 4 Jan 2014 07:45:21 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6F9BC1C91 for ; Sat, 4 Jan 2014 07:45:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s047jL7Y084189 for ; Sat, 4 Jan 2014 07:45:21 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s047jLY4084188; Sat, 4 Jan 2014 07:45:21 GMT (envelope-from jgh) Message-Id: <201401040745.s047jLY4084188@freefall.freebsd.org> Date: Sat, 4 Jan 2014 07:45:21 GMT From: Jason Helfman To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/185460: sysutils/tarsnap: support staging X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 04 Jan 2014 07:50:01 -0000 >Number: 185460 >Category: ports >Synopsis: sysutils/tarsnap: support staging >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 Jan 04 07:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Jason Helfman >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD freefall.freebsd.org 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r259961: Fri Dec 27 21:56:39 UTC 2013 peter@freefall.freebsd.org:/usr/obj/usr/src/sys/FREEFALL amd64 >Description: Support StageDir >How-To-Repeat: >Fix: Index: sysutils/tarsnap/pkg-plist =================================================================== --- sysutils/tarsnap/pkg-plist (revision 338623) +++ sysutils/tarsnap/pkg-plist (working copy) @@ -3,6 +3,12 @@ bin/tarsnap-keymgmt bin/tarsnap-keyregen bin/tarsnap-recrypt +man/man1/tarsnap-keygen.1.gz +man/man1/tarsnap-keymgmt.1.gz +man/man1/tarsnap-keyregen.1.gz +man/man1/tarsnap-recrypt.1.gz +man/man1/tarsnap.1.gz +man/man5/tarsnap.conf.5.gz @unexec if cmp -s %D/etc/tarsnap.conf.sample %D/etc/tarsnap.conf; then rm -f %D/etc/tarsnap.conf; fi etc/tarsnap.conf.sample @exec if [ ! -f %D/etc/tarsnap.conf ] ; then cp -p %D/%F %B/tarsnap.conf; fi Index: sysutils/tarsnap/Makefile =================================================================== --- sysutils/tarsnap/Makefile (revision 338623) +++ sysutils/tarsnap/Makefile (working copy) @@ -15,18 +15,12 @@ GNU_CONFIGURE= yes USES= gmake -MAN1= tarsnap.1 tarsnap-keygen.1 tarsnap-keymgmt.1 \ - tarsnap-keyregen.1 tarsnap-recrypt.1 -MAN5= tarsnap.conf.5 - OPTIONS_DEFINE= SSE2 SSE2_DESC= Use SSE2-optimized code SSE2_CONFIGURE_ENABLE= sse2 SSE2_CFLAGS= -msse2 -NO_STAGE= yes - .include # safety check to ensure that we don't violate the license @@ -35,9 +29,8 @@ .endif post-install: - @if [ ! -f ${PREFIX}/etc/tarsnap.conf ]; then \ - ${CP} -p ${PREFIX}/etc/tarsnap.conf.sample ${PREFIX}/etc/tarsnap.conf ; \ + @if [ ! -f ${STAGEDIR}${PREFIX}/etc/tarsnap.conf ]; then \ + ${CP} -p ${STAGEDIR}${PREFIX}/etc/tarsnap.conf.sample ${STAGEDIR}${PREFIX}/etc/tarsnap.conf ; \ fi - @${CAT} ${PKGDIR}/pkg-message .include >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 07:50:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45B8F190; Sat, 4 Jan 2014 07:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1B0601CA7; Sat, 4 Jan 2014 07:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s047o8AQ084525; Sat, 4 Jan 2014 07:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s047o8XJ084524; Sat, 4 Jan 2014 07:50:08 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 07:50:08 GMT Message-Id: <201401040750.s047o8XJ084524@freefall.freebsd.org> To: jgh@FreeBSD.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185460: sysutils/tarsnap: support staging X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 07:50:09 -0000 Synopsis: sysutils/tarsnap: support staging State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Jan 4 07:50:08 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185460 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 08:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2EB1024A for ; Sat, 4 Jan 2014 08:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1BB851D18 for ; Sat, 4 Jan 2014 08:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04800cW087466 for ; Sat, 4 Jan 2014 08:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04800Jv087465; Sat, 4 Jan 2014 08:00:00 GMT (envelope-from gnats) Date: Sat, 4 Jan 2014 08:00:00 GMT Message-Id: <201401040800.s04800Jv087465@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/185460: sysutils/tarsnap: support staging X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 04 Jan 2014 08:00:01 -0000 The following reply was made to PR ports/185460; it has been noted by GNATS. From: Edwin Groothuis To: cperciva@tarsnap.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/185460: sysutils/tarsnap: support staging Date: Sat, 4 Jan 2014 07:50:08 UT Maintainer of sysutils/tarsnap, Please note that PR ports/185460 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/185460 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 08:16:52 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 724523C1; Sat, 4 Jan 2014 08:16:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 476E01DFB; Sat, 4 Jan 2014 08:16:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s048GqMO094535; Sat, 4 Jan 2014 08:16:52 GMT (envelope-from jgh@freefall.freebsd.org) Received: (from jgh@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s048GqXo094534; Sat, 4 Jan 2014 08:16:52 GMT (envelope-from jgh) Date: Sat, 4 Jan 2014 08:16:52 GMT Message-Id: <201401040816.s048GqXo094534@freefall.freebsd.org> To: jgh@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, jgh@FreeBSD.org From: jgh@FreeBSD.org Subject: Re: ports/185461: Reset maintainer mail/alpine editors/pico-alpine X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 08:16:52 -0000 Synopsis: Reset maintainer mail/alpine editors/pico-alpine Responsible-Changed-From-To: freebsd-ports-bugs->jgh Responsible-Changed-By: jgh Responsible-Changed-When: Sat Jan 4 08:16:52 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=185461 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 08:30:06 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 26511A5E for ; Sat, 4 Jan 2014 08:30:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DB18C1EB4 for ; Sat, 4 Jan 2014 08:30:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s048U5VW099191 for ; Sat, 4 Jan 2014 08:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s048U54d099190; Sat, 4 Jan 2014 08:30:05 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 08:30:05 GMT Resent-Message-Id: <201401040830.s048U54d099190@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, chris petrik Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 504A540A for ; Sat, 4 Jan 2014 08:21:17 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3C3A51E61 for ; Sat, 4 Jan 2014 08:21:17 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s048LG9f071997 for ; Sat, 4 Jan 2014 08:21:16 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s048LGqZ071987; Sat, 4 Jan 2014 08:21:16 GMT (envelope-from nobody) Message-Id: <201401040821.s048LGqZ071987@oldred.freebsd.org> Date: Sat, 4 Jan 2014 08:21:16 GMT From: chris petrik To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185462: [PATCH] graphics/ImageMagick update to 6.8.8-1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 08:30:06 -0000 >Number: 185462 >Category: ports >Synopsis: [PATCH] graphics/ImageMagick update to 6.8.8-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: Sat Jan 04 08:30:05 UTC 2014 >Closed-Date: >Last-Modified: >Originator: chris petrik >Release: >Organization: bsdjunk >Environment: >Description: 1. Update to 6.8.8-1 2. Remove PerlMagick as default as it's broken various people on:http://www.imagemagick.org/discourse-server/viewforum.php?f=7&sid=b5596d2bbecf49db8100269f9f953150 have also complained about broken PerlMagick 3. Remove me as maintainer as I no longer have time to put up with IM's 500 releases in a month. 4. No staging porting. 5. remove fourier patch as it was to fix something in 7.x which is now EOL >How-To-Repeat: >Fix: http://www.bsdjunk.com:8080/exp/vpatch?from=4460e6f35afc1425&to=88be583f659aa720 >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 08:45:35 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9E092C81; Sat, 4 Jan 2014 08:45:35 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 727781FA3; Sat, 4 Jan 2014 08:45:35 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s048jZaI003607; Sat, 4 Jan 2014 08:45:35 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s048jZHu003606; Sat, 4 Jan 2014 08:45:35 GMT (envelope-from linimon) Date: Sat, 4 Jan 2014 08:45:35 GMT Message-Id: <201401040845.s048jZHu003606@freefall.freebsd.org> To: c.petrik.sosa@gmail.com, velcroleaf@rocketmail.com, linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/180050: mail/alpine should be updated to version 2.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 08:45:35 -0000 Synopsis: mail/alpine should be updated to version 2.10 State-Changed-From-To: feedback->open State-Changed-By: linimon State-Changed-When: Sat Jan 4 08:45:15 UTC 2014 State-Changed-Why: Maintainer was reset. http://www.freebsd.org/cgi/query-pr.cgi?pr=180050 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 09:20:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9AE6A3DA for ; Sat, 4 Jan 2014 09:20:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7523E1173 for ; Sat, 4 Jan 2014 09:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s049K0uP011091 for ; Sat, 4 Jan 2014 09:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s049K00d011090; Sat, 4 Jan 2014 09:20:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 09:20:00 GMT Resent-Message-Id: <201401040920.s049K00d011090@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, nemysis Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 647AD1D4 for ; Sat, 4 Jan 2014 09:13:06 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 517271151; Sat, 4 Jan 2014 09:13:06 +0000 (UTC) Received: from misterbean90now (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with SMTP id s049D3LY009928; Sat, 4 Jan 2014 09:13:04 GMT (envelope-from nemysis@FreeBSD.org) Received: by misterbean90now (sSMTP sendmail emulation); Sat, 04 Jan 2014 10:13:06 +0100 Message-Id: <201401040913.s049D3LY009928@freefall.freebsd.org> Date: Sat, 04 Jan 2014 10:13:06 +0100 From: nemysis To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185463: [PATCH] devel/p5-Test-Class-Most: Support STAGEDIR, change WWW Cc: 5u623l20@gmail.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 09:20:00 -0000 >Number: 185463 >Category: ports >Synopsis: [PATCH] devel/p5-Test-Class-Most: Support STAGEDIR, change WWW >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 Jan 04 09:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: nemysis >Release: FreeBSD 9.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC >Description: - Support STAGEDIR - Change WWW Port maintainer (5u623l20@gmail.com) is cc'd. Generated and tested manually, tested with stage and with RedPorts, sent with FreeBSD Port Tools 0.99_10 (mode: change, diff: SVN) >How-To-Repeat: Build log https://redports.org/buildarchive/20140104085800-16445/ >Fix: --- p5-Test-Class-Most-0.08.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 338635) +++ Makefile (working copy) @@ -21,10 +21,8 @@ USES= perl5 USE_PERL5= modbuild -PLIST_FILES= %%SITE_PERL%%/Test/Class/Most.pm +PLIST_FILES= %%SITE_PERL%%/Test/Class/Most.pm \ + lib/perl5/%%PERL_VER%%/man/man3/Test::Class::Most.3.gz PLIST_DIRSTRY= %%SITE_PERL%%/Test/Class %%SITE_PERL%%/Test -MAN3= Test::Class::Most.3 - -NO_STAGE= yes .include Index: pkg-descr =================================================================== --- pkg-descr (revision 338635) +++ pkg-descr (working copy) @@ -1,3 +1,3 @@ Test Perl Classes the easy way -WWW: https://github.com/Ovid/Test-Class-Most/ +WWW: http://search.cpan.org/~ovid/Test-Class-Most/ --- p5-Test-Class-Most-0.08.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 09:20:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 20868407; Sat, 4 Jan 2014 09:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E970F1174; Sat, 4 Jan 2014 09:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s049K8ll011225; Sat, 4 Jan 2014 09:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s049K8Ml011224; Sat, 4 Jan 2014 09:20:08 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 09:20:08 GMT Message-Id: <201401040920.s049K8Ml011224@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, perl@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185463: [PATCH] devel/p5-Test-Class-Most: Support STAGEDIR, change WWW X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 09:20:09 -0000 Synopsis: [PATCH] devel/p5-Test-Class-Most: Support STAGEDIR, change WWW Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 09:20:08 UTC 2014 Responsible-Changed-Why: perl@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185463 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 09:30:03 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 309F3767 for ; Sat, 4 Jan 2014 09:30:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E5DCB11FE for ; Sat, 4 Jan 2014 09:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s049U2j5013307 for ; Sat, 4 Jan 2014 09:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s049U2DQ013306; Sat, 4 Jan 2014 09:30:02 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 09:30:02 GMT Resent-Message-Id: <201401040930.s049U2DQ013306@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, Hardy Schumacher Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 157605F0 for ; Sat, 4 Jan 2014 09:25:43 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 01CED11DE for ; Sat, 4 Jan 2014 09:25:43 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s049Pgds005721 for ; Sat, 4 Jan 2014 09:25:42 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s049PgWC005709; Sat, 4 Jan 2014 09:25:42 GMT (envelope-from nobody) Message-Id: <201401040925.s049PgWC005709@oldred.freebsd.org> Date: Sat, 4 Jan 2014 09:25:42 GMT From: Hardy Schumacher To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185464: [UPDATE] games/neverball, add license information X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 09:30:03 -0000 >Number: 185464 >Category: ports >Synopsis: [UPDATE] games/neverball, add license information >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 Jan 04 09:30:02 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Hardy Schumacher >Release: FreeBSD-9.2 >Organization: >Environment: FreeBSD gamma.low.org 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255996: Thu Oct 3 20:40:04 CEST 2013 root@gamma.low.org:/usr/obj/usr/src/sys/LOW_GAMMA i386 >Description: Add license information to port games/neverball. >How-To-Repeat: n/a >Fix: Patch attached with submission follows: diff -ruN /usr/ports/games/neverball/Makefile ./neverball/Makefile --- /usr/ports/games/neverball/Makefile 2013-11-08 21:34:40.000000000 +0100 +++ ./neverball/Makefile 2014-01-04 10:14:38.000000000 +0100 @@ -11,6 +11,9 @@ MAINTAINER= amdmi3@FreeBSD.org COMMENT= Tilt the floor to guide a ball through an obstacle course +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + LIB_DEPENDS= libpng.so:${PORTSDIR}/graphics/png \ libjpeg.so:${PORTSDIR}/graphics/jpeg \ libvorbis.so:${PORTSDIR}/audio/libvorbis \ >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 09:30:10 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 962607B0; Sat, 4 Jan 2014 09:30:10 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6C6A41200; Sat, 4 Jan 2014 09:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s049UAXH013384; Sat, 4 Jan 2014 09:30:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s049UAPd013383; Sat, 4 Jan 2014 09:30:10 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 09:30:10 GMT Message-Id: <201401040930.s049UAPd013383@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, amdmi3@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185464: [UPDATE] games/neverball, add license information X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 09:30:10 -0000 Synopsis: [UPDATE] games/neverball, add license information Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 09:30:10 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185464 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 12:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B15F216B for ; Sat, 4 Jan 2014 12:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8C0DC1CA0 for ; Sat, 4 Jan 2014 12:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04CA0aX047140 for ; Sat, 4 Jan 2014 12:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04CA0FM047139; Sat, 4 Jan 2014 12:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 12:10:00 GMT Resent-Message-Id: <201401041210.s04CA0FM047139@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, Pavel I Volkov Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DC56FFB1 for ; Sat, 4 Jan 2014 12:01:59 +0000 (UTC) Received: from be.dns4soho.net (be.dns4soho.net [IPv6:2a01:230:2::30]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 969881B6D for ; Sat, 4 Jan 2014 12:01:58 +0000 (UTC) Received: from be.dns4soho.net (be.dns4soho.net [82.146.57.245]) by be.dns4soho.net (8.14.7/8.14.5) with ESMTP id s04C1rvf021773 for ; Sat, 4 Jan 2014 12:01:53 GMT (envelope-from pol@be.dns4soho.net) Received: (from root@localhost) by be.dns4soho.net (8.14.7/8.14.7/Submit) id s04BhJM9082496; Sat, 4 Jan 2014 15:43:19 +0400 (MSK) (envelope-from pol) Message-Id: <201401041143.s04BhJM9082496@be.dns4soho.net> Date: Sat, 4 Jan 2014 15:43:19 +0400 (MSK) From: Pavel I Volkov To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185465: [MAINTAINER] databases/sqlite3: update to 3.8.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 12:10:00 -0000 >Number: 185465 >Category: ports >Synopsis: [MAINTAINER] databases/sqlite3: update to 3.8.2 >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 Jan 04 12:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Pavel I Volkov >Release: FreeBSD 9.2-RELEASE-p2 amd64 >Organization: >Environment: System: FreeBSD be.dns4soho.net 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #3: Sat Nov 30 10:44:24 MSK 2013 >Description: - Update to 3.8.2 - Don't add RTREE by default - Add new OPTION: UNICODE61 Generated with FreeBSD Port Tools 0.99_11 (mode: update, diff: suffix) >How-To-Repeat: >Fix: --- sqlite3-3.8.2.patch begins here --- diff -ruN ../sqlite3.orig/Makefile ./Makefile --- ../sqlite3.orig/Makefile 2014-01-03 14:18:48.000000000 +0400 +++ ./Makefile 2014-01-04 15:34:01.000000000 +0400 @@ -2,10 +2,10 @@ # $FreeBSD: head/databases/sqlite3/Makefile 337465 2013-12-25 23:33:14Z rakuco $ PORTNAME= sqlite3 -PORTVERSION= 3.8.1 +PORTVERSION= 3.8.2 CATEGORIES= databases MASTER_SITES= http://www.sqlite.org/2013/ http://www2.sqlite.org/2013/ http://www3.sqlite.org/2013/ -DISTNAME= sqlite-autoconf-3080100 +DISTNAME= sqlite-autoconf-3080200 MAINTAINER= pavelivolkov@gmail.com COMMENT= SQL database engine in a C library @@ -24,8 +24,11 @@ MAKE_JOBS_UNSAFE= yes # Compilation Options For SQLite http://www.sqlite.org/compile.html -OPTIONS_DEFINE= FTS4 ICU UPD_DEL_LIMIT URI URI_AUTHORITY SOUNDEX METADATA \ +OPTIONS_DEFINE= FTS4 UPD_DEL_LIMIT URI URI_AUTHORITY SOUNDEX METADATA \ DIRECT_READ MEMMAN SECURE_DELETE UNLOCK_NOTIFY THREADS EXTENSION +OPTIONS_SINGLE= RAMT +OPTIONS_RADIO= STAT +OPTIONS_GROUP= UNICODE RTREEG FTS4_DESC= Enable FTS3/4 (Full Text Search) module UPD_DEL_LIMIT_DESC= ORDER BY and LIMIT on UPDATE and DELETE @@ -39,7 +42,6 @@ UNLOCK_NOTIFY_DESC= Enable notification on unlocking EXTENSION_DESC= Allow loadable extensions -OPTIONS_SINGLE= RAMT OPTIONS_SINGLE_RAMT= TS0 TS1 TS2 TS3 RAMT_DESC= Where to store temporary files TS0_DESC= Always use temporary files @@ -47,19 +49,23 @@ TS2_DESC= Memory by default,allow changes with PRAGMA TS3_DESC= Always use memory -OPTIONS_RADIO= STAT OPTIONS_RADIO_STAT= STAT3 STAT4 STAT_DESC= Which query planner to use STAT3_DESC= collect histogram data from leftmost column STAT4_DESC= collect histogram data from all columns -OPTIONS_GROUP= RTREEG +# http://www.sqlite.org/fts3.html#tokenizer +OPTIONS_GROUP_UNICODE= ICU UNICODE61 +UNICODE_DESC= Unicode support +UNICODE61_DESC= Unicode Version 6.1 tokenizer + +# http://www.sqlite.org/rtree.html OPTIONS_GROUP_RTREEG= RTREE RTREE_INT RTREEG_DESC= Index type for range queries RTREE_DESC= Enable R*Tree module RTREE_INT_DESC= Store 32-bit sig int (no float) coordinates -OPTIONS_DEFAULT= FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS EXTENSION TS1 RTREE +OPTIONS_DEFAULT= FTS4 URI METADATA SECURE_DELETE UNLOCK_NOTIFY THREADS EXTENSION TS1 PLIST_FILES= bin/sqlite3 include/sqlite3.h include/sqlite3ext.h \ lib/libsqlite3.a lib/libsqlite3.la lib/libsqlite3.so \ @@ -111,6 +117,8 @@ ICU_CPPFLAGS= `${LOCALBASE}/bin/icu-config --cppflags` -DSQLITE_ENABLE_ICU=1 ICU_LDFLAGS= `${LOCALBASE}/bin/icu-config --ldflags` +UNICODE61_CPPFLAGS= -DSQLITE_ENABLE_FTS4_UNICODE61=1 + .include post-configure: diff -ruN ../sqlite3.orig/distinfo ./distinfo --- ../sqlite3.orig/distinfo 2014-01-03 14:18:48.000000000 +0400 +++ ./distinfo 2014-01-03 14:22:26.000000000 +0400 @@ -1,2 +1,2 @@ -SHA256 (sqlite-autoconf-3080100.tar.gz) = 176df9a5dfbf4cf8516ef7b91ee187779855f51d4502534a5826034458ba2bb5 -SIZE (sqlite-autoconf-3080100.tar.gz) = 1896869 +SHA256 (sqlite-autoconf-3080200.tar.gz) = a0851d06092c8208e4dd947f569f40db476b472b22e3e10e2f52f3c5e94fef92 +SIZE (sqlite-autoconf-3080200.tar.gz) = 1917056 --- sqlite3-3.8.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 12:30:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6D2E1434 for ; Sat, 4 Jan 2014 12:30:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5A2491D98 for ; Sat, 4 Jan 2014 12:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04CU1Ku055586 for ; Sat, 4 Jan 2014 12:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04CU1Fe055585; Sat, 4 Jan 2014 12:30:01 GMT (envelope-from gnats) Date: Sat, 4 Jan 2014 12:30:01 GMT Message-Id: <201401041230.s04CU1Fe055585@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Colin Percival Subject: Re: ports/185460: sysutils/tarsnap: support staging X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Colin Percival List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 12:30:01 -0000 The following reply was made to PR ports/185460; it has been noted by GNATS. From: Colin Percival To: bug-followup@FreeBSD.org, jgh@FreeBSD.org Cc: Subject: Re: ports/185460: sysutils/tarsnap: support staging Date: Sat, 04 Jan 2014 04:20:36 -0800 I don't think this patch is correct, specifically the bit dealing with copying tarsnap.conf.sample to tarsnap.conf if there is no tarsnap.conf file present yet. There's *never* going to be such a file in the staging directory. Should the entire post-install be removed? There's an @exec in pkg-plist which (I think) does the copying if required; is that now guaranteed to be executed even if the port is installed "manually" via staging? -- Colin Percival Security Officer Emeritus, FreeBSD | The power to serve Founder, Tarsnap | www.tarsnap.com | Online backups for the truly paranoid From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 14:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E4BECD43 for ; Sat, 4 Jan 2014 14:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A6C4B1620 for ; Sat, 4 Jan 2014 14:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04Ee0FE086021 for ; Sat, 4 Jan 2014 14:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04Ee02x086020; Sat, 4 Jan 2014 14:40:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 14:40:00 GMT Resent-Message-Id: <201401041440.s04Ee02x086020@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, Fneufneu Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 97A02ABE for ; Sat, 4 Jan 2014 14:30:24 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 83E6F159B for ; Sat, 4 Jan 2014 14:30:24 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s04EUO4r064120 for ; Sat, 4 Jan 2014 14:30:24 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s04EUOjO064104; Sat, 4 Jan 2014 14:30:24 GMT (envelope-from nobody) Message-Id: <201401041430.s04EUOjO064104@oldred.freebsd.org> Date: Sat, 4 Jan 2014 14:30:24 GMT From: Fneufneu To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185466: [maintainer update] update multimedia/xbmc to 13.0 alpha 11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 14:40:01 -0000 >Number: 185466 >Category: ports >Synopsis: [maintainer update] update multimedia/xbmc to 13.0 alpha 11 >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 Jan 04 14:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Fneufneu >Release: >Organization: >Environment: FreeBSD home.freelooser.fr 10.0-BETA4 FreeBSD 10.0-BETA4 #6 r258889: Wed Dec 4 01:30:58 CET 2013 root@home.freelooser.fr:/usr/obj/usr/src/sys/GENERIC amd64 >Description: XBMC 12.2 is broken since a while, fixes was made in upstream and can't be easily backported. so i prefer to update the port to version 13.0 Alpha 11 i removed external ffmpeg support because XBMC need a specific version with some internal patches. And airtunes option since libshairport has to be updated first. 203k patch file: http://fneu.fr/freebsd/xbmc/xbmc.13.0.a11.txt >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 15:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BB1DD553 for ; Sat, 4 Jan 2014 15:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 967D81806 for ; Sat, 4 Jan 2014 15:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04FA015092382 for ; Sat, 4 Jan 2014 15:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04FA04W092381; Sat, 4 Jan 2014 15:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 15:10:00 GMT Resent-Message-Id: <201401041510.s04FA04W092381@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, Mark Felder Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 936DA4F5 for ; Sat, 4 Jan 2014 15:00:59 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 804B6176E for ; Sat, 4 Jan 2014 15:00:59 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s04F0xAS069005 for ; Sat, 4 Jan 2014 15:00:59 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s04F0xpf068992; Sat, 4 Jan 2014 15:00:59 GMT (envelope-from nobody) Message-Id: <201401041500.s04F0xpf068992@oldred.freebsd.org> Date: Sat, 4 Jan 2014 15:00:59 GMT From: Mark Felder To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185467: [PATCH] net-mgmt/zabbix22-frontend: permit building with >php 5.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 15:10:00 -0000 >Number: 185467 >Category: ports >Synopsis: [PATCH] net-mgmt/zabbix22-frontend: permit building with >php 5.2 >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 Jan 04 15:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Mark Felder >Release: >Organization: >Environment: >Description: Zabbix 2.2 supports PHP versions newer than 5.2 https://www.zabbix.com/documentation/2.2/manual/installation/requirements The attached patch adds STAGE support to zabbix22-frontend and only restricts building with PHP 5.2. Please update the rest of the zabbix ports to support STAGE at your leisure. >How-To-Repeat: >Fix: Patch attached with submission follows: Index: zabbix22-frontend/Makefile =================================================================== --- zabbix22-frontend/Makefile (revision 338647) +++ zabbix22-frontend/Makefile (working copy) @@ -20,7 +20,6 @@ OPTIONS_DEFAULT= MYSQL MYSQLI MYSQLI_DESC= MySQLI backend -NO_STAGE= yes .include .if ${PORT_OPTIONS:MMYSQL} @@ -45,7 +44,7 @@ .endif do-install: - @${INSTALL} -d ${WWWDIR} - @cd ${WRKSRC}/frontends/php/ && ${COPYTREE_SHARE} . ${WWWDIR} + ${INSTALL} -d ${STAGEDIR}${WWWDIR} + @cd ${WRKSRC}/frontends/php/ && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} .include "${MASTERDIR}/Makefile" Index: zabbix22-server/Makefile =================================================================== --- zabbix22-server/Makefile (revision 338647) +++ zabbix22-server/Makefile (working copy) @@ -16,7 +16,7 @@ CONFLICTS= ${PKGBASE}-1.[0-8]* -IGNORE_WITH_PHP= 5 52 +IGNORE_WITH_PHP= 52 IGNORE_WITH_MYSQL= 41 .if ${PKGNAMESUFFIX} != "-agent" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 15:10:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0CA7958F; Sat, 4 Jan 2014 15:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D4B4C1811; Sat, 4 Jan 2014 15:10:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04FA8Du092516; Sat, 4 Jan 2014 15:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04FA8i5092515; Sat, 4 Jan 2014 15:10:08 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 15:10:08 GMT Message-Id: <201401041510.s04FA8i5092515@freefall.freebsd.org> To: feld@FreeBSD.org, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185467: [PATCH] net-mgmt/zabbix22-frontend: permit building with >php 5.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 15:10:09 -0000 Synopsis: [PATCH] net-mgmt/zabbix22-frontend: permit building with >php 5.2 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Jan 4 15:10:08 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185467 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 15:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 488F88AB for ; Sat, 4 Jan 2014 15:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 32F6818A4 for ; Sat, 4 Jan 2014 15:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04FK06S095493 for ; Sat, 4 Jan 2014 15:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04FK0Ji095492; Sat, 4 Jan 2014 15:20:00 GMT (envelope-from gnats) Date: Sat, 4 Jan 2014 15:20:00 GMT Message-Id: <201401041520.s04FK0Ji095492@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/185467: [PATCH] net-mgmt/zabbix22-frontend: permit building with >php 5.2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 04 Jan 2014 15:20:01 -0000 The following reply was made to PR ports/185467; it has been noted by GNATS. From: Edwin Groothuis To: pakhom706@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/185467: [PATCH] net-mgmt/zabbix22-frontend: permit building with >php 5.2 Date: Sat, 4 Jan 2014 15:10:07 UT Maintainer of net-mgmt/zabbix22-frontend, Please note that PR ports/185467 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/185467 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 16:30:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 985D7C72 for ; Sat, 4 Jan 2014 16:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 71A561D9B for ; Sat, 4 Jan 2014 16:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04GU0pO010704 for ; Sat, 4 Jan 2014 16:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04GU0dc010701; Sat, 4 Jan 2014 16:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 16:30:00 GMT Resent-Message-Id: <201401041630.s04GU0dc010701@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, Raphael Kubo da Costa Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4087CC33; Sat, 4 Jan 2014 16:26:50 +0000 (UTC) Received: from mail-la0-x22b.google.com (mail-la0-x22b.google.com [IPv6:2a00:1450:4010:c03::22b]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 91FAD1D7F; Sat, 4 Jan 2014 16:26:49 +0000 (UTC) Received: by mail-la0-f43.google.com with SMTP id n7so8788590lam.2 for ; Sat, 04 Jan 2014 08:26:47 -0800 (PST) Received: from localhost (a91-154-115-217.elisa-laajakaista.fi. [91.154.115.217]) by mx.google.com with ESMTPSA id ox6sm38899462lbb.6.2014.01.04.08.26.45 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sat, 04 Jan 2014 08:26:46 -0800 (PST) Message-Id: <52c83646.e684700a.19bb.6a27@mx.google.com> Date: Sat, 04 Jan 2014 08:26:46 -0800 (PST) From: Raphael Kubo da Costa Sender: Raphael Kubo da Costa To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185468: [PATCH] editors/emacs: Do not launch emacs from a terminal when X11 is set (r338450 regression) Cc: ashish@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 16:30:00 -0000 >Number: 185468 >Category: ports >Synopsis: [PATCH] editors/emacs: Do not launch emacs from a terminal when X11 is set (r338450 regression) >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 Jan 04 16:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Raphael Kubo da Costa >Release: FreeBSD 11.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD orwell 11.0-CURRENT FreeBSD 11.0-CURRENT #5 r259799: Tue Dec 24 03:24:18 EET >Description: Fix a regression introduced in r338450 that reversed the logic in the check for whether the X11 option is set or not: before, it checked for WITHOUT_X11 to set Terminal to true in the desktop file, whereas the code was now setting that _if_ X11 was set. Port maintainer (ashish@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- emacs24-24.3_2,3.patch begins here --- diff -ruN /usr/ports/editors/emacs/Makefile ./Makefile --- /usr/ports/editors/emacs/Makefile 2014-01-04 18:19:26.000000000 +0200 +++ ./Makefile 2014-01-04 18:18:14.000000000 +0200 @@ -1,9 +1,9 @@ # Created by: MANTANI Nobutaka -# $FreeBSD: editors/emacs/Makefile 338536 2014-01-03 10:55:40Z ashish $ +# $FreeBSD: head/editors/emacs/Makefile 338536 2014-01-03 10:55:40Z ashish $ PORTNAME= emacs PORTVERSION= ${EMACS_VER} -PORTREVISION?= 1 +PORTREVISION?= 2 PORTEPOCH= 3 CATEGORIES= editors ipv6 MASTER_SITES= ${MASTER_SITE_GNU} --- emacs24-24.3_2,3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 16:30:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9C258D78; Sat, 4 Jan 2014 16:30:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6FFF91DA0; Sat, 4 Jan 2014 16:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04GU9MO012465; Sat, 4 Jan 2014 16:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04GU9Xv012464; Sat, 4 Jan 2014 16:30:09 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 16:30:09 GMT Message-Id: <201401041630.s04GU9Xv012464@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, ashish@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185468: [PATCH] editors/emacs: Do not launch emacs from a terminal when X11 is set (r338450 regression) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 16:30:09 -0000 Synopsis: [PATCH] editors/emacs: Do not launch emacs from a terminal when X11 is set (r338450 regression) Responsible-Changed-From-To: freebsd-ports-bugs->ashish Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 16:30:09 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185468 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 17:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B21A9907 for ; Sat, 4 Jan 2014 17:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8CBA2124B for ; Sat, 4 Jan 2014 17:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04He0Jh025391 for ; Sat, 4 Jan 2014 17:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04He0Un025390; Sat, 4 Jan 2014 17:40:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 17:40:00 GMT Resent-Message-Id: <201401041740.s04He0Un025390@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, Markiyan Kushnir Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5FF8F5C9 for ; Sat, 4 Jan 2014 17:35:22 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4C1411227 for ; Sat, 4 Jan 2014 17:35:22 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s04HZMRl061666 for ; Sat, 4 Jan 2014 17:35:22 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s04HZMuN061665; Sat, 4 Jan 2014 17:35:22 GMT (envelope-from nobody) Message-Id: <201401041735.s04HZMuN061665@oldred.freebsd.org> Date: Sat, 4 Jan 2014 17:35:22 GMT From: Markiyan Kushnir To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185469: print/lilypond-devel fails to build with the latest freetype2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 17:40:00 -0000 >Number: 185469 >Category: ports >Synopsis: print/lilypond-devel fails to build with the latest freetype2 >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 Jan 04 17:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Markiyan Kushnir >Release: 11.0-CURRENT >Organization: >Environment: FreeBSD mkushnir.mooo.com 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r260252: Sat Jan 4 13:28:37 EET 2014 root@vm.mkushnir.mooo.com:/usr/obj/usr/src.svnup/sys/MAREK amd64 >Description: A recent upgrade of freetype2 to 2.5.2 requires #include , not . And print/lilypond-devel is no longer expected to compile, since it knows the old invocation . >How-To-Repeat: cd /usr/ports/print/lilypond-devel && make (r338635 of ports/head for example) >Fix: Patch attached with submission follows: --- ports.svn/print/lilypond-devel/Makefile 2014-01-04 10:52:32.000000000 +0200 +++ ports/print/lilypond-devel/Makefile 2014-01-04 19:12:24.000000000 +0200 @@ -75,6 +75,10 @@ post-patch: ${REINPLACE_CMD} -e 's||"/usr/include/FlexLexer.h"|' \ ${WRKSRC}/lily/include/includable-lexer.hh +.for i in freetype-error.cc open-type-font.cc pango-font.cc freetype.cc ttf.cc + ${REINPLACE_CMD} -e 's|Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 17:40:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DF5BB936; Sat, 4 Jan 2014 17:40:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B2A39124F; Sat, 4 Jan 2014 17:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04He8d2025526; Sat, 4 Jan 2014 17:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04He8ZB025525; Sat, 4 Jan 2014 17:40:08 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 17:40:08 GMT Message-Id: <201401041740.s04He8ZB025525@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gahr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185469: print/lilypond-devel fails to build with the latest freetype2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 17:40:08 -0000 Synopsis: print/lilypond-devel fails to build with the latest freetype2 Responsible-Changed-From-To: freebsd-ports-bugs->gahr Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 17:40:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185469 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 18:10:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8A6C9616 for ; Sat, 4 Jan 2014 18:10:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6392A1488 for ; Sat, 4 Jan 2014 18:10:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04IA0fY031513 for ; Sat, 4 Jan 2014 18:10:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04IA0Ax031511; Sat, 4 Jan 2014 18:10:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 18:10:00 GMT Resent-Message-Id: <201401041810.s04IA0Ax031511@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, Matthias Petermann Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3E76E508 for ; Sat, 4 Jan 2014 18:04:25 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 295591469 for ; Sat, 4 Jan 2014 18:04:25 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s04I4OsP084728 for ; Sat, 4 Jan 2014 18:04:24 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s04I4ONL084719; Sat, 4 Jan 2014 18:04:24 GMT (envelope-from nobody) Message-Id: <201401041804.s04I4ONL084719@oldred.freebsd.org> Date: Sat, 4 Jan 2014 18:04:24 GMT From: Matthias Petermann To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185470: [NEW PORT] devel/py-peewee (a small, expressive Python ORM) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 18:10:00 -0000 >Number: 185470 >Category: ports >Synopsis: [NEW PORT] devel/py-peewee (a small, expressive Python ORM) >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 Jan 04 18:10:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Matthias Petermann >Release: 9.2 >Organization: >Environment: FreeBSD workstation.local 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255898: Thu Sep 26 22:50:31 UTC 2013 root@bake.isc.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Peewee is a MIT licensed object relational mapper for Python. It allows access of relational databases (MySQL / MariaDB, PostgreSQL, SQLite3) in a pretty object oriented way. There is usually no need to write SQL. There are some alternatives out there: * SQLAlchemy (databases/py-sqlalchemy) * SQLObject (databases/py-sqlobject) * Storm (not ported yet) Peewee can be distinguished from the above by the following facts: * portable (no native bindings required) * small The attached shar archive contains the port. I'd really appreciate it if someone could commit it. Best regards, Matthias >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: # # ./py-peewee/ # ./py-peewee/Makefile # ./py-peewee/distinfo # ./py-peewee/pkg-descr # ./py-peewee/pkg-plist # echo c - ./py-peewee/ mkdir -p ./py-peewee/ > /dev/null 2>&1 echo x - ./py-peewee/Makefile sed 's/^X//' >./py-peewee/Makefile << '4addf5fbe286ecb1f9859e2dfcbc7f6b' X# Created by: Matthias Petermann X# $FreeBSD$ X XPORTNAME= peewee XPORTVERSION= 2.1.7 XCATEGORIES= databases python XMASTER_SITES= CHEESESHOP XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= matthias@petermann-it.de XCOMMENT= A small, expressive Python ORM X XLICENSE= MIT X XOPTIONS_DEFINE= DOCS SQLITE MYSQL PGSQL XOPTIONS_DEFAULT= SQLITE XDOCS_DESC= Install Documentation XSQLITE_DESC= Add runtime support for SQLite XMYSQL_DESC= Add runtime support for MySQL / MariaDB XPGSQL_DESC= Add runtime support for PostgreSQL X XUSE_PYTHON= 2.6+ XUSE_PYDISTUTILS= easy_install X X.include X X.if ${PORT_OPTIONS:MSQLITE} XRUN_DEPENDS+= ${PYTHON_LIBDIR}/lib-dynload/_sqlite3.so:${PORTSDIR}/databases/py-sqlite3 X.endif X X.if ${PORT_OPTIONS:MMYSQL} XRUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.3:${PORTSDIR}/databases/py-MySQLdb X.endif X X.if ${PORT_OPTIONS:MPGSQL} XRUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}psycopg2>=2.5.1:${PORTSDIR}/databases/py-psycopg2 X.endif X Xpost-install: X.if ${PORT_OPTIONS:MDOCS} X @${MKDIR} ${STAGEDIR}${DOCSDIR} X ${INSTALL_DATA} ${WRKSRC}/README.rst ${STAGEDIR}${DOCSDIR} X ${INSTALL_DATA} ${WRKSRC}/docs/${PORTNAME}/* ${STAGEDIR}${DOCSDIR} X.endif X X.include 4addf5fbe286ecb1f9859e2dfcbc7f6b echo x - ./py-peewee/distinfo sed 's/^X//' >./py-peewee/distinfo << 'f33bbe31493b0580e6929dbc0f91c05c' XSHA256 (peewee-2.1.7.tar.gz) = dd3f694817d940db77e312778424e622bf9d0ce01863dae73fa4d83bd4bb0411 XSIZE (peewee-2.1.7.tar.gz) = 1109242 f33bbe31493b0580e6929dbc0f91c05c echo x - ./py-peewee/pkg-descr sed 's/^X//' >./py-peewee/pkg-descr << '7d112efbc0dcc8a1113a7c9b604cc285' XPeewee is a small, expressive ORM written in Python. It supports XPostgreSQL, MySQL and SQLite. X XWWW: http://peewee.readthedocs.org 7d112efbc0dcc8a1113a7c9b604cc285 echo x - ./py-peewee/pkg-plist sed 's/^X//' >./py-peewee/pkg-plist << '222e8c477d629d5dc715053b711015a1' Xbin/pwiz.py X%%PYTHON_SITELIBDIR%%/peewee-2.1.7-py2.7.egg X%%PORTDOCS%%%%DOCSDIR%%/README.rst X%%PORTDOCS%%%%DOCSDIR%%/api.rst X%%PORTDOCS%%%%DOCSDIR%%/cookbook.rst X%%PORTDOCS%%%%DOCSDIR%%/database.rst X%%PORTDOCS%%%%DOCSDIR%%/example.rst X%%PORTDOCS%%%%DOCSDIR%%/expressions.rst X%%PORTDOCS%%%%DOCSDIR%%/installation.rst X%%PORTDOCS%%%%DOCSDIR%%/models.rst X%%PORTDOCS%%%%DOCSDIR%%/playhouse.rst X%%PORTDOCS%%%%DOCSDIR%%/querying.rst X%%PORTDOCS%%%%DOCSDIR%%/quickstart.rst X%%PORTDOCS%%%%DOCSDIR%%/schema.jpg X%%PORTDOCS%%%%DOCSDIR%%/tweepee.jpg X%%PORTDOCS%%%%DOCSDIR%%/upgrading.rst X%%PORTDOCS%%@dirrm %%DOCSDIR%% 222e8c477d629d5dc715053b711015a1 exit >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 18:10:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 49CEC645; Sat, 4 Jan 2014 18:10:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1F4F2148D; Sat, 4 Jan 2014 18:10:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04IA8Y8031661; Sat, 4 Jan 2014 18:10:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04IA871031660; Sat, 4 Jan 2014 18:10:08 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 18:10:08 GMT Message-Id: <201401041810.s04IA871031660@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185470: [NEW PORT] devel/py-peewee (a small, expressive Python ORM) X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 18:10:09 -0000 Synopsis: [NEW PORT] devel/py-peewee (a small, expressive Python ORM) Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 18:10:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185470 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 19:30:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D1677981 for ; Sat, 4 Jan 2014 19:30:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A10B21A3A for ; Sat, 4 Jan 2014 19:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04JU0I8052502 for ; Sat, 4 Jan 2014 19:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04JU0Bn052501; Sat, 4 Jan 2014 19:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 19:30:00 GMT Resent-Message-Id: <201401041930.s04JU0Bn052501@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, Christian Weisgerber Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 28CA6978 for ; Sat, 4 Jan 2014 19:27:39 +0000 (UTC) Received: from mail-in-08.arcor-online.net (mail-in-08.arcor-online.net [151.189.21.48]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CC63E1A33 for ; Sat, 4 Jan 2014 19:27:38 +0000 (UTC) Received: from mail-in-02-z2.arcor-online.net (mail-in-02-z2.arcor-online.net [151.189.8.14]) by mx.arcor.de (Postfix) with ESMTP id C35333AEEF9 for ; Sat, 4 Jan 2014 19:52:40 +0100 (CET) Received: from mail-in-05.arcor-online.net (mail-in-05.arcor-online.net [151.189.21.45]) by mail-in-02-z2.arcor-online.net (Postfix) with ESMTP id 91C21718C78 for ; Sat, 4 Jan 2014 19:52:40 +0100 (CET) Received: from lorvorc.mips.inka.de (dslb-092-075-108-162.pools.arcor-ip.net [92.75.108.162]) by mail-in-05.arcor-online.net (Postfix) with ESMTPS id 73598E3B72 for ; Sat, 4 Jan 2014 19:52:40 +0100 (CET) Received: from lorvorc.mips.inka.de (localhost [127.0.0.1]) by lorvorc.mips.inka.de (8.14.7/8.14.7) with ESMTP id s04IqeJa003785 for ; Sat, 4 Jan 2014 19:52:40 +0100 (CET) (envelope-from naddy@lorvorc.mips.inka.de) Received: (from naddy@localhost) by lorvorc.mips.inka.de (8.14.7/8.14.7/Submit) id s04IqePh003784; Sat, 4 Jan 2014 19:52:40 +0100 (CET) (envelope-from naddy) Message-Id: <201401041852.s04IqePh003784@lorvorc.mips.inka.de> Date: Sat, 4 Jan 2014 19:52:40 +0100 (CET) From: Christian Weisgerber To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/185471: bsd.port.mk: MLINKS "-" shortcut broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Christian Weisgerber List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 19:30:01 -0000 >Number: 185471 >Category: ports >Synopsis: bsd.port.mk: MLINKS "-" shortcut broken >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: Sat Jan 04 19:30:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Christian Weisgerber >Release: FreeBSD 10.0-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD lorvorc.mips.inka.de 10.0-PRERELEASE FreeBSD 10.0-PRERELEASE #0 r260257: Sat Jan 4 14:54:46 CET 2014 naddy@lorvorc.mips.inka.de:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The "-" shortcut in MLINKS doesn't work any longer. This could be used as a ditto mark if you had a number of tuples where was always the same. Now a symlink to a literal file "-" is created. See ports/devel/libevent for an example port that uses this. Since the code to handle "-" is still there in the __pmlinks assignment, I assume this is a bug rather than an intentional change. >How-To-Repeat: Install ports/devel/libevent. $ ls -l /usr/local/man/man3/event_dispatch.3* lrwxr-xr-x 1 root wheel 11 Dec 28 20:59 /usr/local/man/man3/event_dispatch.3.gz -> ../man/-.gz >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 19:30:08 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 962859B2; Sat, 4 Jan 2014 19:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6BA5A1A3D; Sat, 4 Jan 2014 19:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04JU8DT052637; Sat, 4 Jan 2014 19:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04JU8Kt052636; Sat, 4 Jan 2014 19:30:08 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 19:30:08 GMT Message-Id: <201401041930.s04JU8Kt052636@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, portmgr@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185471: bsd.port.mk: MLINKS "-" shortcut broken X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 19:30:08 -0000 Synopsis: bsd.port.mk: MLINKS "-" shortcut broken Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 19:30:08 UTC 2014 Responsible-Changed-Why: bsd.port.mk is portmgr territory (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185471 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 19:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A65A8B1E for ; Sat, 4 Jan 2014 19:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7F9771AD3 for ; Sat, 4 Jan 2014 19:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04Je0ID054527 for ; Sat, 4 Jan 2014 19:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04Je0Hb054526; Sat, 4 Jan 2014 19:40:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 19:40:00 GMT Resent-Message-Id: <201401041940.s04Je0Hb054526@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, Carlos Jacobo Puga Medina Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A57EFA85 for ; Sat, 4 Jan 2014 19:31:50 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8FA4A1AAB for ; Sat, 4 Jan 2014 19:31:50 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s04JVoZ7056225 for ; Sat, 4 Jan 2014 19:31:50 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s04JVoVJ056218; Sat, 4 Jan 2014 19:31:50 GMT (envelope-from nobody) Message-Id: <201401041931.s04JVoVJ056218@oldred.freebsd.org> Date: Sat, 4 Jan 2014 19:31:50 GMT From: Carlos Jacobo Puga Medina To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185472: dns/unbound fails to install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 19:40:00 -0000 >Number: 185472 >Category: ports >Synopsis: dns/unbound fails to install >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 Jan 04 19:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Carlos Jacobo Puga Medina >Release: FreeBSD 9.2-RELEASE >Organization: >Environment: FreeBSD freebsd 9.2-RELEASE-p2 FreeBSD 9.2-RELEASE-p2 #4: Fri Dec 20 14:50:06 CET 2013 charly@freebsd:/usr/obj/usr/src/sys/GENERIC i386 >Description: Trying to install dns/unbound fails miserably with this error: # portmaster dns/unbound portmaster: dns/unbound ===>>> Port directory: /usr/ports/dns/unbound ===>>> Gathering distinfo list for installed ports ===>>> Launching 'make checksum' for dns/unbound in background ===>>> Gathering dependency list for dns/unbound from ports ===>>> Initial dependency check complete for dns/unbound ===>>> Starting build for dns/unbound <<<=== ===>>> All dependencies are up to date ===> Cleaning for unbound-1.4.21_1 ===> License BSD accepted by the user ===> Found saved configuration for unbound-1.4.21_1 ===> Fetching all distfiles required by unbound-1.4.21_1 for building ===> Extracting for unbound-1.4.21_1 => SHA256 Checksum OK for unbound-1.4.21.tar.gz. ===> Patching for unbound-1.4.21_1 ===> Applying FreeBSD patches for unbound-1.4.21_1 ===> unbound-1.4.21_1 depends on file: /usr/local/lib/libcrypto.so.8 - found ===> unbound-1.4.21_1 depends on executable: pkgconf - found ===> unbound-1.4.21_1 depends on executable: gmake - found ===> unbound-1.4.21_1 depends on shared library: expat - found ===> unbound-1.4.21_1 depends on shared library: ldns - found ===> unbound-1.4.21_1 depends on shared library: event-2 - found ===> Configuring for unbound-1.4.21_1 configure: loading site script /usr/ports/Templates/config.site checking build system type... i386-portbld-freebsd9.2 checking host system type... i386-portbld-freebsd9.2 checking target system type... i386-portbld-freebsd9.2 checking for gcc... cc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking how to run the C preprocessor... cpp checking for grep that handles long lines and -e... (cached) /usr/bin/grep checking for egrep... (cached) /usr/bin/egrep checking for ANSI C header files... (cached) yes checking for sys/types.h... (cached) yes checking for sys/stat.h... (cached) yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for memory.h... (cached) yes checking for strings.h... (cached) yes checking for inttypes.h... (cached) yes checking for stdint.h... (cached) yes checking for unistd.h... (cached) yes checking for minix/config.h... (cached) no checking whether it is safe to define __EXTENSIONS__... yes checking for an ANSI C-conforming const... yes checking for gcc... (cached) cc checking whether we are using the GNU C compiler... (cached) yes checking whether cc accepts -g... (cached) yes checking for cc option to accept ISO C89... (cached) none needed checking cc dependency flag... -MM checking whether cc supports -Werror... yes checking whether cc supports -Wall... yes checking whether cc supports -std=c99... yes checking whether cc supports -xc99... no checking for getopt.h... (cached) yes checking for time.h... (cached) yes checking whether we need -std=c99 -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_XOPEN_SOURCE_EXTENDED=1 -D_ALL_SOURCE as a flag for cc... failed checking whether we need -std=c99 -D__EXTENSIONS__ -D_BSD_SOURCE -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 -D_ALL_SOURCE as a flag for cc... failed checking whether we need -std=c99 as a flag for cc... no checking whether we need -D_BSD_SOURCE as a flag for cc... no checking whether we need -D_GNU_SOURCE as a flag for cc... no checking whether we need -D_GNU_SOURCE -D_FRSRESGID as a flag for cc... no checking whether we need -D_POSIX_C_SOURCE=200112 as a flag for cc... no checking whether we need -D__EXTENSIONS__ as a flag for cc... no checking if cc supports -flto... no checking for inline... inline checking whether the C compiler (cc) accepts the "format" attribute... yes checking whether the C compiler (cc) accepts the "unused" attribute... yes checking for flex... flex checking lex output file root... lex.yy checking lex library... -lfl checking whether yytext is a pointer... yes checking for yylex_destroy... no checking for bison... bison -y checking for doxygen... doxygen checking for strip... strip checking for ar... /usr/bin/ar checking how to print strings... printf checking for a sed that does not truncate output... (cached) /usr/bin/sed checking for fgrep... (cached) /usr/bin/fgrep checking for ld used by cc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+="... no checking how to convert i386-portbld-freebsd9.2 file names to i386-portbld-freebsd9.2 format... func_convert_file_noop checking how to convert i386-portbld-freebsd9.2 file names to toolchain format... func_convert_file_noop checking for /usr/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for archiver @FILE support... no checking for strip... (cached) strip checking for ranlib... ranlib checking for gawk... (cached) /usr/bin/awk checking command to parse /usr/bin/nm -B output from cc object... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking for dlfcn.h... (cached) yes checking for objdir... .libs checking if cc supports -fno-rtti -fno-exceptions... no checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.o... (cached) yes checking whether the cc linker (/usr/bin/ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.2 ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking for stdarg.h... (cached) yes checking for stdbool.h... (cached) yes checking for netinet/in.h... (cached) yes checking for sys/param.h... (cached) yes checking for sys/socket.h... (cached) yes checking for sys/uio.h... yes checking for sys/resource.h... yes checking for arpa/inet.h... (cached) yes checking for syslog.h... yes checking for netdb.h... (cached) yes checking for sys/wait.h... (cached) yes checking for pwd.h... (cached) yes checking for glob.h... (cached) yes checking for grp.h... yes checking for login_cap.h... (cached) yes checking for winsock2.h... no checking for ws2tcpip.h... no checking for int8_t... yes checking for int16_t... (cached) yes checking for int32_t... (cached) yes checking for int64_t... yes checking for uint8_t... yes checking for uint16_t... yes checking for uint32_t... yes checking for uint64_t... yes checking for size_t... (cached) yes checking for ssize_t... (cached) yes checking for uid_t in sys/types.h... (cached) yes checking for pid_t... (cached) yes checking for off_t... (cached) yes checking for u_char... (cached) yes checking for rlim_t... yes checking for socklen_t... (cached) yes checking for in_addr_t... (cached) yes checking for in_port_t... (cached) yes checking if memcmp compares unsigned... yes checking for library containing inet_pton... none required checking for library containing socket... none required checking for unistd.h... (cached) yes checking for working chown... yes checking for vfork.h... (cached) no checking for fork... (cached) yes checking for vfork... (cached) yes checking for working fork... yes checking for working vfork... (cached) yes checking return type of signal handlers... void checking for _LARGEFILE_SOURCE value needed for large files... no checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking whether we need -D_LARGEFILE_SOURCE=1 as a flag for cc... no checking if nonblocking sockets work... yes checking whether mkdir has one arg... no checking for strptime... (cached) yes checking whether strptime works... yes checking for GNU libc compatible malloc... yes checking for the pthreads library -lpthreads... no checking whether pthreads work without any flags... no checking whether pthreads work with -Kthread... no checking whether pthreads work with -kthread... no checking for the pthreads library -llthread... no checking whether pthreads work with -pthread... yes checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE checking if more special flags are required for pthreads... -D_THREAD_SAFE checking for PTHREAD_PRIO_INHERIT... yes checking for pthread_spinlock_t... yes checking for pthread_rwlock_t... yes checking for SSL... found in /usr/local checking for HMAC_CTX_init in -lcrypto... yes checking for library containing dlopen... none required checking for openssl/ssl.h... yes checking for openssl/err.h... yes checking for openssl/rand.h... yes checking if libssl needs libdl... no checking for openssl/conf.h... yes checking for openssl/engine.h... yes checking for OPENSSL_config... yes checking for EVP_sha1... yes checking for EVP_sha256... yes checking for EVP_sha512... yes checking for FIPS_mode... yes checking whether SSL_COMP_get_compression_methods is declared... yes checking whether sk_SSL_COMP_pop_free is declared... yes checking for ECDSA_sign... yes checking for SHA384_Init... yes checking whether NID_X9_62_prime256v1 is declared... yes checking whether NID_secp384r1 is declared... yes checking if openssl supports SHA2 and ECDSA with EVP... yes checking for libevent... found in /nonexistent checking for library containing clock_gettime... none required checking for event.h... yes checking whether EV_VERSION_MAJOR is declared... no checking for library containing event_set... -levent checking for event_base_free... yes checking for event_base_once... yes checking for event_base_new... yes checking for event_base_get_method... yes checking for ev_loop... no checking for ev_default_loop... no checking for libexpat... found in /usr/local checking for expat.h... yes checking for getaddrinfo... yes checking for ioctlsocket... no checking for daemon... (cached) yes checking if daemon is deprecated... no checking for struct in_pktinfo.ipi_spec_dst... no checking for library containing setusercontext... -lutil checking for tzset... yes checking for sigprocmask... (cached) yes checking for fcntl... (cached) yes checking for getpwnam... yes checking for getrlimit... (cached) yes checking for setrlimit... (cached) yes checking for setsid... (cached) yes checking for sbrk... yes checking for chroot... yes checking for kill... yes checking for sleep... (cached) yes checking for usleep... (cached) yes checking for random... (cached) yes checking for srandom... (cached) yes checking for recvmsg... (cached) yes checking for sendmsg... (cached) yes checking for writev... yes checking for socketpair... (cached) yes checking for glob... (cached) yes checking for initgroups... yes checking for strftime... (cached) yes checking for localtime_r... yes checking for setusercontext... yes checking for _beginthreadex... no checking for setresuid... (cached) yes checking for setresgid... (cached) yes checking for inet_aton... (cached) yes checking for inet_pton... yes checking for inet_ntop... (cached) yes checking for snprintf... (cached) yes checking for strlcpy... (cached) yes checking for memmove... (cached) yes checking for gmtime_r... yes checking for ctime_r... yes checking if gmake supports $< with implicit rule in scope... yes checking for ldns_rr_new in -lldns... yes checking for ldns_buffer_copy... yes checking for ldns_key_buf2rsa_raw... yes checking for ldns_get_random... yes checking for ldns_b32_ntop_extended_hex... yes checking whether LDNS_ECDSAP384SHA384 is declared... yes checking for ldns/ldns.h... yes configure: Stripping extension flags... configure: creating ./config.status config.status: creating Makefile config.status: creating doc/example.conf config.status: creating doc/libunbound.3 config.status: creating doc/unbound.8 config.status: creating doc/unbound-anchor.8 config.status: creating doc/unbound-checkconf.8 config.status: creating doc/unbound.conf.5 config.status: creating doc/unbound-control.8 config.status: creating config.h config.status: executing libtool commands ===> Building for unbound-1.4.21_1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o dns.lo -c services/cache/dns.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/cache/dns.c -fPIC -DPIC -o .libs/dns.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/cache/dns.c -o dns.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o infra.lo -c services/cache/infra.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/cache/infra.c -fPIC -DPIC -o .libs/infra.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/cache/infra.c -o infra.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o rrset.lo -c services/cache/rrset.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/cache/rrset.c -fPIC -DPIC -o .libs/rrset.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/cache/rrset.c -o rrset.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o dname.lo -c util/data/dname.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/data/dname.c -fPIC -DPIC -o .libs/dname.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/data/dname.c -o dname.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o msgencode.lo -c util/data/msgencode.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/data/msgencode.c -fPIC -DPIC -o .libs/msgencode.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/data/msgencode.c -o msgencode.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o msgparse.lo -c util/data/msgparse.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/data/msgparse.c -fPIC -DPIC -o .libs/msgparse.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/data/msgparse.c -o msgparse.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o msgreply.lo -c util/data/msgreply.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/data/msgreply.c -fPIC -DPIC -o .libs/msgreply.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/data/msgreply.c -o msgreply.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o packed_rrset.lo -c util/data/packed_rrset.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/data/packed_rrset.c -fPIC -DPIC -o .libs/packed_rrset.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/data/packed_rrset.c -o packed_rrset.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o iterator.lo -c iterator/iterator.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iterator.c -fPIC -DPIC -o .libs/iterator.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iterator.c -o iterator.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o iter_delegpt.lo -c iterator/iter_delegpt.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_delegpt.c -fPIC -DPIC -o .libs/iter_delegpt.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_delegpt.c -o iter_delegpt.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o iter_donotq.lo -c iterator/iter_donotq.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_donotq.c -fPIC -DPIC -o .libs/iter_donotq.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_donotq.c -o iter_donotq.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o iter_fwd.lo -c iterator/iter_fwd.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_fwd.c -fPIC -DPIC -o .libs/iter_fwd.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_fwd.c -o iter_fwd.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o iter_hints.lo -c iterator/iter_hints.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_hints.c -fPIC -DPIC -o .libs/iter_hints.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_hints.c -o iter_hints.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o iter_priv.lo -c iterator/iter_priv.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_priv.c -fPIC -DPIC -o .libs/iter_priv.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_priv.c -o iter_priv.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o iter_resptype.lo -c iterator/iter_resptype.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_resptype.c -fPIC -DPIC -o .libs/iter_resptype.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_resptype.c -o iter_resptype.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o iter_scrub.lo -c iterator/iter_scrub.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_scrub.c -fPIC -DPIC -o .libs/iter_scrub.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_scrub.c -o iter_scrub.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o iter_utils.lo -c iterator/iter_utils.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_utils.c -fPIC -DPIC -o .libs/iter_utils.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c iterator/iter_utils.c -o iter_utils.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o localzone.lo -c services/localzone.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/localzone.c -fPIC -DPIC -o .libs/localzone.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/localzone.c -o localzone.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o mesh.lo -c services/mesh.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/mesh.c -fPIC -DPIC -o .libs/mesh.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/mesh.c -o mesh.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o modstack.lo -c services/modstack.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/modstack.c -fPIC -DPIC -o .libs/modstack.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/modstack.c -o modstack.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o outbound_list.lo -c services/outbound_list.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/outbound_list.c -fPIC -DPIC -o .libs/outbound_list.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/outbound_list.c -o outbound_list.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o alloc.lo -c util/alloc.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/alloc.c -fPIC -DPIC -o .libs/alloc.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/alloc.c -o alloc.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o config_file.lo -c util/config_file.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/config_file.c -fPIC -DPIC -o .libs/config_file.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/config_file.c -o config_file.o >/dev/null 2>&1 if test "flex" != ":"; then \ echo "#include \"config.h\"" > util/configlexer.c ;\ echo "#include \"util/configyyrename.h\"" >> util/configlexer.c ;\ flex -t ./util/configlexer.lex >> util/configlexer.c ;\ fi ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o configlexer.lo -c util/configlexer.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/configlexer.c -fPIC -DPIC -o .libs/configlexer.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/configlexer.c -o configlexer.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o configparser.lo -c util/configparser.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/configparser.c -fPIC -DPIC -o .libs/configparser.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/configparser.c -o configparser.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o fptr_wlist.lo -c util/fptr_wlist.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/fptr_wlist.c -fPIC -DPIC -o .libs/fptr_wlist.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/fptr_wlist.c -o fptr_wlist.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o locks.lo -c util/locks.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/locks.c -fPIC -DPIC -o .libs/locks.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/locks.c -o locks.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o log.lo -c util/log.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/log.c -fPIC -DPIC -o .libs/log.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/log.c -o log.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o mini_event.lo -c util/mini_event.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/mini_event.c -fPIC -DPIC -o .libs/mini_event.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/mini_event.c -o mini_event.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o module.lo -c util/module.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/module.c -fPIC -DPIC -o .libs/module.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/module.c -o module.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o net_help.lo -c util/net_help.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/net_help.c -fPIC -DPIC -o .libs/net_help.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/net_help.c -o net_help.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o random.lo -c util/random.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/random.c -fPIC -DPIC -o .libs/random.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/random.c -o random.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o rbtree.lo -c util/rbtree.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/rbtree.c -fPIC -DPIC -o .libs/rbtree.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/rbtree.c -o rbtree.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o regional.lo -c util/regional.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/regional.c -fPIC -DPIC -o .libs/regional.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/regional.c -o regional.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o rtt.lo -c util/rtt.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/rtt.c -fPIC -DPIC -o .libs/rtt.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/rtt.c -o rtt.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o dnstree.lo -c util/storage/dnstree.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/storage/dnstree.c -fPIC -DPIC -o .libs/dnstree.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/storage/dnstree.c -o dnstree.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o lookup3.lo -c util/storage/lookup3.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/storage/lookup3.c -fPIC -DPIC -o .libs/lookup3.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/storage/lookup3.c -o lookup3.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o lruhash.lo -c util/storage/lruhash.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/storage/lruhash.c -fPIC -DPIC -o .libs/lruhash.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/storage/lruhash.c -o lruhash.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o slabhash.lo -c util/storage/slabhash.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/storage/slabhash.c -fPIC -DPIC -o .libs/slabhash.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/storage/slabhash.c -o slabhash.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o timehist.lo -c util/timehist.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/timehist.c -fPIC -DPIC -o .libs/timehist.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/timehist.c -o timehist.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o tube.lo -c util/tube.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/tube.c -fPIC -DPIC -o .libs/tube.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/tube.c -o tube.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o winsock_event.lo -c util/winsock_event.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/winsock_event.c -fPIC -DPIC -o .libs/winsock_event.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/winsock_event.c -o winsock_event.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o autotrust.lo -c validator/autotrust.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/autotrust.c -fPIC -DPIC -o .libs/autotrust.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/autotrust.c -o autotrust.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o val_anchor.lo -c validator/val_anchor.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_anchor.c -fPIC -DPIC -o .libs/val_anchor.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_anchor.c -o val_anchor.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o validator.lo -c validator/validator.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/validator.c -fPIC -DPIC -o .libs/validator.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/validator.c -o validator.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o val_kcache.lo -c validator/val_kcache.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_kcache.c -fPIC -DPIC -o .libs/val_kcache.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_kcache.c -o val_kcache.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o val_kentry.lo -c validator/val_kentry.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_kentry.c -fPIC -DPIC -o .libs/val_kentry.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_kentry.c -o val_kentry.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o val_neg.lo -c validator/val_neg.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_neg.c -fPIC -DPIC -o .libs/val_neg.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_neg.c -o val_neg.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o val_nsec3.lo -c validator/val_nsec3.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_nsec3.c -fPIC -DPIC -o .libs/val_nsec3.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_nsec3.c -o val_nsec3.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o val_nsec.lo -c validator/val_nsec.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_nsec.c -fPIC -DPIC -o .libs/val_nsec.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_nsec.c -o val_nsec.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o val_secalgo.lo -c validator/val_secalgo.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_secalgo.c -fPIC -DPIC -o .libs/val_secalgo.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_secalgo.c -o val_secalgo.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o val_sigcrypt.lo -c validator/val_sigcrypt.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_sigcrypt.c -fPIC -DPIC -o .libs/val_sigcrypt.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_sigcrypt.c -o val_sigcrypt.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o val_utils.lo -c validator/val_utils.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_utils.c -fPIC -DPIC -o .libs/val_utils.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c validator/val_utils.c -o val_utils.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o netevent.lo -c util/netevent.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/netevent.c -fPIC -DPIC -o .libs/netevent.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c util/netevent.c -o netevent.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o listen_dnsport.lo -c services/listen_dnsport.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/listen_dnsport.c -fPIC -DPIC -o .libs/listen_dnsport.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/listen_dnsport.c -o listen_dnsport.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o outside_network.lo -c services/outside_network.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/outside_network.c -fPIC -DPIC -o .libs/outside_network.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c services/outside_network.c -o outside_network.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o acl_list.lo -c daemon/acl_list.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/acl_list.c -fPIC -DPIC -o .libs/acl_list.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/acl_list.c -o acl_list.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o cachedump.lo -c daemon/cachedump.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/cachedump.c -fPIC -DPIC -o .libs/cachedump.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/cachedump.c -o cachedump.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o daemon.lo -c daemon/daemon.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/daemon.c -fPIC -DPIC -o .libs/daemon.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/daemon.c -o daemon.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o remote.lo -c daemon/remote.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/remote.c -fPIC -DPIC -o .libs/remote.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/remote.c -o remote.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o stats.lo -c daemon/stats.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/stats.c -fPIC -DPIC -o .libs/stats.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/stats.c -o stats.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o unbound.lo -c daemon/unbound.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/unbound.c -fPIC -DPIC -o .libs/unbound.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/unbound.c -o unbound.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o worker.lo -c daemon/worker.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/worker.c -fPIC -DPIC -o .libs/worker.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c daemon/worker.c -o worker.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o context.lo -c libunbound/context.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c libunbound/context.c -fPIC -DPIC -o .libs/context.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c libunbound/context.c -o context.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o libunbound.lo -c libunbound/libunbound.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c libunbound/libunbound.c -fPIC -DPIC -o .libs/libunbound.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c libunbound/libunbound.c -o libunbound.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o libworker.lo -c libunbound/libworker.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c libunbound/libworker.c -fPIC -DPIC -o .libs/libworker.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c libunbound/libworker.c -o libworker.o >/dev/null 2>&1 ./libtool --tag=CC --mode=link cc -R/usr/local/lib -R/nonexistent/lib -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -L/usr/local/lib/event2 -Wl,-rpath=/usr/local/lib -L/usr/local/lib -L/nonexistent/lib -L/usr/local/lib -version-info 4:1:2 -no-undefined -export-symbols ./libunbound/ubsyms.def -o libunbound.la context.lo libunbound.lo libworker.lo dns.lo infra.lo rrset.lo dname.lo msgencode.lo msgparse.lo msgreply.lo packed_rrset.lo iterator.lo iter_delegpt.lo iter_donotq.lo iter_fwd.lo iter_hints.lo iter_priv.lo iter_resptype.lo iter_scrub.lo iter_utils.lo localzone.lo mesh.lo modstack.lo outbound_list.lo alloc.lo config_file.lo configlexer.lo configparser.lo fptr_wlist.lo locks.lo log.lo mini_event.lo module.lo net_help.lo random.lo rbtree.lo regional.lo rtt.lo dnstree.lo lookup3.lo lruhash.lo slabhash.lo timehist.lo tube.lo winsock_event.lo autotrust.lo val_anchor.lo v alidator.lo val_kcache.lo val_kentry.lo val_neg.lo val_nsec3.lo val_nsec.lo val_secalgo.lo val_sigcrypt.lo val_utils.lo netevent.lo listen_dnsport.lo outside_network.lo -rpath /usr/local/lib -lssl -lldns -lutil -levent -lcrypto libtool: link: cc -shared -fPIC -DPIC .libs/context.o .libs/libunbound.o .libs/libworker.o .libs/dns.o .libs/infra.o .libs/rrset.o .libs/dname.o .libs/msgencode.o .libs/msgparse.o .libs/msgreply.o .libs/packed_rrset.o .libs/iterator.o .libs/iter_delegpt.o .libs/iter_donotq.o .libs/iter_fwd.o .libs/iter_hints.o .libs/iter_priv.o .libs/iter_resptype.o .libs/iter_scrub.o .libs/iter_utils.o .libs/localzone.o .libs/mesh.o .libs/modstack.o .libs/outbound_list.o .libs/alloc.o .libs/config_file.o .libs/configlexer.o .libs/configparser.o .libs/fptr_wlist.o .libs/locks.o .libs/log.o .libs/mini_event.o .libs/module.o .libs/net_help.o .libs/random.o .libs/rbtree.o .libs/regional.o .libs/rtt.o .libs/dnstree.o .libs/lookup3.o .libs/lruhash.o .libs/slabhash.o .libs/timehist.o .libs/tube.o .libs/winsock_event.o .libs/autotrust.o .libs/val_anchor.o .libs/validator.o .libs/val_kcache.o .libs/val_kentry.o .libs/val_neg.o .libs/val_nsec3.o .libs/val_nsec.o .libs/val_secalgo.o .libs/val_sigcrypt.o .lib s/val_utils.o .libs/netevent.o .libs/listen_dnsport.o .libs/outside_network.o -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib/event2 -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib/event2 -Wl,-rpath -Wl,/nonexistent/lib -L/usr/local/lib/event2 -L/usr/local/lib -L/nonexistent/lib -lssl /usr/local/lib/libldns.so -lutil /usr/local/lib/event2/libevent.so -L/usr/lib -lcrypto -O2 -pthread -Wl,-rpath=/usr/local/lib -pthread -Wl,-soname -Wl,libunbound.so.4 -Wl,-retain-symbols-file -Wl,./libunbound/ubsyms.def -o .libs/libunbound.so.4 libtool: link: (cd ".libs" && rm -f "libunbound.so" && ln -s "libunbound.so.4" "libunbound.so") libtool: link: (cd ".libs" && rm -f "libunbound.so" && ln -s "libunbound.so.4" "libunbound.so") libtool: link: /usr/bin/ar cru .libs/libunbound.a context.o libunbound.o libworker.o dns.o infra.o rrset.o dname.o msgencode.o msgparse.o msgreply.o packed_rrset.o iterator.o iter_delegpt.o iter_donotq.o iter_fwd.o iter_hints.o iter_priv.o iter_resptype.o iter_scrub.o iter_utils.o localzone.o mesh.o modstack.o outbound_list.o alloc.o config_file.o configlexer.o configparser.o fptr_wlist.o locks.o log.o mini_event.o module.o net_help.o random.o rbtree.o regional.o rtt.o dnstree.o lookup3.o lruhash.o slabhash.o timehist.o tube.o winsock_event.o autotrust.o val_anchor.o validator.o val_kcache.o val_kentry.o val_neg.o val_nsec3.o val_nsec.o val_secalgo.o val_sigcrypt.o val_utils.o netevent.o listen_dnsport.o outside_network.o libtool: link: ranlib .libs/libunbound.a libtool: link: ( cd ".libs" && rm -f "libunbound.la" && ln -s "../libunbound.la" "libunbound.la" ) ./libtool --tag=CC --mode=link cc -R/usr/local/lib -R/nonexistent/lib -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -L/usr/local/lib/event2 -Wl,-rpath=/usr/local/lib -L/usr/local/lib -L/nonexistent/lib -L/usr/local/lib -o unbound acl_list.lo cachedump.lo daemon.lo remote.lo stats.lo unbound.lo worker.lo dns.lo infra.lo rrset.lo dname.lo msgencode.lo msgparse.lo msgreply.lo packed_rrset.lo iterator.lo iter_delegpt.lo iter_donotq.lo iter_fwd.lo iter_hints.lo iter_priv.lo iter_resptype.lo iter_scrub.lo iter_utils.lo localzone.lo mesh.lo modstack.lo outbound_list.lo alloc.lo config_file.lo configlexer.lo configparser.lo fptr_wlist.lo locks.lo log.lo mini_event.lo module.lo net_help.lo random.lo rbtree.lo regional.lo rtt.lo dnstree.lo lookup3.lo lruhash.lo slabhash.lo timehist.lo tube.lo winsock_event.lo autotrust.lo val_anchor.lo validator.lo val_kcache.lo val_kentry.lo va l_neg.lo val_nsec3.lo val_nsec.lo val_secalgo.lo val_sigcrypt.lo val_utils.lo netevent.lo listen_dnsport.lo outside_network.lo -lssl -lldns -lutil -levent -lcrypto libtool: link: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -Wl,-rpath=/usr/local/lib -o unbound .libs/acl_list.o .libs/cachedump.o .libs/daemon.o .libs/remote.o .libs/stats.o .libs/unbound.o .libs/worker.o .libs/dns.o .libs/infra.o .libs/rrset.o .libs/dname.o .libs/msgencode.o .libs/msgparse.o .libs/msgreply.o .libs/packed_rrset.o .libs/iterator.o .libs/iter_delegpt.o .libs/iter_donotq.o .libs/iter_fwd.o .libs/iter_hints.o .libs/iter_priv.o .libs/iter_resptype.o .libs/iter_scrub.o .libs/iter_utils.o .libs/localzone.o .libs/mesh.o .libs/modstack.o .libs/outbound_list.o .libs/alloc.o .libs/config_file.o .libs/configlexer.o .libs/configparser.o .libs/fptr_wlist.o .libs/locks.o .libs/log.o .libs/mini_event.o .libs/module.o .libs/net_help.o .libs/random.o .libs/rbtree.o .libs/regional.o .libs/rtt.o .libs/dnstree.o .libs/lookup3.o .libs/lruhash.o .libs/slabhash.o .libs/timehi st.o .libs/tube.o .libs/winsock_event.o .libs/autotrust.o .libs/val_anchor.o .libs/validator.o .libs/val_kcache.o .libs/val_kentry.o .libs/val_neg.o .libs/val_nsec3.o .libs/val_nsec.o .libs/val_secalgo.o .libs/val_sigcrypt.o .libs/val_utils.o .libs/netevent.o .libs/listen_dnsport.o .libs/outside_network.o -L/usr/local/lib/event2 -L/usr/local/lib -L/nonexistent/lib -lssl /usr/local/lib/libldns.so -lutil /usr/local/lib/event2/libevent.so -L/usr/lib -lcrypto -pthread -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib/event2 -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib/event2 -Wl,-rpath -Wl,/nonexistent/lib ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o unbound-checkconf.lo -c smallapp/unbound-checkconf.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c smallapp/unbound-checkconf.c -fPIC -DPIC -o .libs/unbound-checkconf.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c smallapp/unbound-checkconf.c -o unbound-checkconf.o >/dev/null 2>&1 ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o worker_cb.lo -c smallapp/worker_cb.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c smallapp/worker_cb.c -fPIC -DPIC -o .libs/worker_cb.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c smallapp/worker_cb.c -o worker_cb.o >/dev/null 2>&1 ./libtool --tag=CC --mode=link cc -R/usr/local/lib -R/nonexistent/lib -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -L/usr/local/lib/event2 -Wl,-rpath=/usr/local/lib -L/usr/local/lib -L/nonexistent/lib -L/usr/local/lib -o unbound-checkconf unbound-checkconf.lo worker_cb.lo dns.lo infra.lo rrset.lo dname.lo msgencode.lo msgparse.lo msgreply.lo packed_rrset.lo iterator.lo iter_delegpt.lo iter_donotq.lo iter_fwd.lo iter_hints.lo iter_priv.lo iter_resptype.lo iter_scrub.lo iter_utils.lo localzone.lo mesh.lo modstack.lo outbound_list.lo alloc.lo config_file.lo configlexer.lo configparser.lo fptr_wlist.lo locks.lo log.lo mini_event.lo module.lo net_help.lo random.lo rbtree.lo regional.lo rtt.lo dnstree.lo lookup3.lo lruhash.lo slabhash.lo timehist.lo tube.lo winsock_event.lo autotrust.lo val_anchor.lo validator.lo val_kcache.lo val_kentry.lo val_neg.lo val_nsec3.lo val_nsec.l o val_secalgo.lo val_sigcrypt.lo val_utils.lo netevent.lo listen_dnsport.lo outside_network.lo -lssl -lldns -lutil -levent -lcrypto libtool: link: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -Wl,-rpath=/usr/local/lib -o unbound-checkconf .libs/unbound-checkconf.o .libs/worker_cb.o .libs/dns.o .libs/infra.o .libs/rrset.o .libs/dname.o .libs/msgencode.o .libs/msgparse.o .libs/msgreply.o .libs/packed_rrset.o .libs/iterator.o .libs/iter_delegpt.o .libs/iter_donotq.o .libs/iter_fwd.o .libs/iter_hints.o .libs/iter_priv.o .libs/iter_resptype.o .libs/iter_scrub.o .libs/iter_utils.o .libs/localzone.o .libs/mesh.o .libs/modstack.o .libs/outbound_list.o .libs/alloc.o .libs/config_file.o .libs/configlexer.o .libs/configparser.o .libs/fptr_wlist.o .libs/locks.o .libs/log.o .libs/mini_event.o .libs/module.o .libs/net_help.o .libs/random.o .libs/rbtree.o .libs/regional.o .libs/rtt.o .libs/dnstree.o .libs/lookup3.o .libs/lruhash.o .libs/slabhash.o .libs/timehist.o .libs/tube.o .libs/winsock_event.o .libs/autotrust. o .libs/val_anchor.o .libs/validator.o .libs/val_kcache.o .libs/val_kentry.o .libs/val_neg.o .libs/val_nsec3.o .libs/val_nsec.o .libs/val_secalgo.o .libs/val_sigcrypt.o .libs/val_utils.o .libs/netevent.o .libs/listen_dnsport.o .libs/outside_network.o -L/usr/local/lib/event2 -L/usr/local/lib -L/nonexistent/lib -lssl /usr/local/lib/libldns.so -lutil /usr/local/lib/event2/libevent.so -L/usr/lib -lcrypto -pthread -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib/event2 -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib/event2 -Wl,-rpath -Wl,/nonexistent/lib sed -e 's/@''UNBOUND_VERSION_MAJOR@/1/' -e 's/@''UNBOUND_VERSION_MINOR@/4/' -e 's/@''UNBOUND_VERSION_MICRO@/21/' < ./libunbound/unbound.h > unbound.h ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o unbound-host.lo -c smallapp/unbound-host.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c smallapp/unbound-host.c -fPIC -DPIC -o .libs/unbound-host.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c smallapp/unbound-host.c -o unbound-host.o >/dev/null 2>&1 ./libtool --tag=CC --mode=link cc -R/usr/local/lib -R/nonexistent/lib -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -L/usr/local/lib/event2 -Wl,-rpath=/usr/local/lib -L/usr/local/lib -L/nonexistent/lib -L/usr/local/lib -o unbound-host unbound-host.lo -L. -L.libs -lunbound -lldns -lutil -levent -lcrypto libtool: link: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -Wl,-rpath=/usr/local/lib -o .libs/unbound-host .libs/unbound-host.o -L/usr/local/lib/event2 -L/usr/local/lib -L/nonexistent/lib -L. -L.libs /usr/ports/dns/unbound/work/unbound-1.4.21/.libs/libunbound.so -L/usr/lib -lssl /usr/local/lib/libldns.so -lutil /usr/local/lib/event2/libevent.so -lcrypto -pthread -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib/event2 -Wl,-rpath -Wl,/nonexistent/lib ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o unbound-control.lo -c smallapp/unbound-control.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c smallapp/unbound-control.c -fPIC -DPIC -o .libs/unbound-control.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c smallapp/unbound-control.c -o unbound-control.o >/dev/null 2>&1 ./libtool --tag=CC --mode=link cc -R/usr/local/lib -R/nonexistent/lib -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -L/usr/local/lib/event2 -Wl,-rpath=/usr/local/lib -L/usr/local/lib -L/nonexistent/lib -L/usr/local/lib -o unbound-control unbound-control.lo worker_cb.lo dns.lo infra.lo rrset.lo dname.lo msgencode.lo msgparse.lo msgreply.lo packed_rrset.lo iterator.lo iter_delegpt.lo iter_donotq.lo iter_fwd.lo iter_hints.lo iter_priv.lo iter_resptype.lo iter_scrub.lo iter_utils.lo localzone.lo mesh.lo modstack.lo outbound_list.lo alloc.lo config_file.lo configlexer.lo configparser.lo fptr_wlist.lo locks.lo log.lo mini_event.lo module.lo net_help.lo random.lo rbtree.lo regional.lo rtt.lo dnstree.lo lookup3.lo lruhash.lo slabhash.lo timehist.lo tube.lo winsock_event.lo autotrust.lo val_anchor.lo validator.lo val_kcache.lo val_kentry.lo val_neg.lo val_nsec3.lo val_nsec.lo v al_secalgo.lo val_sigcrypt.lo val_utils.lo netevent.lo listen_dnsport.lo outside_network.lo -lssl -lldns -lutil -levent -lcrypto libtool: link: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -Wl,-rpath=/usr/local/lib -o unbound-control .libs/unbound-control.o .libs/worker_cb.o .libs/dns.o .libs/infra.o .libs/rrset.o .libs/dname.o .libs/msgencode.o .libs/msgparse.o .libs/msgreply.o .libs/packed_rrset.o .libs/iterator.o .libs/iter_delegpt.o .libs/iter_donotq.o .libs/iter_fwd.o .libs/iter_hints.o .libs/iter_priv.o .libs/iter_resptype.o .libs/iter_scrub.o .libs/iter_utils.o .libs/localzone.o .libs/mesh.o .libs/modstack.o .libs/outbound_list.o .libs/alloc.o .libs/config_file.o .libs/configlexer.o .libs/configparser.o .libs/fptr_wlist.o .libs/locks.o .libs/log.o .libs/mini_event.o .libs/module.o .libs/net_help.o .libs/random.o .libs/rbtree.o .libs/regional.o .libs/rtt.o .libs/dnstree.o .libs/lookup3.o .libs/lruhash.o .libs/slabhash.o .libs/timehist.o .libs/tube.o .libs/winsock_event.o .libs/autotrust.o .l ibs/val_anchor.o .libs/validator.o .libs/val_kcache.o .libs/val_kentry.o .libs/val_neg.o .libs/val_nsec3.o .libs/val_nsec.o .libs/val_secalgo.o .libs/val_sigcrypt.o .libs/val_utils.o .libs/netevent.o .libs/listen_dnsport.o .libs/outside_network.o -L/usr/local/lib/event2 -L/usr/local/lib -L/nonexistent/lib -lssl /usr/local/lib/libldns.so -lutil /usr/local/lib/event2/libevent.so -L/usr/lib -lcrypto -pthread -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib/event2 -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib/event2 -Wl,-rpath -Wl,/nonexistent/lib ./libtool --tag=CC --mode=compile cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -o unbound-anchor.lo -c smallapp/unbound-anchor.c libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c smallapp/unbound-anchor.c -fPIC -DPIC -o .libs/unbound-anchor.o libtool: compile: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -c smallapp/unbound-anchor.c -o unbound-anchor.o >/dev/null 2>&1 ./libtool --tag=CC --mode=link cc -R/usr/local/lib -R/nonexistent/lib -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -L/usr/local/lib/event2 -Wl,-rpath=/usr/local/lib -L/usr/local/lib -L/nonexistent/lib -L/usr/local/lib -o unbound-anchor unbound-anchor.lo -L. -L.libs -lunbound -lexpat -lssl -lldns -lutil -levent -lcrypto libtool: link: cc -I. -I/usr/local/include/event2/compat -I/usr/local/include -I/usr/local/include -I/usr/local/include -O2 -pipe -fno-strict-aliasing -D_THREAD_SAFE -pthread -Wl,-rpath=/usr/local/lib -o .libs/unbound-anchor .libs/unbound-anchor.o -L/usr/local/lib/event2 -L/usr/local/lib -L/nonexistent/lib -L. -L.libs /usr/ports/dns/unbound/work/unbound-1.4.21/.libs/libunbound.so -L/usr/lib /usr/local/lib/libexpat.so -lssl /usr/local/lib/libldns.so -lutil /usr/local/lib/event2/libevent.so -lcrypto -pthread -Wl,-rpath -Wl,/usr/local/lib -Wl,-rpath -Wl,/usr/local/lib/event2 -Wl,-rpath -Wl,/nonexistent/lib sed -e 's:^DESTDIR=.*$:DESTDIR=/usr/local/etc/unbound:' < ./smallapp/unbound-control-setup.sh > unbound-control-setup chmod +x unbound-control-setup ===> Installing for unbound-1.4.21_1 ===> Generating temporary packing list ===> Creating users and/or groups. Creating group `unbound' with gid `59'. Creating user `unbound' with uid `59'. pw: user 'unbound' already exists *** [create-users-groups] Error code 74 Stop in /usr/ports/dns/unbound. *** [install] Error code 1 Stop in /usr/ports/dns/unbound. ===>>> Installation of unbound-1.4.21_1 (dns/unbound) failed ===>>> Aborting update ===>>> Killing background jobs Terminated ===>>> You can restart from the point of failure with this command line: portmaster dns/unbound ===>>> Exiting >How-To-Repeat: >Fix: Anyway, I managed to install it after comment the following lines in the Makefile: --- Makefile.orig 2014-01-04 16:02:10.000000000 +0100 +++ Makefile 2014-01-04 16:03:20.000000000 +0100 @@ -19,7 +19,7 @@ CONFIGURE_ARGS+=--with-ssl=${OPENSSLBASE} USE_LDCONFIG= yes -USERS= ${PORTNAME} +#USERS= ${PORTNAME} GROUPS= ${PORTNAME} USE_RC_SUBR= unbound @@ -118,7 +118,6 @@ @${RM} ${WRKSRC}/util/configlexer.c post-install: - @${CHOWN} ${USERS} ${ETCDIR} +# @${CHOWN} ${USERS} ${ETCDIR} .if ${PORT_OPTIONS:MMUNIN} @${MKDIR} ${PREFIX}/share/munin/plugins @${MKDIR} ${PREFIX}/etc/munin/plugins >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 19:40:13 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 979E2B55; Sat, 4 Jan 2014 19:40:13 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6E97B1AD4; Sat, 4 Jan 2014 19:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04JeDXD054661; Sat, 4 Jan 2014 19:40:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04JeDv5054660; Sat, 4 Jan 2014 19:40:13 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 19:40:13 GMT Message-Id: <201401041940.s04JeDv5054660@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, sem@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185472: dns/unbound fails to install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 19:40:13 -0000 Synopsis: dns/unbound fails to install Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 19:40:13 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185472 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 19:50:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B4E3ACA4 for ; Sat, 4 Jan 2014 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 900B01B67 for ; Sat, 4 Jan 2014 19:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04Jo0wb056588 for ; Sat, 4 Jan 2014 19:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04Jo0DV056587; Sat, 4 Jan 2014 19:50:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 19:50:00 GMT Resent-Message-Id: <201401041950.s04Jo0DV056587@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, Tom Russo Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EC64EBB1 for ; Sat, 4 Jan 2014 19:46:22 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D8D761B45 for ; Sat, 4 Jan 2014 19:46:22 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s04JkMPK083461 for ; Sat, 4 Jan 2014 19:46:22 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s04JkM4E083449; Sat, 4 Jan 2014 19:46:22 GMT (envelope-from nobody) Message-Id: <201401041946.s04JkM4E083449@oldred.freebsd.org> Date: Sat, 4 Jan 2014 19:46:22 GMT From: Tom Russo To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185473: emulators/wine-devel compilation failure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 19:50:00 -0000 >Number: 185473 >Category: ports >Synopsis: emulators/wine-devel compilation failure >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 Jan 04 19:50:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Tom Russo >Release: 9.2-STABLE >Organization: >Environment: FreeBSD bogodyn.org 9.2-STABLE FreeBSD 9.2-STABLE #0 r259033: Fri Dec 6 12:35:22 MST 2013 russo@bogodyn.org:/usr/obj/usr/src/sys/BOGODYN i386 >Description: Trying to update wine-devel from 1.7.9 to 1.7.10, got the following compilation error: socket.c: In function 'is_sockaddr_bound': socket.c:1476:35: error: invalid operands to binary || (have 'int' and 'union ipx_net') The offending line is in socket.c in wine-1.7.10/dlls/ws2_32: return ipx->sipx_port || ipx->sipx_network || memcmp(&ipx->sipx_node, &emptyAddr.sipx_node, sizeof(emptyAddr.sipx_node)); ipx->sipx_network is not an int, it's a union ipx_net, as seen in /usr/include/netipx/ipx.h: struct ipx_addr { union ipx_net x_net; union ipx_host x_host; u_short x_port; }; struct sockaddr_ipx { u_char sipx_len; u_char sipx_family; struct ipx_addr sipx_addr; char sipx_zero[2]; }; ipx on line 1476 is of type sockaddr_ipx *, and sipx_network is #defined at the top of socket.h as sipx_addr.x_net >How-To-Repeat: Try to build wine-devel 1.7.10 on FreeBSD 9.2. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 19:50:22 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DDB86CD1; Sat, 4 Jan 2014 19:50:22 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B26701B68; Sat, 4 Jan 2014 19:50:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04JoMbZ056735; Sat, 4 Jan 2014 19:50:22 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04JoMUu056734; Sat, 4 Jan 2014 19:50:22 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 19:50:22 GMT Message-Id: <201401041950.s04JoMUu056734@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gerald@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185473: emulators/wine-devel compilation failure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 19:50:22 -0000 Synopsis: emulators/wine-devel compilation failure Responsible-Changed-From-To: freebsd-ports-bugs->gerald Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 19:50:22 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185473 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 20:26:24 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D1DB630; Sat, 4 Jan 2014 20:26:24 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 13AD21EEF; Sat, 4 Jan 2014 20:26:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04KQNoP065850; Sat, 4 Jan 2014 20:26:23 GMT (envelope-from ashish@freefall.freebsd.org) Received: (from ashish@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04KQNVm065849; Sat, 4 Jan 2014 20:26:23 GMT (envelope-from ashish) Date: Sat, 4 Jan 2014 20:26:23 GMT Message-Id: <201401042026.s04KQNVm065849@freefall.freebsd.org> To: ben@links.org, ashish@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: ashish@FreeBSD.org Subject: Re: ports/179843: emacs and texinfo collide X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 20:26:24 -0000 Synopsis: emacs and texinfo collide State-Changed-From-To: open->closed State-Changed-By: ashish State-Changed-When: Sat Jan 4 20:26:22 UTC 2014 State-Changed-Why: Fixed! http://www.freebsd.org/cgi/query-pr.cgi?pr=179843 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 21:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2E9CCA62 for ; Sat, 4 Jan 2014 21:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0782D10E0 for ; Sat, 4 Jan 2014 21:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04L00ec071913 for ; Sat, 4 Jan 2014 21:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04L00MQ071912; Sat, 4 Jan 2014 21:00:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 21:00:00 GMT Resent-Message-Id: <201401042100.s04L00MQ071912@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, Juergen Lock Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2B0048E0 for ; Sat, 4 Jan 2014 20:52:13 +0000 (UTC) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id DE5CA10B6 for ; Sat, 4 Jan 2014 20:52:12 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id DB95E1E007B6; Sat, 4 Jan 2014 21:42:30 +0100 (CET) Received: from enceladus10.kn-bremen.de (noident@localhost [127.0.0.1]) by enceladus10.kn-bremen.de (8.14.5/8.14.5) with ESMTP id s04KdZZV051501; Sat, 4 Jan 2014 21:39:35 +0100 (CET) (envelope-from nox@enceladus10.kn-bremen.de) Received: (from nox@localhost) by enceladus10.kn-bremen.de (8.14.5/8.14.5/Submit) id s04KdZVF051500; Sat, 4 Jan 2014 21:39:35 +0100 (CET) (envelope-from nox) Message-Id: <201401042039.s04KdZVF051500@enceladus10.kn-bremen.de> Date: Sat, 4 Jan 2014 21:39:35 +0100 (CET) From: Juergen Lock To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/185475: multimedia/xbmc: patch to add XRANDR knob Cc: mickael.maillot@gmail.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Juergen Lock List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 21:00:01 -0000 >Number: 185475 >Category: ports >Synopsis: multimedia/xbmc: patch to add XRANDR knob >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 Jan 04 21:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Juergen Lock >Release: FreeBSD 10.0-RC4 amd64 >Organization: >Environment: System: FreeBSD triton10.kn-bremen.de 10.0-RC4 FreeBSD 10.0-RC4 #0 r260130: Tue Dec 31 17:10:01 UTC 2013 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The xrandr code in xbmc seems to cause blank screens in some cases (X configured for dual screens in clone mode using x11/nvidia-driver here - but something similar also happened on the old box with pre-kms radeon on 8.x where I thought this was a radeon driver bug.) So I had to build xbmc with --disable-xrandr, the patch below adds this as an XRANDR knob to the port. >How-To-Repeat: Not sure, use X with second screen in clone mode and then try to run xbmc in fullscreen? (Switching to windowed mode with \ brings the display back on this box btw.) >Fix: Index: multimedia/xbmc/Makefile =================================================================== --- multimedia/xbmc/Makefile (revision 338647) +++ multimedia/xbmc/Makefile (working copy) @@ -55,7 +55,7 @@ USES= gmake iconv pkgconfig USE_AUTOTOOLS= autoconf libtool automake libltdl GNU_CONFIGURE= yes -USE_XORG= xt xmu xrandr xtst +USE_XORG= xt xmu xtst USE_GL= glu USE_SDL= image sdl USE_PYTHON= -2.7 @@ -75,7 +75,7 @@ OPTIONS_DEFINE= AIRPLAY AIRTUNES AVAHI CEC EXTERNAL_FFMPEG LAME \ LIBBLURAY HAL LIRC MYSQL NONFREE PULSEAUDIO RTMP SFTP \ - SMB VAAPI VDPAU VORBIS WEBSERVER + SMB VAAPI VDPAU VORBIS WEBSERVER XRANDR AIRPLAY_DESC= AirPlay support via libplist AIRTUNES_DESC= AirTunes support via libshairport CEC_DESC= CEC adapter support @@ -85,7 +85,7 @@ VORBIS_DESC= Ogg Vorbis audio encoder OPTIONS_DEFAULT= AIRPLAY AVAHI CEC LIBBLURAY HAL MYSQL \ - RTMP SFTP SMB VORBIS WEBSERVER + RTMP SFTP SMB VORBIS WEBSERVER XRANDR .include @@ -146,6 +146,15 @@ CONFIGURE_ARGS+= --disable-libcec .endif +.if ${PORT_OPTIONS:MXRANDR} +CONFIGURE_ARGS+= --enable-xrandr +USE_XORG+= xrandr +PLIST_SUB+= XRANDR="" +.else +CONFIGURE_ARGS+= --disable-xrandr +PLIST_SUB+= XRANDR="@comment " +.endif + .if ${PORT_OPTIONS:MEXTERNAL_FFMPEG} CONFIGURE_ARGS+= --enable-external-ffmpeg FFMPEG_SUFFIX= 0 Index: multimedia/xbmc/pkg-plist =================================================================== --- multimedia/xbmc/pkg-plist (revision 338647) +++ multimedia/xbmc/pkg-plist (working copy) @@ -29,7 +29,7 @@ lib/xbmc/system/players/paplayer/stsoundlibrary-%%ARCH%%-freebsd.so lib/xbmc/system/players/paplayer/timidity-%%ARCH%%-freebsd.so lib/xbmc/system/players/paplayer/vgmstream-%%ARCH%%-freebsd.so -lib/xbmc/xbmc-xrandr +%%XRANDR%%lib/xbmc/xbmc-xrandr lib/xbmc/xbmc.bin man/man1/xbmc.bin.1.gz man/man1/xbmc.1.gz >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 21:00:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C0DF1A93; Sat, 4 Jan 2014 21:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 95C4210E2; Sat, 4 Jan 2014 21:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04L09Gd072042; Sat, 4 Jan 2014 21:00:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04L09M5072041; Sat, 4 Jan 2014 21:00:09 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 21:00:09 GMT Message-Id: <201401042100.s04L09M5072041@freefall.freebsd.org> To: nox@jelal.kn-bremen.de, edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185475: multimedia/xbmc: patch to add XRANDR knob X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 21:00:09 -0000 Synopsis: multimedia/xbmc: patch to add XRANDR knob State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Sat Jan 4 21:00:09 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185475 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 21:10:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4DC57B17 for ; Sat, 4 Jan 2014 21:10:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 38AC81169 for ; Sat, 4 Jan 2014 21:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04LA1Dp074311 for ; Sat, 4 Jan 2014 21:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04LA13b074310; Sat, 4 Jan 2014 21:10:01 GMT (envelope-from gnats) Date: Sat, 4 Jan 2014 21:10:01 GMT Message-Id: <201401042110.s04LA13b074310@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/185475: multimedia/xbmc: patch to add XRANDR knob X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 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, 04 Jan 2014 21:10:01 -0000 The following reply was made to PR ports/185475; it has been noted by GNATS. From: Edwin Groothuis To: mickael.maillot@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/185475: multimedia/xbmc: patch to add XRANDR knob Date: Sat, 4 Jan 2014 21:00:08 UT Maintainer of multimedia/xbmc, Please note that PR ports/185475 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/185475 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 22:50:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id ADD1AF2 for ; Sat, 4 Jan 2014 22:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 7F79017FA for ; Sat, 4 Jan 2014 22:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04Mo11r096029 for ; Sat, 4 Jan 2014 22:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04Mo1rg096028; Sat, 4 Jan 2014 22:50:01 GMT (envelope-from gnats) Date: Sat, 4 Jan 2014 22:50:01 GMT Message-Id: <201401042250.s04Mo1rg096028@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= Subject: Re: ports/185475: multimedia/xbmc: patch to add XRANDR knob X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?ISO-8859-1?Q?Micka=EBl_Maillot?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 22:50:01 -0000 The following reply was made to PR ports/185475; it has been noted by GNATS. From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: bug-followup@freebsd.org Cc: Subject: Re: ports/185475: multimedia/xbmc: patch to add XRANDR knob Date: Sat, 4 Jan 2014 23:49:46 +0100 --485b3970cec2e9b6db04ef2cd73a Content-Type: text/plain; charset=ISO-8859-1 Patch looks good. i added it to my PR: ports/185466 in the 13.0 update. 2014/1/4 Edwin Groothuis > Maintainer of multimedia/xbmc, > > Please note that PR ports/185475 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/185475 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > --485b3970cec2e9b6db04ef2cd73a Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
Patch looks good.

i added it to my = PR: ports/185466
in the 13.0 update.


2014/1/4 Edwin Groothuis <edwin@= freebsd.org>
Maintainer of multimedia/xbmc,

Please note that PR ports/185475 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:
=A0 =A0 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/185= 475

--
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org

--485b3970cec2e9b6db04ef2cd73a-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 23:00:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 80E2D391 for ; Sat, 4 Jan 2014 23:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5243E18B4 for ; Sat, 4 Jan 2014 23:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04N01hk098000 for ; Sat, 4 Jan 2014 23:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04N01T5097999; Sat, 4 Jan 2014 23:00:01 GMT (envelope-from gnats) Date: Sat, 4 Jan 2014 23:00:01 GMT Message-Id: <201401042300.s04N01T5097999@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= Subject: Re: ports/185037: multimedia/xbmc do not install X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?ISO-8859-1?Q?Micka=EBl_Maillot?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 23:00:01 -0000 The following reply was made to PR ports/185037; it has been noted by GNATS. From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: bug-followup@freebsd.org Cc: Subject: Re: ports/185037: multimedia/xbmc do not install Date: Sat, 4 Jan 2014 23:55:56 +0100 --20cf301cbceef4989c04ef2ced46 Content-Type: text/plain; charset=ISO-8859-1 I need more information to debug the problem like config.log and all output during make command. can you try the 13.0 update in PR ports/185466 ? 2013/12/22 Edwin Groothuis > Maintainer of multimedia/xbmc, > > Please note that PR ports/185037 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/185037 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > --20cf301cbceef4989c04ef2ced46 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
I need more information to debug the problem like con= fig.log and all output during make command.
can you try the 13.0 u= pdate in PR ports/185466 ?


2013/12/22 Edwin Groothuis <edwin@freebsd.org>
Maintainer of multimedia/xbmc,

Please note that PR ports/185037 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:
=A0 =A0 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/185= 037

--
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org

--20cf301cbceef4989c04ef2ced46-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 23:00:02 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8DB0A392 for ; Sat, 4 Jan 2014 23:00:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5F58A18B5 for ; Sat, 4 Jan 2014 23:00:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04N02Qu098006 for ; Sat, 4 Jan 2014 23:00:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04N02XA098005; Sat, 4 Jan 2014 23:00:02 GMT (envelope-from gnats) Date: Sat, 4 Jan 2014 23:00:02 GMT Message-Id: <201401042300.s04N02XA098005@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= Subject: Re: ports/184021: multimedia/xbmc does not build on 10.0-BETA2 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?ISO-8859-1?Q?Micka=EBl_Maillot?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 23:00:02 -0000 The following reply was made to PR ports/184021; it has been noted by GNATS. From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: bug-followup@freebsd.org Cc: Subject: Re: ports/184021: multimedia/xbmc does not build on 10.0-BETA2 Date: Sat, 4 Jan 2014 23:51:22 +0100 --485b3970d12696bcb404ef2cdd56 Content-Type: text/plain; charset=ISO-8859-1 fixed in PR ports/185466 2013/11/16 Edwin Groothuis > Maintainer of multimedia/xbmc, > > Please note that PR ports/184021 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/184021 > > -- > Edwin Groothuis via the GNATS Auto Assign Tool > edwin@FreeBSD.org > --485b3970d12696bcb404ef2cdd56 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
fixed in PR ports/185466


2013/11/16 Edwin Groothuis <edwin@f= reebsd.org>
Maintainer of multimedia/xbmc,

Please note that PR ports/184021 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:
=A0 =A0 http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/184= 021

--
Edwin Groothuis via the GNATS Auto Assign Tool
edwin@FreeBSD.org

--485b3970d12696bcb404ef2cdd56-- From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 23:20:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 09982CE6 for ; Sat, 4 Jan 2014 23:20:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D8D2219DD for ; Sat, 4 Jan 2014 23:20:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04NK09Z003091 for ; Sat, 4 Jan 2014 23:20:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04NK0pc003080; Sat, 4 Jan 2014 23:20:00 GMT (envelope-from gnats) Resent-Date: Sat, 4 Jan 2014 23:20:00 GMT Resent-Message-Id: <201401042320.s04NK0pc003080@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, Radim Kolar Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DB34F6D1 for ; Sat, 4 Jan 2014 23:11:00 +0000 (UTC) Received: from oldred.freebsd.org (oldred.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C7BD4199A for ; Sat, 4 Jan 2014 23:11:00 +0000 (UTC) Received: from oldred.freebsd.org ([127.0.1.6]) by oldred.freebsd.org (8.14.5/8.14.7) with ESMTP id s04NAx4v036475 for ; Sat, 4 Jan 2014 23:10:59 GMT (envelope-from nobody@oldred.freebsd.org) Received: (from nobody@localhost) by oldred.freebsd.org (8.14.5/8.14.5/Submit) id s04NAxvr036447; Sat, 4 Jan 2014 23:10:59 GMT (envelope-from nobody) Message-Id: <201401042310.s04NAxvr036447@oldred.freebsd.org> Date: Sat, 4 Jan 2014 23:10:59 GMT From: Radim Kolar To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/185477: audio/fluidsynth fails to build with distcc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 23:20:01 -0000 >Number: 185477 >Category: ports >Synopsis: audio/fluidsynth fails to build with distcc >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 Jan 04 23:20:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Radim Kolar >Release: 10.0rc3 >Organization: >Environment: >Description: ===> Configuring for fluidsynth-1.1.6 ===> FreeBSD 10 autotools fix applied to /usr/ports/audio/fluidsynth/work/fluidsynth-1.1.6/configure ===> FreeBSD 10 autotools fix applied to /usr/ports/audio/fluidsynth/work/fluidsynth-1.1.6/acinclude.m4 ===> FreeBSD 10 autotools fix applied to /usr/ports/audio/fluidsynth/work/fluidsynth-1.1.6/aclocal.m4 ===> Performing in-source build /bin/mkdir -p /usr/ports/audio/fluidsynth/work/fluidsynth-1.1.6 -- The C compiler identification is unknown -- Check for working C compiler: distcc cc CMake Error: your C compiler: "distcc cc" was not found. Please set CMAKE_C_COMPILER to a valid compiler path or name. CMake Error: Internal CMake error, TryCompile configure of cmake failed -- Check for working C compiler: distcc cc -- broken CMake Error at /usr/local/share/cmake/Modules/CMakeTestCCompiler.cmake:61 (message): The C compiler "distcc cc" is not able to compile a simple test program. It fails with the following output: CMake will not be able to correctly generate this project. Call Stack (most recent call first): CMakeLists.txt:22 (project) CMake Error: your C compiler: "distcc cc" was not found. Please set CMAKE_C_COMPILER to a valid compiler path or name. -- Configuring incomplete, errors occurred! >How-To-Repeat: hsn@acer:~ % cat /etc/make.conf CC=distcc cc CXX=distcc c++ MAKE_JOBS_NUMBER=6 hsn@acer:~ % >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 23:20:09 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 39FEDD18; Sat, 4 Jan 2014 23:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0EB1119DE; Sat, 4 Jan 2014 23:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04NK8Tp003213; Sat, 4 Jan 2014 23:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04NK8LG003212; Sat, 4 Jan 2014 23:20:08 GMT (envelope-from edwin) Date: Sat, 4 Jan 2014 23:20:08 GMT Message-Id: <201401042320.s04NK8LG003212@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-multimedia@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/185477: audio/fluidsynth fails to build with distcc X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 23:20:09 -0000 Synopsis: audio/fluidsynth fails to build with distcc Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jan 4 23:20:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=185477 From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 23:43:55 2014 Return-Path: Delivered-To: freebsd-ports-bugs@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 24111599; Sat, 4 Jan 2014 23:43:55 +0000 (UTC) Received: from mail-bk0-x233.google.com (mail-bk0-x233.google.com [IPv6:2a00:1450:4008:c01::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 83F561CB9; Sat, 4 Jan 2014 23:43:54 +0000 (UTC) Received: by mail-bk0-f51.google.com with SMTP id 6so5268567bkj.38 for ; Sat, 04 Jan 2014 15:43:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=EoD7xrsVzovYT9NjEvtpeHyAoQAhKTpIM4Rm9/n4b8c=; b=APQwC8MUPPGI+tuWgZC9DUp9YS0NDgm3sdhpAmKCgkRhq6oOwM6c/PNOVEoYK7QuXF MmyuENCngFbqCL4YRu23RAoctYyqKyHS5dxDyf4E9q1/0eY7MUGzyqNkHSXNtjGY5EGH BWjzTHlBgxHAu4wB6yq7487NIToYoKhb10E7iDa8S/b/q/sXRQDxzOCo3bF7/yKgfWMR uecIX/y8UOx/llVrbUdpEkGum4IR3NFjRikci7gzR81KfMkTZM0l0eYdrxdPHfeH/+uw nSq/Iuw6UNkToli2nk/HqAfoNiOjZfCNhGD3yEEdH9pD2+B58ALbQH0iRE6mJXzeRDd6 7Z/Q== MIME-Version: 1.0 X-Received: by 10.205.35.72 with SMTP id sv8mr90473bkb.60.1388879032733; Sat, 04 Jan 2014 15:43:52 -0800 (PST) Received: by 10.204.170.143 with HTTP; Sat, 4 Jan 2014 15:43:52 -0800 (PST) In-Reply-To: <201401041440.s04Ee0aq086007@freefall.freebsd.org> References: <201401041430.s04EUOjO064104@oldred.freebsd.org> <201401041440.s04Ee0aq086007@freefall.freebsd.org> Date: Sun, 5 Jan 2014 00:43:52 +0100 Message-ID: Subject: Re: ports/185466: [maintainer update] update multimedia/xbmc to 13.0 alpha 11 From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 23:43:55 -0000 patch updated with: - new option xrandr from pr: ports/185475 - option airtunes fixed - add missing lib deps: libxslt 2014/1/4 > Thank you very much for your problem report. > It has the internal identification `ports/185466'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=185466 > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: [maintainer update] update multimedia/xbmc to 13.0 alpha > 11 > >Arrival-Date: Sat Jan 04 14:40:00 UTC 2014 > From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Jan 4 23:50:01 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E25BCAA6 for ; Sat, 4 Jan 2014 23:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B09EA1CE7 for ; Sat, 4 Jan 2014 23:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s04No1YN009056 for ; Sat, 4 Jan 2014 23:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s04No142009055; Sat, 4 Jan 2014 23:50:01 GMT (envelope-from gnats) Date: Sat, 4 Jan 2014 23:50:01 GMT Message-Id: <201401042350.s04No142009055@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= Subject: Re: ports/185466: [maintainer update] update multimedia/xbmc to 13.0 alpha 11 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: =?ISO-8859-1?Q?Micka=EBl_Maillot?= List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Jan 2014 23:50:01 -0000 The following reply was made to PR ports/185466; it has been noted by GNATS. From: =?ISO-8859-1?Q?Micka=EBl_Maillot?= To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Cc: Subject: Re: ports/185466: [maintainer update] update multimedia/xbmc to 13.0 alpha 11 Date: Sun, 5 Jan 2014 00:43:52 +0100 --bcaec52c68ff61ffe704ef2d999f Content-Type: text/plain; charset=ISO-8859-1 patch updated with: - new option xrandr from pr: ports/185475 - option airtunes fixed - add missing lib deps: libxslt 2014/1/4 > Thank you very much for your problem report. > It has the internal identification `ports/185466'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=185466 > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: [maintainer update] update multimedia/xbmc to 13.0 alpha > 11 > >Arrival-Date: Sat Jan 04 14:40:00 UTC 2014 > --bcaec52c68ff61ffe704ef2d999f Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable
patch updated with:
- new option x= randr from pr: ports/185475
- option airtunes fixed
- add= missing lib deps: libxslt


2014/1/4 <FreeBSD-gnats-submit@freebsd.org><= br>
Thank you very much for your problem report.
It has the internal identification `ports/185466'.
The individual assigned to look at your
report is: freebsd-ports-bugs.

You can access the state of your problem report at any time
via this link:

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

>Category: =A0 =A0 =A0 ports
>Responsible: =A0 =A0freebsd-ports-bugs
>Synopsis: =A0 =A0 =A0 [maintainer update] update multimedia/xbmc to 13.= 0 alpha 11
>Arrival-Date: =A0 Sat Jan 04 14:40:00 UTC 2014

--bcaec52c68ff61ffe704ef2d999f--