From otacilio.neto at ee.ufcg.edu.br Fri May 1 01:20:02 2009 From: otacilio.neto at ee.ufcg.edu.br (Otaclio de Arajo Ramos Neto) Date: Fri May 1 01:20:10 2009 Subject: ports/134124: NEW port: cad/verilog-perl Message-ID: <200905010110.n411Aghn049136@www.freebsd.org> >Number: 134124 >Category: ports >Synopsis: NEW port: cad/verilog-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: Fri May 01 01:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Otaclio de Arajo Ramos Neto >Release: >Organization: >Environment: FreeBSD squitch 7.1-RELEASE FreeBSD 7.1-RELEASE #4: Sat Mar 28 21:30:54 BRT 2009 ota@squitch:/usr/obj/usr/src/sys/SQUITCH i386 >Description: The Verilog-Perl library is a building point for Verilog support in the Perl language. >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: # # verilog-perl # verilog-perl/files # verilog-perl/files/patch-Makefile.PL # verilog-perl/Makefile # verilog-perl/scripts # verilog-perl/scripts/pkg-plist.sh # verilog-perl/distinfo # verilog-perl/pkg-descr # echo c - verilog-perl mkdir -p verilog-perl > /dev/null 2>&1 echo c - verilog-perl/files mkdir -p verilog-perl/files > /dev/null 2>&1 echo x - verilog-perl/files/patch-Makefile.PL sed 's/^X//' >verilog-perl/files/patch-Makefile.PL << 'e7b4cbc6065f25137aaab939c63503b4' X*** Makefile.PL.orig 2009-04-03 15:17:16.000000000 -0300 X--- Makefile.PL 2009-04-12 00:39:45.000000000 -0300 X*************** X*** 78,83 **** X--- 78,84 ---- X VERSION_FROM => 'Language.pm', X NO_META => 1, X #OPTIMIZE => '-ggdb', X+ MAKE => 'gmake', X PREREQ_PM => {'Pod::Usage' => 1, X 'Data::Dumper' => 1, X 'Test' => 1, X*************** X*** 85,91 **** X #'Test::Pod' => 1, # Required only for author tests X #'Test::Perl::Critic' => 1, # Required only for author tests X }, X! PMLIBDIRS => ['lib', 'Verilog', 'Netlist',], X EXE_FILES => [qw( vrename vpassert vppreproc vhier vsplitmodule )], X 'clean' => {FILES => qw (test_dir signals.vrename .vpassert simv ),}, X 'dist' => {COMPRESS => 'gzip -9f', X--- 86,92 ---- X #'Test::Pod' => 1, # Required only for author tests X #'Test::Perl::Critic' => 1, # Required only for author tests X }, X! PMLIBDIRS => ['lib', 'Parser', 'Preproc', 'Netlist',], X EXE_FILES => [qw( vrename vpassert vppreproc vhier vsplitmodule )], X 'clean' => {FILES => qw (test_dir signals.vrename .vpassert simv ),}, X 'dist' => {COMPRESS => 'gzip -9f', e7b4cbc6065f25137aaab939c63503b4 echo x - verilog-perl/Makefile sed 's/^X//' >verilog-perl/Makefile << '68a2037285a27f97e24dbcff6a5ec5b8' X# New ports collection makefile for: Verilog-Perl X# Date created: 11 Apr 2009 X# Whom: Otacílio de Araújo Ramos Neto X# X# $FreeBSD$ X# X XPORTNAME= Verilog-Perl XPORTVERSION= 3.121 XPORTREVISIO= 0 XCATEGORIES= cad XMASTER_SITES= http://search.cpan.org/CPAN/authors/id/W/WS/WSNYDER/ XDISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} XFETCH_ARGS= -pRr XPLIST=${WRKSRC}/pkg-plist X XMAINTAINER= otacilio.neto@ee.ufcg.edu.br XCOMMENT= The Verilog-Perl library is a building point for Verilog support in the Perl language. X XUSE_GMAKE= yes XUSE_PERL5= yes X XBUILD_DEPENDS= gcc>=4:${PORTSDIR}/lang/gcc43 X XMAN1= vhier.1 \ X vpassert.1 \ X vppreproc.1 \ X vrename.1 X XMAN3= Verilog::EditFiles.3 Verilog::Netlist::Logger.3 Verilog::Parser.3 Verilog::Getopt.3 Verilog::Netlist::Module.3 Verilog::Preproc.3 Verilog::Language.3 Verilog::Netlist::Net.3 Verilog::SigParser.3 Verilog::Netlist.3 Verilog::Netlist::Pin.3 Verilog::Netlist::Cell.3 Verilog::Netlist::Port.3 Verilog::Netlist::File.3 Verilog::Netlist::Subclass.3 Verilog::Verilog-Perl.3 X Xpre-build: X cd ${WRKSRC} && perl Makefile.PL INSTALLBIN=${PREFIX}/bin INSTALLSITEBIN=${PREFIX}/bin INSTALLSCRIPT=${PREFIX}/bin INSTALLSITESCRIPT=${PREFIX}/bin INSTALLSITEMAN3DIR=${PREFIX}/man/man3 SITELIBEXP=${PREFIX}/${SITE_PERL_REL} SITEARCHEXP=${PREFIX}/${SITE_PERL_REL}/mach INSTALLSITELIB=${PREFIX}/${SITE_PERL_REL} INSTALLSITEARCH=${PREFIX}/${SITE_PERL_REL}/mach INSTALLMAN1DIR=${PREFIX}/man/man1 INSTALLSITEMAN1DIR=${PREFIX}/man/man1 X Xpost-build: X cd ${WRKSRC} && make test X Xpre-install: X /bin/sh scripts/pkg-plist.sh ${SITE_PERL_REL} > ${WRKSRC}/pkg-plist X Xtest: X make post-build X X.include 68a2037285a27f97e24dbcff6a5ec5b8 echo c - verilog-perl/scripts mkdir -p verilog-perl/scripts > /dev/null 2>&1 echo x - verilog-perl/scripts/pkg-plist.sh sed 's/^X//' >verilog-perl/scripts/pkg-plist.sh << 'b0a7f442026daefc8ceff6cf8c0e99c7' X#!/bin/sh Xecho "bin/vhier" Xecho "bin/vpassert" Xecho "bin/vppreproc" Xecho "bin/vrename" Xecho "bin/vsplitmodule" Xecho "$1/mach/Verilog/EditFiles.pm" Xecho "$1/mach/Verilog/Getopt.pm" Xecho "$1/mach/Verilog/Language.pm" Xecho "$1/mach/Verilog/Netlist.pm" Xecho "$1/mach/Verilog/Netlist/Cell.pm" Xecho "$1/mach/Verilog/Netlist/File.pm" Xecho "$1/mach/Verilog/Netlist/Logger.pm" Xecho "$1/mach/Verilog/Netlist/Module.pm" Xecho "$1/mach/Verilog/Netlist/Net.pm" Xecho "$1/mach/Verilog/Netlist/Pin.pm" Xecho "$1/mach/Verilog/Netlist/Port.pm" Xecho "$1/mach/Verilog/Netlist/Subclass.pm" Xecho "$1/mach/Verilog/Parser.pm" Xecho "$1/mach/Verilog/Preproc.pm" Xecho "$1/mach/Verilog/SigParser.pm" Xecho "$1/mach/Verilog/Verilog-Perl.pod" Xecho "$1/mach/auto/Verilog/Language/.packlist" Xecho "$1/mach/auto/Verilog/Parser/Parser.bs" Xecho "$1/mach/auto/Verilog/Parser/Parser.so" Xecho "$1/mach/auto/Verilog/Preproc/Preproc.bs" Xecho "$1/mach/auto/Verilog/Preproc/Preproc.so" Xecho "@dirrm $1/mach/auto/Verilog/Preproc" Xecho "@dirrm $1/mach/auto/Verilog/Parser" Xecho "@dirrm $1/mach/auto/Verilog/Language" Xecho "@dirrm $1/mach/auto/Verilog" Xecho "@dirrm $1/mach/Verilog/Netlist" Xecho "@dirrm $1/mach/Verilog" b0a7f442026daefc8ceff6cf8c0e99c7 echo x - verilog-perl/distinfo sed 's/^X//' >verilog-perl/distinfo << '660d025849b2667c4b435b6025375f3d' XMD5 (Verilog-Perl-3.121.tar.gz) = c4659710d776f33f0a127194cfb677f6 XSHA256 (Verilog-Perl-3.121.tar.gz) = f9b0a58ac209601f6c2bc6bc502294c826226031510259b97d457f3094c489f5 XSIZE (Verilog-Perl-3.121.tar.gz) = 166992 660d025849b2667c4b435b6025375f3d echo x - verilog-perl/pkg-descr sed 's/^X//' >verilog-perl/pkg-descr << '31ab386db09ef2c404b3ee5fb5b0e514' XThe Verilog-Perl library is a building point for Verilog support in the Perl language. It includes: X X * Verilog::Getopt which parses command line options similar to C++ and VCS. X X * Verilog::Language which knows the language keywords and parses numbers. X X * Verilog::Netlist which builds netlists out of Verilog files. This allows easy scripts to determine things such as the hierarchy of modules. X X * Verilog::Parser invokes callbacks for language tokens. X X * Verilog::Preproc preprocesses the language, and allows reading post-processed files right from Perl without temporary files. X X * vpassert inserts PLIish warnings and assertions for any simulator. X X * vppreproc preprocesses the complete Verilog 2001 and SystemVerilog language. X X * vrename renames and cross-references Verilog symbols. Vrename creates Verilog cross references and makes it easy to rename signal and module names across multiple files. Vrename uses a simple and efficient three step process. First, you run vrename to create a list of signals in the design. You then edit this list, changing as many symbols as you wish. Vrename is then run a second time to apply the changes. X Xhttp://www.veripool.org/wiki/verilog-perl 31ab386db09ef2c404b3ee5fb5b0e514 exit >Release-Note: >Audit-Trail: >Unformatted: From leeym at FreeBSD.org Fri May 1 02:10:02 2009 From: leeym at FreeBSD.org (Yen-Ming Lee) Date: Fri May 1 02:10:08 2009 Subject: ports/134125: [PATCH] textproc/p5-YAML-Tiny: update to 1.36 Message-ID: <200905010205.n41254cC093472@cn1.leeym.com> >Number: 134125 >Category: ports >Synopsis: [PATCH] textproc/p5-YAML-Tiny: update to 1.36 >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 May 01 02:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 7.0-RELEASE i386 >Organization: >Environment: System: FreeBSD cn1.leeym.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 >Description: - Update to 1.36 Port maintainer (ychsiao@ychsiao.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-YAML-Tiny-1.36.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/textproc/p5-YAML-Tiny/Makefile,v retrieving revision 1.8 diff -u -d -b -w -u -r1.8 Makefile --- Makefile 8 Oct 2008 14:14:45 -0000 1.8 +++ Makefile 1 May 2009 02:04:02 -0000 @@ -6,7 +6,7 @@ # PORTNAME= YAML-Tiny -PORTVERSION= 1.32 +PORTVERSION= 1.36 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Index: distinfo =================================================================== RCS file: /home/pcvs/ports/textproc/p5-YAML-Tiny/distinfo,v retrieving revision 1.8 diff -u -d -b -w -u -r1.8 distinfo --- distinfo 8 Oct 2008 14:14:45 -0000 1.8 +++ distinfo 1 May 2009 02:04:02 -0000 @@ -1,3 +1,3 @@ -MD5 (YAML-Tiny-1.32.tar.gz) = 494c5d61d5f0321b59a5b40351e504f6 -SHA256 (YAML-Tiny-1.32.tar.gz) = 16869250c6f6beeebd885dd7048992e474cabf1a86eab6f4c63fe57b033a8653 -SIZE (YAML-Tiny-1.32.tar.gz) = 32501 +MD5 (YAML-Tiny-1.36.tar.gz) = 4d2b19298e9f500b3fff961daf458a01 +SHA256 (YAML-Tiny-1.36.tar.gz) = e32d56eda7602e9130681882dbf74cddc109d61b0e6a124c3a7740871c0c55fa +SIZE (YAML-Tiny-1.36.tar.gz) = 33823 --- p5-YAML-Tiny-1.36.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri May 1 02:10:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri May 1 02:10:18 2009 Subject: ports/134125: [PATCH] textproc/p5-YAML-Tiny: update to 1.36 Message-ID: <200905010210.n412ABRU051412@freefall.freebsd.org> Synopsis: [PATCH] textproc/p5-YAML-Tiny: update to 1.36 Responsible-Changed-From-To: freebsd-ports-bugs->leeym Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 1 02:10:11 UTC 2009 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134125 From ijliao at csie.nctu.edu.tw Fri May 1 02:50:02 2009 From: ijliao at csie.nctu.edu.tw (Ying-Chieh Liao) Date: Fri May 1 02:50:09 2009 Subject: ports/134126: [PATCH] www/rubygem-httparty: update to 0.4.3 Message-ID: <20090501022832.8C54E62089@FreeBSD.cs.nctu.edu.tw> >Number: 134126 >Category: ports >Synopsis: [PATCH] www/rubygem-httparty: update to 0.4.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri May 01 02:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Ying-Chieh Liao >Release: FreeBSD 7.2-RC2 amd64 >Organization: FreeBSD @ Taiwan >Environment: System: FreeBSD FreeBSD.cs.nctu.edu.tw 7.2-RC2 FreeBSD 7.2-RC2 #1: Mon Apr 27 02:45:12 CST 2009 >Description: - Update to 0.4.3 Port maintainer (wenheping@gmail.com) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- rubygem-httparty-0.4.3.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/rubygem-httparty/Makefile,v retrieving revision 1.3 diff -u -u -r1.3 Makefile --- Makefile 4 Apr 2009 17:42:21 -0000 1.3 +++ Makefile 1 May 2009 02:28:05 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/www/rubygem-httparty/Makefile,v 1.3 2009/04/04 17:42:21 miwi Exp $ PORTNAME= httparty -PORTVERSION= 0.4.2 +PORTVERSION= 0.4.3 CATEGORIES= www rubygems MASTER_SITES= RF Index: distinfo =================================================================== RCS file: /home/pcvs/ports/www/rubygem-httparty/distinfo,v retrieving revision 1.3 diff -u -u -r1.3 distinfo --- distinfo 4 Apr 2009 17:42:21 -0000 1.3 +++ distinfo 1 May 2009 02:28:05 -0000 @@ -1,3 +1,3 @@ -MD5 (rubygem/httparty-0.4.2.gem) = 105321e07447f1a10901be311e7733c0 -SHA256 (rubygem/httparty-0.4.2.gem) = bc6deb97d248da0ea8cc3dd2efecfb927fd6a2bf504766066bafa79f4eec6e81 -SIZE (rubygem/httparty-0.4.2.gem) = 48128 +MD5 (rubygem/httparty-0.4.3.gem) = 2f676297a9293424630b61f2da65a643 +SHA256 (rubygem/httparty-0.4.3.gem) = 8303f4b185a23caf0e8ca94e6e7eee7393f06911726414f262a09c70dc321823 +SIZE (rubygem/httparty-0.4.3.gem) = 48128 --- rubygem-httparty-0.4.3.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri May 1 02:50:14 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri May 1 02:50:20 2009 Subject: ports/134126: [PATCH] www/rubygem-httparty: update to 0.4.3 Message-ID: <200905010250.n412oD1V006521@freefall.freebsd.org> Synopsis: [PATCH] www/rubygem-httparty: update to 0.4.3 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri May 1 02:50:13 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134126 From edwin at FreeBSD.org Fri May 1 03:00:05 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Fri May 1 03:00:17 2009 Subject: ports/134126: [PATCH] www/rubygem-httparty: update to 0.4.3 Message-ID: <200905010300.n41304mC018420@freefall.freebsd.org> The following reply was made to PR ports/134126; it has been noted by GNATS. From: Edwin Groothuis To: wenheping@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/134126: [PATCH] www/rubygem-httparty: update to 0.4.3 Date: Fri, 1 May 2009 02:50:10 UT Maintainer of www/rubygem-httparty, Please note that PR ports/134126 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/134126 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From wenheping at gmail.com Fri May 1 03:00:07 2009 From: wenheping at gmail.com (wen heping) Date: Fri May 1 03:00:17 2009 Subject: ports/134126: [PATCH] www/rubygem-httparty: update to 0.4.3 Message-ID: <200905010300.n41306kF018453@freefall.freebsd.org> The following reply was made to PR ports/134126; it has been noted by GNATS. From: wen heping To: bug-followup@FreeBSD.org, ijliao@csie.nctu.edu.tw Cc: Subject: Re: ports/134126: [PATCH] www/rubygem-httparty: update to 0.4.3 Date: Fri, 1 May 2009 10:57:49 +0800 --0016364c673f5e0f910468d0fa21 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I approve it. Thank you. wen --0016364c673f5e0f910468d0fa21 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I approve it.
Thank you.

wen
--0016364c673f5e0f910468d0fa21-- From jimmy at mammothcheese.ca Fri May 1 06:20:01 2009 From: jimmy at mammothcheese.ca (James Bailie) Date: Fri May 1 06:20:08 2009 Subject: ports/134128: Update Port: www/drood => 1.41 Message-ID: <20090501061030.A43C68FC1A@mx1.freebsd.org> >Number: 134128 >Category: ports >Synopsis: Update Port: www/drood => 1.41 >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 May 01 06:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: James Bailie >Release: FreeBSD 7.2-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD localhost 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #10: Fri Apr 17 11:29:05 EDT 2009 jbailie@localhost:/usr/obj/usr/src/sys/LOCAL amd64 >Description: >How-To-Repeat: >Fix: --- drood.diff begins here --- diff -ruN /usr/ports/www/drood/Makefile ./drood/Makefile --- /usr/ports/www/drood/Makefile 2009-03-17 13:50:01.000000000 -0400 +++ ./drood/Makefile 2009-04-18 08:53:29.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= drood -PORTVERSION= 1.40 +PORTVERSION= 1.41 CATEGORIES= www MASTER_SITES= http://www.mammothcheese.ca/ diff -ruN /usr/ports/www/drood/distinfo ./drood/distinfo --- /usr/ports/www/drood/distinfo 2009-03-17 13:50:01.000000000 -0400 +++ ./drood/distinfo 2009-05-01 01:36:41.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (drood-1.40.tar.gz) = 85f52dfc88a7c5cecb7d5a356aa61e44 -SHA256 (drood-1.40.tar.gz) = f54d9a130ef3711f9ab166b287c6cca1bb8259378384ae616d895c1ff8f94ae5 -SIZE (drood-1.40.tar.gz) = 37410 +MD5 (drood-1.41.tar.gz) = c4b22239830a437527048bb75241499c +SHA256 (drood-1.41.tar.gz) = 62efbc849e9eaa91fda00b043322e534be0de73293f9d5f9731f9889524966de +SIZE (drood-1.41.tar.gz) = 39179 --- drood.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri May 1 06:20:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri May 1 06:20:20 2009 Subject: ports/134128: Update Port: www/drood => 1.41 Message-ID: <200905010620.n416KD3L092430@freefall.freebsd.org> Synopsis: Update Port: www/drood => 1.41 Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 1 06:20:12 UTC 2009 Responsible-Changed-Why: tabthorpe@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134128 From wenheping at gmail.com Fri May 1 07:20:03 2009 From: wenheping at gmail.com (Wen Heping) Date: Fri May 1 07:20:09 2009 Subject: ports/134129: [Update]deskutils/sugarcrm:update to 5.2.0d Message-ID: <200905010713.n417Dxon071402@www.freebsd.org> >Number: 134129 >Category: ports >Synopsis: [Update]deskutils/sugarcrm:update to 5.2.0d >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 May 01 07:20:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-CURRENT >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sun Mar 22 22:12:06 CST 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: update to 5.2.0d from 5.2.0a >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-05-01 11:15:33.000000000 +0800 +++ Makefile 2009-05-01 11:15:50.000000000 +0800 @@ -5,7 +5,7 @@ # $FreeBSD: ports/deskutils/sugarcrm/Makefile,v 1.19 2009/02/09 17:24:59 miwi Exp $ PORTNAME= sugarcrm -PORTVERSION= 5.2.0a +PORTVERSION= 5.2.0d CATEGORIES= deskutils www MASTER_SITES= SF MASTER_SITES_SUBDIR= sugarcrm --- distinfo.orig 2009-02-24 22:55:58.000000000 +0800 +++ distinfo 2009-05-01 11:19:52.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (SugarCE-5.2.0a.zip) = 0d38cb0d6a13a66d374c9cd1a40ce5f6 -SHA256 (SugarCE-5.2.0a.zip) = 983b26ba17899a1ef74998f38dd006dcc17a180b6ba4a8a311f370f9651b7d13 -SIZE (SugarCE-5.2.0a.zip) = 14536490 +MD5 (SugarCE-5.2.0d.zip) = e790f5e2b63fcfbb9db88cc23033d7c7 +SHA256 (SugarCE-5.2.0d.zip) = f8d8759e1eee54589d711ca3c5aa76be1db66e7584da5532481cc1f31cc6442d +SIZE (SugarCE-5.2.0d.zip) = 14561060 --- pkg-plist.orig 2009-05-01 11:15:37.000000000 +0800 +++ pkg-plist 2009-05-01 12:37:31.000000000 +0800 @@ -19,6 +19,9 @@ %%WWWDIR%%/themes/default/images/icon_Connectors.gif %%WWWDIR%%/themes/default/images/icon_SugarFeed.gif %%WWWDIR%%/themes/default/images/icon_SugarFeed_32.gif +%%WWWDIR%%/themes/default/images/icon_SugarNews_32.gif +%%WWWDIR%%/themes/default/images/icon_email_assign.gif +%%WWWDIR%%/themes/default/images/icon_email_mark.gif %%WWWDIR%%/themes/default/images/yellow_camp.gif %%WWWDIR%%/themes/default/images/xls_image_inline.gif %%WWWDIR%%/themes/default/images/txt_image_inline.gif @@ -2908,6 +2911,9 @@ %%WWWDIR%%/modules/vCals/field_arrays.php %%WWWDIR%%/modules/vCals/Server.php %%WWWDIR%%/modules/vCals/HTTP_WebDAV_Server_vCal.php +%%WWWDIR%%/modules/iFrames/Dashlets/SugarNewsDashlet/SugarNewsDashlet.meta.php +%%WWWDIR%%/modules/iFrames/Dashlets/SugarNewsDashlet/configure.tpl +%%WWWDIR%%/modules/iFrames/Dashlets/SugarNewsDashlet/SugarNewsDashlet.php %%WWWDIR%%/modules/iFrames/Dashlets/iFrameDashlet/configure.tpl %%WWWDIR%%/modules/iFrames/Dashlets/iFrameDashlet/iFrameDashlet.meta.php %%WWWDIR%%/modules/iFrames/Dashlets/iFrameDashlet/iFrameDashlet.php @@ -3012,7 +3018,6 @@ %%WWWDIR%%/modules/UpgradeWizard/preflightJson.php %%WWWDIR%%/modules/UpgradeWizard/preflight.php %%WWWDIR%%/modules/UpgradeWizard/populateColumns.php -%%WWWDIR%%/modules/UpgradeWizard/license_fiveO.php %%WWWDIR%%/modules/UpgradeWizard/language/en_us.lang.php %%WWWDIR%%/modules/UpgradeWizard/language/en_us.help.index.html %%WWWDIR%%/modules/UpgradeWizard/index.php @@ -4601,6 +4606,8 @@ %%WWWDIR%%/modules/Audit/Popup_picker.php %%WWWDIR%%/modules/Audit/Popup_picker.html %%WWWDIR%%/modules/Audit/Audit.php +%%WWWDIR%%/modules/Administration/RepairFieldCasing.php +%%WWWDIR%%/modules/Administration/repairUniSearch.php %%WWWDIR%%/modules/Administration/vardefs.php %%WWWDIR%%/modules/Administration/updater_utils.php %%WWWDIR%%/modules/Administration/updateTimezonePrefs.php @@ -4633,7 +4640,6 @@ %%WWWDIR%%/modules/Administration/index.html %%WWWDIR%%/modules/Administration/expandDatabase.php %%WWWDIR%%/modules/Administration/clear_chart_cache.php -%%WWWDIR%%/modules/Administration/cleanup50.php %%WWWDIR%%/modules/Administration/callJSRepair.php %%WWWDIR%%/modules/Administration/UpgradeWizard_prepare.php %%WWWDIR%%/modules/Administration/UpgradeWizard_commit.php @@ -5220,6 +5226,7 @@ %%WWWDIR%%/include/utils/external_cache/SugarCache_ExternalAbstract.php %%WWWDIR%%/include/utils/external_cache/SugarCache_Base.php %%WWWDIR%%/include/utils/external_cache/SugarCache_APC.php +%%WWWDIR%%/include/utils/external_cache/SugarCache_sMash.php %%WWWDIR%%/include/utils/external_cache/SugarCache.php %%WWWDIR%%/include/utils/external_cache.php %%WWWDIR%%/include/utils/encryption_utils.php @@ -6114,6 +6121,8 @@ %%WWWDIR%%/include/contextMenus/menuDefs/sugarObject.php %%WWWDIR%%/include/contextMenus/menuDefs/sugarAccount.php %%WWWDIR%%/include/contextMenus/contextMenu.php +%%WWWDIR%%/include/connectors/filters/FilterFactory.php +%%WWWDIR%%/include/connectors/filters/default/filter.php %%WWWDIR%%/include/connectors/ConnectorFactory.php %%WWWDIR%%/include/connectors/component.php %%WWWDIR%%/include/connectors/formatters/FormatterFactory.php @@ -6744,6 +6753,7 @@ @dirrm %%WWWDIR%%/themes @dirrm %%WWWDIR%%/soap @dirrm %%WWWDIR%%/modules/vCals +@dirrm %%WWWDIR%%/modules/iFrames/Dashlets/SugarNewsDashlet @dirrm %%WWWDIR%%/modules/iFrames/Dashlets/iFrameDashlet @dirrm %%WWWDIR%%/modules/iFrames/Dashlets @dirrm %%WWWDIR%%/modules/iFrames/language @@ -6974,6 +6984,10 @@ @dirrm %%WWWDIR%%/modules/Contacts/Dashlets/MyContactsDashlet @dirrm %%WWWDIR%%/modules/Contacts/Dashlets @dirrm %%WWWDIR%%/modules/Contacts +@dirrm %%WWWDIR%%/modules/Connectors/connectors/filters/ext/rest +@dirrm %%WWWDIR%%/modules/Connectors/connectors/filters/ext/soap +@dirrm %%WWWDIR%%/modules/Connectors/connectors/filters/ext +@dirrm %%WWWDIR%%/modules/Connectors/connectors/filters @dirrm %%WWWDIR%%/modules/Connectors/connectors/formatters/ext/rest/linkedin/tpls @dirrm %%WWWDIR%%/modules/Connectors/connectors/formatters/ext/rest/linkedin @dirrm %%WWWDIR%%/modules/Connectors/connectors/formatters/ext/rest @@ -7315,6 +7329,8 @@ @dirrm %%WWWDIR%%/include/domit_rss @dirrm %%WWWDIR%%/include/domit @dirrm %%WWWDIR%%/include/database +@dirrm %%WWWDIR%%/include/connectors/filters/default +@dirrm %%WWWDIR%%/include/connectors/filters @dirrm %%WWWDIR%%/include/connectors/utils @dirrm %%WWWDIR%%/include/connectors/formatters/default @dirrm %%WWWDIR%%/include/connectors/formatters/ext/rest/tpls >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri May 1 07:20:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri May 1 07:20:20 2009 Subject: ports/134129: [Update]deskutils/sugarcrm:update to 5.2.0d Message-ID: <200905010720.n417KDmF078415@freefall.freebsd.org> Synopsis: [Update]deskutils/sugarcrm:update to 5.2.0d Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 1 07:20:12 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134129 From miwi at FreeBSD.org Fri May 1 07:47:55 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri May 1 07:48:01 2009 Subject: ports/134126: [PATCH] www/rubygem-httparty: update to 0.4.3 Message-ID: <200905010747.n417ls5O041958@freefall.freebsd.org> Synopsis: [PATCH] www/rubygem-httparty: update to 0.4.3 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri May 1 07:47:54 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134126 From wenheping at gmail.com Fri May 1 08:00:10 2009 From: wenheping at gmail.com (Wen Heping) Date: Fri May 1 08:00:18 2009 Subject: ports/134130: [Maintainer Update]net/p5-Socket-Class:update to 2.17 Message-ID: <200905010757.n417vvtn004478@www.freebsd.org> >Number: 134130 >Category: ports >Synopsis: [Maintainer Update]net/p5-Socket-Class:update to 2.17 >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 May 01 08:00:09 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-CURRENT >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sun Mar 22 22:12:06 CST 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: update to 2.17 from 2.11 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-05-01 15:29:23.000000000 +0800 +++ Makefile 2009-05-01 15:29:45.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= Socket-Class -PORTVERSION= 2.11 +PORTVERSION= 2.17 CATEGORIES= net perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- --- distinfo.orig 2009-04-23 17:14:40.000000000 +0800 +++ distinfo 2009-05-01 15:33:36.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (Socket-Class-2.11.tar.gz) = 8384ddf2ede96c4515dfe6259902dfcb -SHA256 (Socket-Class-2.11.tar.gz) = 270704b232201d8880282e9e491c84f3e805af8d242cfdd21396835bae75dff1 -SIZE (Socket-Class-2.11.tar.gz) = 4222682 +MD5 (Socket-Class-2.17.tar.gz) = 09813cd458e47a155a26f7265b54e88b +SHA256 (Socket-Class-2.17.tar.gz) = 763b4552e7177c4a6ab1d7c34b612eadd2b415ed9a9d0070f4bc3a7a34bf1b8e +SIZE (Socket-Class-2.17.tar.gz) = 3491500 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri May 1 08:00:23 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri May 1 08:00:34 2009 Subject: ports/134130: [Maintainer Update]net/p5-Socket-Class:update to 2.17 Message-ID: <200905010800.n4180Mka057526@freefall.freebsd.org> Synopsis: [Maintainer Update]net/p5-Socket-Class:update to 2.17 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 1 08:00:22 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134130 From kamikaze at bsdforen.de Fri May 1 09:20:01 2009 From: kamikaze at bsdforen.de (Dominic Fandrey) Date: Fri May 1 09:20:08 2009 Subject: ports/134131: [maintainer-update] sysutils/bsdadminscripts Message-ID: <200905010917.n419H5EG060761@www.freebsd.org> >Number: 134131 >Category: ports >Synopsis: [maintainer-update] sysutils/bsdadminscripts >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 May 01 09:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Dominic Fandrey >Release: RELENG_7 >Organization: private >Environment: FreeBSD mobileKamikaze.norad 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #2: Sat Apr 25 10:00:15 CEST 2009 root@mobileKamikaze.norad:/usr/obj/HP6510b/amd64/usr/src/sys/HP6510b amd64 >Description: A new release featuring a binary only package updating tool, pkg_upgrade. >How-To-Repeat: >Fix: diff -Nur ports/sysutils/bsdadminscripts.orig/Makefile ports/sysutils/bsdadminscripts/Makefile --- ports/sysutils/bsdadminscripts.orig/Makefile 2009-04-26 14:12:34.000000000 +0200 +++ ports/sysutils/bsdadminscripts/Makefile 2009-05-01 10:59:58.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= bsdadminscripts -PORTVERSION= 5.0 +PORTVERSION= 6.0 CATEGORIES= sysutils ports-mgmt MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PORTNAME} @@ -16,18 +16,20 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src NO_BUILD= yes -MANCOMPRESSED= no +MANCOMPRESSED= yes .if defined(NOPORTDOCS) NOPORTDOCS= -nodoc .else MAN1= bsdadminscripts.1 \ - distviper.1 \ - rcstart.1 \ - portconfig.1 \ buildflags.mk.1 buildflags.conf.1 buildflags.awk.1 \ + distviper.1 \ + pkg_libchk.1 \ + pkg_upgrade.1 \ pkg_validate.1 \ - pkg_libchk.1 + portconfig.1 \ + rcstart.1 \ + uma.1 RC_SCRIPTS= stop restart status onestart onestop onerestart onestatus PORT_SCRIPTS= build clean fetch package \ diff -Nur ports/sysutils/bsdadminscripts.orig/distinfo ports/sysutils/bsdadminscripts/distinfo --- ports/sysutils/bsdadminscripts.orig/distinfo 2009-04-26 14:12:34.000000000 +0200 +++ ports/sysutils/bsdadminscripts/distinfo 2009-05-01 11:00:02.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (bsdadminscripts-5.0.tar.gz) = d53767de18f8ce56dd9ffe428e85b9cd -SHA256 (bsdadminscripts-5.0.tar.gz) = efcf4c099f0c4ed4838f8b795fba379ae5753f61a4f84141ec56cc996d497ab8 -SIZE (bsdadminscripts-5.0.tar.gz) = 27045 +MD5 (bsdadminscripts-6.0.tar.gz) = cd25a5b9015b5b5af0fbc7316ce61acb +SHA256 (bsdadminscripts-6.0.tar.gz) = 354e5ae26bb7e15fe13c60d5086d323a7594d5a87371f24aedc230a3d65a461a +SIZE (bsdadminscripts-6.0.tar.gz) = 53172 diff -Nur ports/sysutils/bsdadminscripts.orig/pkg-plist ports/sysutils/bsdadminscripts/pkg-plist --- ports/sysutils/bsdadminscripts.orig/pkg-plist 2009-04-26 14:12:34.000000000 +0200 +++ ports/sysutils/bsdadminscripts/pkg-plist 2009-05-01 11:00:08.000000000 +0200 @@ -3,9 +3,11 @@ share/bsdadminscripts/buildflags.mk sbin/distviper sbin/pkg_libchk +sbin/pkg_upgrade sbin/pkg_validate sbin/portconfig sbin/rcstart +sbin/uma sbin/rcstatus sbin/rcstop sbin/rcrestart >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Fri May 1 09:29:38 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri May 1 09:29:44 2009 Subject: ports/134131: [maintainer-update] sysutils/bsdadminscripts Message-ID: <200905010929.n419Tbfb055008@freefall.freebsd.org> Synopsis: [maintainer-update] sysutils/bsdadminscripts Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri May 1 09:29:37 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134131 From mexas at bristol.ac.uk Fri May 1 09:30:01 2009 From: mexas at bristol.ac.uk (Anton Shterenlikht) Date: Fri May 1 09:30:08 2009 Subject: ports/134132: [video] Intel i845 - xorg.conf with UXA - error: [drm:pid1104:i915_irq_emit] *ERROR* i915_irq_emit called without lock held Message-ID: <200905010911.n419BFgL014763@mech-Anton240.men.bris.ac.uk> >Number: 134132 >Category: ports >Synopsis: [video] Intel i845 - xorg.conf with UXA - error: [drm:pid1104:i915_irq_emit] *ERROR* i915_irq_emit called without lock held >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri May 01 09:30:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Anton Shterenlikht >Release: FreeBSD 8.0-CURRENT i386 >Organization: University of Bristol >Environment: System: FreeBSD 8.0-CURRENT #0: Thu Apr 30 13:16:01 BST 2009 /usr/obj/usr/src/sys/EDGE i386 >Description: (Looks related to bug ports/132041: x11/xorg: Broken Intel video driver) On i386 8.0-current, with intel i845 chipset, with Option "AccelMethod" "UXA" in device section of xorg.conf I get this error: error: [drm:pid1104:i915_irq_emit] *ERROR* i915_irq_emit called without lock held and these 3 lines at the bottom of the Xorg.0.log: (WW) intel(0): PRB0_CTL (0x0001f001) indicates ring buffer enabled (WW) intel(0): Existing errors found in hardware state. _fence_emit_internal: drm_i915_irq_emit: 22 If I don't use UXA I get a warning in the X log file that it must be enabled for DRI2. xorg.conf, dmesg, and Xorg.0.log are below. ******************* dmesg ******************* Copyright (c) 1992-2009 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 8.0-CURRENT #0: Thu Apr 30 13:16:01 BST 2009 mexas@mech-Anton240.men.bris.ac.uk:/usr/obj/usr/src/sys/EDGE WARNING: WITNESS option enabled, expect reduced performance. Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Pentium(R) 4 CPU 2.40GHz (2400.10-MHz 686-class CPU) Origin =3D "GenuineIntel" Id =3D 0xf27 Stepping =3D 7 Features=3D0xbfebfbff Features2=3D0x400 real memory =3D 536870912 (512 MB) avail memory =3D 507289600 (483 MB) acpi0: on motherboard acpi0: [ITHREAD] acpi0: Power Button (fixed) acpi0: reservation of 0, a0000 (3) failed acpi0: reservation of 100000, 1f700000 (3) failed Timecounter "ACPI-fast" frequency 3579545 Hz quality 1000 acpi_timer0: <24-bit timer at 3.579545MHz> port 0x408-0x40b on acpi0 pcib0: port 0xcf8-0xcff on acpi0 pci0: on pcib0 vgapci0: mem 0xf0000000-0xf7ffffff,0xffa80000-0x= ffafffff irq 11 at device 2.0 on pci0 agp0: on vgapci0 agp0: detected 8060k stolen memory agp0: aperture size is 128M drm0: on vgapci0 vgapci0: child drm0 requested pci_enable_busmaster info: [drm] AGP at 0xf0000000 128MB info: [drm] Initialized i915 1.6.0 20080730 uhci0: port 0xe800-0xe81f irq= 11 at device 29.0 on pci0 uhci0: [ITHREAD] uhci0: LegSup =3D 0x0f30 usbus0: on uhci0 uhci1: port 0xe880-0xe89f irq= 3 at device 29.1 on pci0 uhci1: [ITHREAD] uhci1: LegSup =3D 0x0f30 usbus1: on uhci1 uhci2: port 0xec00-0xec1f irq= 5 at device 29.2 on pci0 uhci2: [ITHREAD] uhci2: LegSup =3D 0x0f30 usbus2: on uhci2 ehci0: mem 0xffa7fc00-0xffa= 7ffff irq 9 at device 29.7 on pci0 ehci0: [ITHREAD] usbus3: EHCI version 1.0 usbus3: on ehci0 pcib1: at device 30.0 on pci0 pci1: on pcib1 ahc0: port 0xd800-0xd8ff mem 0xff8ff000= -0xff8fffff irq 10 at device 0.0 on pci1 ahc0: [ITHREAD] aic7880: Ultra Wide Channel A, SCSI Id=3D7, 16/253 SCBs fxp0: port 0xdc00-0xdc3f mem 0= xff8fe000-0xff8fefff irq 11 at device 8.0 on pci1 miibus0: on fxp0 inphy0: PHY 1 on miibus0 inphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto fxp0: Ethernet address: 00:07:e9:e7:41:dc fxp0: [ITHREAD] isab0: at device 31.0 on pci0 isa0: on isab0 atapci0: port 0x1f0-0x1f7,0x3f6,0x170-0x1= 77,0x376,0xffa0-0xffaf at device 31.1 on pci0 ata0: on atapci0 ata0: [ITHREAD] ata1: on atapci0 ata1: [ITHREAD] pci0: at device 31.3 (no driver attached) pci0: at device 31.5 (no driver attached) acpi_button0: on acpi0 atrtc0: port 0x70-0x71 irq 8 on acpi0 fdc0: port 0x3f0-0x3f1,0x3f2-0x3f3,0x3f4-0x3f5,= 0x3f7 irq 6 drq 2 on acpi0 fdc0: [FILTER] fd0: <1440-KB 3.5" drive> on fdc0 drive 0 uart0: <16550 or compatible> port 0x3f8-0x3ff irq 4 flags 0x10 on acpi0 uart0: [FILTER] ppc0: port 0x378-0x37f irq 7 on acpi0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode ppc0: [ITHREAD] ppbus0: on ppc0 plip0: on ppbus0 plip0: [ITHREAD] lpt0: on ppbus0 lpt0: [ITHREAD] lpt0: Interrupt-driven port ppi0: on ppbus0 atkbdc0: port 0x60,0x64 irq 1 on acpi0 atkbd0: irq 1 on atkbdc0 kbd0 at atkbd0 atkbd0: [GIANT-LOCKED] atkbd0: [ITHREAD] psm0: irq 12 on atkbdc0 psm0: [GIANT-LOCKED] psm0: [ITHREAD] psm0: model IntelliMouse, device ID 3 cpu0: on acpi0 p4tcc0: on cpu0 pmtimer0 on isa0 orm0: at iomem 0xcb800-0xcbfff pnpid ORM0000 on isa0 sc0: at flags 0x100 on isa0 sc0: VGA <16 virtual consoles, flags=3D0x300> vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounter "TSC" frequency 2400101316 Hz quality 800 Timecounters tick every 1.000 msec Waiting 5 seconds for SCSI devices to settle (probe0:ahc0:0:0:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe0:ahc0:0:0:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe1:ahc0:0:1:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe1:ahc0:0:1:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe2:ahc0:0:2:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe2:ahc0:0:2:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe3:ahc0:0:3:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe3:ahc0:0:3:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe4:ahc0:0:4:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe4:ahc0:0:4:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe5:ahc0:0:5:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe5:ahc0:0:5:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe6:ahc0:0:6:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe6:ahc0:0:6:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe7:ahc0:0:8:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe7:ahc0:0:8:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe8:ahc0:0:9:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe8:ahc0:0:9:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe9:ahc0:0:10:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe9:ahc0:0:10:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe10:ahc0:0:11:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe10:ahc0:0:11:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe11:ahc0:0:12:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe11:ahc0:0:12:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe12:ahc0:0:13:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe12:ahc0:0:13:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe13:ahc0:0:14:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe13:ahc0:0:14:0): INQUIRY. CDB: 12 0 0 0 24 0=20 (probe14:ahc0:0:15:0): Probe PROBE_INVALID to PROBE_INQUIRY (probe14:ahc0:0:15:0): INQUIRY. CDB: 12 0 0 0 24 0=20 usbus3: 480Mbps High Speed USB v2.0 usbus0: 12Mbps Full Speed USB v1.0 usbus1: 12Mbps Full Speed USB v1.0 usbus2: 12Mbps Full Speed USB v1.0 ad0: 76319MB at ata0-master UDMA100 ugen3.1: at usbus3 uhub0: on usbus3 ugen0.1: at usbus0 uhub1: on usbus0 ugen1.1: at usbus1 uhub2: on usbus1 ugen2.1: at usbus2 uhub3: on usbus2 acd0: DVDROM at ata1-master UDMA33 acd1: CDRW at ata1-slave UDMA33 uhub1: 2 ports with 2 removable, self powered uhub2: 2 ports with 2 removable, self powered uhub3: 2 ports with 2 removable, self powered GEOM: ad0s1: geometry does not match label (255h,63s !=3D 16h,63s). GEOM_LABEL: Label for provider ad0s1a is ufsid/48db6d0a9566784c. GEOM_LABEL: Label for provider ad0s1d is ufsid/48db6d0ec04acd6f. GEOM_LABEL: Label for provider ad0s1e is ufsid/48db6d0a1b5ea852. GEOM_LABEL: Label for provider ad0s1f is ufsid/48db6d0a9c3d25b3. uhub0: 6 ports with 6 removable, self powered WARNING: WITNESS option enabled, expect reduced performance. Trying to mount root from ufs:/dev/ad0s1a GEOM_LABEL: Label ufsid/48db6d0a9566784c removed. GEOM_LABEL: Label for provider ad0s1a is ufsid/48db6d0a9566784c. GEOM_LABEL: Label ufsid/48db6d0a1b5ea852 removed. GEOM_LABEL: Label for provider ad0s1e is ufsid/48db6d0a1b5ea852. GEOM_LABEL: Label ufsid/48db6d0a9c3d25b3 removed. GEOM_LABEL: Label for provider ad0s1f is ufsid/48db6d0a9c3d25b3. GEOM_LABEL: Label ufsid/48db6d0ec04acd6f removed. GEOM_LABEL: Label for provider ad0s1d is ufsid/48db6d0ec04acd6f. GEOM_LABEL: Label ufsid/48db6d0a9566784c removed. GEOM_LABEL: Label ufsid/48db6d0a1b5ea852 removed. GEOM_LABEL: Label ufsid/48db6d0a9c3d25b3 removed. GEOM_LABEL: Label ufsid/48db6d0ec04acd6f removed. pid 1068 (Xorg), uid 0: exited on signal 11 (core dumped) drm0: [ITHREAD] error: [drm:pid1104:i915_irq_emit] *ERROR* i915_irq_emit called without l= ock held pid 1104 (Xorg), uid 0: exited on signal 6 (core dumped) error: [drm:pid1109:i915_irq_emit] *ERROR* i915_irq_emit called without l= ock held pid 1109 (Xorg), uid 0: exited on signal 6 (core dumped) ********************** xorg.conf ********************** Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 Option "DontZap" "false" EndSection Section "Files" ModulePath "/usr/local/lib/xorg/modules" FontPath "/usr/local/lib/X11/fonts/misc/" FontPath "/usr/local/lib/X11/fonts/TTF/" FontPath "/usr/local/lib/X11/fonts/OTF" FontPath "/usr/local/lib/X11/fonts/Type1/" FontPath "/usr/local/lib/X11/fonts/100dpi/" FontPath "/usr/local/lib/X11/fonts/75dpi/" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" EndSection Section "Device" ### Available Driver options are:- ### Values: : integer, : float, : "True"/"False", ### : "String", : " Hz/kHz/MHz" ### [arg]: arg optional #Option "NoAccel" # [] #Option "SWcursor" # [] #Option "ColorKey" # #Option "CacheLines" # #Option "Dac6Bit" # [] #Option "DRI" # [] #Option "NoDDC" # [] #Option "ShowCache" # [] #Option "XvMCSurfaces" # #Option "PageFlip" # [] Option "AccelMethod" "UXA" Identifier "Card0" Driver "intel" VendorName "Intel Corporation" BoardName "82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Devic= e" BusID "PCI:0:2:0" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Viewport 0 0 Depth 16 EndSubSection SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection ***************************** Xorg.0.log ***************************** X.Org X Server 1.6.0 Release Date: 2009-2-25 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 8.0-CURRENT i386=20 Current Operating System: FreeBSD mech-Anton240.men.bris.ac.uk 8.0-CURREN= T FreeBSD 8.0-CURRENT #0: Thu Apr 30 13:16:01 BST 2009 mexas@mech-Ant= on240.men.bris.ac.uk:/usr/obj/usr/src/sys/EDGE i386 Build Date: 06 April 2009 10:59:19AM =20 Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (=3D=3D) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (=3D=3D) Log file: "/var/log/Xorg.0.log", Time: Thu Apr 30 13:40:14 2009 (++) Using config file: "xorg.conf" (=3D=3D) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) Option "DontZap" "false" (=3D=3D) Automatically adding devices (=3D=3D) Automatically enabling devices (**) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, built-ins (**) ModulePath set to "/usr/local/lib/xorg/modules" (II) Cannot locate a core pointer device. (II) Cannot locate a core keyboard device. (II) The server relies on HAL to provide the list of input devices. If no devices become available, reconfigure HAL or disable AllowEmptyInp= ut. (II) Loader magic: 0x6a0 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 5.0 X.Org XInput driver : 4.0 X.Org Server Extension : 2.0 (II) Loader running on freebsd (--) Using syscons driver with X support (version 2.0) (--) using VT number 9 (--) PCI:*(0@0:2:0) Intel Corporation 82845G/GL[Brookdale-G]/GE Chipset I= ntegrated Graphics Device rev 3, Mem @ 0xf0000000/134217728, 0xffa80000/5= 24288, BIOS @ 0x????????/65536 (II) System resource ranges: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) LoadModule: "extmod" (II) Loading /usr/local/lib/xorg/modules/extensions//libextmod.so (II) Module extmod: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension MIT-SCREEN-SAVER (II) Loading extension XFree86-VidModeExtension (II) Loading extension XFree86-DGA (II) Loading extension DPMS (II) Loading extension XVideo (II) Loading extension XVideo-MotionCompensation (II) Loading extension X-Resource (II) LoadModule: "dbe" (II) Loading /usr/local/lib/xorg/modules/extensions//libdbe.so (II) Module dbe: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.0.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DOUBLE-BUFFER (II) LoadModule: "glx" (II) Loading /usr/local/lib/xorg/modules/extensions//libglx.so (II) Module glx: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.0.0 ABI class: X.Org Server Extension, version 2.0 (=3D=3D) AIGLX disabled (II) Loading extension GLX (II) LoadModule: "record" (II) Loading /usr/local/lib/xorg/modules/extensions//librecord.so (II) Module record: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.13.0 Module class: X.Org Server Extension ABI class: X.Org Server Extension, version 2.0 (II) Loading extension RECORD (II) LoadModule: "dri" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri.so (II) Module dri: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension XFree86-DRI (II) LoadModule: "dri2" (II) Loading /usr/local/lib/xorg/modules/extensions//libdri2.so (II) Module dri2: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.0.0 ABI class: X.Org Server Extension, version 2.0 (II) Loading extension DRI2 (II) LoadModule: "intel" (II) Loading /usr/local/lib/xorg/modules/drivers//intel_drv.so (II) Module intel: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 2.6.3 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 5.0 (II) intel: Driver for Intel Integrated Graphics Chipsets: i810, i810-dc100, i810e, i815, i830M, 845G, 852GM/855GM, 865G, 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, Mobile Intel=D0=B1=E2=95=9D GM45 Express Chipset, Intel Integrated Graphics Device, G45/G43, Q45/Q43, G41 (II) Primary Device is: PCI 00@00:02:0 (II) resource ranges after xf86ClaimFixedResources() call: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [4] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] (II) resource ranges after probing: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B] [4] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B] [5] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B] [6] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [7] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [8] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B] [9] 0 0 0x000003c0 - 0x000003df (0x20) IS[B] (II) Loading sub module "vgahw" (II) LoadModule: "vgahw" (II) Loading /usr/local/lib/xorg/modules//libvgahw.so (II) Module vgahw: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 0.1.0 ABI class: X.Org Video Driver, version 5.0 (=3D=3D) intel(0): Depth 24, (--) framebuffer bpp 32 (=3D=3D) intel(0): RGB weight 888 (=3D=3D) intel(0): Default visual is TrueColor (**) intel(0): Option "AccelMethod" "UXA" (II) intel(0): Integrated Graphics Chipset: Intel(R) 845G (--) intel(0): Chipset: "845G" (--) intel(0): Linear framebuffer at 0xF0000000 (--) intel(0): IO registers at addr 0xFFA80000 (**) intel(0): Using UXA for acceleration (II) intel(0): 1 display pipe available. (II) Loading sub module "ddc" (II) LoadModule: "ddc" (II) Module "ddc" already built-in (II) Loading sub module "i2c" (II) LoadModule: "i2c" (II) Module "i2c" already built-in (II) intel(0): Output VGA using monitor section Monitor0 (II) intel(0): I2C bus "DVODDC_D" initialized. (II) Loading sub module "sil164" (II) LoadModule: "sil164" (II) Loading /usr/local/lib/xorg/modules/drivers//sil164.so (II) Module sil164: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ch7xxx" (II) LoadModule: "ch7xxx" (II) Loading /usr/local/lib/xorg/modules/drivers//ch7xxx.so (II) Module ch7xxx: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ivch" (II) LoadModule: "ivch" (II) Loading /usr/local/lib/xorg/modules/drivers//ivch.so (II) Module ivch: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_B" initialized. (II) Loading sub module "tfp410" (II) LoadModule: "tfp410" (II) Loading /usr/local/lib/xorg/modules/drivers//tfp410.so (II) Module tfp410: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) intel(0): I2C bus "DVOI2C_B" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) Loading sub module "ch7017" (II) LoadModule: "ch7017" (II) Loading /usr/local/lib/xorg/modules/drivers//ch7017.so (II) Module ch7017: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.0.0 ABI class: X.Org Video Driver, version 5.0 (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVOI2C_E" initialized. (II) intel(0): I2C bus "DVOI2C_E" removed. (II) intel(0): I2C bus "DVODDC_D" removed. (=3D=3D) intel(0): Write-combining range (0xa0000,0x10000) was already cl= ear (II) intel(0): Resizable framebuffer: available (1 4) (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): I2C bus "CRTDDC_A" initialized. (II) intel(0): I2C device "CRTDDC_A:E-EDID segment register" registered a= t address 0x60. (II) intel(0): I2C device "CRTDDC_A:ddc2" registered at address 0xA0. (II) intel(0): I2C device "CRTDDC_A:ddc2" removed. (II) intel(0): I2C device "CRTDDC_A:E-EDID segment register" removed. (II) intel(0): I2C bus "CRTDDC_A" removed. (II) intel(0): EDID vendor "@@@", prod id 0 (II) intel(0): Printing DDC gathered Modelines: (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 = 605 628 +hsync +vsync (37.9 kHz) (II) intel(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 = 603 625 +hsync +vsync (35.2 kHz) (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 4= 84 500 -hsync -vsync (37.5 kHz) (II) intel(0): Modeline "640x480"x0.0 31.50 640 664 704 832 480 489 4= 92 520 -hsync -vsync (37.9 kHz) (II) intel(0): Modeline "640x480"x0.0 30.24 640 704 768 864 480 483 4= 86 525 -hsync -vsync (35.0 kHz) (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 4= 92 525 -hsync -vsync (31.5 kHz) (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 4= 14 449 -hsync +vsync (31.5 kHz) (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 = 769 772 800 +hsync +vsync (60.0 kHz) (II) intel(0): Modeline "1024x768"x0.0 75.00 1024 1048 1184 1328 768 = 771 777 806 -hsync -vsync (56.5 kHz) (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 = 771 777 806 -hsync -vsync (48.4 kHz) (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 = 628 667 -hsync -vsync (49.7 kHz) (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 = 604 625 +hsync +vsync (46.9 kHz) (II) intel(0): Modeline "800x600"x0.0 50.00 800 856 976 1040 600 637 = 643 666 +hsync +vsync (48.1 kHz) (II) intel(0): EDID vendor "@@@", prod id 0 (II) intel(0): Output VGA connected (II) intel(0): Using exact sizes for initial modes (II) intel(0): Output VGA using initial mode 1024x768 (=3D=3D) intel(0): Write-combining range (0xa0000,0x10000) was already cl= ear (II) intel(0): detected 128 kB GTT. (II) intel(0): detected 8060 kB stolen memory. (=3D=3D) intel(0): video overlay key set to 0x101fe (=3D=3D) intel(0): Will not try to enable page flipping (=3D=3D) intel(0): Triple buffering disabled (=3D=3D) intel(0): Using gamma correction (1.0, 1.0, 1.0) (**) intel(0): Display dimensions: (300, 230) mm (**) intel(0): DPI set to (86, 84) (II) Loading sub module "fb" (II) LoadModule: "fb" (II) Loading /usr/local/lib/xorg/modules//libfb.so (II) Module fb: vendor=3D"X.Org Foundation" compiled for 1.6.0, module version =3D 1.0.0 ABI class: X.Org ANSI C Emulation, version 0.4 (II) Loading sub module "ramdac" (II) LoadModule: "ramdac" (II) Module "ramdac" already built-in (II) intel(0): Comparing regs from server start up to After PreInit (=3D=3D) Depth 24 pixmap format is 32 bpp (II) do I need RAC? No, I don't. (II) resource ranges after preInit: [0] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[B] [1] -1 0 0x000c0000 - 0x000effff (0x30000) MX[B] [2] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[B] [3] 0 0 0x000a0000 - 0x000affff (0x10000) MS[B](OprD) [4] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[B](OprD) [5] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[B](OprD) [6] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[B] [7] -1 0 0x00000000 - 0x000000ff (0x100) IX[B] [8] 0 0 0x000003b0 - 0x000003bb (0xc) IS[B](OprU) [9] 0 0 0x000003c0 - 0x000003df (0x20) IS[B](OprU) (II) intel(0): Kernel reported 112640 total, 0 used (II) intel(0): I830CheckAvailableMemory: 450560 kB available drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: Searching for BusID pci:0000:00:02.0 drmOpenDevice: node name is /dev/dri/card0 drmOpenDevice: open result is 11, (OK) drmOpenByBusid: drmOpenMinor returns 11 drmOpenByBusid: drmGetBusid reports pci:0000:00:02.0 (II) intel(0): [DRI2] Setup complete (**) intel(0): Framebuffer compression disabled (**) intel(0): Tiling enabled (=3D=3D) intel(0): VideoRam: 131072 KB (II) intel(0): Attempting memory allocation with tiled buffers. (II) intel(0): Tiled allocation successful. (II) intel(0): Page Flipping disabled (II) intel(0): vgaHWGetIOBase: hwp->IOBase is 0x03d0, hwp->PIOOffset is 0= x0000 (=3D=3D) intel(0): Write-combining range (0xa0000,0x10000) was already cl= ear (II) UXA(0): Driver registered support for the following operations: (II) solid (II) copy (II) composite (RENDER acceleration) (=3D=3D) intel(0): Backing store disabled (=3D=3D) intel(0): Silken mouse enabled (II) intel(0): Initializing HW Cursor (II) intel(0): xf86BindGARTMemory: bind key 9 at 0x007df000 (pgoffset 201= 5) (II) intel(0): xf86BindGARTMemory: bind key 10 at 0x00800000 (pgoffset 20= 48) (II) intel(0): Fixed memory allocation layout: (II) intel(0): 0x00000000-0x0001ffff: ring buffer (128 kB) (II) intel(0): 0x00020000-0x00024fff: HW cursors (20 kB) (II) intel(0): 0x00025000-0x00124fff: fake bufmgr (1024 kB) (II) intel(0): 0x007df000: end of stolen memory (II) intel(0): 0x007df000-0x007dffff: overlay registers (4 kB, 0x00000000= 0cdc8000 physical ) (II) intel(0): 0x00800000-0x00bfffff: front buffer (4096 kB) (II) intel(0): 0x08000000: end of aperture (WW) intel(0): PRB0_CTL (0x0001f001) indicates ring buffer enabled (WW) intel(0): Existing errors found in hardware state. _fence_emit_internal: drm_i915_irq_emit: 22 >How-To-Repeat: use i386 with intel i845 chipset with above xorg.conf >Fix: no idea, also see ports/132041 >Release-Note: >Audit-Trail: >Unformatted: From koie at suri.co.jp Fri May 1 11:00:09 2009 From: koie at suri.co.jp (KOIE Hidetaka) Date: Fri May 1 11:00:16 2009 Subject: ports/134133: svn commit crashes. Message-ID: <200905011054.n41AsDcJ046335@www.freebsd.org> >Number: 134133 >Category: ports >Synopsis: svn commit crashes. >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri May 01 11:00:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: KOIE Hidetaka >Release: 8.0-CURRENT >Organization: SURIGIKEN >Environment: FreeBSD guriandgura 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Thu Feb 5 04:32:41 JST 2009 koie@guriandgura:/usr/obj/usr/src/sys/GURIANDGURA amd64 >Description: koie@guriandgura% svn commit -m "comment" xxx.c セグメントエラー(coreを出力しました) koie@guriandgura% >How-To-Repeat: >Fix: Patch attached with submission follows: diff -rpub work/subversion-1.6.1/subversion/svn/util.c work.koie/subversion-1.6.1/subversion/svn/util.c --- work/subversion-1.6.1/subversion/svn/util.c 2009-05-01 19:46:19.343032366 +0900 +++ work.koie/subversion-1.6.1/subversion/svn/util.c 2009-05-01 19:37:26.564747690 +0900 @@ -753,7 +753,7 @@ svn_cl__get_log_message(const char **log that follows it. */ truncate_buffer_at_prefix(&(log_msg_buf->len), log_msg_buf->data, EDITOR_EOF_PREFIX); - cleanmsg(NULL, (char*)*log_msg_buf->data); + cleanmsg(NULL, (char*)log_msg_buf->data); /* Make a string from a stringbuf, sharing the data allocation. */ log_msg_str->data = log_msg_buf->data; >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Fri May 1 11:25:28 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri May 1 11:25:35 2009 Subject: ports/134133: svn commit crashes. Message-ID: <200905011125.n41BPSlq018104@freefall.freebsd.org> Synopsis: svn commit crashes. Responsible-Changed-From-To: freebsd-ports-bugs->lev Responsible-Changed-By: miwi Responsible-Changed-When: Fri May 1 11:25:27 UTC 2009 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=134133 From ports at logvinov.com Fri May 1 12:10:05 2009 From: ports at logvinov.com (Alexander Logvinov) Date: Fri May 1 12:10:18 2009 Subject: ports/134134: [maintainer update] net/grdc: update to 0.5.1 Message-ID: <200905011206.n41C6M9B098474@blg.akavia.ru> >Number: 134134 >Category: ports >Synopsis: [maintainer update] net/grdc: update to 0.5.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri May 01 12:10:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexander Logvinov >Release: FreeBSD 6.4-RELEASE i386 >Organization: >Environment: >Description: Update to 0.5.1. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net/grdc/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 23 Apr 2009 17:30:12 -0000 1.1 +++ Makefile 1 May 2009 12:03:27 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/net/grdc/Makefile,v 1.1 2009/04/23 17:30:12 miwi Exp $ PORTNAME= grdc -PORTVERSION= 0.5.0 +PORTVERSION= 0.5.1 CATEGORIES= net gnome MASTER_SITES= SF Index: distinfo =================================================================== RCS file: /home/pcvs/ports/net/grdc/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 23 Apr 2009 17:30:12 -0000 1.1 +++ distinfo 1 May 2009 12:03:27 -0000 @@ -1,3 +1,3 @@ -MD5 (grdc-0.5.0.tar.gz) = 6209476d9779db461220d1687db9ae30 -SHA256 (grdc-0.5.0.tar.gz) = 1b8f3b59d9a9e10673a37d5994018a26e2b24c1e4cae8e58153f2178877c5eb2 -SIZE (grdc-0.5.0.tar.gz) = 196929 +MD5 (grdc-0.5.1.tar.gz) = 8b669c067566b78acf85576082454cfc +SHA256 (grdc-0.5.1.tar.gz) = 696aa60c622951b2965ac44e6831a36c614f44451e9831a6b20cc57c47e6842f +SIZE (grdc-0.5.1.tar.gz) = 197284 >Release-Note: >Audit-Trail: >Unformatted: From ports at logvinov.com Fri May 1 12:10:06 2009 From: ports at logvinov.com (Alexander Logvinov) Date: Fri May 1 12:10:18 2009 Subject: ports/134135: [maintainer update] net/grdc-applet: update to 0.5.1 Message-ID: <200905011206.n41C6VdN098527@blg.akavia.ru> >Number: 134135 >Category: ports >Synopsis: [maintainer update] net/grdc-applet: update to 0.5.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri May 01 12:10:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexander Logvinov >Release: FreeBSD 6.4-RELEASE i386 >Organization: >Environment: >Description: Update to 0.5.1. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net/grdc-applet/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 26 Apr 2009 23:45:29 -0000 1.1 +++ Makefile 1 May 2009 12:03:32 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/net/grdc-applet/Makefile,v 1.1 2009/04/26 23:45:29 miwi Exp $ PORTNAME= grdc -PORTVERSION= 0.5.0 +PORTVERSION= 0.5.1 CATEGORIES= net gnome MASTER_SITES= SF/grdc PKGNAMESUFFIX= -applet Index: distinfo =================================================================== RCS file: /home/pcvs/ports/net/grdc-applet/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 26 Apr 2009 23:45:29 -0000 1.1 +++ distinfo 1 May 2009 12:03:32 -0000 @@ -1,3 +1,3 @@ -MD5 (grdc-gnome-0.5.0.tar.gz) = 155cc1e20de66c8327973c079071ea3e -SHA256 (grdc-gnome-0.5.0.tar.gz) = ce818a22b5b6b01ba2649af1e2d961a13b400caffe19c0ac67972eddb096073a -SIZE (grdc-gnome-0.5.0.tar.gz) = 115329 +MD5 (grdc-gnome-0.5.1.tar.gz) = 14f45933c815d5143451df1c55b78cad +SHA256 (grdc-gnome-0.5.1.tar.gz) = b287320c7e0e1fccb35dc91ac704de9a05c38ecfb9382484679ac55179ba501b +SIZE (grdc-gnome-0.5.1.tar.gz) = 115452 >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Fri May 1 12:45:37 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri May 1 12:45:49 2009 Subject: ports/134134: [maintainer update] net/grdc: update to 0.5.1 Message-ID: <200905011245.n41CjaNh028336@freefall.freebsd.org> Synopsis: [maintainer update] net/grdc: update to 0.5.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri May 1 12:45:36 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134134 From miwi at FreeBSD.org Fri May 1 12:45:39 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri May 1 12:45:49 2009 Subject: ports/134135: [maintainer update] net/grdc-applet: update to 0.5.1 Message-ID: <200905011245.n41CjcMm028402@freefall.freebsd.org> Synopsis: [maintainer update] net/grdc-applet: update to 0.5.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri May 1 12:45:38 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134135 From ports at logvinov.com Fri May 1 13:30:04 2009 From: ports at logvinov.com (Alexander Logvinov) Date: Fri May 1 13:30:10 2009 Subject: ports/134136: [PATCH] net-im/pidgin-libnotify: update to 0.14 Message-ID: <200905011321.n41DLken099235@blg.akavia.ru> >Number: 134136 >Category: ports >Synopsis: [PATCH] net-im/pidgin-libnotify: update to 0.14 >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 May 01 13:30:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexander Logvinov >Release: FreeBSD 6.4-RELEASE i386 >Organization: >Environment: >Description: Update to 0.14. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net-im/pidgin-libnotify/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 25 Dec 2008 23:57:47 -0000 1.10 +++ Makefile 1 May 2009 13:06:40 -0000 @@ -6,8 +6,7 @@ # PORTNAME= libnotify -PORTVERSION= 0.13 -PORTREVISION= 6 +PORTVERSION= 0.14 CATEGORIES= net-im MASTER_SITES= SF MASTER_SITE_SUBDIR= gaim-libnotify @@ -24,6 +23,7 @@ GNU_CONFIGURE= yes USE_LDCONFIG= yes +USE_GMAKE= yes USE_GNOME= pkgconfig gtk20 .if defined(WITHOUT_NLS) Index: distinfo =================================================================== RCS file: /home/pcvs/ports/net-im/pidgin-libnotify/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 15 Jul 2007 21:35:33 -0000 1.1 +++ distinfo 1 May 2009 13:06:40 -0000 @@ -1,3 +1,3 @@ -MD5 (pidgin-libnotify-0.13.tar.gz) = cb71adcb3aa116b6480281e211e61fda -SHA256 (pidgin-libnotify-0.13.tar.gz) = 2a2aa46f23fac202bb23c2a7bb297576e8e43a0dac7ca67cf5363eb489d24593 -SIZE (pidgin-libnotify-0.13.tar.gz) = 356042 +MD5 (pidgin-libnotify-0.14.tar.gz) = bfb5368b69c02d429b2b17c00a6673c0 +SHA256 (pidgin-libnotify-0.14.tar.gz) = 74f4a9f20e0a483df39974178f1f2380786176189512bcd438e4ada280ec3abe +SIZE (pidgin-libnotify-0.14.tar.gz) = 316365 Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/net-im/pidgin-libnotify/pkg-plist,v retrieving revision 1.2 diff -u -r1.2 pkg-plist --- pkg-plist 25 Dec 2008 23:57:47 -0000 1.2 +++ pkg-plist 1 May 2009 13:06:40 -0000 @@ -1,3 +1,5 @@ +%%NLS%%share/locale/bg/LC_MESSAGES/pidgin-libnotify.mo +%%NLS%%share/locale/de/LC_MESSAGES/pidgin-libnotify.mo %%NLS%%share/locale/es/LC_MESSAGES/pidgin-libnotify.mo %%NLS%%share/locale/fr/LC_MESSAGES/pidgin-libnotify.mo %%NLS%%share/locale/gl/LC_MESSAGES/pidgin-libnotify.mo @@ -10,6 +12,7 @@ %%NLS%%share/locale/ro/LC_MESSAGES/pidgin-libnotify.mo %%NLS%%share/locale/ru/LC_MESSAGES/pidgin-libnotify.mo %%NLS%%share/locale/sl/LC_MESSAGES/pidgin-libnotify.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pidgin-libnotify.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/pidgin-libnotify.mo lib/purple-2/pidgin-libnotify.so lib/purple-2/pidgin-libnotify.la Index: files/patch-configure =================================================================== RCS file: files/patch-configure diff -N files/patch-configure --- files/patch-configure 25 Dec 2008 23:57:47 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,11 +0,0 @@ ---- configure.orig 2008-11-30 23:12:58.000000000 +0900 -+++ configure 2008-11-30 23:13:08.000000000 +0900 -@@ -19855,7 +19855,7 @@ - - GETTEXT_PACKAGE=pidgin-libnotify - --ALL_LINGUAS="es fr it nl pl pt pt_BR sl hu zh_CN ro gl" -+ALL_LINGUAS="es fr it nl pl pt pt_BR sl hu zh_CN ro gl ru" - - - for ac_header in locale.h Index: files/patch-po_ru.po =================================================================== RCS file: files/patch-po_ru.po diff -N files/patch-po_ru.po --- files/patch-po_ru.po 25 Dec 2008 23:57:47 -0000 1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,76 +0,0 @@ ---- po/ru.po 1970-01-01 09:00:00.000000000 +0900 -+++ po/ru.po 2008-11-30 23:18:38.000000000 +0900 -@@ -0,0 +1,73 @@ -+# Russian translations for pidgin-libnotify. -+# Copyright (C) 2008 Alexander Logvinov -+# This file is distributed under the same license as the pidgin-libnotify package. -+# Alexander Logvinov , 2008. -+# -+msgid "" -+msgstr "" -+"Project-Id-Version: pidgin-libnotify\n" -+"Report-Msgid-Bugs-To: \n" -+"POT-Creation-Date: 2007-06-30 19:58+0000\n" -+"PO-Revision-Date: 2008-11-30 22:51+0900\n" -+"Last-Translator: Alexander Logvinov \n" -+"Language-Team: Russian\n" -+"MIME-Version: 1.0\n" -+"Content-Type: text/plain; charset=UTF-8\n" -+"Content-Transfer-Encoding: 8bit\n" -+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -+ -+#: src/pidgin-libnotify.c:57 -+msgid "New messages" -+msgstr "Новые сообщения" -+ -+#: src/pidgin-libnotify.c:62 -+msgid "Only new conversations" -+msgstr "Только новые беседы" -+ -+#: src/pidgin-libnotify.c:67 -+msgid "Ignore events from blocked users" -+msgstr "Игнорировать события заблокированных пользователей" -+ -+#: src/pidgin-libnotify.c:72 -+msgid "Buddy signs on" -+msgstr "Собеседник входит в сеть" -+ -+#: src/pidgin-libnotify.c:77 -+msgid "Buddy signs off" -+msgstr "Собеседник выходит из сети" -+ -+#: src/pidgin-libnotify.c:315 -+msgid "Show" -+msgstr "Показать" -+ -+#: src/pidgin-libnotify.c:347 -+#, c-format -+msgid "%s signed on" -+msgstr "%s входит в сеть" -+ -+#: src/pidgin-libnotify.c:379 -+#, c-format -+msgid "%s signed off" -+msgstr "%s выходит из сети" -+ -+#: src/pidgin-libnotify.c:406 -+#, c-format -+msgid "%s says:" -+msgstr "%s пишет:" -+ -+#: src/pidgin-libnotify.c:572 -+msgid "Libnotify Popups" -+msgstr "Всплывающие окна libnotify" -+ -+#: src/pidgin-libnotify.c:573 -+msgid "Displays popups via libnotify." -+msgstr "Показывает всплывающие окна через libnotify. " -+ -+#: src/pidgin-libnotify.c:574 -+msgid "" -+"Pidgin-libnotify:\n" -+"Displays popups via libnotify." -+msgstr "" -+"Поддержка libnotify для Pidgin:\n" -+"Показывает всплывающие окна через libnotify." >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri May 1 13:30:16 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri May 1 13:30:23 2009 Subject: ports/134136: [PATCH] net-im/pidgin-libnotify: update to 0.14 Message-ID: <200905011330.n41DUGi9082752@freefall.freebsd.org> Synopsis: [PATCH] net-im/pidgin-libnotify: update to 0.14 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri May 1 13:30:15 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134136 From edwin at FreeBSD.org Fri May 1 13:40:02 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Fri May 1 13:40:08 2009 Subject: ports/134136: [PATCH] net-im/pidgin-libnotify: update to 0.14 Message-ID: <200905011340.n41De251096493@freefall.freebsd.org> The following reply was made to PR ports/134136; it has been noted by GNATS. From: Edwin Groothuis To: meethune@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/134136: [PATCH] net-im/pidgin-libnotify: update to 0.14 Date: Fri, 1 May 2009 13:30:11 UT Maintainer of net-im/pidgin-libnotify, Please note that PR ports/134136 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/134136 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From cristianorolim at hotmail.com Fri May 1 14:50:03 2009 From: cristianorolim at hotmail.com (Cristiano Rolim Pereira) Date: Fri May 1 14:50:09 2009 Subject: ports/134137: [new port] sysutils/rsyslog4-rfc3195: RFC3195 input support for rsyslog Message-ID: <200905011449.n41EnZY4079333@www.freebsd.org> >Number: 134137 >Category: ports >Synopsis: [new port] sysutils/rsyslog4-rfc3195: RFC3195 input support for rsyslog >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 May 01 14:50:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Cristiano Rolim Pereira >Release: 7.1-RELEASE >Organization: >Environment: FreeBSD freebsd7.casa 7.0-RELEASE-p5 FreeBSD 7.0-RELEASE-p5 #1: Wed Nov 19 11:43:40 BRST 2008 root@freebsd7.casa:/usr/src/sys/i386/compile/BSD i386 >Description: slave port for sysutils/rsyslog4. Add support for rfc 3195 (Reliable Delivery for syslog) WWW: http://www.rfc-archive.org/getrfc.php?rfc=3195 >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: # # rsyslog4-rfc3195/ # rsyslog4-rfc3195/Makefile # echo c - rsyslog4-rfc3195/ mkdir -p rsyslog4-rfc3195/ > /dev/null 2>&1 echo x - rsyslog4-rfc3195/Makefile sed 's/^X//' >rsyslog4-rfc3195/Makefile << 'END-of-rsyslog4-rfc3195/Makefile' X# New ports collection makefile for: rsyslog4-snmp X# Date created: 29 December 2008 X# Whom: Cristiano Rolim Pereira X# X# $FreeBSD: ports/sysutils/rsyslog4-snmp/Makefile,v 1.1 2009/01/27 19:52:01 pgollucci Exp $ X# X XCOMMENT= RFC3195 input support for rsyslog XMASTERDIR= ${.CURDIR}/../rsyslog4 X XMNAME= rfc3195 XBUILD_DEPENDS+= pkg-config:${PORTSDIR}/devel/pkg-config XLIB_DEPENDS+= logging.0:${PORTSDIR}/devel/liblogging X XCONFIGURE_ARGS+=--enable-rfc3195 X XPLIST_FILES+= lib/rsyslog/im3195.la \ X lib/rsyslog/im3195.so X Xdo-install: X @${INSTALL_PROGRAM} \ X ${WRKSRC}/plugins/im3195/.libs/im3195.so ${PREFIX}/lib/rsyslog X @${INSTALL_DATA} \ X ${WRKSRC}/plugins/im3195/im3195.la ${PREFIX}/lib/rsyslog X.include "${MASTERDIR}/Makefile" END-of-rsyslog4-rfc3195/Makefile exit >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Fri May 1 14:57:53 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri May 1 14:57:59 2009 Subject: ports/134137: [new port] sysutils/rsyslog4-rfc3195: RFC3195 input support for rsyslog Message-ID: <200905011457.n41EvqfH003135@freefall.freebsd.org> Synopsis: [new port] sysutils/rsyslog4-rfc3195: RFC3195 input support for rsyslog Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri May 1 14:57:52 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134137 From leeym at FreeBSD.org Fri May 1 15:30:02 2009 From: leeym at FreeBSD.org (Yen-Ming Lee) Date: Fri May 1 15:30:09 2009 Subject: ports/134138: [PATCH] www/p5-CGI-Application-Plugin-Authentication: update to 0.13 Message-ID: <200905011527.n41FRUFM028644@cn1.leeym.com> >Number: 134138 >Category: ports >Synopsis: [PATCH] www/p5-CGI-Application-Plugin-Authentication: update to 0.13 >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 May 01 15:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 7.0-RELEASE i386 >Organization: >Environment: System: FreeBSD cn1.leeym.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 >Description: - Update to 0.13 Port maintainer (hartzell@alerce.com) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-CGI-Application-Plugin-Authentication-0.13.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/p5-CGI-Application-Plugin-Authentication/Makefile,v retrieving revision 1.2 diff -u -d -b -w -u -r1.2 Makefile --- Makefile 1 Feb 2009 19:43:11 -0000 1.2 +++ Makefile 1 May 2009 15:27:27 -0000 @@ -6,29 +6,24 @@ # PORTNAME= CGI-Application-Plugin-Authentication -PORTVERSION= 0.12 +PORTVERSION= 0.13 CATEGORIES= www perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} -MASTER_SITE_SUBDIR= CGI +MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= hartzell@alerce.com COMMENT= Support for authenticating requests in CGI::Application -BUILD_DEPENDS= ${SITE_PERL}/CGI/Application.pm:${PORTSDIR}/www/p5-CGI-Application \ - ${SITE_PERL}/CGI/Application/Plugin/Session.pm:${PORTSDIR}/www/p5-CGI-Application-Plugin-Session \ - ${SITE_PERL}/${PERL_ARCH}/Scalar/Util.pm:${PORTSDIR}/lang/p5-Scalar-List-Utils \ - ${SITE_PERL}/Class/ISA.pm:${PORTSDIR}/devel/p5-Class-ISA \ - ${SITE_PERL}/Attribute/Handlers.pm:${PORTSDIR}/devel/p5-Attribute-Handlers \ - ${SITE_PERL}/UNIVERSAL/require.pm:${PORTSDIR}/devel/p5-UNIVERSAL-require \ - ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple \ - ${SITE_PERL}/Test/Exception.pm:${PORTSDIR}/devel/p5-Test-Exception \ - ${SITE_PERL}/Test/Warn.pm:${PORTSDIR}/devel/p5-Test-Warn \ - ${SITE_PERL}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-SHA1 \ - ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= p5-Apache-Htpasswd>=0:${PORTSDIR}/security/p5-Apache-Htpasswd \ + p5-CGI-Application>=4:${PORTSDIR}/www/p5-CGI-Application \ + p5-Digest-SHA1>=0:${PORTSDIR}/security/p5-Digest-SHA1 \ + p5-UNIVERSAL-require>=0:${PORTSDIR}/devel/p5-UNIVERSAL-require +BUILD_DEPENDS= ${RUN_DEPENDS} +BUILD_DEPENDS+= p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \ + p5-Task-Weaken>=0:${PORTSDIR}/devel/p5-Task-Weaken \ + p5-Test-Warn>=0.11:${PORTSDIR}/devel/p5-Test-Warn -PERL_MODBUILD= 5.8.0+ +PERL_MODBUILD= yes MAN3= CGI::Application::Plugin::Authentication::Driver.3 \ CGI::Application::Plugin::Authentication::Driver::Filter::strip.3 \ @@ -47,4 +42,13 @@ CGI::Application::Plugin::Authentication::Driver::HTPasswd.3 \ CGI::Application::Plugin::Authentication::Driver::Dummy.3 -.include +.include + +.if ${PERL_LEVEL} < 500703 +RUN_DEPENDS+= p5-Attribute-Handlers>=0:${PORTSDIR}/devel/p5-Attribute-Handlers \ + p5-Class-ISA>=0:${PORTSDIR}/devel/p5-Class-ISA \ + p5-MIME-Base64>=0:${PORTSDIR}/converters/p5-MIME-Base64 \ + p5-Scalar-List-Utils>=0:${PORTSDIR}/lang/p5-Scalar-List-Utils +.endif + +.include Index: distinfo =================================================================== RCS file: /home/pcvs/ports/www/p5-CGI-Application-Plugin-Authentication/distinfo,v retrieving revision 1.1 diff -u -d -b -w -u -r1.1 distinfo --- distinfo 7 Dec 2008 14:34:29 -0000 1.1 +++ distinfo 1 May 2009 15:27:27 -0000 @@ -1,3 +1,3 @@ -MD5 (CGI-Application-Plugin-Authentication-0.12.tar.gz) = a5f9dcf8752c4a705f3b6b40eb874666 -SHA256 (CGI-Application-Plugin-Authentication-0.12.tar.gz) = b99c2a3cb5ecb50bacbaacc46585379e88e5023126f2babe1e20682a5f798fcf -SIZE (CGI-Application-Plugin-Authentication-0.12.tar.gz) = 47778 +MD5 (CGI-Application-Plugin-Authentication-0.13.tar.gz) = 9e6842d643cab3a4d58dcda9e1609f04 +SHA256 (CGI-Application-Plugin-Authentication-0.13.tar.gz) = 1e18e5bc51ce852a1156daead830ed12c2a57b4a933cde5dd068f5bb56767133 +SIZE (CGI-Application-Plugin-Authentication-0.13.tar.gz) = 49126 --- p5-CGI-Application-Plugin-Authentication-0.13.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri May 1 15:30:16 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri May 1 15:30:22 2009 Subject: ports/134138: [PATCH] www/p5-CGI-Application-Plugin-Authentication: update to 0.13 Message-ID: <200905011530.n41FUFr0044466@freefall.freebsd.org> Synopsis: [PATCH] www/p5-CGI-Application-Plugin-Authentication: update to 0.13 Responsible-Changed-From-To: freebsd-ports-bugs->leeym Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 1 15:30:14 UTC 2009 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134138 From villa.alberto at gmail.com Fri May 1 16:00:08 2009 From: villa.alberto at gmail.com (Alberto Villa) Date: Fri May 1 16:00:14 2009 Subject: ports/134139: [maintainer update] multimedia/mlt 0.3.6 -> 0.3.8 Message-ID: <200905011555.n41FtoIT040997@www.freebsd.org> >Number: 134139 >Category: ports >Synopsis: [maintainer update] multimedia/mlt 0.3.6 -> 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: Fri May 01 16:00:07 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alberto Villa >Release: FreeBSD 7-STABLE >Organization: >Environment: FreeBSD echo.hoth 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #3: Thu Apr 23 15:17:20 CEST 2009 root@echo.hoth:/usr/obj/usr/src/sys/TPR60 i386 >Description: update to 0.3.8 and mark jobs safe >How-To-Repeat: >Fix: deleted files (committed in upstream): - patch-src-albino-Makefile - patch-src-inigo-Makefile - patch-src-humperdink-Makefile - patch-src-miracle-Makefile Patch attached with submission follows: diff -ruN /usr/ports/multimedia/mlt/Makefile mlt/Makefile --- /usr/ports/multimedia/mlt/Makefile 2009-04-27 03:29:37.000000000 +0200 +++ mlt/Makefile 2009-05-01 17:26:31.000000000 +0200 @@ -5,8 +5,7 @@ # $FreeBSD: ports/multimedia/mlt/Makefile,v 1.4 2009/04/25 16:16:40 makc Exp $ PORTNAME= mlt -PORTVERSION= 0.3.6 -PORTREVISION= 1 +PORTVERSION= 0.3.8 CATEGORIES= multimedia MASTER_SITES= SFE @@ -16,14 +15,15 @@ USE_GNOME= libxml2 gnomehack USE_QT_VER= 4 USE_SDL= image -HAS_CONFIGURE= yes +MAKE_JOBS_SAFE= yes +GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-debug \ --enable-gpl \ --enable-sdl \ --enable-westley USE_GMAKE= yes CFLAGS+= -I${LOCALBASE}/include -USE_LDCONFIG= yes +USE_LDCONFIG= ${PREFIX}/lib ${PREFIX}/lib/mlt PORTDOCS= AUTHORS ChangeLog COPYING \ GPL NEWS README docs demo diff -ruN /usr/ports/multimedia/mlt/distinfo mlt/distinfo --- /usr/ports/multimedia/mlt/distinfo 2009-04-12 23:21:47.000000000 +0200 +++ mlt/distinfo 2009-04-22 16:39:46.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (mlt-0.3.6.tar.gz) = 70c8b9bf4593c37d2258670fc4fe1913 -SHA256 (mlt-0.3.6.tar.gz) = da82437e3a03f6ef835c3546aa2c8c0fb16a0d47925c3c7d56db3db90d2ecfc5 -SIZE (mlt-0.3.6.tar.gz) = 755211 +MD5 (mlt-0.3.8.tar.gz) = 5d7f8d4ecda0d57da35e3ff333073d12 +SHA256 (mlt-0.3.8.tar.gz) = cea314c08cf2a9256ef50f9cd09202f1c8c778ad278c324112e3c8a9d3b28e24 +SIZE (mlt-0.3.8.tar.gz) = 765811 diff -ruN /usr/ports/multimedia/mlt/files/patch-src-albino-Makefile mlt/files/patch-src-albino-Makefile --- /usr/ports/multimedia/mlt/files/patch-src-albino-Makefile 2009-04-12 23:21:47.000000000 +0200 +++ mlt/files/patch-src-albino-Makefile 1970-01-01 01:00:00.000000000 +0100 @@ -1,11 +0,0 @@ ---- src/albino/Makefile.orig 2009-02-16 18:36:06.000000000 +0000 -+++ src/albino/Makefile 2009-02-16 18:36:28.000000000 +0000 -@@ -6,7 +6,7 @@ - - CFLAGS += -I.. $(RDYNAMIC) - --LDFLAGS += -L../miracle -lmiracle -L../valerie -lvalerie -L../miracle -lmiracle -L../framework -lmlt -+LDFLAGS += -L../miracle -lmiracle -L../valerie -lvalerie -L../miracle -lmiracle -L../framework -lmlt -lpthread - - SRCS := $(OBJS:.o=.c) - diff -ruN /usr/ports/multimedia/mlt/files/patch-src-humperdink-Makefile mlt/files/patch-src-humperdink-Makefile --- /usr/ports/multimedia/mlt/files/patch-src-humperdink-Makefile 2009-04-12 23:21:47.000000000 +0200 +++ mlt/files/patch-src-humperdink-Makefile 1970-01-01 01:00:00.000000000 +0100 @@ -1,11 +0,0 @@ ---- src/humperdink/Makefile.orig 2009-02-16 18:32:56.000000000 +0000 -+++ src/humperdink/Makefile 2009-02-16 18:33:04.000000000 +0000 -@@ -8,7 +8,7 @@ - - CFLAGS += -I.. $(RDYNAMIC) - --LDFLAGS += -L../valerie -L../framework -lvalerie -lmlt -+LDFLAGS += -L../valerie -L../framework -lvalerie -lmlt -lpthread - - SRCS := $(OBJS:.o=.c) - diff -ruN /usr/ports/multimedia/mlt/files/patch-src-inigo-Makefile mlt/files/patch-src-inigo-Makefile --- /usr/ports/multimedia/mlt/files/patch-src-inigo-Makefile 2009-04-12 23:21:47.000000000 +0200 +++ mlt/files/patch-src-inigo-Makefile 1970-01-01 01:00:00.000000000 +0100 @@ -1,11 +0,0 @@ ---- src/inigo/Makefile.orig 2009-02-16 18:26:08.000000000 +0000 -+++ src/inigo/Makefile 2009-02-16 18:26:18.000000000 +0000 -@@ -7,7 +7,7 @@ - - CFLAGS += -I.. $(RDYNAMIC) -DVERSION=\"$(version)\" - --LDFLAGS += -L../framework -lmlt -+LDFLAGS += -L../framework -lmlt -lpthread - - SRCS := $(OBJS:.o=.c) - diff -ruN /usr/ports/multimedia/mlt/files/patch-src-miracle-Makefile mlt/files/patch-src-miracle-Makefile --- /usr/ports/multimedia/mlt/files/patch-src-miracle-Makefile 2009-04-12 23:21:47.000000000 +0200 +++ mlt/files/patch-src-miracle-Makefile 1970-01-01 01:00:00.000000000 +0100 @@ -1,11 +0,0 @@ ---- src/miracle/Makefile.orig 2009-02-16 18:29:23.000000000 +0000 -+++ src/miracle/Makefile 2009-02-16 18:29:43.000000000 +0000 -@@ -32,7 +32,7 @@ - - CFLAGS += -I.. $(RDYNAMIC) - --LDFLAGS += -L../valerie -lvalerie -L../framework -lmlt -+LDFLAGS += -L../valerie -lvalerie -L../framework -lmlt -lpthread - - SRCS := $(OBJS:.o=.c) - diff -ruN /usr/ports/multimedia/mlt/pkg-plist mlt/pkg-plist --- /usr/ports/multimedia/mlt/pkg-plist 2009-04-12 23:21:47.000000000 +0200 +++ mlt/pkg-plist 2009-04-22 16:39:46.000000000 +0200 @@ -4,6 +4,7 @@ bin/miracle bin/mlt-config include/mlt/framework/mlt.h +include/mlt/framework/mlt_cache.h include/mlt/framework/mlt_consumer.h include/mlt/framework/mlt_deque.h include/mlt/framework/mlt_events.h @@ -40,13 +41,13 @@ include/mlt/valerie/valerie_tokeniser.h include/mlt/valerie/valerie_util.h lib/libmiracle.so -lib/libmiracle.so.0.3.6 +lib/libmiracle.so.0.3.8 lib/libmiracle.so.1 lib/libmlt.so -lib/libmlt.so.0.3.6 +lib/libmlt.so.0.3.8 lib/libmlt.so.1 lib/libvalerie.so -lib/libvalerie.so.0.3.6 +lib/libvalerie.so.0.3.8 lib/libvalerie.so.1 %%AVFORMAT%%lib/mlt/libmltavformat.so lib/mlt/libmltcore.so @@ -158,6 +159,7 @@ %%DATADIR%%/profiles/atsc_1080p_2997 %%DATADIR%%/profiles/atsc_1080p_30 %%DATADIR%%/profiles/atsc_720p_30 +%%DATADIR%%/profiles/cif_15 %%DATADIR%%/profiles/cif_ntsc %%DATADIR%%/profiles/cif_pal %%DATADIR%%/profiles/cvd_ntsc @@ -174,8 +176,10 @@ %%DATADIR%%/profiles/hdv_720_30p %%DATADIR%%/profiles/hdv_720_50p %%DATADIR%%/profiles/hdv_720_60p +%%DATADIR%%/profiles/qcif_15 %%DATADIR%%/profiles/qcif_ntsc %%DATADIR%%/profiles/qcif_pal +%%DATADIR%%/profiles/quarter_15 %%DATADIR%%/profiles/quarter_ntsc %%DATADIR%%/profiles/quarter_ntsc_wide %%DATADIR%%/profiles/quarter_pal >Release-Note: >Audit-Trail: >Unformatted: From villa.alberto at gmail.com Fri May 1 16:10:02 2009 From: villa.alberto at gmail.com (Alberto Villa) Date: Fri May 1 16:10:09 2009 Subject: ports/134140: [maintainer update] multimedia/mlt++ 0.3.6 -> 0.3.8 Message-ID: <200905011604.n41G489X041627@www.freebsd.org> >Number: 134140 >Category: ports >Synopsis: [maintainer update] multimedia/mlt++ 0.3.6 -> 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: Fri May 01 16:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alberto Villa >Release: FreeBSD 7-STABLE >Organization: >Environment: FreeBSD echo.hoth 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #3: Thu Apr 23 15:17:20 CEST 2009 root@echo.hoth:/usr/obj/usr/src/sys/TPR60 i386 >Description: update to 0.3.8 and mark jobs safe >How-To-Repeat: >Fix: requires ports/134139 Patch attached with submission follows: diff -ruN /usr/ports/multimedia/mlt++/Makefile mlt++/Makefile --- /usr/ports/multimedia/mlt++/Makefile 2009-04-27 03:29:37.000000000 +0200 +++ mlt++/Makefile 2009-05-01 17:45:20.000000000 +0200 @@ -5,8 +5,7 @@ # $FreeBSD: ports/multimedia/mlt++/Makefile,v 1.3 2009/04/25 16:16:40 makc Exp $ PORTNAME= mlt++ -PORTVERSION= 0.3.6 -PORTREVISION= 1 +PORTVERSION= 0.3.8 CATEGORIES= multimedia MASTER_SITES= SFE MASTER_SITE_SUBDIR= mlt @@ -16,12 +15,13 @@ LIB_DEPENDS= mlt.1:${PORTSDIR}/multimedia/mlt -HAS_CONFIGURE= yes +MAKE_JOBS_SAFE= yes +GNU_CONFIGURE= yes USE_GMAKE= yes USE_LDCONFIG= yes -PORTDOCS= AUTHORS COPYING CUSTOMISING \ - HOWTO README +PORTDOCS= AUTHORS ChangeLog COPYING \ + CUSTOMISING HOWTO README pre-configure: @${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \ diff -ruN /usr/ports/multimedia/mlt++/distinfo mlt++/distinfo --- /usr/ports/multimedia/mlt++/distinfo 2009-04-12 23:22:39.000000000 +0200 +++ mlt++/distinfo 2009-04-22 16:46:18.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (mlt++-0.3.6.tar.gz) = d85c3a5cddc00c12fcef43219bbb81e2 -SHA256 (mlt++-0.3.6.tar.gz) = 64bc4c4181483371e5e54f1740456bcd4d576ccec2ceae5f917a67191da9468c -SIZE (mlt++-0.3.6.tar.gz) = 53164 +MD5 (mlt++-0.3.8.tar.gz) = 49f0381cdf1c2b847c5b08f936e649ae +SHA256 (mlt++-0.3.8.tar.gz) = 24f22f60d23556effec22436e1bc5ed30b4245c15979b602cd199f866a4520ba +SIZE (mlt++-0.3.8.tar.gz) = 51384 diff -ruN /usr/ports/multimedia/mlt++/pkg-plist mlt++/pkg-plist --- /usr/ports/multimedia/mlt++/pkg-plist 2009-04-12 23:22:39.000000000 +0200 +++ mlt++/pkg-plist 2009-04-22 16:46:18.000000000 +0200 @@ -24,6 +24,6 @@ include/mlt++/MltTransition.h include/mlt++/config.h lib/libmlt++.so -lib/libmlt++.so.0.3.6 +lib/libmlt++.so.0.3.8 lib/libmlt++.so.1 @dirrm include/mlt++ >Release-Note: >Audit-Trail: >Unformatted: From villa.alberto at gmail.com Fri May 1 16:20:01 2009 From: villa.alberto at gmail.com (Alberto Villa) Date: Fri May 1 16:20:08 2009 Subject: ports/134141: [maintainer update] multimedia/kdenlive 0.7 -> 0.7.3 Message-ID: <200905011614.n41GE3De052580@www.freebsd.org> >Number: 134141 >Category: ports >Synopsis: [maintainer update] multimedia/kdenlive 0.7 -> 0.7.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Fri May 01 16:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alberto Villa >Release: FreeBSD 7-STABLE >Organization: >Environment: FreeBSD echo.hoth 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #3: Thu Apr 23 15:17:20 CEST 2009 root@echo.hoth:/usr/obj/usr/src/sys/TPR60 i386 >Description: update to 0.7.3 and mark jobs safe currently disabled features: - webcam recording: still no video4linux2 on freebsd - camera acquiring: too many unsupported libraries required - dvd exporting: mkisofs not available on freebsd, will work on this in kdenlive source >How-To-Repeat: >Fix: requires ports/134140 added files (committed in upstream): - files/patch-src-CMakeLists.txt Patch attached with submission follows: diff -ruN /usr/ports/multimedia/kdenlive/Makefile kdenlive/Makefile --- /usr/ports/multimedia/kdenlive/Makefile 2009-04-27 03:29:37.000000000 +0200 +++ kdenlive/Makefile 2009-05-01 17:46:44.000000000 +0200 @@ -5,16 +5,14 @@ # $FreeBSD: ports/multimedia/kdenlive/Makefile,v 1.3 2009/04/25 16:16:39 makc Exp $ PORTNAME= kdenlive -PORTVERSION= 0.7 -PORTREVISION= 2 +PORTVERSION= 0.7.3 CATEGORIES= multimedia kde MASTER_SITES= SFE MAINTAINER= villa.alberto@gmail.com COMMENT= A professional quality non-linear video editing suite for KDE -LIB_DEPENDS= avformat.1:${PORTSDIR}/multimedia/ffmpeg \ - mlt.1:${PORTSDIR}/multimedia/mlt \ +LIB_DEPENDS= mlt.1:${PORTSDIR}/multimedia/mlt \ mlt++.1:${PORTSDIR}/multimedia/mlt++ USE_GETTEXT= yes @@ -22,12 +20,17 @@ USE_QT_VER= 4 QT_COMPONENTS= dbus gui network svg xml \ moc_build qmake_build rcc_build uic_build +MAKE_JOBS_SAFE= yes USE_CMAKE= yes CMAKE_ARGS= -DNO_JOGSHUTTLE:BOOL=On +USE_LDCONFIG= ${PREFIX}/lib/kde4 PORTDOCS= AUTHORS COPYING INSTALL README -OPTIONS= LADSPA "Install LADSPA plugins" on +MAN1= kdenlive.1 kdenlive_render.1 + +OPTIONS= LADSPA "Install LADSPA plugins" on \ + SCREENGRAB "Screen capture with recordMyDesktop" on .include @@ -35,13 +38,17 @@ RUN_DEPENDS+= swhplugins>=0:${PORTSDIR}/audio/swhplugins .endif +.ifdef(WITH_SCREENGRAB) +RUN_DEPENDS+= recordmydesktop:${PORTSDIR}/multimedia/recordmydesktop +.endif + post-patch: # prevent updating mime during build ${REINPLACE_CMD} -e '/^update_xdg_mimetypes/d; /SharedMimeInfo/d' \ ${PATCH_WRKSRC}/src/mimetypes/CMakeLists.txt post-install: - @-update-mime-database ${KDE4_PREFIX}/share/mime + @-update-mime-database ${PREFIX}/share/mime .ifndef(NOPORTDOCS) ${MKDIR} ${DOCSDIR} .for f in ${PORTDOCS} diff -ruN /usr/ports/multimedia/kdenlive/distinfo kdenlive/distinfo --- /usr/ports/multimedia/kdenlive/distinfo 2009-01-29 20:04:07.000000000 +0100 +++ kdenlive/distinfo 2009-04-22 20:53:28.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (kdenlive-0.7.tar.gz) = dfca2fe1fe72737d7f6af80af9c73788 -SHA256 (kdenlive-0.7.tar.gz) = 3fc59fe0be10585577f9dc08a8f9cc0a653361deaad1edcfaae21c859dd31a7d -SIZE (kdenlive-0.7.tar.gz) = 523216 +MD5 (kdenlive-0.7.3.tar.gz) = eb527dad425427f22ae191670bcc1f14 +SHA256 (kdenlive-0.7.3.tar.gz) = dc8ef49d1fab211349a086404b499cc6f19ac34ed227ba51b2f685aac01623d5 +SIZE (kdenlive-0.7.3.tar.gz) = 1987698 diff -ruN /usr/ports/multimedia/kdenlive/files/patch-src-CMakeLists.txt kdenlive/files/patch-src-CMakeLists.txt --- /usr/ports/multimedia/kdenlive/files/patch-src-CMakeLists.txt 1970-01-01 01:00:00.000000000 +0100 +++ kdenlive/files/patch-src-CMakeLists.txt 2009-05-01 17:23:10.000000000 +0200 @@ -0,0 +1,24 @@ +--- src/CMakeLists.txt.orig 2009-05-01 17:21:12.000000000 +0200 ++++ src/CMakeLists.txt 2009-05-01 17:21:48.000000000 +0200 +@@ -2,17 +2,19 @@ + add_subdirectory( widgets ) + add_subdirectory( mimetypes ) + ++find_package(Qt4 REQUIRED) + find_package(Nepomuk REQUIRED) + + include_directories ( ++ ${QT_INCLUDES} ++ ${LIBMLT_INCLUDE_DIR} ++ ${LIBMLTPLUS_INCLUDE_DIR} + ${QDBUS_INCLUDE_DIRS} + ${CMAKE_SOURCE_DIR} + ${CMAKE_BINARY_DIR} + ${KDE4_INCLUDES} + + ${CMAKE_SOURCE_DIR}/src/widgets +- ${LIBMLT_INCLUDE_DIR} +- ${LIBMLTPLUS_INCLUDE_DIR} + ${NEPOMUK_INCLUDES} + ) + diff -ruN /usr/ports/multimedia/kdenlive/pkg-descr kdenlive/pkg-descr --- /usr/ports/multimedia/kdenlive/pkg-descr 2009-01-29 20:04:07.000000000 +0100 +++ kdenlive/pkg-descr 2009-04-22 20:53:28.000000000 +0200 @@ -1,7 +1,7 @@ -Kdenlive is a non-linear video editor for GNU/Linux and FreeBSD, -which supports DV, HDV and AVCHD (not complete yet) editing. Kdenlive -relies on several other open source projects like FFmpeg and the -MLT video framework. It was designed to answer all needs, from -basic video editing to semi-professional work. +Kdenlive is a non-linear video editor for GNU/Linux and FreeBSD, which +supports DV, AVCHD (experimental support) and HDV editing. Kdenlive relies +on several other open source projects, such as FFmpeg and the MLT video +framework. It was designed to answer all needs, from basic video editing to +semi-professional work. WWW: http://www.kdenlive.org diff -ruN /usr/ports/multimedia/kdenlive/pkg-plist kdenlive/pkg-plist --- /usr/ports/multimedia/kdenlive/pkg-plist 2009-01-29 20:04:07.000000000 +0100 +++ kdenlive/pkg-plist 2009-04-22 20:53:28.000000000 +0200 @@ -1,5 +1,6 @@ bin/kdenlive bin/kdenlive_render +lib/kde4/libkdenlive_sampleplugin.so lib/kde4/westleypreview.so share/applications/kde/kdenlive.desktop share/apps/kdenlive/banner.png @@ -8,14 +9,21 @@ share/apps/kdenlive/effects/automask.xml share/apps/kdenlive/effects/boxblur.xml share/apps/kdenlive/effects/brightness.xml +share/apps/kdenlive/effects/channelcopy.xml share/apps/kdenlive/effects/charcoal.xml share/apps/kdenlive/effects/chroma.xml share/apps/kdenlive/effects/chroma_hold.xml +share/apps/kdenlive/effects/crop.xml +share/apps/kdenlive/effects/fade_from_black.xml +share/apps/kdenlive/effects/fade_to_black.xml share/apps/kdenlive/effects/fadein.xml share/apps/kdenlive/effects/fadeout.xml share/apps/kdenlive/effects/freeze.xml +share/apps/kdenlive/effects/frei0r_balanc0r.xml +share/apps/kdenlive/effects/frei0r_colordistance.xml share/apps/kdenlive/effects/frei0r_distort0r.xml share/apps/kdenlive/effects/frei0r_squareblur.xml +share/apps/kdenlive/effects/gain.xml share/apps/kdenlive/effects/gamma.xml share/apps/kdenlive/effects/greyscale.xml share/apps/kdenlive/effects/invert.xml @@ -33,12 +41,18 @@ share/apps/kdenlive/effects/mute.xml share/apps/kdenlive/effects/normalise.xml share/apps/kdenlive/effects/obscure.xml +share/apps/kdenlive/effects/pan_zoom.xml share/apps/kdenlive/effects/rotation.xml share/apps/kdenlive/effects/sepia.xml +share/apps/kdenlive/effects/sox_band.xml +share/apps/kdenlive/effects/sox_bass.xml share/apps/kdenlive/effects/sox_echo.xml share/apps/kdenlive/effects/sox_flanger.xml +share/apps/kdenlive/effects/sox_gain.xml +share/apps/kdenlive/effects/sox_phaser.xml share/apps/kdenlive/effects/sox_pitch.xml share/apps/kdenlive/effects/sox_reverb.xml +share/apps/kdenlive/effects/sox_stretch.xml share/apps/kdenlive/effects/sox_vibro.xml share/apps/kdenlive/effects/threshold.xml share/apps/kdenlive/effects/volume.xml @@ -53,13 +67,20 @@ share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-hide-audio.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-hide-video.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-insert-rect.png +share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-lock.png +share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-select-tool.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-show-audio.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-show-audiothumb.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-show-markers.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-show-video.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-show-videothumb.png share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-snap.png +share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-spacer-tool.png +share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-unlock.png +share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-zone-end.png +share/apps/kdenlive/icons/hicolor/16x16/actions/kdenlive-zone-start.png share/apps/kdenlive/icons/hicolor/scalable/actions/kdenlive-select-tool.svgz +share/apps/kdenlive/icons/hicolor/scalable/actions/kdenlive-spacer-tool.svgz share/apps/kdenlive/icons/hicolor/scalable/actions/kdenlive-zone-end.svgz share/apps/kdenlive/icons/hicolor/scalable/actions/kdenlive-zone-start.svgz share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-add-clip.png @@ -71,17 +92,42 @@ share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-hide-audio.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-hide-video.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-insert-rect.png +share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-lock.png +share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-select-tool.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-show-audio.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-show-audiothumb.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-show-markers.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-show-video.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-show-videothumb.png share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-snap.png +share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-spacer-tool.png +share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-unlock.png +share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-zone-end.png +share/apps/kdenlive/icons/oxygen/16x16/actions/kdenlive-zone-start.png share/apps/kdenlive/icons/oxygen/scalable/actions/kdenlive-select-tool.svgz +share/apps/kdenlive/icons/oxygen/scalable/actions/kdenlive-spacer-tool.svgz share/apps/kdenlive/icons/oxygen/scalable/actions/kdenlive-zone-end.svgz share/apps/kdenlive/icons/oxygen/scalable/actions/kdenlive-zone-start.svgz share/apps/kdenlive/kdenlive.notifyrc share/apps/kdenlive/kdenliveui.rc +share/apps/kdenlive/lumas/bi-linear_x.pgm +share/apps/kdenlive/lumas/bi-linear_y.pgm +share/apps/kdenlive/lumas/burst.pgm +share/apps/kdenlive/lumas/checkerboard_small.pgm +share/apps/kdenlive/lumas/clock.pgm +share/apps/kdenlive/lumas/cloud.pgm +share/apps/kdenlive/lumas/curtain.pgm +share/apps/kdenlive/lumas/horizontal_blinds.pgm +share/apps/kdenlive/lumas/linear_x.pgm +share/apps/kdenlive/lumas/linear_y.pgm +share/apps/kdenlive/lumas/radial-bars.pgm +share/apps/kdenlive/lumas/radial.pgm +share/apps/kdenlive/lumas/spiral.pgm +share/apps/kdenlive/lumas/spiral2.pgm +share/apps/kdenlive/lumas/square.pgm +share/apps/kdenlive/lumas/square2-bars.pgm +share/apps/kdenlive/lumas/square2.pgm +share/apps/kdenlive/lumas/symmetric_clock.pgm share/apps/kdenlive/metadata.properties share/apps/kdenlive/timeline_athumbs.png share/apps/kdenlive/timeline_avthumbs.png @@ -89,6 +135,9 @@ share/apps/kdenlive/timeline_vthumbs.png share/apps/kdenlive/transition.png share/config.kcfg/kdenlivesettings.kcfg +share/config/kdenlive.knsrc +share/config/kdenlive_mltprofiles.knsrc +share/config/kdenlive_render.knsrc share/icons/hicolor/32x32/apps/kdenlive.png share/icons/hicolor/48x48/apps/kdenlive.png share/icons/hicolor/64x64/apps/kdenlive.png @@ -103,14 +152,21 @@ share/locale/da/LC_MESSAGES/kdenlive.mo share/locale/de/LC_MESSAGES/kdenlive.mo share/locale/es/LC_MESSAGES/kdenlive.mo +share/locale/fi/LC_MESSAGES/kdenlive.mo share/locale/fr/LC_MESSAGES/kdenlive.mo +share/locale/he/LC_MESSAGES/kdenlive.mo +share/locale/hr/LC_MESSAGES/kdenlive.mo +share/locale/hu/LC_MESSAGES/kdenlive.mo share/locale/it/LC_MESSAGES/kdenlive.mo share/locale/nl/LC_MESSAGES/kdenlive.mo +share/locale/pt_BR/LC_MESSAGES/kdenlive.mo +share/locale/ru/LC_MESSAGES/kdenlive.mo +share/locale/sl/LC_MESSAGES/kdenlive.mo share/locale/zh/LC_MESSAGES/kdenlive.mo -share/mime/application/x-kdenlive.xml share/mime/packages/kdenlive.xml share/mime/packages/westley.xml -share/mime/video/mlt-playlist.xml +@dirrmtry share/mime/packages +@dirrmtry share/mime @dirrmtry share/kde4/services @dirrmtry share/kde4 @dirrmtry share/icons/oxygen/scalable/mimetypes @@ -131,6 +187,8 @@ @dirrmtry share/icons/hicolor @dirrmtry share/icons @dirrmtry share/config.kcfg +@dirrmtry share/config +@dirrm share/apps/kdenlive/lumas @dirrm share/apps/kdenlive/icons/oxygen/scalable/actions @dirrm share/apps/kdenlive/icons/oxygen/scalable @dirrm share/apps/kdenlive/icons/oxygen/16x16/actions >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Fri May 1 16:25:39 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri May 1 16:25:56 2009 Subject: ports/134139: [maintainer update] multimedia/mlt 0.3.6 -> 0.3.8 Message-ID: <200905011625.n41GPcHK023492@freefall.freebsd.org> Synopsis: [maintainer update] multimedia/mlt 0.3.6 -> 0.3.8 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri May 1 16:25:38 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134139 From miwi at FreeBSD.org Fri May 1 16:25:41 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri May 1 16:25:56 2009 Subject: ports/134140: [maintainer update] multimedia/mlt++ 0.3.6 -> 0.3.8 Message-ID: <200905011625.n41GPeO1023558@freefall.freebsd.org> Synopsis: [maintainer update] multimedia/mlt++ 0.3.6 -> 0.3.8 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri May 1 16:25:40 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134140 From miwi at FreeBSD.org Fri May 1 16:25:43 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri May 1 16:25:57 2009 Subject: ports/134141: [maintainer update] multimedia/kdenlive 0.7 -> 0.7.3 Message-ID: <200905011625.n41GPhA0023624@freefall.freebsd.org> Synopsis: [maintainer update] multimedia/kdenlive 0.7 -> 0.7.3 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri May 1 16:25:42 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134141 From cm at therek.net Fri May 1 18:50:03 2009 From: cm at therek.net (Cezary Morga) Date: Fri May 1 18:50:14 2009 Subject: ports/134143: [maintainer update] Update of devel/p5-Module-Manifest to 0.07 Message-ID: <200905011847.n41Ilis3081435@www.freebsd.org> >Number: 134143 >Category: ports >Synopsis: [maintainer update] Update of devel/p5-Module-Manifest to 0.07 >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 May 01 18:50:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Cezary Morga >Release: FreeBSD 7-STABLE i386 >Organization: >Environment: >Description: Update from 0.06 to 0.07. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN devel/p5-Module-Manifest.orig/Makefile devel/p5-Module-Manifest/Makefile --- devel/p5-Module-Manifest.orig/Makefile 2009-05-01 20:41:08.000000000 +0200 +++ devel/p5-Module-Manifest/Makefile 2009-05-01 20:41:42.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= Module-Manifest -PORTVERSION= 0.06 +PORTVERSION= 0.07 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff -ruN devel/p5-Module-Manifest.orig/distinfo devel/p5-Module-Manifest/distinfo --- devel/p5-Module-Manifest.orig/distinfo 2009-05-01 20:41:08.000000000 +0200 +++ devel/p5-Module-Manifest/distinfo 2009-05-01 20:40:05.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (Module-Manifest-0.06.tar.gz) = 4dee7f275e6eb024e821610f205dae1c -SHA256 (Module-Manifest-0.06.tar.gz) = e6fc9097185b73a4e7aecd569a540fbe74e2b7af88cb765ad7c218156198d4bc -SIZE (Module-Manifest-0.06.tar.gz) = 27010 +MD5 (Module-Manifest-0.07.tar.gz) = 84354a53992aad3d77d19ac8cf239d2e +SHA256 (Module-Manifest-0.07.tar.gz) = ebfb152524501d64b36ec088d2568a22f52de56300bfc6214ddd1db1e108d3db +SIZE (Module-Manifest-0.07.tar.gz) = 30704 >Release-Note: >Audit-Trail: >Unformatted: From dhn at FreeBSD.org Fri May 1 18:59:00 2009 From: dhn at FreeBSD.org (dhn@FreeBSD.org) Date: Fri May 1 18:59:06 2009 Subject: ports/134143: [maintainer update] Update of devel/p5-Module-Manifest to 0.07 Message-ID: <200905011858.n41IwxDd024873@freefall.freebsd.org> Synopsis: [maintainer update] Update of devel/p5-Module-Manifest to 0.07 Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: dhn Responsible-Changed-When: Fri May 1 18:58:59 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134143 From cm at therek.net Fri May 1 19:30:02 2009 From: cm at therek.net (Cezary Morga) Date: Fri May 1 19:30:08 2009 Subject: ports/134144: [maintainer update] Update databases/p5-ORLite-Migrate to 0.03 Message-ID: <200905011924.n41JOADd006125@www.freebsd.org> >Number: 134144 >Category: ports >Synopsis: [maintainer update] Update databases/p5-ORLite-Migrate to 0.03 >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 May 01 19:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Cezary Morga >Release: FreeBSD 7-STABLE i386 >Organization: >Environment: >Description: Update databases/p5-ORLite-Migrate to 0.03. Depends on PR http://www.freebsd.org/cgi/query-pr.cgi?pr=133915. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN databases/p5-ORLite-Migrate.orig/Makefile databases/p5-ORLite-Migrate/Makefile --- databases/p5-ORLite-Migrate.orig/Makefile 2009-05-01 21:17:56.000000000 +0200 +++ databases/p5-ORLite-Migrate/Makefile 2009-05-01 21:18:28.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= ORLite-Migrate -PORTVERSION= 0.02 +PORTVERSION= 0.03 CATEGORIES= databases perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= ../by-authors/id/A/AD/ADAMK diff -ruN databases/p5-ORLite-Migrate.orig/distinfo databases/p5-ORLite-Migrate/distinfo --- databases/p5-ORLite-Migrate.orig/distinfo 2009-05-01 21:17:56.000000000 +0200 +++ databases/p5-ORLite-Migrate/distinfo 2009-05-01 21:17:39.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (ORLite-Migrate-0.02.tar.gz) = eda31dd7462eafdfff1ada76281c5a15 -SHA256 (ORLite-Migrate-0.02.tar.gz) = e070a5a9581bf38726cbeef25376b1f8a20309385522c0bff855380ac43d7e1e -SIZE (ORLite-Migrate-0.02.tar.gz) = 25715 +MD5 (ORLite-Migrate-0.03.tar.gz) = 2f0acdbcb7c6afc717d7e7e956ccbdfd +SHA256 (ORLite-Migrate-0.03.tar.gz) = e0d2f178510e02d95d2f88ad7a9a680f014dbe8ab2ef6efcd53294d7d68f3991 +SIZE (ORLite-Migrate-0.03.tar.gz) = 28835 diff -ruN databases/p5-ORLite-Migrate.orig/pkg-plist databases/p5-ORLite-Migrate/pkg-plist --- databases/p5-ORLite-Migrate.orig/pkg-plist 2009-05-01 21:17:56.000000000 +0200 +++ databases/p5-ORLite-Migrate/pkg-plist 2009-05-01 21:17:39.000000000 +0200 @@ -1,4 +1,6 @@ %%SITE_PERL%%/%%PERL_ARCH%%/auto/ORLite/Migrate/.packlist %%SITE_PERL%%/ORLite/Migrate.pm +%%SITE_PERL%%/ORLite/Migrate/Patch.pm @dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/ORLite/Migrate +@dirrmtry %%SITE_PERL%%/ORLite/Migrate @dirrmtry %%SITE_PERL%%/ORLite >Release-Note: >Audit-Trail: >Unformatted: From rea-fbsd at codelabs.ru Fri May 1 19:40:01 2009 From: rea-fbsd at codelabs.ru (Eygene Ryabinkin) Date: Fri May 1 19:40:08 2009 Subject: ports/134145: New port: devel/lxr, generic code cross-reference tool Message-ID: <20090501193139.206A31711E@amnesiac.at.no.dns> >Number: 134145 >Category: ports >Synopsis: New port: devel/lxr, generic code cross-reference tool >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 May 01 19:40:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Eygene Ryabinkin >Release: FreeBSD 7.2-PRERELEASE amd64 >Organization: Code Labs >Environment: System: FreeBSD 7.2-PRERELEASE amd64 >Description: There is no LXR software in the ports tree and some people would like to have it. >How-To-Repeat: find /usr/ports -name lxr >Fix: The following SHAR archive contains the port. I had just upgraded it to the latest version, 0.9.6. I lived with 0.9.5 for around a half a year and seen no problems, so this port is more-or-less tested. --- lxr.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: # # lxr # lxr/Makefile # lxr/distinfo # lxr/files # lxr/files/fix-perl-warnings.patch # lxr/files/pkg_message.in # lxr/files/pkg_message.mysql.in # lxr/files/pkg_message.postgresql.in # lxr/pkg-descr # lxr/pkg-plist # echo c - lxr mkdir -p lxr > /dev/null 2>&1 echo x - lxr/Makefile sed 's/^X//' >lxr/Makefile << '9ef6a2c252fa1ec24a6d5be0e53ec403' X# Ports collection makefile for: lxr X# Date created: 11 Dec 2008 X# Whom: Eygene Ryabinkin X# X# $FreeBSD$ X# X XPORTNAME= lxr XPORTVERSION= 0.9.6 XCATEGORIES= devel XMASTER_SITES= SF XEXTRACT_SUFX= .tgz X XMAINTAINER= rea-fbsd@codelabs.ru XCOMMENT= Source code indexer and cross-referencer X XBUILD_DEPENDS= exctags:${PORTSDIR}/devel/ctags \ X swish-e:${PORTSDIR}/www/swish-e \ X ${SITE_PERL}/File/MMagic.pm:${PORTSDIR}/devel/p5-File-MMagic X XPATCH_STRIP= -p1 XEXTRA_PATCHES= ${PATCHDIR}/fix-perl-warnings.patch X XUSE_GZIP= yes XUSE_PERL5= yes XNO_BUILD= yes X XOPTIONS= POSTGRESQL "Enable PostgreSQL support" on \ X MYSQL "Enable MySQL support (untested)" off X X# Name prefix for database tables, indexes, sequences and other stuff. XDB_PREFIX= lxr X X# Installation directory X.if !defined(LXRDIR) X.if defined(APACHE_DATADIR) XLXRDIR= ${APACHE_DATADIR}/data/lxr X.else XLXRDIR= ${PREFIX}/www/data/lxr X.endif # defined(APACHE_DATADIR) X.endif # !defined(LXRDIR) X XPLIST_SUB+= LXRDIR=${LXRDIR:S!^${PREFIX}/!!} XSUB_LIST+= LXRDIR=${LXRDIR} X X.include X X.if defined(WITH_POSTGRESQL) && defined(WITH_MYSQL) XIGNORE= you must choose only one database backend X.endif X X.if defined(WITH_POSTGRESQL) XBUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/DBD/Pg.pm:${PORTSDIR}/databases/p5-DBD-Pg XMSG_FILES+= pkg_message.postgresql XDB_DRIVER= Pg X.endif # defined(WITH_POSTGRESQL) X X.if defined(WITH_MYSQL) XBUILD_DEPENDS+= ${SITE_PERL}/DBD/mysql.pm:${PORTSDIR}/databases/p5-DBD-mysql XMSG_FILES+= pkg_message.mysql XDB_DRIVER= mysql X.endif # defined(WITH_MYSQL) X XMSG_FILES+= pkg_message X XSUB_FILES+= ${MSG_FILES} X XLXR_SCRIPTS= diff \ X find \ X genxref \ X ident \ X search \ X source X XLXR_CONF= swish-e.conf \ X initdb-postgres \ X initdb-mysql X XLXR_DOCS= BUGS \ X CREDITS.txt \ X ChangeLog \ X HACKING \ X INSTALL \ X LICENSE \ X RELEASING \ X notes X Xpost-patch: X @${REINPLACE_CMD} \ X -e"s|'glimpsebin'|# 'glimpsebin'|" \ X -e"s|'glimpseindex'|# 'glimpseindex'|" \ X -e"s|'/usr/local/bin/swish-e'|'${LOCALBASE}/bin/swish-e'|" \ X -e"s|'/usr/bin/ctags'|'${LOCALBASE}/bin/exctags'|" \ X -e"s|'/path/to/lib/LXR/Lang/generic.conf'|'${SITE_PERL}/LXR/Lang/generic.conf'|" \ X -e"s|'/path/to/lib/LXR/Lang/ectags.conf'|'${SITE_PERL}/LXR/Lang/ectags.conf'|" \ X -e"s|'dbi:mysql:|'dbi:${DB_DRIVER}:|" \ X -e's|'lxr_'|'${DB_PREFIX}_'|g' \ X ${WRKSRC}/templates/lxr.conf && \ X ${RM} -f ${WRKSRC}/templates/lxr.conf.bak X @${REINPLACE_CMD} \ X -e's|lxr_|${DB_PREFIX}_|g' \ X ${WRKSRC}/initdb-postgres X @${REINPLACE_CMD} \ X -e's|lxr|${DB_PREFIX}|g' \ X ${WRKSRC}/initdb-mysql X Xdo-install: X ${MKDIR} ${LXRDIR} X.for f in ${LXR_SCRIPTS} X ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${LXRDIR} X.endfor # ${LXR_SCRIPTS} X.for f in ${LXR_CONF} X ${INSTALL_DATA} ${WRKSRC}/${f} ${LXRDIR} X.endfor # ${LXR_CONF} X.if !defined(NOPORTDOCS) X ${MKDIR} ${DOCSDIR} X.for f in ${LXR_DOCS} X ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} X.endfor # ${LXR_DOCS} X.endif # !defined(NOPORTDOCS) X ${INSTALL_DATA} ${WRKSRC}/Local.pm ${SITE_PERL} X ${MKDIR} ${PREFIX}/${SITE_PERL_REL} X ${TAR} -C ${WRKSRC}/lib -cf - --exclude *.orig LXR | ${TAR} -C ${PREFIX}/${SITE_PERL_REL} -xf - X ${TAR} -C ${WRKSRC} -cf - --exclude *.orig templates | ${TAR} -C ${LXRDIR} -xf - X ${CHMOD} 640 ${LXRDIR}/templates/lxr.conf X Xpost-install: X @${ECHO} X @${ECHO} "******************** Installation tips ********************" X @${ECHO} X.for f in ${MSG_FILES} X @${CAT} ${WRKDIR}/${f} X.endfor # ${MSG_FILES} X X.include 9ef6a2c252fa1ec24a6d5be0e53ec403 echo x - lxr/distinfo sed 's/^X//' >lxr/distinfo << 'f2fd14a9666df7d1ca01b14e90f08533' XMD5 (lxr-0.9.6.tgz) = 2388d79c91d39063a41d99c7300615d1 XSHA256 (lxr-0.9.6.tgz) = 18c02e814da196b4d66809fb14ff260b20f2dd52c36e2453147a6a4609a1180d XSIZE (lxr-0.9.6.tgz) = 97109 f2fd14a9666df7d1ca01b14e90f08533 echo c - lxr/files mkdir -p lxr/files > /dev/null 2>&1 echo x - lxr/files/fix-perl-warnings.patch sed 's/^X//' >lxr/files/fix-perl-warnings.patch << '5d4dc7b1830605d1b5e08d1b536d6338' XFrom 5e71b7d7e7b4b7619b156b0fb13e52775ed17ccc Mon Sep 17 00:00:00 2001 XFrom: Eygene Ryabinkin XDate: Fri, 12 Dec 2008 19:26:20 +0300 XSubject: [PATCH] Fixed some warnings produced by 'perl -w' X XSigned-off-by: Eygene Ryabinkin X--- X lib/LXR/Common.pm | 23 +++++++++++++++++------ X lib/LXR/Files/Plain.pm | 1 + X lib/LXR/Index/Postgres.pm | 6 ++++++ X 3 files changed, 24 insertions(+), 6 deletions(-) X Xdiff --git a/lib/LXR/Common.pm b/lib/LXR/Common.pm Xindex fea8479..84f38e4 100644 X--- a/lib/LXR/Common.pm X+++ b/lib/LXR/Common.pm X@@ -120,6 +120,7 @@ sub fileref { X # jwz: URL-quote any special characters. X $path =~ s|([^-a-zA-Z0-9.\@/_\r\n])|sprintf("%%%02X", ord($1))|ge; X X+ $line = -1 unless defined($line); X if ($line > 0 && length($line) < 3) { X $line = ('0' x (3 - length($line))) . $line; X } X@@ -134,7 +135,8 @@ sub diffref { X my ($desc, $css, $path, $darg) = @_; X my $dval; X X- ($darg, $dval) = $darg =~ /(.*?)=(.*)/; X+ ($darg, $dval) = (defined($darg) ? X+ $darg =~ /(.*?)=(.*)/ : (undef, undef)); X return ("{virtroot}/diff$path" X . &urlargs(($darg ? "diffvar=$darg" : ""), ($dval ? "diffval=$dval" : "")) X . "\"\>$desc"); X@@ -280,6 +282,9 @@ sub markupfile { X while (defined($frag)) { X &markspecials($frag); X X+ # Use value that won't match anything X+ # in the next if-else for the undefined $btype X+ $btype = '' unless (defined($btype)); X if ($btype eq 'comment') { X X # Comment X@@ -295,7 +300,6 @@ sub markupfile { X # Include directive X $lang->processinclude(\$frag, $dir); X } else { X- X # Code X $lang->processcode(\$frag); X } X@@ -371,6 +375,7 @@ sub markupfile { X } X X sub fixpaths { X+ return '/' unless defined($_[0]); X my $node = '/' . shift; X X while ($node =~ s|/[^/]+/\.\./|/|g) { } X@@ -473,7 +478,9 @@ sub httpinit { X $HTTP->{'this_url'} = 'http://' . $ENV{'SERVER_NAME'}; X $HTTP->{'this_url'} .= ':' . $ENV{'SERVER_PORT'} X if $ENV{'SERVER_PORT'} != 80; X- $HTTP->{'this_url'} .= $ENV{'SCRIPT_NAME'} . $ENV{'PATH_INFO'}; X+ $HTTP->{'this_url'} .= $ENV{'SCRIPT_NAME'}; X+ $HTTP->{'this_url'} .= $ENV{'PATH_INFO'} X+ if defined($ENV{'PATH_INFO'}); X $HTTP->{'this_url'} .= '?' . $ENV{'QUERY_STRING'} X if $ENV{'QUERY_STRING'}; X X@@ -721,9 +728,13 @@ sub varlinks { X $vallink = &idref($val, "varlink", $identifier, "$var=$val"); X } elsif ($who eq 'search') { X $vallink = X- "{virtroot}/search" X- . &urlargs("$var=$val", "string=" . $HTTP->{'param'}->{'string'}) X- . "\">$val"; X+ "{virtroot}/search"; X+ if (defined($HTTP->{'param'}->{'string'})) { X+ $vallink .= &urlargs("$var=$val", X+ "string=" . X+ $HTTP->{'param'}->{'string'}); X+ } X+ $vallink .= "\">$val"; X } X } X Xdiff --git a/lib/LXR/Files/Plain.pm b/lib/LXR/Files/Plain.pm Xindex 27c5dee..ade40fd 100644 X--- a/lib/LXR/Files/Plain.pm X+++ b/lib/LXR/Files/Plain.pm X@@ -131,6 +131,7 @@ sub getdir { X X sub toreal { X my ($self, $pathname, $release) = @_; X+ $release = "" unless defined($release); X X # nearly all (if not all) method calls eventually call toreal(), so this is a good place to block file access X foreach my $ignoredir ($config->ignoredirs) { Xdiff --git a/lib/LXR/Index/Postgres.pm b/lib/LXR/Index/Postgres.pm Xindex ae1e11f..4667036 100644 X--- a/lib/LXR/Index/Postgres.pm X+++ b/lib/LXR/Index/Postgres.pm X@@ -158,6 +158,9 @@ sub getindex { X my ($self, $symname, $release) = @_; X my ($rows, @ret); X X+ $release = "" unless defined($release); X+ return () unless defined($symname); X+ X $rows = $indexes_select->execute("$symname", "$release"); X X while ($rows-- > 0) { X@@ -175,6 +178,9 @@ sub getreference { X my ($self, $symname, $release) = @_; X my ($rows, @ret); X X+ $release = "" unless defined($release); X+ return () unless defined($symname); X+ X $rows = $usage_select->execute("$symname", "$release"); X X while ($rows-- > 0) { X-- X1.6.0.4 X 5d4dc7b1830605d1b5e08d1b536d6338 echo x - lxr/files/pkg_message.in sed 's/^X//' >lxr/files/pkg_message.in << '8bb1f2ed7976e895dde7a613afc9356a' XConfiguring LXR X=============== X XFirst-time installation X----------------------- X XFor the first-time installations you should copy the template files Xfor LXR to your installation X X cp %%LXRDIR%%/templates/* %%LXRDIR%%/ X XThen you should glance over configuration file at X %%LXRDIR%%/lxr.conf X XIt has some reasonable values for the helper programs, but you should Xcustomize variables like 'baseurl', 'virtroot' and others. X XUpgrades X-------- X XYou should look at the contents of the directory X %%LXRDIR%%/templates/ Xand possibly merge new stuff from it to the corresponding files in X %%LXRDIR%%/ X X XHappy cross-referencing and code mining! X 8bb1f2ed7976e895dde7a613afc9356a echo x - lxr/files/pkg_message.mysql.in sed 's/^X//' >lxr/files/pkg_message.mysql.in << '7e613226572927c146f23247bc8d78f0' XMySQL setup X=========== X XRun 'mysql' and then read in the initdb-mysql file using X'\. %%LXRDIR%%/initdb-mysql'. X XThis will create the database and a user called lxr with access Xrights to the database. X 7e613226572927c146f23247bc8d78f0 echo x - lxr/files/pkg_message.postgresql.in sed 's/^X//' >lxr/files/pkg_message.postgresql.in << '18b50c74f6afc80c3f3df3135a14dd2e' XPostgreSQL setup X================ X XCreate a user for lxr and give the user permission to create databases: X createuser -P lxr XCreate a database for lxr: X createdb -O lxr lxr XInitialise the database: X psql -U lxr lxr X \i %%LXRDIR%%/initdb-postgres XJust ignore the errors about unimplemented functions. X 18b50c74f6afc80c3f3df3135a14dd2e echo x - lxr/pkg-descr sed 's/^X//' >lxr/pkg-descr << 'c2f79c710b75f78b4e836ecef8997fe7' XLXR -- Linux Cross-Reference X XA general purpose source code indexer and cross-referencer that Xprovides web-based browsing of source code with links to the Xdefinition and usage of any identifier. X XWWW: http://sourceforge.net/projects/lxr/ c2f79c710b75f78b4e836ecef8997fe7 echo x - lxr/pkg-plist sed 's/^X//' >lxr/pkg-plist << 'e332403dfdc65cf4c312fb8db2b4edcc' X%%LXRDIR%%/diff X%%LXRDIR%%/find X%%LXRDIR%%/genxref X%%LXRDIR%%/ident X%%LXRDIR%%/search X%%LXRDIR%%/source X%%LXRDIR%%/swish-e.conf X%%LXRDIR%%/initdb-postgres X%%LXRDIR%%/initdb-mysql X%%LXRDIR%%/templates/html-dir.html X%%LXRDIR%%/templates/html-find.html X%%LXRDIR%%/templates/html-head.html X%%LXRDIR%%/templates/html-ident-refs.html X%%LXRDIR%%/templates/html-ident.html X%%LXRDIR%%/templates/html-search-glimpse.html X%%LXRDIR%%/templates/html-search-swish.html X%%LXRDIR%%/templates/html-tail.html X%%LXRDIR%%/templates/lxr.conf X%%LXRDIR%%/templates/lxr.css X%%PORTDOCS%%%%DOCSDIR%%/BUGS X%%PORTDOCS%%%%DOCSDIR%%/CREDITS.txt X%%PORTDOCS%%%%DOCSDIR%%/ChangeLog X%%PORTDOCS%%%%DOCSDIR%%/HACKING X%%PORTDOCS%%%%DOCSDIR%%/INSTALL X%%PORTDOCS%%%%DOCSDIR%%/LICENSE X%%PORTDOCS%%%%DOCSDIR%%/RELEASING X%%PORTDOCS%%%%DOCSDIR%%/notes X%%SITE_PERL%%/LXR/Files/Plain.pm X%%SITE_PERL%%/LXR/Files/BK.pm X%%SITE_PERL%%/LXR/Files/CVS.pm X%%SITE_PERL%%/LXR/Files/GIT.pm X%%SITE_PERL%%/LXR/Common.pm X%%SITE_PERL%%/LXR/Config.pm X%%SITE_PERL%%/LXR/Files.pm X%%SITE_PERL%%/LXR/Index.pm X%%SITE_PERL%%/LXR/Lang.pm X%%SITE_PERL%%/LXR/SimpleParse.pm X%%SITE_PERL%%/LXR/Tagger.pm X%%SITE_PERL%%/LXR/Index/Mysql.pm X%%SITE_PERL%%/LXR/Index/DB.pm X%%SITE_PERL%%/LXR/Index/DBI.pm X%%SITE_PERL%%/LXR/Index/Oracle.pm X%%SITE_PERL%%/LXR/Index/Postgres.pm X%%SITE_PERL%%/LXR/Lang/Cobol.pm X%%SITE_PERL%%/LXR/Lang/Generic.pm X%%SITE_PERL%%/LXR/Lang/Java.pm X%%SITE_PERL%%/LXR/Lang/Perl.pm X%%SITE_PERL%%/LXR/Lang/Python.pm X%%SITE_PERL%%/LXR/Lang/ectags.conf X%%SITE_PERL%%/LXR/Lang/ectags.conf.documentation X%%SITE_PERL%%/LXR/Lang/generic.conf X%%PORTDOCS%%@dirrm %%DOCSDIR%% X@dirrm %%SITE_PERL%%/LXR/Files X@dirrm %%SITE_PERL%%/LXR/Lang X@dirrm %%SITE_PERL%%/LXR/Index X@dirrm %%SITE_PERL%%/LXR X@dirrm %%LXRDIR%%/templates X@dirrmtry %%LXRDIR%% e332403dfdc65cf4c312fb8db2b4edcc exit --- lxr.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Fri May 1 19:40:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Fri May 1 19:40:18 2009 Subject: ports/134145: New port: devel/lxr, generic code cross-reference tool Message-ID: <200905011940.n41JeBsq080367@freefall.freebsd.org> Synopsis: New port: devel/lxr, generic code cross-reference tool Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Fri May 1 19:40:11 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134145 From dhn at FreeBSD.org Fri May 1 20:06:51 2009 From: dhn at FreeBSD.org (dhn@FreeBSD.org) Date: Fri May 1 20:06:57 2009 Subject: ports/134144: [maintainer update] Update databases/p5-ORLite-Migrate to 0.03 Message-ID: <200905012006.n41K6oCP018362@freefall.freebsd.org> Synopsis: [maintainer update] Update databases/p5-ORLite-Migrate to 0.03 Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: dhn Responsible-Changed-When: Fri May 1 20:06:50 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134144 From mark at summersault.com Fri May 1 22:20:01 2009 From: mark at summersault.com (Mark Stosberg) Date: Fri May 1 22:20:08 2009 Subject: ports/134148: InnoDB fails after upgrading MySQL from 5.0.51 to 5.077 on FreeBSD 6.2 Message-ID: <200905012211.n41MBMNk039683@www.freebsd.org> >Number: 134148 >Category: ports >Synopsis: InnoDB fails after upgrading MySQL from 5.0.51 to 5.077 on FreeBSD 6.2 >Confidential: no >Severity: critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri May 01 22:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mark Stosberg >Release: FreeBSD 6.2-RELEASE >Organization: Summersault, LLC >Environment: FreeBSD vhost1.summersault.com 6.2-RELEASE FreeBSD 6.2-RELEASE #0: Fri Apr 27 15:36:05 EDT 2007 root@foo.summersault.com:/usr/src/sys/i386/compile/FOO i386 >Description: There is a bug when upgrading MySQL from 5.0.55 to MySQL 5.0.77 on FreeBSD, such that InnoDB no longer works. The error when starting is: InnoDB: Unable to lock ./ibdata1, error: 22 Several others have experienced this issue and reported it to the MySQL project here: http://bugs.mysql.com/bug.php?id=40621 But so far, the upstream project has not taken interest in a resolution. >How-To-Repeat: Upgrade the mysql50 port the usual way on FreeBSD 6.2 >Fix: Manually downgrading works around the issue. >Release-Note: >Audit-Trail: >Unformatted: From simon at olofsson.de Fri May 1 22:50:01 2009 From: simon at olofsson.de (Simon Olofsson) Date: Fri May 1 22:50:16 2009 Subject: ports/134149: [MAINTAINER] www/xpi-flashblock: update to 1.5.10 Message-ID: <20090501224434.8CBFB8FC15@mx1.freebsd.org> >Number: 134149 >Category: ports >Synopsis: [MAINTAINER] www/xpi-flashblock: update to 1.5.10 >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 May 01 22:50:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Simon Olofsson >Release: FreeBSD 7.2-RC2 i386 >Organization: >Environment: System: FreeBSD sol-fb.olofsson.de 7.2-RC2 FreeBSD 7.2-RC2 #0: Thu Apr 23 22:07:24 UTC 2009 >Description: - Update to 1.5.10 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- xpi-flashblock-1.5.10.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/xpi-flashblock/Makefile /usr/home/simon/ports/www/xpi-flashblock/Makefile --- /usr/ports/www/xpi-flashblock/Makefile 2009-02-09 14:05:57.000000000 +0100 +++ /usr/home/simon/ports/www/xpi-flashblock/Makefile 2009-05-02 00:10:12.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= flashblock -PORTVERSION= 1.5.8 +PORTVERSION= 1.5.10 DISTVERSIONSUFFIX= -fx CATEGORIES= www diff -ruN --exclude=CVS /usr/ports/www/xpi-flashblock/distinfo /usr/home/simon/ports/www/xpi-flashblock/distinfo --- /usr/ports/www/xpi-flashblock/distinfo 2009-02-09 14:05:57.000000000 +0100 +++ /usr/home/simon/ports/www/xpi-flashblock/distinfo 2009-05-02 00:10:57.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (xpi/flashblock-1.5.8-fx.xpi) = acc246d6def637d8b24505777393a9b3 -SHA256 (xpi/flashblock-1.5.8-fx.xpi) = 2b88cdb12682e07c3b05cc272207b8c5d91bafdcda94a380735b3b6f8f1bef42 -SIZE (xpi/flashblock-1.5.8-fx.xpi) = 70856 +MD5 (xpi/flashblock-1.5.10-fx.xpi) = 9693098f45f0472925574337b9b01482 +SHA256 (xpi/flashblock-1.5.10-fx.xpi) = 3d52075c0b8cce8a4c4398ee2f7155d6bddab7eebefcdb1c6f0524ff2b4efa7e +SIZE (xpi/flashblock-1.5.10-fx.xpi) = 71114 --- xpi-flashblock-1.5.10.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Fri May 1 22:55:14 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Fri May 1 22:55:20 2009 Subject: ports/134149: [MAINTAINER] www/xpi-flashblock: update to 1.5.10 Message-ID: <200905012255.n41MtD4k048691@freefall.freebsd.org> Synopsis: [MAINTAINER] www/xpi-flashblock: update to 1.5.10 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Fri May 1 22:55:13 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134149 From jsa at wickedmachine.net Fri May 1 23:30:03 2009 From: jsa at wickedmachine.net (Joseph S. Atkinson) Date: Fri May 1 23:30:10 2009 Subject: ports/134150: Rework audio/exaile-devel Message-ID: <1241220382.64981@mephisto.wickedmachine.net> >Number: 134150 >Category: ports >Synopsis: Rework audio/exaile-devel >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 May 01 23:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Joseph S. Atkinson >Release: FreeBSD 7.2-RC2 i386 >Organization: >Environment: System: FreeBSD 7.2-RC2 #0: Sat Apr 25 14:38:07 EDT 2009 jsa@mephisto.wickedmachine.net:/usr/obj/usr/src/sys/MEPHISTO >Description: audio/exaile-devel, originally retooled from audio/exaile, has a lot of cruft that isn't quite needed anymore. This is a rework to make it cleaner, and not force optional depends on people. Being written in python though, if any of the OPTIONS are install on the system, those features will be turned on regardless of explicit dependancy. >How-To-Repeat: >Fix: --- exaile-devel_revamp.diff begins here --- diff -ruN /usr/ports/audio/exaile-devel/Makefile exaile-devel/Makefile --- /usr/ports/audio/exaile-devel/Makefile 2009-03-05 04:09:44.000000000 -0500 +++ exaile-devel/Makefile 2009-05-01 18:39:59.000000000 -0400 @@ -7,41 +7,69 @@ PORTNAME= exaile DISTVERSION= 0.2.99.1 +PORTREVISION= 1 CATEGORIES= audio -MASTER_SITES= http://www.exaile.org/files/ +MASTER_SITES= http://www.exaile.org/files/ \ + http://wickedmachine.net/~jsa/FreeBSD/distfiles/ PKGNAMESUFFIX= -devel DISTNAME= ${PORTNAME}_0.3.0a1 MAINTAINER= jsa@wickedmachine.net COMMENT= AmaroK replacement for GTK+ (developmental series) -RUN_DEPENDS= py*-dbus>=0.82.1:${PORTSDIR}/devel/py-dbus \ - py*-notify>=0.1.1:${PORTSDIR}/devel/py-notify \ - py*-elementtree>=1.2.6:${PORTSDIR}/devel/py-elementtree \ - py*-mutagen>=1.11:${PORTSDIR}/audio/py-mutagen \ - py*-sexy>=0.1.9:${PORTSDIR}/x11-toolkits/py-sexy \ - py*-cddb>=1.4:${PORTSDIR}/audio/py-cddb +RUN_DEPENDS= py*-mutagen>=1.11:${PORTSDIR}/audio/py-mutagen WRKSRC= ${WRKDIR}/${DISTNAME:S/_/-/} -USE_GNOME= pygtk2 pygnomeextras -USE_GSTREAMER= python gnomevfs +USE_GNOME= pygtk2 +USE_GSTREAMER= python good USE_PYTHON= 2.5+ CONFLICTS= exaile-0.2.[0-9][0-8]* exaile-0.3.* +# The reality with these options is that they all will be autodetected and used +# if already installed. These just force Exaile to bring them in as well. +OPTIONS= BAD "Install bad gstreamer plugins" On\ + CDDB "Lookup CD information within Exaile" On \ + DBUS "Rely on Python D-Bus bindings" On \ + HAL "Force depend on HAL" On \ + NOTIFY "Enable desktop event notification" On \ + NLS "Native Language Support" On \ + SEXY "UI enhancements" On + +.if !defined(WITHOUT_BAD) +USE_GSTREAMER+= bad +.endif + +.if !defined(WITHOUT_CDDB) +RUN_DEPENDS+= py*-cddb>=1.4:${PORTSDIR}/audio/py-cddb +.endif + +.if !defined(WITHOUT_DBUS) +RUN_DEPENDS+= py*-dbus>=0.82.1:${PORTSDIR}/devel/py-dbus +.endif + +.if !defined(WITHOUT_HAL) +LIB_DEPENDS+= hal.1:${PORTSDIR}/sysutils/hal +.endif + +.if !defined(WITHOUT_NOTIFY) +RUN_DEPENDS+= py*-notify>=0.1.1:${PORTSDIR}/devel/py-notify +.endif + .if !defined(WITHOUT_NLS) -USE_GETTEXT= yes -PLIST_SUB+= NLS="" +USE_GETTEXT= yes +PLIST_SUB+= NLS="" .else -PLIST_SUB+= NLS="@comment " +PLIST_SUB+= NLS="@comment " +.endif + +.if !defined(WITHOUT_SEXY) +RUN_DEPENDS+= py*-sexy>=0.1.9:${PORTSDIR}/x11-toolkits/py-sexy .endif post-patch: - @${REINPLACE_CMD} -e '/createpot/d;s|/bin/echo|echo|;\ - s|$$[(]PREFIX[)]/share/exaile|${DATADIR}|;/install.*mmkeys/d;\ - s|$$[(]PREFIX[)]$$[(]LIBDIR[)]/exaile|${DATADIR}|;/mkdir.*LIBDIR/d;\ - s|$$[(]PREFIX[)]/share/man/man1|${MAN1PREFIX}/man/man1|'\ + @${REINPLACE_CMD} -e 's|PREFIX \?=|PREFIX =|;s|LIBDIR \?=|LIBDIR =|' \ ${WRKSRC}/Makefile .if defined(WITHOUT_NLS) @${REINPLACE_CMD} -e 's|exaile\.mo|SKIP_NLS_HACK|' ${WRKSRC}/Makefile diff -ruN /usr/ports/audio/exaile-devel/files/patch-Makefile exaile-devel/files/patch-Makefile --- /usr/ports/audio/exaile-devel/files/patch-Makefile 1969-12-31 19:00:00.000000000 -0500 +++ exaile-devel/files/patch-Makefile 2009-05-01 18:45:31.000000000 -0400 @@ -0,0 +1,21 @@ +--- Makefile.orig 2009-01-05 12:56:16.000000000 -0500 ++++ Makefile 2009-04-26 04:01:31.000000000 -0400 +@@ -77,12 +76,12 @@ + $(DESTDIR)$(PREFIX)/share/pixmaps/exaile.png + install -m 644 data/exaile.desktop \ + $(DESTDIR)$(PREFIX)/share/applications/ ++ # the printf here is for bsd compat, dont use echo! + cd $(DESTDIR)$(PREFIX)/bin && \ +- /bin/echo -e \ +- "#!/bin/sh\n" \ +- "cd $(PREFIX)/share/exaile\n" \ +- "exec python $(PREFIX)$(LIBDIR)/exaile/exaile.py " \ +- "--datadir=$(PREFIX)/share/exaile/data --startgui \"\$$@\"" \ ++ printf "#!/bin/sh\n\ ++ cd $(PREFIX)/share/exaile\n\ ++ exec python $(PREFIX)$(LIBDIR)/exaile/exaile.py \ ++ --datadir=$(PREFIX)/share/exaile/data --startgui \"\$$@\"" \ + > exaile && \ + chmod 755 exaile + cd plugins && make install DESTDIR=$(DESTDIR) PREFIX=$(PREFIX) \ + diff -ruN /usr/ports/audio/exaile-devel/pkg-plist exaile-devel/pkg-plist --- /usr/ports/audio/exaile-devel/pkg-plist 2009-03-03 00:48:19.000000000 -0500 +++ exaile-devel/pkg-plist 2009-05-01 18:39:59.000000000 -0400 @@ -1,4 +1,197 @@ bin/exaile +lib/exaile/exaile.py +lib/exaile/lib/__init__.py +lib/exaile/lib/__init__.pyc +lib/exaile/lib/__init__.pyo +lib/exaile/lib/feedparser.py +lib/exaile/lib/feedparser.pyc +lib/exaile/lib/feedparser.pyo +lib/exaile/xl/__init__.py +lib/exaile/xl/__init__.pyc +lib/exaile/xl/__init__.pyo +lib/exaile/xl/collection.py +lib/exaile/xl/collection.pyc +lib/exaile/xl/collection.pyo +lib/exaile/xl/common.py +lib/exaile/xl/common.pyc +lib/exaile/xl/common.pyo +lib/exaile/xl/cover.py +lib/exaile/xl/cover.pyc +lib/exaile/xl/cover.pyo +lib/exaile/xl/devices.py +lib/exaile/xl/devices.pyc +lib/exaile/xl/devices.pyo +lib/exaile/xl/dynamic.py +lib/exaile/xl/dynamic.pyc +lib/exaile/xl/dynamic.pyo +lib/exaile/xl/event.py +lib/exaile/xl/event.pyc +lib/exaile/xl/event.pyo +lib/exaile/xl/hal.py +lib/exaile/xl/hal.pyc +lib/exaile/xl/hal.pyo +lib/exaile/xl/lyrics.py +lib/exaile/xl/lyrics.pyc +lib/exaile/xl/lyrics.pyo +lib/exaile/xl/main.py +lib/exaile/xl/main.pyc +lib/exaile/xl/main.pyo +lib/exaile/xl/metadata/__init__.py +lib/exaile/xl/metadata/__init__.pyc +lib/exaile/xl/metadata/__init__.pyo +lib/exaile/xl/metadata/_apev2.py +lib/exaile/xl/metadata/_apev2.pyc +lib/exaile/xl/metadata/_apev2.pyo +lib/exaile/xl/metadata/_base.py +lib/exaile/xl/metadata/_base.pyc +lib/exaile/xl/metadata/_base.pyo +lib/exaile/xl/metadata/_id3.py +lib/exaile/xl/metadata/_id3.pyc +lib/exaile/xl/metadata/_id3.pyo +lib/exaile/xl/metadata/asf.py +lib/exaile/xl/metadata/asf.pyc +lib/exaile/xl/metadata/asf.pyo +lib/exaile/xl/metadata/flac.py +lib/exaile/xl/metadata/flac.pyc +lib/exaile/xl/metadata/flac.pyo +lib/exaile/xl/metadata/mod.py +lib/exaile/xl/metadata/mod.pyc +lib/exaile/xl/metadata/mod.pyo +lib/exaile/xl/metadata/mp3.py +lib/exaile/xl/metadata/mp3.pyc +lib/exaile/xl/metadata/mp3.pyo +lib/exaile/xl/metadata/mp4.py +lib/exaile/xl/metadata/mp4.pyc +lib/exaile/xl/metadata/mp4.pyo +lib/exaile/xl/metadata/mpc.py +lib/exaile/xl/metadata/mpc.pyc +lib/exaile/xl/metadata/mpc.pyo +lib/exaile/xl/metadata/ogg.py +lib/exaile/xl/metadata/ogg.pyc +lib/exaile/xl/metadata/ogg.pyo +lib/exaile/xl/metadata/sid.py +lib/exaile/xl/metadata/sid.pyc +lib/exaile/xl/metadata/sid.pyo +lib/exaile/xl/metadata/speex.py +lib/exaile/xl/metadata/speex.pyc +lib/exaile/xl/metadata/speex.pyo +lib/exaile/xl/metadata/tta.py +lib/exaile/xl/metadata/tta.pyc +lib/exaile/xl/metadata/tta.pyo +lib/exaile/xl/metadata/wav.py +lib/exaile/xl/metadata/wav.pyc +lib/exaile/xl/metadata/wav.pyo +lib/exaile/xl/metadata/wv.py +lib/exaile/xl/metadata/wv.pyc +lib/exaile/xl/metadata/wv.pyo +lib/exaile/xl/nls.py +lib/exaile/xl/nls.pyc +lib/exaile/xl/nls.pyo +lib/exaile/xl/player.py +lib/exaile/xl/player.pyc +lib/exaile/xl/player.pyo +lib/exaile/xl/playlist.py +lib/exaile/xl/playlist.pyc +lib/exaile/xl/playlist.pyo +lib/exaile/xl/plugins.py +lib/exaile/xl/plugins.pyc +lib/exaile/xl/plugins.pyo +lib/exaile/xl/providers.py +lib/exaile/xl/providers.pyc +lib/exaile/xl/providers.pyo +lib/exaile/xl/radio.py +lib/exaile/xl/radio.pyc +lib/exaile/xl/radio.pyo +lib/exaile/xl/settings.py +lib/exaile/xl/settings.pyc +lib/exaile/xl/settings.pyo +lib/exaile/xl/track.py +lib/exaile/xl/track.pyc +lib/exaile/xl/track.pyo +lib/exaile/xl/trackdb.py +lib/exaile/xl/trackdb.pyc +lib/exaile/xl/trackdb.pyo +lib/exaile/xl/transcoder.py +lib/exaile/xl/transcoder.pyc +lib/exaile/xl/transcoder.pyo +lib/exaile/xl/xdg.py +lib/exaile/xl/xdg.pyc +lib/exaile/xl/xdg.pyo +lib/exaile/xl/xldbus.py +lib/exaile/xl/xldbus.pyc +lib/exaile/xl/xldbus.pyo +lib/exaile/xlgui/__init__.py +lib/exaile/xlgui/__init__.pyc +lib/exaile/xlgui/__init__.pyo +lib/exaile/xlgui/collection.py +lib/exaile/xlgui/collection.pyc +lib/exaile/xlgui/collection.pyo +lib/exaile/xlgui/commondialogs.py +lib/exaile/xlgui/commondialogs.pyc +lib/exaile/xlgui/commondialogs.pyo +lib/exaile/xlgui/cover.py +lib/exaile/xlgui/cover.pyc +lib/exaile/xlgui/cover.pyo +lib/exaile/xlgui/filtergui.py +lib/exaile/xlgui/filtergui.pyc +lib/exaile/xlgui/filtergui.pyo +lib/exaile/xlgui/guiutil.py +lib/exaile/xlgui/guiutil.pyc +lib/exaile/xlgui/guiutil.pyo +lib/exaile/xlgui/main.py +lib/exaile/xlgui/main.pyc +lib/exaile/xlgui/main.pyo +lib/exaile/xlgui/menu.py +lib/exaile/xlgui/menu.pyc +lib/exaile/xlgui/menu.pyo +lib/exaile/xlgui/osd.py +lib/exaile/xlgui/osd.pyc +lib/exaile/xlgui/osd.pyo +lib/exaile/xlgui/panel/__init__.py +lib/exaile/xlgui/panel/__init__.pyc +lib/exaile/xlgui/panel/__init__.pyo +lib/exaile/xlgui/panel/collection.py +lib/exaile/xlgui/panel/collection.pyc +lib/exaile/xlgui/panel/collection.pyo +lib/exaile/xlgui/panel/files.py +lib/exaile/xlgui/panel/files.pyc +lib/exaile/xlgui/panel/files.pyo +lib/exaile/xlgui/panel/playlists.py +lib/exaile/xlgui/panel/playlists.pyc +lib/exaile/xlgui/panel/playlists.pyo +lib/exaile/xlgui/panel/radio.py +lib/exaile/xlgui/panel/radio.pyc +lib/exaile/xlgui/panel/radio.pyo +lib/exaile/xlgui/playlist.py +lib/exaile/xlgui/playlist.pyc +lib/exaile/xlgui/playlist.pyo +lib/exaile/xlgui/plcolumns.py +lib/exaile/xlgui/plcolumns.pyc +lib/exaile/xlgui/plcolumns.pyo +lib/exaile/xlgui/plugins.py +lib/exaile/xlgui/plugins.pyc +lib/exaile/xlgui/plugins.pyo +lib/exaile/xlgui/prefs/__init__.py +lib/exaile/xlgui/prefs/__init__.pyc +lib/exaile/xlgui/prefs/__init__.pyo +lib/exaile/xlgui/prefs/cover_prefs.py +lib/exaile/xlgui/prefs/cover_prefs.pyc +lib/exaile/xlgui/prefs/cover_prefs.pyo +lib/exaile/xlgui/prefs/general_prefs.py +lib/exaile/xlgui/prefs/general_prefs.pyc +lib/exaile/xlgui/prefs/general_prefs.pyo +lib/exaile/xlgui/prefs/osd_prefs.py +lib/exaile/xlgui/prefs/osd_prefs.pyc +lib/exaile/xlgui/prefs/osd_prefs.pyo +lib/exaile/xlgui/prefs/widgets.py +lib/exaile/xlgui/prefs/widgets.pyc +lib/exaile/xlgui/prefs/widgets.pyo +lib/exaile/xlgui/progress.py +lib/exaile/xlgui/progress.pyc +lib/exaile/xlgui/progress.pyo +lib/exaile/xlgui/tray.py +lib/exaile/xlgui/tray.pyc +lib/exaile/xlgui/tray.pyo share/applications/exaile.desktop %%DATADIR%%/data/glade/about_dialog.glade %%DATADIR%%/data/glade/collection_manager.glade @@ -30,13 +223,6 @@ %%DATADIR%%/data/images/track.png %%DATADIR%%/data/images/trayicon.png %%DATADIR%%/data/images/year.png -%%DATADIR%%/exaile.py -%%DATADIR%%/lib/__init__.py -%%DATADIR%%/lib/__init__.pyc -%%DATADIR%%/lib/__init__.pyo -%%DATADIR%%/lib/feedparser.py -%%DATADIR%%/lib/feedparser.pyc -%%DATADIR%%/lib/feedparser.pyo %%DATADIR%%/plugins/amazoncovers/PLUGININFO %%DATADIR%%/plugins/amazoncovers/__init__.py %%DATADIR%%/plugins/amazoncovers/__init__.pyc @@ -137,192 +323,6 @@ %%DATADIR%%/plugins/shoutcast/test.py %%DATADIR%%/plugins/shoutcast/test.pyc %%DATADIR%%/plugins/shoutcast/test.pyo -%%DATADIR%%/xl/__init__.py -%%DATADIR%%/xl/__init__.pyc -%%DATADIR%%/xl/__init__.pyo -%%DATADIR%%/xl/collection.py -%%DATADIR%%/xl/collection.pyc -%%DATADIR%%/xl/collection.pyo -%%DATADIR%%/xl/common.py -%%DATADIR%%/xl/common.pyc -%%DATADIR%%/xl/common.pyo -%%DATADIR%%/xl/cover.py -%%DATADIR%%/xl/cover.pyc -%%DATADIR%%/xl/cover.pyo -%%DATADIR%%/xl/devices.py -%%DATADIR%%/xl/devices.pyc -%%DATADIR%%/xl/devices.pyo -%%DATADIR%%/xl/dynamic.py -%%DATADIR%%/xl/dynamic.pyc -%%DATADIR%%/xl/dynamic.pyo -%%DATADIR%%/xl/event.py -%%DATADIR%%/xl/event.pyc -%%DATADIR%%/xl/event.pyo -%%DATADIR%%/xl/hal.py -%%DATADIR%%/xl/hal.pyc -%%DATADIR%%/xl/hal.pyo -%%DATADIR%%/xl/lyrics.py -%%DATADIR%%/xl/lyrics.pyc -%%DATADIR%%/xl/lyrics.pyo -%%DATADIR%%/xl/main.py -%%DATADIR%%/xl/main.pyc -%%DATADIR%%/xl/main.pyo -%%DATADIR%%/xl/metadata/__init__.py -%%DATADIR%%/xl/metadata/__init__.pyc -%%DATADIR%%/xl/metadata/__init__.pyo -%%DATADIR%%/xl/metadata/_apev2.py -%%DATADIR%%/xl/metadata/_apev2.pyc -%%DATADIR%%/xl/metadata/_apev2.pyo -%%DATADIR%%/xl/metadata/_base.py -%%DATADIR%%/xl/metadata/_base.pyc -%%DATADIR%%/xl/metadata/_base.pyo -%%DATADIR%%/xl/metadata/_id3.py -%%DATADIR%%/xl/metadata/_id3.pyc -%%DATADIR%%/xl/metadata/_id3.pyo -%%DATADIR%%/xl/metadata/asf.py -%%DATADIR%%/xl/metadata/asf.pyc -%%DATADIR%%/xl/metadata/asf.pyo -%%DATADIR%%/xl/metadata/flac.py -%%DATADIR%%/xl/metadata/flac.pyc -%%DATADIR%%/xl/metadata/flac.pyo -%%DATADIR%%/xl/metadata/mod.py -%%DATADIR%%/xl/metadata/mod.pyc -%%DATADIR%%/xl/metadata/mod.pyo -%%DATADIR%%/xl/metadata/mp3.py -%%DATADIR%%/xl/metadata/mp3.pyc -%%DATADIR%%/xl/metadata/mp3.pyo -%%DATADIR%%/xl/metadata/mp4.py -%%DATADIR%%/xl/metadata/mp4.pyc -%%DATADIR%%/xl/metadata/mp4.pyo -%%DATADIR%%/xl/metadata/mpc.py -%%DATADIR%%/xl/metadata/mpc.pyc -%%DATADIR%%/xl/metadata/mpc.pyo -%%DATADIR%%/xl/metadata/ogg.py -%%DATADIR%%/xl/metadata/ogg.pyc -%%DATADIR%%/xl/metadata/ogg.pyo -%%DATADIR%%/xl/metadata/sid.py -%%DATADIR%%/xl/metadata/sid.pyc -%%DATADIR%%/xl/metadata/sid.pyo -%%DATADIR%%/xl/metadata/speex.py -%%DATADIR%%/xl/metadata/speex.pyc -%%DATADIR%%/xl/metadata/speex.pyo -%%DATADIR%%/xl/metadata/tta.py -%%DATADIR%%/xl/metadata/tta.pyc -%%DATADIR%%/xl/metadata/tta.pyo -%%DATADIR%%/xl/metadata/wav.py -%%DATADIR%%/xl/metadata/wav.pyc -%%DATADIR%%/xl/metadata/wav.pyo -%%DATADIR%%/xl/metadata/wv.py -%%DATADIR%%/xl/metadata/wv.pyc -%%DATADIR%%/xl/metadata/wv.pyo -%%DATADIR%%/xl/nls.py -%%DATADIR%%/xl/nls.pyc -%%DATADIR%%/xl/nls.pyo -%%DATADIR%%/xl/player.py -%%DATADIR%%/xl/player.pyc -%%DATADIR%%/xl/player.pyo -%%DATADIR%%/xl/playlist.py -%%DATADIR%%/xl/playlist.pyc -%%DATADIR%%/xl/playlist.pyo -%%DATADIR%%/xl/plugins.py -%%DATADIR%%/xl/plugins.pyc -%%DATADIR%%/xl/plugins.pyo -%%DATADIR%%/xl/providers.py -%%DATADIR%%/xl/providers.pyc -%%DATADIR%%/xl/providers.pyo -%%DATADIR%%/xl/radio.py -%%DATADIR%%/xl/radio.pyc -%%DATADIR%%/xl/radio.pyo -%%DATADIR%%/xl/settings.py -%%DATADIR%%/xl/settings.pyc -%%DATADIR%%/xl/settings.pyo -%%DATADIR%%/xl/track.py -%%DATADIR%%/xl/track.pyc -%%DATADIR%%/xl/track.pyo -%%DATADIR%%/xl/trackdb.py -%%DATADIR%%/xl/trackdb.pyc -%%DATADIR%%/xl/trackdb.pyo -%%DATADIR%%/xl/transcoder.py -%%DATADIR%%/xl/transcoder.pyc -%%DATADIR%%/xl/transcoder.pyo -%%DATADIR%%/xl/xdg.py -%%DATADIR%%/xl/xdg.pyc -%%DATADIR%%/xl/xdg.pyo -%%DATADIR%%/xl/xldbus.py -%%DATADIR%%/xl/xldbus.pyc -%%DATADIR%%/xl/xldbus.pyo -%%DATADIR%%/xlgui/__init__.py -%%DATADIR%%/xlgui/__init__.pyc -%%DATADIR%%/xlgui/__init__.pyo -%%DATADIR%%/xlgui/collection.py -%%DATADIR%%/xlgui/collection.pyc -%%DATADIR%%/xlgui/collection.pyo -%%DATADIR%%/xlgui/commondialogs.py -%%DATADIR%%/xlgui/commondialogs.pyc -%%DATADIR%%/xlgui/commondialogs.pyo -%%DATADIR%%/xlgui/cover.py -%%DATADIR%%/xlgui/cover.pyc -%%DATADIR%%/xlgui/cover.pyo -%%DATADIR%%/xlgui/filtergui.py -%%DATADIR%%/xlgui/filtergui.pyc -%%DATADIR%%/xlgui/filtergui.pyo -%%DATADIR%%/xlgui/guiutil.py -%%DATADIR%%/xlgui/guiutil.pyc -%%DATADIR%%/xlgui/guiutil.pyo -%%DATADIR%%/xlgui/main.py -%%DATADIR%%/xlgui/main.pyc -%%DATADIR%%/xlgui/main.pyo -%%DATADIR%%/xlgui/menu.py -%%DATADIR%%/xlgui/menu.pyc -%%DATADIR%%/xlgui/menu.pyo -%%DATADIR%%/xlgui/osd.py -%%DATADIR%%/xlgui/osd.pyc -%%DATADIR%%/xlgui/osd.pyo -%%DATADIR%%/xlgui/panel/__init__.py -%%DATADIR%%/xlgui/panel/__init__.pyc -%%DATADIR%%/xlgui/panel/__init__.pyo -%%DATADIR%%/xlgui/panel/collection.py -%%DATADIR%%/xlgui/panel/collection.pyc -%%DATADIR%%/xlgui/panel/collection.pyo -%%DATADIR%%/xlgui/panel/files.py -%%DATADIR%%/xlgui/panel/files.pyc -%%DATADIR%%/xlgui/panel/files.pyo -%%DATADIR%%/xlgui/panel/playlists.py -%%DATADIR%%/xlgui/panel/playlists.pyc -%%DATADIR%%/xlgui/panel/playlists.pyo -%%DATADIR%%/xlgui/panel/radio.py -%%DATADIR%%/xlgui/panel/radio.pyc -%%DATADIR%%/xlgui/panel/radio.pyo -%%DATADIR%%/xlgui/playlist.py -%%DATADIR%%/xlgui/playlist.pyc -%%DATADIR%%/xlgui/playlist.pyo -%%DATADIR%%/xlgui/plcolumns.py -%%DATADIR%%/xlgui/plcolumns.pyc -%%DATADIR%%/xlgui/plcolumns.pyo -%%DATADIR%%/xlgui/plugins.py -%%DATADIR%%/xlgui/plugins.pyc -%%DATADIR%%/xlgui/plugins.pyo -%%DATADIR%%/xlgui/prefs/__init__.py -%%DATADIR%%/xlgui/prefs/__init__.pyc -%%DATADIR%%/xlgui/prefs/__init__.pyo -%%DATADIR%%/xlgui/prefs/cover_prefs.py -%%DATADIR%%/xlgui/prefs/cover_prefs.pyc -%%DATADIR%%/xlgui/prefs/cover_prefs.pyo -%%DATADIR%%/xlgui/prefs/general_prefs.py -%%DATADIR%%/xlgui/prefs/general_prefs.pyc -%%DATADIR%%/xlgui/prefs/general_prefs.pyo -%%DATADIR%%/xlgui/prefs/osd_prefs.py -%%DATADIR%%/xlgui/prefs/osd_prefs.pyc -%%DATADIR%%/xlgui/prefs/osd_prefs.pyo -%%DATADIR%%/xlgui/prefs/widgets.py -%%DATADIR%%/xlgui/prefs/widgets.pyc -%%DATADIR%%/xlgui/prefs/widgets.pyo -%%DATADIR%%/xlgui/progress.py -%%DATADIR%%/xlgui/progress.pyc -%%DATADIR%%/xlgui/progress.pyo -%%DATADIR%%/xlgui/tray.py -%%DATADIR%%/xlgui/tray.pyc -%%DATADIR%%/xlgui/tray.pyo %%NLS%%share/locale/an/LC_MESSAGES/exaile.mo %%NLS%%share/locale/ar/LC_MESSAGES/exaile.mo %%NLS%%share/locale/ast/LC_MESSAGES/exaile.mo @@ -376,25 +376,20 @@ %%NLS%%share/locale/zh_CN/LC_MESSAGES/exaile.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/exaile.mo share/pixmaps/exaile.png -@dirrmtry share/locale/tl/LC_MESSAGES -@dirrmtry share/locale/tl -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/frp/LC_MESSAGES -@dirrmtry share/locale/frp -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/an/LC_MESSAGES -@dirrmtry share/locale/an -@dirrm %%DATADIR%%/xlgui/prefs -@dirrm %%DATADIR%%/xlgui/panel -@dirrm %%DATADIR%%/xlgui -@dirrm %%DATADIR%%/xl/metadata -@dirrm %%DATADIR%%/xl +%%NLS%%@dirrmtry share/locale/tl/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/tl +%%NLS%%@dirrmtry share/locale/te/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/te +%%NLS%%@dirrmtry share/locale/oc/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/oc +%%NLS%%@dirrmtry share/locale/mr/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/mr +%%NLS%%@dirrmtry share/locale/frp/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/frp +%%NLS%%@dirrmtry share/locale/ast/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/ast +%%NLS%%@dirrmtry share/locale/an/LC_MESSAGES +%%NLS%%@dirrmtry share/locale/an @dirrm %%DATADIR%%/plugins/shoutcast @dirrm %%DATADIR%%/plugins/notify @dirrm %%DATADIR%%/plugins/lyricwiki @@ -406,9 +401,15 @@ @dirrm %%DATADIR%%/plugins/audioscrobbler @dirrm %%DATADIR%%/plugins/amazoncovers @dirrm %%DATADIR%%/plugins -@dirrm %%DATADIR%%/lib @dirrm %%DATADIR%%/data/images @dirrm %%DATADIR%%/data/glade @dirrm %%DATADIR%%/data @dirrm %%DATADIR%% +@dirrm lib/exaile/xlgui/prefs +@dirrm lib/exaile/xlgui/panel +@dirrm lib/exaile/xlgui +@dirrm lib/exaile/xl/metadata +@dirrm lib/exaile/xl +@dirrm lib/exaile/lib +@dirrm lib/exaile @dirrmtry share/applications --- exaile-devel_revamp.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From fullermd at over-yonder.net Sat May 2 00:00:10 2009 From: fullermd at over-yonder.net (Matthew D. Fuller) Date: Sat May 2 00:00:19 2009 Subject: ports/134151: [MAINTAINER] Update devel/bazaar-ng to 1.14.1 Message-ID: <20090501235218.752AB61C89@draco.over-yonder.net> >Number: 134151 >Category: ports >Synopsis: [MAINTAINER] Update devel/bazaar-ng to 1.14.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 May 02 00:00:09 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Matthew D. Fuller >Release: FreeBSD 7.1-STABLE i386 >Organization: >Environment: System: FreeBSD draco.over-yonder.net 7.1-STABLE FreeBSD 7.1-STABLE #0: Tue Feb 17 18:07:44 CST 2009 root@draco.over-yonder.net:/bsd/obj/bsd/src/sys/DRACO i386 >Description: New upstream point release for minor regression. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /usr/cvs/ports/devel/bazaar-ng/Makefile,v retrieving revision 1.45 diff -u -r1.45 Makefile --- Makefile 1 May 2009 13:36:38 -0000 1.45 +++ Makefile 1 May 2009 23:47:53 -0000 @@ -6,9 +6,9 @@ # PORTNAME= bazaar-ng -PORTVERSION= 1.14 +PORTVERSION= 1.14.1 CATEGORIES= devel -MASTER_SITES= https://launchpadlibrarian.net/26121468/ +MASTER_SITES= https://launchpadlibrarian.net/26231325/ DISTNAME= bzr-${PORTVERSION} MAINTAINER= fullermd@over-yonder.net Index: distinfo =================================================================== RCS file: /usr/cvs/ports/devel/bazaar-ng/distinfo,v retrieving revision 1.37 diff -u -r1.37 distinfo --- distinfo 1 May 2009 13:36:38 -0000 1.37 +++ distinfo 1 May 2009 23:48:00 -0000 @@ -1,3 +1,3 @@ -MD5 (bzr-1.14.tar.gz) = 1180a563b525e196ac1cb89110d05432 -SHA256 (bzr-1.14.tar.gz) = 88a54e8576c610e17e7a139945e461ae81fdd9ef6c4842cd00c5c9d19df3e5ab -SIZE (bzr-1.14.tar.gz) = 4289620 +MD5 (bzr-1.14.1.tar.gz) = b04aa544fd3085af95a1cddf8645f1cd +SHA256 (bzr-1.14.1.tar.gz) = 998ce4e260a0cc53a0619abb5b4bea5838f47e0f0cc0eae13dbfdd23c57146ab +SIZE (bzr-1.14.1.tar.gz) = 4289604 >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Sat May 2 06:34:59 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sat May 2 06:35:05 2009 Subject: ports/134151: [MAINTAINER] Update devel/bazaar-ng to 1.14.1 Message-ID: <200905020634.n426YxGo076878@freefall.freebsd.org> Synopsis: [MAINTAINER] Update devel/bazaar-ng to 1.14.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat May 2 06:34:58 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134151 From jsa at wickedmachine.net Sat May 2 07:10:01 2009 From: jsa at wickedmachine.net (Joseph S. Atkinson) Date: Sat May 2 07:10:08 2009 Subject: ports/134152: Allow x11/gnome2 and x11/gnome2-lite to use totem-xine Message-ID: <1241248124.38749@mephisto.wickedmachine.net> >Number: 134152 >Category: ports >Synopsis: Allow x11/gnome2 and x11/gnome2-lite to use totem-xine >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 May 02 07:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Joseph S. Atkinson >Release: FreeBSD 7.2-RC2 i386 >Organization: >Environment: System: FreeBSD 7.2-RC2 #0: Sat Apr 25 14:38:07 EDT 2009 jsa@mephisto.wickedmachine.net:/usr/obj/usr/src/sys/MEPHISTO >Description: This adds the OPTION/KNOB hooks to the gnome2 and gnome2-lite meta ports to allow users to select the totem-xine instead of the default gstreamer totem. This makes it convient for users who want to use totem-xine but don't want to have to uninstall the metaports which can facilitate updates and help determine which ports are leaves. The larger benefit of this option is that libxine enables dvd playback within totem, while gsteamer does not. >How-To-Repeat: >Fix: --- gnome2-totem-xine.diff begins here --- --- gnome2/Makefile.orig 2009-05-02 01:39:00.000000000 -0400 +++ gnome2/Makefile 2009-05-02 02:29:00.000000000 -0400 @@ -47,7 +47,6 @@ exchange-connector-setup-2.26:${PORTSDIR}/mail/evolution-exchange \ ${LOCALBASE}/lib/gstreamer-0.10/.gstreamer-plugins-core.keep:${PORTSDIR}/multimedia/gstreamer-plugins-core \ ${LOCALBASE}/lib/gstreamer-0.10/libgstgconfelements.so:${PORTSDIR}/devel/gstreamer-plugins-gconf \ - totem:${PORTSDIR}/multimedia/totem \ gnome-control-center:${PORTSDIR}/sysutils/gnome-control-center \ ${LOCALBASE}/share/gnome-background-properties/gnome-nature.xml:${PORTSDIR}/x11-themes/gnome-backgrounds \ evince:${PORTSDIR}/graphics/evince \ @@ -68,7 +67,8 @@ .endif .if !defined(GNOME_SLAVE) || ${.CURDIR:T}=="gnome2-lite" -OPTIONS= XSCREENSAVER "Use xscreensaver as screen saver app" off +OPTIONS= XSCREENSAVER "Use xscreensaver as screen saver app" off \ + XINE "Build totem with libxine instead of gstreamer" off .endif do-install: # empty @@ -110,4 +110,10 @@ .endif .endif +.if !defined(WITH_XINE) +RUN_DEPENDS+= totem:${PORTSDIR}/multimedia/totem +.else +RUN_DEPENDS+= totem:${PORTSDIR}/multimedia/totem-xine +.endif + .include --- gnome2-lite/Makefile.orig 2009-05-02 02:21:47.000000000 -0400 +++ gnome2-lite/Makefile 2009-05-02 02:22:21.000000000 -0400 @@ -31,8 +31,7 @@ ${LOCALBASE}/lib/X11/fonts/bitstream-vera/Vera.ttf:${PORTSDIR}/x11-fonts/bitstream-vera \ gconf-editor:${PORTSDIR}/sysutils/gconf-editor \ gnome-control-center:${PORTSDIR}/sysutils/gnome-control-center \ - gnome-mount:${PORTSDIR}/sysutils/gnome-mount \ - totem:${PORTSDIR}/multimedia/totem + gnome-mount:${PORTSDIR}/sysutils/gnome-mount MASTERDIR= ${.CURDIR}/../gnome2 CONFLICTS= gnome2-[0-9]* --- gnome2-totem-xine.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat May 2 07:10:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat May 2 07:10:20 2009 Subject: ports/134152: Allow x11/gnome2 and x11/gnome2-lite to use totem-xine Message-ID: <200905020710.n427AC3O019548@freefall.freebsd.org> Synopsis: Allow x11/gnome2 and x11/gnome2-lite to use totem-xine Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 2 07:10:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134152 From miwi at FreeBSD.org Sat May 2 07:16:26 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sat May 2 07:16:32 2009 Subject: ports/134150: Rework audio/exaile-devel Message-ID: <200905020716.n427GPYK034448@freefall.freebsd.org> Synopsis: Rework audio/exaile-devel Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat May 2 07:16:25 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134150 From linimon at FreeBSD.org Sat May 2 07:45:59 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat May 2 07:46:05 2009 Subject: ports/134148: databases/mysql50-server: InnoDB fails after upgrading MySQL from 5.0.51 to 5.077 on FreeBSD 6.2 Message-ID: <200905020745.n427jwvS098872@freefall.freebsd.org> Old Synopsis: InnoDB fails after upgrading MySQL from 5.0.51 to 5.077 on FreeBSD 6.2 New Synopsis: databases/mysql50-server: InnoDB fails after upgrading MySQL from 5.0.51 to 5.077 on FreeBSD 6.2 Responsible-Changed-From-To: freebsd-ports-bugs->ale Responsible-Changed-By: linimon Responsible-Changed-When: Sat May 2 07:45:41 UTC 2009 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=134148 From jsa at wickedmachine.net Sat May 2 09:20:36 2009 From: jsa at wickedmachine.net (Joseph S. Atkinson) Date: Sat May 2 09:20:54 2009 Subject: ports/134153: Fix multimedia/libxine with libdvdcss Message-ID: <1241255553.52414@mephisto.wickedmachine.net> >Number: 134153 >Category: ports >Synopsis: Fix multimedia/libxine with libdvdcss >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 May 02 09:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Joseph S. Atkinson >Release: FreeBSD 7.2-RC2 i386 >Organization: >Environment: System: FreeBSD 7.2-RC2 #0: Sat Apr 25 14:38:07 EDT 2009 jsa@mephisto.wickedmachine.net:/usr/obj/usr/src/sys/MEPHISTO >Description: libxine expects to dlopen a static libdvdcss.so.2, but currently it sits at version 3. This patch, to be placed in multimedia/libxine/files/, changes the hardlink to the .so symlink. This not only allows fixes the problem currently, but should allow for future versions to work without need for further modification (until the ABI truly does break). NOTE: There is a hook HAVE_DVDCSS_DVDCSS_H for building support proper, but this appears to be broken. Thanks to jpaetzel for solving the mystery and rnoland for helping me try it out with dvdcss/dvdcss.h. >How-To-Repeat: Build multimedia/xine or multimdia/totem-xine, then try to watch a css encrypted dvd. >Fix: --- patch-src:libdvdnav:dvd_input.c begins here --- --- src/input/libdvdnav/dvd_input.c.orig 2009-05-02 04:36:50.000000000 -0400 +++ src/input/libdvdnav/dvd_input.c 2009-05-02 04:40:01.000000000 -0400 @@ -369,7 +369,7 @@ #elif defined(WIN32) dvdcss_library = dlopen("libdvdcss.dll", RTLD_LAZY); #else - dvdcss_library = dlopen("libdvdcss.so.2", RTLD_LAZY); + dvdcss_library = dlopen("libdvdcss.so", RTLD_LAZY); #endif if(dvdcss_library != NULL) { --- patch-src:libdvdnav:dvd_input.c ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat May 2 09:20:58 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat May 2 09:21:31 2009 Subject: ports/134153: Fix multimedia/libxine with libdvdcss Message-ID: <200905020920.n429KwrU028755@freefall.freebsd.org> Synopsis: Fix multimedia/libxine with libdvdcss Responsible-Changed-From-To: freebsd-ports-bugs->nobutaka Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 2 09:20:57 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134153 From dhn at FreeBSD.org Sat May 2 09:30:21 2009 From: dhn at FreeBSD.org (dhn@FreeBSD.org) Date: Sat May 2 09:30:49 2009 Subject: ports/134136: [PATCH] net-im/pidgin-libnotify: update to 0.14 Message-ID: <200905020930.n429ULmQ039597@freefall.freebsd.org> Synopsis: [PATCH] net-im/pidgin-libnotify: update to 0.14 Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: dhn Responsible-Changed-When: Sat May 2 09:30:20 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134136 From cm at therek.net Sat May 2 09:40:19 2009 From: cm at therek.net (Cezary Morga) Date: Sat May 2 09:40:27 2009 Subject: ports/134154: [patch] dns/p5-Net-DNS-SEC missing dependency Message-ID: <200905020930.n429Ulln028455@www.freebsd.org> >Number: 134154 >Category: ports >Synopsis: [patch] dns/p5-Net-DNS-SEC missing dependency >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 May 02 09:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Cezary Morga >Release: >Organization: >Environment: >Description: Add dns/p5-Net-DNS-SEC missing dependency pointed out by Geoffrey Sisson on perl@freebsd.org. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN p5-Net-DNS-SEC.orig/Makefile p5-Net-DNS-SEC/Makefile --- p5-Net-DNS-SEC.orig/Makefile 2009-05-01 21:36:36.664491026 +0200 +++ p5-Net-DNS-SEC/Makefile 2009-05-01 21:43:01.965321439 +0200 @@ -7,6 +7,7 @@ PORTNAME= Net-DNS-SEC PORTVERSION= 0.15 +PORTREVISION= 1 CATEGORIES= dns perl5 MASTER_SITES= CPAN \ http://www.ripe.net/ripencc/pub-services/np/DISI/SRC/ @@ -20,7 +21,8 @@ ${SITE_PERL}/${PERL_ARCH}/Crypt/OpenSSL/DSA.pm:${PORTSDIR}/security/p5-Crypt-OpenSSL-DSA \ ${SITE_PERL}/${PERL_ARCH}/Crypt/OpenSSL/Bignum.pm:${PORTSDIR}/security/p5-Crypt-OpenSSL-Bignum \ ${SITE_PERL}/${PERL_ARCH}/Digest/SHA.pm:${PORTSDIR}/security/p5-Digest-SHA \ - ${SITE_PERL}/Digest/BubbleBabble.pm:${PORTSDIR}/security/p5-Digest-BubbleBabble + ${SITE_PERL}/Digest/BubbleBabble.pm:${PORTSDIR}/security/p5-Digest-BubbleBabble \ + ${SITE_PERL}/MIME/Base32.pm:${PORTSDIR}/converters/p5-MIME-Base32 RUN_DEPENDS= ${BUILD_DEPENDS} PERL_CONFIGURE= yes >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat May 2 09:40:31 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat May 2 09:40:47 2009 Subject: ports/134154: [patch] dns/p5-Net-DNS-SEC missing dependency Message-ID: <200905020940.n429eULO054964@freefall.freebsd.org> Synopsis: [patch] dns/p5-Net-DNS-SEC missing dependency Responsible-Changed-From-To: freebsd-ports-bugs->perl Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 2 09:40:30 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134154 From soralx at cydem.org Sat May 2 10:30:03 2009 From: soralx at cydem.org (soralx@cydem.org) Date: Sat May 2 10:30:09 2009 Subject: ports/134155: nvidia-driver does not work with KVA_PAGES=512 and newer card[s] Message-ID: <200905020955.n429tMex026699@soralx.cydem.org> >Number: 134155 >Category: ports >Synopsis: nvidia-driver does not work with KVA_PAGES=512 and newer card[s] >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 May 02 10:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: cydem.org!soralx >Release: FreeBSD 7.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD soralx.cydem.org 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Thu Apr 23 22:34:35 PDT 2009 root@soralx.cydem.org:/usr/obj/usr/src/sys/SORALX i386 nvidia-driver-180.44 >Description: In order to be able to use zfs, to utilize a resource-intensive 3D graphical application (ports/games/assaultcube) at 2560x1600, etc, vm.kmem_size was set to "1024M", and kernel recompiled with "options KVA_PAGES=512". Xorg worked fine with 7600GT and 8600GT cards and nvidia-driver. Sidenote: ports/emulators/wine stopped working. Upon changing the video card to GeForce 9500GT, Xorg would not start (blank screen, lock ups). Editing xorg.conf had no effect, even the simplest possible configuration did not work. Recompiling kernel without KVA_PAGES solved the problem. Sidenote: wine began working normally (see ports/123526). >How-To-Repeat: If you have nVidia GeForce 9500GT card (and possibly other 9000-series cards). Install ports/x11/nvidia-driver, edit /etc/X11/xorg.conf to use the nVidia's driver, add "options KVA_PAGES=512" to kernel config file, recompile kernel, reboot. Execute 'X', observe the monitor[s] going into standby. Sometimes the system locks up, sometimes it can be rebooted with --. >Fix: No fix known. For Xorg to fire up as a workaround, make sure vm.kmem_size and vm.kmem_size_max in /boot/loader.conf are set to default (or 512M max), and recompile kernel without option KVA_PAGES. >Release-Note: >Audit-Trail: >Unformatted: From gerard at seibercom.net Sat May 2 10:50:02 2009 From: gerard at seibercom.net (Gerard Seibert) Date: Sat May 2 10:50:13 2009 Subject: ports/134156: Unable to build updated: e2fsprogs-libuuid-1.41.5 Message-ID: <200905021049.n42AnBMO083069@www.freebsd.org> >Number: 134156 >Category: ports >Synopsis: Unable to build updated: e2fsprogs-libuuid-1.41.5 >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat May 02 10:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Gerard Seibert >Release: FreeBSD-6.4 >Organization: seibercom.net >Environment: FreeBSD scorpio.seibercom.net 6.4-STABLE FreeBSD 6.4-STABLE #0: Mon Apr 6 23:53:57 EDT 2009 gerard@scorpio.seibercom.net:/usr/obj/usr/src/sys/SCORPIO i386 >Description: Repeated attempts to build the updated e2fsprogs-libuuid-1.41.5 port have failed. It continually hangs at the same point in the build. A copy of the build attempt can be viewed here: http://pastebin.ca/1410253 I am also pasting the log file here: Script started on Sat May 2 06:33:12 2009 ===> Found saved configuration for e2fsprogs-libuuid-1.41.5 => e2fsprogs-1.41.5.tar.gz doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from http://easynews.dl.sourceforge.net/sourceforge/e2fsprogs/. e2fsprogs-1.41.5.tar.gz 0% of 4312 kB 0 Bps e2fsprogs-1.41.5.tar.gz 4% of 4312 kB 237 kBps e2fsprogs-1.41.5.tar.gz 18% of 4312 kB 424 kBps e2fsprogs-1.41.5.tar.gz 31% of 4312 kB 474 kBps e2fsprogs-1.41.5.tar.gz 45% of 4312 kB 502 kBps e2fsprogs-1.41.5.tar.gz 58% of 4312 kB 521 kBps e2fsprogs-1.41.5.tar.gz 73% of 4312 kB 532 kBps e2fsprogs-1.41.5.tar.gz 86% of 4312 kB 541 kBps e2fsprogs-1.41.5.tar.gz 100% of 4312 kB 551 kBps ===> Extracting for e2fsprogs-libuuid-1.41.5 => MD5 Checksum OK for e2fsprogs-1.41.5.tar.gz. => SHA256 Checksum OK for e2fsprogs-1.41.5.tar.gz. ===> Patching for e2fsprogs-libuuid-1.41.5 ===> Applying FreeBSD patches for e2fsprogs-libuuid-1.41.5 /usr/bin/sed -i.bak -e 's,/var/lib/libuuid,/var/run/libuuid,g' -e 's,/usr/sbin/uuidd,/usr/local/sbin/uuidd,' /usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/lib/uuid/uuidd.h ===> e2fsprogs-libuuid-1.41.5 depends on executable: gmake - found ===> Configuring for e2fsprogs-libuuid-1.41.5 Generating configuration file for e2fsprogs version 1.41.5 Release date is April, 2009 checking build system type... i386-portbld-freebsd6.4 checking host system type... i386-portbld-freebsd6.4 CC=cc checking for gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... 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... cc -E LD=ld CCOPTS is -O2 -fno-strict-aliasing -pipe -march=pentium2 checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking linux/fs.h usability... no checking linux/fs.h presence... no checking for linux/fs.h... no checking for additional special compiler flags... (none) Disabling maintainer mode by default Disabling compression support by default Enabling htree directory support by default Enabling ELF shared libraries Disabling BSD shared libraries by default Disabling profiling libraries by default Disabling checker libraries by default Disabling journal debugging by default Disabling blkid debugging by default Enabling testio debugging by default checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes Enabling private blkid library by default Enabling debugfs support by default Enabling e2image support by default Enabling e2resize support by default Not building fsck wrapper Not building e2initrd helper Try using thread local support by default checking for thread local storage (TLS) class... __thread Building uuidd by default checking whether gmake sets $(MAKE)... yes checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether NLS is requested... no checking for msgfmt... /usr/local/bin/msgfmt checking for gmsgfmt... /usr/local/bin/msgfmt checking for xgettext... /usr/local/bin/xgettext checking for msgmerge... /usr/local/bin/msgmerge checking for ranlib... ranlib checking for strerror in -lcposix... no checking for an ANSI C-conforming const... yes checking for signed... yes checking for inline... inline checking for off_t... yes checking for size_t... yes checking for long long... yes checking for long double... yes checking for wchar_t... yes checking for wint_t... yes checking for inttypes.h... yes checking for stdint.h... yes checking for intmax_t... yes checking whether printf() supports POSIX/XSI format strings... yes checking for working alloca.h... no checking for alloca... yes checking for stdlib.h... (cached) yes checking for unistd.h... (cached) yes checking for getpagesize... yes checking for working mmap... yes checking whether we are using the GNU C Library 2.1 or newer... no checking whether integer division by zero raises SIGFPE... yes checking for unsigned long long... yes checking for inttypes.h... yes checking whether the inttypes.h PRIxNN macros are broken... no checking for stdint.h... (cached) yes checking for SIZE_MAX... yes checking for stdint.h... (cached) yes checking for ld used by GCC... ld checking if the linker (ld) is GNU ld... yes checking for shared library run path origin... done checking for ptrdiff_t... yes checking argz.h usability... no checking argz.h presence... no checking for argz.h... no checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking nl_types.h usability... yes checking nl_types.h presence... yes checking for nl_types.h... yes checking stddef.h usability... yes checking stddef.h presence... yes checking for stddef.h... yes checking for stdlib.h... (cached) yes checking for string.h... (cached) yes checking for unistd.h... (cached) yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking for asprintf... yes checking for fwprintf... yes checking for getcwd... yes checking for getegid... yes checking for geteuid... yes checking for getgid... yes checking for getuid... yes checking for mempcpy... no checking for munmap... yes checking for putenv... yes checking for setenv... yes checking for setlocale... yes checking for snprintf... yes checking for stpcpy... yes checking for strcasecmp... yes checking for strdup... yes checking for strtoul... yes checking for tsearch... yes checking for wcslen... yes checking for __argz_count... no checking for __argz_stringify... no checking for __argz_next... no checking for __fsetlocking... no checking whether _snprintf is declared... no checking whether _snwprintf is declared... no checking whether feof_unlocked is declared... yes checking whether fgets_unlocked is declared... no checking whether getc_unlocked is declared... yes checking for iconv... yes checking how to link with libiconv... /usr/local/lib/libiconv.so -Wl,-rpath -Wl,/usr/local/lib checking for iconv declaration... extern size_t iconv (iconv_t cd, const char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); checking for nl_langinfo and CODESET... yes checking for LC_MESSAGES... yes checking for bison... bison checking version of bison... 2.4.1, ok checking whether NLS is requested... no checking whether to use NLS... no checking whether gmake sets $(MAKE)... (cached) yes checking for ln... /bin/ln checking whether ln -s works... yes checking for mv... /bin/mv checking for cp... /bin/cp checking for rm... /bin/rm checking for chmod... /bin/chmod checking for gawk... gawk checking for egrep... (cached) /usr/bin/grep -E checking for sed... /usr/bin/sed checking for perl... /usr/local/bin/perl checking for ldconfig... /sbin/ldconfig checking for ar... ar checking for ranlib... (cached) ranlib checking for strip... strip checking for makeinfo... makeinfo checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking dirent.h usability... yes checking dirent.h presence... yes checking for dirent.h... yes checking errno.h usability... yes checking errno.h presence... yes checking for errno.h... yes checking getopt.h usability... yes checking getopt.h presence... yes checking for getopt.h... yes checking malloc.h usability... no checking malloc.h presence... no checking for malloc.h... no checking mntent.h usability... no checking mntent.h presence... no checking for mntent.h... no checking paths.h usability... yes checking paths.h presence... yes checking for paths.h... yes checking semaphore.h usability... yes checking semaphore.h presence... yes checking for semaphore.h... yes checking setjmp.h usability... yes checking setjmp.h presence... yes checking for setjmp.h... yes checking signal.h usability... yes checking signal.h presence... yes checking for signal.h... yes checking stdarg.h usability... yes checking stdarg.h presence... yes checking for stdarg.h... yes checking for stdint.h... (cached) yes checking for stdlib.h... (cached) yes checking termios.h usability... yes checking termios.h presence... yes checking for termios.h... yes checking termio.h usability... no checking termio.h presence... no checking for termio.h... no checking for unistd.h... (cached) yes checking utime.h usability... yes checking utime.h presence... yes checking for utime.h... yes checking linux/fd.h usability... no checking linux/fd.h presence... no checking for linux/fd.h... no checking linux/major.h usability... no checking linux/major.h presence... no checking for linux/major.h... no checking net/if_dl.h usability... yes checking net/if_dl.h presence... yes checking for net/if_dl.h... yes checking netinet/in.h usability... yes checking netinet/in.h presence... yes checking for netinet/in.h... yes checking sys/disklabel.h usability... yes checking sys/disklabel.h presence... yes checking for sys/disklabel.h... yes checking sys/file.h usability... yes checking sys/file.h presence... yes checking for sys/file.h... yes checking sys/ioctl.h usability... yes checking sys/ioctl.h presence... yes checking for sys/ioctl.h... yes checking sys/mkdev.h usability... no checking sys/mkdev.h presence... no checking for sys/mkdev.h... no checking sys/mman.h usability... yes checking sys/mman.h presence... yes checking for sys/mman.h... yes checking sys/prctl.h usability... no checking sys/prctl.h presence... no checking for sys/prctl.h... no checking sys/queue.h usability... yes checking sys/queue.h presence... yes checking for sys/queue.h... yes checking sys/resource.h usability... yes checking sys/resource.h presence... yes checking for sys/resource.h... yes checking sys/select.h usability... yes checking sys/select.h presence... yes checking for sys/select.h... yes checking sys/socket.h usability... yes checking sys/socket.h presence... yes checking for sys/socket.h... yes checking sys/sockio.h usability... yes checking sys/sockio.h presence... yes checking for sys/sockio.h... yes checking for sys/stat.h... (cached) yes checking sys/syscall.h usability... yes checking sys/syscall.h presence... yes checking for sys/syscall.h... yes checking sys/sysmacros.h usability... no checking sys/sysmacros.h presence... no checking for sys/sysmacros.h... no checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for sys/types.h... (cached) yes checking sys/un.h usability... yes checking sys/un.h presence... yes checking for sys/un.h... yes checking sys/wait.h usability... yes checking sys/wait.h presence... yes checking for sys/wait.h... yes checking for sys/disk.h... yes checking for sys/mount.h... no checking for net/if.h... no checking for vprintf... yes checking for _doprnt... no checking for struct dirent.d_reclen... yes checking for ssize_t... yes checking whether llseek is declared... no checking whether lseek64 is declared... no checking for short... yes checking size of short... 2 checking for int... yes checking size of int... 4 checking for long... yes checking size of long... 4 checking for long long... (cached) yes checking size of long long... 8 checking whether byte ordering is bigendian... no :1:23: asm/types.h: No such file or directory asm_types.c:12:2: warning: #warning __U8_TYPEDEF not defined asm_types.c:21:2: warning: #warning __S8_TYPEDEF not defined asm_types.c:30:2: warning: #warning __U16_TYPEDEF not defined asm_types.c:39:2: warning: #warning __S16_TYPEDEF not defined asm_types.c:49:2: warning: #warning __U32_TYPEDEF not defined asm_types.c:58:2: warning: #warning __S32_TYPEDEF not defined asm_types.c:68:2: warning: #warning __U64_TYPEDEF not defined asm_types.c:77:2: warning: #warning __S64_TYPEDEF not defined checking for inttypes.h... (cached) yes checking for intptr_t... yes checking whether struct stat has a st_flags field... yes checking whether st_flags field is useful... yes checking for struct sockaddr.sa_len... yes checking for chflags... yes checking for getrusage... yes checking for llseek... no checking for lseek64... no checking for open64... no checking for fstat64... no checking for ftruncate64... no checking for getmntinfo... yes checking for strtoull... yes checking for strcasecmp... (cached) yes checking for srandom... yes checking for jrand48... yes checking for fchown... yes checking for mallinfo... no checking for fdatasync... no checking for strnlen... no checking for strptime... yes checking for strdup... (cached) yes checking for sysconf... yes checking for pathconf... yes checking for posix_memalign... no checking for memalign... no checking for valloc... yes checking for __secure_getenv... no checking for prctl... no checking for mmap... yes checking for utime... yes checking for setresuid... yes checking for setresgid... yes checking for usleep... yes checking for nanosleep... yes checking for getdtablesize... yes checking for getrlimit... yes checking for socket in -lsocket... no checking for dlopen in -ldl... no checking for optreset... yes checking for sem_init... yes checking for unified diff option... -u checking whether linker accepts -static... yes configure: creating ./config.status config.status: creating MCONFIG config.status: creating Makefile config.status: creating e2fsprogs.spec config.status: creating util/Makefile config.status: creating util/subst.conf config.status: creating util/gen-tarball config.status: creating lib/et/Makefile config.status: creating lib/ss/Makefile config.status: creating lib/e2p/Makefile config.status: creating lib/ext2fs/Makefile config.status: creating lib/ext2fs/ext2_types.h config.status: creating lib/uuid/Makefile config.status: creating lib/uuid/uuid_types.h config.status: creating lib/blkid/Makefile config.status: creating lib/blkid/blkid_types.h config.status: creating lib/ss/ss.pc config.status: creating lib/uuid/uuid.pc config.status: creating lib/et/com_err.pc config.status: creating lib/e2p/e2p.pc config.status: creating lib/blkid/blkid.pc config.status: creating lib/ext2fs/ext2fs.pc config.status: creating misc/Makefile config.status: creating ext2ed/Makefile config.status: creating e2fsck/Makefile config.status: creating debugfs/Makefile config.status: creating tests/Makefile config.status: creating tests/progs/Makefile config.status: creating resize/Makefile config.status: creating doc/Makefile config.status: creating intl/Makefile config.status: creating po/Makefile.in config.status: executing default-1 commands config.status: creating po/POTFILES config.status: creating po/Makefile ===> Building for e2fsprogs-libuuid-1.41.5 /bin/mkdir -p /usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/lib/uuid/elfshared cd ./util ; gmake subst gmake[1]: Entering directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/util' CC subst.c LD subst gmake[1]: Leaving directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/util' gmake[1]: Entering directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5' cd .; CONFIG_FILES=./lib/ext2fs/ext2_types.h ./config.status config.status: creating ./lib/ext2fs/ext2_types.h config.status: executing default-1 commands gmake[1]: Leaving directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5' gmake[1]: Entering directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5' cd .; CONFIG_FILES=./lib/blkid/blkid_types.h ./config.status config.status: creating ./lib/blkid/blkid_types.h config.status: executing default-1 commands gmake[1]: Leaving directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5' gmake[1]: Entering directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5' cd .; CONFIG_FILES=./lib/uuid/uuid_types.h ./config.status config.status: creating ./lib/uuid/uuid_types.h config.status: executing default-1 commands gmake[1]: Leaving directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5' gmake[1]: Entering directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/lib/et' SUBST compile_et gmake[1]: Leaving directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/lib/et' gmake[1]: Entering directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/lib/ext2fs' SUBST ext2_err.et COMPILE_ET ext2_err.et gmake[1]: Leaving directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/lib/ext2fs' making all in lib/uuid gmake[1]: Entering directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/lib/uuid' gmake[2]: Entering directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/lib/uuid' MKDIR elfshared gmake[2]: Leaving directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/lib/uuid' CC clear.c CC compare.c CC copy.c CC gen_uuid.c CC isnull.c CC pack.c CC parse.c CC unpack.c CC unparse.c CC uuid_time.c GEN_LIB libuuid.a GEN_ELF_SOLIB libuuid.so.1.2 CC tst_uuid.o LD tst_uuid LD uuid_time SUBST uuid.3 SUBST uuid_clear.3 SUBST uuid_compare.3 SUBST uuid_copy.3 SUBST uuid_generate.3 SUBST uuid_is_null.3 SUBST uuid_parse.3 SUBST uuid_time.3 SUBST uuid_unparse.3 gmake[1]: Leaving directory `/usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/lib/uuid' cd /usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/misc && make uuidgen uuidgen.1 uuidd uuidd.8 CC ./uuidgen.c LD uuidgen SUBST uuidgen.1 CC uuidd.c LD uuidd SUBST uuidd.8 cd /usr/ports/misc/e2fsprogs-libuuid/work/e2fsprogs-1.41.5/lib/uuid && make check LD_LIBRARY_PATH=../../lib DYLD_LIBRARY_PATH=../../lib ./tst_uuid UUID generate = ed91f23c-f2b5-4b4a-b068-fb953a953ed8 UUID: ed91f23cf2b54b4ab068fb953a953ed8 UUID type = 4, UUID variant = 1 UUID random string = 34dae120-a872-4dd5-9de1-3828c47fc33f UUID: 34dae120a8724dd59de13828c47fc33f UUID type = 4, UUID variant = 1 ^C Script done on Sat May 2 06:35:03 2009 >How-To-Repeat: Attempt to build the port. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From nick at foobar.org Sat May 2 11:40:02 2009 From: nick at foobar.org (Nick Hilliard) Date: Sat May 2 11:40:35 2009 Subject: ports/134158: maintainer update: flyspray 0.9.9.5.1 -> 0.9.9.6 Message-ID: <200905021107.n42B71e1083336@muffin.acquirer.com> >Number: 134158 >Category: ports >Synopsis: maintainer update: flyspray 0.9.9.5.1 -> 0.9.9.6 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat May 02 11:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Nick Hilliard >Release: FreeBSD 6.1-RELEASE i386 >Organization: Network Ability Ltd >Environment: System: FreeBSD xx 6.1-RELEASE FreeBSD 6.1-RELEASE #0: Wed May 17 11:38:53 IST 2006 nick@xxx:/data/src/usr.src/src-6.1/src/sys/i386/compile/xxx i386 >Description: Upgrade to latest and greatest version. >How-To-Repeat: >Fix: diff -bNur flyspray.orig/Makefile flyspray/Makefile --- flyspray.orig/Makefile 2008-10-25 20:10:42.000000000 +0100 +++ flyspray/Makefile 2009-05-02 11:49:06.000000000 +0100 @@ -6,9 +6,9 @@ # PORTNAME= flyspray -PORTVERSION= 0.9.9.5.1 +PORTVERSION= 0.9.9.6 CATEGORIES= devel www -MASTER_SITES= http://twinkie.foobar.org/files/ +MASTER_SITES= http://flyspray.org/ MAINTAINER= nick@foobar.org COMMENT= A simple, easy-to-use web based bug tracking system @@ -16,10 +16,11 @@ RUN_DEPENDS= ${LOCALBASE}/share/adodb/adodb.inc.php:${PORTSDIR}/databases/adodb USE_PHP= pcre session zlib xml gd -USE_BZIP2= yes +USE_ZIP= yes WANT_PHP_WEB= yes NO_BUILD= yes +NO_WRKSUBDIR= yes OPTIONS= GRAPHVIZ "Install Graphviz for task dependency graphs" off \ MYSQLI "Use MySQLi Database Interface" on \ diff -bNur flyspray.orig/distinfo flyspray/distinfo --- flyspray.orig/distinfo 2008-10-25 20:10:42.000000000 +0100 +++ flyspray/distinfo 2009-05-02 11:46:27.000000000 +0100 @@ -1,3 +1,3 @@ -MD5 (flyspray-0.9.9.5.1.tar.bz2) = 54c5327b507349f2963a3d899f5b9d91 -SHA256 (flyspray-0.9.9.5.1.tar.bz2) = 6bd3d9bee474feb2e75cdf181bba750655068ad35b05ba677e632dbd5e5bfd4a -SIZE (flyspray-0.9.9.5.1.tar.bz2) = 971055 +MD5 (flyspray-0.9.9.6.zip) = 095b46b08881554790830edab51970ed +SHA256 (flyspray-0.9.9.6.zip) = c5c728bb66aca8c8ded3533387a751a129a2096b230f9dd1c16f77d1767bbe6c +SIZE (flyspray-0.9.9.6.zip) = 1573955 diff -bNur flyspray.orig/pkg-plist flyspray/pkg-plist --- flyspray.orig/pkg-plist 2008-10-25 20:10:42.000000000 +0100 +++ flyspray/pkg-plist 2009-05-02 11:59:08.000000000 +0100 @@ -88,6 +88,21 @@ %%DATADIR%%/includes/external/swift-mailer/Swift/Cache/Memory.php %%DATADIR%%/includes/external/swift-mailer/Swift.php %%DATADIR%%/includes/external/swift-mailer/EasySwift.php +%%DATADIR%%/includes/external/Zend/Http/Client/Adapter/Interface.php +%%DATADIR%%/includes/external/Zend/Http/Client/Adapter/Socket.php +%%DATADIR%%/includes/external/Zend/Http/Client.php +%%DATADIR%%/includes/external/Zend/Http/Response.php +%%DATADIR%%/includes/external/Zend/Loader.php +%%DATADIR%%/includes/external/Zend/Registry.php +%%DATADIR%%/includes/external/Zend/Rest/Client/Result.php +%%DATADIR%%/includes/external/Zend/Rest/Client.php +%%DATADIR%%/includes/external/Zend/Service/Abstract.php +%%DATADIR%%/includes/external/Zend/Uri/Http.php +%%DATADIR%%/includes/external/Zend/Uri.php +%%DATADIR%%/includes/external/Zend/Validate/Abstract.php +%%DATADIR%%/includes/external/Zend/Validate/Hostname.php +%%DATADIR%%/includes/external/Zend/Validate/Interface.php +%%DATADIR%%/includes/external/Zend/Validate/Ip.php %%DATADIR%%/includes/fix.inc.php %%DATADIR%%/includes/i18n.inc.php %%DATADIR%%/includes/modify.inc.php @@ -199,6 +214,7 @@ %%DATADIR%%/lang/hu.php %%DATADIR%%/lang/it.php %%DATADIR%%/lang/ja.php +%%DATADIR%%/lang/mk.php %%DATADIR%%/lang/nl.php %%DATADIR%%/lang/pl.php %%DATADIR%%/lang/pt_br.php @@ -421,7 +437,6 @@ %%DATADIR%%/setup/templates/administration.tpl %%DATADIR%%/setup/templates/complete_install.tpl %%DATADIR%%/setup/templates/database.tpl -%%DATADIR%%/setup/templates/license.tpl %%DATADIR%%/setup/templates/pre_install.tpl %%DATADIR%%/setup/templates/structure.tpl %%DATADIR%%/setup/templates/upgrade.tpl @@ -622,6 +637,15 @@ @dirrm %%DATADIR%%/includes/external/swift-mailer/Swift/Cache @dirrm %%DATADIR%%/includes/external/swift-mailer/Swift @dirrm %%DATADIR%%/includes/external/swift-mailer +@dirrm %%DATADIR%%/includes/external/Zend/Http/Client/Adapter +@dirrm %%DATADIR%%/includes/external/Zend/Http/Client +@dirrm %%DATADIR%%/includes/external/Zend/Http +@dirrm %%DATADIR%%/includes/external/Zend/Rest/Client +@dirrm %%DATADIR%%/includes/external/Zend/Rest +@dirrm %%DATADIR%%/includes/external/Zend/Service +@dirrm %%DATADIR%%/includes/external/Zend/Uri +@dirrm %%DATADIR%%/includes/external/Zend/Validate +@dirrm %%DATADIR%%/includes/external/Zend @dirrm %%DATADIR%%/includes/external @dirrm %%DATADIR%%/includes @dirrm %%DATADIR%%/javascript/callbacks >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Sat May 2 12:28:15 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sat May 2 12:28:26 2009 Subject: ports/134158: maintainer update: flyspray 0.9.9.5.1 -> 0.9.9.6 Message-ID: <200905021228.n42CSEkH083305@freefall.freebsd.org> Synopsis: maintainer update: flyspray 0.9.9.5.1 -> 0.9.9.6 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat May 2 12:28:13 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134158 From miwi at FreeBSD.org Sat May 2 12:28:16 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sat May 2 12:28:26 2009 Subject: ports/134156: Unable to build updated: e2fsprogs-libuuid-1.41.5 Message-ID: <200905021228.n42CSG8I083371@freefall.freebsd.org> Synopsis: Unable to build updated: e2fsprogs-libuuid-1.41.5 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sat May 2 12:28:16 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134156 From miwi at FreeBSD.org Sat May 2 12:41:42 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sat May 2 12:41:49 2009 Subject: ports/134155: nvidia-driver does not work with KVA_PAGES=512 and newer card[s] Message-ID: <200905021241.n42CfgOC009148@freefall.freebsd.org> Synopsis: nvidia-driver does not work with KVA_PAGES=512 and newer card[s] Responsible-Changed-From-To: freebsd-ports-bugs->danfe Responsible-Changed-By: miwi Responsible-Changed-When: Sat May 2 12:41:41 UTC 2009 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=134155 From wenheping at gmail.com Sat May 2 13:50:02 2009 From: wenheping at gmail.com (Wen Heping) Date: Sat May 2 13:50:07 2009 Subject: ports/134159: [Update]textproc/raptor:update to 1.4.18 Message-ID: <200905021344.n42Die45085877@www.freebsd.org> >Number: 134159 >Category: ports >Synopsis: [Update]textproc/raptor:update to 1.4.18 >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 May 02 13:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-CURRENT >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sun Mar 22 22:12:06 CST 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: update to 1.4.18 from 1.4.16 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-05-02 21:19:52.000000000 +0800 +++ Makefile 2009-05-02 21:36:54.000000000 +0800 @@ -7,8 +7,7 @@ # PORTNAME= raptor -PORTVERSION= 1.4.16 -PORTREVISION= 1 +PORTVERSION= 1.4.18 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://download.librdf.org/source/ --- distinfo.orig 2009-05-02 21:19:52.000000000 +0800 +++ distinfo 2009-05-02 21:19:52.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (raptor-1.4.16.tar.gz) = 49c16262e0aed0197a3e60ade7bec205 -SHA256 (raptor-1.4.16.tar.gz) = 450b04ffd1553288507d20aa04da7b874faeec13dd2ea1b7af5ffdab957e85b0 -SIZE (raptor-1.4.16.tar.gz) = 1510527 +MD5 (raptor-1.4.18.tar.gz) = 284e768eeda0e2898b0d5bf7e26a016e +SHA256 (raptor-1.4.18.tar.gz) = edfdb0734fb7120bf1cbb60e45a07864db2daaadf5c3591ccf7357f244d82a40 +SIZE (raptor-1.4.18.tar.gz) = 1657246 --- pkg-plist.orig 2009-05-02 21:19:52.000000000 +0800 +++ pkg-plist 2009-05-02 21:19:52.000000000 +0800 @@ -7,6 +7,9 @@ lib/libraptor.so.2 libdata/pkgconfig/raptor.pc @exec mkdir -p %D/share/gtk-doc/html/raptor +share/gtk-doc/html/raptor/parser-rdfa.html +share/gtk-doc/html/raptor/serializer-json.html +share/gtk-doc/html/raptor/raptor-section-sax2.html share/gtk-doc/html/raptor/home.png share/gtk-doc/html/raptor/index.html share/gtk-doc/html/raptor/index.sgml >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat May 2 13:50:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat May 2 13:50:19 2009 Subject: ports/134159: [Update]textproc/raptor:update to 1.4.18 Message-ID: <200905021350.n42DoCLu092557@freefall.freebsd.org> Synopsis: [Update]textproc/raptor:update to 1.4.18 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 2 13:50:12 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134159 From dindin at dindin.ru Sat May 2 17:30:03 2009 From: dindin at dindin.ru (Denis Barov) Date: Sat May 2 17:30:12 2009 Subject: ports/134160: security/openssh-portable update to 5.2p1, some cross-patching fixes, take maintainership Message-ID: <200905021721.n42HLJAt017890@www.freebsd.org> >Number: 134160 >Category: ports >Synopsis: security/openssh-portable update to 5.2p1, some cross-patching fixes, take maintainership >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 May 02 17:30:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Denis Barov >Release: FreeBSD 6.X 7.X 8.X >Organization: Yandex >Environment: FreeBSD sepulca.yandex.ru 7.1-RELEASE-p1 FreeBSD 7.1-RELEASE-p1 #0: Thu Apr 16 14:52:47 MSD 2009 root@ysbackup2.yandex.ru:/opt/tmp/mk_pkg.LHmjdqQB/obj/i386/opt/usr/RELENG_7_1/src/sys/SEPULCA i386 >Description: - security/openssh-portable update to 5.2p1, - fixed LPK and HPN conflict - some found cross-patching issues marked as broken - take maintainership >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN security/openssh-portable/Makefile security/openssh-portable/Makefile --- security/openssh-portable/Makefile 2009-04-22 10:01:39.000000000 +0400 +++ security/openssh-portable/Makefile 2009-05-02 21:13:12.000000000 +0400 @@ -6,8 +6,7 @@ # PORTNAME= openssh -DISTVERSION= 5.1p1 -PORTEPOCH= 1 +DISTVERSION= 5.2p1 CATEGORIES= security ipv6 .if defined(OPENSSH_SNAPSHOT) MASTER_SITES= http://www.mindrot.org/openssh_snap/ @@ -18,7 +17,7 @@ PKGNAMESUFFIX= ${PORTABLE_SUFFIX}${GSSAPI_SUFFIX}${BASE_SUFFIX} DISTNAME= # empty -MAINTAINER= ports@FreeBSD.org +MAINTAINER= dindin@dindin.ru COMMENT= The portable version of OpenBSD's OpenSSH .if defined(OPENSSH_SNAPSHOT) @@ -72,7 +71,10 @@ BROKEN= does not compile .endif -# Preserve deprecated OPENSSH_OVERWRITE_BASE settings +.if defined(WITH_X509) && ( defined(WITH_HPN) || defined(WITH_LPK)) +BROKEN= "X509 patch incompatible with HPN and LPK patches" +.endif + .if defined(OPENSSH_OVERWRITE_BASE) WITH_OVERWRITE_BASE= yes .endif @@ -96,6 +98,7 @@ .if !defined(WITHOUT_KERBEROS) .if defined(KRB5_HOME) && exists(${KRB5_HOME}) || defined(WITH_GSSAPI) .if defined(WITH_KERB_GSSAPI) +BROKEN= "KERB_GSSAPI patch incompatible with ${PORTNAME}-5.2p1" PATCH_DIST_STRIP= -p0 PATCH_SITES+= http://www.sxw.org.uk/computing/patches/ PATCHFILES+= openssh-5.0p1-gsskex-20080404.patch @@ -136,19 +139,13 @@ EXTRA_PATCHES+= ${FILESDIR}/scardpin.patch .endif -.if defined(WITH_HPN) && defined(WITH_LPK) -BROKEN= HPN and LPK patches are incompatible -.endif - .if defined(WITH_HPN) -PATCH_DIST_STRIP= -p1 -PATCH_SITES+= http://www.psc.edu/networking/projects/hpn-ssh/ -PATCHFILES+= openssh-5.1p1-hpn13v5.diff.gz +EXTRA_PATCHES+= ${FILESDIR}/openssh-5.2p1-hpn.patch .endif # See http://dev.inversepath.com/trac/openssh-lpk .if defined(WITH_LPK) -EXTRA_PATCHES= ${FILESDIR}/openssh-lpk-5.0p1-0.3.9.patch +EXTRA_PATCHES+= ${FILESDIR}/openssh-lpk-5.0p1-0.3.9.patch .if ${ARCH} == "amd64" EXTRA_PATCHES+= ${FILESDIR}/openssh-lpk-5.0p1-64bit.patch .endif @@ -158,11 +155,22 @@ --with-cppflags='-I${LOCALBASE}/include -DWITH_LDAP_PUBKEY' .endif +# resolve some patches incompatibility between LPK and HPN patches + +.if defined(WITH_HPN) && defined(WITH_LPK) +EXTRA_PATCHES+= ${FILESDIR}/openssh-lpk+hpn-servconf.patch +.elif defined(WITH_HPN) && !defined(WITH_LPK) +EXTRA_PATCHES+= ${FILESDIR}/openssh-5.2p1-hpn-servconf.patch +.elif defined(WITH_LPK) && !defined(WITH_HPN) +EXTRA_PATCHES+= ${FILESDIR}/openssh-lpk-5.0p1-0.3.9-servconv.patch +.endif + + # See http://www.roumenpetrov.info/openssh/ .if defined(WITH_X509) PATCH_DIST_STRIP= -p1 -PATCH_SITES+= http://www.roumenpetrov.info/openssh/x509-6.1.1/ -PATCHFILES+= openssh-5.1p1+x509-6.1.1.diff.gz +PATCH_SITES+= http://www.roumenpetrov.info/openssh/x509-6.2/ +PATCHFILES+= openssh-5.2p1+x509-6.2.diff.gz .endif .if defined(WITH_OVERWRITE_BASE) diff -urN security/openssh-portable/distinfo security/openssh-portable/distinfo --- security/openssh-portable/distinfo 2009-03-24 20:41:06.000000000 +0300 +++ security/openssh-portable/distinfo 2009-05-02 21:11:54.000000000 +0400 @@ -1,9 +1,6 @@ -MD5 (openssh-5.1p1.tar.gz) = 03f2d0c1b5ec60d4ac9997a146d2faec -SHA256 (openssh-5.1p1.tar.gz) = f05358164dae1021386ae57be53a5e9f5cba7a1f8c9beaa428299e28a5666d75 -SIZE (openssh-5.1p1.tar.gz) = 1040041 -MD5 (openssh-5.1p1-hpn13v5.diff.gz) = 614f2cc34817bb9460e3b700be21b94b -SHA256 (openssh-5.1p1-hpn13v5.diff.gz) = 81bebd71fb0aa8a265c0576aa3c42c0fdf263712db771f12d35c8aff09523aab -SIZE (openssh-5.1p1-hpn13v5.diff.gz) = 23017 -MD5 (openssh-5.1p1+x509-6.1.1.diff.gz) = 9be4b5f1104e51333199423802e97fe7 -SHA256 (openssh-5.1p1+x509-6.1.1.diff.gz) = 2821d8fe003337569d6551fd26a387f53b4adc9b59f2b0131659936e11966eb3 -SIZE (openssh-5.1p1+x509-6.1.1.diff.gz) = 152642 +MD5 (openssh-5.2p1.tar.gz) = ada79c7328a8551bdf55c95e631e7dad +SHA256 (openssh-5.2p1.tar.gz) = 4023710c37d0b3d79e6299cb79b6de2a31db7d581fe59e775a5351784034ecae +SIZE (openssh-5.2p1.tar.gz) = 1016612 +MD5 (openssh-5.2p1+x509-6.2.diff.gz) = 8dbbfb743226864f6bb49b56e77776d9 +SHA256 (openssh-5.2p1+x509-6.2.diff.gz) = 72cfb1e232b6ae0a9df6e8539a9f6b53db7c0a2141cf2e4dd65b407748fa9f34 +SIZE (openssh-5.2p1+x509-6.2.diff.gz) = 153010 diff -urN security/openssh-portable/files/openssh-5.2p1-hpn-servconf.patch security/openssh-portable/files/openssh-5.2p1-hpn-servconf.patch --- security/openssh-portable/files/openssh-5.2p1-hpn-servconf.patch 1970-01-01 03:00:00.000000000 +0300 +++ security/openssh-portable/files/openssh-5.2p1-hpn-servconf.patch 2009-05-02 21:11:54.000000000 +0400 @@ -0,0 +1,32 @@ +--- servconf.c.orig 2009-05-02 18:22:38.000000000 +0400 ++++ servconf.c 2009-05-02 18:24:15.000000000 +0400 +@@ -127,12 +127,21 @@ + options->num_permitted_opens = -1; + options->adm_forced_command = NULL; + options->chroot_directory = NULL; ++ options->none_enabled = -1; ++ options->tcp_rcv_buf_poll = -1; ++ options->hpn_disabled = -1; ++ options->hpn_buffer_size = -1; + options->zero_knowledge_password_authentication = -1; + } + + void + fill_default_server_options(ServerOptions *options) + { ++ /* needed for hpn socket tests */ ++ int sock; ++ int socksize; ++ int socksizelen = sizeof(int); ++ + /* Portable-specific options */ + if (options->use_pam == -1) + options->use_pam = 1; +@@ -345,6 +354,7 @@ + sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel, + sMatch, sPermitOpen, sForceCommand, sChrootDirectory, + sUsePrivilegeSeparation, sAllowAgentForwarding, ++ sNoneEnabled, sTcpRcvBufPoll, sHPNDisabled, sHPNBufferSize, + sZeroKnowledgePasswordAuthentication, + sDeprecated, sUnsupported + } ServerOpCodes; diff -urN security/openssh-portable/files/openssh-5.2p1-hpn.patch security/openssh-portable/files/openssh-5.2p1-hpn.patch --- security/openssh-portable/files/openssh-5.2p1-hpn.patch 1970-01-01 03:00:00.000000000 +0300 +++ security/openssh-portable/files/openssh-5.2p1-hpn.patch 2009-05-02 21:11:54.000000000 +0400 @@ -0,0 +1,2196 @@ +diff -urN HPN-README HPN-README +--- HPN-README 1970-01-01 03:00:00.000000000 +0300 ++++ HPN-README 2009-05-02 17:38:18.000000000 +0400 +@@ -0,0 +1,128 @@ ++Notes: ++ ++MULTI-THREADED CIPHER: ++The AES cipher in CTR mode has been multithreaded (MTR-AES-CTR). This will allow ssh installations ++on hosts with multiple cores to use more than one processing core during encryption. ++Tests have show significant throughput performance increases when using MTR-AES-CTR up ++to and including a full gigabit per second on quad core systems. It should be possible to ++achieve full line rate on dual core systems but OS and data management overhead makes this ++more difficult to achieve. The cipher stream from MTR-AES-CTR is entirely compatible with single ++thread AES-CTR (ST-AES-CTR) implementations and should be 100% backward compatible. Optimal ++performance requires the MTR-AES-CTR mode be enabled on both ends of the connection. ++The MTR-AES-CTR replaces ST-AES-CTR and is used in exactly the same way with the same ++nomenclature. ++Use examples: ssh -caes128-ctr you@host.com ++ scp -oCipher=aes256-ctr file you@host.com:~/file ++ ++NONE CIPHER: ++To use the NONE option you must have the NoneEnabled switch set on the server and ++you *must* have *both* NoneEnabled and NoneSwitch set to yes on the client. The NONE ++feature works with ALL ssh subsystems (as far as we can tell) *AS LONG AS* a tty is not ++spawned. If a user uses the -T switch to prevent a tty being created the NONE cipher will ++be disabled. ++ ++The performance increase will only be as good as the network and TCP stack tuning ++on the reciever side of the connection allows. As a rule of thumb a user will need ++at least 10Mb/s connection with a 100ms RTT to see a doubling of performance. The ++HPN-SSH home page describes this in greater detail. ++ ++http://www.psc.edu/networking/projects/hpn-ssh ++ ++BUFFER SIZES: ++ ++If HPN is disabled the receive buffer size will be set to the ++OpenSSH default of 64K. ++ ++If an HPN system connects to a nonHPN system the receive buffer will ++be set to the HPNBufferSize value. The default is 2MB but user adjustable. ++ ++If an HPN to HPN connection is established a number of different things might ++happen based on the user options and conditions. ++ ++Conditions: HPNBufferSize NOT Set, TCPRcvBufPoll enabled, TCPRcvBuf NOT Set ++HPN Buffer Size = up to 64MB ++This is the default state. The HPN buffer size will grow to a maximum of 64MB ++as the TCP receive buffer grows. The maximum HPN Buffer size of 64MB is ++geared towards 10GigE transcontinental connections. ++ ++Conditions: HPNBufferSize NOT Set, TCPRcvBufPoll disabled, TCPRcvBuf NOT Set ++HPN Buffer Size = TCP receive buffer value. ++Users on non-autotuning systesm should disable TCPRcvBufPoll in the ++ssh_cofig and sshd_config ++ ++Conditions: HPNBufferSize SET, TCPRcvBufPoll disabled, TCPRcvBuf NOT Set ++HPN Buffer Size = minmum of TCP receive buffer and HPNBufferSize. ++This would be the system defined TCP receive buffer (RWIN). ++ ++Conditions: HPNBufferSize SET, TCPRcvBufPoll disabled, TCPRcvBuf SET ++HPN Buffer Size = minmum of TCPRcvBuf and HPNBufferSize. ++Generally there is no need to set both. ++ ++Conditions: HPNBufferSize SET, TCPRcvBufPoll enabled, TCPRcvBuf NOT Set ++HPN Buffer Size = grows to HPNBufferSize ++The buffer will grow up to the maximum size specified here. ++ ++Conditions: HPNBufferSize SET, TCPRcvBufPoll enabled, TCPRcvBuf SET ++HPN Buffer Size = minmum of TCPRcvBuf and HPNBufferSize. ++Generally there is no need to set both of these, especially on autotuning ++systems. However, if the users wishes to override the autotuning this would be ++one way to do it. ++ ++Conditions: HPNBufferSize NOT Set, TCPRcvBufPoll enabled, TCPRcvBuf SET ++HPN Buffer Size = TCPRcvBuf. ++This will override autotuning and set the TCP recieve buffer to the user defined ++value. ++ ++ ++HPN Specific Configuration options ++ ++TcpRcvBuf=[int]KB client ++ set the TCP socket receive buffer to n Kilobytes. It can be set up to the ++maximum socket size allowed by the system. This is useful in situations where ++the tcp receive window is set low but the maximum buffer size is set ++higher (as is typical). This works on a per TCP connection basis. You can also ++use this to artifically limit the transfer rate of the connection. In these ++cases the throughput will be no more than n/RTT. The minimum buffer size is 1KB. ++Default is the current system wide tcp receive buffer size. ++ ++TcpRcvBufPoll=[yes/no] client/server ++ enable of disable the polling of the tcp receive buffer through the life ++of the connection. You would want to make sure that this option is enabled ++for systems making use of autotuning kernels (linux 2.4.24+, 2.6, MS Vista) ++default is yes. ++ ++NoneEnabled=[yes/no] client/server ++ enable or disable the use of the None cipher. Care must always be used ++when enabling this as it will allow users to send data in the clear. However, ++it is important to note that authentication information remains encrypted ++even if this option is enabled. Set to no by default. ++ ++NoneSwitch=[yes/no] client ++ Switch the encryption cipher being used to the None cipher after ++authentication takes place. NoneEnabled must be enabled on both the client ++and server side of the connection. When the connection switches to the NONE ++cipher a warning is sent to STDERR. The connection attempt will fail with an ++error if a client requests a NoneSwitch from the server that does not explicitly ++have NoneEnabled set to yes. Note: The NONE cipher cannot be used in ++interactive (shell) sessions and it will fail silently. Set to no by default. ++ ++HPNDisabled=[yes/no] client/server ++ In some situations, such as transfers on a local area network, the impact ++of the HPN code produces a net decrease in performance. In these cases it is ++helpful to disable the HPN functionality. By default HPNDisabled is set to no. ++ ++HPNBufferSize=[int]KB client/server ++ This is the default buffer size the HPN functionality uses when interacting ++with nonHPN SSH installations. Conceptually this is similar to the TcpRcvBuf ++option as applied to the internal SSH flow control. This value can range from ++1KB to 64MB (1-65536). Use of oversized or undersized buffers can cause performance ++problems depending on the length of the network path. The default size of this buffer ++is 2MB. ++ ++ ++Credits: This patch was conceived, designed, and led by Chris Rapier (rapier@psc.edu) ++ The majority of the actual coding for versions up to HPN12v1 was performed ++ by Michael Stevens (mstevens@andrew.cmu.edu). The MT-AES-CTR cipher was ++ implemented by Ben Bennet (ben@psc.edu). This work was financed, in part, ++ by Cisco System, Inc., the National Library of Medicine, ++ and the National Science Foundation. +diff -urN Makefile.in Makefile.in +--- Makefile.in 2009-05-02 17:37:11.000000000 +0400 ++++ Makefile.in 2009-05-02 17:38:18.000000000 +0400 +@@ -43,7 +43,7 @@ + LD=@LD@ + CFLAGS=@CFLAGS@ + CPPFLAGS=-I. -I$(srcdir) @CPPFLAGS@ $(PATHS) @DEFS@ +-LIBS=@LIBS@ ++LIBS=@LIBS@ -lpthread + SSHDLIBS=@SSHDLIBS@ + LIBEDIT=@LIBEDIT@ + AR=@AR@ +@@ -64,7 +64,7 @@ + + LIBSSH_OBJS=acss.o authfd.o authfile.o bufaux.o bufbn.o buffer.o \ + canohost.o channels.o cipher.o cipher-acss.o cipher-aes.o \ +- cipher-bf1.o cipher-ctr.o cipher-3des1.o cleanup.o \ ++ cipher-bf1.o cipher-ctr.o cipher-ctr-mt.o cipher-3des1.o cleanup.o \ + compat.o compress.o crc32.o deattack.o fatal.o hostfile.o \ + log.o match.o md-sha256.o moduli.o nchan.o packet.o \ + readpass.o rsa.o ttymodes.o xmalloc.o addrmatch.o \ +diff -urN auth2.c auth2.c +--- auth2.c 2009-05-02 17:37:11.000000000 +0400 ++++ auth2.c 2009-05-02 17:38:18.000000000 +0400 +@@ -50,6 +50,7 @@ + #include "dispatch.h" + #include "pathnames.h" + #include "buffer.h" ++#include "canohost.h" + + #ifdef GSSAPI + #include "ssh-gss.h" +@@ -76,6 +77,9 @@ + extern Authmethod method_jpake; + #endif + ++static int log_flag = 0; ++ ++ + Authmethod *authmethods[] = { + &method_none, + &method_pubkey, +@@ -233,6 +237,11 @@ + service = packet_get_string(NULL); + method = packet_get_string(NULL); + debug("userauth-request for user %s service %s method %s", user, service, method); ++ if (!log_flag) { ++ logit("SSH: Server;Ltype: Authname;Remote: %s-%d;Name: %s", ++ get_remote_ipaddr(), get_remote_port(), user); ++ log_flag = 1; ++ } + debug("attempt %d failures %d", authctxt->attempt, authctxt->failures); + + if ((style = strchr(user, ':')) != NULL) +diff -urN buffer.c buffer.c +--- buffer.c 2006-08-05 06:39:39.000000000 +0400 ++++ buffer.c 2009-05-02 17:38:18.000000000 +0400 +@@ -127,7 +127,7 @@ + + /* Increase the size of the buffer and retry. */ + newlen = roundup(buffer->alloc + len, BUFFER_ALLOCSZ); +- if (newlen > BUFFER_MAX_LEN) ++ if (newlen > BUFFER_MAX_LEN_HPN) + fatal("buffer_append_space: alloc %u not supported", + newlen); + buffer->buf = xrealloc(buffer->buf, 1, newlen); +diff -urN buffer.h buffer.h +--- buffer.h 2008-05-19 08:59:37.000000000 +0400 ++++ buffer.h 2009-05-02 17:38:18.000000000 +0400 +@@ -16,6 +16,9 @@ + #ifndef BUFFER_H + #define BUFFER_H + ++/* move the following to a more appropriate place and name */ ++#define BUFFER_MAX_LEN_HPN 0x4000000 /* 64MB */ ++ + typedef struct { + u_char *buf; /* Buffer for data. */ + u_int alloc; /* Number of bytes allocated for data. */ +diff -urN channels.c channels.c +--- channels.c 2009-02-14 08:28:21.000000000 +0300 ++++ channels.c 2009-05-02 17:41:46.000000000 +0400 +@@ -169,8 +169,14 @@ + static int connect_next(struct channel_connect *); + static void channel_connect_ctx_free(struct channel_connect *); + ++ ++static int hpn_disabled = 0; ++static int hpn_buffer_size = 2 * 1024 * 1024; ++ + /* -- channel core */ + ++ ++ + Channel * + channel_by_id(int id) + { +@@ -308,6 +314,7 @@ + c->local_window_max = window; + c->local_consumed = 0; + c->local_maxpacket = maxpack; ++ c->dynamic_window = 0; + c->remote_id = -1; + c->remote_name = xstrdup(remote_name); + c->remote_window = 0; +@@ -798,11 +805,35 @@ + FD_SET(c->sock, writeset); + } + ++int channel_tcpwinsz () { ++ u_int32_t tcpwinsz = 0; ++ socklen_t optsz = sizeof(tcpwinsz); ++ int ret = -1; ++ ++ /* if we aren't on a socket return 128KB*/ ++ if(!packet_connection_is_on_socket()) ++ return(128*1024); ++ ret = getsockopt(packet_get_connection_in(), ++ SOL_SOCKET, SO_RCVBUF, &tcpwinsz, &optsz); ++ /* return no more than 64MB */ ++ if ((ret == 0) && tcpwinsz > BUFFER_MAX_LEN_HPN) ++ tcpwinsz = BUFFER_MAX_LEN_HPN; ++ debug2("tcpwinsz: %d for connection: %d", tcpwinsz, ++ packet_get_connection_in()); ++ return(tcpwinsz); ++} ++ + static void + channel_pre_open(Channel *c, fd_set *readset, fd_set *writeset) + { + u_int limit = compat20 ? c->remote_window : packet_get_maxsize(); + ++ /* check buffer limits */ ++ if ((!c->tcpwinsz) || (c->dynamic_window > 0)) ++ c->tcpwinsz = channel_tcpwinsz(); ++ ++ limit = MIN(limit, 2 * c->tcpwinsz); ++ + if (c->istate == CHAN_INPUT_OPEN && + limit > 0 && + buffer_len(&c->input) < limit && +@@ -1759,14 +1790,21 @@ + c->local_maxpacket*3) || + c->local_window < c->local_window_max/2) && + c->local_consumed > 0) { ++ u_int addition = 0; ++ /* adjust max window size if we are in a dynamic environment */ ++ if (c->dynamic_window && (c->tcpwinsz > c->local_window_max)) { ++ /* grow the window somewhat aggressively to maintain pressure */ ++ addition = 1.5*(c->tcpwinsz - c->local_window_max); ++ c->local_window_max += addition; ++ } + packet_start(SSH2_MSG_CHANNEL_WINDOW_ADJUST); + packet_put_int(c->remote_id); +- packet_put_int(c->local_consumed); ++ packet_put_int(c->local_consumed + addition); + packet_send(); + debug2("channel %d: window %d sent adjust %d", + c->self, c->local_window, + c->local_consumed); +- c->local_window += c->local_consumed; ++ c->local_window += c->local_consumed + addition; + c->local_consumed = 0; + } + return 1; +@@ -1969,11 +2007,12 @@ + + + /* If there is data to send to the connection, enqueue some of it now. */ +-void ++int + channel_output_poll(void) + { + Channel *c; + u_int i, len; ++ int packet_length = 0; + + for (i = 0; i < channels_alloc; i++) { + c = channels[i]; +@@ -2013,7 +2052,7 @@ + packet_start(SSH2_MSG_CHANNEL_DATA); + packet_put_int(c->remote_id); + packet_put_string(data, dlen); +- packet_send(); ++ packet_length = packet_send(); + c->remote_window -= dlen + 4; + xfree(data); + } +@@ -2043,7 +2082,7 @@ + SSH2_MSG_CHANNEL_DATA : SSH_MSG_CHANNEL_DATA); + packet_put_int(c->remote_id); + packet_put_string(buffer_ptr(&c->input), len); +- packet_send(); ++ packet_length = packet_send(); + buffer_consume(&c->input, len); + c->remote_window -= len; + } +@@ -2078,12 +2117,13 @@ + packet_put_int(c->remote_id); + packet_put_int(SSH2_EXTENDED_DATA_STDERR); + packet_put_string(buffer_ptr(&c->extended), len); +- packet_send(); ++ packet_length = packet_send(); + buffer_consume(&c->extended, len); + c->remote_window -= len; + debug2("channel %d: sent ext data %d", c->self, len); + } + } ++ return (packet_length); + } + + +@@ -2459,6 +2499,15 @@ + IPv4or6 = af; + } + ++ ++void ++channel_set_hpn(int external_hpn_disabled, int external_hpn_buffer_size) ++{ ++ hpn_disabled = external_hpn_disabled; ++ hpn_buffer_size = external_hpn_buffer_size; ++ debug("HPN Disabled: %d, HPN Buffer Size: %d", hpn_disabled, hpn_buffer_size); ++} ++ + static int + channel_setup_fwd_listener(int type, const char *listen_addr, + u_short listen_port, int *allocated_listen_port, +@@ -2610,9 +2659,15 @@ + } + + /* Allocate a channel number for the socket. */ ++ /* explicitly test for hpn disabled option. if true use smaller window size */ ++ if (hpn_disabled) + c = channel_new("port listener", type, sock, sock, -1, + CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, + 0, "port listener", 1); ++ else ++ c = channel_new("port listener", type, sock, sock, -1, ++ hpn_buffer_size, CHAN_TCP_PACKET_DEFAULT, ++ 0, "port listener", 1); + c->path = xstrdup(host); + c->host_port = port_to_connect; + c->listening_port = listen_port; +@@ -3151,10 +3206,17 @@ + *chanids = xcalloc(num_socks + 1, sizeof(**chanids)); + for (n = 0; n < num_socks; n++) { + sock = socks[n]; ++ /* Is this really necassary? */ ++ if (hpn_disabled) + nc = channel_new("x11 listener", + SSH_CHANNEL_X11_LISTENER, sock, sock, -1, + CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, + 0, "X11 inet listener", 1); ++ else ++ nc = channel_new("x11 listener", ++ SSH_CHANNEL_X11_LISTENER, sock, sock, -1, ++ hpn_buffer_size, CHAN_X11_PACKET_DEFAULT, ++ 0, "X11 inet listener", 1); + nc->single_connection = single_connection; + (*chanids)[n] = nc->self; + } +diff -urN channels.h channels.h +--- channels.h 2009-02-14 08:28:21.000000000 +0300 ++++ channels.h 2009-05-02 17:38:18.000000000 +0400 +@@ -115,8 +115,10 @@ + u_int local_window_max; + u_int local_consumed; + u_int local_maxpacket; ++ int dynamic_window; + int extended_usage; + int single_connection; ++ u_int tcpwinsz; + + char *ctype; /* type */ + +@@ -146,9 +148,11 @@ + + /* default window/packet sizes for tcp/x11-fwd-channel */ + #define CHAN_SES_PACKET_DEFAULT (32*1024) +-#define CHAN_SES_WINDOW_DEFAULT (64*CHAN_SES_PACKET_DEFAULT) ++#define CHAN_SES_WINDOW_DEFAULT (4*CHAN_SES_PACKET_DEFAULT) ++ + #define CHAN_TCP_PACKET_DEFAULT (32*1024) +-#define CHAN_TCP_WINDOW_DEFAULT (64*CHAN_TCP_PACKET_DEFAULT) ++#define CHAN_TCP_WINDOW_DEFAULT (4*CHAN_TCP_PACKET_DEFAULT) ++ + #define CHAN_X11_PACKET_DEFAULT (16*1024) + #define CHAN_X11_WINDOW_DEFAULT (4*CHAN_X11_PACKET_DEFAULT) + +@@ -221,7 +225,7 @@ + + void channel_prepare_select(fd_set **, fd_set **, int *, u_int*, int); + void channel_after_select(fd_set *, fd_set *); +-void channel_output_poll(void); ++int channel_output_poll(void); + + int channel_not_very_much_buffered_data(void); + void channel_close_all(void); +@@ -277,4 +281,7 @@ + void chan_write_failed(Channel *); + void chan_obuf_empty(Channel *); + ++/* hpn handler */ ++void channel_set_hpn(int, int); ++ + #endif +diff -urN cipher-ctr-mt.c cipher-ctr-mt.c +--- cipher-ctr-mt.c 1970-01-01 03:00:00.000000000 +0300 ++++ cipher-ctr-mt.c 2009-05-02 17:38:18.000000000 +0400 +@@ -0,0 +1,473 @@ ++/* ++ * OpenSSH Multi-threaded AES-CTR Cipher ++ * ++ * Author: Benjamin Bennett ++ * Copyright (c) 2008 Pittsburgh Supercomputing Center. All rights reserved. ++ * ++ * Based on original OpenSSH AES-CTR cipher. Small portions remain unchanged, ++ * Copyright (c) 2003 Markus Friedl ++ * ++ * Permission to use, copy, modify, and distribute this software for any ++ * purpose with or without fee is hereby granted, provided that the above ++ * copyright notice and this permission notice appear in all copies. ++ * ++ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES ++ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF ++ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ++ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES ++ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ++ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF ++ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ++ */ ++#include "includes.h" ++ ++#include ++ ++#include ++#include ++ ++#include ++ ++#include "xmalloc.h" ++#include "log.h" ++ ++/* compatibility with old or broken OpenSSL versions */ ++#include "openbsd-compat/openssl-compat.h" ++ ++#ifndef USE_BUILTIN_RIJNDAEL ++#include ++#endif ++ ++#include ++ ++/*-------------------- TUNABLES --------------------*/ ++/* Number of pregen threads to use */ ++#define CIPHER_THREADS 2 ++ ++/* Number of keystream queues */ ++#define NUMKQ (CIPHER_THREADS + 2) ++ ++/* Length of a keystream queue */ ++#define KQLEN 4096 ++ ++/* Processor cacheline length */ ++#define CACHELINE_LEN 64 ++ ++/* Collect thread stats and print at cancellation when in debug mode */ ++/* #define CIPHER_THREAD_STATS */ ++ ++/* Use single-byte XOR instead of 8-byte XOR */ ++/* #define CIPHER_BYTE_XOR */ ++/*-------------------- END TUNABLES --------------------*/ ++ ++ ++const EVP_CIPHER *evp_aes_ctr_mt(void); ++ ++#ifdef CIPHER_THREAD_STATS ++/* ++ * Struct to collect thread stats ++ */ ++struct thread_stats { ++ u_int fills; ++ u_int skips; ++ u_int waits; ++ u_int drains; ++}; ++ ++/* ++ * Debug print the thread stats ++ * Use with pthread_cleanup_push for displaying at thread cancellation ++ */ ++static void ++thread_loop_stats(void *x) ++{ ++ struct thread_stats *s = x; ++ ++ debug("tid %lu - %u fills, %u skips, %u waits", pthread_self(), ++ s->fills, s->skips, s->waits); ++} ++ ++ #define STATS_STRUCT(s) struct thread_stats s ++ #define STATS_INIT(s) { memset(&s, 0, sizeof(s)); } ++ #define STATS_FILL(s) { s.fills++; } ++ #define STATS_SKIP(s) { s.skips++; } ++ #define STATS_WAIT(s) { s.waits++; } ++ #define STATS_DRAIN(s) { s.drains++; } ++#else ++ #define STATS_STRUCT(s) ++ #define STATS_INIT(s) ++ #define STATS_FILL(s) ++ #define STATS_SKIP(s) ++ #define STATS_WAIT(s) ++ #define STATS_DRAIN(s) ++#endif ++ ++/* Keystream Queue state */ ++enum { ++ KQINIT, ++ KQEMPTY, ++ KQFILLING, ++ KQFULL, ++ KQDRAINING ++}; ++ ++/* Keystream Queue struct */ ++struct kq { ++ u_char keys[KQLEN][AES_BLOCK_SIZE]; ++ u_char ctr[AES_BLOCK_SIZE]; ++ u_char pad0[CACHELINE_LEN]; ++ volatile int qstate; ++ pthread_mutex_t lock; ++ pthread_cond_t cond; ++ u_char pad1[CACHELINE_LEN]; ++}; ++ ++/* Context struct */ ++struct ssh_aes_ctr_ctx ++{ ++ struct kq q[NUMKQ]; ++ AES_KEY aes_ctx; ++ STATS_STRUCT(stats); ++ u_char aes_counter[AES_BLOCK_SIZE]; ++ pthread_t tid[CIPHER_THREADS]; ++ int state; ++ int qidx; ++ int ridx; ++}; ++ ++/* ++ * increment counter 'ctr', ++ * the counter is of size 'len' bytes and stored in network-byte-order. ++ * (LSB at ctr[len-1], MSB at ctr[0]) ++ */ ++static void ++ssh_ctr_inc(u_char *ctr, u_int len) ++{ ++ int i; ++ ++ for (i = len - 1; i >= 0; i--) ++ if (++ctr[i]) /* continue on overflow */ ++ return; ++} ++ ++/* ++ * Add num to counter 'ctr' ++ */ ++static void ++ssh_ctr_add(u_char *ctr, uint32_t num, u_int len) ++{ ++ int i; ++ uint16_t n; ++ ++ for (n = 0, i = len - 1; i >= 0 && (num || n); i--) { ++ n = ctr[i] + (num & 0xff) + n; ++ num >>= 8; ++ ctr[i] = n & 0xff; ++ n >>= 8; ++ } ++} ++ ++/* ++ * Threads may be cancelled in a pthread_cond_wait, we must free the mutex ++ */ ++static void ++thread_loop_cleanup(void *x) ++{ ++ pthread_mutex_unlock((pthread_mutex_t *)x); ++} ++ ++/* ++ * The life of a pregen thread: ++ * Find empty keystream queues and fill them using their counter. ++ * When done, update counter for the next fill. ++ */ ++static void * ++thread_loop(void *x) ++{ ++ AES_KEY key; ++ STATS_STRUCT(stats); ++ struct ssh_aes_ctr_ctx *c = x; ++ struct kq *q; ++ int i; ++ int qidx; ++ ++ /* Threads stats on cancellation */ ++ STATS_INIT(stats); ++#ifdef CIPHER_THREAD_STATS ++ pthread_cleanup_push(thread_loop_stats, &stats); ++#endif ++ ++ /* Thread local copy of AES key */ ++ memcpy(&key, &c->aes_ctx, sizeof(key)); ++ ++ /* ++ * Handle the special case of startup, one thread must fill ++ * the first KQ then mark it as draining. Lock held throughout. ++ */ ++ if (pthread_equal(pthread_self(), c->tid[0])) { ++ q = &c->q[0]; ++ pthread_mutex_lock(&q->lock); ++ if (q->qstate == KQINIT) { ++ for (i = 0; i < KQLEN; i++) { ++ AES_encrypt(q->ctr, q->keys[i], &key); ++ ssh_ctr_inc(q->ctr, AES_BLOCK_SIZE); ++ } ++ ssh_ctr_add(q->ctr, KQLEN * (NUMKQ - 1), AES_BLOCK_SIZE); ++ q->qstate = KQDRAINING; ++ STATS_FILL(stats); ++ pthread_cond_broadcast(&q->cond); ++ } ++ pthread_mutex_unlock(&q->lock); ++ } ++ else ++ STATS_SKIP(stats); ++ ++ /* ++ * Normal case is to find empty queues and fill them, skipping over ++ * queues already filled by other threads and stopping to wait for ++ * a draining queue to become empty. ++ * ++ * Multiple threads may be waiting on a draining queue and awoken ++ * when empty. The first thread to wake will mark it as filling, ++ * others will move on to fill, skip, or wait on the next queue. ++ */ ++ for (qidx = 1;; qidx = (qidx + 1) % NUMKQ) { ++ /* Check if I was cancelled, also checked in cond_wait */ ++ pthread_testcancel(); ++ ++ /* Lock queue and block if its draining */ ++ q = &c->q[qidx]; ++ pthread_mutex_lock(&q->lock); ++ pthread_cleanup_push(thread_loop_cleanup, &q->lock); ++ while (q->qstate == KQDRAINING || q->qstate == KQINIT) { ++ STATS_WAIT(stats); ++ pthread_cond_wait(&q->cond, &q->lock); ++ } ++ pthread_cleanup_pop(0); ++ ++ /* If filling or full, somebody else got it, skip */ ++ if (q->qstate != KQEMPTY) { ++ pthread_mutex_unlock(&q->lock); ++ STATS_SKIP(stats); ++ continue; ++ } ++ ++ /* ++ * Empty, let's fill it. ++ * Queue lock is relinquished while we do this so others ++ * can see that it's being filled. ++ */ ++ q->qstate = KQFILLING; ++ pthread_mutex_unlock(&q->lock); ++ for (i = 0; i < KQLEN; i++) { ++ AES_encrypt(q->ctr, q->keys[i], &key); ++ ssh_ctr_inc(q->ctr, AES_BLOCK_SIZE); ++ } ++ ++ /* Re-lock, mark full and signal consumer */ ++ pthread_mutex_lock(&q->lock); ++ ssh_ctr_add(q->ctr, KQLEN * (NUMKQ - 1), AES_BLOCK_SIZE); ++ q->qstate = KQFULL; ++ STATS_FILL(stats); ++ pthread_cond_signal(&q->cond); ++ pthread_mutex_unlock(&q->lock); ++ } ++ ++#ifdef CIPHER_THREAD_STATS ++ /* Stats */ ++ pthread_cleanup_pop(1); ++#endif ++ ++ return NULL; ++} ++ ++static int ++ssh_aes_ctr(EVP_CIPHER_CTX *ctx, u_char *dest, const u_char *src, ++ u_int len) ++{ ++ struct ssh_aes_ctr_ctx *c; ++ struct kq *q, *oldq; ++ int ridx; ++ u_char *buf; ++ ++ if (len == 0) ++ return (1); ++ if ((c = EVP_CIPHER_CTX_get_app_data(ctx)) == NULL) ++ return (0); ++ ++ q = &c->q[c->qidx]; ++ ridx = c->ridx; ++ ++ /* src already padded to block multiple */ ++ while (len > 0) { ++ buf = q->keys[ridx]; ++ ++#ifdef CIPHER_BYTE_XOR ++ dest[0] = src[0] ^ buf[0]; ++ dest[1] = src[1] ^ buf[1]; ++ dest[2] = src[2] ^ buf[2]; ++ dest[3] = src[3] ^ buf[3]; ++ dest[4] = src[4] ^ buf[4]; ++ dest[5] = src[5] ^ buf[5]; ++ dest[6] = src[6] ^ buf[6]; ++ dest[7] = src[7] ^ buf[7]; ++ dest[8] = src[8] ^ buf[8]; ++ dest[9] = src[9] ^ buf[9]; ++ dest[10] = src[10] ^ buf[10]; ++ dest[11] = src[11] ^ buf[11]; ++ dest[12] = src[12] ^ buf[12]; ++ dest[13] = src[13] ^ buf[13]; ++ dest[14] = src[14] ^ buf[14]; ++ dest[15] = src[15] ^ buf[15]; ++#else ++ *(uint64_t *)dest = *(uint64_t *)src ^ *(uint64_t *)buf; ++ *(uint64_t *)(dest + 8) = *(uint64_t *)(src + 8) ^ ++ *(uint64_t *)(buf + 8); ++#endif ++ ++ dest += 16; ++ src += 16; ++ len -= 16; ++ ssh_ctr_inc(ctx->iv, AES_BLOCK_SIZE); ++ ++ /* Increment read index, switch queues on rollover */ ++ if ((ridx = (ridx + 1) % KQLEN) == 0) { ++ oldq = q; ++ ++ /* Mark next queue draining, may need to wait */ ++ c->qidx = (c->qidx + 1) % NUMKQ; ++ q = &c->q[c->qidx]; ++ pthread_mutex_lock(&q->lock); ++ while (q->qstate != KQFULL) { ++ STATS_WAIT(c->stats); ++ pthread_cond_wait(&q->cond, &q->lock); ++ } ++ q->qstate = KQDRAINING; ++ pthread_mutex_unlock(&q->lock); ++ ++ /* Mark consumed queue empty and signal producers */ ++ pthread_mutex_lock(&oldq->lock); ++ oldq->qstate = KQEMPTY; ++ STATS_DRAIN(c->stats); ++ pthread_cond_broadcast(&oldq->cond); ++ pthread_mutex_unlock(&oldq->lock); ++ } ++ } ++ c->ridx = ridx; ++ return (1); ++} ++ ++#define HAVE_NONE 0 ++#define HAVE_KEY 1 ++#define HAVE_IV 2 ++static int ++ssh_aes_ctr_init(EVP_CIPHER_CTX *ctx, const u_char *key, const u_char *iv, ++ int enc) ++{ ++ struct ssh_aes_ctr_ctx *c; ++ int i; ++ ++ if ((c = EVP_CIPHER_CTX_get_app_data(ctx)) == NULL) { ++ c = xmalloc(sizeof(*c)); ++ ++ c->state = HAVE_NONE; ++ for (i = 0; i < NUMKQ; i++) { ++ pthread_mutex_init(&c->q[i].lock, NULL); ++ pthread_cond_init(&c->q[i].cond, NULL); ++ } ++ ++ STATS_INIT(c->stats); ++ ++ EVP_CIPHER_CTX_set_app_data(ctx, c); ++ } ++ ++ if (c->state == (HAVE_KEY | HAVE_IV)) { ++ /* Cancel pregen threads */ ++ for (i = 0; i < CIPHER_THREADS; i++) ++ pthread_cancel(c->tid[i]); ++ for (i = 0; i < CIPHER_THREADS; i++) ++ pthread_join(c->tid[i], NULL); ++ /* Start over getting key & iv */ ++ c->state = HAVE_NONE; ++ } ++ ++ if (key != NULL) { ++ AES_set_encrypt_key(key, EVP_CIPHER_CTX_key_length(ctx) * 8, ++ &c->aes_ctx); ++ c->state |= HAVE_KEY; ++ } ++ ++ if (iv != NULL) { ++ memcpy(ctx->iv, iv, AES_BLOCK_SIZE); ++ c->state |= HAVE_IV; ++ } ++ ++ if (c->state == (HAVE_KEY | HAVE_IV)) { ++ /* Clear queues */ ++ memcpy(c->q[0].ctr, ctx->iv, AES_BLOCK_SIZE); ++ c->q[0].qstate = KQINIT; ++ for (i = 1; i < NUMKQ; i++) { ++ memcpy(c->q[i].ctr, ctx->iv, AES_BLOCK_SIZE); ++ ssh_ctr_add(c->q[i].ctr, i * KQLEN, AES_BLOCK_SIZE); ++ c->q[i].qstate = KQEMPTY; ++ } ++ c->qidx = 0; ++ c->ridx = 0; ++ ++ /* Start threads */ ++ for (i = 0; i < CIPHER_THREADS; i++) { ++ pthread_create(&c->tid[i], NULL, thread_loop, c); ++ } ++ pthread_mutex_lock(&c->q[0].lock); ++ while (c->q[0].qstate != KQDRAINING) ++ pthread_cond_wait(&c->q[0].cond, &c->q[0].lock); ++ pthread_mutex_unlock(&c->q[0].lock); ++ ++ } ++ return (1); ++} ++ ++static int ++ssh_aes_ctr_cleanup(EVP_CIPHER_CTX *ctx) ++{ ++ struct ssh_aes_ctr_ctx *c; ++ int i; ++ ++ if ((c = EVP_CIPHER_CTX_get_app_data(ctx)) != NULL) { ++#ifdef CIPHER_THREAD_STATS ++ debug("main thread: %u drains, %u waits", c->stats.drains, ++ c->stats.waits); ++#endif ++ /* Cancel pregen threads */ ++ for (i = 0; i < CIPHER_THREADS; i++) ++ pthread_cancel(c->tid[i]); ++ for (i = 0; i < CIPHER_THREADS; i++) ++ pthread_join(c->tid[i], NULL); ++ ++ memset(c, 0, sizeof(*c)); ++ xfree(c); ++ EVP_CIPHER_CTX_set_app_data(ctx, NULL); ++ } ++ return (1); ++} ++ ++/* */ ++const EVP_CIPHER * ++evp_aes_ctr_mt(void) ++{ ++ static EVP_CIPHER aes_ctr; ++ ++ memset(&aes_ctr, 0, sizeof(EVP_CIPHER)); ++ aes_ctr.nid = NID_undef; ++ aes_ctr.block_size = AES_BLOCK_SIZE; ++ aes_ctr.iv_len = AES_BLOCK_SIZE; ++ aes_ctr.key_len = 16; ++ aes_ctr.init = ssh_aes_ctr_init; ++ aes_ctr.cleanup = ssh_aes_ctr_cleanup; ++ aes_ctr.do_cipher = ssh_aes_ctr; ++#ifndef SSH_OLD_EVP ++ aes_ctr.flags = EVP_CIPH_CBC_MODE | EVP_CIPH_VARIABLE_LENGTH | ++ EVP_CIPH_ALWAYS_CALL_INIT | EVP_CIPH_CUSTOM_IV; ++#endif ++ return (&aes_ctr); ++} +diff -urN cipher.c cipher.c +--- cipher.c 2009-01-28 08:38:41.000000000 +0300 ++++ cipher.c 2009-05-02 17:43:11.000000000 +0400 +@@ -55,6 +55,7 @@ + extern const EVP_CIPHER *evp_ssh1_3des(void); + extern void ssh1_3des_iv(EVP_CIPHER_CTX *, int, u_char *, int); + extern const EVP_CIPHER *evp_aes_128_ctr(void); ++extern const EVP_CIPHER *evp_aes_ctr_mt(void); + extern void ssh_aes_ctr_iv(EVP_CIPHER_CTX *, int, u_char *, u_int); + + struct Cipher { +@@ -82,9 +83,9 @@ + { "aes256-cbc", SSH_CIPHER_SSH2, 16, 32, 0, 1, EVP_aes_256_cbc }, + { "rijndael-cbc@lysator.liu.se", + SSH_CIPHER_SSH2, 16, 32, 0, 1, EVP_aes_256_cbc }, +- { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, 0, 0, evp_aes_128_ctr }, +- { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, 0, 0, evp_aes_128_ctr }, +- { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, 0, evp_aes_128_ctr }, ++ { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, 0, evp_aes_ctr_mt }, ++ { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, 0, evp_aes_ctr_mt }, ++ { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, 0, evp_aes_ctr_mt }, + #ifdef USE_CIPHER_ACSS + { "acss@openssh.org", SSH_CIPHER_SSH2, 16, 5, 0, 0, EVP_acss }, + #endif +@@ -163,7 +164,8 @@ + for ((p = strsep(&cp, CIPHER_SEP)); p && *p != '\0'; + (p = strsep(&cp, CIPHER_SEP))) { + c = cipher_by_name(p); +- if (c == NULL || c->number != SSH_CIPHER_SSH2) { ++ if (c == NULL || (c->number != SSH_CIPHER_SSH2 && ++c->number != SSH_CIPHER_NONE)) { + debug("bad cipher %s [%s]", p, names); + xfree(cipher_list); + return 0; +@@ -337,6 +339,7 @@ + int evplen; + + switch (c->number) { ++ case SSH_CIPHER_NONE: + case SSH_CIPHER_SSH2: + case SSH_CIPHER_DES: + case SSH_CIPHER_BLOWFISH: +@@ -371,6 +374,7 @@ + int evplen = 0; + + switch (c->number) { ++ case SSH_CIPHER_NONE: + case SSH_CIPHER_SSH2: + case SSH_CIPHER_DES: + case SSH_CIPHER_BLOWFISH: +diff -urN clientloop.c clientloop.c +--- clientloop.c 2009-02-14 08:28:21.000000000 +0300 ++++ clientloop.c 2009-05-02 17:38:18.000000000 +0400 +@@ -1688,9 +1688,15 @@ + sock = x11_connect_display(); + if (sock < 0) + return NULL; ++ /* again is this really necessary for X11? */ ++ if (options.hpn_disabled) + c = channel_new("x11", + SSH_CHANNEL_X11_OPEN, sock, sock, -1, + CHAN_TCP_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1); ++ else ++ c = channel_new("x11", ++ SSH_CHANNEL_X11_OPEN, sock, sock, -1, ++ options.hpn_buffer_size, CHAN_X11_PACKET_DEFAULT, 0, "x11", 1); + c->force_drain = 1; + return c; + } +@@ -1710,9 +1716,15 @@ + sock = ssh_get_authentication_socket(); + if (sock < 0) + return NULL; ++ if (options.hpn_disabled) + c = channel_new("authentication agent connection", + SSH_CHANNEL_OPEN, sock, sock, -1, +- CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, ++ CHAN_X11_WINDOW_DEFAULT, CHAN_TCP_WINDOW_DEFAULT, 0, ++ "authentication agent connection", 1); ++ else ++ c = channel_new("authentication agent connection", ++ SSH_CHANNEL_OPEN, sock, sock, -1, ++ options.hpn_buffer_size, options.hpn_buffer_size, 0, + "authentication agent connection", 1); + c->force_drain = 1; + return c; +@@ -1740,10 +1752,18 @@ + return -1; + } + ++ if(options.hpn_disabled) ++ c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1, ++ CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, ++ 0, "tun", 1); ++ else + c = channel_new("tun", SSH_CHANNEL_OPENING, fd, fd, -1, +- CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1); ++ options.hpn_buffer_size, CHAN_TCP_PACKET_DEFAULT, ++ 0, "tun", 1); + c->datagram = 1; + ++ ++ + #if defined(SSH_TUN_FILTER) + if (options.tun_open == SSH_TUNMODE_POINTOPOINT) + channel_register_filter(c->self, sys_tun_infilter, +diff -urN compat.c compat.c +--- compat.c 2008-11-03 11:20:14.000000000 +0300 ++++ compat.c 2009-05-02 17:38:18.000000000 +0400 +@@ -170,6 +170,15 @@ + strlen(check[i].pat), 0) == 1) { + debug("match: %s pat %s", version, check[i].pat); + datafellows = check[i].bugs; ++ /* Check to see if the remote side is OpenSSH and not HPN */ ++ if(strstr(version,"OpenSSH") != NULL) ++ { ++ if (strstr(version,"hpn") == NULL) ++ { ++ datafellows |= SSH_BUG_LARGEWINDOW; ++ debug("Remote is NON-HPN aware"); ++ } ++ } + return; + } + } +diff -urN compat.h compat.h +--- compat.h 2008-11-03 11:20:14.000000000 +0300 ++++ compat.h 2009-05-02 17:40:04.000000000 +0400 +@@ -58,6 +58,7 @@ + #define SSH_OLD_FORWARD_ADDR 0x01000000 + #define SSH_BUG_RFWD_ADDR 0x02000000 + #define SSH_NEW_OPENSSH 0x04000000 ++#define SSH_BUG_LARGEWINDOW 0x08000000 + + void enable_compat13(void); + void enable_compat20(void); +diff -urN kex.c kex.c +--- kex.c 2008-11-03 11:19:12.000000000 +0300 ++++ kex.c 2009-05-02 17:38:18.000000000 +0400 +@@ -48,6 +48,7 @@ + #include "match.h" + #include "dispatch.h" + #include "monitor.h" ++#include "canohost.h" + + #define KEX_COOKIE_LEN 16 + +@@ -64,7 +65,8 @@ + static void kex_choose_conf(Kex *); + + /* put algorithm proposal into buffer */ +-static void ++/* used in sshconnect.c as well as kex.c */ ++void + kex_prop2buf(Buffer *b, char *proposal[PROPOSAL_MAX]) + { + u_int i; +@@ -376,6 +378,13 @@ + int nenc, nmac, ncomp; + u_int mode, ctos, need; + int first_kex_follows, type; ++ int log_flag = 0; ++ ++ int auth_flag; ++ ++ auth_flag = packet_authentication_state(); ++ ++ debug ("AUTH STATE IS %d", auth_flag); + + my = kex_buf2prop(&kex->my, NULL); + peer = kex_buf2prop(&kex->peer, &first_kex_follows); +@@ -400,11 +409,34 @@ + choose_enc (&newkeys->enc, cprop[nenc], sprop[nenc]); + choose_mac (&newkeys->mac, cprop[nmac], sprop[nmac]); + choose_comp(&newkeys->comp, cprop[ncomp], sprop[ncomp]); ++ debug("REQUESTED ENC.NAME is '%s'", newkeys->enc.name); ++ if (strcmp(newkeys->enc.name, "none") == 0) { ++ debug("Requesting NONE. Authflag is %d", auth_flag); ++ if (auth_flag == 1) { ++ debug("None requested post authentication."); ++ } else { ++ fatal("Pre-authentication none cipher requests are not allowed."); ++ } ++ } + debug("kex: %s %s %s %s", + ctos ? "client->server" : "server->client", + newkeys->enc.name, + newkeys->mac.name, + newkeys->comp.name); ++ /* client starts withctos = 0 && log flag = 0 and no log*/ ++ /* 2nd client pass ctos=1 and flag = 1 so no log*/ ++ /* server starts with ctos =1 && log_flag = 0 so log */ ++ /* 2nd sever pass ctos = 1 && log flag = 1 so no log*/ ++ /* -cjr*/ ++ if (ctos && !log_flag) { ++ logit("SSH: Server;Ltype: Kex;Remote: %s-%d;Enc: %s;MAC: %s;Comp: %s", ++ get_remote_ipaddr(), ++ get_remote_port(), ++ newkeys->enc.name, ++ newkeys->mac.name, ++ newkeys->comp.name); ++ } ++ log_flag = 1; + } + choose_kex(kex, cprop[PROPOSAL_KEX_ALGS], sprop[PROPOSAL_KEX_ALGS]); + choose_hostkeyalg(kex, cprop[PROPOSAL_SERVER_HOST_KEY_ALGS], +diff -urN kex.h kex.h +--- kex.h 2007-06-11 08:01:42.000000000 +0400 ++++ kex.h 2009-05-02 17:38:18.000000000 +0400 +@@ -127,6 +127,8 @@ + void (*kex[KEX_MAX])(Kex *); + }; + ++void kex_prop2buf(Buffer *, char *proposal[PROPOSAL_MAX]); ++ + Kex *kex_setup(char *[PROPOSAL_MAX]); + void kex_finish(Kex *); + +diff -urN myproposal.h myproposal.h +--- myproposal.h 2009-01-28 08:33:31.000000000 +0300 ++++ myproposal.h 2009-05-02 17:45:01.000000000 +0400 +@@ -47,6 +47,8 @@ + "arcfour256,arcfour128," \ + "aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc," \ + "aes192-cbc,aes256-cbc,arcfour,rijndael-cbc@lysator.liu.se" ++#define KEX_ENCRYPT_INCLUDE_NONE KEX_DEFAULT_ENCRYPT \ ++ ",none" + #define KEX_DEFAULT_MAC \ + "hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160," \ + "hmac-ripemd160@openssh.com," \ +diff -urN packet.c packet.c +--- packet.c 2009-02-14 08:35:01.000000000 +0300 ++++ packet.c 2009-05-02 17:38:18.000000000 +0400 +@@ -775,7 +775,7 @@ + /* + * Finalize packet in SSH2 format (compress, mac, encrypt, enqueue) + */ +-static void ++static int + packet_send2_wrapped(void) + { + u_char type, *cp, *macbuf = NULL; +@@ -888,11 +888,13 @@ + set_newkeys(MODE_OUT); + else if (type == SSH2_MSG_USERAUTH_SUCCESS && server_side) + packet_enable_delayed_compress(); ++ return(packet_length); + } + +-static void ++static int + packet_send2(void) + { ++ static int packet_length = 0; + static int rekeying = 0; + struct packet *p; + u_char type, *cp; +@@ -910,7 +912,7 @@ + memcpy(&p->payload, &outgoing_packet, sizeof(Buffer)); + buffer_init(&outgoing_packet); + TAILQ_INSERT_TAIL(&outgoing, p, next); +- return; ++ return(sizeof(Buffer)); + } + } + +@@ -918,7 +920,7 @@ + if (type == SSH2_MSG_KEXINIT) + rekeying = 1; + +- packet_send2_wrapped(); ++ packet_length = packet_send2_wrapped(); + + /* after a NEWKEYS message we can send the complete queue */ + if (type == SSH2_MSG_NEWKEYS) { +@@ -931,19 +933,22 @@ + sizeof(Buffer)); + TAILQ_REMOVE(&outgoing, p, next); + xfree(p); +- packet_send2_wrapped(); ++ packet_length += packet_send2_wrapped(); + } + } ++ return(packet_length); + } + +-void ++int + packet_send(void) + { ++ int packet_len = 0; + if (compat20) +- packet_send2(); ++ packet_len = packet_send2(); + else + packet_send1(); + DBG(debug("packet_send done")); ++ return(packet_len); + } + + /* +@@ -1544,23 +1549,25 @@ + + /* Checks if there is any buffered output, and tries to write some of the output. */ + +-void ++int + packet_write_poll(void) + { +- int len = buffer_len(&output); ++ int len = 0; ++ len = buffer_len(&output); + + if (len > 0) { + len = write(connection_out, buffer_ptr(&output), len); + if (len == -1) { + if (errno == EINTR || errno == EAGAIN || + errno == EWOULDBLOCK) +- return; ++ return (0); + fatal("Write failed: %.100s", strerror(errno)); + } + if (len == 0) + fatal("Write connection closed"); + buffer_consume(&output, len); + } ++ return(len); + } + + +@@ -1569,16 +1576,17 @@ + * written. + */ + +-void ++int + packet_write_wait(void) + { + fd_set *setp; + int ret, ms_remain; + struct timeval start, timeout, *timeoutp = NULL; ++ u_int bytes_sent = 0; + + setp = (fd_set *)xcalloc(howmany(connection_out + 1, NFDBITS), + sizeof(fd_mask)); +- packet_write_poll(); ++ bytes_sent += packet_write_poll(); + while (packet_have_data_to_write()) { + memset(setp, 0, howmany(connection_out + 1, NFDBITS) * + sizeof(fd_mask)); +@@ -1612,7 +1620,7 @@ + "waiting to write", get_remote_ipaddr()); + cleanup_exit(255); + } +- packet_write_poll(); ++ bytes_sent += packet_write_poll(); + } + xfree(setp); + } +@@ -1736,12 +1744,24 @@ + } + } + ++int rekey_requested = 0; ++void ++packet_request_rekeying(void) ++{ ++ rekey_requested = 1; ++} ++ + #define MAX_PACKETS (1U<<31) + int + packet_need_rekeying(void) + { + if (datafellows & SSH_BUG_NOREKEY) + return 0; ++ if (rekey_requested == 1) ++ { ++ rekey_requested = 0; ++ return 1; ++ } + return + (p_send.packets > MAX_PACKETS) || + (p_read.packets > MAX_PACKETS) || +@@ -1766,3 +1786,9 @@ + { + after_authentication = 1; + } ++ ++int ++packet_authentication_state(void) ++{ ++ return(after_authentication); ++} +diff -urN packet.h packet.h +--- packet.h 2008-07-11 11:36:48.000000000 +0400 ++++ packet.h 2009-05-02 17:38:18.000000000 +0400 +@@ -20,6 +20,9 @@ + + #include + ++void ++packet_request_rekeying(void); ++ + void packet_set_connection(int, int); + void packet_set_timeout(int, int); + void packet_set_nonblocking(void); +@@ -35,6 +38,7 @@ + int packet_is_interactive(void); + void packet_set_server(void); + void packet_set_authenticated(void); ++int packet_authentication_state(void); + + void packet_start(u_char); + void packet_put_char(int ch); +@@ -44,7 +48,7 @@ + void packet_put_string(const void *buf, u_int len); + void packet_put_cstring(const char *str); + void packet_put_raw(const void *buf, u_int len); +-void packet_send(void); ++int packet_send(void); + + int packet_read(void); + void packet_read_expect(int type); +@@ -73,8 +77,8 @@ + int packet_get_ssh1_cipher(void); + void packet_set_iv(int, u_char *); + +-void packet_write_poll(void); +-void packet_write_wait(void); ++int packet_write_poll(void); ++int packet_write_wait(void); + int packet_have_data_to_write(void); + int packet_not_very_much_data_to_write(void); + +diff -urN progressmeter.c progressmeter.c +--- progressmeter.c 2006-08-05 06:39:40.000000000 +0400 ++++ progressmeter.c 2009-05-02 17:38:18.000000000 +0400 +@@ -68,6 +68,8 @@ + static char *file; /* name of the file being transferred */ + static off_t end_pos; /* ending position of transfer */ + static off_t cur_pos; /* transfer position as of last refresh */ ++static off_t last_pos; ++static off_t max_delta_pos = 0; + static volatile off_t *counter; /* progress counter */ + static long stalled; /* how long we have been stalled */ + static int bytes_per_second; /* current speed in bytes per second */ +@@ -128,12 +130,17 @@ + int hours, minutes, seconds; + int i, len; + int file_len; ++ off_t delta_pos; + + transferred = *counter - cur_pos; + cur_pos = *counter; + now = time(NULL); + bytes_left = end_pos - cur_pos; + ++ delta_pos = cur_pos - last_pos; ++ if (delta_pos > max_delta_pos) ++ max_delta_pos = delta_pos; ++ + if (bytes_left > 0) + elapsed = now - last_update; + else { +@@ -158,7 +165,7 @@ + + /* filename */ + buf[0] = '\0'; +- file_len = win_size - 35; ++ file_len = win_size - 45; + if (file_len > 0) { + len = snprintf(buf, file_len + 1, "\r%s", file); + if (len < 0) +@@ -175,7 +182,8 @@ + percent = ((float)cur_pos / end_pos) * 100; + else + percent = 100; +- snprintf(buf + strlen(buf), win_size - strlen(buf), ++ ++ snprintf(buf + strlen(buf), win_size - strlen(buf-8), + " %3d%% ", percent); + + /* amount transferred */ +@@ -188,6 +196,15 @@ + (off_t)bytes_per_second); + strlcat(buf, "/s ", win_size); + ++ /* instantaneous rate */ ++ if (bytes_left > 0) ++ format_rate(buf + strlen(buf), win_size - strlen(buf), ++ delta_pos); ++ else ++ format_rate(buf + strlen(buf), win_size - strlen(buf), ++ max_delta_pos); ++ strlcat(buf, "/s ", win_size); ++ + /* ETA */ + if (!transferred) + stalled += elapsed; +@@ -224,6 +241,7 @@ + + atomicio(vwrite, STDOUT_FILENO, buf, win_size - 1); + last_update = now; ++ last_pos = cur_pos; + } + + /*ARGSUSED*/ +diff -urN readconf.c readconf.c +--- readconf.c 2009-05-02 17:37:11.000000000 +0400 ++++ readconf.c 2009-05-02 17:47:56.000000000 +0400 +@@ -131,6 +131,8 @@ + oSendEnv, oControlPath, oControlMaster, oHashKnownHosts, + oTunnel, oTunnelDevice, oLocalCommand, oPermitLocalCommand, + oVisualHostKey, oZeroKnowledgePasswordAuthentication, ++ oNoneEnabled, oTcpRcvBufPoll, oTcpRcvBuf, oNoneSwitch, oHPNDisabled, ++ oHPNBufferSize, + oDeprecated, oUnsupported + } OpCodes; + +@@ -228,6 +230,12 @@ + { "localcommand", oLocalCommand }, + { "permitlocalcommand", oPermitLocalCommand }, + { "visualhostkey", oVisualHostKey }, ++ { "noneenabled", oNoneEnabled }, ++ { "tcprcvbufpoll", oTcpRcvBufPoll }, ++ { "tcprcvbuf", oTcpRcvBuf }, ++ { "noneswitch", oNoneSwitch }, ++ { "hpndisabled", oHPNDisabled }, ++ { "hpnbuffersize", oHPNBufferSize }, + #ifdef JPAKE + { "zeroknowledgepasswordauthentication", + oZeroKnowledgePasswordAuthentication }, +@@ -465,6 +473,37 @@ + intptr = &options->check_host_ip; + goto parse_flag; + ++ case oNoneEnabled: ++ intptr = &options->none_enabled; ++ goto parse_flag; ++ ++ /* we check to see if the command comes from the */ ++ /* command line or not. If it does then enable it */ ++ /* otherwise fail. NONE should never be a default configuration */ ++ case oNoneSwitch: ++ if(strcmp(filename,"command-line")==0) ++ { ++ intptr = &options->none_switch; ++ goto parse_flag; ++ } else { ++ error("NoneSwitch is found in %.200s.\nYou may only use this configuration option from the command line", filename); ++ error("Continuing..."); ++ debug("NoneSwitch directive found in %.200s.", filename); ++ return 0; ++ } ++ ++ case oHPNDisabled: ++ intptr = &options->hpn_disabled; ++ goto parse_flag; ++ ++ case oHPNBufferSize: ++ intptr = &options->hpn_buffer_size; ++ goto parse_int; ++ ++ case oTcpRcvBufPoll: ++ intptr = &options->tcp_rcv_buf_poll; ++ goto parse_flag; ++ + case oVerifyHostKeyDNS: + intptr = &options->verify_host_key_dns; + goto parse_yesnoask; +@@ -643,6 +682,10 @@ + intptr = &options->connection_attempts; + goto parse_int; + ++ case oTcpRcvBuf: ++ intptr = &options->tcp_rcv_buf; ++ goto parse_int; ++ + case oCipher: + intptr = &options->cipher; + arg = strdelim(&s); +@@ -1065,6 +1108,12 @@ + options->permit_local_command = -1; + options->visual_host_key = -1; + options->zero_knowledge_password_authentication = -1; ++ options->none_switch = -1; ++ options->none_enabled = -1; ++ options->hpn_disabled = -1; ++ options->hpn_buffer_size = -1; ++ options->tcp_rcv_buf_poll = -1; ++ options->tcp_rcv_buf = -1; + } + + /* +@@ -1187,6 +1236,29 @@ + options->server_alive_interval = 0; + if (options->server_alive_count_max == -1) + options->server_alive_count_max = 3; ++ if (options->none_switch == -1) ++ options->none_switch = 0; ++ if (options->hpn_disabled == -1) ++ options->hpn_disabled = 0; ++ if (options->hpn_buffer_size > -1) ++ { ++ /* if a user tries to set the size to 0 set it to 1KB */ ++ if (options->hpn_buffer_size == 0) ++ options->hpn_buffer_size = 1024; ++ /*limit the buffer to 64MB*/ ++ if (options->hpn_buffer_size > 65536) ++ { ++ options->hpn_buffer_size = 65536*1024; ++ debug("User requested buffer larger than 64MB. Request reverted to 64MB"); ++ } ++ debug("hpn_buffer_size set to %d", options->hpn_buffer_size); ++ } ++ if (options->tcp_rcv_buf == 0) ++ options->tcp_rcv_buf = 1; ++ if (options->tcp_rcv_buf > -1) ++ options->tcp_rcv_buf *=1024; ++ if (options->tcp_rcv_buf_poll == -1) ++ options->tcp_rcv_buf_poll = 1; + if (options->control_master == -1) + options->control_master = 0; + if (options->hash_known_hosts == -1) +diff -urN readconf.h readconf.h +--- readconf.h 2009-02-14 08:28:21.000000000 +0300 ++++ readconf.h 2009-05-02 17:38:19.000000000 +0400 +@@ -57,6 +57,11 @@ + int compression_level; /* Compression level 1 (fast) to 9 + * (best). */ + int tcp_keep_alive; /* Set SO_KEEPALIVE. */ ++ int tcp_rcv_buf; /* user switch to set tcp recv buffer */ ++ int tcp_rcv_buf_poll; /* Option to poll recv buf every window transfer */ ++ int hpn_disabled; /* Switch to disable HPN buffer management */ ++ int hpn_buffer_size; /* User definable size for HPN buffer window */ ++ + LogLevel log_level; /* Level for logging. */ + + int port; /* Port to connect. */ +@@ -102,6 +107,8 @@ + + int enable_ssh_keysign; + int64_t rekey_limit; ++ int none_switch; /* Use none cipher */ ++ int none_enabled; /* Allow none to be used */ + int no_host_authentication_for_localhost; + int identities_only; + int server_alive_interval; +diff -urN scp.c scp.c +--- scp.c 2008-11-03 11:23:45.000000000 +0300 ++++ scp.c 2009-05-02 17:38:19.000000000 +0400 +@@ -632,7 +632,7 @@ + off_t i, statbytes; + size_t amt; + int fd = -1, haderr, indx; +- char *last, *name, buf[2048], encname[MAXPATHLEN]; ++ char *last, *name, buf[16384], encname[MAXPATHLEN]; + int len; + + for (indx = 0; indx < argc; ++indx) { +@@ -868,7 +868,7 @@ + mode_t mode, omode, mask; + off_t size, statbytes; + int setimes, targisdir, wrerrno = 0; +- char ch, *cp, *np, *targ, *why, *vect[1], buf[2048]; ++ char ch, *cp, *np, *targ, *why, *vect[1], buf[16384]; + struct timeval tv[2]; + + #define atime tv[0] +diff -urN servconf.c servconf.c +--- servconf.c 2009-05-02 17:37:11.000000000 +0400 ++++ servconf.c 2009-05-02 17:38:19.000000000 +0400 +@@ -266,6 +266,42 @@ + if (options->zero_knowledge_password_authentication == -1) + options->zero_knowledge_password_authentication = 0; + ++ if (options->hpn_disabled == -1) ++ options->hpn_disabled = 0; ++ ++ if (options->hpn_buffer_size == -1) { ++ /* option not explicitly set. Now we have to figure out */ ++ /* what value to use */ ++ if (options->hpn_disabled == 1) { ++ options->hpn_buffer_size = CHAN_SES_WINDOW_DEFAULT; ++ } else { ++ /* get the current RCV size and set it to that */ ++ /*create a socket but don't connect it */ ++ /* we use that the get the rcv socket size */ ++ sock = socket(AF_INET, SOCK_STREAM, 0); ++ getsockopt(sock, SOL_SOCKET, SO_RCVBUF, ++ &socksize, &socksizelen); ++ close(sock); ++ options->hpn_buffer_size = socksize; ++ debug ("HPN Buffer Size: %d", options->hpn_buffer_size); ++ ++ } ++ } else { ++ /* we have to do this incase the user sets both values in a contradictory */ ++ /* manner. hpn_disabled overrrides hpn_buffer_size*/ ++ if (options->hpn_disabled <= 0) { ++ if (options->hpn_buffer_size == 0) ++ options->hpn_buffer_size = 1; ++ /* limit the maximum buffer to 64MB */ ++ if (options->hpn_buffer_size > 64*1024) { ++ options->hpn_buffer_size = 64*1024*1024; ++ } else { ++ options->hpn_buffer_size *= 1024; ++ } ++ } else ++ options->hpn_buffer_size = CHAN_TCP_WINDOW_DEFAULT; ++ } ++ + /* Turn privilege separation on by default */ + if (use_privsep == -1) + use_privsep = 1; +@@ -428,6 +464,10 @@ + { "permitopen", sPermitOpen, SSHCFG_ALL }, + { "forcecommand", sForceCommand, SSHCFG_ALL }, + { "chrootdirectory", sChrootDirectory, SSHCFG_ALL }, ++ { "noneenabled", sNoneEnabled }, ++ { "hpndisabled", sHPNDisabled }, ++ { "hpnbuffersize", sHPNBufferSize }, ++ { "tcprcvbufpoll", sTcpRcvBufPoll }, + { NULL, sBadOption, 0 } + }; + +@@ -454,6 +494,7 @@ + + for (i = 0; keywords[i].name; i++) + if (strcasecmp(cp, keywords[i].name) == 0) { ++ debug ("Config token is %s", keywords[i].name); + *flags = keywords[i].flags; + return keywords[i].opcode; + } +@@ -851,6 +892,22 @@ + *intptr = value; + break; + ++ case sNoneEnabled: ++ intptr = &options->none_enabled; ++ goto parse_flag; ++ ++ case sTcpRcvBufPoll: ++ intptr = &options->tcp_rcv_buf_poll; ++ goto parse_flag; ++ ++ case sHPNDisabled: ++ intptr = &options->hpn_disabled; ++ goto parse_flag; ++ ++ case sHPNBufferSize: ++ intptr = &options->hpn_buffer_size; ++ goto parse_int; ++ + case sIgnoreUserKnownHosts: + intptr = &options->ignore_user_known_hosts; + goto parse_flag; +diff -urN servconf.h servconf.h +--- servconf.h 2009-01-28 08:31:23.000000000 +0300 ++++ servconf.h 2009-05-02 17:38:19.000000000 +0400 +@@ -145,6 +145,10 @@ + char *adm_forced_command; + + int use_pam; /* Enable auth via PAM */ ++ int none_enabled; /* enable NONE cipher switch */ ++ int tcp_rcv_buf_poll; /* poll tcp rcv window in autotuning kernels*/ ++ int hpn_disabled; /* disable hpn functionality. false by default */ ++ int hpn_buffer_size; /* set the hpn buffer size - default 3MB */ + + int permit_tun; + +diff -urN serverloop.c serverloop.c +--- serverloop.c 2009-02-14 08:33:09.000000000 +0300 ++++ serverloop.c 2009-05-02 17:38:19.000000000 +0400 +@@ -93,10 +93,10 @@ + static int fdout; /* Descriptor for stdout (for reading); + May be same number as fdin. */ + static int fderr; /* Descriptor for stderr. May be -1. */ +-static long stdin_bytes = 0; /* Number of bytes written to stdin. */ +-static long stdout_bytes = 0; /* Number of stdout bytes sent to client. */ +-static long stderr_bytes = 0; /* Number of stderr bytes sent to client. */ +-static long fdout_bytes = 0; /* Number of stdout bytes read from program. */ ++static u_long stdin_bytes = 0; /* Number of bytes written to stdin. */ ++static u_long stdout_bytes = 0; /* Number of stdout bytes sent to client. */ ++static u_long stderr_bytes = 0; /* Number of stderr bytes sent to client. */ ++static u_long fdout_bytes = 0; /* Number of stdout bytes read from program. */ + static int stdin_eof = 0; /* EOF message received from client. */ + static int fdout_eof = 0; /* EOF encountered reading from fdout. */ + static int fderr_eof = 0; /* EOF encountered readung from fderr. */ +@@ -121,6 +121,20 @@ + static void server_init_dispatch(void); + + /* ++ * Returns current time in seconds from Jan 1, 1970 with the maximum ++ * available resolution. ++ */ ++ ++static double ++get_current_time(void) ++{ ++ struct timeval tv; ++ gettimeofday(&tv, NULL); ++ return (double) tv.tv_sec + (double) tv.tv_usec / 1000000.0; ++} ++ ++ ++/* + * we write to this pipe if a SIGCHLD is caught in order to avoid + * the race between select() and child_terminated + */ +@@ -410,6 +424,7 @@ + } else { + /* Buffer any received data. */ + packet_process_incoming(buf, len); ++ fdout_bytes += len; + } + } + if (compat20) +@@ -432,6 +447,7 @@ + } else { + buffer_append(&stdout_buffer, buf, len); + fdout_bytes += len; ++ debug ("FD out now: %ld", fdout_bytes); + } + } + /* Read and buffer any available stderr data from the program. */ +@@ -499,7 +515,7 @@ + } + /* Send any buffered packet data to the client. */ + if (FD_ISSET(connection_out, writeset)) +- packet_write_poll(); ++ stdin_bytes += packet_write_poll(); + } + + /* +@@ -816,8 +832,10 @@ + { + fd_set *readset = NULL, *writeset = NULL; + int rekeying = 0, max_fd, nalloc = 0; ++ double start_time, total_time; + + debug("Entering interactive session for SSH2."); ++ start_time = get_current_time(); + + mysignal(SIGCHLD, sigchld_handler); + child_terminated = 0; +@@ -879,6 +897,11 @@ + + /* free remaining sessions, e.g. remove wtmp entries */ + session_destroy_all(NULL); ++ total_time = get_current_time() - start_time; ++ logit("SSH: Server;LType: Throughput;Remote: %s-%d;IN: %lu;OUT: %lu;Duration: %.1f;tPut_in: %.1f;tPut_out: %.1f", ++ get_remote_ipaddr(), get_remote_port(), ++ stdin_bytes, fdout_bytes, total_time, stdin_bytes / total_time, ++ fdout_bytes / total_time); + } + + static void +@@ -994,8 +1017,12 @@ + sock = tun_open(tun, mode); + if (sock < 0) + goto done; ++ if (options.hpn_disabled) + c = channel_new("tun", SSH_CHANNEL_OPEN, sock, sock, -1, + CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1); ++ else ++ c = channel_new("tun", SSH_CHANNEL_OPEN, sock, sock, -1, ++ options.hpn_buffer_size, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1); + c->datagram = 1; + #if defined(SSH_TUN_FILTER) + if (mode == SSH_TUNMODE_POINTOPOINT) +@@ -1031,6 +1058,8 @@ + c = channel_new("session", SSH_CHANNEL_LARVAL, + -1, -1, -1, /*window size*/0, CHAN_SES_PACKET_DEFAULT, + 0, "server-session", 1); ++ if ((options.tcp_rcv_buf_poll) && (!options.hpn_disabled)) ++ c->dynamic_window = 1; + if (session_open(the_authctxt, c->self) != 1) { + debug("session open failed, free channel %d", c->self); + channel_free(c); +diff -urN session.c session.c +--- session.c 2009-05-02 17:37:11.000000000 +0400 ++++ session.c 2009-05-02 17:38:19.000000000 +0400 +@@ -230,6 +230,7 @@ + } + + /* Allocate a channel for the authentication agent socket. */ ++ /* this shouldn't matter if its hpn or not - cjr */ + nc = channel_new("auth socket", + SSH_CHANNEL_AUTH_SOCKET, sock, sock, -1, + CHAN_X11_WINDOW_DEFAULT, CHAN_X11_PACKET_DEFAULT, +@@ -2351,10 +2352,16 @@ + */ + if (s->chanid == -1) + fatal("no channel for session %d", s->self); ++ if (options.hpn_disabled) + channel_set_fds(s->chanid, + fdout, fdin, fderr, + fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ, + 1, is_tty, CHAN_SES_WINDOW_DEFAULT); ++ else ++ channel_set_fds(s->chanid, ++ fdout, fdin, fderr, ++ fderr == -1 ? CHAN_EXTENDED_IGNORE : CHAN_EXTENDED_READ, ++ 1, is_tty, options.hpn_buffer_size); + } + + /* +diff -urN sftp.1 sftp.1 +--- sftp.1 2009-01-28 08:14:09.000000000 +0300 ++++ sftp.1 2009-05-02 17:38:19.000000000 +0400 +@@ -203,7 +203,8 @@ + Specify how many requests may be outstanding at any one time. + Increasing this may slightly improve file transfer speed + but will increase memory usage. +-The default is 64 outstanding requests. ++The default is 256 outstanding requests providing for 8MB ++of outstanding data with a 32KB buffer. + .It Fl S Ar program + Name of the + .Ar program +diff -urN sftp.c sftp.c +--- sftp.c 2009-02-14 08:26:19.000000000 +0300 ++++ sftp.c 2009-05-02 17:38:19.000000000 +0400 +@@ -75,7 +75,7 @@ + size_t copy_buffer_len = 32768; + + /* Number of concurrent outstanding requests */ +-size_t num_requests = 64; ++size_t num_requests = 256; + + /* PID of ssh transport process */ + static pid_t sshpid = -1; +diff -urN ssh.c ssh.c +--- ssh.c 2009-05-02 17:37:11.000000000 +0400 ++++ ssh.c 2009-05-02 17:38:19.000000000 +0400 +@@ -492,9 +492,6 @@ + no_shell_flag = 1; + no_tty_flag = 1; + break; +- case 'T': +- no_tty_flag = 1; +- break; + case 'o': + dummy = 1; + line = xstrdup(optarg); +@@ -503,6 +500,13 @@ + exit(255); + xfree(line); + break; ++ case 'T': ++ no_tty_flag = 1; ++ /* ensure that the user doesn't try to backdoor a */ ++ /* null cipher switch on an interactive session */ ++ /* so explicitly disable it no matter what */ ++ options.none_switch=0; ++ break; + case 's': + subsystem_flag = 1; + break; +@@ -1159,6 +1163,9 @@ + { + Channel *c; + int window, packetmax, in, out, err; ++ int sock; ++ int socksize; ++ int socksizelen = sizeof(int); + + if (stdin_null_flag) { + in = open(_PATH_DEVNULL, O_RDONLY); +@@ -1179,9 +1186,75 @@ + if (!isatty(err)) + set_nonblock(err); + +- window = CHAN_SES_WINDOW_DEFAULT; ++ /* we need to check to see if what they want to do about buffer */ ++ /* sizes here. In a hpn to nonhpn connection we want to limit */ ++ /* the window size to something reasonable in case the far side */ ++ /* has the large window bug. In hpn to hpn connection we want to */ ++ /* use the max window size but allow the user to override it */ ++ /* lastly if they disabled hpn then use the ssh std window size */ ++ ++ /* so why don't we just do a getsockopt() here and set the */ ++ /* ssh window to that? In the case of a autotuning receive */ ++ /* window the window would get stuck at the initial buffer */ ++ /* size generally less than 96k. Therefore we need to set the */ ++ /* maximum ssh window size to the maximum hpn buffer size */ ++ /* unless the user has specifically set the tcprcvbufpoll */ ++ /* to no. In which case we *can* just set the window to the */ ++ /* minimum of the hpn buffer size and tcp receive buffer size */ ++ ++ if (tty_flag) ++ options.hpn_buffer_size = CHAN_SES_WINDOW_DEFAULT; ++ else ++ options.hpn_buffer_size = 2*1024*1024; ++ ++ if (datafellows & SSH_BUG_LARGEWINDOW) ++ { ++ debug("HPN to Non-HPN Connection"); ++ } ++ else ++ { ++ if (options.tcp_rcv_buf_poll <= 0) ++ { ++ sock = socket(AF_INET, SOCK_STREAM, 0); ++ getsockopt(sock, SOL_SOCKET, SO_RCVBUF, ++ &socksize, &socksizelen); ++ close(sock); ++ debug("socksize %d", socksize); ++ options.hpn_buffer_size = socksize; ++ debug ("HPNBufferSize set to TCP RWIN: %d", options.hpn_buffer_size); ++ } ++ else ++ { ++ if (options.tcp_rcv_buf > 0) ++ { ++ /*create a socket but don't connect it */ ++ /* we use that the get the rcv socket size */ ++ sock = socket(AF_INET, SOCK_STREAM, 0); ++ /* if they are using the tcp_rcv_buf option */ ++ /* attempt to set the buffer size to that */ ++ if (options.tcp_rcv_buf) ++ setsockopt(sock, SOL_SOCKET, SO_RCVBUF, (void *)&options.tcp_rcv_buf, ++ sizeof(options.tcp_rcv_buf)); ++ getsockopt(sock, SOL_SOCKET, SO_RCVBUF, ++ &socksize, &socksizelen); ++ close(sock); ++ debug("socksize %d", socksize); ++ options.hpn_buffer_size = socksize; ++ debug ("HPNBufferSize set to user TCPRcvBuf: %d", options.hpn_buffer_size); ++ } ++ } ++ ++ } ++ ++ debug("Final hpn_buffer_size = %d", options.hpn_buffer_size); ++ ++ window = options.hpn_buffer_size; ++ ++ channel_set_hpn(options.hpn_disabled, options.hpn_buffer_size); ++ + packetmax = CHAN_SES_PACKET_DEFAULT; + if (tty_flag) { ++ window = 4*CHAN_SES_PACKET_DEFAULT; + window >>= 1; + packetmax >>= 1; + } +@@ -1189,7 +1262,10 @@ + "session", SSH_CHANNEL_OPENING, in, out, err, + window, packetmax, CHAN_EXTENDED_WRITE, + "client-session", /*nonblock*/0); +- ++ if ((options.tcp_rcv_buf_poll > 0) && (!options.hpn_disabled)) { ++ c->dynamic_window = 1; ++ debug ("Enabled Dynamic Window Scaling\n"); ++ } + debug3("ssh_session2_open: channel_new: %d", c->self); + + channel_send_open(c->self); +diff -urN sshconnect.c sshconnect.c +--- sshconnect.c 2009-02-01 14:19:54.000000000 +0300 ++++ sshconnect.c 2009-05-02 17:38:19.000000000 +0400 +@@ -165,6 +165,31 @@ + } + + /* ++ * Set TCP receive buffer if requested. ++ * Note: tuning needs to happen after the socket is ++ * created but before the connection happens ++ * so winscale is negotiated properly -cjr ++ */ ++static void ++ssh_set_socket_recvbuf(int sock) ++{ ++ void *buf = (void *)&options.tcp_rcv_buf; ++ int sz = sizeof(options.tcp_rcv_buf); ++ int socksize; ++ int socksizelen = sizeof(int); ++ ++ debug("setsockopt Attempting to set SO_RCVBUF to %d", options.tcp_rcv_buf); ++ if (setsockopt(sock, SOL_SOCKET, SO_RCVBUF, buf, sz) >= 0) { ++ getsockopt(sock, SOL_SOCKET, SO_RCVBUF, &socksize, &socksizelen); ++ debug("setsockopt SO_RCVBUF: %.100s %d", strerror(errno), socksize); ++ } ++ else ++ error("Couldn't set socket receive buffer to %d: %.100s", ++ options.tcp_rcv_buf, strerror(errno)); ++} ++ ++ ++/* + * Creates a (possibly privileged) socket for use as the ssh connection. + */ + static int +@@ -187,12 +212,18 @@ + strerror(errno)); + else + debug("Allocated local port %d.", p); ++ ++ if (options.tcp_rcv_buf > 0) ++ ssh_set_socket_recvbuf(sock); + return sock; + } + sock = socket(ai->ai_family, ai->ai_socktype, ai->ai_protocol); + if (sock < 0) + error("socket: %.100s", strerror(errno)); + ++ if (options.tcp_rcv_buf > 0) ++ ssh_set_socket_recvbuf(sock); ++ + /* Bind the socket to an alternative local IP address */ + if (options.bind_address == NULL) + return sock; +@@ -536,7 +567,7 @@ + snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s", + compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1, + compat20 ? PROTOCOL_MINOR_2 : minor1, +- SSH_VERSION, compat20 ? "\r\n" : "\n"); ++ SSH_RELEASE, compat20 ? "\r\n" : "\n"); + if (atomicio(vwrite, connection_out, buf, strlen(buf)) != strlen(buf)) + fatal("write: %.100s", strerror(errno)); + client_version_string = xstrdup(buf); +diff -urN sshconnect2.c sshconnect2.c +--- sshconnect2.c 2008-11-05 08:20:47.000000000 +0300 ++++ sshconnect2.c 2009-05-02 17:38:19.000000000 +0400 +@@ -78,6 +78,12 @@ + extern char *client_version_string; + extern char *server_version_string; + extern Options options; ++extern Kex *xxx_kex; ++ ++/* tty_flag is set in ssh.c. use this in ssh_userauth2 */ ++/* if it is set then prevent the switch to the null cipher */ ++ ++extern int tty_flag; + + /* + * SSH2 key exchange +@@ -350,6 +356,28 @@ + pubkey_cleanup(&authctxt); + dispatch_range(SSH2_MSG_USERAUTH_MIN, SSH2_MSG_USERAUTH_MAX, NULL); + ++ /* if the user wants to use the none cipher do it */ ++ /* post authentication and only if the right conditions are met */ ++ /* both of the NONE commands must be true and there must be no */ ++ /* tty allocated */ ++ if ((options.none_switch == 1) && (options.none_enabled == 1)) ++ { ++ if (!tty_flag) /* no null on tty sessions */ ++ { ++ debug("Requesting none rekeying..."); ++ myproposal[PROPOSAL_ENC_ALGS_STOC] = "none"; ++ myproposal[PROPOSAL_ENC_ALGS_CTOS] = "none"; ++ kex_prop2buf(&xxx_kex->my,myproposal); ++ packet_request_rekeying(); ++ fprintf(stderr, "WARNING: ENABLED NONE CIPHER\n"); ++ } ++ else ++ { ++ /* requested NONE cipher when in a tty */ ++ debug("Cannot switch to NONE cipher with tty allocated"); ++ fprintf(stderr, "NONE cipher switch disabled when a TTY is allocated\n"); ++ } ++ } + debug("Authentication succeeded (%s).", authctxt.method->name); + } + +diff -urN sshd.c sshd.c +--- sshd.c 2009-05-02 17:37:11.000000000 +0400 ++++ sshd.c 2009-05-02 17:38:19.000000000 +0400 +@@ -143,6 +143,9 @@ + #define REEXEC_CONFIG_PASS_FD (STDERR_FILENO + 3) + #define REEXEC_MIN_FREE_FD (STDERR_FILENO + 4) + ++int myflag = 0; ++ ++ + extern char *__progname; + + /* Server configuration options. */ +@@ -422,7 +425,7 @@ + minor = PROTOCOL_MINOR_1; + } + snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s", major, minor, +- SSH_VERSION, newline); ++ SSH_RELEASE, newline); + server_version_string = xstrdup(buf); + + /* Send our protocol version identification. */ +@@ -473,6 +476,9 @@ + } + debug("Client protocol version %d.%d; client software version %.100s", + remote_major, remote_minor, remote_version); ++ logit("SSH: Server;Ltype: Version;Remote: %s-%d;Protocol: %d.%d;Client: %.100s", ++ get_remote_ipaddr(), get_remote_port(), ++ remote_major, remote_minor, remote_version); + + compat_datafellows(remote_version); + +@@ -951,6 +957,8 @@ + int ret, listen_sock, on = 1; + struct addrinfo *ai; + char ntop[NI_MAXHOST], strport[NI_MAXSERV]; ++ int socksize; ++ int socksizelen = sizeof(int); + + for (ai = options.listen_addrs; ai; ai = ai->ai_next) { + if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6) +@@ -997,6 +1005,11 @@ + + debug("Bind to port %s on %s.", strport, ntop); + ++ getsockopt(listen_sock, SOL_SOCKET, SO_RCVBUF, ++ &socksize, &socksizelen); ++ debug("Server TCP RWIN socket size: %d", socksize); ++ debug("HPN Buffer Size: %d", options.hpn_buffer_size); ++ + /* Bind the socket to the desired port. */ + if (bind(listen_sock, ai->ai_addr, ai->ai_addrlen) < 0) { + error("Bind to port %s on %s failed: %.200s.", +@@ -1847,6 +1860,9 @@ + /* Log the connection. */ + verbose("Connection from %.500s port %d", remote_ip, remote_port); + ++ /* set the HPN options for the child */ ++ channel_set_hpn(options.hpn_disabled, options.hpn_buffer_size); ++ + /* + * We don't want to listen forever unless the other side + * successfully authenticates itself. So we set up an alarm which is +@@ -2201,9 +2217,15 @@ + { + Kex *kex; + ++ myflag++; ++ debug ("MYFLAG IS %d", myflag); + if (options.ciphers != NULL) { + myproposal[PROPOSAL_ENC_ALGS_CTOS] = + myproposal[PROPOSAL_ENC_ALGS_STOC] = options.ciphers; ++ } else if (options.none_enabled == 1) { ++ debug ("WARNING: None cipher enabled"); ++ myproposal[PROPOSAL_ENC_ALGS_CTOS] = ++ myproposal[PROPOSAL_ENC_ALGS_STOC] = KEX_ENCRYPT_INCLUDE_NONE; + } + myproposal[PROPOSAL_ENC_ALGS_CTOS] = + compat_cipher_proposal(myproposal[PROPOSAL_ENC_ALGS_CTOS]); +diff -urN sshd_config sshd_config +--- sshd_config 2009-05-02 17:37:11.000000000 +0400 ++++ sshd_config 2009-05-02 17:38:19.000000000 +0400 +@@ -112,6 +112,20 @@ + # override default of no subsystems + Subsystem sftp /usr/libexec/sftp-server + ++# the following are HPN related configuration options ++# tcp receive buffer polling. disable in non autotuning kernels ++#TcpRcvBufPoll yes ++ ++# allow the use of the none cipher ++#NoneEnabled no ++ ++# disable hpn performance boosts. ++#HPNDisabled no ++ ++# buffer size for hpn to non-hpn connections ++#HPNBufferSize 2048 ++ ++ + # Example of overriding settings on a per-user basis + #Match User anoncvs + # X11Forwarding no +--- version.h.orig 2009-02-23 03:09:26.000000000 +0300 ++++ version.h 2009-05-02 18:53:20.000000000 +0400 +@@ -3,4 +3,5 @@ + #define SSH_VERSION "OpenSSH_5.2" + + #define SSH_PORTABLE "p1" +-#define SSH_RELEASE SSH_VERSION SSH_PORTABLE ++#define SSH_HPN "-hpn13v5" ++#define SSH_RELEASE SSH_VERSION SSH_PORTABLE SSH_HPN diff -urN security/openssh-portable/files/openssh-lpk+hpn-servconf.patch security/openssh-portable/files/openssh-lpk+hpn-servconf.patch --- security/openssh-portable/files/openssh-lpk+hpn-servconf.patch 1970-01-01 03:00:00.000000000 +0300 +++ security/openssh-portable/files/openssh-lpk+hpn-servconf.patch 2009-05-02 21:11:54.000000000 +0400 @@ -0,0 +1,240 @@ +--- servconf.c.orig 2009-05-02 19:35:42.000000000 +0400 ++++ servconf.c 2009-05-02 19:37:13.000000000 +0400 +@@ -42,6 +42,10 @@ + #include "channels.h" + #include "groupaccess.h" + ++#ifdef WITH_LDAP_PUBKEY ++#include "ldapauth.h" ++#endif ++ + static void add_listen_addr(ServerOptions *, char *, int); + static void add_one_listen_addr(ServerOptions *, char *, int); + +@@ -74,7 +78,7 @@ + options->ignore_user_known_hosts = -1; + options->print_motd = -1; + options->print_lastlog = -1; +- options->x11_forwarding = -1; ++ options->x11_forwarding = 1; + options->x11_display_offset = -1; + options->x11_use_localhost = -1; + options->xauth_location = NULL; +@@ -127,12 +131,39 @@ + options->num_permitted_opens = -1; + options->adm_forced_command = NULL; + options->chroot_directory = NULL; ++ options->none_enabled = -1; ++ options->tcp_rcv_buf_poll = -1; ++ options->hpn_disabled = -1; ++ options->hpn_buffer_size = -1; + options->zero_knowledge_password_authentication = -1; ++#ifdef WITH_LDAP_PUBKEY ++ /* XXX dirty */ ++ options->lpk.ld = NULL; ++ options->lpk.on = -1; ++ options->lpk.servers = NULL; ++ options->lpk.u_basedn = NULL; ++ options->lpk.g_basedn = NULL; ++ options->lpk.binddn = NULL; ++ options->lpk.bindpw = NULL; ++ options->lpk.sgroup = NULL; ++ options->lpk.filter = NULL; ++ options->lpk.fgroup = NULL; ++ options->lpk.l_conf = NULL; ++ options->lpk.tls = -1; ++ options->lpk.b_timeout.tv_sec = -1; ++ options->lpk.s_timeout.tv_sec = -1; ++ options->lpk.flags = FLAG_EMPTY; ++#endif + } + + void + fill_default_server_options(ServerOptions *options) + { ++ /* needed for hpn socket tests */ ++ int sock; ++ int socksize; ++ int socksizelen = sizeof(int); ++ + /* Portable-specific options */ + if (options->use_pam == -1) + options->use_pam = 1; +@@ -265,6 +296,32 @@ + options->permit_tun = SSH_TUNMODE_NO; + if (options->zero_knowledge_password_authentication == -1) + options->zero_knowledge_password_authentication = 0; ++#ifdef WITH_LDAP_PUBKEY ++ if (options->lpk.on == -1) ++ options->lpk.on = _DEFAULT_LPK_ON; ++ if (options->lpk.servers == NULL) ++ options->lpk.servers = _DEFAULT_LPK_SERVERS; ++ if (options->lpk.u_basedn == NULL) ++ options->lpk.u_basedn = _DEFAULT_LPK_UDN; ++ if (options->lpk.g_basedn == NULL) ++ options->lpk.g_basedn = _DEFAULT_LPK_GDN; ++ if (options->lpk.binddn == NULL) ++ options->lpk.binddn = _DEFAULT_LPK_BINDDN; ++ if (options->lpk.bindpw == NULL) ++ options->lpk.bindpw = _DEFAULT_LPK_BINDPW; ++ if (options->lpk.sgroup == NULL) ++ options->lpk.sgroup = _DEFAULT_LPK_SGROUP; ++ if (options->lpk.filter == NULL) ++ options->lpk.filter = _DEFAULT_LPK_FILTER; ++ if (options->lpk.tls == -1) ++ options->lpk.tls = _DEFAULT_LPK_TLS; ++ if (options->lpk.b_timeout.tv_sec == -1) ++ options->lpk.b_timeout.tv_sec = _DEFAULT_LPK_BTIMEOUT; ++ if (options->lpk.s_timeout.tv_sec == -1) ++ options->lpk.s_timeout.tv_sec = _DEFAULT_LPK_STIMEOUT; ++ if (options->lpk.l_conf == NULL) ++ options->lpk.l_conf = _DEFAULT_LPK_LDP; ++#endif + + if (options->hpn_disabled == -1) + options->hpn_disabled = 0; +@@ -345,8 +402,15 @@ + sGssAuthentication, sGssCleanupCreds, sAcceptEnv, sPermitTunnel, + sMatch, sPermitOpen, sForceCommand, sChrootDirectory, + sUsePrivilegeSeparation, sAllowAgentForwarding, ++ sNoneEnabled, sTcpRcvBufPoll, sHPNDisabled, sHPNBufferSize, + sZeroKnowledgePasswordAuthentication, + sDeprecated, sUnsupported ++#ifdef WITH_LDAP_PUBKEY ++ ,sLdapPublickey, sLdapServers, sLdapUserDN ++ ,sLdapGroupDN, sBindDN, sBindPw, sMyGroup ++ ,sLdapFilter, sForceTLS, sBindTimeout ++ ,sSearchTimeout, sLdapConf ++#endif + } ServerOpCodes; + + #define SSHCFG_GLOBAL 0x01 /* allowed in main section of sshd_config */ +@@ -457,6 +521,20 @@ + { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL }, + { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_GLOBAL }, + { "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_GLOBAL }, ++#ifdef WITH_LDAP_PUBKEY ++ { _DEFAULT_LPK_TOKEN, sLdapPublickey, SSHCFG_GLOBAL }, ++ { _DEFAULT_SRV_TOKEN, sLdapServers, SSHCFG_GLOBAL }, ++ { _DEFAULT_USR_TOKEN, sLdapUserDN, SSHCFG_GLOBAL }, ++ { _DEFAULT_GRP_TOKEN, sLdapGroupDN, SSHCFG_GLOBAL }, ++ { _DEFAULT_BDN_TOKEN, sBindDN, SSHCFG_GLOBAL }, ++ { _DEFAULT_BPW_TOKEN, sBindPw, SSHCFG_GLOBAL }, ++ { _DEFAULT_MYG_TOKEN, sMyGroup, SSHCFG_GLOBAL }, ++ { _DEFAULT_FIL_TOKEN, sLdapFilter, SSHCFG_GLOBAL }, ++ { _DEFAULT_TLS_TOKEN, sForceTLS, SSHCFG_GLOBAL }, ++ { _DEFAULT_BTI_TOKEN, sBindTimeout, SSHCFG_GLOBAL }, ++ { _DEFAULT_STI_TOKEN, sSearchTimeout, SSHCFG_GLOBAL }, ++ { _DEFAULT_LDP_TOKEN, sLdapConf, SSHCFG_GLOBAL }, ++#endif + { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL }, + { "acceptenv", sAcceptEnv, SSHCFG_GLOBAL }, + { "permittunnel", sPermitTunnel, SSHCFG_GLOBAL }, +@@ -1368,6 +1446,107 @@ + while (arg) + arg = strdelim(&cp); + break; ++#ifdef WITH_LDAP_PUBKEY ++ case sLdapPublickey: ++ intptr = &options->lpk.on; ++ goto parse_flag; ++ case sLdapServers: ++ /* arg = strdelim(&cp); */ ++ p = line; ++ while(*p++); ++ arg = p; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing ldap server",filename,linenum); ++ arg[strlen(arg)] = '\0'; ++ if ((options->lpk.servers = ldap_parse_servers(arg)) == NULL) ++ fatal("%s line %d: error in ldap servers", filename, linenum); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sLdapUserDN: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing ldap server",filename,linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.u_basedn = xstrdup(arg); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sLdapGroupDN: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing ldap server",filename,linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.g_basedn = xstrdup(arg); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sBindDN: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing binddn",filename,linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.binddn = xstrdup(arg); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sBindPw: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing bindpw",filename,linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.bindpw = xstrdup(arg); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sMyGroup: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing groupname",filename, linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.sgroup = xstrdup(arg); ++ if (options->lpk.sgroup) ++ options->lpk.fgroup = ldap_parse_groups(options->lpk.sgroup); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sLdapFilter: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing filter",filename, linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.filter = xstrdup(arg); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sForceTLS: ++ intptr = &options->lpk.tls; ++ arg = strdelim(&cp); ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing yes/no argument.", ++ filename, linenum); ++ value = 0; /* silence compiler */ ++ if (strcmp(arg, "yes") == 0) ++ value = 1; ++ else if (strcmp(arg, "no") == 0) ++ value = 0; ++ else if (strcmp(arg, "try") == 0) ++ value = -1; ++ else ++ fatal("%s line %d: Bad yes/no argument: %s", ++ filename, linenum, arg); ++ if (*intptr == -1) ++ *intptr = value; ++ break; ++ case sBindTimeout: ++ intptr = (int *) &options->lpk.b_timeout.tv_sec; ++ goto parse_int; ++ case sSearchTimeout: ++ intptr = (int *) &options->lpk.s_timeout.tv_sec; ++ goto parse_int; ++ break; ++ case sLdapConf: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing LpkLdapConf", filename, linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.l_conf = xstrdup(arg); ++ memset(arg, 0, strlen(arg)); ++ break; ++#endif + + default: + fatal("%s line %d: Missing handler for opcode %s (%d)", diff -urN security/openssh-portable/files/openssh-lpk-5.0p1-0.3.9-servconv.patch security/openssh-portable/files/openssh-lpk-5.0p1-0.3.9-servconv.patch --- security/openssh-portable/files/openssh-lpk-5.0p1-0.3.9-servconv.patch 1970-01-01 03:00:00.000000000 +0300 +++ security/openssh-portable/files/openssh-lpk-5.0p1-0.3.9-servconv.patch 2009-05-02 21:11:54.000000000 +0400 @@ -0,0 +1,222 @@ +--- servconf.c.orig 2009-05-02 19:24:09.000000000 +0400 ++++ servconf.c 2009-05-02 19:29:37.000000000 +0400 +@@ -42,6 +42,10 @@ + #include "channels.h" + #include "groupaccess.h" + ++#ifdef WITH_LDAP_PUBKEY ++#include "ldapauth.h" ++#endif ++ + static void add_listen_addr(ServerOptions *, char *, int); + static void add_one_listen_addr(ServerOptions *, char *, int); + +@@ -74,7 +78,7 @@ + options->ignore_user_known_hosts = -1; + options->print_motd = -1; + options->print_lastlog = -1; +- options->x11_forwarding = -1; ++ options->x11_forwarding = 1; + options->x11_display_offset = -1; + options->x11_use_localhost = -1; + options->xauth_location = NULL; +@@ -128,6 +132,24 @@ + options->adm_forced_command = NULL; + options->chroot_directory = NULL; + options->zero_knowledge_password_authentication = -1; ++#ifdef WITH_LDAP_PUBKEY ++ /* XXX dirty */ ++ options->lpk.ld = NULL; ++ options->lpk.on = -1; ++ options->lpk.servers = NULL; ++ options->lpk.u_basedn = NULL; ++ options->lpk.g_basedn = NULL; ++ options->lpk.binddn = NULL; ++ options->lpk.bindpw = NULL; ++ options->lpk.sgroup = NULL; ++ options->lpk.filter = NULL; ++ options->lpk.fgroup = NULL; ++ options->lpk.l_conf = NULL; ++ options->lpk.tls = -1; ++ options->lpk.b_timeout.tv_sec = -1; ++ options->lpk.s_timeout.tv_sec = -1; ++ options->lpk.flags = FLAG_EMPTY; ++#endif + } + + void +@@ -265,6 +287,32 @@ + options->permit_tun = SSH_TUNMODE_NO; + if (options->zero_knowledge_password_authentication == -1) + options->zero_knowledge_password_authentication = 0; ++#ifdef WITH_LDAP_PUBKEY ++ if (options->lpk.on == -1) ++ options->lpk.on = _DEFAULT_LPK_ON; ++ if (options->lpk.servers == NULL) ++ options->lpk.servers = _DEFAULT_LPK_SERVERS; ++ if (options->lpk.u_basedn == NULL) ++ options->lpk.u_basedn = _DEFAULT_LPK_UDN; ++ if (options->lpk.g_basedn == NULL) ++ options->lpk.g_basedn = _DEFAULT_LPK_GDN; ++ if (options->lpk.binddn == NULL) ++ options->lpk.binddn = _DEFAULT_LPK_BINDDN; ++ if (options->lpk.bindpw == NULL) ++ options->lpk.bindpw = _DEFAULT_LPK_BINDPW; ++ if (options->lpk.sgroup == NULL) ++ options->lpk.sgroup = _DEFAULT_LPK_SGROUP; ++ if (options->lpk.filter == NULL) ++ options->lpk.filter = _DEFAULT_LPK_FILTER; ++ if (options->lpk.tls == -1) ++ options->lpk.tls = _DEFAULT_LPK_TLS; ++ if (options->lpk.b_timeout.tv_sec == -1) ++ options->lpk.b_timeout.tv_sec = _DEFAULT_LPK_BTIMEOUT; ++ if (options->lpk.s_timeout.tv_sec == -1) ++ options->lpk.s_timeout.tv_sec = _DEFAULT_LPK_STIMEOUT; ++ if (options->lpk.l_conf == NULL) ++ options->lpk.l_conf = _DEFAULT_LPK_LDP; ++#endif + + /* Turn privilege separation on by default */ + if (use_privsep == -1) +@@ -311,6 +359,12 @@ + sUsePrivilegeSeparation, sAllowAgentForwarding, + sZeroKnowledgePasswordAuthentication, + sDeprecated, sUnsupported ++#ifdef WITH_LDAP_PUBKEY ++ ,sLdapPublickey, sLdapServers, sLdapUserDN ++ ,sLdapGroupDN, sBindDN, sBindPw, sMyGroup ++ ,sLdapFilter, sForceTLS, sBindTimeout ++ ,sSearchTimeout, sLdapConf ++#endif + } ServerOpCodes; + + #define SSHCFG_GLOBAL 0x01 /* allowed in main section of sshd_config */ +@@ -421,6 +475,20 @@ + { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL }, + { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_GLOBAL }, + { "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_GLOBAL }, ++#ifdef WITH_LDAP_PUBKEY ++ { _DEFAULT_LPK_TOKEN, sLdapPublickey, SSHCFG_GLOBAL }, ++ { _DEFAULT_SRV_TOKEN, sLdapServers, SSHCFG_GLOBAL }, ++ { _DEFAULT_USR_TOKEN, sLdapUserDN, SSHCFG_GLOBAL }, ++ { _DEFAULT_GRP_TOKEN, sLdapGroupDN, SSHCFG_GLOBAL }, ++ { _DEFAULT_BDN_TOKEN, sBindDN, SSHCFG_GLOBAL }, ++ { _DEFAULT_BPW_TOKEN, sBindPw, SSHCFG_GLOBAL }, ++ { _DEFAULT_MYG_TOKEN, sMyGroup, SSHCFG_GLOBAL }, ++ { _DEFAULT_FIL_TOKEN, sLdapFilter, SSHCFG_GLOBAL }, ++ { _DEFAULT_TLS_TOKEN, sForceTLS, SSHCFG_GLOBAL }, ++ { _DEFAULT_BTI_TOKEN, sBindTimeout, SSHCFG_GLOBAL }, ++ { _DEFAULT_STI_TOKEN, sSearchTimeout, SSHCFG_GLOBAL }, ++ { _DEFAULT_LDP_TOKEN, sLdapConf, SSHCFG_GLOBAL }, ++#endif + { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL }, + { "acceptenv", sAcceptEnv, SSHCFG_GLOBAL }, + { "permittunnel", sPermitTunnel, SSHCFG_GLOBAL }, +@@ -1311,6 +1379,107 @@ + while (arg) + arg = strdelim(&cp); + break; ++#ifdef WITH_LDAP_PUBKEY ++ case sLdapPublickey: ++ intptr = &options->lpk.on; ++ goto parse_flag; ++ case sLdapServers: ++ /* arg = strdelim(&cp); */ ++ p = line; ++ while(*p++); ++ arg = p; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing ldap server",filename,linenum); ++ arg[strlen(arg)] = '\0'; ++ if ((options->lpk.servers = ldap_parse_servers(arg)) == NULL) ++ fatal("%s line %d: error in ldap servers", filename, linenum); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sLdapUserDN: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing ldap server",filename,linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.u_basedn = xstrdup(arg); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sLdapGroupDN: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing ldap server",filename,linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.g_basedn = xstrdup(arg); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sBindDN: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing binddn",filename,linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.binddn = xstrdup(arg); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sBindPw: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing bindpw",filename,linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.bindpw = xstrdup(arg); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sMyGroup: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing groupname",filename, linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.sgroup = xstrdup(arg); ++ if (options->lpk.sgroup) ++ options->lpk.fgroup = ldap_parse_groups(options->lpk.sgroup); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sLdapFilter: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing filter",filename, linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.filter = xstrdup(arg); ++ memset(arg,0,strlen(arg)); ++ break; ++ case sForceTLS: ++ intptr = &options->lpk.tls; ++ arg = strdelim(&cp); ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing yes/no argument.", ++ filename, linenum); ++ value = 0; /* silence compiler */ ++ if (strcmp(arg, "yes") == 0) ++ value = 1; ++ else if (strcmp(arg, "no") == 0) ++ value = 0; ++ else if (strcmp(arg, "try") == 0) ++ value = -1; ++ else ++ fatal("%s line %d: Bad yes/no argument: %s", ++ filename, linenum, arg); ++ if (*intptr == -1) ++ *intptr = value; ++ break; ++ case sBindTimeout: ++ intptr = (int *) &options->lpk.b_timeout.tv_sec; ++ goto parse_int; ++ case sSearchTimeout: ++ intptr = (int *) &options->lpk.s_timeout.tv_sec; ++ goto parse_int; ++ break; ++ case sLdapConf: ++ arg = cp; ++ if (!arg || *arg == '\0') ++ fatal("%s line %d: missing LpkLdapConf", filename, linenum); ++ arg[strlen(arg)] = '\0'; ++ options->lpk.l_conf = xstrdup(arg); ++ memset(arg, 0, strlen(arg)); ++ break; ++#endif + + default: + fatal("%s line %d: Missing handler for opcode %s (%d)", diff -urN security/openssh-portable/files/openssh-lpk-5.0p1-0.3.9.patch security/openssh-portable/files/openssh-lpk-5.0p1-0.3.9.patch --- security/openssh-portable/files/openssh-lpk-5.0p1-0.3.9.patch 2008-04-19 17:46:24.000000000 +0400 +++ security/openssh-portable/files/openssh-lpk-5.0p1-0.3.9.patch 2009-05-02 21:11:54.000000000 +0400 @@ -1509,242 +1509,6 @@ + DESC 'MANDATORY: OpenSSH LPK objectclass' + MUST ( sshPublicKey $ uid ) + ) ---- servconf.c.orig 2008-02-10 09:48:55.000000000 -0200 -+++ servconf.c 2008-04-17 21:27:34.000000000 -0300 -@@ -40,6 +40,10 @@ - #include "channels.h" - #include "groupaccess.h" - -+#ifdef WITH_LDAP_PUBKEY -+#include "ldapauth.h" -+#endif -+ - static void add_listen_addr(ServerOptions *, char *, u_short); - static void add_one_listen_addr(ServerOptions *, char *, u_short); - -@@ -123,6 +127,24 @@ - options->num_permitted_opens = -1; - options->adm_forced_command = NULL; - options->chroot_directory = NULL; -+#ifdef WITH_LDAP_PUBKEY -+ /* XXX dirty */ -+ options->lpk.ld = NULL; -+ options->lpk.on = -1; -+ options->lpk.servers = NULL; -+ options->lpk.u_basedn = NULL; -+ options->lpk.g_basedn = NULL; -+ options->lpk.binddn = NULL; -+ options->lpk.bindpw = NULL; -+ options->lpk.sgroup = NULL; -+ options->lpk.filter = NULL; -+ options->lpk.fgroup = NULL; -+ options->lpk.l_conf = NULL; -+ options->lpk.tls = -1; -+ options->lpk.b_timeout.tv_sec = -1; -+ options->lpk.s_timeout.tv_sec = -1; -+ options->lpk.flags = FLAG_EMPTY; -+#endif - } - - void -@@ -250,6 +272,32 @@ - options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS; - if (options->permit_tun == -1) - options->permit_tun = SSH_TUNMODE_NO; -+#ifdef WITH_LDAP_PUBKEY -+ if (options->lpk.on == -1) -+ options->lpk.on = _DEFAULT_LPK_ON; -+ if (options->lpk.servers == NULL) -+ options->lpk.servers = _DEFAULT_LPK_SERVERS; -+ if (options->lpk.u_basedn == NULL) -+ options->lpk.u_basedn = _DEFAULT_LPK_UDN; -+ if (options->lpk.g_basedn == NULL) -+ options->lpk.g_basedn = _DEFAULT_LPK_GDN; -+ if (options->lpk.binddn == NULL) -+ options->lpk.binddn = _DEFAULT_LPK_BINDDN; -+ if (options->lpk.bindpw == NULL) -+ options->lpk.bindpw = _DEFAULT_LPK_BINDPW; -+ if (options->lpk.sgroup == NULL) -+ options->lpk.sgroup = _DEFAULT_LPK_SGROUP; -+ if (options->lpk.filter == NULL) -+ options->lpk.filter = _DEFAULT_LPK_FILTER; -+ if (options->lpk.tls == -1) -+ options->lpk.tls = _DEFAULT_LPK_TLS; -+ if (options->lpk.b_timeout.tv_sec == -1) -+ options->lpk.b_timeout.tv_sec = _DEFAULT_LPK_BTIMEOUT; -+ if (options->lpk.s_timeout.tv_sec == -1) -+ options->lpk.s_timeout.tv_sec = _DEFAULT_LPK_STIMEOUT; -+ if (options->lpk.l_conf == NULL) -+ options->lpk.l_conf = _DEFAULT_LPK_LDP; -+#endif - - /* Turn privilege separation on by default */ - if (use_privsep == -1) -@@ -295,6 +343,12 @@ - sMatch, sPermitOpen, sForceCommand, sChrootDirectory, - sUsePrivilegeSeparation, - sDeprecated, sUnsupported -+#ifdef WITH_LDAP_PUBKEY -+ ,sLdapPublickey, sLdapServers, sLdapUserDN -+ ,sLdapGroupDN, sBindDN, sBindPw, sMyGroup -+ ,sLdapFilter, sForceTLS, sBindTimeout -+ ,sSearchTimeout, sLdapConf -+#endif - } ServerOpCodes; - - #define SSHCFG_GLOBAL 0x01 /* allowed in main section of sshd_config */ -@@ -398,6 +452,20 @@ - { "clientalivecountmax", sClientAliveCountMax, SSHCFG_GLOBAL }, - { "authorizedkeysfile", sAuthorizedKeysFile, SSHCFG_GLOBAL }, - { "authorizedkeysfile2", sAuthorizedKeysFile2, SSHCFG_GLOBAL }, -+#ifdef WITH_LDAP_PUBKEY -+ { _DEFAULT_LPK_TOKEN, sLdapPublickey, SSHCFG_GLOBAL }, -+ { _DEFAULT_SRV_TOKEN, sLdapServers, SSHCFG_GLOBAL }, -+ { _DEFAULT_USR_TOKEN, sLdapUserDN, SSHCFG_GLOBAL }, -+ { _DEFAULT_GRP_TOKEN, sLdapGroupDN, SSHCFG_GLOBAL }, -+ { _DEFAULT_BDN_TOKEN, sBindDN, SSHCFG_GLOBAL }, -+ { _DEFAULT_BPW_TOKEN, sBindPw, SSHCFG_GLOBAL }, -+ { _DEFAULT_MYG_TOKEN, sMyGroup, SSHCFG_GLOBAL }, -+ { _DEFAULT_FIL_TOKEN, sLdapFilter, SSHCFG_GLOBAL }, -+ { _DEFAULT_TLS_TOKEN, sForceTLS, SSHCFG_GLOBAL }, -+ { _DEFAULT_BTI_TOKEN, sBindTimeout, SSHCFG_GLOBAL }, -+ { _DEFAULT_STI_TOKEN, sSearchTimeout, SSHCFG_GLOBAL }, -+ { _DEFAULT_LDP_TOKEN, sLdapConf, SSHCFG_GLOBAL }, -+#endif - { "useprivilegeseparation", sUsePrivilegeSeparation, SSHCFG_GLOBAL }, - { "acceptenv", sAcceptEnv, SSHCFG_GLOBAL }, - { "permittunnel", sPermitTunnel, SSHCFG_GLOBAL }, -@@ -1282,6 +1350,107 @@ - while (arg) - arg = strdelim(&cp); - break; -+#ifdef WITH_LDAP_PUBKEY -+ case sLdapPublickey: -+ intptr = &options->lpk.on; -+ goto parse_flag; -+ case sLdapServers: -+ /* arg = strdelim(&cp); */ -+ p = line; -+ while(*p++); -+ arg = p; -+ if (!arg || *arg == '\0') -+ fatal("%s line %d: missing ldap server",filename,linenum); -+ arg[strlen(arg)] = '\0'; -+ if ((options->lpk.servers = ldap_parse_servers(arg)) == NULL) -+ fatal("%s line %d: error in ldap servers", filename, linenum); -+ memset(arg,0,strlen(arg)); -+ break; -+ case sLdapUserDN: -+ arg = cp; -+ if (!arg || *arg == '\0') -+ fatal("%s line %d: missing ldap server",filename,linenum); -+ arg[strlen(arg)] = '\0'; -+ options->lpk.u_basedn = xstrdup(arg); -+ memset(arg,0,strlen(arg)); -+ break; -+ case sLdapGroupDN: -+ arg = cp; -+ if (!arg || *arg == '\0') -+ fatal("%s line %d: missing ldap server",filename,linenum); -+ arg[strlen(arg)] = '\0'; -+ options->lpk.g_basedn = xstrdup(arg); -+ memset(arg,0,strlen(arg)); -+ break; -+ case sBindDN: -+ arg = cp; -+ if (!arg || *arg == '\0') -+ fatal("%s line %d: missing binddn",filename,linenum); -+ arg[strlen(arg)] = '\0'; -+ options->lpk.binddn = xstrdup(arg); -+ memset(arg,0,strlen(arg)); -+ break; -+ case sBindPw: -+ arg = cp; -+ if (!arg || *arg == '\0') -+ fatal("%s line %d: missing bindpw",filename,linenum); -+ arg[strlen(arg)] = '\0'; -+ options->lpk.bindpw = xstrdup(arg); -+ memset(arg,0,strlen(arg)); -+ break; -+ case sMyGroup: -+ arg = cp; -+ if (!arg || *arg == '\0') -+ fatal("%s line %d: missing groupname",filename, linenum); -+ arg[strlen(arg)] = '\0'; -+ options->lpk.sgroup = xstrdup(arg); -+ if (options->lpk.sgroup) -+ options->lpk.fgroup = ldap_parse_groups(options->lpk.sgroup); -+ memset(arg,0,strlen(arg)); -+ break; -+ case sLdapFilter: -+ arg = cp; -+ if (!arg || *arg == '\0') -+ fatal("%s line %d: missing filter",filename, linenum); -+ arg[strlen(arg)] = '\0'; -+ options->lpk.filter = xstrdup(arg); -+ memset(arg,0,strlen(arg)); -+ break; -+ case sForceTLS: -+ intptr = &options->lpk.tls; -+ arg = strdelim(&cp); -+ if (!arg || *arg == '\0') -+ fatal("%s line %d: missing yes/no argument.", -+ filename, linenum); -+ value = 0; /* silence compiler */ -+ if (strcmp(arg, "yes") == 0) -+ value = 1; -+ else if (strcmp(arg, "no") == 0) -+ value = 0; -+ else if (strcmp(arg, "try") == 0) -+ value = -1; -+ else -+ fatal("%s line %d: Bad yes/no argument: %s", -+ filename, linenum, arg); -+ if (*intptr == -1) -+ *intptr = value; -+ break; -+ case sBindTimeout: -+ intptr = (int *) &options->lpk.b_timeout.tv_sec; -+ goto parse_int; -+ case sSearchTimeout: -+ intptr = (int *) &options->lpk.s_timeout.tv_sec; -+ goto parse_int; -+ break; -+ case sLdapConf: -+ arg = cp; -+ if (!arg || *arg == '\0') -+ fatal("%s line %d: missing LpkLdapConf", filename, linenum); -+ arg[strlen(arg)] = '\0'; -+ options->lpk.l_conf = xstrdup(arg); -+ memset(arg, 0, strlen(arg)); -+ break; -+#endif - - default: - fatal("%s line %d: Missing handler for opcode %s (%d)", ---- servconf.h.orig 2008-03-07 04:31:24.000000000 -0300 -+++ servconf.h 2008-04-17 21:24:57.000000000 -0300 -@@ -16,6 +16,10 @@ - #ifndef SERVCONF_H - #define SERVCONF_H - -+#ifdef WITH_LDAP_PUBKEY -+#include "ldapauth.h" -+#endif -+ - #define MAX_PORTS 256 /* Max # ports. */ - - #define MAX_ALLOW_USERS 256 /* Max # users on allow list. */ -@@ -142,6 +146,9 @@ - int use_pam; /* Enable auth via PAM */ - - int permit_tun; -+#ifdef WITH_LDAP_PUBKEY -+ ldap_opt_t lpk; -+#endif - - int num_permitted_opens; - --- sshd.c.orig 2008-03-11 08:58:25.000000000 -0300 +++ sshd.c 2008-04-17 21:24:57.000000000 -0300 @@ -126,6 +126,10 @@ @@ -1864,3 +1628,26 @@ # override default of no subsystems Subsystem sftp /usr/libexec/sftp-server +--- servconf.h.orig 2008-03-07 04:31:24.000000000 -0300 ++++ servconf.h 2008-04-17 21:24:57.000000000 -0300 +@@ -16,6 +16,10 @@ + #ifndef SERVCONF_H + #define SERVCONF_H + ++#ifdef WITH_LDAP_PUBKEY ++#include "ldapauth.h" ++#endif ++ + #define MAX_PORTS 256 /* Max # ports. */ + + #define MAX_ALLOW_USERS 256 /* Max # users on allow list. */ +@@ -142,6 +146,9 @@ + int use_pam; /* Enable auth via PAM */ + + int permit_tun; ++#ifdef WITH_LDAP_PUBKEY ++ ldap_opt_t lpk; ++#endif + + int num_permitted_opens; + >Release-Note: >Audit-Trail: >Unformatted: From leeym at FreeBSD.org Sat May 2 17:40:03 2009 From: leeym at FreeBSD.org (Yen-Ming Lee) Date: Sat May 2 17:40:09 2009 Subject: ports/134161: [PATCH] misc/p5-Locale-Geocode: update to 1.2 Message-ID: <200905021737.n42Hb6nW007428@cn1.leeym.com> >Number: 134161 >Category: ports >Synopsis: [PATCH] misc/p5-Locale-Geocode: update to 1.2 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat May 02 17:40:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 7.0-RELEASE i386 >Organization: >Environment: System: FreeBSD cn1.leeym.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 >Description: - Update to 1.2 Port maintainer (chinsan@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-Locale-Geocode-1.20.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/misc/p5-Locale-Geocode/Makefile,v retrieving revision 1.1 diff -u -d -b -w -u -r1.1 Makefile --- Makefile 31 Aug 2008 15:39:38 -0000 1.1 +++ Makefile 2 May 2009 17:36:51 -0000 @@ -6,18 +6,18 @@ # PORTNAME= Locale-Geocode -PORTVERSION= 1.11 +PORTVERSION= 1.20 CATEGORIES= misc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- +DISTNAME= ${PORTNAME}-${PORTVERSION:C/0$//} MAINTAINER= chinsan@FreeBSD.org COMMENT= Find codes and information on geographical location -BUILD_DEPENDS= p5-Test-Pod>=0:${PORTSDIR}/devel/p5-Test-Pod \ - p5-XML-SAX-Expat>=0:${PORTSDIR}/textproc/p5-XML-SAX-Expat \ - p5-XML-Simple>=0:${PORTSDIR}/textproc/p5-XML-Simple -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= p5-XML-SAX-Expat>=0.39:${PORTSDIR}/textproc/p5-XML-SAX-Expat \ + p5-XML-Simple>=2.16:${PORTSDIR}/textproc/p5-XML-Simple +BUILD_DEPENDS= ${RUN_DEPENDS} PERL_CONFIGURE= YES Index: distinfo =================================================================== RCS file: /home/pcvs/ports/misc/p5-Locale-Geocode/distinfo,v retrieving revision 1.1 diff -u -d -b -w -u -r1.1 distinfo --- distinfo 31 Aug 2008 15:39:38 -0000 1.1 +++ distinfo 2 May 2009 17:36:51 -0000 @@ -1,3 +1,3 @@ -MD5 (Locale-Geocode-1.11.tar.gz) = 43c9d3523c3263b6329c9933175f70d3 -SHA256 (Locale-Geocode-1.11.tar.gz) = f54f6a1ad1031686a15036030eb6796674ae5d6bccb9f45b3bfabe3f8fb05955 -SIZE (Locale-Geocode-1.11.tar.gz) = 72960 +MD5 (Locale-Geocode-1.2.tar.gz) = f8f198ae8e816fe85c85f23172c054fc +SHA256 (Locale-Geocode-1.2.tar.gz) = 41ff6e4daa58e720ec2c97f9fd0395020de6cd4a494a2fc9a072b2471056020e +SIZE (Locale-Geocode-1.2.tar.gz) = 73456 --- p5-Locale-Geocode-1.20.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat May 2 17:40:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat May 2 17:40:28 2009 Subject: ports/134161: [PATCH] misc/p5-Locale-Geocode: update to 1.2 Message-ID: <200905021740.n42HeD77001256@freefall.freebsd.org> Synopsis: [PATCH] misc/p5-Locale-Geocode: update to 1.2 Responsible-Changed-From-To: freebsd-ports-bugs->chinsan Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 2 17:40:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134161 From scheidell at secnap.net Sat May 2 18:50:06 2009 From: scheidell at secnap.net (Michael Scheidell) Date: Sat May 2 18:50:13 2009 Subject: ports/134163: security/amavisd-new upgrade to 2.6.3 Message-ID: <200905021846.n42IkRJs096261@www.freebsd.org> >Number: 134163 >Category: ports >Synopsis: security/amavisd-new upgrade to 2.6.3 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat May 02 18:50:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Michael Scheidell >Release: 6.4/7.1 >Organization: SECNAP Network Security >Environment: running in 6.4 i386, 6.4 amd64 and 7.1 i386. >Description: amavisd-new 2.6.3 is a maintenance update, but adds a new feature needed to block spammers who send in LARGE spams. (over the default threshold) 2.6.2 would just ignore it, giving spammers a free ride if they just included a big png or image. this take the first (up to threshold) email and sends it to score anyway. a couple minor new features, users should read the README in /usr/local/share/docs/amavisd-new after installation. >How-To-Repeat: send spam > threshold. >Fix: don't need this file anymore: included in 2.6.3. (nothing else seems to be needed, just distinfo patches) files/patch-amavisd diff -bBru /var/tmp/ama262/ ./ diff -bBru /var/tmp/ama262/Makefile ./Makefile --- /var/tmp/ama262/Makefile 2009-04-05 13:49:18.000000000 -0400 +++ ./Makefile 2009-05-01 09:19:23.000000000 -0400 @@ -7,9 +7,8 @@ # Based on amavisd ports makefile. PORTNAME= amavisd-new -PORTVERSION= 2.6.2 +PORTVERSION= 2.6.3 PORTEPOCH= 1 -PORTREVISION= 3 CATEGORIES= security MASTER_SITES= http://www.ijs.si/software/amavisd/ \ http://mirrors.catpipe.net/amavisd-new/ \ diff -bBru /var/tmp/ama262/distinfo ./distinfo --- /var/tmp/ama262/distinfo 2008-12-25 21:29:00.000000000 -0500 +++ ./distinfo 2009-05-01 09:21:30.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (amavisd-new-2.6.2.tar.gz) = 0b3b0ef8771af8e4a950e7381d42adbd -SHA256 (amavisd-new-2.6.2.tar.gz) = bf5a04617081a210917809f7eb640f3112f030e772adcba66952174b37423517 -SIZE (amavisd-new-2.6.2.tar.gz) = 903818 +MD5 (amavisd-new-2.6.3.tar.gz) = 02b0bd38b40258841c60479603dc6842 +SHA256 (amavisd-new-2.6.3.tar.gz) = 47e774579fdab1e1c10ef2295d49cb511b13e05431a7955c73f07e98025d788e +SIZE (amavisd-new-2.6.3.tar.gz) = 918888 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat May 2 18:50:16 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat May 2 18:50:23 2009 Subject: ports/134163: security/amavisd-new upgrade to 2.6.3 Message-ID: <200905021850.n42IoG1N094748@freefall.freebsd.org> Synopsis: security/amavisd-new upgrade to 2.6.3 Responsible-Changed-From-To: freebsd-ports-bugs->gabor Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 2 18:50:15 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134163 From mark at mkproductions.org Sat May 2 20:30:02 2009 From: mark at mkproductions.org (Mark Kane) Date: Sat May 2 20:30:08 2009 Subject: ports/134164: Update Port: deskutils/glabels to 2.2.5 to make usable with GTK 2.16 Message-ID: <1241294865.15596@amd645200.localhost> >Number: 134164 >Category: ports >Synopsis: Update Port: deskutils/glabels to 2.2.5 to make usable with GTK 2.16 >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 May 02 20:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mark Kane >Release: FreeBSD 7.2-PRERELEASE amd64 >Organization: MKProductions >Environment: System: FreeBSD 7.2-PRERELEASE #20: Tue Apr 21 18:52:13 CDT 2009 mixx941@amd645200.localhost:/usr/obj/usr/src/sys/AMD645200 >Description: Hi. This patch updates deskutils/glabels to the latest stable version (2.2.5) as previous versions do not work properly with GTK 2.16. Thanks, -Mark >How-To-Repeat: >Fix: --- glabels_2.2.5.patch begins here --- diff -ruN glabels.orig/Makefile glabels/Makefile --- glabels.orig/Makefile 2008-08-24 16:04:12.000000000 -0500 +++ glabels/Makefile 2009-05-02 10:50:15.000000000 -0500 @@ -7,7 +7,7 @@ # PORTNAME= glabels -PORTVERSION= 2.2.3 +PORTVERSION= 2.2.5 CATEGORIES= deskutils MASTER_SITES= SF diff -ruN glabels.orig/distinfo glabels/distinfo --- glabels.orig/distinfo 2008-08-24 16:04:12.000000000 -0500 +++ glabels/distinfo 2009-05-02 10:50:28.000000000 -0500 @@ -1,3 +1,3 @@ -MD5 (glabels-2.2.3.tar.gz) = fa2cb3669950fdfe2250dc0ce52ac4d2 -SHA256 (glabels-2.2.3.tar.gz) = bceabfdc60b061d158c7d694a0886d9b721ceda0d33816bfc010eaf05b24acb7 -SIZE (glabels-2.2.3.tar.gz) = 2018981 +MD5 (glabels-2.2.5.tar.gz) = a98932cce677f72af8cba2add00adfe3 +SHA256 (glabels-2.2.5.tar.gz) = 9b9a1ce1262de99a12cc2a07bf89840fd3b950778e3269ae0d30e14ce58d91bc +SIZE (glabels-2.2.5.tar.gz) = 2043669 --- glabels_2.2.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat May 2 20:30:14 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat May 2 20:30:29 2009 Subject: ports/134164: Update Port: deskutils/glabels to 2.2.5 to make usable with GTK 2.16 Message-ID: <200905022030.n42KUCrL028149@freefall.freebsd.org> Synopsis: Update Port: deskutils/glabels to 2.2.5 to make usable with GTK 2.16 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 2 20:30:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134164 From miwi at FreeBSD.org Sat May 2 20:50:02 2009 From: miwi at FreeBSD.org (Martin Wilke) Date: Sat May 2 20:50:34 2009 Subject: ports/134165: [PATCH] net-im/ttytter: update to 0.9.5 Message-ID: <20090502204344.D0BD665BF7@miwi.homeunix.com> >Number: 134165 >Category: ports >Synopsis: [PATCH] net-im/ttytter: update to 0.9.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sat May 02 20:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Martin Wilke >Release: FreeBSD 8.0-CURRENT i386 >Organization: >Environment: System: FreeBSD miwi.homeunix.com 8.0-CURRENT FreeBSD 8.0-CURRENT #16: Sun Apr 19 20:56:17 CEST 2009 >Description: - Update to 0.9.5 Port maintainer (jdunn@aquezada.com) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- ttytter-0.9.5.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net-im/ttytter/Makefile,v retrieving revision 1.1 diff -u -u -r1.1 Makefile --- Makefile 22 Mar 2009 15:03:57 -0000 1.1 +++ Makefile 2 May 2009 20:41:28 -0000 @@ -5,7 +5,7 @@ # $FreeBSD: ports/net-im/ttytter/Makefile,v 1.1 2009/03/22 15:03:57 miwi Exp $ PORTNAME= ttytter -PORTVERSION= 0.9.4 +PORTVERSION= 0.9.5 CATEGORIES= net-im MASTER_SITES= http://www.floodgap.com/software/ttytter/ DISTFILES= ${PORTNAME}.txt --- ttytter-0.9.5.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat May 2 20:50:38 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat May 2 20:50:44 2009 Subject: ports/134165: [PATCH] net-im/ttytter: update to 0.9.5 Message-ID: <200905022050.n42Kobf3057917@freefall.freebsd.org> Synopsis: [PATCH] net-im/ttytter: update to 0.9.5 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 2 20:50:37 UTC 2009 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134165 From leeym at FreeBSD.org Sat May 2 21:10:01 2009 From: leeym at FreeBSD.org (Yen-Ming Lee) Date: Sat May 2 21:10:08 2009 Subject: ports/134166: [PATCH] devel/p5-prefork: update to 1.03 Message-ID: <200905022100.n42L0pCk015978@cn1.leeym.com> >Number: 134166 >Category: ports >Synopsis: [PATCH] devel/p5-prefork: update to 1.03 >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 May 02 21:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 7.0-RELEASE i386 >Organization: >Environment: System: FreeBSD cn1.leeym.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 >Description: - Update to 1.03 Port maintainer (skv@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-prefork-1.03.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/p5-prefork/Makefile,v retrieving revision 1.6 diff -u -d -b -w -u -r1.6 Makefile --- Makefile 17 Apr 2008 14:26:28 -0000 1.6 +++ Makefile 2 May 2009 21:00:47 -0000 @@ -6,7 +6,7 @@ # PORTNAME= prefork -PORTVERSION= 1.02 +PORTVERSION= 1.03 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= ../../authors/id/A/AD/ADAMK @@ -15,14 +15,20 @@ MAINTAINER= skv@FreeBSD.org COMMENT= Optimize module loading across forking and non-forking scenarios -BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Scalar/Util.pm:${PORTSDIR}/lang/p5-Scalar-List-Utils -RUN_DEPENDS= ${BUILD_DEPENDS} - PERL_CONFIGURE= yes MAN3= prefork.3 +.include + +.if ${PERL_LEVEL} < 500800 + +BUILD_DEPENDS+= p5-Scalar-List-Utils>=1.10:${PORTSDIR}/lang/p5-Scalar-List-Utils +RUN_DEPENDS+= p5-Scalar-List-Utils>=1.10:${PORTSDIR}/lang/p5-Scalar-List-Utils + post-patch: - @${PERL} -pi -e 's/^auto_install.*$$//' ${WRKSRC}/Makefile.PL + ${REINPLACE_CMD} -e '/Config_heavy/d' ${WRKSRC}/lib/prefork.pm + ${RM} ${WRKSRC}/lib/prefork.pm.bak +.endif -.include +.include Index: distinfo =================================================================== RCS file: /home/pcvs/ports/devel/p5-prefork/distinfo,v retrieving revision 1.6 diff -u -d -b -w -u -r1.6 distinfo --- distinfo 7 Feb 2008 14:50:13 -0000 1.6 +++ distinfo 2 May 2009 21:00:47 -0000 @@ -1,3 +1,3 @@ -MD5 (prefork-1.02.tar.gz) = 3dccdbbb32439aa07a8d87eb217f0011 -SHA256 (prefork-1.02.tar.gz) = adac5ac82349207d3a0b561ef36ddd03b4a18fedcc8c97972453d81afdf43452 -SIZE (prefork-1.02.tar.gz) = 25175 +MD5 (prefork-1.03.tar.gz) = 8d0ca2f8b4a6d0c7489a5bd8101899b4 +SHA256 (prefork-1.03.tar.gz) = 6d2273a11d0cb463062d573cece0e57b8b28fee76855757d797a9c5943e574ea +SIZE (prefork-1.03.tar.gz) = 28790 --- p5-prefork-1.03.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sat May 2 21:10:14 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sat May 2 21:10:23 2009 Subject: ports/134166: [PATCH] devel/p5-prefork: update to 1.03 Message-ID: <200905022110.n42LAETB081762@freefall.freebsd.org> Synopsis: [PATCH] devel/p5-prefork: update to 1.03 Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: edwin Responsible-Changed-When: Sat May 2 21:10:13 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134166 From linimon at FreeBSD.org Sat May 2 21:47:23 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat May 2 21:48:20 2009 Subject: java/134098: java/diablo-jdk15: random core drops Message-ID: <200905022147.n42LlNl0035388@freefall.freebsd.org> Old Synopsis: diablo jdk 1.5 Random Core Drops New Synopsis: java/diablo-jdk15: random core drops Responsible-Changed-From-To: freebsd-ports-bugs->glewis Responsible-Changed-By: linimon Responsible-Changed-When: Sat May 2 21:46:08 UTC 2009 Responsible-Changed-Why: Assign, but note that this version of FreeBSD is no longer supported. http://www.freebsd.org/cgi/query-pr.cgi?pr=134098 From martin.mato at wanadoo.fr Sat May 2 21:50:02 2009 From: martin.mato at wanadoo.fr (Martin MATO) Date: Sat May 2 21:50:08 2009 Subject: ports/134170: wrong size and checksums for the two packages fwbuilder and libfwbuilder Message-ID: <200905022148.n42LmfCB031085@www.freebsd.org> >Number: 134170 >Category: ports >Synopsis: wrong size and checksums for the two packages fwbuilder and libfwbuilder >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: Sat May 02 21:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Martin MATO >Release: i386 7.2-PRERELEASE >Organization: >Environment: FreeBSD mugiwara.humanidyne.net 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #1: Thu Apr 30 20:19:59 CEST 2009 root@mugiwara.humanidyne.net:/usr/obj/usr/src/sys/MUGIWARA i386 >Description: The distinfo file is wrong about size and checksums for the two source packages libfwbuilder-3.0.4.tar.gz fwbuilder-3.0.4.tar.gz #MD5 (libfwbuilder-3.0.4.tar.gz) = 4bb397a6e2f59a60ed984c49a10f09eb #SHA256 (libfwbuilder-3.0.4.tar.gz) = a25640fa497360be6f7d8018ebe7a13ccd86bc60f7 4386d2ae921ce42009caac #SIZE (libfwbuilder-3.0.4.tar.gz) = 543238 #MD5 (fwbuilder-3.0.4.tar.gz) = 42e02911087bff4929941f16ba0989bb #SHA256 (fwbuilder-3.0.4.tar.gz) = 11c8787f35c1f55d94a97344e75f09db603726d7ff96b 6b0b6ada18152b79790 #SIZE (fwbuilder-3.0.4.tar.gz) = 2378220 >How-To-Repeat: Trying to upgrade from previous versions conducts to a fetch error from all mirrors: fetch: http://easynews.dl.sourceforge.net/sourceforge/fwbuilder/libfwbuilder-3.0.4.tar.gz: size mismatch: expected 543238, actual 543824 fetch: http://ufpr.dl.sourceforge.net/sourceforge/fwbuilder/fwbuilder-3.0.4.tar.gz: size mismatch: expected 2378220, actual 2383070 >Fix: replacing file size and checksums with the correct ones solve the problems MD5 (libfwbuilder-3.0.4.tar.gz) = c4d23b9b72c9d2272ab1a41e2bc86903 SHA256 (libfwbuilder-3.0.4.tar.gz) = ce81e864cc5c9f4d30bf48292cc8b267c42356a87b3eda486dfbd1152679d4db SIZE (libfwbuilder-3.0.4.tar.gz) = 543824 MD5 (fwbuilder-3.0.4.tar.gz) = a53ad035511e6a8a6b4b89e6eacf4485 SHA256 (fwbuilder-3.0.4.tar.gz) = 4cbfc786e2c69b36aa788fb55e19050b1b7e7119ae8178 d6528475e1cc9b058c SIZE (fwbuilder-3.0.4.tar.gz) = 2383070 with theses , the ports successfully upgrades on my box. >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Sat May 2 21:50:20 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat May 2 21:50:27 2009 Subject: ports/134118: devel/glade3: gtk_tree_view_set_enable_tree_lines() causes X errors Message-ID: <200905022150.n42LoJtl037779@freefall.freebsd.org> Old Synopsis: gtk_tree_view_set_enable_tree_lines() causes X errors New Synopsis: devel/glade3: gtk_tree_view_set_enable_tree_lines() causes X errors Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: linimon Responsible-Changed-When: Sat May 2 21:49:40 UTC 2009 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=134118 From linimon at FreeBSD.org Sat May 2 21:51:58 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat May 2 21:52:10 2009 Subject: ports/134132: x11-servers/xorg-server: Intel i845 - xorg.conf with UXA - error: [drm:pid1104:i915_irq_emit] *ERROR* i915_irq_emit called without lock held Message-ID: <200905022151.n42Lpwhi048340@freefall.freebsd.org> Old Synopsis: [video] Intel i845 - xorg.conf with UXA - error: [drm:pid1104:i915_irq_emit] *ERROR* i915_irq_emit called without lock held New Synopsis: x11-servers/xorg-server: Intel i845 - xorg.conf with UXA - error: [drm:pid1104:i915_irq_emit] *ERROR* i915_irq_emit called without lock held Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: linimon Responsible-Changed-When: Sat May 2 21:50:46 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=134132 From linimon at FreeBSD.org Sat May 2 21:55:16 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat May 2 21:55:24 2009 Subject: ports/134170: wrong size and checksums for security/fwbuilder and security/libfwbuilder Message-ID: <200905022155.n42LtFLB048568@freefall.freebsd.org> Old Synopsis: wrong size and checksums for the two packages fwbuilder and libfwbuilder New Synopsis: wrong size and checksums for security/fwbuilder and security/libfwbuilder Responsible-Changed-From-To: freebsd-ports-bugs->cy Responsible-Changed-By: linimon Responsible-Changed-When: Sat May 2 21:54:25 UTC 2009 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=134170 From linimon at FreeBSD.org Sat May 2 21:58:55 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sat May 2 21:59:01 2009 Subject: ports/133988: Neither print/acroread8 nor print/acroread9 work on a scratch install of 7.1-RELEASE Message-ID: <200905022158.n42LwsXW048843@freefall.freebsd.org> Old Synopsis: Neither acroread8 nor acroread9 ports work on a scratch install of 7.1-RELEASE New Synopsis: Neither print/acroread8 nor print/acroread9 work on a scratch install of 7.1-RELEASE Responsible-Changed-From-To: freebsd-ports-bugs->hrs Responsible-Changed-By: linimon Responsible-Changed-When: Sat May 2 21:58:14 UTC 2009 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=133988 From corky1951 at comcast.net Sat May 2 22:00:07 2009 From: corky1951 at comcast.net (Charlie Kester) Date: Sat May 2 22:00:14 2009 Subject: ports/134171: [maintainer update] update sysutils/ncdu to 1.5 Message-ID: <20090502213736.GG15239@comcast.net> >Number: 134171 >Category: ports >Synopsis: [maintainer update] update sysutils/ncdu to 1.5 >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 May 02 22:00:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Charlie Kester >Release: FreeBSD 7.1-RELEASE-p2 i386 >Organization: >Environment: System: FreeBSD atom.local 7.1-RELEASE-p2 FreeBSD 7.1-RELEASE-p2 #0: Thu Jan 29 21:26:09 PST 2009 root@atom.local:/usr/obj/usr/src/sys/ATOM i386 >Description: Update sysutils/ncdu to version 1.5 >How-To-Repeat: >Fix: See attached diffs for port Makefile and distinfo --d6Gm4EdcadzBjdND Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="Makefile.diff" 9c9 < PORTVERSION= 1.4 --- > PORTVERSION= 1.5 --d6Gm4EdcadzBjdND Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="distinfo.diff" 1,3c1,3 < MD5 (ncdu-1.4.tar.gz) = 07f01579f7c9852033139ae9fa2414c9 < SHA256 (ncdu-1.4.tar.gz) = cb1bdd4835d3e80854f19722e0bf1458097d966a9f10da8f88c873ca94a23616 < SIZE (ncdu-1.4.tar.gz) = 97844 --- > MD5 (ncdu-1.5.tar.gz) = 90a69cc3b2e9f0324eb14e6ce1df0f22 > SHA256 (ncdu-1.5.tar.gz) = f63292b80d0eae4968624eade660bb42c3180890d7ca887a5470f3d75bae8e08 > SIZE (ncdu-1.5.tar.gz) = 99040 --d6Gm4EdcadzBjdND-- >Release-Note: >Audit-Trail: >Unformatted: --d6Gm4EdcadzBjdND Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline From yamajun at ofug.net Sun May 3 00:40:03 2009 From: yamajun at ofug.net (YAMASHIRO Jun) Date: Sun May 3 00:40:10 2009 Subject: ports/134172: Update japanese/vlgothic to VLGothic-20090422 Message-ID: <200905030036.n430a4BR056862@www.freebsd.org> >Number: 134172 >Category: ports >Synopsis: Update japanese/vlgothic to VLGothic-20090422 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun May 03 00:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: YAMASHIRO Jun >Release: FreeBSD 8.0-CURRENT >Organization: Okinawa FreeBSD Users Group >Environment: FreeBSD 8.0-CURRENT FreeBSD 8.0-CURRENT #37: Sat Apr 25 18:42:20 JST 2009 yamajun@:/usr/obj/usr/src/sys/DTRACE i386 >Description: Changelog: * Fix GSUB vert table for vertical glyph * Add one glyph. http://sourceforge.jp/projects/vlgothic/releases/38942/changelog (in Japanese) >How-To-Repeat: Display Japanese test contain full-width comma, period, or hyphen as a vertical format. Example of vertical format: OpenOffice.org Writer with "Text-direction: Right-to-Left(vertical)" mode. >Fix: Apply patch to ports/japanese/vlgothic Patch attached with submission follows: diff -ru vlgothic.orig/Makefile vlgothic/Makefile --- vlgothic.orig/Makefile 2009-05-02 23:42:29.000000000 +0900 +++ vlgothic/Makefile 2009-05-02 23:45:04.000000000 +0900 @@ -6,10 +6,10 @@ # PORTNAME= vlgothic -PORTVERSION= 20090204 +PORTVERSION= 20090422 CATEGORIES= japanese x11-fonts MASTER_SITES= SFJP -MASTER_SITE_SUBDIR= vlgothic/37455 +MASTER_SITE_SUBDIR= vlgothic/38942 DISTNAME= VLGothic-${PORTVERSION} MAINTAINER= hrs@FreeBSD.org diff -ru vlgothic.orig/distinfo vlgothic/distinfo --- vlgothic.orig/distinfo 2009-05-02 23:42:29.000000000 +0900 +++ vlgothic/distinfo 2009-05-02 23:46:28.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (VLGothic-20090204.tar.bz2) = 54298db27daf7b3ec92aff5cfab72f02 -SHA256 (VLGothic-20090204.tar.bz2) = 6e1adb064ef968f0d60e3a4934d1fdf05c37579ecb138e1876b1af1fefb62aec -SIZE (VLGothic-20090204.tar.bz2) = 4662317 +MD5 (VLGothic-20090422.tar.bz2) = dcc9a788a47554344a47926211208473 +SHA256 (VLGothic-20090422.tar.bz2) = 3b61dfc15875626edb258574826de469753138ad1448bbb5fe6b9efe61433aa5 +SIZE (VLGothic-20090422.tar.bz2) = 4728873 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sun May 3 00:40:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun May 3 00:40:21 2009 Subject: ports/134172: Update japanese/vlgothic to VLGothic-20090422 Message-ID: <200905030040.n430eD2E066501@freefall.freebsd.org> Synopsis: Update japanese/vlgothic to VLGothic-20090422 Responsible-Changed-From-To: freebsd-ports-bugs->hrs Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 3 00:40:13 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134172 From rnejdl at ringofsaturn.com Sun May 3 02:20:01 2009 From: rnejdl at ringofsaturn.com (Rusty Nejdl) Date: Sun May 3 02:20:07 2009 Subject: ports/134173: Upgrade Mozplugger to 1.12.1 Message-ID: <200905030201.n4321HnM074396@tethys.ringofsaturn.com> >Number: 134173 >Category: ports >Synopsis: Upgrade Mozplugger to 1.12.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun May 03 02:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Rusty Nejdl >Release: FreeBSD 7.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD tethys.ringofsaturn.com 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Sun Apr 26 09:16:54 CDT 2009 root@tethys.ringofsaturn.com:/usr/obj/usr/src/sys/SATURN i386 >Description: Apply the patch to upgrade the port >How-To-Repeat: >Fix: Apply the patch to upgrade the port --- mozplugger.patch begins here --- diff -ur mozplugger/Makefile mozplugger.new/Makefile --- mozplugger/Makefile 2009-01-28 18:52:14.000000000 -0600 +++ mozplugger.new/Makefile 2009-05-02 20:53:27.000000000 -0500 @@ -6,7 +6,7 @@ # PORTNAME= mozplugger -PORTVERSION= 1.12.0 +PORTVERSION= 1.12.1 CATEGORIES= www MASTER_SITES= http://mozplugger.mozdev.org/files/ diff -ur mozplugger/distinfo mozplugger.new/distinfo --- mozplugger/distinfo 2009-01-28 18:52:14.000000000 -0600 +++ mozplugger.new/distinfo 2009-05-02 20:56:07.000000000 -0500 @@ -1,3 +1,3 @@ -MD5 (mozplugger-1.12.0.tar.gz) = 6d4dd7b1c577f625c9d664532389d6db -SHA256 (mozplugger-1.12.0.tar.gz) = 1312aad8078dcda7f8ec8e9d756786034420406bf1658066d60392bdaa7befee -SIZE (mozplugger-1.12.0.tar.gz) = 95073 +MD5 (mozplugger-1.12.1.tar.gz) = 30010bc1028a90aa1a87a39f8c7a5910 +SHA256 (mozplugger-1.12.1.tar.gz) = 97fa713033f0d31c36800c5d850dbf3e4ae95816b40edf8fe71122b773c1c646 +SIZE (mozplugger-1.12.1.tar.gz) = 86874 --- mozplugger.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Sun May 3 02:22:20 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun May 3 02:22:26 2009 Subject: ports/134173: Upgrade www/mozplugger to 1.12.1 Message-ID: <200905030222.n432MIYu011239@freefall.freebsd.org> Old Synopsis: Upgrade Mozplugger to 1.12.1 New Synopsis: Upgrade www/mozplugger to 1.12.1 Class-Changed-From-To: update->maintainer-update Class-Changed-By: linimon Class-Changed-When: Sun May 3 02:21:45 UTC 2009 Class-Changed-Why: Fix synopsis and class. http://www.freebsd.org/cgi/query-pr.cgi?pr=134173 From corky1951 at comcast.net Sun May 3 02:30:04 2009 From: corky1951 at comcast.net (Charlie Kester) Date: Sun May 3 02:30:10 2009 Subject: ports/134171: [maintainer update] update sysutils/ncdu to 1.5 Message-ID: <200905030230.n432U4aP011472@freefall.freebsd.org> The following reply was made to PR ports/134171; it has been noted by GNATS. From: Charlie Kester To: bug-followup@FreeBSD.org, Charlie Kester Cc: Subject: Re: ports/134171: [maintainer update] update sysutils/ncdu to 1.5 Date: Sat, 2 May 2009 19:12:10 -0700 --OgqxwSJOaUobr8KG Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline I just noticed that CENKES hasn't picked up any ncdu updates since v1.3. So here's a revised diff for version 1.5, with that master site removed. --OgqxwSJOaUobr8KG Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ncdu.diff" diff -ruN /usr/ports/sysutils/ncdu/Makefile ./ncdu/Makefile --- /usr/ports/sysutils/ncdu/Makefile 2009-02-12 13:20:37.000000000 -0800 +++ ./ncdu/Makefile 2009-05-02 17:06:48.000000000 -0700 @@ -6,9 +6,9 @@ # PORTNAME= ncdu -PORTVERSION= 1.4 +PORTVERSION= 1.5 CATEGORIES= sysutils -MASTER_SITES= http://dev.yorhel.nl/download/ CENKES +MASTER_SITES= http://dev.yorhel.nl/download/ MAINTAINER= corky1951@comcast.net COMMENT= Ncurses du(1) diff -ruN /usr/ports/sysutils/ncdu/distinfo ./ncdu/distinfo --- /usr/ports/sysutils/ncdu/distinfo 2008-09-23 03:10:29.000000000 -0700 +++ ./ncdu/distinfo 2009-05-02 12:52:04.000000000 -0700 @@ -1,3 +1,3 @@ -MD5 (ncdu-1.4.tar.gz) = 07f01579f7c9852033139ae9fa2414c9 -SHA256 (ncdu-1.4.tar.gz) = cb1bdd4835d3e80854f19722e0bf1458097d966a9f10da8f88c873ca94a23616 -SIZE (ncdu-1.4.tar.gz) = 97844 +MD5 (ncdu-1.5.tar.gz) = 90a69cc3b2e9f0324eb14e6ce1df0f22 +SHA256 (ncdu-1.5.tar.gz) = f63292b80d0eae4968624eade660bb42c3180890d7ca887a5470f3d75bae8e08 +SIZE (ncdu-1.5.tar.gz) = 99040 --OgqxwSJOaUobr8KG-- From wenheping at gmail.com Sun May 3 03:00:09 2009 From: wenheping at gmail.com (Wen Heping) Date: Sun May 3 03:00:15 2009 Subject: ports/134174: [NEW PORT]math/p5-Statistics-Benford:Calculate the deviation from Benford's Law Message-ID: <200905030251.n432pxNJ052484@www.freebsd.org> >Number: 134174 >Category: ports >Synopsis: [NEW PORT]math/p5-Statistics-Benford:Calculate the deviation from Benford's Law >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun May 03 03:00:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-Current >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Fri Apr 10 16:36:28 HKT 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/wen1 i386 >Description: This module calculates the deviation from Benford's law. WWW: http://search.cpan.org/dist/Statistics-Benford/ >How-To-Repeat: >Fix: Patch attached with submission follows: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-Statistics-Benford # p5-Statistics-Benford/Makefile # p5-Statistics-Benford/distinfo # p5-Statistics-Benford/pkg-descr # p5-Statistics-Benford/pkg-plist # echo c - p5-Statistics-Benford mkdir -p p5-Statistics-Benford > /dev/null 2>&1 echo x - p5-Statistics-Benford/Makefile sed 's/^X//' >p5-Statistics-Benford/Makefile << '7444644a0b8fbe09c2403b8872e0d215' X# New ports collection makefile for: p5-Statistics-Benford X# Date created: 03 May, 2009 X# Whom: Wen Heping X# X# $FreeBSD$ X# X XPORTNAME= Statistics-Benford XPORTVERSION= 0.07 XCATEGORIES= math perl5 XMASTER_SITES= CPAN XPKGNAMEPREFIX= p5- X XMAINTAINER= wenheping@gmail.com XCOMMENT= Calculate the deviation from Benford's Law X XPERL_CONFIGURE= yes X XMAN3= Statistics::Benford.3 X X.include 7444644a0b8fbe09c2403b8872e0d215 echo x - p5-Statistics-Benford/distinfo sed 's/^X//' >p5-Statistics-Benford/distinfo << '97cd1735b6bc758445e322e451aece92' XMD5 (Statistics-Benford-0.07.tar.gz) = c455daa0dec5843e8e3e218a9ebaf5f3 XSHA256 (Statistics-Benford-0.07.tar.gz) = da0fb3a30b8125ccb27adfe266c9b0dfd0427a2fc588f92338d77fe0af0a2602 XSIZE (Statistics-Benford-0.07.tar.gz) = 5958 97cd1735b6bc758445e322e451aece92 echo x - p5-Statistics-Benford/pkg-descr sed 's/^X//' >p5-Statistics-Benford/pkg-descr << 'fb0cc399812c83d78e1c0e3a20c01db9' XThis module calculates the deviation from Benford's law. X XWWW: http://search.cpan.org/dist/Statistics-Benford/ fb0cc399812c83d78e1c0e3a20c01db9 echo x - p5-Statistics-Benford/pkg-plist sed 's/^X//' >p5-Statistics-Benford/pkg-plist << '1476f9defd57565a42af77309e962a60' X%%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/Benford/.packlist X%%SITE_PERL%%/Statistics/Benford.pm X@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics/Benford X@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/Statistics X@dirrmtry %%SITE_PERL%%/Statistics 1476f9defd57565a42af77309e962a60 exit >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sun May 3 03:00:19 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun May 3 03:00:25 2009 Subject: ports/134174: [NEW PORT]math/p5-Statistics-Benford:Calculate the deviation from Benford's Law Message-ID: <200905030300.n4330ITM052814@freefall.freebsd.org> Synopsis: [NEW PORT]math/p5-Statistics-Benford:Calculate the deviation from Benford's Law Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 3 03:00:18 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134174 From jarrod at netleader.com.au Sun May 3 03:20:02 2009 From: jarrod at netleader.com.au (Jarrod Sayers) Date: Sun May 3 03:20:08 2009 Subject: ports/134175: [maintainer-update] net-mgmt/nagios*: Resolve embedded Perl segmentation faults Message-ID: <200905030305.n4335mQD046223@manhattan.netleader.com.au> >Number: 134175 >Category: ports >Synopsis: [maintainer-update] net-mgmt/nagios*: Resolve embedded Perl segmentation faults >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun May 03 03:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Jarrod Sayers >Release: FreeBSD 7.1-RELEASE-p3 i386 >Organization: >Environment: System: FreeBSD manhattan.netleader.com.au 7.1-RELEASE-p3 FreeBSD 7.1-RELEASE-p3 #12: Mon Mar 2 20:39:19 CST 2009 root@manhattan.netleader.com.au:/usr/obj/usr/src/sys/MANHATTAN i386 >Description: [If possible, this PR should be assigned to wxs@] The upgrade of Perl to 5.8.9 introduced a segmentation fault when Nagios was built with the embedded Perl option, causing issues on a small number of installations. This PR resolves ports/131993 and implements a common patch across all three Nagios ports. Many thanks to Sebastian for locating where the issue was. Among the changes are some minor tweaks shifting DISTVERSION back to PORTVERSION (a left over from the beta process) and including MAKE_JOBS_UNSAFE. Files modified: - ports/net-mgmt/nagios/Makefile - ports/net-mgmt/nagios2/Makefile - ports/net-mgmt/nagios-devel/Makefile Files added: - ports/net-mgmt/nagios/files/patch-base-utils.c - ports/net-mgmt/nagios2/files/patch-base-utils.c - ports/net-mgmt/nagios-devel/files/patch-base__utils.c >How-To-Repeat: >Fix: Downloadable diff from: http://www.netleader.com.au/~jarrod/FreeBSD/net-mgmt-nagios-base__utils.diff --- net-mgmt-nagios-base__utils.diff begins here --- diff -ruN ports/net-mgmt/nagios.orig/Makefile ports/net-mgmt/nagios/Makefile --- ports/net-mgmt/nagios.orig/Makefile 2009-04-29 15:02:33.000000000 +0930 +++ ports/net-mgmt/nagios/Makefile 2009-05-03 12:09:16.000000000 +0930 @@ -6,7 +6,8 @@ # PORTNAME= nagios -DISTVERSION= 3.0.6 +PORTVERSION= 3.0.6 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= SF @@ -16,8 +17,6 @@ LIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd RUN_DEPENDS= ${LOCALBASE}/libexec/nagios/check_nagios:${PORTSDIR}/net-mgmt/nagios-plugins -MAKE_JOBS_UNSAFE= yes - USE_ICONV= yes USE_PERL5_BUILD= yes USE_AUTOTOOLS= autoconf:262 libltdl:15 @@ -68,6 +67,8 @@ LIBS="-L${LOCALBASE}/lib" \ PERL=${PERL} +MAKE_JOBS_UNSAFE= yes + INSTALL_TARGET= install install-commandmode install-config PLIST_SUB= NAGIOSDIR=${NAGIOSDIR} \ @@ -86,7 +87,7 @@ ### XXX: Subtle bug with removing PREFIX from here SUB_LIST= PREFIX=${PREFIX} \ - ${PLIST_SUB} + ${PLIST_SUB} .if defined(WITH_EMBEDDED_PERL) USE_PERL5= 5.8.0+ diff -ruN ports/net-mgmt/nagios.orig/files/patch-base-utils.c ports/net-mgmt/nagios/files/patch-base-utils.c --- ports/net-mgmt/nagios.orig/files/patch-base-utils.c 1970-01-01 09:30:00.000000000 +0930 +++ ports/net-mgmt/nagios/files/patch-base-utils.c 2009-05-03 11:51:53.000000000 +0930 @@ -0,0 +1,38 @@ +--- base/utils.c.orig 2008-12-01 03:52:58.000000000 +1030 ++++ base/utils.c 2009-05-03 11:51:19.000000000 +0930 +@@ -3597,7 +3597,7 @@ + /* initializes embedded perl interpreter */ + int init_embedded_perl(char **env){ + #ifdef EMBEDDEDPERL +- char *embedding[]={ "", "" }; ++ char **embedding = NULL; + int exitstatus=0; + char *temp_buffer=NULL; + int argc=2; +@@ -3613,6 +3613,17 @@ + + else{ + ++ embedding = malloc(argc * sizeof(char *)); ++ if (embedding == NULL) { ++ use_embedded_perl = FALSE; ++ logit(NSLOG_RUNTIME_ERROR, TRUE, "Error: Unable to allocate memory for embedded Perl interpreter! (see ports/131993)\n"); ++ } else { ++ embedding[0] = malloc(sizeof(char)); ++ if (embedding[0] == NULL) { ++ use_embedded_perl = FALSE; ++ logit(NSLOG_RUNTIME_ERROR, TRUE, "Error: Unable to allocate memory for embedded Perl interpreter! (see ports/131993)\n"); ++ } else { ++ *embedding[0] = '\0'; + embedding[1]=p1_file; + + use_embedded_perl=TRUE; +@@ -3624,6 +3635,8 @@ + logit(NSLOG_RUNTIME_ERROR,TRUE,"Error: Could not allocate memory for embedded Perl interpreter!\n"); + } + } ++ } ++ } + + /* a fatal error occurred... */ + if(use_embedded_perl==FALSE){ diff -ruN ports/net-mgmt/nagios2.orig/Makefile ports/net-mgmt/nagios2/Makefile --- ports/net-mgmt/nagios2.orig/Makefile 2009-01-16 10:30:22.000000000 +1030 +++ ports/net-mgmt/nagios2/Makefile 2009-05-03 12:07:11.000000000 +0930 @@ -7,7 +7,7 @@ PORTNAME= nagios PORTVERSION= 2.12 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-mgmt MASTER_SITES= SF @@ -72,6 +72,8 @@ LIBS="-L${LOCALBASE}/lib" \ PERL=${PERL} +MAKE_JOBS_UNSAFE= yes + INSTALL_TARGET= install install-commandmode install-config PLIST_SUB= NAGIOSDIR=${NAGIOSDIR} \ diff -ruN ports/net-mgmt/nagios2.orig/files/patch-base-utils.c ports/net-mgmt/nagios2/files/patch-base-utils.c --- ports/net-mgmt/nagios2.orig/files/patch-base-utils.c 1970-01-01 09:30:00.000000000 +0930 +++ ports/net-mgmt/nagios2/files/patch-base-utils.c 2009-05-03 11:58:38.000000000 +0930 @@ -0,0 +1,42 @@ +--- base/utils.c.orig 2008-02-11 03:50:10.000000000 +1030 ++++ base/utils.c 2009-05-03 11:58:03.000000000 +0930 +@@ -4553,7 +4553,7 @@ + /* initializes embedded perl interpreter */ + int init_embedded_perl(char **env){ + #ifdef EMBEDDEDPERL +- char *embedding[] = { "", "" }; ++ char **embedding = NULL; + int exitstatus = 0; + char buffer[MAX_INPUT_BUFFER]; + int argc = 2; +@@ -4571,6 +4571,21 @@ + + else{ + ++ embedding = malloc(argc * sizeof(char *)); ++ if (embedding == NULL) { ++ use_embedded_perl = FALSE; ++ snprintf(buffer, sizeof(buffer), "Error: Unable to allocate memory for embedded Perl interpreter! (see ports/131993)\n"); ++ buffer[sizeof(buffer) - 1] = '\0'; ++ write_to_logs_and_console(buffer, NSLOG_RUNTIME_ERROR, TRUE); ++ } else { ++ embedding[0] = malloc(sizeof(char)); ++ if (embedding[0] == NULL) { ++ use_embedded_perl = FALSE; ++ snprintf(buffer, sizeof(buffer), "Error: Unable to allocate memory for embedded Perl interpreter! (see ports/131993)\n"); ++ buffer[sizeof(buffer) - 1] = '\0'; ++ write_to_logs_and_console(buffer, NSLOG_RUNTIME_ERROR, TRUE); ++ } else { ++ *embedding[0] = '\0'; + embedding[1]=p1_file; + + use_embedded_perl=TRUE; +@@ -4584,6 +4599,8 @@ + write_to_logs_and_console(buffer,NSLOG_RUNTIME_ERROR,TRUE); + } + } ++ } ++ } + + /* a fatal error occurred... */ + if(use_embedded_perl==FALSE){ diff -ruN ports/net-mgmt/nagios-devel.orig/Makefile ports/net-mgmt/nagios-devel/Makefile --- ports/net-mgmt/nagios-devel.orig/Makefile 2009-02-26 10:27:03.000000000 +1030 +++ ports/net-mgmt/nagios-devel/Makefile 2009-05-03 12:09:40.000000000 +0930 @@ -6,7 +6,8 @@ # PORTNAME= nagios -DISTVERSION= 3.1.0 +PORTVERSION= 3.1.0 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= SF PKGNAMESUFFIX= -devel @@ -71,6 +72,8 @@ LIBS="-L${LOCALBASE}/lib" \ PERL=${PERL} +MAKE_JOBS_UNSAFE= yes + INSTALL_TARGET= install install-commandmode install-config PLIST_SUB= NAGIOSDIR=${NAGIOSDIR} \ diff -ruN ports/net-mgmt/nagios-devel.orig/files/patch-base__utils.c ports/net-mgmt/nagios-devel/files/patch-base__utils.c --- ports/net-mgmt/nagios-devel.orig/files/patch-base__utils.c 1970-01-01 09:30:00.000000000 +0930 +++ ports/net-mgmt/nagios-devel/files/patch-base__utils.c 2009-05-03 11:59:44.000000000 +0930 @@ -0,0 +1,38 @@ +--- base/utils.c.orig 2009-01-26 01:12:34.000000000 +1030 ++++ base/utils.c 2009-05-03 11:59:28.000000000 +0930 +@@ -3660,7 +3660,7 @@ + /* initializes embedded perl interpreter */ + int init_embedded_perl(char **env){ + #ifdef EMBEDDEDPERL +- char *embedding[]={ "", "" }; ++ char **embedding = NULL; + int exitstatus=0; + char *temp_buffer=NULL; + int argc=2; +@@ -3676,6 +3676,17 @@ + + else{ + ++ embedding = malloc(argc * sizeof(char *)); ++ if (embedding == NULL) { ++ use_embedded_perl = FALSE; ++ logit(NSLOG_RUNTIME_ERROR, TRUE, "Error: Unable to allocate memory for embedded Perl interpreter! (see ports/131993)\n"); ++ } else { ++ embedding[0] = malloc(sizeof(char)); ++ if (embedding[0] == NULL) { ++ use_embedded_perl = FALSE; ++ logit(NSLOG_RUNTIME_ERROR, TRUE, "Error: Unable to allocate memory for embedded Perl interpreter! (see ports/131993)\n"); ++ } else { ++ *embedding[0] = '\0'; + embedding[1]=p1_file; + + use_embedded_perl=TRUE; +@@ -3687,6 +3698,8 @@ + logit(NSLOG_RUNTIME_ERROR,TRUE,"Error: Could not allocate memory for embedded Perl interpreter!\n"); + } + } ++ } ++ } + + /* a fatal error occurred... */ + if(use_embedded_perl==FALSE){ --- net-mgmt-nagios-base__utils.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From wenheping at gmail.com Sun May 3 06:30:02 2009 From: wenheping at gmail.com (Wen Heping) Date: Sun May 3 06:30:14 2009 Subject: ports/134176: [Maintainer Update]devel/py-zopetesting:update to 3.7.4 Message-ID: <200905030624.n436OYFE051328@www.freebsd.org> >Number: 134176 >Category: ports >Synopsis: [Maintainer Update]devel/py-zopetesting:update to 3.7.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun May 03 06:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-Current >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Fri Apr 10 16:36:28 HKT 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/wen1 i386 >Description: update to 3.7.4 from 3.7.2 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-05-03 19:09:31.000000000 +0800 +++ Makefile 2009-05-03 19:09:59.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= zopetesting -PORTVERSION= 3.7.2 +PORTVERSION= 3.7.4 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} --- distinfo.orig 2009-05-03 19:06:24.000000000 +0800 +++ distinfo 2009-05-03 19:11:52.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (zope.testing-3.7.2.tar.gz) = 1ee6181fb9c3deec08ac61ddbab97705 -SHA256 (zope.testing-3.7.2.tar.gz) = fbb6eb501f7b7f6507f684e62e8b4483d021a92692be37890b3bc3803e5756ef -SIZE (zope.testing-3.7.2.tar.gz) = 152675 +MD5 (zope.testing-3.7.4.tar.gz) = c63c0c4b8b44cbf0da2294850cf514b5 +SHA256 (zope.testing-3.7.4.tar.gz) = ec80c0531c6a2d8fac79e31d5277bf0c896e785e27bfefee43f253bf82577ccb +SIZE (zope.testing-3.7.4.tar.gz) = 153976 --- pkg-plist.orig 2009-05-03 19:09:41.000000000 +0800 +++ pkg-plist 2009-05-03 19:16:16.000000000 +0800 @@ -45,11 +45,13 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/logsupport.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/options.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/profiling.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/process.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/process.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/process.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/refcount.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/runner.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/selftest.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/statistics.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/subprocess.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/testrunner-colors.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/testrunner-arguments.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/testrunner-coverage-win32.txt @@ -95,7 +97,6 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/runner.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/selftest.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/statistics.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/subprocess.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/tests.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/testrunner-ex/README.txt %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/testrunner-ex/gc0.py @@ -350,7 +351,6 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/runner.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/selftest.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/statistics.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/subprocess.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/testrunner/tests.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/__init__.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/zope/testing/cleanup.pyo >Release-Note: >Audit-Trail: >Unformatted: From wenheping at gmail.com Sun May 3 06:30:02 2009 From: wenheping at gmail.com (Wen Heping) Date: Sun May 3 06:30:14 2009 Subject: ports/134177: [Maintainer Update]graphics/mapserver:update to 5.4.0 Message-ID: <200905030628.n436STg0063182@www.freebsd.org> >Number: 134177 >Category: ports >Synopsis: [Maintainer Update]graphics/mapserver:update to 5.4.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: Sun May 03 06:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-Current >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Fri Apr 10 16:36:28 HKT 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/wen1 i386 >Description: update to 5.4.0 from 5.2.1 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-05-03 19:12:30.000000000 +0800 +++ Makefile 2009-05-03 22:25:12.000000000 +0800 @@ -6,8 +6,7 @@ # PORTNAME= mapserver -PORTVERSION= 5.2.1 -PORTREVISION= 2 +PORTVERSION= 5.4.0 CATEGORIES= graphics www geography MASTER_SITES= http://download.osgeo.org/mapserver/ --- distinfo.orig 2009-02-12 18:13:12.000000000 +0800 +++ distinfo 2009-05-03 19:14:13.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (mapserver-5.2.1.tar.gz) = 26cea03c01096d994e02802fda019ae1 -SHA256 (mapserver-5.2.1.tar.gz) = 4a11e8a937c9fae8f9430d2e5a712c2d4eb1d7145d670a41d7f67c73ea1132e7 -SIZE (mapserver-5.2.1.tar.gz) = 1947295 +MD5 (mapserver-5.4.0.tar.gz) = 9863c89dcbbac0779e462b0924c0e981 +SHA256 (mapserver-5.4.0.tar.gz) = 37eff9d7f0d4571570efccc213f550ad7bfa379f46fcc4331d44e6b779173f46 +SIZE (mapserver-5.4.0.tar.gz) = 1875509 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sun May 3 06:30:15 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun May 3 06:30:21 2009 Subject: ports/134176: [Maintainer Update]devel/py-zopetesting:update to 3.7.4 Message-ID: <200905030630.n436UEmM041623@freefall.freebsd.org> Synopsis: [Maintainer Update]devel/py-zopetesting:update to 3.7.4 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 3 06:30:13 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134176 From edwin at FreeBSD.org Sun May 3 06:30:24 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun May 3 06:30:37 2009 Subject: ports/134177: [Maintainer Update]graphics/mapserver:update to 5.4.0 Message-ID: <200905030630.n436UNwa042478@freefall.freebsd.org> Synopsis: [Maintainer Update]graphics/mapserver:update to 5.4.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 3 06:30:22 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134177 From sunpoet at sunpoet.net Sun May 3 08:00:11 2009 From: sunpoet at sunpoet.net (Sunpoet Po-Chuan Hsieh) Date: Sun May 3 08:00:23 2009 Subject: ports/134178: [MAINTAINER] net/tintin: update to 1.99.4 Message-ID: <20090503075347.5D8101C8D@sunpoet.net> >Number: 134178 >Category: ports >Synopsis: [MAINTAINER] net/tintin: update to 1.99.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun May 03 08:00:10 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 7.2-PRERELEASE amd64 >Organization: SUNPOET.net >Environment: System: FreeBSD bonjour.sunpoet.net 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Fri Apr 24 16:19:57 CST 2009 >Description: - Update to 1.99.4 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- tintin-1.99.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/sunpoet/tintin++-devel/../../net/tintin++-devel/Makefile /usr/ports/sunpoet/tintin++-devel/Makefile --- /usr/ports/sunpoet/tintin++-devel/../../net/tintin++-devel/Makefile 2009-03-30 04:43:34.000000000 +0800 +++ /usr/ports/sunpoet/tintin++-devel/Makefile 2009-04-24 00:32:26.000000000 +0800 @@ -6,13 +6,18 @@ # PORTNAME= tintin -PORTVERSION= 1.99.0 +PORTVERSION= 1.99.4 CATEGORIES+= net games MASTER_SITES= SFE MAINTAINER= sunpoet@sunpoet.net COMMENT= A client program to help playing MUDs (devel version) +LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre + +CONFIGURE_ARGS+=--includedir=${LOCALBASE}/include --libdir=${LOCALBASE}/lib +CONFIGURE_ENV= LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}" + LATEST_LINK= ${PORTNAME}-devel WRKSRC= ${WRKDIR}/tt/src diff -ruN --exclude=CVS /usr/ports/sunpoet/tintin++-devel/../../net/tintin++-devel/distinfo /usr/ports/sunpoet/tintin++-devel/distinfo --- /usr/ports/sunpoet/tintin++-devel/../../net/tintin++-devel/distinfo 2009-03-30 04:43:34.000000000 +0800 +++ /usr/ports/sunpoet/tintin++-devel/distinfo 2009-04-23 20:13:27.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (tintin-1.99.0.tar.gz) = 96035e48e63a405d1798f6d1e89796cf -SHA256 (tintin-1.99.0.tar.gz) = 91c865554b3d8f689492e7f112416090ba076f745e8b97c97f3c83108501c0ef -SIZE (tintin-1.99.0.tar.gz) = 226645 +MD5 (tintin-1.99.4.tar.gz) = 68ed5944e629d8c239ff9088d45b96c4 +SHA256 (tintin-1.99.4.tar.gz) = baed9b2b8517636cdf49bcedfcab9d0debb9075ffab424903dc0e0fde8217ef4 +SIZE (tintin-1.99.4.tar.gz) = 226374 --- tintin-1.99.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From sunpoet at sunpoet.net Sun May 3 08:00:12 2009 From: sunpoet at sunpoet.net (Sunpoet Po-Chuan Hsieh) Date: Sun May 3 08:00:24 2009 Subject: ports/134179: [MAINTAINER] science/cdo: update to 1.3.1 Message-ID: <20090503075938.D71951CA3@sunpoet.net> >Number: 134179 >Category: ports >Synopsis: [MAINTAINER] science/cdo: update to 1.3.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun May 03 08:00:11 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 7.2-PRERELEASE amd64 >Organization: SUNPOET.net >Environment: System: FreeBSD bonjour.sunpoet.net 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Fri Apr 24 16:19:57 CST 2009 >Description: - Update to 1.3.1 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- cdo-1.3.1.patch begins here --- diff -ruN --exclude=CVS /usr/ports/science/cdo/Makefile /usr/ports/sunpoet/cdo/Makefile --- /usr/ports/science/cdo/Makefile 2009-02-04 13:49:59.000000000 +0800 +++ /usr/ports/sunpoet/cdo/Makefile 2009-05-03 15:59:19.330645057 +0800 @@ -7,7 +7,7 @@ # PORTNAME= cdo -PORTVERSION= 1.3.0 +PORTVERSION= 1.3.1 CATEGORIES= science MASTER_SITES= http://www.mpimet.mpg.de/fileadmin/software/cdo/ \ http://sunpoet.net/distfiles/ @@ -19,7 +19,6 @@ CONFIGURE_ARGS= --program-transform-name="" CONFIGURE_ENV= CC="${CC}" \ - CFLAGS="${CFLAGS} -I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include ${PTHREAD_CFLAGS}" \ LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib ${PTHREAD_LIBS}" diff -ruN --exclude=CVS /usr/ports/science/cdo/distinfo /usr/ports/sunpoet/cdo/distinfo --- /usr/ports/science/cdo/distinfo 2009-02-04 13:49:59.000000000 +0800 +++ /usr/ports/sunpoet/cdo/distinfo 2009-04-27 20:54:54.596668834 +0800 @@ -1,3 +1,3 @@ -MD5 (cdo-1.3.0.tar.gz) = a024826bc5a88ba21701af62b5e0655c -SHA256 (cdo-1.3.0.tar.gz) = bfa25e2302a6320a2919d1ecfb1e5df82be50cd231dd40f1f2dc50cbff24a89e -SIZE (cdo-1.3.0.tar.gz) = 2566084 +MD5 (cdo-1.3.1.tar.gz) = 98f81bf86e47573bc0d2ba700fc7400a +SHA256 (cdo-1.3.1.tar.gz) = 18d481e56d7cafe78c1951834056329e3d9d97ceb4940833ba5a0f0eecae3775 +SIZE (cdo-1.3.1.tar.gz) = 2613036 --- cdo-1.3.1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sun May 3 08:00:28 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun May 3 08:00:41 2009 Subject: ports/134179: [MAINTAINER] science/cdo: update to 1.3.1 Message-ID: <200905030800.n4380SED094238@freefall.freebsd.org> Synopsis: [MAINTAINER] science/cdo: update to 1.3.1 Responsible-Changed-From-To: freebsd-ports-bugs->chinsan Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 3 08:00:27 UTC 2009 Responsible-Changed-Why: chinsan@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134179 From sunpoet at sunpoet.net Sun May 3 08:10:02 2009 From: sunpoet at sunpoet.net (Sunpoet Po-Chuan Hsieh) Date: Sun May 3 08:10:08 2009 Subject: ports/134180: [PATCH] www/youtube_dl: update to 2009.04.25 Message-ID: <20090503075554.B5DBB1C91@sunpoet.net> >Number: 134180 >Category: ports >Synopsis: [PATCH] www/youtube_dl: update to 2009.04.25 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun May 03 08:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 7.2-PRERELEASE amd64 >Organization: SUNPOET.net >Environment: System: FreeBSD bonjour.sunpoet.net 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Fri Apr 24 16:19:57 CST 2009 >Description: - Update to 2009.04.25 - Update homepage in pkg-descr Port maintainer (araujo@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- youtube_dl-2009.04.25.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/youtube_dl/Makefile /usr/ports/sunpoet/youtube_dl/Makefile --- /usr/ports/www/youtube_dl/Makefile 2009-04-09 12:22:29.000000000 +0800 +++ /usr/ports/sunpoet/youtube_dl/Makefile 2009-04-26 01:35:58.000000000 +0800 @@ -6,10 +6,9 @@ # PORTNAME= youtube_dl -PORTVERSION= 2009.04.06 -PORTREVISION= 1 +PORTVERSION= 2009.04.25 CATEGORIES= www -MASTER_SITES= http://bitbucket.org/rg3/youtube-dl/raw/468b207ea6ee/ +MASTER_SITES= http://bitbucket.org/rg3/youtube-dl/raw/c42582904adf/ DISTNAME= youtube-dl EXTRACT_SUFX= EXTRACT_ONLY= diff -ruN --exclude=CVS /usr/ports/www/youtube_dl/distinfo /usr/ports/sunpoet/youtube_dl/distinfo --- /usr/ports/www/youtube_dl/distinfo 2009-04-09 12:22:29.000000000 +0800 +++ /usr/ports/sunpoet/youtube_dl/distinfo 2009-04-26 00:16:09.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (youtube-dl) = 75e3de37e7bf859def313c08f19be86b -SHA256 (youtube-dl) = b4a2bdbff17ec24ddd0a1d710fb744f949f6186448b05e7ba26d9702ac720060 -SIZE (youtube-dl) = 36342 +MD5 (youtube-dl) = c9924626fbd1bf7228fd995f497182ab +SHA256 (youtube-dl) = a495be16bf95b52bfb5aaafc91346e5e75bd03e01026a3f2f248737428b27f4e +SIZE (youtube-dl) = 36172 diff -ruN --exclude=CVS /usr/ports/www/youtube_dl/pkg-descr /usr/ports/sunpoet/youtube_dl/pkg-descr --- /usr/ports/www/youtube_dl/pkg-descr 2006-08-16 20:51:40.000000000 +0800 +++ /usr/ports/sunpoet/youtube_dl/pkg-descr 2009-04-26 00:14:39.000000000 +0800 @@ -1,4 +1,4 @@ youtube-dl is a small command-line program for downloading videos from YouTube.com. -WWW: http://www.arrakis.es/~rggi3/youtube-dl/ +WWW: http://bitbucket.org/rg3/youtube-dl/ --- youtube_dl-2009.04.25.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sun May 3 08:10:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun May 3 08:10:18 2009 Subject: ports/134180: [PATCH] www/youtube_dl: update to 2009.04.25 Message-ID: <200905030810.n438AC2E008918@freefall.freebsd.org> Synopsis: [PATCH] www/youtube_dl: update to 2009.04.25 Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 3 08:10:11 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134180 From sunpoet at sunpoet.net Sun May 3 08:20:02 2009 From: sunpoet at sunpoet.net (Sunpoet Po-Chuan Hsieh) Date: Sun May 3 08:20:09 2009 Subject: ports/134181: [MAINTAINER] www/httrack: update to 3.43.4 Message-ID: <20090503070116.58D541C35@sunpoet.net> >Number: 134181 >Category: ports >Synopsis: [MAINTAINER] www/httrack: update to 3.43.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun May 03 08:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sunpoet Po-Chuan Hsieh >Release: FreeBSD 7.2-PRERELEASE amd64 >Organization: SUNPOET.net >Environment: System: FreeBSD bonjour.sunpoet.net 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Fri Apr 24 16:19:57 CST 2009 >Description: - Update to 3.43.4 - fix pkg-plist (adopted from PR/133755) Removed file(s): - files/extra-patch-Makefile.in Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- httrack-3.43.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/www/httrack/Makefile /usr/ports/sunpoet/httrack/Makefile --- /usr/ports/www/httrack/Makefile 2009-01-15 00:02:41.000000000 +0800 +++ /usr/ports/sunpoet/httrack/Makefile 2009-04-21 14:42:03.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= httrack -PORTVERSION= 3.43.2 +PORTVERSION= 3.43.4 CATEGORIES= www MASTER_SITES= http://www.httrack.com/ \ http://sunpoet.net/distfiles/ @@ -25,14 +25,15 @@ MAN1= htsserver.1 httrack.1 proxytrack.1 webhttrack.1 -.if defined(NOPORTDATA) || defined(NOPORTDOCS) -NOPORTDATA= yes -NOPORTDOCS= yes -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-Makefile.in -.endif - post-patch: @${REINPLACE_CMD} -e 's|-O -g3 ||g' \ -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure +.if defined(NOPORTDATA) + @${REINPLACE_CMD} -e 's| lang | |g' \ + -e 's| templates | |g' ${WRKSRC}/Makefile.in +.endif +.if defined(NOPORTDOCS) + @${REINPLACE_CMD} -e 's| html| |g' ${WRKSRC}/Makefile.in +.endif .include diff -ruN --exclude=CVS /usr/ports/www/httrack/distinfo /usr/ports/sunpoet/httrack/distinfo --- /usr/ports/www/httrack/distinfo 2009-01-15 00:02:41.000000000 +0800 +++ /usr/ports/sunpoet/httrack/distinfo 2009-04-21 12:32:04.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (httrack-3.43-2.tar.gz) = a6debc9fe8b7049e5de986357c7dadd8 -SHA256 (httrack-3.43-2.tar.gz) = 5c0cbb742c953aa4efde656cddff84fa1a3d6913be9919b1710479612de3f97b -SIZE (httrack-3.43-2.tar.gz) = 1667656 +MD5 (httrack-3.43-4.tar.gz) = 17ac212312c09cd2544701fc9925fa0d +SHA256 (httrack-3.43-4.tar.gz) = d5dcf999e84a828015678efb8085c43a55b717762cd79733280d457a1fe95000 +SIZE (httrack-3.43-4.tar.gz) = 1675341 diff -ruN --exclude=CVS /usr/ports/www/httrack/files/extra-patch-Makefile.in /usr/ports/sunpoet/httrack/files/extra-patch-Makefile.in --- /usr/ports/www/httrack/files/extra-patch-Makefile.in 2008-10-14 12:04:00.000000000 +0800 +++ /usr/ports/sunpoet/httrack/files/extra-patch-Makefile.in 1970-01-01 08:00:00.000000000 +0800 @@ -1,11 +0,0 @@ ---- Makefile.in.orig 2008-07-29 05:17:53.000000000 +0800 -+++ Makefile.in 2008-09-03 23:21:49.313902785 +0800 -@@ -146,7 +146,7 @@ - sysconfdir = @sysconfdir@ - target_alias = @target_alias@ - --SUBDIRS = src man m4 libtest templates lang html -+SUBDIRS = src man m4 libtest templates lang - - EXTRA_DIST = INSTALL INSTALL.FreeBSD INSTALL.Linux \ - gpl.txt gpl-fr.txt license.txt greetings.txt history.txt \ diff -ruN --exclude=CVS /usr/ports/www/httrack/pkg-plist /usr/ports/sunpoet/httrack/pkg-plist --- /usr/ports/www/httrack/pkg-plist 2008-10-14 12:03:13.000000000 +0800 +++ /usr/ports/sunpoet/httrack/pkg-plist 2009-04-21 22:49:33.000000000 +0800 @@ -62,120 +62,130 @@ lib/libhttrack.so.2 %%PORTDOCS%%share/applications/WebHTTrack-Websites.desktop %%PORTDOCS%%share/applications/WebHTTrack.desktop +%%PORTDOCS%%%%DOCSDIR%% %%PORTDOCS%%%%DOCSDIR%%/history.txt %%PORTDOCS%%%%DOCSDIR%%/html +%%PORTDOCS%%%%DOCSDIR%%/html/abuse.html +%%PORTDOCS%%%%DOCSDIR%%/html/addurl.html +%%PORTDOCS%%%%DOCSDIR%%/html/cache.html +%%PORTDOCS%%%%DOCSDIR%%/html/cmddoc.html +%%PORTDOCS%%%%DOCSDIR%%/html/contact.html +%%PORTDOCS%%%%DOCSDIR%%/html/dev.html +%%PORTDOCS%%%%DOCSDIR%%/html/div +%%PORTDOCS%%%%DOCSDIR%%/html/div/search.sh +%%PORTDOCS%%%%DOCSDIR%%/html/faq.html +%%PORTDOCS%%%%DOCSDIR%%/html/fcguide.html +%%PORTDOCS%%%%DOCSDIR%%/html/filters.html +%%PORTDOCS%%%%DOCSDIR%%/html/greetings.txt +%%PORTDOCS%%%%DOCSDIR%%/html/history.txt +%%PORTDOCS%%%%DOCSDIR%%/html/httrack.man.html +%%PORTDOCS%%%%DOCSDIR%%/html/httrack.css +%%PORTDOCS%%%%DOCSDIR%%/html/images +%%PORTDOCS%%%%DOCSDIR%%/html/images/bg_rings.gif +%%PORTDOCS%%%%DOCSDIR%%/html/images/header_title_4.gif +%%PORTDOCS%%%%DOCSDIR%%/html/images/screenshot_01.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/images/screenshot_01b.jpg +%%PORTDOCS%%%%DOCSDIR%%/html/img +%%PORTDOCS%%%%DOCSDIR%%/html/img/addurl1.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/addurl2.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/addurl3.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/addurl4.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/addurl5.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/backblue.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/fade.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/httrack.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap1_a.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap1_b.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap1_c.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap2_a.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap2_b.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap3_a.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap4_a.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap5_a.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_a.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_b.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_c.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_d.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_d2.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_d3.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_d4.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_d5.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_d6.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_d7.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_d8.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_e.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_f.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_g.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_g2.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_g3.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_h.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_i.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_j.gif +%%PORTDOCS%%%%DOCSDIR%%/html/img/snap9_k.gif +%%PORTDOCS%%%%DOCSDIR%%/html/index.html +%%PORTDOCS%%%%DOCSDIR%%/html/library.html +%%PORTDOCS%%%%DOCSDIR%%/html/license.txt +%%PORTDOCS%%%%DOCSDIR%%/html/options.html +%%PORTDOCS%%%%DOCSDIR%%/html/overview.html +%%PORTDOCS%%%%DOCSDIR%%/html/plug.html +%%PORTDOCS%%%%DOCSDIR%%/html/plug_330.html +%%PORTDOCS%%%%DOCSDIR%%/html/scripting.html +%%PORTDOCS%%%%DOCSDIR%%/html/server +%%PORTDOCS%%%%DOCSDIR%%/html/server/about.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/addurl.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/error.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/exit.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/file.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/finished.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/help.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/images +%%PORTDOCS%%%%DOCSDIR%%/html/server/images/bg_rings.gif +%%PORTDOCS%%%%DOCSDIR%%/html/server/images/fade.gif +%%PORTDOCS%%%%DOCSDIR%%/html/server/images/header_title_4.gif +%%PORTDOCS%%%%DOCSDIR%%/html/server/index.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option1.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option10.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option11.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option2.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option2b.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option3.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option4.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option5.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option6.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option7.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option8.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/option9.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/refresh.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/sfx +%%PORTDOCS%%%%DOCSDIR%%/html/server/sfx/finished.wav +%%PORTDOCS%%%%DOCSDIR%%/html/server/step2.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/step3.html +%%PORTDOCS%%%%DOCSDIR%%/html/server/step4.html +%%PORTDOCS%%%%DOCSDIR%%/html/shelldoc.html +%%PORTDOCS%%%%DOCSDIR%%/html/start.html +%%PORTDOCS%%%%DOCSDIR%%/html/step.html +%%PORTDOCS%%%%DOCSDIR%%/html/step1.html +%%PORTDOCS%%%%DOCSDIR%%/html/step2.html +%%PORTDOCS%%%%DOCSDIR%%/html/step3.html +%%PORTDOCS%%%%DOCSDIR%%/html/step4.html +%%PORTDOCS%%%%DOCSDIR%%/html/step5.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9_opt1.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9_opt10.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9_opt11.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9_opt2.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9_opt3.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9_opt4.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9_opt5.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9_opt6.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9_opt7.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9_opt8.html +%%PORTDOCS%%%%DOCSDIR%%/html/step9_opt9.html %%PORTDOCS%%%%DOCSDIR%%/httrack-doc.html -%%PORTDATA%%%%DATADIR%%/html/abuse.html -%%PORTDATA%%%%DATADIR%%/html/addurl.html -%%PORTDATA%%%%DATADIR%%/html/cache.html -%%PORTDATA%%%%DATADIR%%/html/cmddoc.html -%%PORTDATA%%%%DATADIR%%/html/contact.html -%%PORTDATA%%%%DATADIR%%/html/dev.html -%%PORTDATA%%%%DATADIR%%/html/div/search.sh -%%PORTDATA%%%%DATADIR%%/html/faq.html -%%PORTDATA%%%%DATADIR%%/html/fcguide.html -%%PORTDATA%%%%DATADIR%%/html/filters.html -%%PORTDATA%%%%DATADIR%%/html/greetings.txt -%%PORTDATA%%%%DATADIR%%/html/history.txt -%%PORTDATA%%%%DATADIR%%/html/httrack.man.html -%%PORTDATA%%%%DATADIR%%/html/images/bg_rings.gif -%%PORTDATA%%%%DATADIR%%/html/images/header_title_4.gif -%%PORTDATA%%%%DATADIR%%/html/images/screenshot_01.jpg -%%PORTDATA%%%%DATADIR%%/html/images/screenshot_01b.jpg -%%PORTDATA%%%%DATADIR%%/html/img/addurl1.gif -%%PORTDATA%%%%DATADIR%%/html/img/addurl2.gif -%%PORTDATA%%%%DATADIR%%/html/img/addurl3.gif -%%PORTDATA%%%%DATADIR%%/html/img/addurl4.gif -%%PORTDATA%%%%DATADIR%%/html/img/addurl5.gif -%%PORTDATA%%%%DATADIR%%/html/img/backblue.gif -%%PORTDATA%%%%DATADIR%%/html/img/fade.gif -%%PORTDATA%%%%DATADIR%%/html/img/httrack.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap1_a.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap1_b.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap1_c.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap2_a.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap2_b.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap3_a.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap4_a.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap5_a.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_a.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_b.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_c.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_d.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_d2.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_d3.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_d4.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_d5.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_d6.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_d7.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_d8.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_e.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_f.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_g.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_g2.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_g3.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_h.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_i.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_j.gif -%%PORTDATA%%%%DATADIR%%/html/img/snap9_k.gif -%%PORTDATA%%%%DATADIR%%/html/index.html -%%PORTDATA%%%%DATADIR%%/html/library.html -%%PORTDATA%%%%DATADIR%%/html/license.txt -%%PORTDATA%%%%DATADIR%%/html/options.html -%%PORTDATA%%%%DATADIR%%/html/overview.html -%%PORTDATA%%%%DATADIR%%/html/plug.html -%%PORTDATA%%%%DATADIR%%/html/plug_330.html -%%PORTDATA%%%%DATADIR%%/html/scripting.html -%%PORTDATA%%%%DATADIR%%/html/server/about.html -%%PORTDATA%%%%DATADIR%%/html/server/addurl.html -%%PORTDATA%%%%DATADIR%%/html/server/error.html -%%PORTDATA%%%%DATADIR%%/html/server/exit.html -%%PORTDATA%%%%DATADIR%%/html/server/file.html -%%PORTDATA%%%%DATADIR%%/html/server/finished.html -%%PORTDATA%%%%DATADIR%%/html/server/help.html -%%PORTDATA%%%%DATADIR%%/html/server/images/bg_rings.gif -%%PORTDATA%%%%DATADIR%%/html/server/images/fade.gif -%%PORTDATA%%%%DATADIR%%/html/server/images/header_title_4.gif -%%PORTDATA%%%%DATADIR%%/html/server/index.html -%%PORTDATA%%%%DATADIR%%/html/server/option1.html -%%PORTDATA%%%%DATADIR%%/html/server/option10.html -%%PORTDATA%%%%DATADIR%%/html/server/option11.html -%%PORTDATA%%%%DATADIR%%/html/server/option2.html -%%PORTDATA%%%%DATADIR%%/html/server/option2b.html -%%PORTDATA%%%%DATADIR%%/html/server/option3.html -%%PORTDATA%%%%DATADIR%%/html/server/option4.html -%%PORTDATA%%%%DATADIR%%/html/server/option5.html -%%PORTDATA%%%%DATADIR%%/html/server/option6.html -%%PORTDATA%%%%DATADIR%%/html/server/option7.html -%%PORTDATA%%%%DATADIR%%/html/server/option8.html -%%PORTDATA%%%%DATADIR%%/html/server/option9.html -%%PORTDATA%%%%DATADIR%%/html/server/refresh.html -%%PORTDATA%%%%DATADIR%%/html/server/sfx/finished.wav -%%PORTDATA%%%%DATADIR%%/html/server/step2.html -%%PORTDATA%%%%DATADIR%%/html/server/step3.html -%%PORTDATA%%%%DATADIR%%/html/server/step4.html -%%PORTDATA%%%%DATADIR%%/html/shelldoc.html -%%PORTDATA%%%%DATADIR%%/html/start.html -%%PORTDATA%%%%DATADIR%%/html/step.html -%%PORTDATA%%%%DATADIR%%/html/step1.html -%%PORTDATA%%%%DATADIR%%/html/step2.html -%%PORTDATA%%%%DATADIR%%/html/step3.html -%%PORTDATA%%%%DATADIR%%/html/step4.html -%%PORTDATA%%%%DATADIR%%/html/step5.html -%%PORTDATA%%%%DATADIR%%/html/step9.html -%%PORTDATA%%%%DATADIR%%/html/step9_opt1.html -%%PORTDATA%%%%DATADIR%%/html/step9_opt10.html -%%PORTDATA%%%%DATADIR%%/html/step9_opt11.html -%%PORTDATA%%%%DATADIR%%/html/step9_opt2.html -%%PORTDATA%%%%DATADIR%%/html/step9_opt3.html -%%PORTDATA%%%%DATADIR%%/html/step9_opt4.html -%%PORTDATA%%%%DATADIR%%/html/step9_opt5.html -%%PORTDATA%%%%DATADIR%%/html/step9_opt6.html -%%PORTDATA%%%%DATADIR%%/html/step9_opt7.html -%%PORTDATA%%%%DATADIR%%/html/step9_opt8.html -%%PORTDATA%%%%DATADIR%%/html/step9_opt9.html -%%PORTDATA%%%%DATADIR%%/icons/webhttrack.xpm +%%PORTDOCS%%%%DATADIR%%/icons/webhttrack.xpm +%%PORTDATA%%%%DATADIR%%/lang.def +%%PORTDATA%%%%DATADIR%%/lang.indexes %%PORTDATA%%%%DATADIR%%/lang/Bulgarian.txt %%PORTDATA%%%%DATADIR%%/lang/Castellano.txt %%PORTDATA%%%%DATADIR%%/lang/Cesky.txt @@ -204,21 +214,19 @@ %%PORTDATA%%%%DATADIR%%/lang/Svenska.txt %%PORTDATA%%%%DATADIR%%/lang/Turkish.txt %%PORTDATA%%%%DATADIR%%/lang/Ukrainian.txt -%%PORTDATA%%%%DATADIR%%/lang.def -%%PORTDATA%%%%DATADIR%%/lang.indexes -%%PORTDATA%%%%DATADIR%%/libtest/callbacks-example-baselinks.c -%%PORTDATA%%%%DATADIR%%/libtest/callbacks-example-changecontent.c -%%PORTDATA%%%%DATADIR%%/libtest/callbacks-example-contentfilter.c -%%PORTDATA%%%%DATADIR%%/libtest/callbacks-example-displayheader.c -%%PORTDATA%%%%DATADIR%%/libtest/callbacks-example-filename.c -%%PORTDATA%%%%DATADIR%%/libtest/callbacks-example-filename2.c -%%PORTDATA%%%%DATADIR%%/libtest/callbacks-example-filenameiisbug.c -%%PORTDATA%%%%DATADIR%%/libtest/callbacks-example-listlinks.c -%%PORTDATA%%%%DATADIR%%/libtest/callbacks-example-log.c -%%PORTDATA%%%%DATADIR%%/libtest/callbacks-example-simple.c -%%PORTDATA%%%%DATADIR%%/libtest/example.c -%%PORTDATA%%%%DATADIR%%/libtest/example.h -%%PORTDATA%%%%DATADIR%%/libtest/readme.txt +%%DATADIR%%/libtest/callbacks-example-baselinks.c +%%DATADIR%%/libtest/callbacks-example-changecontent.c +%%DATADIR%%/libtest/callbacks-example-contentfilter.c +%%DATADIR%%/libtest/callbacks-example-displayheader.c +%%DATADIR%%/libtest/callbacks-example-filename.c +%%DATADIR%%/libtest/callbacks-example-filename2.c +%%DATADIR%%/libtest/callbacks-example-filenameiisbug.c +%%DATADIR%%/libtest/callbacks-example-listlinks.c +%%DATADIR%%/libtest/callbacks-example-log.c +%%DATADIR%%/libtest/callbacks-example-simple.c +%%DATADIR%%/libtest/example.c +%%DATADIR%%/libtest/example.h +%%DATADIR%%/libtest/readme.txt %%PORTDATA%%%%DATADIR%%/templates/index-body.html %%PORTDATA%%%%DATADIR%%/templates/index-footer.html %%PORTDATA%%%%DATADIR%%/templates/index-header.html @@ -228,17 +236,17 @@ %%PORTDATA%%%%DATADIR%%/templates/topindex-header.html %%PORTDOCS%%share/pixmaps/httrack.xpm %%PORTDATA%%@dirrm %%DATADIR%%/templates -%%PORTDATA%%@dirrm %%DATADIR%%/libtest +@dirrm %%DATADIR%%/libtest %%PORTDATA%%@dirrm %%DATADIR%%/lang -%%PORTDATA%%@dirrm %%DATADIR%%/icons -%%PORTDATA%%@dirrm %%DATADIR%%/html/server/sfx -%%PORTDATA%%@dirrm %%DATADIR%%/html/server/images -%%PORTDATA%%@dirrm %%DATADIR%%/html/server -%%PORTDATA%%@dirrm %%DATADIR%%/html/img -%%PORTDATA%%@dirrm %%DATADIR%%/html/images -%%PORTDATA%%@dirrm %%DATADIR%%/html/div -%%PORTDATA%%@dirrm %%DATADIR%%/html -%%PORTDATA%%@dirrm %%DATADIR%% +%%PORTDOCS%%@dirrm %%DATADIR%%/icons +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/server/images +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/server/sfx +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/server +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/img +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/images +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html/div +%%PORTDOCS%%@dirrm %%DOCSDIR%%/html +@dirrm %%DATADIR%% %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm lib/httrack @dirrm include/httrack --- httrack-3.43.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sun May 3 08:20:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun May 3 08:20:19 2009 Subject: ports/134181: [MAINTAINER] www/httrack: update to 3.43.4 Message-ID: <200905030820.n438KDCk023768@freefall.freebsd.org> Synopsis: [MAINTAINER] www/httrack: update to 3.43.4 Responsible-Changed-From-To: freebsd-ports-bugs->chinsan Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 3 08:20:12 UTC 2009 Responsible-Changed-Why: chinsan@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134181 From miwi at FreeBSD.org Sun May 3 08:27:10 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sun May 3 08:27:17 2009 Subject: ports/134178: [MAINTAINER] net/tintin: update to 1.99.4 Message-ID: <200905030827.n438R913036974@freefall.freebsd.org> Synopsis: [MAINTAINER] net/tintin: update to 1.99.4 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun May 3 08:27:09 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134178 From netch at netch.kiev.ua Sun May 3 09:20:02 2009 From: netch at netch.kiev.ua (Valentin Nechayev) Date: Sun May 3 09:20:09 2009 Subject: ports/134182: portupgrade incorrectly handles manual reject to upgrade Message-ID: <200905030906.n4396WiG035936@segfault.kiev.ua> >Number: 134182 >Category: ports >Synopsis: portupgrade incorrectly handles manual reject to upgrade >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun May 03 09:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Valentin Nechayev >Release: FreeBSD 6.4-RELEASE i386 >Organization: private >Environment: FreeBSD 6.4-RELEASE >Description: In interactive mode (-i), portupgrade asks for each package whether to upgrade it. If some upgrade is rejected by operator, it excludes packages which are depended on it from following consideration. Adding -k to command line doesn't fix it for all packages except topmost one (specified in command line). This is conceptually incorrect. Package relations are protected by requirements in port Makefiles (*_DEPENDS) including package presence and version. Portupgrade should not add additional restrictions to its, and if some package is present and have enough version, portupgrade should not add unnatural intelligence rejecting to build another package depended on first one. This portupgrade feature isn't original; it has appeared approx. in 2008. Before this, portupgrade behavior was correct - it differed installation problem and explicit reject. >How-To-Repeat: Get an old system (e.g. with Xorg 7.3) and try to upgrade top-level packages (as Firefox) without upgrading low-level ones. >Fix: >Release-Note: >Audit-Trail: >Unformatted: From linimon at FreeBSD.org Sun May 3 09:40:43 2009 From: linimon at FreeBSD.org (linimon@FreeBSD.org) Date: Sun May 3 09:40:50 2009 Subject: ports/134182: ports-mgmt/portupgrade incorrectly handles manual reject to upgrade Message-ID: <200905030940.n439ehiH035631@freefall.freebsd.org> Old Synopsis: portupgrade incorrectly handles manual reject to upgrade New Synopsis: ports-mgmt/portupgrade incorrectly handles manual reject to upgrade Responsible-Changed-From-To: freebsd-ports-bugs->sem Responsible-Changed-By: linimon Responsible-Changed-When: Sun May 3 09:40:08 UTC 2009 Responsible-Changed-Why: Fix synopsis and assign. http://www.freebsd.org/cgi/query-pr.cgi?pr=134182 From miwi at FreeBSD.org Sun May 3 09:50:01 2009 From: miwi at FreeBSD.org (Martin Wilke) Date: Sun May 3 09:50:36 2009 Subject: ports/134183: [REPOCOPY] www/mediawiki -> www/mediawiki13 Message-ID: <20090503094429.D6DDC65BF7@miwi.homeunix.com> >Number: 134183 >Category: ports >Synopsis: [REPOCOPY] www/mediawiki -> www/mediawiki13 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun May 03 09:50:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Martin Wilke >Release: FreeBSD 8.0-CURRENT i386 >Organization: >Environment: System: FreeBSD miwi.homeunix.com 8.0-CURRENT FreeBSD 8.0-CURRENT #16: Sun Apr 19 20:56:17 CEST 2009 >Description: Please repocopy www/mediawiki to www/mediawiki13 >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sun May 3 09:50:40 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun May 3 09:50:47 2009 Subject: ports/134183: [REPOCOPY] www/mediawiki -> www/mediawiki13 Message-ID: <200905030950.n439oedN048486@freefall.freebsd.org> Synopsis: [REPOCOPY] www/mediawiki -> www/mediawiki13 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 3 09:50:39 UTC 2009 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134183 From ntarmos at cs.uoi.gr Sun May 3 10:00:07 2009 From: ntarmos at cs.uoi.gr (Nikos Ntarmos) Date: Sun May 3 10:00:14 2009 Subject: ports/134184: [maintainer-update] sysutils/conky v1.7.0 Message-ID: <200905030958.n439wZLX009448@zeus.cs.uoi.gr> >Number: 134184 >Category: ports >Synopsis: [maintainer-update] sysutils/conky v1.7.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: Sun May 03 10:00:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Nikos Ntarmos >Release: FreeBSD 7.2-PRERELEASE i386 >Organization: Computer Science Dept., U. of Ioannina, Greece >Environment: System: FreeBSD ace.cs.uoi.gr 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Wed Apr 22 22:44:28 EEST 2009 ntarmos@ace.cs.uoi.gr:/opt/src/sys/i386/compile/ACE i386 >Description: Updating sysutils/conky to v1.7.0. >How-To-Repeat: >Fix: --- conky-1.7.0.diff begins here --- --- Makefile.orig 2009-03-25 19:45:33.000000000 +0200 +++ Makefile 2009-05-03 12:45:10.000000000 +0300 @@ -6,8 +6,7 @@ # PORTNAME= conky -PORTVERSION= 1.6.1 -PORTREVISION= 1 +PORTVERSION= 1.7.0 CATEGORIES= sysutils MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -24,7 +23,7 @@ USE_GNOME?= pkgconfig USE_ICONV= yes CONFIGURE_ARGS+= --disable-portmon \ - --disable-proc-uptime \ + --disable-config-output \ --disable-hddtemp CONFIGURE_ENV+= CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" @@ -102,7 +101,7 @@ post-install: @${MKDIR} ${EXAMPLESDIR} - @${INSTALL_DATA} ${WRKSRC}/doc/conky.conf ${EXAMPLESDIR}/conkyrc.sample + @${INSTALL_DATA} ${WRKSRC}/data/conky.conf ${EXAMPLESDIR}/conkyrc.sample .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} --- distinfo.orig 2008-08-19 21:06:15.000000000 +0300 +++ distinfo 2009-05-03 11:49:01.000000000 +0300 @@ -1,3 +1,3 @@ -MD5 (conky-1.6.1.tar.bz2) = b2839f21cec18e5eaa338c7440a1ba28 -SHA256 (conky-1.6.1.tar.bz2) = e4acdd61e6971b7bf194c673828ef6de09f82abb95d3ece6e37e7eafab23b063 -SIZE (conky-1.6.1.tar.bz2) = 442180 +MD5 (conky-1.7.0.tar.bz2) = 10360c37d76ab25f4d585bcdfd07f075 +SHA256 (conky-1.7.0.tar.bz2) = 088594166c33a03fc5aacb63ecb15a6b83ffb80dc3aa40e1f10b897ca1733355 +SIZE (conky-1.7.0.tar.bz2) = 478369 --- files/patch-src-conf_cookie.c.orig 1970-01-01 02:00:00.000000000 +0200 +++ files/patch-src-conf_cookie.c 2009-05-03 12:40:02.000000000 +0300 @@ -0,0 +1,14 @@ +--- src/conf_cookie.c.orig 2009-05-03 12:39:27.000000000 +0300 ++++ src/conf_cookie.c 2009-05-03 12:39:48.000000000 +0300 +@@ -23,11 +23,3 @@ + } + return i; + } +- +-cookie_io_functions_t conf_cookie = { +- .read = &conf_read, +- .write = NULL, +- .seek = NULL, +- .close = NULL, +-}; +- --- files/patch-src-conky.h.orig 2008-08-19 21:06:15.000000000 +0300 +++ files/patch-src-conky.h 1970-01-01 02:00:00.000000000 +0200 @@ -1,10 +0,0 @@ ---- src/conky.h.orig 2008-08-16 10:49:12.000000000 +0400 -+++ src/conky.h 2008-08-16 10:49:24.000000000 +0400 -@@ -44,6 +44,7 @@ - #include "config.h" - #include - #include -+#include - #include - #include - #include --- conky-1.7.0.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From makc at FreeBSD.org Sun May 3 10:47:12 2009 From: makc at FreeBSD.org (makc@FreeBSD.org) Date: Sun May 3 10:47:18 2009 Subject: ports/134184: [maintainer-update] sysutils/conky v1.7.0 Message-ID: <200905031047.n43AlBFs026515@freefall.freebsd.org> Synopsis: [maintainer-update] sysutils/conky v1.7.0 Responsible-Changed-From-To: freebsd-ports-bugs->makc Responsible-Changed-By: makc Responsible-Changed-When: Sun May 3 10:47:11 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134184 From villa.alberto at gmail.com Sun May 3 10:50:02 2009 From: villa.alberto at gmail.com (Alberto Villa) Date: Sun May 3 10:50:08 2009 Subject: ports/134185: [maintainer update] Update port: multimedia/kdenlive - fix conflict with kde 3 Message-ID: <200905031048.n43Amgk5097623@www.freebsd.org> >Number: 134185 >Category: ports >Synopsis: [maintainer update] Update port: multimedia/kdenlive - fix conflict with kde 3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun May 03 10:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alberto Villa >Release: FreeBSD 7-STABLE >Organization: >Environment: FreeBSD echo.hoth 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #3: Thu Apr 23 15:17:20 CEST 2009 root@echo.hoth:/usr/obj/usr/src/sys/TPR60 i386 >Description: cmake includes kdelibs 3, when installed, instead of kdelibs 4 >How-To-Repeat: install kdelibs 3 and then kdenlive >Fix: here's the patch (no files added nor removed, portrevision not touched) Patch attached with submission follows: diff -ruN /usr/ports/multimedia/kdenlive/files/patch-src-CMakeLists.txt kdenlive/files/patch-src-CMakeLists.txt --- /usr/ports/multimedia/kdenlive/files/patch-src-CMakeLists.txt 2009-05-01 23:40:07.000000000 +0200 +++ kdenlive/files/patch-src-CMakeLists.txt 2009-05-03 12:30:33.000000000 +0200 @@ -1,20 +1,19 @@ ---- src/CMakeLists.txt.orig 2009-05-01 17:21:12.000000000 +0200 -+++ src/CMakeLists.txt 2009-05-01 17:21:48.000000000 +0200 -@@ -2,17 +2,19 @@ - add_subdirectory( widgets ) - add_subdirectory( mimetypes ) - -+find_package(Qt4 REQUIRED) +--- src/CMakeLists.txt.orig 2009-05-03 12:26:01.000000000 +0200 ++++ src/CMakeLists.txt 2009-05-03 12:28:57.000000000 +0200 +@@ -5,14 +5,17 @@ find_package(Nepomuk REQUIRED) include_directories ( ++ ${KDE4_INCLUDE_DIR} ++ ${KDE4_INCLUDE_DIR}/KDE ++ ${KDE4_PHONON_INCLUDES} + ${QT_INCLUDES} + ${LIBMLT_INCLUDE_DIR} + ${LIBMLTPLUS_INCLUDE_DIR} ${QDBUS_INCLUDE_DIRS} ${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} - ${KDE4_INCLUDES} +- ${KDE4_INCLUDES} ${CMAKE_SOURCE_DIR}/src/widgets - ${LIBMLT_INCLUDE_DIR} >Release-Note: >Audit-Trail: >Unformatted: From yuri.pankov at gmail.com Sun May 3 11:20:01 2009 From: yuri.pankov at gmail.com (Yuri Pankov) Date: Sun May 3 11:20:08 2009 Subject: ports/134186: [MAINTAINER] textproc/liblinebreak: update to 1.2 Message-ID: <200905031045.n43AjAU0057486@darklight.homeunix.org> >Number: 134186 >Category: ports >Synopsis: [MAINTAINER] textproc/liblinebreak: update to 1.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: Sun May 03 11:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yuri Pankov >Release: FreeBSD 8.0-CURRENT amd64 >Organization: >Environment: System: FreeBSD darklight.homeunix.org 8.0-CURRENT FreeBSD 8.0-CURRENT #2: Sat May 2 00:45:11 MSD >Description: - Update to 1.2 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- liblinebreak-1.2.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/liblinebreak/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- Makefile 28 Feb 2009 16:57:20 -0000 1.2 +++ Makefile 3 May 2009 10:37:54 -0000 @@ -6,7 +6,7 @@ # PORTNAME= liblinebreak -PORTVERSION= 1.1 +PORTVERSION= 1.2 CATEGORIES= textproc MASTER_SITES= SF MASTER_SITE_SUBDIR= vimgadgets Index: distinfo =================================================================== RCS file: /home/ncvs/ports/textproc/liblinebreak/distinfo,v retrieving revision 1.2 diff -u -r1.2 distinfo --- distinfo 28 Feb 2009 16:57:20 -0000 1.2 +++ distinfo 3 May 2009 10:37:54 -0000 @@ -1,3 +1,3 @@ -MD5 (liblinebreak-1.1.tar.gz) = cb90f54add5f795c8205e617c3efbf9f -SHA256 (liblinebreak-1.1.tar.gz) = 40fa2111e70b2834fbc1371d92dcd590fb9784baff8cac8a56c7a611cbdb11bf -SIZE (liblinebreak-1.1.tar.gz) = 370101 +MD5 (liblinebreak-1.2.tar.gz) = d18039259001ccb24b5dd4648c49c5ad +SHA256 (liblinebreak-1.2.tar.gz) = 9efcb0cb1afc75ad1e92d2b2dbf4d9c77b072d6656c5f1a150af8b718d0c7b76 +SIZE (liblinebreak-1.2.tar.gz) = 370221 --- liblinebreak-1.2.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From jnlin at csie.nctu.edu.tw Sun May 3 12:20:02 2009 From: jnlin at csie.nctu.edu.tw (Jui-Nan Lin) Date: Sun May 3 12:20:09 2009 Subject: ports/134187: [PATCH] net/samba: update to 3.3.4 Message-ID: <20090503115845.DDBDE6789D@Florence.tamama.org> >Number: 134187 >Category: ports >Synopsis: [PATCH] net/samba: update to 3.3.4 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun May 03 12:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Jui-Nan Lin >Release: FreeBSD 7.2-RELEASE amd64 >Organization: >Environment: System: FreeBSD Florence.tamama.org 7.2-RELEASE FreeBSD 7.2-RELEASE #1: Sun May 3 14:59:35 CST >Description: - Update to 3.3.4 Port maintainer (timur@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- samba-3.3.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/net/samba/Makefile /home/users/jnlin/ports/samba33/Makefile --- /usr/ports/net/samba33/Makefile 2009-05-03 18:50:59.145383168 +0800 +++ /home/users/jnlin/ports/samba33/Makefile 2009-05-03 18:51:19.420359965 +0800 @@ -6,7 +6,7 @@ # PORTNAME= samba -PORTVERSION?= 3.3.3 +PORTVERSION?= 3.3.4 PORTREVISION?= 0 CATEGORIES?= net MASTER_SITES= ${MASTER_SITE_SAMBA} diff -ruN --exclude=CVS /usr/ports/net/samba/distinfo /home/users/jnlin/ports/samba33/distinfo --- /usr/ports/net/samba33/distinfo 2009-04-07 10:10:45.000000000 +0800 +++ /home/users/jnlin/ports/samba33/distinfo 2009-05-03 18:53:19.614219073 +0800 @@ -1,3 +1,3 @@ -MD5 (samba-3.3.3.tar.gz) = 4d5835817416d1ffa30783af45c5a9ed -SHA256 (samba-3.3.3.tar.gz) = 16179b74296b9567613ef966b56da58d971285195db6b34b5281154dcfb3a323 -SIZE (samba-3.3.3.tar.gz) = 26070757 +MD5 (samba-3.3.4.tar.gz) = 1443165edb7cb3f56f1e77aec1ee3266 +SHA256 (samba-3.3.4.tar.gz) = f33ffe6a2a47ee52b1441d391718cd0dccab5b91fc737e0c2b956820b09e27e2 +SIZE (samba-3.3.4.tar.gz) = 26075373 --- samba-3.3.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From rafan at FreeBSD.org Sun May 3 14:58:16 2009 From: rafan at FreeBSD.org (rafan@FreeBSD.org) Date: Sun May 3 14:58:21 2009 Subject: ports/134186: [MAINTAINER] textproc/liblinebreak: update to 1.2 Message-ID: <200905031458.n43EwF6H063436@freefall.freebsd.org> Synopsis: [MAINTAINER] textproc/liblinebreak: update to 1.2 Responsible-Changed-From-To: freebsd-ports-bugs->rafan Responsible-Changed-By: rafan Responsible-Changed-When: Sun May 3 14:58:15 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134186 From rafan at FreeBSD.org Sun May 3 15:16:29 2009 From: rafan at FreeBSD.org (rafan@FreeBSD.org) Date: Sun May 3 15:16:35 2009 Subject: ports/134185: [maintainer update] Update port: multimedia/kdenlive - fix conflict with kde 3 Message-ID: <200905031516.n43FGS8i090328@freefall.freebsd.org> Synopsis: [maintainer update] Update port: multimedia/kdenlive - fix conflict with kde 3 Responsible-Changed-From-To: freebsd-ports-bugs->rafan Responsible-Changed-By: rafan Responsible-Changed-When: Sun May 3 15:16:28 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134185 From hrkfdn at gmail.com Sun May 3 17:30:02 2009 From: hrkfdn at gmail.com (Henrik Friedrichsen) Date: Sun May 3 17:30:09 2009 Subject: ports/134188: [MAINTAINER] x11-wm/echinus update to 0.3.3 Message-ID: <200905031721.n43HLqi7031555@www.freebsd.org> >Number: 134188 >Category: ports >Synopsis: [MAINTAINER] x11-wm/echinus update to 0.3.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun May 03 17:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Henrik Friedrichsen >Release: 7.2 >Organization: >Environment: FreeBSD sun.univer.se 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Sun May 3 18:25:22 CEST 2009 root@sun.univer.se:/usr/obj/usr/src/sys/KRAFTWERK i386 >Description: This patch updates x11-wm/echinus to 0.3.3 which comes with (critical) bugfixes and other improvements. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -Naur ./Makefile ../echinus/Makefile --- ./Makefile 2009-05-03 19:17:57.000000000 +0200 +++ ../echinus/Makefile 2009-05-03 19:18:05.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= echinus -PORTVERSION= 0.3.2.1 +PORTVERSION= 0.3.3 CATEGORIES= x11-wm MASTER_SITES= http://rootshell.be/~polachok/code/ diff -Naur ./distinfo ../echinus/distinfo --- ./distinfo 2009-05-03 19:17:57.000000000 +0200 +++ ../echinus/distinfo 2009-05-03 19:18:08.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (echinus-0.3.2.1.tar.gz) = a7670f3455b88295db3dcb21871ae5bf -SHA256 (echinus-0.3.2.1.tar.gz) = 574f4d20b0991047b87b1e4a557c3f8ac00a643894d0afff51e31a4e79d4b9af -SIZE (echinus-0.3.2.1.tar.gz) = 26964 +MD5 (echinus-0.3.3.tar.gz) = eb863946aa5f8b83eab35e6fe98dd865 +SHA256 (echinus-0.3.3.tar.gz) = 63c8dc7e0bc7dcf0d1e7ec6b7c52fb013e1dfbdd31c7d358d9513cb212a5759d +SIZE (echinus-0.3.3.tar.gz) = 27409 >Release-Note: >Audit-Trail: >Unformatted: From chalpin at cs.wisc.edu Sun May 3 17:50:03 2009 From: chalpin at cs.wisc.edu (Corey Halpin) Date: Sun May 3 17:50:09 2009 Subject: ports/134189: Claim mail/fetchmail Message-ID: <20090503174331.113105FF1@spiff.home.crhalpin.org> >Number: 134189 >Category: ports >Synopsis: Claim mail/fetchmail >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun May 03 17:50:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Corey Halpin >Release: FreeBSD 7.1-RELEASE-p4 i386 >Organization: >Environment: System: FreeBSD spiff.home.crhalpin.org 7.1-RELEASE-p4 FreeBSD 7.1-RELEASE-p4 #0: Sun Mar 22 12:35:36 UTC 2009 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: I'd like to claim maintainership of mail/fetchmail. >How-To-Repeat: NA >Fix: diff -ru fetchmail-orig/Makefile fetchmail/Makefile --- fetchmail-orig/Makefile 2009-05-03 12:37:43.000000000 -0500 +++ fetchmail/Makefile 2009-05-03 12:38:11.000000000 -0500 @@ -20,7 +20,7 @@ ./:ma DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:DEFAULT,ma,sunsite -MAINTAINER= ports@FreeBSD.org +MAINTAINER= chalpin@cs.wisc.edu COMMENT= Batch mail retrieval utility for IMAP/POP3/ETRN/ODMR RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:${PORTSDIR}/security/ca_root_nss >Release-Note: >Audit-Trail: >Unformatted: From pgj at FreeBSD.org Sun May 3 18:10:01 2009 From: pgj at FreeBSD.org (Gabor PALI) Date: Sun May 3 18:10:13 2009 Subject: ports/134191: [UPDATE] devel/lhs2TeX - Take maintainership Message-ID: <200905031809.n43I9ZKA077465@www.freebsd.org> >Number: 134191 >Category: ports >Synopsis: [UPDATE] devel/lhs2TeX - 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: Sun May 03 18:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Gabor PALI >Release: 7.2-PRERELEASE >Organization: The FreeBSD Project >Environment: FreeBSD petymeg 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Sun Apr 26 00:50:50 UTC 2009 pgj@petymeg:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Assign port maintainership to haskell@ to make its future updates easier for the Haskell porters. It is because the actual maintainer does not seem to be active any more, according to the timeouts received for the recent PRs [1][2]. [1] http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/131494 [2] http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/132338 >How-To-Repeat: >Fix: Patch attached with submission follows: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/lhs2TeX/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- Makefile 20 Mar 2009 23:25:26 -0000 1.6 +++ Makefile 3 May 2009 18:01:56 -0000 @@ -12,7 +12,7 @@ CATEGORIES= devel haskell MASTER_SITES= http://people.cs.uu.nl/andres/${PORTNAME}/ -MAINTAINER= mainland@apeiron.net +MAINTAINER= haskell@FreeBSD.org COMMENT= A preprocessor to generate LaTeX code from literate Haskell sources BUILD_DEPENDS= ghc>=6.8:${PORTSDIR}/lang/ghc \ >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sun May 3 18:10:16 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun May 3 18:10:22 2009 Subject: ports/134191: [UPDATE] devel/lhs2TeX - Take maintainership Message-ID: <200905031810.n43IAFar018932@freefall.freebsd.org> Synopsis: [UPDATE] devel/lhs2TeX - Take maintainership Responsible-Changed-From-To: freebsd-ports-bugs->haskell Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 3 18:10:15 UTC 2009 Responsible-Changed-Why: haskell@ wants this category PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134191 From miwi at FreeBSD.org Sun May 3 18:13:34 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sun May 3 18:13:46 2009 Subject: ports/134188: [MAINTAINER] x11-wm/echinus update to 0.3.3 Message-ID: <200905031813.n43IDX6O031133@freefall.freebsd.org> Synopsis: [MAINTAINER] x11-wm/echinus update to 0.3.3 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun May 3 18:13:33 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134188 From miwi at FreeBSD.org Sun May 3 18:13:36 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Sun May 3 18:13:47 2009 Subject: ports/134189: Claim mail/fetchmail Message-ID: <200905031813.n43IDZOr031199@freefall.freebsd.org> Synopsis: Claim mail/fetchmail Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Sun May 3 18:13:35 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134189 From markocpc at gmail.com Sun May 3 20:10:02 2009 From: markocpc at gmail.com (Marc Lagrange) Date: Sun May 3 20:10:12 2009 Subject: ports/134194: graphics/dri fail on 7.2-RELEASE amd64 Message-ID: <200905032004.n43K407u088869@www.freebsd.org> >Number: 134194 >Category: ports >Synopsis: graphics/dri fail on 7.2-RELEASE amd64 >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: Sun May 03 20:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Marc Lagrange >Release: FreeBSD 7.2-RELEASE amd64 >Organization: >Environment: FreeBSD shebang 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 07:18:07 UTC 2009 root@driscoll.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 >Description: ===> Vulnerability check disabled, database not found ===> Extracting for dri-7.4_1,2 => MD5 Checksum OK for MesaLib-7.4.tar.bz2. => SHA256 Checksum OK for MesaLib-7.4.tar.bz2. ===> Patching for dri-7.4_1,2 ===> Applying FreeBSD patches for dri-7.4_1,2 ===> dri-7.4_1,2 depends on executable: makedepend - found ===> dri-7.4_1,2 depends on executable: gmake - found ===> dri-7.4_1,2 depends on file: /usr/local/libdata/pkgconfig/glproto.pc - found ===> dri-7.4_1,2 depends on file: /usr/local/libdata/pkgconfig/dri2proto.pc - found ===> dri-7.4_1,2 depends on file: /usr/local/libdata/pkgconfig/x11.pc - found ===> dri-7.4_1,2 depends on file: /usr/local/libdata/pkgconfig/xext.pc - found ===> dri-7.4_1,2 depends on file: /usr/local/libdata/pkgconfig/xxf86vm.pc - found ===> dri-7.4_1,2 depends on file: /usr/local/libdata/pkgconfig/xdamage.pc - found ===> dri-7.4_1,2 depends on file: /usr/local/libdata/pkgconfig/xfixes.pc - found ===> dri-7.4_1,2 depends on shared library: drm - found ===> dri-7.4_1,2 depends on shared library: expat.6 - found ===> Configuring for dri-7.4_1,2 checking build system type... amd64-portbld-freebsd7.2 checking host system type... amd64-portbld-freebsd7.2 checking for gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... 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... cc -E 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 whether we are using the GNU C++ compiler... yes checking whether c++ accepts -g... yes checking for gmake... gmake checking for makedepend... /usr/local/bin/makedepend checking for sed... /usr/bin/sed checking for pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking whether to enable assembly... yes, amd64 checking for cc option to produce PIC... -fPIC checking for dlopen... yes checking for posix_memalign... yes checking pkg-config files for X11 are available... yes checking for LIBDRM... yes checking for DRI2PROTO... yes checking for DRIGL... yes checking expat.h usability... yes checking expat.h presence... yes checking for expat.h... yes checking for XML_ParserCreate in -lexpat... yes configure: creating ./config.status config.status: creating configs/autoconf config.status: executing configs commands prefix: /usr/local exec_prefix: ${prefix} libdir: ${exec_prefix}/lib includedir: ${prefix}/include Driver: dri OSMesa: no DRI drivers: i810 i915 i965 mach64 mga r128 r200 r300 radeon tdfx unichrome savage sis swrast DRI driver dir: ${libdir}/dri Use XCB: yes Shared libs: yes Static libs: no GLU: no GLw: no (Motif: no) glut: no Demos: no CFLAGS: -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC CXXFLAGS: -O2 -pipe -march=native -fno-strict-aliasing -Wall -fno-strict-aliasing -ansi -pedantic -fPIC Macros: -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DUSE_X86_64_ASM Run 'gmake' to build Mesa ===> Building for dri-7.4_1,2 gmake[1]: Entering directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src' Making sources for autoconf gmake[2]: Entering directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src/glx/x11' touch depend /usr/local/bin/makedepend -fdepend -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include glcontextmodes.c clientattrib.c compsize.c eval.c glxcmds.c glxcurrent.c glxext.c glxextensions.c indirect.c indirect_init.c indirect_size.c indirect_window_pos.c indirect_texture_compression.c indirect_transpose_matrix.c indirect_vertex_array.c indirect_vertex_program.c pixel.c pixelstore.c render2.c renderpix.c single2.c singlepix.c vertarr.c xfont.c glx_pbuffer.c glx_query.c drisw_glx.c dri_common.c dri_glx.c XF86dri.c glxhash.c dri2_glx.c dri2.c \ ../../../src/mesa/main/dispatch.c ../../../src/mesa/glapi/glapi.c ../../../src/mesa/glapi/glapi_getproc.c ../../../src/mesa/glapi/glthread.c ../../../src/mesa/x86-64/glapi_x86-64.S /usr/local/bin/makedepend: warning: dri2.c (reading /usr/local/include/drm/drm.h), line 172: # warning "__SIZE_TYPE__ not defined. Assuming sizeof(size_t) == sizeof(unsigned long)!" gmake[2]: Leaving directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src/glx/x11' gmake[2]: Entering directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src/glx/x11' touch depend /usr/local/bin/makedepend -fdepend -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include glcontextmodes.c clientattrib.c compsize.c eval.c glxcmds.c glxcurrent.c glxext.c glxextensions.c indirect.c indirect_init.c indirect_size.c indirect_window_pos.c indirect_texture_compression.c indirect_transpose_matrix.c indirect_vertex_array.c indirect_vertex_program.c pixel.c pixelstore.c render2.c renderpix.c single2.c singlepix.c vertarr.c xfont.c glx_pbuffer.c glx_query.c drisw_glx.c dri_common.c dri_glx.c XF86dri.c glxhash.c dri2_glx.c dri2.c \ ../../../src/mesa/main/dispatch.c ../../../src/mesa/glapi/glapi.c ../../../src/mesa/glapi/glapi_getproc.c ../../../src/mesa/glapi/glthread.c ../../../src/mesa/x86-64/glapi_x86-64.S /usr/local/bin/makedepend: warning: dri2.c (reading /usr/local/include/drm/drm.h), line 172: # warning "__SIZE_TYPE__ not defined. Assuming sizeof(size_t) == sizeof(unsigned long)!" cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" glcontextmodes.c -o glcontextmodes.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" clientattrib.c -o clientattrib.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" compsize.c -o compsize.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" eval.c -o eval.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" glxcmds.c -o glxcmds.o glxcmds.c: In function '__glXClientInfo': glxcmds.c:1434: warning: pointer targets in passing argument 5 of 'xcb_glx_client_info' differ in signedness cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" glxcurrent.c -o glxcurrent.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" glxext.c -o glxext.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" glxextensions.c -o glxextensions.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" indirect.c -o indirect.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" indirect_init.c -o indirect_init.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" indirect_size.c -o indirect_size.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" indirect_window_pos.c -o indirect_window_pos.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" indirect_texture_compression.c -o indirect_texture_compression.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" indirect_transpose_matrix.c -o indirect_transpose_matrix.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" indirect_vertex_array.c -o indirect_vertex_array.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" indirect_vertex_program.c -o indirect_vertex_program.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" pixel.c -o pixel.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" pixelstore.c -o pixelstore.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" render2.c -o render2.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" renderpix.c -o renderpix.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" single2.c -o single2.o single2.c: In function '__indirect_glAreTexturesResident': single2.c:886: warning: unused variable 'cmdlen' cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" singlepix.c -o singlepix.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" vertarr.c -o vertarr.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" xfont.c -o xfont.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" glx_pbuffer.c -o glx_pbuffer.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" glx_query.c -o glx_query.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" drisw_glx.c -o drisw_glx.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" dri_common.c -o dri_common.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" dri_glx.c -o dri_glx.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" XF86dri.c -o XF86dri.o XF86dri.c:617: warning: no previous prototype for 'XF86DRIOpenFullScreen' XF86dri.c:628: warning: no previous prototype for 'XF86DRICloseFullScreen' cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" glxhash.c -o glxhash.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" dri2_glx.c -o dri2_glx.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" dri2.c -o dri2.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" ../../../src/mesa/main/dispatch.c -o ../../../src/mesa/main/dispatch.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" ../../../src/mesa/glapi/glapi.c -o ../../../src/mesa/glapi/glapi.o ./../../src/mesa/glapi/glapitemp.h:1884: warning: 'NoOp_dispatch_stub_339' defined but not used ./../../src/mesa/glapi/glapitemp.h:1901: warning: 'NoOp_dispatch_stub_340' defined but not used ./../../src/mesa/glapi/glapitemp.h:1913: warning: 'NoOp_dispatch_stub_341' defined but not used ./../../src/mesa/glapi/glapitemp.h:1925: warning: 'NoOp_dispatch_stub_342' defined but not used ./../../src/mesa/glapi/glapitemp.h:2000: warning: 'NoOp_dispatch_stub_346' defined but not used ./../../src/mesa/glapi/glapitemp.h:2012: warning: 'NoOp_dispatch_stub_347' defined but not used ./../../src/mesa/glapi/glapitemp.h:2024: warning: 'NoOp_dispatch_stub_348' defined but not used ./../../src/mesa/glapi/glapitemp.h:2036: warning: 'NoOp_dispatch_stub_349' defined but not used ./../../src/mesa/glapi/glapitemp.h:2048: warning: 'NoOp_dispatch_stub_350' defined but not used ./../../src/mesa/glapi/glapitemp.h:2060: warning: 'NoOp_dispatch_stub_351' defined but not used ./../../src/mesa/glapi/glapitemp.h:2072: warning: 'NoOp_dispatch_stub_352' defined but not used ./../../src/mesa/glapi/glapitemp.h:2084: warning: 'NoOp_dispatch_stub_353' defined but not used ./../../src/mesa/glapi/glapitemp.h:2096: warning: 'NoOp_dispatch_stub_354' defined but not used ./../../src/mesa/glapi/glapitemp.h:2108: warning: 'NoOp_dispatch_stub_355' defined but not used ./../../src/mesa/glapi/glapitemp.h:2176: warning: 'NoOp_dispatch_stub_360' defined but not used ./../../src/mesa/glapi/glapitemp.h:2272: warning: 'NoOp_dispatch_stub_367' defined but not used ./../../src/mesa/glapi/glapitemp.h:2284: warning: 'NoOp_dispatch_stub_368' defined but not used ./../../src/mesa/glapi/glapitemp.h:2296: warning: 'NoOp_dispatch_stub_369' defined but not used ./../../src/mesa/glapi/glapitemp.h:2308: warning: 'NoOp_dispatch_stub_370' defined but not used ./../../src/mesa/glapi/glapitemp.h:2765: warning: 'NoOp_dispatch_stub_423' defined but not used ./../../src/mesa/glapi/glapitemp.h:4118: warning: 'NoOp_dispatch_stub_576' defined but not used ./../../src/mesa/glapi/glapitemp.h:4140: warning: 'NoOp_dispatch_stub_577' defined but not used ./../../src/mesa/glapi/glapitemp.h:4428: warning: 'NoOp_dispatch_stub_607' defined but not used cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" ../../../src/mesa/glapi/glapi_getproc.c -o ../../../src/mesa/glapi/glapi_getproc.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" ../../../src/mesa/glapi/glthread.c -o ../../../src/mesa/glapi/glthread.o cc -c -I. -I../../../include -I../../../include/GL/internal -I../../../src/mesa -I../../../src/mesa/glapi -I/usr/local/include -I/usr/local/include/drm -I/usr/local/include -D_THREAD_SAFE -I/usr/local/include -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING -DXF86VIDMODE -D_REENTRANT -UIN_DRI_DRIVER -DDEFAULT_DRIVER_DIR=\"/usr/local/lib/dri\" ../../../src/mesa/x86-64/glapi_x86-64.S -o ../../../src/mesa/x86-64/glapi_x86-64.o /bin/sh ../../../bin/mklib -o GL -linker 'cc' -ldflags '-L/usr/local/lib' \ -major 1 -minor 2 \ -install ../../../lib -id /usr/local/lib/libGL.1.dylib \ -L/usr/local/lib -lXext -lXxf86vm -lXdamage -lXfixes -lX11-xcb -lX11 -lxcb-glx -lxcb -L/usr/local/lib -ldrm -lm -lpthread glcontextmodes.o clientattrib.o compsize.o eval.o glxcmds.o glxcurrent.o glxext.o glxextensions.o indirect.o indirect_init.o indirect_size.o indirect_window_pos.o indirect_texture_compression.o indirect_transpose_matrix.o indirect_vertex_array.o indirect_vertex_program.o pixel.o pixelstore.o render2.o renderpix.o single2.o singlepix.o vertarr.o xfont.o glx_pbuffer.o glx_query.o drisw_glx.o dri_common.o dri_glx.o XF86dri.o glxhash.o dri2_glx.o dri2.o ../../../src/mesa/main/dispatch.o ../../../src/mesa/glapi/glapi.o ../../../src/mesa/glapi/glapi_getproc.o ../../../src/mesa/glapi/glthread.o ../../../src/mesa/x86-64/glapi_x86-64.o mklib: Making FreeBSD shared library: libGL.so.1 mklib: Installing libGL.so.1 libGL.so in ../../../lib gmake[2]: Leaving directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src/glx/x11' gmake[2]: Entering directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src/mesa' gmake[3]: Entering directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src/mesa/x86' cc -I../../../include/GL -I../../../include -I.. -I../main -I../math -I../glapi -I../tnl -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING gen_matypes.c -o gen_matypes ./gen_matypes > matypes.h gmake[3]: Leaving directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src/mesa/x86' gmake[3]: Entering directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src/mesa/x86-64' ./x86/gen_matypes > matypes.h gmake[3]: Leaving directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src/mesa/x86-64' cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/api_arrayelt.c -o main/api_arrayelt.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/api_exec.c -o main/api_exec.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/api_loopback.c -o main/api_loopback.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/api_noop.c -o main/api_noop.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/api_validate.c -o main/api_validate.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/accum.c -o main/accum.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/attrib.c -o main/attrib.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/arrayobj.c -o main/arrayobj.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/blend.c -o main/blend.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/bufferobj.c -o main/bufferobj.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/buffers.c -o main/buffers.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/clear.c -o main/clear.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/clip.c -o main/clip.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/colortab.c -o main/colortab.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/context.c -o main/context.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/convolve.c -o main/convolve.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/debug.c -o main/debug.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/depth.c -o main/depth.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/depthstencil.c -o main/depthstencil.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/dlist.c -o main/dlist.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/dlopen.c -o main/dlopen.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/drawpix.c -o main/drawpix.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/enable.c -o main/enable.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/enums.c -o main/enums.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/eval.c -o main/eval.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/execmem.c -o main/execmem.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/extensions.c -o main/extensions.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/fbobject.c -o main/fbobject.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/feedback.c -o main/feedback.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/ffvertex_prog.c -o main/ffvertex_prog.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/fog.c -o main/fog.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/framebuffer.c -o main/framebuffer.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/get.c -o main/get.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/getstring.c -o main/getstring.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/hash.c -o main/hash.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/hint.c -o main/hint.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/histogram.c -o main/histogram.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/image.c -o main/image.o main/image.c: In function '_mesa_apply_rgba_transfer_ops': main/image.c:1550: warning: passing argument 3 of 'update_histogram' from incompatible pointer type main/image.c:1554: warning: passing argument 3 of 'update_minmax' from incompatible pointer type cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/imports.c -o main/imports.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/light.c -o main/light.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/lines.c -o main/lines.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/matrix.c -o main/matrix.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/mipmap.c -o main/mipmap.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/mm.c -o main/mm.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/multisample.c -o main/multisample.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/pixel.c -o main/pixel.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/pixelstore.c -o main/pixelstore.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/points.c -o main/points.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/polygon.c -o main/polygon.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/queryobj.c -o main/queryobj.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/rastpos.c -o main/rastpos.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/rbadaptors.c -o main/rbadaptors.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/readpix.c -o main/readpix.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/renderbuffer.c -o main/renderbuffer.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/scissor.c -o main/scissor.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/shaders.c -o main/shaders.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/state.c -o main/state.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/stencil.c -o main/stencil.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texcompress.c -o main/texcompress.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texcompress_s3tc.c -o main/texcompress_s3tc.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texcompress_fxt1.c -o main/texcompress_fxt1.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texenv.c -o main/texenv.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texenvprogram.c -o main/texenvprogram.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texformat.c -o main/texformat.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texgen.c -o main/texgen.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/teximage.c -o main/teximage.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texobj.c -o main/texobj.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texparam.c -o main/texparam.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texrender.c -o main/texrender.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texstate.c -o main/texstate.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/texstore.c -o main/texstore.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/varray.c -o main/varray.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/vtxfmt.c -o main/vtxfmt.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING math/m_debug_clip.c -o math/m_debug_clip.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING math/m_debug_norm.c -o math/m_debug_norm.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING math/m_debug_xform.c -o math/m_debug_xform.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING math/m_eval.c -o math/m_eval.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING math/m_matrix.c -o math/m_matrix.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING math/m_translate.c -o math/m_translate.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING math/m_vector.c -o math/m_vector.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING math/m_xform.c -o math/m_xform.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_context.c -o vbo/vbo_context.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_exec.c -o vbo/vbo_exec.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_exec_api.c -o vbo/vbo_exec_api.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_exec_array.c -o vbo/vbo_exec_array.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_exec_draw.c -o vbo/vbo_exec_draw.o vbo/vbo_exec_draw.c: In function 'vbo_exec_bind_arrays': vbo/vbo_exec_draw.c:210: warning: cast to pointer from integer of different size cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_exec_eval.c -o vbo/vbo_exec_eval.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_rebase.c -o vbo/vbo_rebase.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_split.c -o vbo/vbo_split.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_split_copy.c -o vbo/vbo_split_copy.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_split_inplace.c -o vbo/vbo_split_inplace.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_save.c -o vbo/vbo_save.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_save_api.c -o vbo/vbo_save_api.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_save_draw.c -o vbo/vbo_save_draw.o vbo/vbo_save_draw.c: In function 'vbo_bind_vertex_list': vbo/vbo_save_draw.c:164: warning: cast to pointer from integer of different size cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING vbo/vbo_save_loopback.c -o vbo/vbo_save_loopback.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_context.c -o tnl/t_context.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_pipeline.c -o tnl/t_pipeline.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_draw.c -o tnl/t_draw.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_rasterpos.c -o tnl/t_rasterpos.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vb_program.c -o tnl/t_vb_program.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vb_render.c -o tnl/t_vb_render.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vb_texgen.c -o tnl/t_vb_texgen.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vb_texmat.c -o tnl/t_vb_texmat.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vb_vertex.c -o tnl/t_vb_vertex.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vb_cull.c -o tnl/t_vb_cull.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vb_fog.c -o tnl/t_vb_fog.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vb_light.c -o tnl/t_vb_light.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vb_normals.c -o tnl/t_vb_normals.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vb_points.c -o tnl/t_vb_points.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vp_build.c -o tnl/t_vp_build.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vertex.c -o tnl/t_vertex.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vertex_sse.c -o tnl/t_vertex_sse.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING tnl/t_vertex_generic.c -o tnl/t_vertex_generic.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/arbprogparse.c -o shader/arbprogparse.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/arbprogram.c -o shader/arbprogram.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/atifragshader.c -o shader/atifragshader.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/grammar/grammar_mesa.c -o shader/grammar/grammar_mesa.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/nvfragparse.c -o shader/nvfragparse.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/nvprogram.c -o shader/nvprogram.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/nvvertparse.c -o shader/nvvertparse.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/program.c -o shader/program.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/prog_cache.c -o shader/prog_cache.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/prog_debug.c -o shader/prog_debug.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/prog_execute.c -o shader/prog_execute.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/prog_instruction.c -o shader/prog_instruction.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/prog_noise.c -o shader/prog_noise.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/prog_parameter.c -o shader/prog_parameter.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/prog_print.c -o shader/prog_print.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/prog_statevars.c -o shader/prog_statevars.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/prog_uniform.c -o shader/prog_uniform.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/programopt.c -o shader/programopt.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/shader_api.c -o shader/shader_api.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_aaline.c -o swrast/s_aaline.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_aatriangle.c -o swrast/s_aatriangle.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_accum.c -o swrast/s_accum.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_alpha.c -o swrast/s_alpha.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_atifragshader.c -o swrast/s_atifragshader.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_bitmap.c -o swrast/s_bitmap.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_blend.c -o swrast/s_blend.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_blit.c -o swrast/s_blit.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_buffers.c -o swrast/s_buffers.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_copypix.c -o swrast/s_copypix.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_context.c -o swrast/s_context.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_depth.c -o swrast/s_depth.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_drawpix.c -o swrast/s_drawpix.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_feedback.c -o swrast/s_feedback.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_fog.c -o swrast/s_fog.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_fragprog.c -o swrast/s_fragprog.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_imaging.c -o swrast/s_imaging.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_lines.c -o swrast/s_lines.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_logic.c -o swrast/s_logic.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_masking.c -o swrast/s_masking.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_points.c -o swrast/s_points.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_readpix.c -o swrast/s_readpix.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_span.c -o swrast/s_span.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_stencil.c -o swrast/s_stencil.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_texcombine.c -o swrast/s_texcombine.o swrast/s_texcombine.c: In function '_swrast_texture_span': swrast/s_texcombine.c:1156: warning: passing argument 4 of 'texture_combine' from incompatible pointer type swrast/s_texcombine.c:1166: warning: passing argument 4 of 'texture_apply' from incompatible pointer type cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_texfilter.c -o swrast/s_texfilter.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_texstore.c -o swrast/s_texstore.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_triangle.c -o swrast/s_triangle.o swrast/s_tritemp.h: In function 'persp_textured_triangle': swrast/s_tritemp.h:330: warning: 'info.er' may be used uninitialized in this function swrast/s_tritemp.h:330: warning: 'info.eg' may be used uninitialized in this function swrast/s_tritemp.h:330: warning: 'info.eb' may be used uninitialized in this function swrast/s_tritemp.h: In function 'affine_textured_triangle': swrast/s_tritemp.h:330: warning: 'info.er' may be used uninitialized in this function swrast/s_tritemp.h:330: warning: 'info.eg' may be used uninitialized in this function swrast/s_tritemp.h:330: warning: 'info.eb' may be used uninitialized in this function cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast/s_zoom.c -o swrast/s_zoom.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast_setup/ss_context.c -o swrast_setup/ss_context.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING swrast_setup/ss_triangle.c -o swrast_setup/ss_triangle.o swrast_setup/ss_triangle.c: In function '_swsetup_render_line_tri': swrast_setup/ss_triangle.c:61: warning: 'i[0]' may be used uninitialized in this function swrast_setup/ss_triangle.c:61: warning: 'i[1]' may be used uninitialized in this function swrast_setup/ss_triangle.c:60: warning: 's[0][0]' may be used uninitialized in this function swrast_setup/ss_triangle.c:60: warning: 's[0][1]' may be used uninitialized in this function swrast_setup/ss_triangle.c:60: warning: 's[0][2]' may be used uninitialized in this function swrast_setup/ss_triangle.c:60: warning: 's[0][3]' may be used uninitialized in this function swrast_setup/ss_triangle.c:60: warning: 's[1][0]' may be used uninitialized in this function swrast_setup/ss_triangle.c:60: warning: 's[1][1]' may be used uninitialized in this function swrast_setup/ss_triangle.c:60: warning: 's[1][2]' may be used uninitialized in this function swrast_setup/ss_triangle.c:60: warning: 's[1][3]' may be used uninitialized in this function swrast_setup/ss_triangle.c:59: warning: 'c[0][0]' may be used uninitialized in this function swrast_setup/ss_triangle.c:59: warning: 'c[0][1]' may be used uninitialized in this function swrast_setup/ss_triangle.c:59: warning: 'c[0][2]' may be used uninitialized in this function swrast_setup/ss_triangle.c:59: warning: 'c[0][3]' may be used uninitialized in this function swrast_setup/ss_triangle.c:59: warning: 'c[1][0]' may be used uninitialized in this function swrast_setup/ss_triangle.c:59: warning: 'c[1][1]' may be used uninitialized in this function swrast_setup/ss_triangle.c:59: warning: 'c[1][2]' may be used uninitialized in this function swrast_setup/ss_triangle.c:59: warning: 'c[1][3]' may be used uninitialized in this function swrast_setup/ss_triangle.c: In function '_swsetup_render_point_tri': swrast_setup/ss_triangle.c:122: warning: 'i[0]' may be used uninitialized in this function swrast_setup/ss_triangle.c:122: warning: 'i[1]' may be used uninitialized in this function swrast_setup/ss_triangle.c:121: warning: 's[0][0]' may be used uninitialized in this function swrast_setup/ss_triangle.c:121: warning: 's[0][1]' may be used uninitialized in this function swrast_setup/ss_triangle.c:121: warning: 's[0][2]' may be used uninitialized in this function swrast_setup/ss_triangle.c:121: warning: 's[0][3]' may be used uninitialized in this function swrast_setup/ss_triangle.c:121: warning: 's[1][0]' may be used uninitialized in this function swrast_setup/ss_triangle.c:121: warning: 's[1][1]' may be used uninitialized in this function swrast_setup/ss_triangle.c:121: warning: 's[1][2]' may be used uninitialized in this function swrast_setup/ss_triangle.c:121: warning: 's[1][3]' may be used uninitialized in this function swrast_setup/ss_triangle.c:120: warning: 'c[0][0]' may be used uninitialized in this function swrast_setup/ss_triangle.c:120: warning: 'c[0][1]' may be used uninitialized in this function swrast_setup/ss_triangle.c:120: warning: 'c[0][2]' may be used uninitialized in this function swrast_setup/ss_triangle.c:120: warning: 'c[0][3]' may be used uninitialized in this function swrast_setup/ss_triangle.c:120: warning: 'c[1][0]' may be used uninitialized in this function swrast_setup/ss_triangle.c:120: warning: 'c[1][1]' may be used uninitialized in this function swrast_setup/ss_triangle.c:120: warning: 'c[1][2]' may be used uninitialized in this function swrast_setup/ss_triangle.c:120: warning: 'c[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h: In function 'triangle_offset_twoside_unfilled_rgba': swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h: In function 'triangle_twoside_unfilled_rgba': swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h: In function 'triangle_offset_twoside_rgba': swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h: In function 'triangle_twoside_rgba': swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:44: warning: 'saved_col0[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:43: warning: 'saved_color[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[0][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[1][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:45: warning: 'saved_spec[2][3]' may be used uninitialized in this function swrast_setup/ss_tritmp.h: In function 'triangle_offset_twoside_unfilled': swrast_setup/ss_tritmp.h:46: warning: 'saved_index[0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:46: warning: 'saved_index[1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:46: warning: 'saved_index[2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h: In function 'triangle_twoside_unfilled': swrast_setup/ss_tritmp.h:46: warning: 'saved_index[0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:46: warning: 'saved_index[1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:46: warning: 'saved_index[2]' may be used uninitialized in this function swrast_setup/ss_tritmp.h: In function 'triangle_offset_twoside': swrast_setup/ss_tritmp.h:46: warning: 'saved_index[0]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:46: warning: 'saved_index[1]' may be used uninitialized in this function swrast_setup/ss_tritmp.h:46: warning: 'saved_index[2]' may be used uninitialized in this function cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING drivers/common/driverfuncs.c -o drivers/common/driverfuncs.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING x86/common_x86.c -o x86/common_x86.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING x86/x86.c -o x86/x86.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING x86/3dnow.c -o x86/3dnow.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING x86/sse.c -o x86/sse.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING x86/rtasm/x86sse.c -o x86/rtasm/x86sse.o x86/rtasm/x86sse.c:1191: warning: no previous prototype for 'x86sse_dummy' cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING sparc/sparc.c -o sparc/sparc.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING ppc/common_ppc.c -o ppc/common_ppc.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING x86-64/x86-64.c -o x86-64/x86-64.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_builtin.c -o shader/slang/slang_builtin.o shader/slang/slang_builtin.c: In function 'emit_statevars': shader/slang/slang_builtin.c:497: warning: 'pos' may be used uninitialized in this function shader/slang/slang_builtin.c:440: warning: 'pos' may be used uninitialized in this function cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_codegen.c -o shader/slang/slang_codegen.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_compile.c -o shader/slang/slang_compile.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_compile_function.c -o shader/slang/slang_compile_function.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_compile_operation.c -o shader/slang/slang_compile_operation.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_compile_struct.c -o shader/slang/slang_compile_struct.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_compile_variable.c -o shader/slang/slang_compile_variable.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_emit.c -o shader/slang/slang_emit.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_ir.c -o shader/slang/slang_ir.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_label.c -o shader/slang/slang_label.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_link.c -o shader/slang/slang_link.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_log.c -o shader/slang/slang_log.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_mem.c -o shader/slang/slang_mem.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_preprocess.c -o shader/slang/slang_preprocess.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_print.c -o shader/slang/slang_print.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_simplify.c -o shader/slang/slang_simplify.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_storage.c -o shader/slang/slang_storage.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_typeinfo.c -o shader/slang/slang_typeinfo.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_vartable.c -o shader/slang/slang_vartable.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING shader/slang/slang_utility.c -o shader/slang/slang_utility.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING x86-64/xform4.S -o x86-64/xform4.o mklib: Making FreeBSD static library: libmesa.a cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING main/dispatch.c -o main/dispatch.o cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING glapi/glapi.c -o glapi/glapi.o glapi/glapitemp.h:1884: warning: 'NoOp_dispatch_stub_339' defined but not used glapi/glapitemp.h:1901: warning: 'NoOp_dispatch_stub_340' defined but not used glapi/glapitemp.h:1913: warning: 'NoOp_dispatch_stub_341' defined but not used glapi/glapitemp.h:1925: warning: 'NoOp_dispatch_stub_342' defined but not used glapi/glapitemp.h:2000: warning: 'NoOp_dispatch_stub_346' defined but not used glapi/glapitemp.h:2012: warning: 'NoOp_dispatch_stub_347' defined but not used glapi/glapitemp.h:2024: warning: 'NoOp_dispatch_stub_348' defined but not used glapi/glapitemp.h:2036: warning: 'NoOp_dispatch_stub_349' defined but not used glapi/glapitemp.h:2048: warning: 'NoOp_dispatch_stub_350' defined but not used glapi/glapitemp.h:2060: warning: 'NoOp_dispatch_stub_351' defined but not used glapi/glapitemp.h:2072: warning: 'NoOp_dispatch_stub_352' defined but not used glapi/glapitemp.h:2084: warning: 'NoOp_dispatch_stub_353' defined but not used glapi/glapitemp.h:2096: warning: 'NoOp_dispatch_stub_354' defined but not used glapi/glapitemp.h:2108: warning: 'NoOp_dispatch_stub_355' defined but not used glapi/glapitemp.h:2176: warning: 'NoOp_dispatch_stub_360' defined but not used glapi/glapitemp.h:2272: warning: 'NoOp_dispatch_stub_367' defined but not used glapi/glapitemp.h:2284: warning: 'NoOp_dispatch_stub_368' defined but not used glapi/glapitemp.h:2296: warning: 'NoOp_dispatch_stub_369' defined but not used glapi/glapitemp.h:2308: warning: 'NoOp_dispatch_stub_370' defined but not used glapi/glapitemp.h:2765: warning: 'NoOp_dispatch_stub_423' defined but not used glapi/glapitemp.h:4118: warning: 'NoOp_dispatch_stub_576' defined but not used glapi/glapitemp.h:4140: warning: 'NoOp_dispatch_stub_577' defined but not used glapi/glapitemp.h:4428: warning: 'NoOp_dispatch_stub_607' defined but not used cc -c -I../../include -I../../src/mesa -I../../src/mesa/main -I/usr/local/include -O2 -pipe -march=native -fno-strict-aliasing -Wall -Wmissing-prototypes -std=c99 -ffast-math -fno-strict-aliasing -fPIC -DUSE_X86_64_ASM -DHAVE_POSIX_MEMALIGN -DUSE_XCB -DPTHREADS -DUSE_EXTERNAL_DXTN_LIB=1 -DIN_DRI_DRIVER -DHAVE_ALIAS -DGLX_INDIRECT_RENDERING -DGLX_DIRECT_RENDERING glapi/glapi_getproc.c -o glapi/glapi_getproc.o In file included from glapi/glapi_getproc.c:77: glapi/glprocs.h:1616: error: 'driDispatchRemapTable' undeclared here (not in a function) glapi/glprocs.h:1616: error: 'AttachShader_remap_index' undeclared here (not in a function) glapi/glprocs.h:1617: error: 'CreateProgram_remap_index' undeclared here (not in a function) glapi/glprocs.h:1618: error: 'CreateShader_remap_index' undeclared here (not in a function) glapi/glprocs.h:1619: error: 'DeleteProgram_remap_index' undeclared here (not in a function) glapi/glprocs.h:1620: error: 'DeleteShader_remap_index' undeclared here (not in a function) glapi/glprocs.h:1621: error: 'DetachShader_remap_index' undeclared here (not in a function) glapi/glprocs.h:1622: error: 'GetAttachedShaders_remap_index' undeclared here (not in a function) glapi/glprocs.h:1623: error: 'GetProgramInfoLog_remap_index' undeclared here (not in a function) glapi/glprocs.h:1624: error: 'GetProgramiv_remap_index' undeclared here (not in a function) glapi/glprocs.h:1625: error: 'GetShaderInfoLog_remap_index' undeclared here (not in a function) glapi/glprocs.h:1626: error: 'GetShaderiv_remap_index' undeclared here (not in a function) glapi/glprocs.h:1627: error: 'IsProgram_remap_index' undeclared here (not in a function) glapi/glprocs.h:1628: error: 'IsShader_remap_index' undeclared here (not in a function) glapi/glprocs.h:1629: error: 'StencilFuncSeparate_remap_index' undeclared here (not in a function) glapi/glprocs.h:1630: error: 'StencilMaskSeparate_remap_index' undeclared here (not in a function) glapi/glprocs.h:1631: error: 'StencilOpSeparate_remap_index' undeclared here (not in a function) glapi/glprocs.h:1632: error: 'UniformMatrix2x3fv_remap_index' undeclared here (not in a function) glapi/glprocs.h:1633: error: 'UniformMatrix2x4fv_remap_index' undeclared here (not in a function) glapi/glprocs.h:1634: error: 'UniformMatrix3x2fv_remap_index' undeclared here (not in a function) glapi/glprocs.h:1635: error: 'UniformMatrix3x4fv_remap_index' undeclared here (not in a function) glapi/glprocs.h:1636: error: 'UniformMatrix4x2fv_remap_index' undeclared here (not in a function) glapi/glprocs.h:1637: error: 'UniformMatrix4x3fv_remap_index' undeclared here (not in a function) glapi/glprocs.h:1638: error: 'LoadTransposeMatrixdARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1639: error: 'LoadTransposeMatrixfARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1640: error: 'MultTransposeMatrixdARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1641: error: 'MultTransposeMatrixfARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1642: error: 'SampleCoverageARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1643: error: 'CompressedTexImage1DARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1644: error: 'CompressedTexImage2DARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1645: error: 'CompressedTexImage3DARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1646: error: 'CompressedTexSubImage1DARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1647: error: 'CompressedTexSubImage2DARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1648: error: 'CompressedTexSubImage3DARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1649: error: 'GetCompressedTexImageARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1650: error: 'DisableVertexAttribArrayARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1651: error: 'EnableVertexAttribArrayARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1652: error: 'GetProgramEnvParameterdvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1653: error: 'GetProgramEnvParameterfvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1654: error: 'GetProgramLocalParameterdvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1655: error: 'GetProgramLocalParameterfvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1656: error: 'GetProgramStringARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1657: error: 'GetProgramivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1658: error: 'GetVertexAttribdvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1659: error: 'GetVertexAttribfvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1660: error: 'GetVertexAttribivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1661: error: 'ProgramEnvParameter4dARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1662: error: 'ProgramEnvParameter4dvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1663: error: 'ProgramEnvParameter4fARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1664: error: 'ProgramEnvParameter4fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1665: error: 'ProgramLocalParameter4dARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1666: error: 'ProgramLocalParameter4dvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1667: error: 'ProgramLocalParameter4fARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1668: error: 'ProgramLocalParameter4fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1669: error: 'ProgramStringARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1670: error: 'VertexAttrib1dARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1671: error: 'VertexAttrib1dvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1672: error: 'VertexAttrib1fARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1673: error: 'VertexAttrib1fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1674: error: 'VertexAttrib1sARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1675: error: 'VertexAttrib1svARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1676: error: 'VertexAttrib2dARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1677: error: 'VertexAttrib2dvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1678: error: 'VertexAttrib2fARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1679: error: 'VertexAttrib2fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1680: error: 'VertexAttrib2sARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1681: error: 'VertexAttrib2svARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1682: error: 'VertexAttrib3dARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1683: error: 'VertexAttrib3dvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1684: error: 'VertexAttrib3fARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1685: error: 'VertexAttrib3fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1686: error: 'VertexAttrib3sARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1687: error: 'VertexAttrib3svARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1688: error: 'VertexAttrib4NbvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1689: error: 'VertexAttrib4NivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1690: error: 'VertexAttrib4NsvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1691: error: 'VertexAttrib4NubARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1692: error: 'VertexAttrib4NubvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1693: error: 'VertexAttrib4NuivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1694: error: 'VertexAttrib4NusvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1695: error: 'VertexAttrib4bvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1696: error: 'VertexAttrib4dARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1697: error: 'VertexAttrib4dvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1698: error: 'VertexAttrib4fARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1699: error: 'VertexAttrib4fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1700: error: 'VertexAttrib4ivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1701: error: 'VertexAttrib4sARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1702: error: 'VertexAttrib4svARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1703: error: 'VertexAttrib4ubvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1704: error: 'VertexAttrib4uivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1705: error: 'VertexAttrib4usvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1706: error: 'VertexAttribPointerARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1707: error: 'BindBufferARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1708: error: 'BufferDataARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1709: error: 'BufferSubDataARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1710: error: 'DeleteBuffersARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1711: error: 'GenBuffersARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1712: error: 'GetBufferParameterivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1713: error: 'GetBufferPointervARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1714: error: 'GetBufferSubDataARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1715: error: 'IsBufferARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1716: error: 'MapBufferARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1717: error: 'UnmapBufferARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1718: error: 'BeginQueryARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1719: error: 'DeleteQueriesARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1720: error: 'EndQueryARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1721: error: 'GenQueriesARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1722: error: 'GetQueryObjectivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1723: error: 'GetQueryObjectuivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1724: error: 'GetQueryivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1725: error: 'IsQueryARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1726: error: 'AttachObjectARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1727: error: 'CompileShaderARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1728: error: 'CreateProgramObjectARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1729: error: 'CreateShaderObjectARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1730: error: 'DeleteObjectARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1731: error: 'DetachObjectARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1732: error: 'GetActiveUniformARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1733: error: 'GetAttachedObjectsARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1734: error: 'GetHandleARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1735: error: 'GetInfoLogARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1736: error: 'GetObjectParameterfvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1737: error: 'GetObjectParameterivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1738: error: 'GetShaderSourceARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1739: error: 'GetUniformLocationARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1740: error: 'GetUniformfvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1741: error: 'GetUniformivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1742: error: 'LinkProgramARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1743: error: 'ShaderSourceARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1744: error: 'Uniform1fARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1745: error: 'Uniform1fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1746: error: 'Uniform1iARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1747: error: 'Uniform1ivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1748: error: 'Uniform2fARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1749: error: 'Uniform2fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1750: error: 'Uniform2iARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1751: error: 'Uniform2ivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1752: error: 'Uniform3fARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1753: error: 'Uniform3fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1754: error: 'Uniform3iARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1755: error: 'Uniform3ivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1756: error: 'Uniform4fARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1757: error: 'Uniform4fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1758: error: 'Uniform4iARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1759: error: 'Uniform4ivARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1760: error: 'UniformMatrix2fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1761: error: 'UniformMatrix3fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1762: error: 'UniformMatrix4fvARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1763: error: 'UseProgramObjectARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1764: error: 'ValidateProgramARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1765: error: 'BindAttribLocationARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1766: error: 'GetActiveAttribARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1767: error: 'GetAttribLocationARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1768: error: 'DrawBuffersARB_remap_index' undeclared here (not in a function) glapi/glprocs.h:1769: error: 'PolygonOffsetEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1770: error: 'GetPixelTexGenParameterfvSGIS_remap_index' undeclared here (not in a function) glapi/glprocs.h:1771: error: 'GetPixelTexGenParameterivSGIS_remap_index' undeclared here (not in a function) glapi/glprocs.h:1772: error: 'PixelTexGenParameterfSGIS_remap_index' undeclared here (not in a function) glapi/glprocs.h:1773: error: 'PixelTexGenParameterfvSGIS_remap_index' undeclared here (not in a function) glapi/glprocs.h:1774: error: 'PixelTexGenParameteriSGIS_remap_index' undeclared here (not in a function) glapi/glprocs.h:1775: error: 'PixelTexGenParameterivSGIS_remap_index' undeclared here (not in a function) glapi/glprocs.h:1776: error: 'SampleMaskSGIS_remap_index' undeclared here (not in a function) glapi/glprocs.h:1777: error: 'SamplePatternSGIS_remap_index' undeclared here (not in a function) glapi/glprocs.h:1778: error: 'ColorPointerEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1779: error: 'EdgeFlagPointerEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1780: error: 'IndexPointerEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1781: error: 'NormalPointerEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1782: error: 'TexCoordPointerEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1783: error: 'VertexPointerEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1784: error: 'PointParameterfEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1785: error: 'PointParameterfvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1786: error: 'LockArraysEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1787: error: 'UnlockArraysEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1788: error: 'CullParameterdvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1789: error: 'CullParameterfvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1790: error: 'SecondaryColor3bEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1791: error: 'SecondaryColor3bvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1792: error: 'SecondaryColor3dEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1793: error: 'SecondaryColor3dvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1794: error: 'SecondaryColor3fEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1795: error: 'SecondaryColor3fvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1796: error: 'SecondaryColor3iEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1797: error: 'SecondaryColor3ivEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1798: error: 'SecondaryColor3sEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1799: error: 'SecondaryColor3svEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1800: error: 'SecondaryColor3ubEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1801: error: 'SecondaryColor3ubvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1802: error: 'SecondaryColor3uiEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1803: error: 'SecondaryColor3uivEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1804: error: 'SecondaryColor3usEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1805: error: 'SecondaryColor3usvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1806: error: 'SecondaryColorPointerEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1807: error: 'MultiDrawArraysEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1808: error: 'MultiDrawElementsEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1809: error: 'FogCoordPointerEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1810: error: 'FogCoorddEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1811: error: 'FogCoorddvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1812: error: 'FogCoordfEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1813: error: 'FogCoordfvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1814: error: 'PixelTexGenSGIX_remap_index' undeclared here (not in a function) glapi/glprocs.h:1815: error: 'BlendFuncSeparateEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1816: error: 'FlushVertexArrayRangeNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1817: error: 'VertexArrayRangeNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1818: error: 'CombinerInputNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1819: error: 'CombinerOutputNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1820: error: 'CombinerParameterfNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1821: error: 'CombinerParameterfvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1822: error: 'CombinerParameteriNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1823: error: 'CombinerParameterivNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1824: error: 'FinalCombinerInputNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1825: error: 'GetCombinerInputParameterfvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1826: error: 'GetCombinerInputParameterivNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1827: error: 'GetCombinerOutputParameterfvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1828: error: 'GetCombinerOutputParameterivNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1829: error: 'GetFinalCombinerInputParameterfvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1830: error: 'GetFinalCombinerInputParameterivNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1831: error: 'ResizeBuffersMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1832: error: 'WindowPos2dMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1833: error: 'WindowPos2dvMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1834: error: 'WindowPos2fMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1835: error: 'WindowPos2fvMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1836: error: 'WindowPos2iMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1837: error: 'WindowPos2ivMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1838: error: 'WindowPos2sMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1839: error: 'WindowPos2svMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1840: error: 'WindowPos3dMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1841: error: 'WindowPos3dvMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1842: error: 'WindowPos3fMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1843: error: 'WindowPos3fvMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1844: error: 'WindowPos3iMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1845: error: 'WindowPos3ivMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1846: error: 'WindowPos3sMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1847: error: 'WindowPos3svMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1848: error: 'WindowPos4dMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1849: error: 'WindowPos4dvMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1850: error: 'WindowPos4fMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1851: error: 'WindowPos4fvMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1852: error: 'WindowPos4iMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1853: error: 'WindowPos4ivMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1854: error: 'WindowPos4sMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1855: error: 'WindowPos4svMESA_remap_index' undeclared here (not in a function) glapi/glprocs.h:1856: error: 'MultiModeDrawArraysIBM_remap_index' undeclared here (not in a function) glapi/glprocs.h:1857: error: 'MultiModeDrawElementsIBM_remap_index' undeclared here (not in a function) glapi/glprocs.h:1858: error: 'DeleteFencesNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1859: error: 'FinishFenceNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1860: error: 'GenFencesNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1861: error: 'GetFenceivNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1862: error: 'IsFenceNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1863: error: 'SetFenceNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1864: error: 'TestFenceNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1865: error: 'AreProgramsResidentNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1866: error: 'BindProgramNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1867: error: 'DeleteProgramsNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1868: error: 'ExecuteProgramNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1869: error: 'GenProgramsNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1870: error: 'GetProgramParameterdvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1871: error: 'GetProgramParameterfvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1872: error: 'GetProgramStringNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1873: error: 'GetProgramivNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1874: error: 'GetTrackMatrixivNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1875: error: 'GetVertexAttribPointervNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1876: error: 'GetVertexAttribdvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1877: error: 'GetVertexAttribfvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1878: error: 'GetVertexAttribivNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1879: error: 'IsProgramNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1880: error: 'LoadProgramNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1881: error: 'ProgramParameters4dvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1882: error: 'ProgramParameters4fvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1883: error: 'RequestResidentProgramsNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1884: error: 'TrackMatrixNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1885: error: 'VertexAttrib1dNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1886: error: 'VertexAttrib1dvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1887: error: 'VertexAttrib1fNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1888: error: 'VertexAttrib1fvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1889: error: 'VertexAttrib1sNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1890: error: 'VertexAttrib1svNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1891: error: 'VertexAttrib2dNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1892: error: 'VertexAttrib2dvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1893: error: 'VertexAttrib2fNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1894: error: 'VertexAttrib2fvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1895: error: 'VertexAttrib2sNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1896: error: 'VertexAttrib2svNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1897: error: 'VertexAttrib3dNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1898: error: 'VertexAttrib3dvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1899: error: 'VertexAttrib3fNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1900: error: 'VertexAttrib3fvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1901: error: 'VertexAttrib3sNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1902: error: 'VertexAttrib3svNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1903: error: 'VertexAttrib4dNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1904: error: 'VertexAttrib4dvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1905: error: 'VertexAttrib4fNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1906: error: 'VertexAttrib4fvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1907: error: 'VertexAttrib4sNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1908: error: 'VertexAttrib4svNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1909: error: 'VertexAttrib4ubNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1910: error: 'VertexAttrib4ubvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1911: error: 'VertexAttribPointerNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1912: error: 'VertexAttribs1dvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1913: error: 'VertexAttribs1fvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1914: error: 'VertexAttribs1svNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1915: error: 'VertexAttribs2dvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1916: error: 'VertexAttribs2fvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1917: error: 'VertexAttribs2svNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1918: error: 'VertexAttribs3dvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1919: error: 'VertexAttribs3fvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1920: error: 'VertexAttribs3svNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1921: error: 'VertexAttribs4dvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1922: error: 'VertexAttribs4fvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1923: error: 'VertexAttribs4svNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1924: error: 'VertexAttribs4ubvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1925: error: 'AlphaFragmentOp1ATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1926: error: 'AlphaFragmentOp2ATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1927: error: 'AlphaFragmentOp3ATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1928: error: 'BeginFragmentShaderATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1929: error: 'BindFragmentShaderATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1930: error: 'ColorFragmentOp1ATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1931: error: 'ColorFragmentOp2ATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1932: error: 'ColorFragmentOp3ATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1933: error: 'DeleteFragmentShaderATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1934: error: 'EndFragmentShaderATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1935: error: 'GenFragmentShadersATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1936: error: 'PassTexCoordATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1937: error: 'SampleMapATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1938: error: 'SetFragmentShaderConstantATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1939: error: 'PointParameteriNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1940: error: 'PointParameterivNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1941: error: 'ActiveStencilFaceEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1942: error: 'BindVertexArrayAPPLE_remap_index' undeclared here (not in a function) glapi/glprocs.h:1943: error: 'DeleteVertexArraysAPPLE_remap_index' undeclared here (not in a function) glapi/glprocs.h:1944: error: 'GenVertexArraysAPPLE_remap_index' undeclared here (not in a function) glapi/glprocs.h:1945: error: 'IsVertexArrayAPPLE_remap_index' undeclared here (not in a function) glapi/glprocs.h:1946: error: 'GetProgramNamedParameterdvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1947: error: 'GetProgramNamedParameterfvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1948: error: 'ProgramNamedParameter4dNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1949: error: 'ProgramNamedParameter4dvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1950: error: 'ProgramNamedParameter4fNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1951: error: 'ProgramNamedParameter4fvNV_remap_index' undeclared here (not in a function) glapi/glprocs.h:1952: error: 'DepthBoundsEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1953: error: 'BlendEquationSeparateEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1954: error: 'BindFramebufferEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1955: error: 'BindRenderbufferEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1956: error: 'CheckFramebufferStatusEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1957: error: 'DeleteFramebuffersEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1958: error: 'DeleteRenderbuffersEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1959: error: 'FramebufferRenderbufferEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1960: error: 'FramebufferTexture1DEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1961: error: 'FramebufferTexture2DEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1962: error: 'FramebufferTexture3DEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1963: error: 'GenFramebuffersEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1964: error: 'GenRenderbuffersEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1965: error: 'GenerateMipmapEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1966: error: 'GetFramebufferAttachmentParameterivEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1967: error: 'GetRenderbufferParameterivEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1968: error: 'IsFramebufferEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1969: error: 'IsRenderbufferEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1970: error: 'RenderbufferStorageEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1971: error: 'BlitFramebufferEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1972: error: 'FramebufferTextureLayerEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1973: error: 'StencilFuncSeparateATI_remap_index' undeclared here (not in a function) glapi/glprocs.h:1974: error: 'ProgramEnvParameters4fvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1975: error: 'ProgramLocalParameters4fvEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1976: error: 'GetQueryObjecti64vEXT_remap_index' undeclared here (not in a function) glapi/glprocs.h:1977: error: 'GetQueryObjectui64vEXT_remap_index' undeclared here (not in a function) glapi/glapi_getproc.c: In function '_glapi_add_dispatch': glapi/glapi_getproc.c:450: error: '_gloffset_FIRST_DYNAMIC' undeclared (first use in this function) glapi/glapi_getproc.c:450: error: (Each undeclared identifier is reported only once glapi/glapi_getproc.c:450: error: for each function it appears in.) glapi/glapi_getproc.c:450: warning: initialization makes integer from pointer without a cast glapi/glapi_getproc.c:450: error: initializer element is not constant gmake[2]: *** [glapi/glapi_getproc.o] Error 1 gmake[2]: Leaving directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src/mesa' gmake[1]: *** [subdirs] Error 1 gmake[1]: Leaving directory `/usr/workdir/usr/ports/graphics/dri/work/Mesa-7.4/src' gmake: *** [default] Error 1 *** Error code 1 Stop in /usr/ports/graphics/dri >How-To-Repeat: cd /usr/ports/graphics/dri; make (on amd64 (and 7.2?) i don't have another workstation to try) >Fix: sorry, no ideas.. this FreeBSD has been installed ~4/5hours ago :/ >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Sun May 3 20:10:15 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Sun May 3 20:10:22 2009 Subject: ports/134194: graphics/dri fail on 7.2-RELEASE amd64 Message-ID: <200905032010.n43KAFK9079877@freefall.freebsd.org> Synopsis: graphics/dri fail on 7.2-RELEASE amd64 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-x11 Responsible-Changed-By: edwin Responsible-Changed-When: Sun May 3 20:10:14 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134194 From g.veniamin at googlemail.com Sun May 3 21:10:03 2009 From: g.veniamin at googlemail.com (Gvozdikov Veniamin) Date: Sun May 3 21:10:10 2009 Subject: ports/134108: net/quagga: bgpd aborts on receiving ASN32 announces Message-ID: <200905032110.n43LA2sS059058@freefall.freebsd.org> The following reply was made to PR ports/134108; it has been noted by GNATS. From: Gvozdikov Veniamin To: bug-followup@FreeBSD.org, eugen@eg.svzserv.kuzbass.ru Cc: Subject: Re: ports/134108: net/quagga: bgpd aborts on receiving ASN32 announces Date: Mon, 04 May 2009 04:31:28 +0800 This is a multi-part message in MIME format. --------------080206010508010105030701 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit -- Veniamin ------------------------------------------ XMMP: zloidemon@jabber.ru --------------080206010508010105030701 Content-Type: text/plain; name="quagga.patch" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="quagga.patch" ZGlmZiAtcnVOIHF1YWdnYS5vcmlnL01ha2VmaWxlIHF1YWdnYS9NYWtlZmlsZQotLS0gcXVh Z2dhLm9yaWcvTWFrZWZpbGUJMjAwOS0wNC0zMCAwMjo0OToxMy4wMDAwMDAwMDAgKzA4MDAK KysrIHF1YWdnYS9NYWtlZmlsZQkyMDA5LTA1LTA0IDAzOjE0OjAyLjA2ODY5MDU0MyArMDgw MApAQCAtNyw3ICs3LDcgQEAKIAogUE9SVE5BTUU9CXF1YWdnYQogUE9SVFZFUlNJT049CTAu OTkuMTEKLVBPUlRSRVZJU0lPTj0JMgorUE9SVFJFVklTSU9OPQkzCiBDQVRFR09SSUVTPQlu ZXQgaXB2NgogTUFTVEVSX1NJVEVTPQlodHRwOi8vcXVhZ2dhLm5ldC9kb3dubG9hZC8gXAog CQlodHRwOi8vd3d3LnJ1LnF1YWdnYS5uZXQvZG93bmxvYWQvIFwKZGlmZiAtcnVOIHF1YWdn YS5vcmlnL2ZpbGVzL3BhdGNoLWJncF9hc3BhdGguYyBxdWFnZ2EvZmlsZXMvcGF0Y2gtYmdw X2FzcGF0aC5jCi0tLSBxdWFnZ2Eub3JpZy9maWxlcy9wYXRjaC1iZ3BfYXNwYXRoLmMJMTk3 MC0wMS0wMSAwNzowMDowMC4wMDAwMDAwMDAgKzA3MDAKKysrIHF1YWdnYS9maWxlcy9wYXRj aC1iZ3BfYXNwYXRoLmMJMjAwOS0wNS0wNCAwMzowMzoyNy42MjMzMzA4NjcgKzA4MDAKQEAg LTAsMCArMSwxMjcgQEAKKy0tLSBiZ3BkL2JncF9hc3BhdGguYy5vcmlnCTIwMDgtMDktMDUg MjI6Mjc6MjYuMDAwMDAwMDAwICswODAwCisrKysgYmdwZC9iZ3BfYXNwYXRoLmMJMjAwOS0w NC0zMCAxNjozMzo1Ni4wMDAwMDAwMDAgKzA4MDAKK0BAIC0zOTMsMjUgKzM5Myw2IEBACisg ICByZXR1cm4gJyAnOworIH0KKyAKKy0vKiBjb3VudHVwIGFzbnMgZnJvbSB0aGlzIHNlZ21l bnQgYW5kIGluZGV4IG9ud2FyZCAqLworLXN0YXRpYyBpbnQKKy1hc3NlZ21lbnRfY291bnRf YXNucyAoc3RydWN0IGFzc2VnbWVudCAqc2VnLCBpbnQgZnJvbSkKKy17CistICBpbnQgY291 bnQgPSAwOworLSAgd2hpbGUgKHNlZykKKy0gICAgeworLSAgICAgIGlmICghZnJvbSkKKy0g ICAgICAgIGNvdW50ICs9IHNlZy0+bGVuZ3RoOworLSAgICAgIGVsc2UKKy0gICAgICAgIHsK Ky0gICAgICAgICAgY291bnQgKz0gKHNlZy0+bGVuZ3RoIC0gZnJvbSk7CistICAgICAgICAg IGZyb20gPSAwOworLSAgICAgICAgfQorLSAgICAgIHNlZyA9IHNlZy0+bmV4dDsKKy0gICAg fQorLSAgcmV0dXJuIGNvdW50OworLX0KKy0KKyB1bnNpZ25lZCBpbnQKKyBhc3BhdGhfY291 bnRfY29uZmVkcyAoc3RydWN0IGFzcGF0aCAqYXNwYXRoKQorIHsKK0BAIC01MjEsNiArNTAy LDIxIEBACisgICByZXR1cm4gbnVtOworIH0KKyAKKytzdGF0aWMgdm9pZAorK2FzcGF0aF9t YWtlX3N0cl9iaWdfZW5vdWdoIChpbnQgbGVuLAorKwkJCSAgICBjaGFyICoqc3RyX2J1ZiwK KysJCQkgICAgaW50ICpzdHJfc2l6ZSwKKysJCQkgICAgaW50IGNvdW50X3RvX2JlX2FkZGVk KQorK3sKKysjZGVmaW5lIFRFUk1JTkFUT1IgMQorKyAgd2hpbGUgKGxlbiArIGNvdW50X3Rv X2JlX2FkZGVkICsgVEVSTUlOQVRPUiA+ICpzdHJfc2l6ZSkKKysgICAgeworKyAgICAgICpz dHJfc2l6ZSAqPSAyOworKyAgICAgICpzdHJfYnVmID0gWFJFQUxMT0MgKE1UWVBFX0FTX1NU UiwgKnN0cl9idWYsICpzdHJfc2l6ZSk7CisrICAgIH0KKysjdW5kZWYgVEVSTUlOQVRPUgor K30KKysKKyAvKiBDb252ZXJ0IGFzcGF0aCBzdHJ1Y3R1cmUgdG8gc3RyaW5nIGV4cHJlc3Np b24uICovCisgc3RhdGljIGNoYXIgKgorIGFzcGF0aF9tYWtlX3N0cl9jb3VudCAoc3RydWN0 IGFzcGF0aCAqYXMpCitAQCAtNTQwLDE4ICs1MzYsNyBAQAorICAgCisgICBzZWcgPSBhcy0+ c2VnbWVudHM7CisgICAKKy0gIC8qIEFTTiB0YWtlcyA1IGNoYXJzIGF0IGxlYXN0LCBwbHVz IHNlcGVyYXRvciwgc2VlIGJlbG93LgorLSAgICogSWYgdGhlcmUgaXMgb25lIGRpZmZlcmlu ZyBzZWdtZW50IHR5cGUsIHdlIG5lZWQgYW4gYWRkaXRpb25hbAorLSAgICogMiBjaGFycyBm b3Igc2VnbWVudCBkZWxpbWl0ZXJzLCBhbmQgdGhlIGZpbmFsICdcMCcuCistICAgKiBIb3Bl ZnVsbHkgdGhpcyBpcyBsYXJnZSBlbm91Z2ggdG8gYXZvaWQgaGl0dGluZyB0aGUgcmVhbGxv YworLSAgICogY29kZSBiZWxvdyBmb3IgbW9zdCBjb21tb24gc2VxdWVuY2VzLgorLSAgICoK Ky0gICAqIFdpdGggMzJiaXQgQVNOcywgdGhpcyByYW5nZSB3aWxsIGluY3JlYXNlLCBidXQg b25seSB3b3J0aCBjaGFuZ2luZworLSAgICogb25jZSB0aGVyZSBhcmUgc2lnbmlmaWNhbnQg bnVtYmVycyBvZiBBU04gPj0gMTAwMDAwCistICAgKi8KKy0jZGVmaW5lIEFTTl9TVFJfTEVO ICg1ICsgMSkKKy0gIHN0cl9zaXplID0gTUFYIChhc3NlZ21lbnRfY291bnRfYXNucyAoc2Vn LCAwKSAqIEFTTl9TVFJfTEVOICsgMiArIDEsCistICAgICAgICAgICAgICAgICAgQVNQQVRI X1NUUl9ERUZBVUxUX0xFTik7CisrICBzdHJfc2l6ZSA9IEFTUEFUSF9TVFJfREVGQVVMVF9M RU47CisgICBzdHJfYnVmID0gWE1BTExPQyAoTVRZUEVfQVNfU1RSLCBzdHJfc2l6ZSk7Cisg CisgICB3aGlsZSAoc2VnKQorQEAgLTU3NSwzMiArNTYwLDI0IEBACisgICAgICAgICAgICAg cmV0dXJuIE5VTEw7CisgICAgICAgICB9CisgICAgICAgCistICAgICAgLyogV2UgbWlnaHQg bmVlZCB0byBpbmNyZWFzZSBzdHJfYnVmLCBwYXJ0aWN1bGFybHkgaWYgcGF0aCBoYXMKKy0g ICAgICAgKiBkaWZmZXJpbmcgc2VnbWVudHMgdHlwZXMsIG91ciBpbml0aWFsIGd1ZXNzdGlt YXRlIGFib3ZlIHdpbGwKKy0gICAgICAgKiBoYXZlIGJlZW4gd3JvbmcuICBuZWVkIDUgY2hh cnMgZm9yIEFTTiwgYSBzZXBlcmF0b3IgZWFjaCBhbmQKKy0gICAgICAgKiBwb3RlbnRpYWxs eSB0d28gc2VnbWVudCBkZWxpbWl0ZXJzLCBwbHVzIGEgc3BhY2UgYmV0d2VlbiBlYWNoCist ICAgICAgICogc2VnbWVudCBhbmQgdHJhaWxpbmcgemVyby4KKy0gICAgICAgKgorLSAgICAg ICAqIFRoaXMgbWF5IG5lZWQgdG8gcmV2aXNlZCBpZi93aGVuIHNpZ25pZmljYW50IG51bWJl cnMgb2YKKy0gICAgICAgKiBBU05zID49IDEwMDAwMCBhcmUgYXNzaWduZWQgYW5kIGluLXVz ZSBvbiB0aGUgaW50ZXJuZXQuLi4KKy0gICAgICAgKi8KKy0jZGVmaW5lIFNFR01FTlRfU1RS X0xFTihYKSAoKChYKS0+bGVuZ3RoICogQVNOX1NUUl9MRU4pICsgMiArIDEgKyAxKQorLSAg ICAgIGlmICggKGxlbiArIFNFR01FTlRfU1RSX0xFTihzZWcpKSA+IHN0cl9zaXplKQorLSAg ICAgICAgeworLSAgICAgICAgICBzdHJfc2l6ZSA9IGxlbiArIFNFR01FTlRfU1RSX0xFTihz ZWcpOworLSAgICAgICAgICBzdHJfYnVmID0gWFJFQUxMT0MgKE1UWVBFX0FTX1NUUiwgc3Ry X2J1Ziwgc3RyX3NpemUpOworLSAgICAgICAgfQorLSN1bmRlZiBBU05fU1RSX0xFTgorLSN1 bmRlZiBTRUdNRU5UX1NUUl9MRU4KKy0gICAgICAKKyAgICAgICBpZiAoc2VnLT50eXBlICE9 IEFTX1NFUVVFTkNFKQorLSAgICAgICAgbGVuICs9IHNucHJpbnRmIChzdHJfYnVmICsgbGVu LCBzdHJfc2l6ZSAtIGxlbiwgCistCQkJICIlYyIsIAorLSAgICAgICAgICAgICAgICAgICAg ICAgICBhc3BhdGhfZGVsaW1pdGVyX2NoYXIgKHNlZy0+dHlwZSwgQVNfU0VHX1NUQVJUKSk7 CisrCXsKKysJICBhc3BhdGhfbWFrZV9zdHJfYmlnX2Vub3VnaCAobGVuLCAmc3RyX2J1Ziwg JnN0cl9zaXplLCAxKTsgLyogJWMgKi8KKysJICBsZW4gKz0gc25wcmludGYgKHN0cl9idWYg KyBsZW4sIHN0cl9zaXplIC0gbGVuLCAKKysJCQkgICAiJWMiLCAKKysJCQkgICBhc3BhdGhf ZGVsaW1pdGVyX2NoYXIgKHNlZy0+dHlwZSwgQVNfU0VHX1NUQVJUKSk7CisrCX0KKyAgICAg ICAKKyAgICAgICAvKiB3cml0ZSBvdXQgdGhlIEFTTnMsIHdpdGggdGhlaXIgc2VwZXJhdG9y cywgYmFyIHRoZSBsYXN0IG9uZSovCisgICAgICAgZm9yIChpID0gMDsgaSA8IHNlZy0+bGVu Z3RoOyBpKyspCisgICAgICAgICB7CisrI2RlZmluZSBBUFBST1hfRElHX0NOVCh4KSAoeCA8 IDEwMDAwMFUgPyA1IDogMTApCisrCSAgLyogJXUgKyAlYyArICVjICsgIiAiIChsYXN0IHR3 byBhcmUgYmVsb3cgbG9vcCkgKi8KKysJICBhc3BhdGhfbWFrZV9zdHJfYmlnX2Vub3VnaCAo bGVuLAorKwkJCQkgICAgICAmc3RyX2J1ZiwKKysJCQkJICAgICAgJnN0cl9zaXplLAorKwkJ CQkgICAgICBBUFBST1hfRElHX0NOVChzZWctPmFzW2ldKSArIDEgKyAxICsgMSk7CisrCisg ICAgICAgICAgIGxlbiArPSBzbnByaW50ZiAoc3RyX2J1ZiArIGxlbiwgc3RyX3NpemUgLSBs ZW4sICIldSIsIHNlZy0+YXNbaV0pOworICAgICAgICAgICAKKyAgICAgICAgICAgaWYgKGkg PCAoc2VnLT5sZW5ndGggLSAxKSkKK0BAIC0xNzcxLDggKzE3NDgsOCBAQAorIHN0YXRpYyBp bnQKKyBhc3BhdGhfY21wIChjb25zdCB2b2lkICphcmcxLCBjb25zdCB2b2lkICphcmcyKQor IHsKKy0gIGNvbnN0IHN0cnVjdCBhc3NlZ21lbnQgKnNlZzEgPSAoKHN0cnVjdCBhc3BhdGgg KilhcmcxKS0+c2VnbWVudHM7CistICBjb25zdCBzdHJ1Y3QgYXNzZWdtZW50ICpzZWcyID0g KChzdHJ1Y3QgYXNwYXRoICopYXJnMiktPnNlZ21lbnRzOworKyAgY29uc3Qgc3RydWN0IGFz c2VnbWVudCAqc2VnMSA9ICgoY29uc3Qgc3RydWN0IGFzcGF0aCAqKWFyZzEpLT5zZWdtZW50 czsKKysgIGNvbnN0IHN0cnVjdCBhc3NlZ21lbnQgKnNlZzIgPSAoKGNvbnN0IHN0cnVjdCBh c3BhdGggKilhcmcyKS0+c2VnbWVudHM7CisgICAKKyAgIHdoaWxlIChzZWcxIHx8IHNlZzIp CisgICAgIHsKZGlmZiAtcnVOIHF1YWdnYS5vcmlnL2ZpbGVzL3BhdGNoLWJncF9hdHRyLmMg cXVhZ2dhL2ZpbGVzL3BhdGNoLWJncF9hdHRyLmMKLS0tIHF1YWdnYS5vcmlnL2ZpbGVzL3Bh dGNoLWJncF9hdHRyLmMJMTk3MC0wMS0wMSAwNzowMDowMC4wMDAwMDAwMDAgKzA3MDAKKysr IHF1YWdnYS9maWxlcy9wYXRjaC1iZ3BfYXR0ci5jCTIwMDktMDUtMDQgMDM6MDU6MzcuOTM4 NzM1NDc5ICswODAwCkBAIC0wLDAgKzEsMTEgQEAKKy0tLSBiZ3BkL2JncF9hdHRyLmMub3Jp ZwkyMDA4LTEwLTAyIDE2OjI4OjUwLjAwMDAwMDAwMCArMDgwMAorKysrIGJncGQvYmdwX2F0 dHIuYwkyMDA5LTA0LTMwIDE2OjMzOjU2LjAwMDAwMDAwMCArMDgwMAorQEAgLTg1Nyw3ICs4 NTcsNyBAQAorIAkgICYmICEgYXNwYXRoX2ZpcnN0YXNfY2hlY2sgKGF0dHItPmFzcGF0aCwg cGVlci0+YXMpKQorICAJeworICAJICB6bG9nIChwZWVyLT5sb2csIExPR19FUlIsCistIAkJ IiVzIGluY29ycmVjdCBmaXJzdCBBUyAobXVzdCBiZSAlZCkiLCBwZWVyLT5ob3N0LCBwZWVy LT5hcyk7CisrIAkJIiVzIGluY29ycmVjdCBmaXJzdCBBUyAobXVzdCBiZSAldSkiLCBwZWVy LT5ob3N0LCBwZWVyLT5hcyk7CisgIAkgIGJncF9ub3RpZnlfc2VuZCAocGVlciwKKyAgCQkJ ICAgQkdQX05PVElGWV9VUERBVEVfRVJSLAorICAJCQkgICBCR1BfTk9USUZZX1VQREFURV9N QUxfQVNfUEFUSCk7CmRpZmYgLXJ1TiBxdWFnZ2Eub3JpZy9maWxlcy9wYXRjaC1iZ3BfY29t bXVuaXR5LmMgcXVhZ2dhL2ZpbGVzL3BhdGNoLWJncF9jb21tdW5pdHkuYwotLS0gcXVhZ2dh Lm9yaWcvZmlsZXMvcGF0Y2gtYmdwX2NvbW11bml0eS5jCTE5NzAtMDEtMDEgMDc6MDA6MDAu MDAwMDAwMDAwICswNzAwCisrKyBxdWFnZ2EvZmlsZXMvcGF0Y2gtYmdwX2NvbW11bml0eS5j CTIwMDktMDUtMDQgMDM6MDY6NDguMzg1MzMxNjI1ICswODAwCkBAIC0wLDAgKzEsMTEgQEAK Ky0tLSBiZ3BkL2JncF9jb21tdW5pdHkuYy5vcmlnCTIwMDgtMDktMDUgMjI6Mjc6MjYuMDAw MDAwMDAwICswODAwCisrKysgYmdwZC9iZ3BfY29tbXVuaXR5LmMJMjAwOS0wNC0zMCAxNjoz Mzo1Ni4wMDAwMDAwMDAgKzA4MDAKK0BAIC0yODIsNyArMjgyLDcgQEAKKyAJZGVmYXVsdDoK KyAJICBhcyA9IChjb212YWwgPj4gMTYpICYgMHhGRkZGOworIAkgIHZhbCA9IGNvbXZhbCAm IDB4RkZGRjsKKy0JICBzcHJpbnRmIChwbnQsICIlZDolZCIsIGFzLCB2YWwpOworKwkgIHNw cmludGYgKHBudCwgIiV1OiVkIiwgYXMsIHZhbCk7CisgCSAgcG50ICs9IHN0cmxlbiAocG50 KTsKKyAJICBicmVhazsKKyAJfQpkaWZmIC1ydU4gcXVhZ2dhLm9yaWcvZmlsZXMvcGF0Y2gt YmdwX2RlYnVnLmMgcXVhZ2dhL2ZpbGVzL3BhdGNoLWJncF9kZWJ1Zy5jCi0tLSBxdWFnZ2Eu b3JpZy9maWxlcy9wYXRjaC1iZ3BfZGVidWcuYwkxOTcwLTAxLTAxIDA3OjAwOjAwLjAwMDAw MDAwMCArMDcwMAorKysgcXVhZ2dhL2ZpbGVzL3BhdGNoLWJncF9kZWJ1Zy5jCTIwMDktMDUt MDQgMDM6MTc6MjMuOTM3NjY4ODYzICswODAwCkBAIC0wLDAgKzEsMTAgQEAKKy0tLSBiZ3Bk L2JncF9kZWJ1Zy5jLm9yaWcJMjAwOC0wOS0wNSAyMjoyNzoyNi4wMDAwMDAwMDAgKzA4MDAK KysrKyBiZ3BkL2JncF9kZWJ1Zy5jCTIwMDktMDQtMzAgMTY6MzM6NTYuMDAwMDAwMDAwICsw ODAwCitAQCAtMjA1LDcgKzIwNSw3IEBACisgICAgIHNucHJpbnRmIChidWYgKyBzdHJsZW4g KGJ1ZiksIHNpemUgLSBzdHJsZW4gKGJ1ZiksICIsIGF0b21pYy1hZ2dyZWdhdGUiKTsKKyAK KyAgIGlmIChDSEVDS19GTEFHIChhdHRyLT5mbGFnLCBBVFRSX0ZMQUdfQklUIChCR1BfQVRU Ul9BR0dSRUdBVE9SKSkpCistICAgIHNucHJpbnRmIChidWYgKyBzdHJsZW4gKGJ1ZiksIHNp emUgLSBzdHJsZW4gKGJ1ZiksICIsIGFnZ3JlZ2F0ZWQgYnkgJWQgJXMiLAorKyAgICBzbnBy aW50ZiAoYnVmICsgc3RybGVuIChidWYpLCBzaXplIC0gc3RybGVuIChidWYpLCAiLCBhZ2dy ZWdhdGVkIGJ5ICV1ICVzIiwKKyAJICAgICAgYXR0ci0+ZXh0cmEtPmFnZ3JlZ2F0b3JfYXMs CisgCSAgICAgIGluZXRfbnRvYSAoYXR0ci0+ZXh0cmEtPmFnZ3JlZ2F0b3JfYWRkcikpOwpk aWZmIC1ydU4gcXVhZ2dhLm9yaWcvZmlsZXMvcGF0Y2gtYmdwX2Vjb21tdW5pdHkuYyBxdWFn Z2EvZmlsZXMvcGF0Y2gtYmdwX2Vjb21tdW5pdHkuYwotLS0gcXVhZ2dhLm9yaWcvZmlsZXMv cGF0Y2gtYmdwX2Vjb21tdW5pdHkuYwkxOTcwLTAxLTAxIDA3OjAwOjAwLjAwMDAwMDAwMCAr MDcwMAorKysgcXVhZ2dhL2ZpbGVzL3BhdGNoLWJncF9lY29tbXVuaXR5LmMJMjAwOS0wNS0w NCAwMzowODoxOS43OTI1MTA3NDkgKzA4MDAKQEAgLTAsMCArMSwyMCBAQAorLS0tIGJncGQv YmdwX2Vjb21tdW5pdHkuYy5vcmlnCTIwMDgtMDktMDUgMjI6Mjc6MjYuMDAwMDAwMDAwICsw ODAwCisrKysgYmdwZC9iZ3BfZWNvbW11bml0eS5jCTIwMDktMDQtMzAgMTY6MzM6NTYuMDAw MDAwMDAwICswODAwCitAQCAtNjczLDcgKzY3Myw3IEBACisgCSAgZWFzLnZhbCA9ICgqcG50 KysgPDwgOCk7CisgCSAgZWFzLnZhbCB8PSAoKnBudCsrKTsKKyAKKy0JICBsZW4gPSBzcHJp bnRmKCBzdHJfYnVmICsgc3RyX3BudCwgIiVzJWQ6JWQiLCBwcmVmaXgsCisrCSAgbGVuID0g c3ByaW50Ziggc3RyX2J1ZiArIHN0cl9wbnQsICIlcyV1OiVkIiwgcHJlZml4LAorICAgICAg ICAgICAgICAgICAgICAgICAgIGVhcy5hcywgZWFzLnZhbCApOworIAkgIHN0cl9wbnQgKz0g bGVuOworIAkgIGZpcnN0ID0gMDsKK0BAIC02ODgsNyArNjg4LDcgQEAKKyAJICBlYXMudmFs IHw9ICgqcG50KysgPDwgOCk7CisgCSAgZWFzLnZhbCB8PSAoKnBudCsrKTsKKyAKKy0JICBs ZW4gPSBzcHJpbnRmIChzdHJfYnVmICsgc3RyX3BudCwgIiVzJWQ6JWQiLCBwcmVmaXgsCisr CSAgbGVuID0gc3ByaW50ZiAoc3RyX2J1ZiArIHN0cl9wbnQsICIlcyV1OiVkIiwgcHJlZml4 LAorIAkJCSBlYXMuYXMsIGVhcy52YWwpOworIAkgIHN0cl9wbnQgKz0gbGVuOworIAkgIGZp cnN0ID0gMDsKZGlmZiAtcnVOIHF1YWdnYS5vcmlnL2ZpbGVzL3BhdGNoLWJncF9wYWNrZXQu YyBxdWFnZ2EvZmlsZXMvcGF0Y2gtYmdwX3BhY2tldC5jCi0tLSBxdWFnZ2Eub3JpZy9maWxl cy9wYXRjaC1iZ3BfcGFja2V0LmMJMTk3MC0wMS0wMSAwNzowMDowMC4wMDAwMDAwMDAgKzA3 MDAKKysrIHF1YWdnYS9maWxlcy9wYXRjaC1iZ3BfcGFja2V0LmMJMjAwOS0wNS0wNCAwMzow OToxNS43MTMzOTczNDIgKzA4MDAKQEAgLTAsMCArMSwzOCBAQAorLS0tIGJncGQvYmdwX3Bh Y2tldC5jLm9yaWcJMjAwOC0wOS0xMCAwNDoxODo1Ny4wMDAwMDAwMDAgKzA4MDAKKysrKyBi Z3BkL2JncF9wYWNrZXQuYwkyMDA5LTA0LTMwIDE2OjMzOjU2LjAwMDAwMDAwMCArMDgwMAor QEAgLTgxMyw3ICs4MTMsNyBAQAorICAgbGVuZ3RoID0gYmdwX3BhY2tldF9zZXRfc2l6ZSAo cyk7CisgCisgICBpZiAoQkdQX0RFQlVHIChub3JtYWwsIE5PUk1BTCkpCistICAgIHpsb2df ZGVidWcgKCIlcyBzZW5kaW5nIE9QRU4sIHZlcnNpb24gJWQsIG15IGFzICVkLCBob2xkdGlt ZSAlZCwgaWQgJXMiLCAKKysgICAgemxvZ19kZWJ1ZyAoIiVzIHNlbmRpbmcgT1BFTiwgdmVy c2lvbiAlZCwgbXkgYXMgJXUsIGhvbGR0aW1lICVkLCBpZCAlcyIsIAorIAkgICAgICAgcGVl ci0+aG9zdCwgQkdQX1ZFUlNJT05fNCwgbG9jYWxfYXMsCisgCSAgICAgICBzZW5kX2hvbGR0 aW1lLCBpbmV0X250b2EgKHBlZXItPmxvY2FsX2lkKSk7CisgCitAQCAtMTE4NCw3ICsxMTg0 LDcgQEAKKyAKKyAgIC8qIFJlY2VpdmUgT1BFTiBtZXNzYWdlIGxvZyAgKi8KKyAgIGlmIChC R1BfREVCVUcgKG5vcm1hbCwgTk9STUFMKSkKKy0gICAgemxvZ19kZWJ1ZyAoIiVzIHJjdiBP UEVOLCB2ZXJzaW9uICVkLCByZW1vdGUtYXMgKGluIG9wZW4pICVkLCIKKysgICAgemxvZ19k ZWJ1ZyAoIiVzIHJjdiBPUEVOLCB2ZXJzaW9uICVkLCByZW1vdGUtYXMgKGluIG9wZW4pICV1 LCIKKyAgICAgICAgICAgICAgICAgIiBob2xkdGltZSAlZCwgaWQgJXMiLAorIAkgICAgICAg IHBlZXItPmhvc3QsIHZlcnNpb24sIHJlbW90ZV9hcywgaG9sZHRpbWUsCisgCSAgICAgICAg aW5ldF9udG9hIChyZW1vdGVfaWQpKTsKK0BAIC0xMjc3LDcgKzEyNzcsNyBAQAorIAkgIGVs c2UKKyAJICAgIHsKKyAJICAgICAgaWYgKEJHUF9ERUJVRyAobm9ybWFsLCBOT1JNQUwpKQor LQkJemxvZ19kZWJ1ZyAoIiVzIGJhZCBPUEVOLCByZW1vdGUgQVMgaXMgJWQsIGV4cGVjdGVk ICVkIiwKKysJCXpsb2dfZGVidWcgKCIlcyBiYWQgT1BFTiwgcmVtb3RlIEFTIGlzICV1LCBl eHBlY3RlZCAldSIsCisgCQkJICAgIHBlZXItPmhvc3QsIHJlbW90ZV9hcywgcGVlci0+YXMp OworIAkgICAgICBiZ3Bfbm90aWZ5X3NlbmRfd2l0aF9kYXRhIChwZWVyLCBCR1BfTk9USUZZ X09QRU5fRVJSLAorIAkJCQkJIEJHUF9OT1RJRllfT1BFTl9CQURfUEVFUl9BUywKK0BAIC0x NDMwLDcgKzE0MzAsNyBAQAorICAgaWYgKHJlbW90ZV9hcyAhPSBwZWVyLT5hcykKKyAgICAg eworICAgICAgIGlmIChCR1BfREVCVUcgKG5vcm1hbCwgTk9STUFMKSkKKy0JemxvZ19kZWJ1 ZyAoIiVzIGJhZCBPUEVOLCByZW1vdGUgQVMgaXMgJWQsIGV4cGVjdGVkICVkIiwKKysJemxv Z19kZWJ1ZyAoIiVzIGJhZCBPUEVOLCByZW1vdGUgQVMgaXMgJXUsIGV4cGVjdGVkICV1IiwK KyAJCSAgIHBlZXItPmhvc3QsIHJlbW90ZV9hcywgcGVlci0+YXMpOworICAgICAgIGJncF9u b3RpZnlfc2VuZF93aXRoX2RhdGEgKHBlZXIsIAorIAkJCQkgQkdQX05PVElGWV9PUEVOX0VS UiwgCmRpZmYgLXJ1TiBxdWFnZ2Eub3JpZy9maWxlcy9wYXRjaC1iZ3Bfcm91dGUuYyBxdWFn Z2EvZmlsZXMvcGF0Y2gtYmdwX3JvdXRlLmMKLS0tIHF1YWdnYS5vcmlnL2ZpbGVzL3BhdGNo LWJncF9yb3V0ZS5jCTE5NzAtMDEtMDEgMDc6MDA6MDAuMDAwMDAwMDAwICswNzAwCisrKyBx dWFnZ2EvZmlsZXMvcGF0Y2gtYmdwX3JvdXRlLmMJMjAwOS0wNS0wNCAwMzoxMDoyMS4yMTIw OTE0NTAgKzA4MDAKQEAgLTAsMCArMSwzOCBAQAorLS0tIGJncGQvYmdwX3JvdXRlLmMub3Jp ZwkyMDA4LTEwLTAyIDE2OjI4OjUwLjAwMDAwMDAwMCArMDgwMAorKysrIGJncGQvYmdwX3Jv dXRlLmMJMjAwOS0wNC0zMCAxNjozMzo1Ni4wMDAwMDAwMDAgKzA4MDAKK0BAIC04MzQsNyAr ODM0LDcgQEAKKyAgICAgeworICAgICAgIGlmIChCR1BfREVCVUcgKGZpbHRlciwgRklMVEVS KSkgIAorICAgICAgICAgemxvZyAocGVlci0+bG9nLCBMT0dfREVCVUcsIAorLQkgICAgICAi JXMgW1VwZGF0ZTpTRU5EXSBzdXBwcmVzcyBhbm5vdW5jZW1lbnQgdG8gcGVlciBBUyAlZCBp cyBBUyBwYXRoLiIsCisrCSAgICAgICIlcyBbVXBkYXRlOlNFTkRdIHN1cHByZXNzIGFubm91 bmNlbWVudCB0byBwZWVyIEFTICV1IGlzIEFTIHBhdGguIiwKKyAJICAgICAgcGVlci0+aG9z dCwgcGVlci0+YXMpOworICAgICAgIHJldHVybiAwOworICAgICB9CitAQCAtODQ3LDcgKzg0 Nyw3IEBACisgCXsKKyAJICBpZiAoQkdQX0RFQlVHIChmaWx0ZXIsIEZJTFRFUikpICAKKyAJ ICAgIHpsb2cgKHBlZXItPmxvZywgTE9HX0RFQlVHLCAKKy0JCSAgIiVzIFtVcGRhdGU6U0VO RF0gc3VwcHJlc3MgYW5ub3VuY2VtZW50IHRvIHBlZXIgQVMgJWQgaXMgQVMgcGF0aC4iLAor KwkJICAiJXMgW1VwZGF0ZTpTRU5EXSBzdXBwcmVzcyBhbm5vdW5jZW1lbnQgdG8gcGVlciBB UyAldSBpcyBBUyBwYXRoLiIsCisgCQkgIHBlZXItPmhvc3QsCisgCQkgIGJncC0+Y29uZmVk X2lkKTsKKyAJICByZXR1cm4gMDsKK0BAIC0xMTYzLDcgKzExNjMsNyBAQAorICAgICB7Cisg ICAgICAgaWYgKEJHUF9ERUJVRyAoZmlsdGVyLCBGSUxURVIpKQorICAgICAgICAgemxvZyAo cnNjbGllbnQtPmxvZywgTE9HX0RFQlVHLAorLSAgICAgICAgICAgICAiJXMgW1VwZGF0ZTpT RU5EXSBzdXBwcmVzcyBhbm5vdW5jZW1lbnQgdG8gcGVlciBBUyAlZCBpcyBBUyBwYXRoLiIs CisrICAgICAgICAgICAgICIlcyBbVXBkYXRlOlNFTkRdIHN1cHByZXNzIGFubm91bmNlbWVu dCB0byBwZWVyIEFTICV1IGlzIEFTIHBhdGguIiwKKyAgICAgICAgICAgICAgcnNjbGllbnQt Pmhvc3QsIHJzY2xpZW50LT5hcyk7CisgICAgICAgcmV0dXJuIDA7CisgICAgIH0KK0BAIC01 OTU2LDcgKzU5NTYsNyBAQAorICAgICAgIGlmIChDSEVDS19GTEFHIChiaW5mby0+ZmxhZ3Ms IEJHUF9JTkZPX1NUQUxFKSkKKyAJdnR5X291dCAodnR5LCAiLCAoc3RhbGUpIik7CisgICAg ICAgaWYgKENIRUNLX0ZMQUcgKGF0dHItPmZsYWcsIEFUVFJfRkxBR19CSVQgKEJHUF9BVFRS X0FHR1JFR0FUT1IpKSkKKy0JdnR5X291dCAodnR5LCAiLCAoYWdncmVnYXRlZCBieSAlZCAl cykiLCAKKysJdnR5X291dCAodnR5LCAiLCAoYWdncmVnYXRlZCBieSAldSAlcykiLCAKKyAJ ICAgICAgICAgYXR0ci0+ZXh0cmEtPmFnZ3JlZ2F0b3JfYXMsCisgCQkgaW5ldF9udG9hIChh dHRyLT5leHRyYS0+YWdncmVnYXRvcl9hZGRyKSk7CisgICAgICAgaWYgKENIRUNLX0ZMQUcg KGJpbmZvLT5wZWVyLT5hZl9mbGFnc1thZmldW3NhZmldLCBQRUVSX0ZMQUdfUkVGTEVDVE9S X0NMSUVOVCkpCmRpZmYgLXJ1TiBxdWFnZ2Eub3JpZy9maWxlcy9wYXRjaC1iZ3BfdnR5LmMg cXVhZ2dhL2ZpbGVzL3BhdGNoLWJncF92dHkuYwotLS0gcXVhZ2dhLm9yaWcvZmlsZXMvcGF0 Y2gtYmdwX3Z0eS5jCTE5NzAtMDEtMDEgMDc6MDA6MDAuMDAwMDAwMDAwICswNzAwCisrKyBx dWFnZ2EvZmlsZXMvcGF0Y2gtYmdwX3Z0eS5jCTIwMDktMDUtMDQgMDM6MTE6MTQuMzkxMDMy OTA4ICswODAwCkBAIC0wLDAgKzEsNzYgQEAKKy0tLSBiZ3BkL2JncF92dHkuYy5vcmlnCTIw MDgtMDktMTEgMTM6NDY6NDkuMDAwMDAwMDAwICswODAwCisrKysgYmdwZC9iZ3BfdnR5LmMJ MjAwOS0wNC0zMCAxNjozMzo1Ni4wMDAwMDAwMDAgKzA4MDAKK0BAIC0zMzQsMTEgKzMzNCwx MSBAQAorIAkgICAgICAgVlRZX05FV0xJTkUpOworICAgICAgIHJldHVybiBDTURfV0FSTklO RzsKKyAgICAgY2FzZSBCR1BfRVJSX0FTX01JU01BVENIOgorLSAgICAgIHZ0eV9vdXQgKHZ0 eSwgIkJHUCBpcyBhbHJlYWR5IHJ1bm5pbmc7IEFTIGlzICVkJXMiLCBhcywgVlRZX05FV0xJ TkUpOworKyAgICAgIHZ0eV9vdXQgKHZ0eSwgIkJHUCBpcyBhbHJlYWR5IHJ1bm5pbmc7IEFT IGlzICV1JXMiLCBhcywgVlRZX05FV0xJTkUpOworICAgICAgIHJldHVybiBDTURfV0FSTklO RzsKKyAgICAgY2FzZSBCR1BfRVJSX0lOU1RBTkNFX01JU01BVENIOgorICAgICAgIHZ0eV9v dXQgKHZ0eSwgIkJHUCB2aWV3IG5hbWUgYW5kIEFTIG51bWJlciBtaXNtYXRjaCVzIiwgVlRZ X05FV0xJTkUpOworLSAgICAgIHZ0eV9vdXQgKHZ0eSwgIkJHUCBpbnN0YW5jZSBpcyBhbHJl YWR5IHJ1bm5pbmc7IEFTIGlzICVkJXMiLAorKyAgICAgIHZ0eV9vdXQgKHZ0eSwgIkJHUCBp bnN0YW5jZSBpcyBhbHJlYWR5IHJ1bm5pbmc7IEFTIGlzICV1JXMiLAorIAkgICAgICAgYXMs IFZUWV9ORVdMSU5FKTsKKyAgICAgICByZXR1cm4gQ01EX1dBUk5JTkc7CisgICAgIH0KK0BA IC0xMjgwLDEwICsxMjgwLDEwIEBACisgICBzd2l0Y2ggKHJldCkKKyAgICAgeworICAgICBj YXNlIEJHUF9FUlJfUEVFUl9HUk9VUF9NRU1CRVI6CistICAgICAgdnR5X291dCAodnR5LCAi JSUgUGVlci1ncm91cCBBUyAlZC4gQ2Fubm90IGNvbmZpZ3VyZSByZW1vdGUtYXMgZm9yIG1l bWJlciVzIiwgYXMsIFZUWV9ORVdMSU5FKTsKKysgICAgICB2dHlfb3V0ICh2dHksICIlJSBQ ZWVyLWdyb3VwIEFTICV1LiBDYW5ub3QgY29uZmlndXJlIHJlbW90ZS1hcyBmb3IgbWVtYmVy JXMiLCBhcywgVlRZX05FV0xJTkUpOworICAgICAgIHJldHVybiBDTURfV0FSTklORzsKKyAg ICAgY2FzZSBCR1BfRVJSX1BFRVJfR1JPVVBfUEVFUl9UWVBFX0RJRkZFUkVOVDoKKy0gICAg ICB2dHlfb3V0ICh2dHksICIlJSBUaGUgQVMjIGNhbiBub3QgYmUgY2hhbmdlZCBmcm9tICVk IHRvICVzLCBwZWVyLWdyb3VwIG1lbWJlcnMgbXVzdCBiZSBhbGwgaW50ZXJuYWwgb3IgYWxs IGV4dGVybmFsJXMiLCBhcywgYXNfc3RyLCBWVFlfTkVXTElORSk7CisrICAgICAgdnR5X291 dCAodnR5LCAiJSUgVGhlIEFTIyBjYW4gbm90IGJlIGNoYW5nZWQgZnJvbSAldSB0byAlcywg cGVlci1ncm91cCBtZW1iZXJzIG11c3QgYmUgYWxsIGludGVybmFsIG9yIGFsbCBleHRlcm5h bCVzIiwgYXMsIGFzX3N0ciwgVlRZX05FV0xJTkUpOworICAgICAgIHJldHVybiBDTURfV0FS TklORzsKKyAgICAgfQorICAgcmV0dXJuIGJncF92dHlfcmV0dXJuICh2dHksIHJldCk7CitA QCAtMTYwMSw3ICsxNjAxLDcgQEAKKyAKKyAgIGlmIChyZXQgPT0gQkdQX0VSUl9QRUVSX0dS T1VQX1BFRVJfVFlQRV9ESUZGRVJFTlQpCisgICAgIHsKKy0gICAgICB2dHlfb3V0ICh2dHks ICIlJSBQZWVyIHdpdGggQVMgJWQgY2Fubm90IGJlIGluIHRoaXMgcGVlci1ncm91cCwgbWVt YmVycyBtdXN0IGJlIGFsbCBpbnRlcm5hbCBvciBhbGwgZXh0ZXJuYWwlcyIsIGFzLCBWVFlf TkVXTElORSk7CisrICAgICAgdnR5X291dCAodnR5LCAiJSUgUGVlciB3aXRoIEFTICV1IGNh bm5vdCBiZSBpbiB0aGlzIHBlZXItZ3JvdXAsIG1lbWJlcnMgbXVzdCBiZSBhbGwgaW50ZXJu YWwgb3IgYWxsIGV4dGVybmFsJXMiLCBhcywgVlRZX05FV0xJTkUpOworICAgICAgIHJldHVy biBDTURfV0FSTklORzsKKyAgICAgfQorIAorQEAgLTY2NjksNyArNjY2OSw3IEBACisgICAg ICAgICAgICAgICAKKyAgICAgICAgICAgICAgIC8qIFVzYWdlIHN1bW1hcnkgYW5kIGhlYWRl ciAqLworICAgICAgICAgICAgICAgdnR5X291dCAodnR5LAorLSAgICAgICAgICAgICAgICAg ICAgICAgIkJHUCByb3V0ZXIgaWRlbnRpZmllciAlcywgbG9jYWwgQVMgbnVtYmVyICVkJXMi LAorKyAgICAgICAgICAgICAgICAgICAgICAgIkJHUCByb3V0ZXIgaWRlbnRpZmllciAlcywg bG9jYWwgQVMgbnVtYmVyICV1JXMiLAorICAgICAgICAgICAgICAgICAgICAgICAgaW5ldF9u dG9hIChiZ3AtPnJvdXRlcl9pZCksIGJncC0+YXMsIFZUWV9ORVdMSU5FKTsKKyAKKyAgICAg ICAgICAgICAgIGVudHMgPSBiZ3BfdGFibGVfY291bnQgKGJncC0+cmliW2FmaV1bc2FmaV0p OworQEAgLTY3MTYsNyArNjcxNiw3IEBACisgCisgCSAgdnR5X291dCAodnR5LCAiNCAiKTsK KyAKKy0JICB2dHlfb3V0ICh2dHksICIlNWQgJTdkICU3ZCAlOGQgJTRkICU0bHUgIiwKKysJ ICB2dHlfb3V0ICh2dHksICIlNXUgJTdkICU3ZCAlOGQgJTRkICU0bHUgIiwKKyAJCSAgIHBl ZXItPmFzLAorIAkJICAgcGVlci0+b3Blbl9pbiArIHBlZXItPnVwZGF0ZV9pbiArIHBlZXIt PmtlZXBhbGl2ZV9pbgorIAkJICAgKyBwZWVyLT5ub3RpZnlfaW4gKyBwZWVyLT5yZWZyZXNo X2luICsgcGVlci0+ZHluYW1pY19jYXBfaW4sCitAQCAtNzIyNiw4ICs3MjI2LDggQEAKKyAK KyAgIC8qIENvbmZpZ3VyZWQgSVAgYWRkcmVzcy4gKi8KKyAgIHZ0eV9vdXQgKHZ0eSwgIkJH UCBuZWlnaGJvciBpcyAlcywgIiwgcC0+aG9zdCk7CistICB2dHlfb3V0ICh2dHksICJyZW1v dGUgQVMgJWQsICIsIHAtPmFzKTsKKy0gIHZ0eV9vdXQgKHZ0eSwgImxvY2FsIEFTICVkJXMs ICIsCisrICB2dHlfb3V0ICh2dHksICJyZW1vdGUgQVMgJXUsICIsIHAtPmFzKTsKKysgIHZ0 eV9vdXQgKHZ0eSwgImxvY2FsIEFTICV1JXMsICIsCisgCSAgIHAtPmNoYW5nZV9sb2NhbF9h cyA/IHAtPmNoYW5nZV9sb2NhbF9hcyA6IHAtPmxvY2FsX2FzLAorIAkgICBDSEVDS19GTEFH IChwLT5mbGFncywgUEVFUl9GTEFHX0xPQ0FMX0FTX05PX1BSRVBFTkQpID8KKyAJICAgIiBu by1wcmVwZW5kIiA6ICIiKTsKK0BAIC04MDA5LDcgKzgwMDksNyBAQAorICAgICAgICAgICAg ICAgICAgICAgICAiUm91dGUgU2VydmVyJ3MgQkdQIHJvdXRlciBpZGVudGlmaWVyICVzJXMi LAorICAgICAgICAgICAgICAgICAgICAgICBpbmV0X250b2EgKGJncC0+cm91dGVyX2lkKSwg VlRZX05FV0xJTkUpOworICAgICAgICAgICAgICB2dHlfb3V0ICh2dHksCistICAgICAgICAg ICAgICAiUm91dGUgU2VydmVyJ3MgbG9jYWwgQVMgbnVtYmVyICVkJXMiLCBiZ3AtPmFzLAor KyAgICAgICAgICAgICAgIlJvdXRlIFNlcnZlcidzIGxvY2FsIEFTIG51bWJlciAldSVzIiwg YmdwLT5hcywKKyAgICAgICAgICAgICAgICAgICAgICAgIFZUWV9ORVdMSU5FKTsKKyAKKyAg ICAgICAgICAgICAgdnR5X291dCAodnR5LCAiJXMiLCBWVFlfTkVXTElORSk7CmRpZmYgLXJ1 TiBxdWFnZ2Eub3JpZy9maWxlcy9wYXRjaC1iZ3BkLmMgcXVhZ2dhL2ZpbGVzL3BhdGNoLWJn cGQuYwotLS0gcXVhZ2dhLm9yaWcvZmlsZXMvcGF0Y2gtYmdwZC5jCTE5NzAtMDEtMDEgMDc6 MDA6MDAuMDAwMDAwMDAwICswNzAwCisrKyBxdWFnZ2EvZmlsZXMvcGF0Y2gtYmdwZC5jCTIw MDktMDUtMDQgMDM6MTE6MzcuMTg2NTc3ODcyICswODAwCkBAIC0wLDAgKzEsNDUgQEAKKy0t LSBiZ3BkL2JncGQuYy5vcmlnCTIwMDgtMDktMTEgMTM6NDY6NDkuMDAwMDAwMDAwICswODAw CisrKysgYmdwZC9iZ3BkLmMJMjAwOS0wNC0zMCAxNjozMzo1Ni4wMDAwMDAwMDAgKzA4MDAK K0BAIC00NTEyLDEzICs0NTEyLDEzIEBACisgCSAgICB2dHlfb3V0ICh2dHksICIgbmVpZ2hi b3IgJXMgcGVlci1ncm91cCVzIiwgYWRkciwKKyAJCSAgICAgVlRZX05FV0xJTkUpOworIAkg IGlmIChwZWVyLT5hcykKKy0JICAgIHZ0eV9vdXQgKHZ0eSwgIiBuZWlnaGJvciAlcyByZW1v dGUtYXMgJWQlcyIsIGFkZHIsIHBlZXItPmFzLAorKwkgICAgdnR5X291dCAodnR5LCAiIG5l aWdoYm9yICVzIHJlbW90ZS1hcyAldSVzIiwgYWRkciwgcGVlci0+YXMsCisgCQkgICAgIFZU WV9ORVdMSU5FKTsKKyAJfQorICAgICAgIGVsc2UKKyAJeworIAkgIGlmICghIGdfcGVlci0+ YXMpCistCSAgICB2dHlfb3V0ICh2dHksICIgbmVpZ2hib3IgJXMgcmVtb3RlLWFzICVkJXMi LCBhZGRyLCBwZWVyLT5hcywKKysJICAgIHZ0eV9vdXQgKHZ0eSwgIiBuZWlnaGJvciAlcyBy ZW1vdGUtYXMgJXUlcyIsIGFkZHIsIHBlZXItPmFzLAorIAkJICAgICBWVFlfTkVXTElORSk7 CisgCSAgaWYgKHBlZXItPmFmX2dyb3VwW0FGSV9JUF1bU0FGSV9VTklDQVNUXSkKKyAJICAg IHZ0eV9vdXQgKHZ0eSwgIiBuZWlnaGJvciAlcyBwZWVyLWdyb3VwICVzJXMiLCBhZGRyLAor QEAgLTQ1MjgsNyArNDUyOCw3IEBACisgICAgICAgLyogbG9jYWwtYXMuICovCisgICAgICAg aWYgKHBlZXItPmNoYW5nZV9sb2NhbF9hcykKKyAJaWYgKCEgcGVlcl9ncm91cF9hY3RpdmUg KHBlZXIpKQorLQkgIHZ0eV9vdXQgKHZ0eSwgIiBuZWlnaGJvciAlcyBsb2NhbC1hcyAlZCVz JXMiLCBhZGRyLAorKwkgIHZ0eV9vdXQgKHZ0eSwgIiBuZWlnaGJvciAlcyBsb2NhbC1hcyAl dSVzJXMiLCBhZGRyLAorIAkJICAgcGVlci0+Y2hhbmdlX2xvY2FsX2FzLAorIAkJICAgQ0hF Q0tfRkxBRyAocGVlci0+ZmxhZ3MsIFBFRVJfRkxBR19MT0NBTF9BU19OT19QUkVQRU5EKSA/ CisgCQkgICAiIG5vLXByZXBlbmQiIDogIiIsIFZUWV9ORVdMSU5FKTsKK0BAIC00OTE3LDcg KzQ5MTcsNyBAQAorIAl2dHlfb3V0ICh2dHksICIhJXMiLCBWVFlfTkVXTElORSk7CisgCisg ICAgICAgLyogUm91dGVyIGJncCBBU04gKi8KKy0gICAgICB2dHlfb3V0ICh2dHksICJyb3V0 ZXIgYmdwICVkIiwgYmdwLT5hcyk7CisrICAgICAgdnR5X291dCAodnR5LCAicm91dGVyIGJn cCAldSIsIGJncC0+YXMpOworIAorICAgICAgIGlmIChiZ3Bfb3B0aW9uX2NoZWNrIChCR1Bf T1BUX01VTFRJUExFX0lOU1RBTkNFKSkKKyAJeworQEAgLTQ5NzgsNyArNDk3OCw3IEBACisg CSAgdnR5X291dCAodnR5LCAiIGJncCBjb25mZWRlcmF0aW9uIHBlZXJzIik7CisgCisgICAg ICAgICAgZm9yIChpID0gMDsgaSA8IGJncC0+Y29uZmVkX3BlZXJzX2NudDsgaSsrKQorLSAg ICAgICAgICAgdnR5X291dCh2dHksICIgJWQiLCBiZ3AtPmNvbmZlZF9wZWVyc1tpXSk7Cisr ICAgICAgICAgICB2dHlfb3V0KHZ0eSwgIiAldSIsIGJncC0+Y29uZmVkX3BlZXJzW2ldKTsK KyAKKyAgICAgICAgICAgdnR5X291dCAodnR5LCAiJXMiLCBWVFlfTkVXTElORSk7CisgCX0K --------------080206010508010105030701-- From wxs at FreeBSD.org Sun May 3 22:30:45 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Sun May 3 22:30:51 2009 Subject: ports/134175: [maintainer-update] net-mgmt/nagios*: Resolve embedded Perl segmentation faults Message-ID: <200905032230.n43MUir2070606@freefall.freebsd.org> Synopsis: [maintainer-update] net-mgmt/nagios*: Resolve embedded Perl segmentation faults Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Sun May 3 22:30:44 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134175 From wxs at FreeBSD.org Sun May 3 22:50:42 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Sun May 3 22:50:48 2009 Subject: ports/134108: net/quagga: bgpd aborts on receiving ASN32 announces Message-ID: <200905032250.n43MofEV097362@freefall.freebsd.org> Synopsis: net/quagga: bgpd aborts on receiving ASN32 announces Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Sun May 3 22:50:41 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134108 From wxs at FreeBSD.org Sun May 3 23:06:58 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Sun May 3 23:07:05 2009 Subject: ports/131515: net/isc-dhcp30-server bulding fails on -STABLE Message-ID: <200905032306.n43N6v5Z019862@freefall.freebsd.org> Synopsis: net/isc-dhcp30-server bulding fails on -STABLE Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Sun May 3 23:06:57 UTC 2009 Responsible-Changed-Why: I will have time this week to work on this. http://www.freebsd.org/cgi/query-pr.cgi?pr=131515 From giffunip at tutopia.com Mon May 4 00:30:02 2009 From: giffunip at tutopia.com (Pedro F. Giffuni) Date: Mon May 4 00:30:08 2009 Subject: ports/134195: Add octave knob for math/plplot Message-ID: <200905040025.n440PGvi047555@www.freebsd.org> >Number: 134195 >Category: ports >Synopsis: Add octave knob for math/plplot >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon May 04 00:30:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 7.2-RC2 >Organization: >Environment: FreeBSD kakumen.cable.net.co 7.2-RC2 FreeBSD 7.2-RC2 #1: Sun May 3 11:06:43 COT 2009 pedro@kakumen.cable.net.co:/usr/src/sys/amd64/compile/GENERIC.Dell amd64 >Description: - Add knob for Octave support. (untested) - Remove myself as maintainer: my job doesn't leave me enough time to finish the change of the build system to CMake. >How-To-Repeat: >Fix: diff -ruN plplot.orig/Makefile plplot/Makefile --- plplot.orig/Makefile 2009-01-11 22:27:03.000000000 -0500 +++ plplot/Makefile 2009-05-03 19:15:21.000000000 -0500 @@ -11,7 +11,7 @@ CATEGORIES= math science MASTER_SITES= SF -MAINTAINER= giffunip@tutopia.com +MAINTAINER= ports@FreeBSD.org COMMENT= A scientific plotting package LIB_DEPENDS= unicode.0:${PORTSDIR}/devel/libunicode \ @@ -67,8 +67,16 @@ CONFIGURE_ARGS+= --disable-gcw .endif +.if defined(WITH_OCTAVE) +CONFIGURE_ARGS+= --enable-octave +BUILD_DEPENDS+= octave:${PORTSDIR}/math/octave +PLIST_SUB+= OCTAVE="" +.else +PLIST_SUB+= OCTAVE="@comment " +.endif + .if defined(WITH_PYTHON) -BROKEN= does not build +BROKEN= Broken with PYTHON USE_PYTHON= yes PLIST_SUB+= PYTHON="" CONFIGURE_ENV+= PYTHON_VERSION="${PYTHON_VERSION}" @@ -114,6 +122,7 @@ @${ECHO_MSG} " WITHOUT_X11=yes Turns off X11 support" @${ECHO_MSG} " WITH_FORTRAN=yes Turns on Fortran support" @${ECHO_MSG} " WITH_GNOME=yes Turns on GNOME driver support" + @${ECHO_MSG} " WITH_OCTAVE=yes Turns on Octave support" @${ECHO_MSG} " WITH_PYTHON=yes Turns on Python support" @${ECHO_MSG} " WITH_SVGALIB=yes Turns on SVGAlib support" @${ECHO_MSG} " WITH_TCLTK=yes Turns on Tcl/Tk support" diff -ruN plplot.orig/pkg-plist plplot/pkg-plist --- plplot.orig/pkg-plist 2009-01-11 22:27:03.000000000 -0500 +++ plplot/pkg-plist 2009-05-03 19:14:35.000000000 -0500 @@ -422,6 +422,184 @@ %%GNOME%%%%DATADIR%%%%VERSION%%/examples/c/plplotcanvas_demo.c %%FORTRAN%%@dirrm %%DATADIR%%%%VERSION%%/examples/f95 %%FORTRAN%%@dirrm %%DATADIR%%%%VERSION%%/examples/f77 +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/diffn.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/gradn.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/lena.img +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p1.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p10.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p11.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p12.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p13.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p14.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p15.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p16.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p17.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p18.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p19.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p2.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p20.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p21.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p3.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p4.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p5.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p6.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p7.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p8.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/p9.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/plplot_octave_demo.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/rosenbrock.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x01c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x02c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x03c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x04c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x05c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x06c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x07c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x08c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x09c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x10c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x11c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x12c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x13c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x14c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x15c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x16c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x17c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x18c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x19c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/octave/x22c.m +%%OCTAVE%%share/plplot%%VERSION%%/examples/test_octave.sh +%%OCTAVE%%@dirrm share/plplot%%VERSION%%/examples/octave/ +%%OCTAVE%%share/plplot_octave/arrow.m +%%OCTAVE%%share/plplot_octave/arrows.m +%%OCTAVE%%share/plplot_octave/autostyle.m +%%OCTAVE%%share/plplot_octave/axis.m +%%OCTAVE%%share/plplot_octave/axis_set.m +%%OCTAVE%%share/plplot_octave/bgr.m +%%OCTAVE%%share/plplot_octave/blue.m +%%OCTAVE%%share/plplot_octave/bone.m +%%OCTAVE%%share/plplot_octave/bottom_title.m +%%OCTAVE%%share/plplot_octave/clip.m +%%OCTAVE%%share/plplot_octave/closeallfig.m +%%OCTAVE%%share/plplot_octave/closefig.m +%%OCTAVE%%share/plplot_octave/colormap.m +%%OCTAVE%%share/plplot_octave/comet.m +%%OCTAVE%%share/plplot_octave/contour.m +%%OCTAVE%%share/plplot_octave/cool.m +%%OCTAVE%%share/plplot_octave/copper.m +%%OCTAVE%%share/plplot_octave/drawnow.m +%%OCTAVE%%share/plplot_octave/fig.m +%%OCTAVE%%share/plplot_octave/fig_raise.m +%%OCTAVE%%share/plplot_octave/fig_state.m +%%OCTAVE%%share/plplot_octave/figure.m +%%OCTAVE%%share/plplot_octave/fill.m +%%OCTAVE%%share/plplot_octave/free_fig.m +%%OCTAVE%%share/plplot_octave/ginput.m +%%OCTAVE%%share/plplot_octave/green.m +%%OCTAVE%%share/plplot_octave/grid.m +%%OCTAVE%%share/plplot_octave/griddata.m +%%OCTAVE%%share/plplot_octave/gtext.m +%%OCTAVE%%share/plplot_octave/hls2rgb.m +%%OCTAVE%%share/plplot_octave/hot.m +%%OCTAVE%%share/plplot_octave/hsv.m +%%OCTAVE%%share/plplot_octave/label_plot.m +%%OCTAVE%%share/plplot_octave/legend.m +%%OCTAVE%%share/plplot_octave/loglog.m +%%OCTAVE%%share/plplot_octave/lp_setup.m +%%OCTAVE%%share/plplot_octave/mesh.m +%%OCTAVE%%share/plplot_octave/meshc.m +%%OCTAVE%%share/plplot_octave/meshz.m +%%OCTAVE%%share/plplot_octave/mplot.m +%%OCTAVE%%share/plplot_octave/multiplot.m +%%OCTAVE%%share/plplot_octave/oneplot.m +%%OCTAVE%%share/plplot_octave/peaks.m +%%OCTAVE%%share/plplot_octave/pink.m +%%OCTAVE%%share/plplot_octave/plclearplot.m +%%OCTAVE%%share/plplot_octave/plclg.m +%%OCTAVE%%share/plplot_octave/plcolormap.m +%%OCTAVE%%share/plplot_octave/pldef.m +%%OCTAVE%%share/plplot_octave/plimage.m +%%OCTAVE%%share/plplot_octave/plot.m +%%OCTAVE%%share/plplot_octave/plot3.m +%%OCTAVE%%share/plplot_octave/plot_border.m +%%OCTAVE%%share/plplot_octave/plot_margin.m +%%OCTAVE%%share/plplot_octave/plplot_stub.m +%%OCTAVE%%share/plplot_octave/plrb.m +%%OCTAVE%%share/plplot_octave/plsetopt.m +%%OCTAVE%%share/plplot_octave/polar.m +%%OCTAVE%%share/plplot_octave/prism.m +%%OCTAVE%%share/plplot_octave/red.m +%%OCTAVE%%share/plplot_octave/rgb2hls.m +%%OCTAVE%%share/plplot_octave/rgbplot.m +%%OCTAVE%%share/plplot_octave/save_fig.m +%%OCTAVE%%share/plplot_octave/semilogx.m +%%OCTAVE%%share/plplot_octave/semilogy.m +%%OCTAVE%%share/plplot_octave/set_view.m +%%OCTAVE%%share/plplot_octave/shade.m +%%OCTAVE%%share/plplot_octave/shading.m +%%OCTAVE%%share/plplot_octave/shg.m +%%OCTAVE%%share/plplot_octave/stopdraw.m +%%OCTAVE%%share/plplot_octave/stripc.m +%%OCTAVE%%share/plplot_octave/stripc_add.m +%%OCTAVE%%share/plplot_octave/stripc_del.m +%%OCTAVE%%share/plplot_octave/struct_contains.m +%%OCTAVE%%share/plplot_octave/subplot.m +%%OCTAVE%%share/plplot_octave/subwindow.m +%%OCTAVE%%share/plplot_octave/support/__comet.m +%%OCTAVE%%share/plplot_octave/support/__pl_contour.m +%%OCTAVE%%share/plplot_octave/support/__pl_draw_legend.m +%%OCTAVE%%share/plplot_octave/support/__pl_fill.m +%%OCTAVE%%share/plplot_octave/support/__pl_init.m +%%OCTAVE%%share/plplot_octave/support/__pl_logplotit.m +%%OCTAVE%%share/plplot_octave/support/__pl_matstr.m +%%OCTAVE%%share/plplot_octave/support/__pl_mesh.m +%%OCTAVE%%share/plplot_octave/support/__pl_meshplotit.m +%%OCTAVE%%share/plplot_octave/support/__pl_opt.m +%%OCTAVE%%share/plplot_octave/support/__pl_plenv.m +%%OCTAVE%%share/plplot_octave/support/__pl_plot3.m +%%OCTAVE%%share/plplot_octave/support/__pl_plotit.m +%%OCTAVE%%share/plplot_octave/support/__pl_pltext.m +%%OCTAVE%%share/plplot_octave/support/__pl_polargrid.m +%%OCTAVE%%share/plplot_octave/support/__pl_store.m +%%OCTAVE%%share/plplot_octave/support/__plr1__.m +%%OCTAVE%%share/plplot_octave/support/__plr2__.m +%%OCTAVE%%share/plplot_octave/support/__plr__.m +%%OCTAVE%%share/plplot_octave/support/__plt1__.m +%%OCTAVE%%share/plplot_octave/support/__plt2__.m +%%OCTAVE%%share/plplot_octave/support/__plt2mm__.m +%%OCTAVE%%share/plplot_octave/support/__plt2mv__.m +%%OCTAVE%%share/plplot_octave/support/__plt2ss__.m +%%OCTAVE%%share/plplot_octave/support/__plt2vm__.m +%%OCTAVE%%share/plplot_octave/support/__plt2vv__.m +%%OCTAVE%%share/plplot_octave/support/__plt__.m +%%OCTAVE%%share/plplot_octave/support/is_strmatrix.m +%%OCTAVE%%share/plplot_octave/support/is_strvector.m +%%OCTAVE%%share/plplot_octave/surf.m +%%OCTAVE%%share/plplot_octave/surfc.m +%%OCTAVE%%share/plplot_octave/surfl.m +%%OCTAVE%%share/plplot_octave/tdeblank.m +%%OCTAVE%%share/plplot_octave/text.m +%%OCTAVE%%share/plplot_octave/title.m +%%OCTAVE%%share/plplot_octave/top_title.m +%%OCTAVE%%share/plplot_octave/xlabel.m +%%OCTAVE%%share/plplot_octave/xticks.m +%%OCTAVE%%share/plplot_octave/ylabel.m +%%OCTAVE%%share/plplot_octave/yticks.m +%%OCTAVE%%share/plplot_octave/zlabel.m +%%OCTAVE%%share/plplot_octave/zoom.m +%%OCTAVE%%%%DOCSDIR%%/BUGS.octave +%%OCTAVE%%%%DOCSDIR%%/FGA.octave +%%OCTAVE%%%%DOCSDIR%%/INSTALL.octave +%%OCTAVE%%%%DOCSDIR%%/README.octave +%%OCTAVE%%%%DOCSDIR%%/ToDo.octave +%%OCTAVE%%%%DOCSDIR%%/USAGE.octave +%%OCTAVE%%PLplot/toggle_plplot_use.m +%%OCTAVE%%PLplot/use_plplot.m +%%OCTAVE%%PLplot/plplot_octave_path.m +%%OCTAVE%%@dirrm PLplot +%%OCTAVE%%plplot_octave.oct +%%OCTAVE%%@dirrm share/plplot_octave/support/ +%%OCTAVE%%@dirrm share/plplot_octave @dirrm %%DATADIR%%%%VERSION%%/examples/c++ @dirrm %%DATADIR%%%%VERSION%%/examples/c @dirrm %%DATADIR%%%%VERSION%%/examples >Release-Note: >Audit-Trail: >Unformatted: From ports at logvinov.com Mon May 4 01:10:01 2009 From: ports at logvinov.com (Alexander Logvinov) Date: Mon May 4 01:10:19 2009 Subject: ports/134196: [PATCH] graphics/geoserver: update to 1.7.4 Message-ID: <200905040105.n4415OJe022250@blg.akavia.ru> >Number: 134196 >Category: ports >Synopsis: [PATCH] graphics/geoserver: update to 1.7.4 >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: Mon May 04 01:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexander Logvinov >Release: FreeBSD 6.4-RELEASE i386 >Organization: >Environment: >Description: Update to 1.7.4. Fix config installation bug which introduced in previous update. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/geoserver/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- Makefile 15 Mar 2009 20:53:17 -0000 1.7 +++ Makefile 29 Apr 2009 22:12:19 -0000 @@ -6,7 +6,7 @@ # PORTNAME= geoserver -PORTVERSION= 1.7.3 +PORTVERSION= 1.7.4 CATEGORIES= graphics geography java MASTER_SITES= SF DISTNAME= ${PORTNAME}-${PORTVERSION}-bin @@ -28,19 +28,8 @@ SUB_LIST= GEOSERVERDIR="${GEOSERVERDIR}" JAVA="${JAVA}" SUB_FILES= pkg-message -pre-patch: - @${RM} ${WRKSRC}/webapps/geoserver/editarea/images/Thumbs.db -.for dir in ${GEODIRS} - @(cd ${WRKSRC};${FIND} -E ${dir} -type f -iregex ".*(keystore|\.(xml|properties))") \ - | while read a; do \ - ${MV} ${WRKSRC}/$$a ${WRKSRC}/$$a.sample; \ - if [ ! -e "${GEOSERVERDIR}/$$a" ]; then \ - ${CP} ${WRKSRC}/$$a.sample ${WRKSRC}/$$a; \ - fi; \ - done -.endfor - post-patch: + @${RM} ${WRKSRC}/webapps/geoserver/editarea/images/Thumbs.db @${REINPLACE_CMD} -e 's|$$GEOSERVER_HOME|${GEOSERVERDIR}|g' \ -e 's|%%JAVA%%|${JAVA}|g' \ ${WRKSRC}/bin/startup.sh ${WRKSRC}/bin/shutdown.sh @@ -52,6 +41,13 @@ ${INSTALL_DATA} ${WRKSRC}/${f} ${GEOSERVERDIR} .endfor .for dir in ${GEODIRS} + @(cd ${WRKSRC};${FIND} -E ${dir} -type f -iregex ".*(keystore|\.(xml|properties))") \ + | while read a; do \ + ${MV} ${WRKSRC}/$$a ${WRKSRC}/$$a.sample; \ + if [ ! -e "${GEOSERVERDIR}/$$a" ]; then \ + ${CP} ${WRKSRC}/$$a.sample ${WRKSRC}/$$a; \ + fi; \ + done @cd ${WRKSRC} && \ ${FIND} ${dir} -type d -exec \ ${MKDIR} "${GEOSERVERDIR}/{}" \; && \ Index: distinfo =================================================================== RCS file: /home/pcvs/ports/graphics/geoserver/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- distinfo 15 Mar 2009 20:53:17 -0000 1.6 +++ distinfo 29 Apr 2009 05:37:16 -0000 @@ -1,3 +1,3 @@ -MD5 (geoserver-1.7.3-bin.zip) = 5f096d36c10b92fc7d1e6a24fe2769cb -SHA256 (geoserver-1.7.3-bin.zip) = c199626e4260801ca41d4ad7db734ccf363241867d16c76d46feb85b83d4849a -SIZE (geoserver-1.7.3-bin.zip) = 45486115 +MD5 (geoserver-1.7.4-bin.zip) = 879303b1f10c725e7e4b275d6a6826fe +SHA256 (geoserver-1.7.4-bin.zip) = d82e59bda08acb76d7f53f4b0a54fdbf754a70b56cf47a108795a6d11ce60ba3 +SIZE (geoserver-1.7.4-bin.zip) = 45927202 Index: pkg-plist =================================================================== RCS file: /home/pcvs/ports/graphics/geoserver/pkg-plist,v retrieving revision 1.6 diff -u -r1.6 pkg-plist --- pkg-plist 15 Mar 2009 20:53:17 -0000 1.6 +++ pkg-plist 29 Apr 2009 06:09:18 -0000 @@ -810,69 +810,85 @@ %%G%%/webapps/geoserver/WEB-INF/lib/commons-fileupload-1.2.1.jar %%G%%/webapps/geoserver/WEB-INF/lib/commons-io-1.3.2.jar %%G%%/webapps/geoserver/WEB-INF/lib/commons-logging-1.1.1.jar -%%G%%/webapps/geoserver/WEB-INF/lib/data-1.7.3.jar +%%G%%/webapps/geoserver/WEB-INF/lib/commons-cli-2.0-gt2-pre1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/data-1.7.4.jar %%G%%/webapps/geoserver/WEB-INF/lib/easymock-2.3.jar %%G%%/webapps/geoserver/WEB-INF/lib/easymockclassextension-2.3.jar %%G%%/webapps/geoserver/WEB-INF/lib/ezmorph-1.0.6.jar %%G%%/webapps/geoserver/WEB-INF/lib/freemarker-2.3.13.jar -%%G%%/webapps/geoserver/WEB-INF/lib/geoapi-2.2-M1.jar -%%G%%/webapps/geoserver/WEB-INF/lib/geowebcache-1.1.0.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-api-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-arcgrid-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-coverage-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-cql-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-data-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-epsg-hsql-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-geotiff-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-graph-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-gtopo30-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-image-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-imagemosaic-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-jdbc-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-main-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-metadata-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-postgis-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-directory-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-referencing-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-render-2.5.4.jar +%%G%%/webapps/geoserver/WEB-INF/lib/geoapi-2.2.0.jar +%%G%%/webapps/geoserver/WEB-INF/lib/geowebcache-1.1.0g.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-api-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-arcgrid-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-coverage-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-cql-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-data-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-epsg-hsql-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-geotiff-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-graph-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-gtopo30-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-image-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-imagemosaic-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-imageio-ext-gdal-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-jdbc-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-main-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-metadata-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-postgis-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-directory-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-referencing-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-render-2.5.5.jar %%G%%/webapps/geoserver/WEB-INF/lib/jts-1.9.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-shapefile-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-shapefile-renderer-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-validation-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-wfs-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-wms-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-xml-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-core-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-filter-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-gml2-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-gml3-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-ows-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-wfs-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/gwc-1.7.3.jar -%%G%%/webapps/geoserver/WEB-INF/lib/h2-1.1.104.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-shapefile-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-shapefile-renderer-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-validation-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-wfs-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-wms-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-xml-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-core-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-filter-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-gml2-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-gml3-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-ows-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gt-xsd-wfs-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/gwc-1.7.4.jar +%%G%%/webapps/geoserver/WEB-INF/lib/h2-1.1.110.jar %%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-arcgrid-1.0.1.jar %%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-customstreams-1.0.1.jar %%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-tiff-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalerdasimg-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalecw-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdal-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalecwjp2-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdaldted-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-utilities-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalframework-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalmrsidjp2-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalehdr-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalnitf-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalmrsid-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-geocore-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-imagereadmt-1.0.1.jar +%%G%%/webapps/geoserver/WEB-INF/lib/imageio-ext-gdalkakadujp2-1.0.1.jar %%G%%/webapps/geoserver/WEB-INF/lib/jettison-1.0.1.jar %%G%%/webapps/geoserver/WEB-INF/lib/json-lib-2.2.3-jdk15.jar %%G%%/webapps/geoserver/WEB-INF/lib/jsr-275-1.0-beta-2.jar %%G%%/webapps/geoserver/WEB-INF/lib/jstl-1.0.6.jar %%G%%/webapps/geoserver/WEB-INF/lib/mail-1.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/main-1.7.3.jar -%%G%%/webapps/geoserver/WEB-INF/lib/net.opengis.ows-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/net.opengis.wcs-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/net.opengis.wfs-2.5.4.jar +%%G%%/webapps/geoserver/WEB-INF/lib/main-1.7.4.jar +%%G%%/webapps/geoserver/WEB-INF/lib/net.opengis.ows-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/net.opengis.wcs-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/net.opengis.wfs-2.5.5.jar %%G%%/webapps/geoserver/WEB-INF/lib/org.json-2.0.jar %%G%%/webapps/geoserver/WEB-INF/lib/org.restlet-1.0.8.jar %%G%%/webapps/geoserver/WEB-INF/lib/org.restlet.ext.freemarker-1.0.8.jar %%G%%/webapps/geoserver/WEB-INF/lib/org.restlet.ext.json-1.0.1.jar %%G%%/webapps/geoserver/WEB-INF/lib/org.restlet.ext.spring-1.0.8.jar %%G%%/webapps/geoserver/WEB-INF/lib/org.simpleframework-3.1.3.jar -%%G%%/webapps/geoserver/WEB-INF/lib/org.w3.xlink-2.5.4.jar -%%G%%/webapps/geoserver/WEB-INF/lib/ows-1.7.3-tests.jar -%%G%%/webapps/geoserver/WEB-INF/lib/ows-1.7.3.jar -%%G%%/webapps/geoserver/WEB-INF/lib/platform-1.7.3.jar -%%G%%/webapps/geoserver/WEB-INF/lib/rest-1.7.3.jar +%%G%%/webapps/geoserver/WEB-INF/lib/org.w3.xlink-2.5.5.jar +%%G%%/webapps/geoserver/WEB-INF/lib/ows-1.7.4-tests.jar +%%G%%/webapps/geoserver/WEB-INF/lib/ows-1.7.4.jar +%%G%%/webapps/geoserver/WEB-INF/lib/platform-1.7.4.jar +%%G%%/webapps/geoserver/WEB-INF/lib/rest-1.7.4.jar %%G%%/webapps/geoserver/WEB-INF/lib/spring-aop-2.5.5.jar %%G%%/webapps/geoserver/WEB-INF/lib/spring-beans-2.5.5.jar %%G%%/webapps/geoserver/WEB-INF/lib/spring-context-2.5.5.jar @@ -884,12 +900,12 @@ %%G%%/webapps/geoserver/WEB-INF/lib/spring-webmvc-2.5.5.jar %%G%%/webapps/geoserver/WEB-INF/lib/spring-webmvc-struts-2.5.5.jar %%G%%/webapps/geoserver/WEB-INF/lib/stax-api-1.0.1.jar -%%G%%/webapps/geoserver/WEB-INF/lib/validation-1.7.3.jar -%%G%%/webapps/geoserver/WEB-INF/lib/wcs-1.7.3.jar -%%G%%/webapps/geoserver/WEB-INF/lib/wcs1_1-1.7.3.jar -%%G%%/webapps/geoserver/WEB-INF/lib/wfs-1.7.3.jar -%%G%%/webapps/geoserver/WEB-INF/lib/wfs11-1.7.3.jar -%%G%%/webapps/geoserver/WEB-INF/lib/wms-1.7.3.jar +%%G%%/webapps/geoserver/WEB-INF/lib/validation-1.7.4.jar +%%G%%/webapps/geoserver/WEB-INF/lib/wcs-1.7.4.jar +%%G%%/webapps/geoserver/WEB-INF/lib/wcs1_1-1.7.4.jar +%%G%%/webapps/geoserver/WEB-INF/lib/wfs-1.7.4.jar +%%G%%/webapps/geoserver/WEB-INF/lib/wfs11-1.7.4.jar +%%G%%/webapps/geoserver/WEB-INF/lib/wms-1.7.4.jar %%G%%/webapps/geoserver/WEB-INF/lib/xpp3_min-1.1.4c.jar %%G%%/webapps/geoserver/WEB-INF/lib/xstream-1.3.1.jar %%G%%/webapps/geoserver/WEB-INF/lib/acegi-security-1.0.3.jar >Release-Note: >Audit-Trail: >Unformatted: From ports at logvinov.com Mon May 4 01:10:02 2009 From: ports at logvinov.com (Alexander Logvinov) Date: Mon May 4 01:10:19 2009 Subject: ports/134197: [maintainer update] databases/geoserver-mysql-plugin: update to 1.7.4 Message-ID: <200905040107.n44179DW022368@blg.akavia.ru> >Number: 134197 >Category: ports >Synopsis: [maintainer update] databases/geoserver-mysql-plugin: update to 1.7.4 >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: Mon May 04 01:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexander Logvinov >Release: FreeBSD 6.4-RELEASE i386 >Organization: >Environment: >Description: Update to 1.7.4. >How-To-Repeat: >Fix: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/databases/geoserver-mysql-plugin/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 15 Mar 2009 20:54:03 -0000 1.1 +++ Makefile 1 May 2009 10:48:37 -0000 @@ -6,7 +6,7 @@ # PORTNAME= geoserver -PORTVERSION= 1.7.3 +PORTVERSION= 1.7.4 CATEGORIES= databases geography java MASTER_SITES= SF PKGNAMESUFFIX= -mysql-plugin @@ -22,7 +22,7 @@ GSLIBDIR= geoserver/webapps/geoserver/WEB-INF/lib SUB_FILES= pkg-message -PLIST_FILES= ${GSLIBDIR}/gt-mysql-2.5.4.jar \ +PLIST_FILES= ${GSLIBDIR}/gt-mysql-2.5.5.jar \ ${GSLIBDIR}/mysql-connector-java-5.1.5.jar do-install: Index: distinfo =================================================================== RCS file: /home/pcvs/ports/databases/geoserver-mysql-plugin/distinfo,v retrieving revision 1.1 diff -u -r1.1 distinfo --- distinfo 15 Mar 2009 20:54:03 -0000 1.1 +++ distinfo 1 May 2009 10:34:37 -0000 @@ -1,3 +1,3 @@ -MD5 (geoserver-1.7.3-mysql-plugin.zip) = 195829986b21c7291e563ecf48db477d -SHA256 (geoserver-1.7.3-mysql-plugin.zip) = 5a7c9cc1afe7d78d9527f339e28f71b4b5d6d349a5f7523ef8fdaece5ad6dd6a -SIZE (geoserver-1.7.3-mysql-plugin.zip) = 671023 +MD5 (geoserver-1.7.4-mysql-plugin.zip) = ac0c002271723ca36f62928d49b792c7 +SHA256 (geoserver-1.7.4-mysql-plugin.zip) = b73d3ef3d030ea390c8cac0c985bb692dc7d74dc19d4ba1afd42e4f154d8f152 +SIZE (geoserver-1.7.4-mysql-plugin.zip) = 671020 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Mon May 4 01:10:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Mon May 4 01:10:20 2009 Subject: ports/134196: [PATCH] graphics/geoserver: update to 1.7.4 Message-ID: <200905040110.n441ACOB081662@freefall.freebsd.org> Synopsis: [PATCH] graphics/geoserver: update to 1.7.4 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Mon May 4 01:10:12 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134196 From edwin at FreeBSD.org Mon May 4 01:10:21 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Mon May 4 01:10:27 2009 Subject: ports/134197: [maintainer update] databases/geoserver-mysql-plugin: update to 1.7.4 Message-ID: <200905040110.n441AK9W082768@freefall.freebsd.org> Synopsis: [maintainer update] databases/geoserver-mysql-plugin: update to 1.7.4 Class-Changed-From-To: update->maintainer-update Class-Changed-By: edwin Class-Changed-When: Mon May 4 01:10:20 UTC 2009 Class-Changed-Why: Fix category (submitter is maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134197 From edwin at FreeBSD.org Mon May 4 01:20:03 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Mon May 4 01:20:10 2009 Subject: ports/134196: [PATCH] graphics/geoserver: update to 1.7.4 Message-ID: <200905040120.n441K2Rw094773@freefall.freebsd.org> The following reply was made to PR ports/134196; it has been noted by GNATS. From: Edwin Groothuis To: wenheping@gmail.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/134196: [PATCH] graphics/geoserver: update to 1.7.4 Date: Mon, 4 May 2009 01:10:10 UT Maintainer of graphics/geoserver, Please note that PR ports/134196 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/134196 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From stephen at missouri.edu Mon May 4 02:00:08 2009 From: stephen at missouri.edu (Stephen Montgomery-Smith) Date: Mon May 4 02:00:17 2009 Subject: ports/134198: build problem with math/octave-forge-engine Message-ID: <200905040157.n441vRBi021748@cauchy.math.missouri.edu> >Number: 134198 >Category: ports >Synopsis: build problem with math/octave-forge-engine >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon May 04 02:00:07 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Stephen Montgomery-Smith >Release: FreeBSD 7.1-STABLE i386 >Organization: >Environment: FreeBSD laptop3.gateway.2wire.net 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Sat May 2 15:16:46 CDT 2009 stephen@laptop3.gateway.2wire.net:/usr/obj/usr/src/sys/LAPTOP3 amd64 >Description: The port math/octave-forge-engine seems not to be building on recent versions of FreeBSD current with recent versions of gcc43. The problem seems to be created in that the source code has a function called getline, which conflicts with the function getline that is now part of FreeBSD and/or gcc43. >How-To-Repeat: >Fix: Add a file called something like files/patch-getline, with the following content: --- src/engGetFull.c.bak 2008-08-24 16:13:55.000000000 +0000 +++ src/engGetFull.c 2009-05-04 01:44:43.000000000 +0000 @@ -30,7 +30,7 @@ flushjunk(); sprintf( buf, "exist(\"%s\")\n", name ); putline( buf ); - getline( buf ); + local_getline( buf ); flushprompt( 0 ); sscanf( buf, " ans = %d", &i ); @@ -39,20 +39,20 @@ sprintf( buf, "save -ascii \"-\" %s\n", name ); putline( buf ); - getline( buf ); + local_getline( buf ); sscanf( buf, "%c %s %s", &comm, str1, str2 ); if( comm != '#' ) return retval; if( !strcmp( "Created", str1 ) ) /* New in Octave 2.0.14 */ { - getline( buf ); + local_getline( buf ); sscanf( buf, "%c %s %s", &comm, str1, str2 ); } if( strcmp( "name:", str1 ) ) return retval; if( strcmp( name, str2 ) ) return retval; - getline( buf ); + local_getline( buf ); sscanf( buf, "%c %s %s %s", &comm, str1, str2, str3 ); if( comm != '#' ) return retval; @@ -66,18 +66,18 @@ *n = 1; *pr = mxCalloc( 1, sizeof( **pr ) ); *pi = mxCalloc( 1, sizeof( **pi ) ); - getline( buf ); + local_getline( buf ); sscanf( buf, "(%lf,%lf)", &pr[0][0], &pi[0][0] ); } else { if( !strcmp( "matrix", str3 ) ) { - getline( buf ); + local_getline( buf ); sscanf( buf, "%c %s %d", &comm, str1, m ); if( strcmp( "rows:", str1 ) ) return retval; - getline( buf ); + local_getline( buf ); sscanf( buf, "%c %s %d", &comm, str1, n ); if( strcmp( "columns:", str1 ) ) return retval; @@ -85,7 +85,7 @@ *pi = mxCalloc( (*m)*(*n), sizeof( **pi ) ); for( i=0; i<*m; i++ ) { - getline( buf ); + local_getline( buf ); ptr = strtok( buf, " " ); for( j=0; j<*n; j++ ) { @@ -106,18 +106,18 @@ *n = 1; *pr = mxCalloc( 1, sizeof( **pr ) ); *atrix", str2 ) ) { - getline( buf ); + local_getline( buf ); sscanf( buf, "%c %s %d", &comm, str1, m ); if( strcmp( "rows:", str1 ) ) return retval; - getline( buf ); + local_getline( buf ); sscanf( buf, "%c %s %d", &comm, str1, n ); if( strcmp( "columns:", str1 ) ) return retval; @@ -125,7 +125,7 @@ *pi = NULL; for( i=0; i<*m; i++ ) { - getline( buf ); + local_getline( buf ); ptr = strtok( buf, " " ); for( j=0; j<*n; j++ ) { --- src/engif.c.bak 2008-08-24 16:13:55.000000000 +0000 +++ src/engif.c 2009-05-04 01:44:43.000000000 +0000 @@ -78,7 +78,7 @@ } -int getline( char* buf ) +int local_getline( char* buf ) { int i; @@ -95,7 +95,7 @@ buf[i] = '\0'; #ifdef DEBUGAPI - printf( "getline: %s", buf ); + printf( "local_getline: %s", buf ); #endif return 0; --- src/engif.h.bak 2008-08-24 16:13:55.000000000 +0000 +++ src/engif.h 2009-05-04 01:44:43.000000000 +0000 @@ -1,6 +1,6 @@ int flushprompt( int outkey ); int flushjunk( void ); -int getline( char* buf ); +int local_getline( char* buf ); int putline( char* buf ); int openpipes( void ); int closepipes( void ); >Release-Note: >Audit-Trail: >Unformatted: From amdmi3 at FreeBSD.org Mon May 4 02:40:54 2009 From: amdmi3 at FreeBSD.org (amdmi3@FreeBSD.org) Date: Mon May 4 02:41:00 2009 Subject: ports/134171: [maintainer update] update sysutils/ncdu to 1.5 Message-ID: <200905040240.n442erS7007547@freefall.freebsd.org> Synopsis: [maintainer update] update sysutils/ncdu to 1.5 Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Mon May 4 02:40:53 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134171 From stephen at missouri.edu Mon May 4 02:50:03 2009 From: stephen at missouri.edu (Stephen Montgomery-Smith) Date: Mon May 4 02:50:10 2009 Subject: ports/134198: build problem with math/octave-forge-engine Message-ID: <200905040250.n442o2Y6015655@freefall.freebsd.org> The following reply was made to PR ports/134198; it has been noted by GNATS. From: Stephen Montgomery-Smith To: bug-followup@FreeBSD.org, stephen@missouri.edu Cc: Subject: Re: ports/134198: build problem with math/octave-forge-engine Date: Sun, 03 May 2009 21:22:22 -0500 Or use a sed s/getline/local_getline/ on the three files. From wenheping at gmail.com Mon May 4 04:50:02 2009 From: wenheping at gmail.com (wen heping) Date: Mon May 4 04:50:08 2009 Subject: ports/134196: [PATCH] graphics/geoserver: update to 1.7.4 Message-ID: <200905040450.n444o2I7076800@freefall.freebsd.org> The following reply was made to PR ports/134196; it has been noted by GNATS. From: wen heping To: bug-followup@FreeBSD.org, ports@logvinov.com Cc: Subject: Re: ports/134196: [PATCH] graphics/geoserver: update to 1.7.4 Date: Mon, 4 May 2009 12:48:41 +0800 --0016363b7a9c638ee804690ee055 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I approve it. Thank you. wen --0016363b7a9c638ee804690ee055 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit I approve it.
Thank you.

wen
--0016363b7a9c638ee804690ee055-- From miwi at FreeBSD.org Mon May 4 05:19:01 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Mon May 4 05:19:12 2009 Subject: ports/134197: [maintainer update] databases/geoserver-mysql-plugin: update to 1.7.4 Message-ID: <200905040519.n445J0Bc021719@freefall.freebsd.org> Synopsis: [maintainer update] databases/geoserver-mysql-plugin: update to 1.7.4 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon May 4 05:19:00 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134197 From miwi at FreeBSD.org Mon May 4 05:19:03 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Mon May 4 05:19:12 2009 Subject: ports/134196: [PATCH] graphics/geoserver: update to 1.7.4 Message-ID: <200905040519.n445J2Yl021785@freefall.freebsd.org> Synopsis: [PATCH] graphics/geoserver: update to 1.7.4 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon May 4 05:19:02 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134196 From dave at daveg.ca Mon May 4 05:40:02 2009 From: dave at daveg.ca (dave@daveg.ca) Date: Mon May 4 05:40:08 2009 Subject: ports/134199: Quagga 4 byte ASN bugfix (patch included). Message-ID: <20090504051949.BA6874AC92@strike.dclg.ca> >Number: 134199 >Category: ports >Synopsis: Quagga 4 byte ASN bugfix (patch included). >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon May 04 05:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: David Gilbert >Release: FreeBSD 7.0-RELEASE-p4 i386 >Organization: DaveG.ca >Environment: System: FreeBSD strike.dclg.ca 7.0-RELEASE-p4 FreeBSD 7.0-RELEASE-p4 #16: Thu Sep 4 00:50:04 EDT 2008 root@strike.dclg.ca:/usr/obj/usr/src/sys/STRIKE i386 Applies to all FreeBSD versions >Description: There's a bug in the memory allocation regarding 4 byte ASNs --- specifically only when prepended many times. It was triggered at 0810 EDT on May 3rd. Note for the security officer: This may be an expoitable bug. >How-To-Repeat: You probably need access to a full routing table feed via BGP. >Fix: The patch at this URL needs to be added to our set of patches for 99.11 https://www.caputo.com/foss/quagga-0.99.11-BGP-4-byte-ASN-bug-fixes.patch >Release-Note: >Audit-Trail: >Unformatted: From amdmi3 at FreeBSD.org Mon May 4 11:23:55 2009 From: amdmi3 at FreeBSD.org (amdmi3@FreeBSD.org) Date: Mon May 4 11:24:01 2009 Subject: ports/134195: Add octave knob for math/plplot Message-ID: <200905041123.n44BNsrU029966@freefall.freebsd.org> Synopsis: Add octave knob for math/plplot Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Mon May 4 11:23:53 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134195 From ganael.laplanche at martymac.com Mon May 4 11:50:02 2009 From: ganael.laplanche at martymac.com (Ganael Laplanche) Date: Mon May 4 11:50:09 2009 Subject: ports/134202: Port update: ftp/lftp - Update to v3.7.13 Message-ID: <200905041144.n44BiITD087142@www.freebsd.org> >Number: 134202 >Category: ports >Synopsis: Port update: ftp/lftp - Update to v3.7.13 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon May 04 11:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Ganael Laplanche >Release: 8.0-CURRENT >Organization: http://contribs.martymac.com >Environment: FreeBSD laptop.martymac.com 8.0-CURRENT FreeBSD 8.0-CURRENT #14: Mon Apr 27 12:15:23 UTC 2009 martymac@laptop.martymac.com:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: This patch updates lftp to v3.7.13. Here is the changelog : Version 3.7.13 - 2009-04-30 * fixed a coredump in some commands printing to screen. Version 3.7.12 - 2009-04-28 * fixed core dump on `mput -d' command. * fixed a core dump on `kill' command. * fixed mkdir -p for sftp protocol. * fixed some signed/unsigned conversion bugs. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -aurN lftp.orig/Makefile lftp/Makefile --- lftp.orig/Makefile 2009-05-04 13:36:46.129853654 +0000 +++ lftp/Makefile 2009-05-01 09:03:01.000000000 +0000 @@ -6,7 +6,7 @@ # PORTNAME= lftp -PORTVERSION= 3.7.11 +PORTVERSION= 3.7.13 CATEGORIES= ftp ipv6 MASTER_SITES= ftp://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/ \ ftp://ftp.st.ryukoku.ac.jp/pub/network/ftp/lftp/old/ \ diff -aurN lftp.orig/distinfo lftp/distinfo --- lftp.orig/distinfo 2009-05-04 13:36:46.131853070 +0000 +++ lftp/distinfo 2009-05-01 09:03:29.000000000 +0000 @@ -1,3 +1,3 @@ -MD5 (lftp-3.7.11.tar.bz2) = ffe8415ace828bdf2f7b79d8cbbfbbc9 -SHA256 (lftp-3.7.11.tar.bz2) = a272f4ed47f2d5c08dbdfc670e6984cf6e0cd97e22f0672ff37efa3f5d3ee23d -SIZE (lftp-3.7.11.tar.bz2) = 1490083 +MD5 (lftp-3.7.13.tar.bz2) = 7453bb2764491dbf5b0aec7efbb4c52e +SHA256 (lftp-3.7.13.tar.bz2) = 4e8eb7298661b6171c2ea741d45800ef66a76da0ef95bb21731a6c57eea3307f +SIZE (lftp-3.7.13.tar.bz2) = 1489812 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Mon May 4 11:50:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Mon May 4 11:50:19 2009 Subject: ports/134202: Port update: ftp/lftp - Update to v3.7.13 Message-ID: <200905041150.n44BoC0M060961@freefall.freebsd.org> Synopsis: Port update: ftp/lftp - Update to v3.7.13 Responsible-Changed-From-To: freebsd-ports-bugs->beech Responsible-Changed-By: edwin Responsible-Changed-When: Mon May 4 11:50:12 UTC 2009 Responsible-Changed-Why: beech@ wants this category PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134202 From ganael.laplanche at martymac.com Mon May 4 12:00:14 2009 From: ganael.laplanche at martymac.com (Ganael Laplanche) Date: Mon May 4 12:00:28 2009 Subject: ports/134203: Port update: devel/raknet - Update to v3.5.2 Message-ID: <200905041155.n44BtF8V099635@www.freebsd.org> >Number: 134203 >Category: ports >Synopsis: Port update: devel/raknet - Update to v3.5.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: Mon May 04 12:00:13 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Ganael Laplanche >Release: 8.0-CURRENT >Organization: http://contribs.martymac.com >Environment: FreeBSD laptop.martymac.com 8.0-CURRENT FreeBSD 8.0-CURRENT #14: Mon Apr 27 12:15:23 UTC 2009 martymac@laptop.martymac.com:/usr/obj/usr/src/sys/MYKERNEL i386 >Description: This patch (gzipped, uuencoded) updates devel/raknet to version 3.5.2 and reintroduces sourceforge mirrors, as files are now exactly the same between different master sites. >From Changelog : * Various fixes and protocol change for NATPunchthroughServer. Punchthrough recipient now gets ID_NAT_TARGET_UNRESPONSIVE and ID_NAT_CONNECTION_TO_TARGET_LOST at the same time it is sent to the sender. * Added ConnectionGraph2 and FullyConnectedMesh2 plugins. * RakNetTransport2 plugin added, which works as a plugin instead of creating its own instance of RakPeer. RakNetTransport, which did that, is now depreciated. * Deleted FCMHost plugin (replaced by FullyConnectedMesh2). * ReplicaManager3 fix for not sending serialization to new connections when using identical serialization. * Various fixes for Lobby2 system. * Fix crash in LightweightDatabaseServer if not automatically storing system address. * Added DependentExtensions\IrrlichtDemo * Disallow reconnecting when the remote system thinks you are still connected, if using a different IP but the same RakNetGUID. * Added RakPeerInterface::GetSystemList to return connected SystemAddress and RakNetGUID in a list. * Various fixes for DirectoryServer.php. PHPDirectoryServer::ProcessHTTPRead now returns an enumeration, rather than a string, to indicate results. * RakNetTime is now 64 bit by default. Comment __GET_TIME_64BIT in RakNetDefines.h to change to 32 bit. * UDP proxy system now automatically chooses best server. If more than one server is available, and both source and target relay systems are running RakNet, then source and target will ping all available servers. The servers will be attempted in order of lowest ping sum to highest. * Updated FAQ. Updated manual for NATPunchthrough. >How-To-Repeat: >Fix: Patch attached with submission follows: begin 644 patch-raknet.txt.gz M'XL("+74_DD``W!A=&-H+7)A:VYE="YT>'0`Q7WY<]M(EN;/Y;^".ST]T1VV M9=P`O=,315&TK2D=+)&JGM[8"$8"2$@LDP2'!&VK-_9_WTP<)"Y2R/<>:RM< M/D0BD4ADOO-[WPOG4=1[SW:;N]Z&?5WQY"+>S)\^W+*O/)HO>/[#_;_?O'__ MOO6+/QF:UG^O6>]-K:>['TWCHZ5=:,5_O;?R]S=OW[ZM#YA?9XM+>[K^4=,^ MZF[CNI]_[KTWWNEV[ZWXW>W]_/.;WI]Z5RSAO6##Q1_AQY_$?[K>NP^2V.>; MGAC4EM_Y^W.\3#_[:;`*-_Q[[Y+]:LTI)D/:7S0O)YN?S3-C^*1G_B&+<)\0#'-WIO>^/YA>C>X M'?WMIVR<-^_E3WX;/4RN[^_^]I-Y85^(M6[\S,BN'(WOAU_^]I/^IC<<3$>? M[Q^N1Y.__93.JY<.=CN83$)WOA)+M]W&4?*= M;?A%$"^+)PGC[ZM%S,+MAS?OKZXG^?0>V-<[GKP7-W_S%C=J[W^_>?O3O_Z? MTB"SR?WCPW#TZ?[A\^C_5H:?31XOKZX?BM79C__F;=O,#+FBMX/KNZGX?R2N M>F(KQA<7"[9>L%7PS']>LDWRLF2!G)E8M/O;V]'=]&\_B>N_QQLQ]%-O,+[N M)<\LZ:TW\;=YR+>]#5_,F2_.S^/56/QT+L:8+UYZ4;SIQ:O%?,5[3VS)MV_" M]N,7SK?)?!7%Q6DI_MTX?L4'JL>O=EWI^)EZZ_'3WYF]M_(WWU[9O;\< MEO#BG_/U7WM_ZUF!'=B^X09]O^^:1K^O!9[O\\`S35WW=/W-^\F7@6$[;=<& M5AAJS-/ZD6D&3AB8AL$-KIF6XQN1Y3@>MRW7Z=O<]IBAZ0[KAW;D&[;%N!Y9 M%A-C7_^O4=O(NF.XEF%[8H]4IVT4W_#"H,\"/PI,S]29X6O,#\S(XYS9H>4$ M_3=OF_/>7ZR)Z=B!Y5N^;EC]R.FSR#9-UW(#WM=#%@66$5J683"S;W%;XZQO MA5'D:Y'E!3QP+#%X;>+[H0W-=$S+ZA_;)5)T;#^L61(\O[_B:[X*^2H9_4CX M:CN/5]OWXWB;/&WXY->;ZU7"-Q$+>-O/+H+UNM@7A$,V]BKAV/OM+F2^YGVT M[(^Z=6J[4]Y:[[O:>TT7OWKBN*2_CIP8(='?:N^T],C(Q6BY\X>6N[3]3-XY M7<7\RI3MF7ZB-[/;OY:,C[]:\D>5Y']M$V M^TS,^T_SJ!<*G;CB8>\OO=DLUYZS6>^OZ:?YQ?^^34*V$4/^A_RI>,QY)/XB MA\\N[HU_'?W7:#@>/`QN9T)%W`ZFL^GHOZ8__:2=_M+E]=W@X1]".8K9=#AU MA0*_8,NVK5;Z^.1I*'T/L[/;AI'Z0/MHFQ^UYC#9+K6E7+?WF[0T2&/#R0FY M4K/TQ6XS3"%8RQNN>?O]1=Y'7;MP=2'4C;[;+Y[BQ.WV$Q>_K`O==FPA0BW] M\/QMM]M?)+2?>V&+NUFVIA>WZ\G'-=^)*2^3<^?5ESL:?;WE';]T[NC;8+6C:)W763M(ZG(-/TJDS+AOM0 M&:[Z(C6SIWL?-4=:%DY?LQW7L*SROFD;HG:UGFT#Q[$]KZ^[9>ECRS=J9V_T M?>^GGRHR8KY*4AG1^ZD0$KV?Q+Q_DF+F?^1RYB^SR?1*F'^S+W_M_=N_E7]\ M=_A$S%3]HMHG_YCL/YK]-9UK(AY6?-[;B7WV)$5>\,PVO>*_G9B]-TO^9_M7 MM\_"GRA_57>.?E=\VJL,:QKRNQVV=1"OHOG33ICE+&C;3>7/3V[C\A&U3,,L5D_6DV)F>[7EBED@JZ?NFS] M"V'Z.HXP4K6RH&N]8572"06K]4U7LRW/*DNZ4\^L?S2\"]T22MG4^UY9U%FN M/!GI[ZFP&PRE8S29_F7]]2D;<<;"WWVZ_CS[='TS MFOQ%N.;ADE\D/Y(>VR5Q$L>+[8?,S+U8!W\5R_*V?DGK]WH=O];+'K+RS7T< M(QW__B:IG5K^P<,W$M79[9,3T M4J7F"2M,ONA<_A4^]`,7HP5,:)GZ)U>3V2U?QIN7L5C*EL^%0![OA`>_\F4Z'0_CU8H' MB7@'+5\X?/AYP];/XAOIB3;DX[[5I=79^M@W\Z?GY#N7OU^)'>ZS+9=3:;W% M>,$2X9DO6SYZ&`]OV5I\\+;V@?#KQYOXQ\M^T&-?V"_;\1'BC5!4+(G;OI5M M\.F&K;8R@&2T#R3L[.]L$[;>9\R"KSRYWR7K7?+W^2J,OXO7\M3ZU=I:M]TL MWTZW;,7$&.:IYUK,N52_C2]\VBT6+_FM>'C+M^F->G_^\_AF]C#XY;?[Z^'H MSW]NKL-O\5RX)LUO+N;^!_%_]D7Q^[?T>]OX0NO\U2S"J#GO=&$S"E]&M]_U MTUTEKK]_F%[=#R=_%O_)/X6U^.<_?_C"%^L/XIVM2P?DXCE9+EZY1$K;3;:$ M6.Z<7!@FVWV0:>Z3/]L+MFLX=;XQ,+Q)9_>2\> MS1=J!#;Z;2Q$];3+]0)W@_%B]S1?[3UC`SS:-MGL M@N2P&I-%G`SCW2K93L0/9G=Q,H_R77&Q7CUAAOZT$25$_.7SP_WC&#:WZ3Q9\-_88AZF!^CJ.E;X1,;#ZN?+:Z30>;S:0T4A66V0F/??_EZG*RYH$<=!"& M8M)2&`LQS,66%*<>/.-POID%_=`/0D.W=*OON\PSS"C07%L+>.CYNJ$OB<&S!,N6(BP';R&O.?PS98N$+@Q?\1(OM M&JXWJKOJ01S0;SP[\=F>PBKV_(#]?9X\AQOVO7K$J([O#6??"#;77K-GAU6X M!&N^2>8<*@)&JV`B'A2^5R=S80SRVUW"?X`DN=Q>L]FS,'M@2E1N@,M%''P5 M3[)Y60L+9>;)K`[12@]3),1E+-Q`G+%7V\7B#5X_K>(-SVQKR#9.ARVB!)!K M'\2BOXR^20L,>8(>F`0#/,DSM.8/XMRDR2?D&Q@MV7R1FMN)W**[+?@%?//A M]EG=7,'M@I)9G;M3!\.:QEXA,PGR`W"5@T4.$E'N6+AJJVMS70@83FY1,1PR?V>J)?V&K<(%7%:G`,6[%IA#^"7Z&Z=0. MWC7,2GQ:Q#Y;I"Z7^FO/`@=IV&TH-E"\X%G$C>!1>J)X>.__3N$+EX5(?DK1`1*`D"[':%P#$B6XR_2^A-0% M(%](NHPFTW7.^GU-U[U^W_%U-_`\W]`LV_<3C98'E-#^:RHN#HX$3M_NXF=CM/%`/_760%U\*RXJG3FKFK&,M%'._,C?X4;\9, MR-U@OF:K1A(.>VH'&SY8+++7DX4#4"\I=9)7;)')4$S.Z>`5D^8)LGR3V#KB M1EGX!3/)0O5"PDTU3``H\C69S>XE.H&'TN9;\<47SN!AUE3E"6,K-9YF:N$3,&28*BB*M] MYLH>D509?:Y9+C."/K-"6]CB8S6X'=X//HP=HSK?-U*PF0S+CCH$_[KC.Q+-\1#'RTQ/IFHRT_#D$).3,5>< M"X[QX(LH@+H;7W]`F?9(78/M-*[8-=+J`+]MJ7I\F.IIL2O'F]V*IV:E.,X0 M%9+9@!('"X]-KF0=XUHHL1R*2W&64WS$>O$RC5/74?79ZI@M1.RC-:0F]L87 MLA$1P`*FBUR^7W?SX*N4A:,?Z_FF+@#),[/+H4AXQBCY9HAE2E8RM(Q+<]*A#(\I+*P"D'Z?T#0W7A[*6]`JKG*V8AHG;#$)(,[5*:,KA[P39A[QZJS8Z,4^R.%.%&KR MDJW$QMU*5"]*-V9#;X48%/,,_-ELS39LB0X;2J'U,!["]DUV?`9A*%/6ZD#' M0Q(1^@;3;!4\5]7$G""#XJUX+559)][MELM0((T(K]O^2)N_K(ZI,0J3`@XE MQ1"YD$_MP?QDH\[-/A%)E;%NA_Y#D6V+FY.>D2'"!71T< MLJZ$38?"4N"Y@(>4F&8NE.S+#7M!^'W3X9@TXIT;E(<`%0+>O9=?>#"<4EP` MO_U3R+#.`@-#>>)FD]]@)\RNULB'! MI=9M#Q*AKJ_YMN9JGA.&810XONNXXH^^TQ>BU;&L\V;04$$U%"XI$\Q?LP(@ M:I.(Q/6N8R&H"A*`95]5Z`TH_E0MM(.,D`,J/Z4E&E0U#5=\P?/<,0Q%UKK` M!."D2M9C-OXL3@U%C/N49P$O@#OXA?C(0X;[SP(E*"W1##L`)I?%]8*\"@=> M&/3:MD-*H=2M'@7/<:[_$*\0D*_(W1C)4#&;W5Q/IK/9]&%P-_E$X\X"C`+^TL5ZIO"$ZBB M,V40(+7U(`8NI;15'[,!W<748[6FBL9,)F%^X2]7_K5ZU>>1>JP"%X'%F^]/ M.#"LX_(Q$8)?BN278)K%?E.^I7X37)0,X"R'R)!&/=,?.L&]S,!N\ M/#TS,NE@5%@/05:E0-RJOJ5STPQ<3[V0_"P-.9Y_9MT]'5H9U-S"ND M=*NU7N;3@CU-DGC!D:G4P\"7CL#C`67HFHA)J)BYXAFHE$P$%$9"D;DDP)=F?J;4A4##8Y&`(+\2 M5;&&PBJ.5VHC\O-'!,WE>+';3C<<^A;E^D!SWHU](*12O*S&TXDP@)-+PMV: M:1=A@"0W*:\":8C[`'^D`:>4XSF9?[F7$!19GR8.JUY(Y5!PD(/=-1[&-0J*%,2QW MUMQ,$V']++@0).$ND.BFU7:W)"@W;+!F4&,TV[,J*!,MAT=(CFIDS+K&BXIT MO82@SYD*P8^6\N"&/+P7R[A@ZS4/)2TLM)I9A!GP>.P4S' M\C0>]&U\N5Z1RY]4CTP>B.#*K`9E"A42@Q(0/6_BV/$AP4JBE[P,0*RZM`BG M<2U5?4;4;D:]V'`]%4%!_%.,O M@__$+&9'*T4A`J&%Q`4D#L.(!Z[F:S9W#4LSN!59?EP&/9#[9RDMS20%GH+*?(QQP(N(#QA>']W=UH.+V^OY,!AL'X"XK5^C2Z":ZN MBZP8OJQ(VFZ7+SG$C!1%VL0P4&S/@YTY27<09E=FYWN^X6DMPQ5?)*Q(I9(9 MRBD7KUP1XCKV$OL?Q;+FL0?T:N:*BL0*;$A,&666]LI&=EI!;=9AO/2S/2_$ M'4[NE$B)J4[.X\HO(Q@L-]+Z='GX,Z1)Y#;,S("2]";BXY!+?&`0I@*H-69;E#!0BUTI M*^^$JT(,>CA*$WR&:)!P&A=IJ@X3LS\2G-^2M>Y18T6@L4;PLV8+TSW"'FFP?R!ZN"*PSE*GI&$&J>T3=YJ!FF$3$6^-SQ M>6@YD28^0+^N+_,PY"OI3&>1)8(\^Y%`$02;FGK+?8,;AAN$@:N[D%:E::"J'H?///@ZV2WA MJJM!D$`JY+NP:)'RZI(7]V:E(E!^BZ:3K$Z\?,R`*W*30-K\VL'(JO$P0(\V MF.<>]`R/NA-T>``G]JEP.:5N4#BV^5=XAW$K=+U:S%<\YT4>;^*`9-738JEWTN2R!\+!)\[.5=1-[BV.H/$+U5Z;5HCMI>>\:(KIL8=9OXI?4B%`O5E^!:&!. MI\&/93IHSOS!]4.=Q[[FVJ;/?19J3';$XJ9EZJYK^ZZN.5JD[HA,XE2_2T05 M#7@2XT_1Q)CV"7UD/KK6Y%UYE!;$+%U3@ST1"0;GI_ZN\MU=S5B@&/]3R!UJ MYQ7A2>#3U(O_*9A3VND@$&R'C8HA.="!Z0@D2WP6.;H?^*;CNLRVW2#2'>[; MOJYQQ]1\=0ZW,/O'1;#=JFOP\,T?"`1["WU-CEH?@QC]'I-1G<,57ZE/U MPY`%FA]X7J2;1K_/--T*+6:'#@],3[WOVO%B*BKH^7"^"78+MKF9K[[BJ`A: MTV($,<%"D>'Q8"=8(`DHY^M@%7*43:4HEX)E[.X2!9*O9S"AH(<4QV+`&B:D5H]G9;C:&:D^X[K.3H7_GW?]OW0U'WFZ&3)1BHC]L`$ M1G<>T^A0$3S^8R(]9PK`435I/HAB"EML(IL*Q1CRFGHWU!;8XF=YL*Z1<9A/ MP]LO,=1-.%%4"SJ;CMTW7=L(HY!9-G<#RV9ZW_"XK=O"[]+40Q"=++&S]/E& M!UQ<0+3Q@-2B<**[($ZA00S%-=\WQ,CW>KI(ZAB%#)8#`SC($/U\"83''J\N M04J;WRX?<%V"E;D`:8*:5-Y_JVE.#;L"+VXN7"D.8XNU2X/9KP%85.<)[:YU MK.L#B3&2&S@\O%_M"_%D>A^7>VKV.*-*DQWGS2'S:-I"*1#W0`\-9CBZT>>6 MYSB^8;O<"RTK[+M&Z)HV$*MW*J-'%1M-Z^$/@5%46J7$]8K<_/M*<)J<3WLZ M:RQ.5A+A#,4R5$EUXS3YIM3W287R2MT2+'CY'F]N_K$OGQ]=S6:WHPFN>+Z] M,ILL3BQ6?([W_"1'1MV:(X4LRGYV+V1HH M7?&'R$=(;9T56R#CR\OY%@2U;*G')VP*4>$6(\/Z/DK M73:J2;]UWF[HY\4)G2<,1!'"ZL;'1R5=^%((!$D;#MUBF.`#)G91Q#_4`QB- M%(BDY(7/Y'R@&V0^,L<+"X?M"=6:H,YZAAOH.,DHLGERO5\T1,N)DYB="$FI MOYF')-D_X33GJJ821&??L,WPLM=\,Y:"4X8EP72GB.*!KL@(&B96G)7>S`S# MNM_Y5M]S`]_5_8CW-4LV%/J([O;+'G'PS MQ+E().CQ'/VIZ#1^@T/KK/1[E(,?#2Y#`@B''`V)'&L_VN=D322#D,$GZ<]F M@?@IDKC]/^=)@DA&E0@^U456J3TRO'?[L7++0R,P!&`B#0+SQ2)CGT'Z8FDC M9%7Q5/A+@?+]6IM*UDP9QX`R*?CJ1(0:^S/)OSOCJ`D447YQ90DK)Y*\PS89I]5:Y]R!+Z@\?I_6SV,!Y"<_A[7!_([[JK-5A# M1,%K`#G8/ M$+6+I[FIB(>%C]>HAZ9.IK]";8Q\^^E&0I1H//Z MO#1G`)0_I9QRS2WH'!:= MEL_1@9T*C#$1!QS9E>`4)SP9)7Q^UN!'IL#TXR.%CCJ#E`S`9)`-S`ES\=15 M';BB@)U7BU18P;M)W[P@RRX3]IH\Z%YYJDB(LQ[FOZ]"QD&-=U^!7R%S-F+Y MZ)GSNI`)$M);J.]_Z0>M9)=$JG*T4MP$(@3J72S!GDTS'S+X[>:2B;,2\!#= M*[/Q7H66J#?4`[_71LZ5KPA8\.I>N&J<3?@==&'KHN\Q=75^>V=#"J5PHLDT MU:+(5R-V[O=X$UZ^%'][X($PT# M^Q]YFM$^2H.J@=(U:;2K4IWN7;45"B89T%S>S;2KPX&-D;R#'F68F%@G+*$&`0ZZZV!@D=6Y(J>(>G^5NAI$ M.`O_N@X*GMZH.AQ`6:Q/TQ*OLZ`D"%IFPF@[C2O!(L)&W;<,+XQ+7)($QM/T M><-9",+7GB@/3:XY42A;_BF9^B6&9EN$'D:V@@[V%]4/+WI7MJRB%D/^YX:2:YS%!ZD1R,GG"(Y#=V(.<@?I1;D()+;]=@5W`#ABU6) M"0)GPX&"CR?Q,)FFA2/QV]-"I!BQ[.Q3M+JK)-/H-F*=CYK,J6G/1I^E:#+; M!^0PCX,$I\)2Y'*;[NVU^!Q4=O+D$IU[?9W"BR_H.ES7`&HY2(>`Q+IQBQ9F M;_@.*;G;F(+P(SRKL+%2S"\I[VLVG1(+(\UAS:(RM9PFP=#5$8^UB`$M3(T_ MDR#R4,D]$,>HRS2DN;\)3T8FWXPE))/XW[O4LUUL2;JU%;QRZ.!XAE<7%BA[ MXEFV%G7ZR0KV,Y7^J%XEEL8-*7D#,O]ZLA/B7I8TT)@8[AZAJ;I=J!Y?3_276"ORJ-=$2$-:6YI.E:VE160-K4'HOV.FXH/ M\7?U@W0HLD9$RUOBHC="P@I_#`]/*HA.TCX$(!&V=\[!L,;*X<-'[)NH2-4) MU?MW_#%YCK/@)EJKV4!AMG:2M=SZ0,>M`0+SM`)5#S4-QZ4(#.252PENFYH6 M^C;70MUS=#?DKA,$?AB&9L1#&[Z[^3).#"M<5*18'$8AK:EFE=VX:9A M9J@V=04O59F=C%+;2:B-5'99@!0>[JX:>'!`]O9E%3QOXE6\2^E%KN]I`1!= M\"5$*O$4EVB4?S@T'UI^T];+^3 MU(U"]`=X/>0,GF&V"^?_Y*'0>R@`-,RC1*\C.@S=+$[P#0Y^7Z M)O4>2$6'>I6G7O%_'*ZZ;VI!D2TJ@4/HDD_'*G/.55%# MU-^S"&U-JAGN@NT72*/<]7@3[(\&46@6H#\;,K<%%*)MU&FXC MR79D!AAA#N9`KN+EN)G3,`A3<"'\="D/KG58"@AEK!4 M2DR'Z&U&.(%`LQ.$N.KNR^$&;J M:`J/JY&P50Y49+P?=X/I;#9^O!M^F7YYN'_\#&YIDCUZ9CBK[P+FSS873_,( MMPLHHJ/=T($4O1XOYPC6WX*V1?+7F*@V-'57'M:>0A(^0,L13F1(09$I"B#^ MR8Q,>HJW$D*^D%E`LM86)6<`KX$P>3I,Q%FE3SK,LGVU"Q;VA4@?BHF3S[8Q ME$?EH6@928070@:WCZ/8"?A(1S\2X6?Q4+((+Z2AGE8`P,[=GHYJ148;=XO%2Q[-X.$MWY)5Z&.#RT*-`$Y, M06>Y5KFH4=N(`T^C8F=%_`W81+Q2=7"61.GQO4X5FJAUJ`"E%SGK!Y9I6SKS M/(.%FN;:NNGKGFXR@]N^^J#M/CY4IK\2&`&*2O'Q:#B]?Q#B\FIT,QW,9M.' MP=WDD^3PHR'P.PH5HR#X!6[YQIO!9$R4RD6!(K?$6Z\L)Y)OAK\`U+_E.R2+ MX$*19&5J"9QB.U'610IF+EP8B`AQ(MWGNN%J9B1DB!L8D>8&?L1]DUE:WP76 MR75A3<9L6GD#). MNGI&!2^:2\U>D49AUG,<567J>7W="'S?L'W3-@W#8X9A.*ZC]1W7BT(H0O-4 MDV>:&LN\P.\N3O@6,7`FTM)D/H%8RT:3G>7C8D!\!310WYY2`U2;N-HU$],` M[K=X#H-OM8(Q2',;G4I7SI--R0QKU1TD%@,*H(##>$YGV%+J;?$9\*A*2:4Q MA[O]P.GW==]TN>'I>A!$IL,]7^^'!A!X1EJI+C2NE'/3&-G')ANWAMJ5OKK, M`6[70CA`+>9]&!L7:L2KP<)8N60KTLX,;:2`(,5HN)Q;NJ-%?>Y%MAV&H17J M/#2YZ?K<@3A_N0<506:T0G1Y:5.@&05U5HN&QB*)#>&1R;TRQ10QT3ARN**V M0)J^).GM]IHYBMP[ZGB"D<(A18,^:8DW(&%M[4?56&23=SG9@=F>Z6+VD* M!/R$2Y9(.H'U>A/_H.TP-X<-U%Q,K9BZT@!':B0+PDV>QFD_/,$RA M.',IGP)5:5`F)&5,9\W#L1)^&-B[QQ:R5.VG"XYL^?(`."'S/(UF?]2<&,BM%@M,XH5 MB9(NFL1]4Z`@I,A#-L.HV+9J%2HS4GKB3K(48V2/-UP8R($X6[">9L>`CF=J M-DJ_Q^1>D$:VNG\QWP9P,/X^4`L>H%&609#?:671`V5BHL@(?2WT-!Y:CFWJ MFN$Q%@4L-'5/UPUH(5$SL"^4%45HHG8.X$/*P=`I<:%ZGU)29Z+L1\ZL1#.G M\^@UHBZ4!*FH$LL-&H!:ZYE#%_4"F%)%O#%Y6:MOA2K2@)!%[`1E"CG(KL:5 MB+=G*9!E#2Y=`L+E#E0X!0'.KU*MBGM=OB#Q0`H='"@J,VO%Y10ZX#_G"82] M]!52!"K^['QI2P!L.+%4DXLQWR%(I$(Y7GF^G#C1"]IWG#LXNJ#(F!O9W/4" MTW5-/^1AU#?[@1,P/S(9[P,@3BE!L%B+!$(2O(S#'01)5G@R$@,)),U^C0>- MKAT/F5RLT`>22KY,U<`!M)6($":@5`2EU*-*F2D[X\%S3)4_R2,/^(1):=B, MA$X=\PQWM\GK:%6G?C7?<%F#]B+L^H11MI+,#D1>0$/&0]3:6(P2V$75D_G0 M!@BO9&HM19`![VH+&B(&%>!N#N5D\%IU&\O$`6>O,C M089*405ACK%IS&#]G5+P:SRDZI0HE."6-.)ZX#*X?6D$62#[K@5N]HFE/A#5 MR6Q`Z,]=-%BET9VD-B5!6O>51G.8`.DH>([SQ""F;#2WR/?OCP)XE-H8^YZE MQ("$_;A9=@GIR59".WCK129M#X!46@NFD7\GL@C;Y0)-C3F9]YC'OWY/LP)@ M75/IC$8M7U,+DS"IJ!YHS-PG9,^25\'HJ@/6<)%TO*R3E$I?TB=5.B2+MP#% M2O#UA@<@5NOC$3&B+K:OB#W0<6AJI]2B_`/:GY*8BD73;4PB\\@2'(QJLIV0 MP3X(FA,\KOP"J_T(H*O,TM:2B:J05M[S9*%+`]MK%6'3%70BBTRH`H.45?`.Z"59<)+@:$I;Z>/D_D_ MX16LI2T+M?-K[6+0W'.@/,,^N/F(K@K)2@50XJ4UID5&+@X)B3(OL/M&Y%M] M.PJ9ID=^J(5AQ*(@B/H>=^GAL4C2JP,M'S*9TV;8G0DGEA4&4-!9R-4\DZ@_ M`ME%SEJ*]VHS+[)>);D!<D5%2RMB+%#1!@86C>A*I44:0VP!U9R+G+B-7'Z+0N754SU[ M*9S'^0>K\+,T!J[5_>,F!DH]V":Q>&L(#B^WIB[!IF")'0)`BY^!HD:KW7(+ M/[)IS/?N4H8!0#4@W/%]V[1-BP4:MPS7\]P@U.(ED!:_#9X85X-50'&'Z!1E>52%5H8!@9YP/>*NHC5!.E=7Y<`"A0?H4 M`;.6'+EX?MPJW#'',AE493,IL2UL;K4(,!Z(6Q/D]^O8$' MSH56B.*%V*GB<`'QH#S@\V^\B%/*`F<9JT-"ZMK!3=@,R#:E[8'HD90"U/#] MT'-"SXCZKAT:/+`"KO_FQSRJF!U:054%GR ML4P[I?S(XZ%)O+$/X!#0>VWE6R(G&%-W:H^D:&$N;LZE&G)_]P19_B9E#V06 M%9PC+?H6),$C-PAM,P@,([(-7;/Z=A@RW_!B?^6(1"[6Z M"+_-0YX7^OS\<^^];CG:NW[OK6%;[_INO_?SSTK+9W>Y^3(+FSVG^KO3BJSW ME"C"$D@K#H7#FJ_+VY-7FMIDP?EZ.E_RS63)%HN+W]=/KUQ3NJ3#MZOOUU"= ME/(=S"YW`#SU-F&;9+?N,OJ*)6NI>]9,R`)+^0IWVW%*E:MLU0L,U0LH$.>A)=^4D,T'U<]0M4)V:#)M;I:%6WC/(5NO*N5'X*T+-W$ES5 M7=GU/H4FOZOW7]T;8]VN;^M6W>W*U\GQ5&=0U*+V52[OXN1!IJ5"GM9MQ,>K M\7@C_E[C8E&?SN?'ZRO,HUQOKU=MW9`4WGMWG*?"H,>)M12FU_+>7NM""AMX M'S#\B[I MT,VKVW"5FD?4PWQ:L*=)$B_RO!-PSY\@1%,1[CD&!_58IY&&W0:MMQ)4W#>O M"1?\X[6AID$/FNO"#-6*/1[UN552K1U/ZXEROHY'HZ5[,E"S[W%U,CO7Q-E\G=7/=[>0E5Q;F*%`;IV?&F]VJ8'I5&K`H!!B-;ZZ'@]GL=G`W M^%PK">AJ5K#P9?0-9U@W,B:'7J^PP=K!RX@!FY4TX`/6*BP(A-?G:JMS50/S M&`,%7&>4.H6#%ZL)`>CDV^^/;5NH'JL%)S*XV+4%A\*SGB0C0QVJ.E.0BD:J M)L255O]$QE_&3#(O2WU+G.QO36@`P/=*K=DJ9(:%^7;S^/GZ;@(0S.T`1Q-F M'3<.(2[>A0HTI76>N,7-;!RAC^/-/'D!&6JO\D["'N[U:E:D"'NU>3N%7=+H M``/8([[R.VFG[T0]CY3T=<`S6+[7<]*JHK@N^(Y25N->7MZ%'+'/FLVA<>,T M>E$H+%HUU$2Y3@_\:2XAO.--'+&5D".$"GMRO&4F2/J74=H84S-5CY-%+`3> M+BU1`IG5"N`,\+-7$*WC(M^NY-F485+XF'*%`)?`15(7/\=B+V`_N%..]56/ MJDZGBK-TQ<&)MVK.\<.>`]V`R'Y%%\:%3D2.Q:G!K\RKW2$ZK;V#47!NM$ MEK=(7F^+-X$-0CE=[W-%\)RUAJ7J"J_)Z$>@0#+P8,;!6-GT;?%9?Y%`<#]HU5PP@4V[P4WX"\_-+#@I(<1Z8EF:*%S7=9II6B M--7S2K/"["&"I71@K%-*S>=2#1Z.2$W.2B:3XDD?5W[!X@IW@)M2`Q4#:FBC53:6JO86*4VN*C=H13]Z5!]C?3&6TJFNXTH M2QR<2/>Y;KB:&7F>X09&I+F!'W'?9);6+VH`.CNE%:IRA;E=!))W=()R`V M.NN(N4F3E@R'(U:*"V6R29R#HYP-D"TKA8Z/$#HGT:N0"=4I*'%:?]SHJZ<, M,D(M;W[*[@;3V6S\>#?\,OTB#MKG+X`#U[$+`<;G+5,NX"P*28"3U;K"Y>BI M3C01."J-"3?4^034.+[J$G<)PE7P*RB4^ MRLT%=<&0`C/CB\]")*IPOIH]52H5F#W<&KEJ4`=\%&W6U:U_*;,/YYO$AFY- MI=(FA2"CU4HS5)V]RWDBI"%G*6AERH4E)]&7JJ-4H_U9A1VJ%*G6,5E9K60& M/0EZL+5I*TEB!OI8E0:>8&B%*BRSTHD;F3>K\\K`WU$W3C(X!*B9@R]W!>\V M4J/T%!>";[)L(I8P#=+(6*SLT5:O=20PP#N0*%'(T%.=/E``@-:6)+`Y'J"" M/];S36OW+-Q:8Y-%KP(-ZITNSGULE==$E46YV]AB;V$D_G$*RHZWC\/=`E+< M>B+Y\!!_1R;37N6:!ZU5M?0;4U!RC.D/9:,=*FAI0$!X^53PJ>$"@.H%4BTS M*;CQ"6M'*&+U)2@?V*&IM,@F08OFR49A$!%*ZM:>1(A-WREMH#I^O;,.((SY MZ?IF-)O=7$^FL]GT87`W^00JA:L_[V4SE=L\S+A,@DB`['4&"BJ]'I+>P95%V0)\$$:-;*4Y4=I^#:+ M+U.ZN]`HD,HCI9TXEJKYC6;4R5.YG*U6<0(*V9Z$YBKE='YX_V+85:N$J@G:.VY$%2*PNP/<8>DNN" MP=6H-'=K&I$* M'\8JZO1RG@R"NL;/:AG,5VB0*';^:XT%<2N8-27"K]]I2CA8TM3I1-FZW[HY M];(JFXQ\>P\EOFQ8+DWIXN*4#7ZY&TU30!M(8]'@2HX0/RD#89EG]TW/UUS7 MT;C5=P.S[_B!$3$[%#^A2#@W%3UA0*3<"P=1)==`*0DW=,(E\?3\G^G"/O#M M;J$D8R2*BHR\I2VL1$[&0QB]N!PO=EO56,612+%Z.NZU\E$:@+!4AE0&V.L< M$'@*Q$9U/"U))'PI*@DQ&J]+PB:\462_@/1&#VT.#@ M!E2P>_+MTZCO8_V0\<<\2Y`7IJ$RQ*>M[PL0G9A&KE19"Q6=),5S72DK.X]Q M0_`*<[X7DKJ3-@PB61T%Q0P'&SY8++)3L4V#'?A(US&J9QKV3,S,JNGOS*K, M9`'H=3?#8$K.5^H^RY"7M@H;9( M<+8EXG!`($(US9;=7KI18E'FP5896ML&O3E'BK8.ML>5H%>U=F7#@V M[QN/IREM,#M08+%33FH`65,'Q._E2QW[.UAMO].8KAWV&3C4?8"^>`2J1,_#0[NW:/1M\J M=ZAY%64\C!>[Y0H&]6LJ56@=6#M@]HQY`*@NZM9:%3C5Y4O5H&H5;><`IJ0!-B.EV.#`2RU@EN\@Y06 MS!-4S=4X9!`5&A2*K<05A#&_*BP%4``MA1`K\_Q`.QQ?OB0\?=NJR>$\E89U MC#);(2^K40QV`?HQY[R[LGDWC#FL8IDJ86=;Q2ZJ*PQAI/S5(`029*2.QLGF M!FUJD2UVRL:]91''EHZ^0C4*%MQYIQS5`2IM=D@BV66H@.\DQ:(?;$,!W2MP15`3CJ&C"/I8(L-A? MUAQ+BE"FUHYE_P@*_OWL&-;Z:M`(1951$ES%7&[T(T[H\:.!](S:^S*?J=B+ M0.352]21&_8X?S@<$=;:6QG1<*GT7D`"439XV"`:/!P.MM3BQ(VVNX`)$=WE MNV%O$`EZ=0>", M[$_%FI`UDOZYK=N\XN,#3DEK.!&IKU!MX=O-I3-A58G)NA&!S_%0)=KY>D$3 M)6WT9,_KJ@Q?+B<>E9>GO>DY*.+2JJ!I,(_#^2;8+=@&1H-]C`U3%4SF>Z'E M>J;E.)%FZX[K:"&/N.:8@:[KCDX1I&B+$W3?$-/A&![-GC0X[B`M&%JBQOBB MUO92`D`B]GFM]"PW8^DMIYV@$&U17")'+><&41AKL'T1:F<3K^)=:F]=WT.. M8ZD(5]TVJO56IO+2X.9>'N6A9`H_P.K0:`^'-!'R$'^GJK?I2)O(*!HP71,J1!I4D<''+*I"7:V.&>T(901- M&VSU"-RI+)9JC5;!L4^$V)5-$F[$"L%4@[3*3*;KG/7[FJY[_;[CZV[@>;ZA M6;;O.8;A`O)74.OUKFBS`^O+?@+\)=Z:BF=0B69#S+C3V3C"GF/[?A:$\CF3 MJR3DMDI78N2<2C+"5,92.).CS!@4/$G9Y/=AH+ M[UZ\Z_F:28&'Y'#+JQAIV.7$O##T:!@2`C.OKT_ M"%$N?1HG;#$)U*J1N];4G\F:`-9;`.9317P11+LJ#^.HG8Y_YEI?$[2]7^\$39.&6F$X&]KE+8H'_+B*P1;5GH.SCJ9**S]KJIF' M\C`'^PMGF//5;@E`$`_O[^Y&P^GU_9U$$0_&7PC(-\O5KWB1?ZI_W;G$FZ+* M;8&!*$=S:MS:2&.\Q5!5B4K-?U^%C"\`W"=1O`BY/%L4#-3'ZL10<.;J#L-% M>)5<8;E3LJV!>K5E#4`->TR1&]DID\M$`0EI&94D>72JFQ65"0"N>E M=TK=ZP2NY]ENG_FN[>A!GP>.P4S'\C0>]&VEENC'L)VT1,Z3G;](LZWJ3>0K M-6BH*%A;EVL2(C!5"H:F?7T7AZJ&5)C]J=X\I_EZ&DR_"AUJ#]D=FH#[H9.[ M.@ZQ&3553WL=JSE4F$8+#21H;0H[0FX.$A]./8A:S_5`L(\!*AHQ9(N%+Q:4 M)#-1HM&7N1/E?/!I7#]`FA^CZF5K*"RE;^G<-(5^T"W+LKEG]H,P\'3FN7W; M='1UW5#;`HKS`1B]K00D>$.UJ87.GXPZ4T`'2B&\%NN;($M9:N`@R%3J9"-8 M!&89DYA!Q@[DNTYAI&PYS-$W)'&D7Z(J'OD[?,./?F-*.+;C75!,+Q]SC-.4$9%NJ M4E'!DK-JU1U'PDGD418*-9UY(^K6?UO?!#2]D)+#V5;X1PAU0TREQBD)J%[9 M%URKH(%7(5*WGV@+B+3:A&X1#[6-$2"8)NP:`GD^^I(^L8"*[NE$^@(R_.A' M(LNRPGMAT"R8Y!J1]@.:Q^Z4(0>99A6+HK@3)W&JJ^2]"0CZ:C3AX+KIDE%* M@C,_TFZ74B]42)((D/N'+H;G[^F$Z-V];^Z$!B@KF=(UEDUB$"R":*D>UE%F M73YAYC:Z!$+'/:!7*-R7$ML#9-TJH56D!*K%T@#NY\-HX'+^D!D=):G!$9RVU$#3R+E# M@2T"/2B+"_?5RG3)PS96?7((\KD;K,)-'^%-4:9@4SK"_-3#P(K)-\-?,*6N M;$>V,9R:I^FQ*KFKS$%HZW+ MM'H/IRPB89V`Z9;R.`B!E?$I?YM9-HLV^*PR6LGAO'V9_'IS<#<5#V65M$T5 MUS'SC"#4/*-O\E`S3"-B+/"YX_/0*B"_8=` MBF9U7.2:X2P\X.3I5'1#4+*P:!$-HB0K)LR8-3N%D1+G(K6WI-M!$RH_U$BG MP`_X2@L5Q6G5&\V=BZ@(V62WZN]3Y#'J*&QJ3:I5!](B($$P546'-J[J`9UPUAE MT9L16"5?[[3P/$>*"[R:95YBS,:0>[N4E$*U\ZRQOI_!FD#!EU8^6T$A7"<* M\S+<(=2C;I)1D5#B*0S21A`-H@W/*(R7B1/DJQ!+U'_&`T@?%S*VU^(T@ M4#O!$VGN"6_X8I&AA:CB-6JZ3US\6SR'^>`//$HY<7AX[_^NE""O,94C)?Z! MD/#'>KZIXYF(Q,^K=<'P)&\1(:;NQ\RF5,P&F75L*\5`/AV]59WW3?,_J[9FM)`V^IUTQ3'`@:3$R-E MGKD$_6[FRN7*Q])S!R)N@J0HHCU#$PA`W#*.M'[U8&FHB+3Q\):M:3KCB($H M\8B8&F]`.O45L4S+T$;`'-LNIH4S]GGRZXUB+[.E8@%H6Y":H)Y.C7OA@2_F MS)\OYLE+#LE7VL2Y64&S]=.<)D%`+=>U"EP+Y9($-2JS,IYC0.`@'4+$Y'!`FOIHB-E9,H1`(.=3)?2P0+?ZQ46I9<@C"A%Z8`2! MU=U*Y,N];#2881!H[)8LB057%`VW;[\55)OLQJ.> MR^!]^*MO[?$!?VXX<767I",`DB$^&0VG]P__$'\=W4P'L]GT87`W^00G@6B0 M^F"I+;*<``)V\NGQYN8?>_;>T57*=@'G[LT,I2N^#39S:*/@$YX<8KU.A^<0 M*SAXG-[/9L):(R`\E@?^0$=*UTXW-;$0@JD6G%'V`>HN!$C<9K85C"_E1,M$ M&?NFB)Q#[#15*HTF%X-;G<`3!P!IL]%5]UR3LA#Y)AKT(VHD MI:[)/,MQ-#/2?^].;GGWOO==#UWHB%55'Z#V[XMOP7H3_XZ;R'/Q!KI>/IQ\R+GSY#.H7US\(#V>P#&$ MD(YW&YD?!5Q\*PYABOI"3+[X0?$*"$:"KD3][`%6`O;)S4!X' M,P=A0:XZ"G9)TU2^5\#7^%&^^,YEA M.&P1MDN4>.7'1J-R@, MLA0;1YQ"X9MWORB-)Release-Note: >Audit-Trail: >Unformatted: From saper at SYSTEM.PL Mon May 4 12:20:07 2009 From: saper at SYSTEM.PL (Marcin Cieslak) Date: Mon May 4 12:20:14 2009 Subject: ports/134205: editors/flim does not build with WRKDIRPREFIX=/usr/obj Message-ID: <200905041218.n44CIZh1036681@radziecki.saper.info> >Number: 134205 >Category: ports >Synopsis: editors/flim does not build with WRKDIRPREFIX=/usr/obj >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: Mon May 04 12:20:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Marcin Cieslak >Release: FreeBSD 7.2-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD radziecki.saper.info 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0 r190683M: Mon Apr 6 00:03:54 CEST 2009 root@radziecki.saper.info:/usr/obj/usr/src/sys/VAIO amd64 Installed apel-emacs22-10.7_3 emacs-22.3 >Description: The build and installation of flim fails on "info-build" and "info-install" targets. >How-To-Repeat: First, add WRKDIRPREFIX=/usr/obj to your /etc/make.conf Make sure that "make -V .OBJDIR" returns /usr/obj/usr/ports/editors/flim (and *not* your port directory) ===> Cleaning for flim-emacs22-1.14.8_2,1 ===> Extracting for flim-emacs22-1.14.8_2,1 => MD5 Checksum OK for flim-1.14.8.tar.gz. => SHA256 Checksum OK for flim-1.14.8.tar.gz. ===> Patching for flim-emacs22-1.14.8_2,1 ===> Applying FreeBSD patches for flim-emacs22-1.14.8_2,1 ===> flim-emacs22-1.14.8_2,1 depends on file: /usr/local/bin/emacs-22.3 - found ===> flim-emacs22-1.14.8_2,1 depends on file: /usr/local/share/emacs/22.3/site-lisp/emu/emu.el - found ===> flim-emacs22-1.14.8_2,1 depends on executable: nkf - found ===> Configuring for flim-emacs22-1.14.8_2,1 ===> Building for flim-emacs22-1.14.8_2,1 /usr/local/bin/emacs-22.3 -batch -q -no-site-file -l FLIM-MK -f compile-flim /usr/local /usr/local/share/emacs/22.3/site-lisp /usr/local/share/emacs/22.3/site-lisp Loading /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/FLIM-CFG... Loading /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/FLIM-ELS... !! File hex-util uses old-style backquotes !! In toplevel form: sha1-el.el:115:1:Warning: !! The file uses old-style backquotes !! This functionality has been obsolete for more than 10 years already and will be removed soon. See (elisp)Backquote in the manual. Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/sha1-el.elc In toplevel form: hex-util.el:29:1:Warning: !! The file uses old-style backquotes !! This functionality has been obsolete for more than 10 years already and will be removed soon. See (elisp)Backquote in the manual. Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/hex-util.elc In toplevel form: hmac-def.el:32:1:Warning: !! The file uses old-style backquotes !! This functionality has been obsolete for more than 10 years already and will be removed soon. See (elisp)Backquote in the manual. Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/hmac-def.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/md5.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/sha1.elc In end of data: hmac-md5.el:94:1:Warning: the function `md5-binary' is not known to be defined. Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/hmac-md5.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/hmac-sha1.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mel-b-ccl.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mel-q-ccl.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mel-b-el.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/std11.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/luna.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/lunit.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mime-def.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mel.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mel-q.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mel-u.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mel-g.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/eword-decode.elc In toplevel form: eword-encode.el:163:1:Warning: !! The file uses old-style backquotes !! This functionality has been obsolete for more than 10 years already and will be removed soon. See (elisp)Backquote in the manual. eword-encode.el:165:1:Warning: !! The file uses old-style backquotes !! This functionality has been obsolete for more than 10 years already and will be removed soon. See (elisp)Backquote in the manual. eword-encode.el:167:1:Warning: !! The file uses old-style backquotes !! This functionality has been obsolete for more than 10 years already and will be removed soon. See (elisp)Backquote in the manual. eword-encode.el:169:1:Warning: !! The file uses old-style backquotes !! This functionality has been obsolete for more than 10 years already and will be removed soon. See (elisp)Backquote in the manual. eword-encode.el:171:1:Warning: !! The file uses old-style backquotes !! This functionality has been obsolete for more than 10 years already and will be removed soon. See (elisp)Backquote in the manual. In end of data: eword-encode.el:726:1:Warning: the following functions are not known to be defined: detect-mime-charset-string, tm-eword::words-to-ruled-words Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/eword-encode.elc In end of data: mime.el:438:1:Warning: the function `mime-entity-content-type' might not be defined at runtime. Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mime.elc In mime-decode-parameter-value: mime-parse.el:100:23:Warning: `string-to-int' is an obsolete function (as of Emacs 22.1); use `string-to-number' instead. In mime-decode-parameters: mime-parse.el:150:32:Warning: `string-to-int' is an obsolete function (as of Emacs 22.1); use `string-to-number' instead. In end of data: mime-parse.el:512:1:Warning: the function `mime-parse-message' might not be defined at runtime. Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mime-parse.elc In end of data: mmgeneric.el:179:1:Warning: the following functions might not be defined at runtime: mime-entity-content, mime-entity-content-type Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mmgeneric.elc In end of data: mmbuffer.el:360:1:Warning: the following functions might not be defined at runtime: mime-parse-message, mime-entity-content-type Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mmbuffer.elc In end of data: mmcooked.el:93:1:Warning: the following functions might not be defined at runtime: mime-entity-content, mime-entity-content-type Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mmcooked.elc In end of data: mmexternal.el:187:1:Warning: the following functions might not be defined at runtime: mime-entity-content-type, mime-entity-content Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mmexternal.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/mime-conf.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/sasl.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/sasl-cram.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/sasl-digest.elc In toplevel form: md4.el:90:1:Warning: !! The file uses old-style backquotes !! This functionality has been obsolete for more than 10 years already and will be removed soon. See (elisp)Backquote in the manual. Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/md4.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/ntlm.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/sasl-ntlm.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/sasl-scram.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/smtp.elc Wrote /usr/obj/usr/ports/editors/flim/work/flim-1.14.8/qmtp.elc VERSION_SPECIFIC_LISPDIR=/usr/local/share/emacs/22.3/site-lisp PREFIX=/usr/local LISPDIR=/usr/local/share/emacs/22.3/site-lisp make: don't know how to make info-build. Stop *** Error code 2 Stop in /usr/ports/editors/flim. >Fix: Porbably @{MAKE} sequences need to access the port's Makefile (it is no longer in the cwd) >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Mon May 4 12:20:21 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Mon May 4 12:20:29 2009 Subject: ports/134205: editors/flim does not build with WRKDIRPREFIX=/usr/obj Message-ID: <200905041220.n44CKK2h000279@freefall.freebsd.org> Synopsis: editors/flim does not build with WRKDIRPREFIX=/usr/obj Responsible-Changed-From-To: freebsd-ports-bugs->nobutaka Responsible-Changed-By: edwin Responsible-Changed-When: Mon May 4 12:20:18 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134205 From wxs at FreeBSD.org Mon May 4 13:35:51 2009 From: wxs at FreeBSD.org (wxs@FreeBSD.org) Date: Mon May 4 13:35:57 2009 Subject: ports/134199: Quagga 4 byte ASN bugfix (patch included). Message-ID: <200905041335.n44DZomb008459@freefall.freebsd.org> Synopsis: Quagga 4 byte ASN bugfix (patch included). Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: wxs Responsible-Changed-When: Mon May 4 13:35:50 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134199 From mark at foster.cc Mon May 4 14:10:01 2009 From: mark at foster.cc (Mark Foster) Date: Mon May 4 14:10:07 2009 Subject: ports/134206: vuxml submission for databases/memcached Message-ID: <200905041408.n44E8Fj5062171@www.freebsd.org> >Number: 134206 >Category: ports >Synopsis: vuxml submission for databases/memcached >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon May 04 14:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mark Foster >Release: 7.1 RELEASE >Organization: Credentia >Environment: >Description: vulnerability announced in memcached. Port is already at 1.2.8 which is not vulnerable, so this vuxml is for the laggers. >How-To-Repeat: >Fix: memcached -- memcached stats maps Information Disclosure Weakness memcached 1.2.8

Secunia reports:

A weakness has been reported in memcached which can be exploited by malicious people to disclose system information. The weakness is caused due to the application disclosing the content of /proc/self/maps if a stats maps command is received. This can be exploited to disclose e.g. the addresses of allocated memory regions. The weakness is reported in version 1.2.7. Prior versions may also be affected.

http://secunia.com/advisories/34915/ 2009-04-29 2009-05-04
>Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Mon May 4 14:10:10 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Mon May 4 14:10:17 2009 Subject: ports/134206: vuxml submission for databases/memcached Message-ID: <200905041410.n44EAA5D047889@freefall.freebsd.org> Synopsis: vuxml submission for databases/memcached Responsible-Changed-From-To: freebsd-ports-bugs->mnag Responsible-Changed-By: edwin Responsible-Changed-When: Mon May 4 14:10:09 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134206 From mark at foster.cc Mon May 4 14:20:04 2009 From: mark at foster.cc (Mark Foster) Date: Mon May 4 14:20:10 2009 Subject: ports/134207: vuxml submission for net-im/openfire Message-ID: <200905041412.n44EC9oa072396@www.freebsd.org> >Number: 134207 >Category: ports >Synopsis: vuxml submission for net-im/openfire >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Mon May 04 14:20:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mark Foster >Release: 7.1 RELEASE >Organization: Credentia >Environment: >Description: >How-To-Repeat: >Fix: openfire -- Openfire No Password Changes Security Bypass openfire 3.6.3

Secunia reports:

A vulnerability has been reported in Openfire which can be exploited by malicious users to bypass certain security restrictions. The vulnerability is caused due to Openfire not properly respecting the no password changes setting which can be exploited to change passwords by sending jabber:iq:auth passwd_change requests to the server.

http://secunia.com/advisories/34984/ 2009-05-04 2009-05-04
>Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Mon May 4 14:20:14 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Mon May 4 14:20:21 2009 Subject: ports/134207: vuxml submission for net-im/openfire Message-ID: <200905041420.n44EKEsk062585@freefall.freebsd.org> Synopsis: vuxml submission for net-im/openfire Responsible-Changed-From-To: freebsd-ports-bugs->gahr Responsible-Changed-By: edwin Responsible-Changed-When: Mon May 4 14:20:13 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134207 From estartu at augusta.de Mon May 4 14:40:02 2009 From: estartu at augusta.de (Gerhard Schmidt) Date: Mon May 4 14:40:09 2009 Subject: ports/134208: [maintainer update] Port www/zope211 Update Version 2.11.2 -> 2.11.3 Message-ID: <200905041433.n44EX7s6092788@etustar.ze.tum.de> >Number: 134208 >Category: ports >Synopsis: [maintainer update] Port www/zope211 Update Version 2.11.2 -> 2.11.3 >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: Mon May 04 14:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Gerhard Schmidt >Release: FreeBSD 7.1-STABLE amd64 >Organization: Augsburger Computer Forum e.V. >Environment: System: FreeBSD etustar.ze.tum.de 7.1-STABLE FreeBSD 7.1-STABLE #9: Mon Feb 9 09:13:59 CET 2009 root@etustar.ze.tum.de:/usr/src/sys/amd64/compile/ETUSTAR amd64 >Description: Update form Version 2.11.2 to 2.11.3 >How-To-Repeat: >Fix: To Update the Port delete files/patch-lib-python-DateTime apply the following Patch diff -ur Makefile.orig Makefile --- Makefile.orig 2009-05-04 15:42:29.000000000 +0200 +++ Makefile 2009-05-04 15:43:40.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= zope211 -PORTVERSION= 2.11.2 +PORTVERSION= 2.11.3 CATEGORIES= www python zope MASTER_SITES= http://www.zope.org/Products/Zope/${PORTVERSION}/ DISTNAME= Zope-${PORTVERSION}-final diff -ur zope211.orig/distinfo zope211/distinfo --- distinfo.orig 2009-05-04 15:42:29.000000000 +0200 +++ distinfo 2009-05-04 15:46:05.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (zope/Zope-2.11.2-final.tgz) = c866f595f0f4dea268de21433c743666 -SHA256 (zope/Zope-2.11.2-final.tgz) = f49a703b9c0b9ee5babee0583e3acfce493f778fe475fc8f22cab9138e7367ec -SIZE (zope/Zope-2.11.2-final.tgz) = 7161224 +MD5 (zope/Zope-2.11.3-final.tgz) = 208e235087d707ec0ff07a47cb43c786 +SHA256 (zope/Zope-2.11.3-final.tgz) = 70144fdcd60d31b97ccbc9dd93abf19f75eee528522eb59ae09467a321efd719 +SIZE (zope/Zope-2.11.3-final.tgz) = 7320227 diff -ur pkg-plist.orig pkg-plist --- pkg-plist.orig 2009-05-04 15:42:29.000000000 +0200 +++ pkg-plist 2009-05-04 16:16:30.000000000 +0200 @@ -401,8 +401,6 @@ %%ZOPEBASEDIR%%/lib/python/BTrees/tests/test_check.pyc %%ZOPEBASEDIR%%/lib/python/BTrees/tests/test_compare.py %%ZOPEBASEDIR%%/lib/python/BTrees/tests/test_compare.pyc -%%ZOPEBASEDIR%%/lib/python/ClientForm/ClientForm.py -%%ZOPEBASEDIR%%/lib/python/ClientForm/ClientForm.pyc %%ZOPEBASEDIR%%/lib/python/ClientForm/__init__.py %%ZOPEBASEDIR%%/lib/python/ClientForm/__init__.pyc %%ZOPEBASEDIR%%/lib/python/ComputedAttribute/_ComputedAttribute.so @@ -2162,6 +2160,8 @@ %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/before_and_after.pyc %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/before_and_after24.py %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/before_and_after24.pyc +%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/before_and_after25.py +%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/before_and_after26.py %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/class.py %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/class.pyc %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/lambda.py @@ -2170,12 +2170,15 @@ %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/restricted_module.pyc %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.py %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax.pyc +%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/security_in_syntax26.py %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testCompile.py %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testCompile.pyc %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testREADME.py %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testREADME.pyc %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.py %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testRestrictions.pyc +%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testUtiliities.py +%%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/testUtiliities.pyc %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/unpack.py %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/unpack.pyc %%ZOPEBASEDIR%%/lib/python/RestrictedPython/tests/verify.py @@ -3371,6 +3374,8 @@ %%ZOPEBASEDIR%%/lib/python/Zope2/App/startup.pyc %%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/__init__.py %%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/__init__.pyc +%%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/testDoomedTransaction.py +%%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/testDoomedTransaction.pyc %%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/testExceptionHook.py %%ZOPEBASEDIR%%/lib/python/Zope2/App/tests/testExceptionHook.pyc %%ZOPEBASEDIR%%/lib/python/Zope2/ClassFactory.py @@ -3672,14 +3677,23 @@ %%ZOPEBASEDIR%%/lib/python/mechanize/__init__.pyc %%ZOPEBASEDIR%%/lib/python/mechanize/_auth.py %%ZOPEBASEDIR%%/lib/python/mechanize/_auth.pyc +%%ZOPEBASEDIR%%/lib/python/mechanize/_beautifulsoup.py +%%ZOPEBASEDIR%%/lib/python/mechanize/_beautifulsoup.pyc %%ZOPEBASEDIR%%/lib/python/mechanize/_clientcookie.py %%ZOPEBASEDIR%%/lib/python/mechanize/_clientcookie.pyc +%%ZOPEBASEDIR%%/lib/python/mechanize/_debug.py +%%ZOPEBASEDIR%%/lib/python/mechanize/_debug.pyc +%%ZOPEBASEDIR%%/lib/python/mechanize/_file.py +%%ZOPEBASEDIR%%/lib/python/mechanize/_file.pyc +%%ZOPEBASEDIR%%/lib/python/mechanize/_firefox3cookiejar.py %%ZOPEBASEDIR%%/lib/python/mechanize/_gzip.py %%ZOPEBASEDIR%%/lib/python/mechanize/_gzip.pyc %%ZOPEBASEDIR%%/lib/python/mechanize/_headersutil.py %%ZOPEBASEDIR%%/lib/python/mechanize/_headersutil.pyc %%ZOPEBASEDIR%%/lib/python/mechanize/_html.py %%ZOPEBASEDIR%%/lib/python/mechanize/_html.pyc +%%ZOPEBASEDIR%%/lib/python/mechanize/_http.py +%%ZOPEBASEDIR%%/lib/python/mechanize/_http.pyc %%ZOPEBASEDIR%%/lib/python/mechanize/_lwpcookiejar.py %%ZOPEBASEDIR%%/lib/python/mechanize/_lwpcookiejar.pyc %%ZOPEBASEDIR%%/lib/python/mechanize/_mechanize.py @@ -3694,10 +3708,20 @@ %%ZOPEBASEDIR%%/lib/python/mechanize/_pullparser.pyc %%ZOPEBASEDIR%%/lib/python/mechanize/_request.py %%ZOPEBASEDIR%%/lib/python/mechanize/_request.pyc +%%ZOPEBASEDIR%%/lib/python/mechanize/_response.py +%%ZOPEBASEDIR%%/lib/python/mechanize/_response.pyc +%%ZOPEBASEDIR%%/lib/python/mechanize/_rfc3986.py +%%ZOPEBASEDIR%%/lib/python/mechanize/_rfc3986.pyc +%%ZOPEBASEDIR%%/lib/python/mechanize/_seek.py +%%ZOPEBASEDIR%%/lib/python/mechanize/_seek.pyc +%%ZOPEBASEDIR%%/lib/python/mechanize/_sockettimeout.py +%%ZOPEBASEDIR%%/lib/python/mechanize/_sockettimeout.pyc +%%ZOPEBASEDIR%%/lib/python/mechanize/_testcase.py +%%ZOPEBASEDIR%%/lib/python/mechanize/_testcase.pyc +%%ZOPEBASEDIR%%/lib/python/mechanize/_upgrade.py +%%ZOPEBASEDIR%%/lib/python/mechanize/_upgrade.pyc %%ZOPEBASEDIR%%/lib/python/mechanize/_urllib2.py %%ZOPEBASEDIR%%/lib/python/mechanize/_urllib2.pyc -%%ZOPEBASEDIR%%/lib/python/mechanize/_urllib2_support.py -%%ZOPEBASEDIR%%/lib/python/mechanize/_urllib2_support.pyc %%ZOPEBASEDIR%%/lib/python/mechanize/_useragent.py %%ZOPEBASEDIR%%/lib/python/mechanize/_useragent.pyc %%ZOPEBASEDIR%%/lib/python/mechanize/_util.py @@ -3743,8 +3767,6 @@ %%ZOPEBASEDIR%%/lib/python/persistent/tests/test_wref.pyc %%ZOPEBASEDIR%%/lib/python/persistent/wref.py %%ZOPEBASEDIR%%/lib/python/persistent/wref.pyc -%%ZOPEBASEDIR%%/lib/python/pytz/LICENSE.txt -%%ZOPEBASEDIR%%/lib/python/pytz/README.txt %%ZOPEBASEDIR%%/lib/python/pytz/__init__.py %%ZOPEBASEDIR%%/lib/python/pytz/__init__.pyc %%ZOPEBASEDIR%%/lib/python/pytz/reference.py @@ -3823,7 +3845,9 @@ %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/La_Rioja %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Mendoza %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Rio_Gallegos +%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Salta %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/San_Juan +%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/San_Luis %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Tucuman %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Argentina/Ushuaia %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Aruba @@ -3881,6 +3905,7 @@ %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Knox %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Marengo %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Petersburg +%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Tell_City %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Vevay %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Vincennes %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Indiana/Winamac @@ -3900,6 +3925,7 @@ %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Maceio %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Managua %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Manaus +%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Marigot %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Martinique %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Mazatlan %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Mendoza @@ -3935,11 +3961,13 @@ %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Resolute %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Rio_Branco %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Rosario +%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Santarem %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Santiago %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Santo_Domingo %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Sao_Paulo %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Scoresbysund %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/Shiprock +%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/St_Barthelemy %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/St_Johns %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/St_Kitts %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/America/St_Lucia @@ -3997,6 +4025,7 @@ %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Dushanbe %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Gaza %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Harbin +%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Ho_Chi_Minh %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Hong_Kong %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Hovd %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Irkutsk @@ -4009,6 +4038,7 @@ %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Karachi %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Kashgar %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Katmandu +%%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Kolkata %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Krasnoyarsk %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Kuala_Lumpur %%ZOPEBASEDIR%%/lib/python/pytz/zoneinfo/Asia/Kuching @@ -4508,7 +4538,6 @@ %%ZOPEBASEDIR%%/lib/python/zope/annotation/tests/annotations.pyc %%ZOPEBASEDIR%%/lib/python/zope/annotation/tests/test_attributeannotations.py %%ZOPEBASEDIR%%/lib/python/zope/annotation/tests/test_attributeannotations.pyc -%%ZOPEBASEDIR%%/lib/python/zope/app/EXTERNALS.txt %%ZOPEBASEDIR%%/lib/python/zope/app/__init__.py %%ZOPEBASEDIR%%/lib/python/zope/app/__init__.pyc %%ZOPEBASEDIR%%/lib/python/zope/app/annotation/__init__.py @@ -4760,6 +4789,8 @@ %%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/test_runtimeinfoview.pyc %%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/test_servercontrolview.py %%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/test_servercontrolview.pyc +%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/test_translationdomaincontrol.py +%%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/tests/test_translationdomaincontrol.pyc %%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/translationdomaincontrol.pt %%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/translationdomaincontrol.py %%ZOPEBASEDIR%%/lib/python/zope/app/applicationcontrol/browser/translationdomaincontrol.pyc @@ -5515,6 +5546,8 @@ %%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_delete.pyc %%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_functional_put.py %%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_functional_put.pyc +%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_options.py +%%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_options.pyc %%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_put.py %%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_put.pyc %%ZOPEBASEDIR%%/lib/python/zope/app/http/tests/test_traversers.py @@ -5645,6 +5678,8 @@ %%ZOPEBASEDIR%%/lib/python/zope/app/locales/it/LC_MESSAGES/zope.po %%ZOPEBASEDIR%%/lib/python/zope/app/locales/ja/LC_MESSAGES/zope.mo %%ZOPEBASEDIR%%/lib/python/zope/app/locales/ja/LC_MESSAGES/zope.po +%%ZOPEBASEDIR%%/lib/python/zope/app/locales/nl/LC_MESSAGES/zope.mo +%%ZOPEBASEDIR%%/lib/python/zope/app/locales/nl/LC_MESSAGES/zope.po %%ZOPEBASEDIR%%/lib/python/zope/app/locales/pl/LC_MESSAGES/zope.mo %%ZOPEBASEDIR%%/lib/python/zope/app/locales/pl/LC_MESSAGES/zope.po %%ZOPEBASEDIR%%/lib/python/zope/app/locales/pt_BR/LC_MESSAGES/zope.mo @@ -6865,11 +6900,11 @@ %%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/untrusted/untrusted.pyc %%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/ustr.py %%ZOPEBASEDIR%%/lib/python/zope/documenttemplate/ustr.pyc +%%ZOPEBASEDIR%%/lib/python/zope/dottedname/README.txt %%ZOPEBASEDIR%%/lib/python/zope/dottedname/__init__.py %%ZOPEBASEDIR%%/lib/python/zope/dottedname/__init__.pyc %%ZOPEBASEDIR%%/lib/python/zope/dottedname/resolve.py %%ZOPEBASEDIR%%/lib/python/zope/dottedname/resolve.pyc -%%ZOPEBASEDIR%%/lib/python/zope/dottedname/resolve.txt %%ZOPEBASEDIR%%/lib/python/zope/dottedname/tests.py %%ZOPEBASEDIR%%/lib/python/zope/dottedname/tests.pyc %%ZOPEBASEDIR%%/lib/python/zope/dublincore/__init__.py @@ -8484,17 +8519,19 @@ %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/__init__.pyc %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/browser.py %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/browser.pyc -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/dummymodules.py -%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/dummymodules.pyc +%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/fixed-bugs.txt %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/__init__.py %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/__init__.pyc %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/controls.html %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/forms.html +%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/fragment.html %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/ftesting.zcml %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/navigate.html %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/notitle.html %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/oneform.html +%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/radio.html %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/simple.html +%%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/textarea.html %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/ftests/zope3logo.gif %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/interfaces.py %%ZOPEBASEDIR%%/lib/python/zope/testbrowser/interfaces.pyc @@ -8509,6 +8546,7 @@ %%ZOPEBASEDIR%%/lib/python/zope/testing/cleanup.pyc %%ZOPEBASEDIR%%/lib/python/zope/testing/doctest.py %%ZOPEBASEDIR%%/lib/python/zope/testing/doctest.pyc +%%ZOPEBASEDIR%%/lib/python/zope/testing/doctest.txt %%ZOPEBASEDIR%%/lib/python/zope/testing/doctestunit.py %%ZOPEBASEDIR%%/lib/python/zope/testing/doctestunit.pyc %%ZOPEBASEDIR%%/lib/python/zope/testing/formparser.py @@ -8553,6 +8591,10 @@ %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/more/sampletests.pyc %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/sampletests.py %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/sampletests.pyc +%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-r/innertests.py +%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-r/innertests.pyc +%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-r/outertests.py +%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-r/outertests.pyc %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/README.txt %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/gc0.py %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/gc0.pyc @@ -8705,9 +8747,11 @@ %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-layers.txt %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-leaks-err.txt %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-leaks.txt +%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-package-normalization.txt %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-profiling-cprofiler.txt %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-profiling.txt %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-progress.txt +%%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-reentrancy.txt %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-repeat.txt %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-simple.txt %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-test-selection.txt @@ -8873,6 +8917,7 @@ @dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample12 @dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1/sample11 @dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex/sample1 +@dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-r @dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products/more @dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-products @dirrm %%ZOPEBASEDIR%%/lib/python/zope/testing/testrunner-ex-pp-lib/sample4/products @@ -9073,6 +9118,8 @@ @dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/pt_BR @dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/pl/LC_MESSAGES @dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/pl +@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/nl/LC_MESSAGES +@dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/nl @dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/ja/LC_MESSAGES @dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/ja @dirrm %%ZOPEBASEDIR%%/lib/python/zope/app/locales/it/LC_MESSAGES @@ -9525,9 +9572,9 @@ @dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/securitySuite @dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl/dtml @dirrm %%ZOPEBASEDIR%%/lib/python/AccessControl -@dirrmtry %%ZOPEBASEDIR%%/lib/python -@dirrmtry %%ZOPEBASEDIR%%/lib @dirrm %%ZOPEBASEDIR%%/doc @dirrm %%ZOPEBASEDIR%%/bin @dirrmtry %%ZOPEBASEDIR%%/Products +@dirrmtry %%ZOPEBASEDIR%%/lib/python +@dirrmtry %%ZOPEBASEDIR%%/lib @dirrmtry %%ZOPEBASEDIR%% >Release-Note: >Audit-Trail: >Unformatted: From dhn at FreeBSD.org Mon May 4 15:43:57 2009 From: dhn at FreeBSD.org (dhn@FreeBSD.org) Date: Mon May 4 15:44:04 2009 Subject: ports/134208: [maintainer update] Port www/zope211 Update Version 2.11.2 -> 2.11.3 Message-ID: <200905041543.n44Fhv8w082620@freefall.freebsd.org> Synopsis: [maintainer update] Port www/zope211 Update Version 2.11.2 -> 2.11.3 Responsible-Changed-From-To: freebsd-ports-bugs->dhn Responsible-Changed-By: dhn Responsible-Changed-When: Mon May 4 15:43:56 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134208 From mons at cpan.org Mon May 4 16:00:09 2009 From: mons at cpan.org (Vladimir Perepelitsa) Date: Mon May 4 16:00:17 2009 Subject: ports/134209: [NEW PORT] devel/p5-ToolSet: Load your commonly-used modules in a single import Message-ID: <200905041533.n44FXn00036023@zoo.rambler.ru> >Number: 134209 >Category: ports >Synopsis: [NEW PORT] devel/p5-ToolSet: Load your commonly-used modules in a single import >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon May 04 16:00:07 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Vladimir Perepelitsa >Release: FreeBSD 6.2-RELEASE-p1 amd64 >Organization: >Environment: System: FreeBSD zoo.rambler.ru 6.2-RELEASE-p1 FreeBSD 6.2-RELEASE-p1 #1: Thu Feb 15 17:00:27 MSK 2007 >Description: Load your commonly-used modules in a single import WWW: http://search.cpan.org/dist/ToolSet/ Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-ToolSet-1.00.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-ToolSet # p5-ToolSet/pkg-descr # p5-ToolSet/Makefile # p5-ToolSet/pkg-plist # p5-ToolSet/distinfo # echo c - p5-ToolSet mkdir -p p5-ToolSet > /dev/null 2>&1 echo x - p5-ToolSet/pkg-descr sed 's/^X//' >p5-ToolSet/pkg-descr << 'END-of-p5-ToolSet/pkg-descr' XLoad your commonly-used modules in a single import X XWWW: http://search.cpan.org/dist/ToolSet/ END-of-p5-ToolSet/pkg-descr echo x - p5-ToolSet/Makefile sed 's/^X//' >p5-ToolSet/Makefile << 'END-of-p5-ToolSet/Makefile' X# New ports collection makefile for: p5-ToolSet X# Date created: 2009-05-04 X# Whom: Vladimir Perepelitsa X# X# $FreeBSD$ X# X XPORTNAME= ToolSet XPORTVERSION= 1.00 XCATEGORIES= devel perl5 XMASTER_SITES=\ X ftp://ftp.perl.org/pub/CPAN/authors/id/D/DA/DAGOLDEN/\ X http://ftp.heanet.ie/mirrors/ftp.perl.org/pub/CPAN/authors/id/D/DA/DAGOLDEN/ XPKGNAMEPREFIX= p5- X XMAINTAINER= mons@cpan.org XCOMMENT= Load your commonly-used modules in a single import X XPERL_CONFIGURE= yes XMAN3=\ X ToolSet.3\ X ToolSet::SWC.3 X X.include END-of-p5-ToolSet/Makefile echo x - p5-ToolSet/pkg-plist sed 's/^X//' >p5-ToolSet/pkg-plist << 'END-of-p5-ToolSet/pkg-plist' X@comment $FreeBSD$ X%%SITE_PERL%%/ToolSet/SWC.pm X%%SITE_PERL%%/ToolSet/SWC.pod X%%SITE_PERL%%/ToolSet.pm X%%SITE_PERL%%/ToolSet.pod X%%SITE_PERL%%/%%PERL_ARCH%%/auto/ToolSet/.packlist END-of-p5-ToolSet/pkg-plist echo x - p5-ToolSet/distinfo sed 's/^X//' >p5-ToolSet/distinfo << 'END-of-p5-ToolSet/distinfo' XMD5 (ToolSet-1.00.tar.gz) = 201b124486a21281972c8def05b49427 XSHA256 (ToolSet-1.00.tar.gz) = cc545d98e42e5cbcbf6e9df1f2a4de4e3e65d10b3ea07075b98a3afb96f3c24e XSIZE (ToolSet-1.00.tar.gz) = 17623 END-of-p5-ToolSet/distinfo exit --- p5-ToolSet-1.00.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Mon May 4 16:14:01 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Mon May 4 16:14:07 2009 Subject: ports/134209: [NEW PORT] devel/p5-ToolSet: Load your commonly-used modules in a single import Message-ID: <200905041614.n44GE0tj022177@freefall.freebsd.org> Synopsis: [NEW PORT] devel/p5-ToolSet: Load your commonly-used modules in a single import Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon May 4 16:14:00 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134209 From araujo at FreeBSD.org Mon May 4 16:40:05 2009 From: araujo at FreeBSD.org (Marcelo Araujo ) Date: Mon May 4 16:40:36 2009 Subject: ports/134210: [UPDATE] net-mgmt/ocsinventory-agent update to 1.02 Message-ID: <1241455115.59383@ponderosa.intelbras.com.br> >Number: 134210 >Category: ports >Synopsis: [UPDATE] net-mgmt/ocsinventory-agent update to 1.02 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon May 04 16:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Marcelo Araujo >Release: FreeBSD 7.1-RELEASE-p5 amd64 >Organization: FreeBSD >Environment: System: FreeBSD 7.1-RELEASE-p5 #9: Thu Apr 23 08:40:11 BRT 2009 araujo@ponderosa.intelbras.com.br:/usr/obj/usr/src/sys/PONDEROSA >Description: - Update to latest version. - Take maintainership. >How-To-Repeat: >Fix: --- ocsinventory-agent.diff begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net-mgmt/ocsinventory-agent/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- Makefile 9 Jun 2008 00:31:45 -0000 1.5 +++ Makefile 4 May 2009 16:32:57 -0000 @@ -6,14 +6,14 @@ # PORTNAME= Ocsinventory -PORTVERSION= 0.0.9.2 -PORTREVISION= 1 +PORTVERSION= 1.02 CATEGORIES= net-mgmt -MASTER_SITES= http://nana.rulezlan.org/~goneri/ocsinventory-agent/ +MASTER_SITES= SF +MASTER_SITE_SUBDIR= ocsinventory PKGNAMESUFFIX= -Agent -DISTNAME= ${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} +DISTNAME= OCSNG_UNIX_AGENT-${PORTVERSION} -MAINTAINER= freebsd@rootxs.org +MAINTAINER= araujo@FreeBSD.org COMMENT= Keep track of the computers configuration and software BUILD_DEPENDS= ${SITE_PERL}/LWP.pm:${PORTSDIR}/www/p5-libwww \ @@ -26,6 +26,7 @@ USE_PERL5= yes PERL_CONFIGURE= yes IS_INTERACTIVE= yes +WRKSRC= ${WRKDIR}/${PORTNAME}${PKGNAMESUFFIX}-1.0.1 MAN1= ocsinventory-agent.1 Index: distinfo =================================================================== RCS file: /home/pcvs/ports/net-mgmt/ocsinventory-agent/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- distinfo 7 Jun 2008 03:30:20 -0000 1.3 +++ distinfo 4 May 2009 16:32:57 -0000 @@ -1,3 +1,3 @@ -MD5 (Ocsinventory-Agent-0.0.9.2.tar.gz) = 9d2461e1e15845e4dee3cb1be2d0f518 -SHA256 (Ocsinventory-Agent-0.0.9.2.tar.gz) = d9b7214e22b6a5983b0fa9b419501f8951c1b7dc93621f5af5bde4d900818518 -SIZE (Ocsinventory-Agent-0.0.9.2.tar.gz) = 758368 +MD5 (OCSNG_UNIX_AGENT-1.02.tar.gz) = 749501586e0c634680c13000b3b2851e +SHA256 (OCSNG_UNIX_AGENT-1.02.tar.gz) = f430264a46c523d5f27ef83ec6c214df4f2354b0191edbf18951c1474dd5ab2b +SIZE (OCSNG_UNIX_AGENT-1.02.tar.gz) = 1392033 --- ocsinventory-agent.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Mon May 4 16:40:42 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Mon May 4 16:40:48 2009 Subject: ports/134210: [UPDATE] net-mgmt/ocsinventory-agent update to 1.02 Message-ID: <200905041640.n44GegMq053788@freefall.freebsd.org> Synopsis: [UPDATE] net-mgmt/ocsinventory-agent update to 1.02 Responsible-Changed-From-To: freebsd-ports-bugs->araujo Responsible-Changed-By: edwin Responsible-Changed-When: Mon May 4 16:40:41 UTC 2009 Responsible-Changed-Why: Submitter has GNATS access (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134210 From legatvs at gmail.com Mon May 4 18:00:05 2009 From: legatvs at gmail.com (legatvs) Date: Mon May 4 18:00:26 2009 Subject: ports/134211: [maintainer update] multimedia/cclive to 0.4.1 Message-ID: <200905041751.n44Hpef0064202@www.freebsd.org> >Number: 134211 >Category: ports >Synopsis: [maintainer update] multimedia/cclive to 0.4.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon May 04 18:00:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: legatvs >Release: FreeBSD 7.1-RELEASE-p5 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/multimedia/cclive/Makefile cclive/Makefile --- /usr/ports/multimedia/cclive/Makefile 2009-04-27 02:44:22.000000000 +0300 +++ cclive/Makefile 2009-05-04 20:35:19.000000000 +0300 @@ -6,7 +6,7 @@ # PORTNAME= cclive -PORTVERSION= 0.3.2 +PORTVERSION= 0.4.1 CATEGORIES= multimedia net MASTER_SITES= GOOGLE_CODE @@ -15,8 +15,8 @@ LIB_DEPENDS= curl.5:${PORTSDIR}/ftp/curl -OPTIONS= TITLE "Enable video title parsing (req. Perl)" off \ - SIGWINCH "Enable SIGWINCH handling; resize progressbar" on +OPTIONS= PERL "Embed Perl interpreter" off \ + SIGWINCH "Handle SIGWINCH" on MAN1= cclive.1 @@ -29,14 +29,14 @@ .include -.if defined(WITH_TITLE) +.if defined(WITH_PERL) CONFIGURE_ARGS+=--with-perl USE_PERL5= 5.8.2+ RUN_DEPENDS+= p5-HTML-Parser>=3.59:${PORTSDIR}/www/p5-HTML-Parser .endif .if defined(WITH_SIGWINCH) -CONFIGURE_ARGS+= --with-sigwinch +CONFIGURE_ARGS+= --enable-sigwinch .endif .include diff -ruN /usr/ports/multimedia/cclive/distinfo cclive/distinfo --- /usr/ports/multimedia/cclive/distinfo 2009-04-27 02:44:22.000000000 +0300 +++ cclive/distinfo 2009-05-04 20:38:17.000000000 +0300 @@ -1,3 +1,3 @@ -MD5 (cclive-0.3.2.tar.bz2) = 1136b0550c19aa58f47d053e4939ed58 -SHA256 (cclive-0.3.2.tar.bz2) = 33f73200b61ae0da31d1c1634c09bbe1c4ff4ee5312208e3ff26091d1e28ba65 -SIZE (cclive-0.3.2.tar.bz2) = 122248 +MD5 (cclive-0.4.1.tar.bz2) = f7a8327b8a843bda97d5a580ca881428 +SHA256 (cclive-0.4.1.tar.bz2) = e3d23a440ac3eebb2603aa464a0d825d1e1985099cf66b1ce083138ecf6c3117 +SIZE (cclive-0.4.1.tar.bz2) = 133722 >Release-Note: >Audit-Trail: >Unformatted: From legatvs at gmail.com Mon May 4 18:00:05 2009 From: legatvs at gmail.com (legatvs) Date: Mon May 4 18:00:27 2009 Subject: ports/134212: [maintainer update] multimedia/abby to 0.2.1 Message-ID: <200905041752.n44HqtPE064597@www.freebsd.org> >Number: 134212 >Category: ports >Synopsis: [maintainer update] multimedia/abby to 0.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Mon May 04 18:00:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: legatvs >Release: FreeBSD 7.1-RELEASE-p5 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN /usr/ports/multimedia/abby/Makefile abby/Makefile --- /usr/ports/multimedia/abby/Makefile 2009-04-04 20:58:24.000000000 +0300 +++ abby/Makefile 2009-05-04 20:42:46.000000000 +0300 @@ -6,7 +6,7 @@ # PORTNAME= abby -PORTVERSION= 0.2.0 +PORTVERSION= 0.2.1 CATEGORIES= multimedia net MASTER_SITES= GOOGLE_CODE diff -ruN /usr/ports/multimedia/abby/distinfo abby/distinfo --- /usr/ports/multimedia/abby/distinfo 2009-04-04 20:58:24.000000000 +0300 +++ abby/distinfo 2009-05-04 20:42:54.000000000 +0300 @@ -1,3 +1,3 @@ -MD5 (abby-0.2.0.tar.bz2) = 79f5ee92dc51412361ac6c0b72eced64 -SHA256 (abby-0.2.0.tar.bz2) = 7f679022416515e729ed14db64f1830f1213cac640180d2e232a63b5edac9059 -SIZE (abby-0.2.0.tar.bz2) = 38717 +MD5 (abby-0.2.1.tar.bz2) = 7244a8aea22af87bfcd741ee6212a9e9 +SHA256 (abby-0.2.1.tar.bz2) = f9f86d538c6ee12a3fe6a6c369a07e2e04cc06cda51d2976532a413e905ae7a7 +SIZE (abby-0.2.1.tar.bz2) = 39304 >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Mon May 4 18:01:29 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Mon May 4 18:01:40 2009 Subject: ports/134211: [maintainer update] multimedia/cclive to 0.4.1 Message-ID: <200905041801.n44I1Tr7066142@freefall.freebsd.org> Synopsis: [maintainer update] multimedia/cclive to 0.4.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon May 4 18:01:28 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134211 From miwi at FreeBSD.org Mon May 4 18:01:32 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Mon May 4 18:01:41 2009 Subject: ports/134212: [maintainer update] multimedia/abby to 0.2.1 Message-ID: <200905041801.n44I1WPO066631@freefall.freebsd.org> Synopsis: [maintainer update] multimedia/abby to 0.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Mon May 4 18:01:31 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134212 From pav at FreeBSD.org Mon May 4 18:54:38 2009 From: pav at FreeBSD.org (pav@FreeBSD.org) Date: Mon May 4 18:54:44 2009 Subject: ports/133858: net/freenx: nxagent dumps core on FreeBSD 7.* Message-ID: <200905041854.n44Isbs2037304@freefall.freebsd.org> Synopsis: net/freenx: nxagent dumps core on FreeBSD 7.* State-Changed-From-To: open->feedback State-Changed-By: pav State-Changed-When: Mon May 4 18:53:25 UTC 2009 State-Changed-Why: Can you try again with nxserver-2.1.0_3 ? Responsible-Changed-From-To: freebsd-ports-bugs->pav Responsible-Changed-By: pav Responsible-Changed-When: Mon May 4 18:53:25 UTC 2009 Responsible-Changed-Why: Track http://www.freebsd.org/cgi/query-pr.cgi?pr=133858 From chalpin at cs.wisc.edu Tue May 5 00:10:01 2009 From: chalpin at cs.wisc.edu (Corey Halpin) Date: Tue May 5 00:10:08 2009 Subject: ports/134213: ports: mail/crm114 - new upstream version (patch) Message-ID: <20090505000216.BAD345F2F@spiff.home.crhalpin.org> >Number: 134213 >Category: ports >Synopsis: ports: mail/crm114 - new upstream version (patch) >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue May 05 00:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Corey Halpin >Release: FreeBSD 7.2-RELEASE i386 >Organization: >Environment: System: FreeBSD spiff.home.crhalpin.org 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Fri May 1 08:49:13 UTC 2009 root@walker.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >Description: There's a new upstream version of CRM114. The upstream archive has a typo in the archive name, hence the odd DISTNAME. Note, though: css files will have to be rebuilt to work against this version, as the data file format has changed. >How-To-Repeat: NA >Fix: diff -ru /usr/ports/mail/crm114/Makefile crm114/Makefile --- /usr/ports/mail/crm114/Makefile 2009-04-21 20:58:12.000000000 -0500 +++ crm114/Makefile 2009-05-04 17:39:55.000000000 -0500 @@ -5,24 +5,25 @@ # PORTNAME= crm114 -PORTVERSION= 20080326 +PORTVERSION= 20090423 # WARNING change versionname in CRM114RELEASENAME too. # portlint didn't like this variable at this place. # So I have to put it down in this file. -PORTREVISION= 2 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://crm114.sourceforge.net/tarballs/ # Oliver Eikemeier recommended the following construction # to avoid the reduncany of the CRM114RELEASENAME and .src and # .css extention. -DISTNAME= ${PORTNAME}-${PORTVERSION}-${CRM114RELEASENAME}.src +#DISTNAME= ${PORTNAME}-${PORTVERSION}-${CRM114RELEASENAME}.src +DISTNAME= ${PORTNAME}-200904023-${CRM114RELEASENAME}.src MAINTAINER= hideo@lastamericanempire.com COMMENT= A Markov based SpamFilter LIB_DEPENDS= tre.6:${PORTSDIR}/textproc/libtre -CRM114RELEASENAME=BlameSentansoken +CRM114RELEASENAME=BlameSteveJobs USE_GETTEXT= yes USE_ICONV= yes @@ -32,16 +33,20 @@ INSTALL_PROGRAM="${INSTALL_PROGRAM}" CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib LIBS+= -L${LOCALBASE}/lib -liconv -lintl +CFLAGS+= -DVERSION='\"${PORTVERSION}-${CRM114RELEASENAME}\"' +CFLAGS+= -DNO_LOGL + INSTALL_TARGET= install_binary_only CRM_FILES= mailfilter.crm mailfilter.cf mailreaver.crm mailtrainer.crm \ maillib.crm shuffle.crm rewriteutil.crm rewrites.mfp \ whitelist.mfp blacklist.mfp priolist.mfp priolist.mfp.example \ blacklist.mfp.example whitelist.mfp.example crm114-mode.el \ - procmailrc.recipe + reto_procmailrc.recipe OPTIONS= PGO "Enable Profile-Guided Optimization" off diff -ru /usr/ports/mail/crm114/distinfo crm114/distinfo --- /usr/ports/mail/crm114/distinfo 2008-04-25 11:11:05.000000000 -0500 +++ crm114/distinfo 2009-05-04 17:05:38.000000000 -0500 @@ -1,3 +1,3 @@ -MD5 (crm114-20080326-BlameSentansoken.src.tar.gz) = 0e9a0ea01f73cd600a92c56b82b29ad4 -SHA256 (crm114-20080326-BlameSentansoken.src.tar.gz) = 1d9638a3542d7e91d401ba57be27de0ee15bdba942ca3b97d3615e860b917e88 -SIZE (crm114-20080326-BlameSentansoken.src.tar.gz) = 593676 +MD5 (crm114-200904023-BlameSteveJobs.src.tar.gz) = 60c3bb5f0408341ce02c0571308259f3 +SHA256 (crm114-200904023-BlameSteveJobs.src.tar.gz) = dd2ba229444ca3d0364b859402af0dc69adc3ac3e898cb4e8ce46dd66faba17b +SIZE (crm114-200904023-BlameSteveJobs.src.tar.gz) = 623779 diff -ru /usr/ports/mail/crm114/pkg-plist crm114/pkg-plist --- /usr/ports/mail/crm114/pkg-plist 2007-08-09 18:27:05.000000000 -0500 +++ crm114/pkg-plist 2009-05-04 18:50:23.000000000 -0500 @@ -9,13 +9,17 @@ %%PORTDOCS%%%%DOCSDIR%%/INTRO.txt %%PORTDOCS%%%%DOCSDIR%%/QUICKREF.txt %%PORTDOCS%%%%DOCSDIR%%/README -%%PORTDOCS%%%%DOCSDIR%%/classify_details.txt +%%PORTDOCS%%%%DOCSDIR%%/CLASSIFY_DETAILS.txt %%PORTDOCS%%%%DOCSDIR%%/inoc_passwd.txt %%PORTDOCS%%%%DOCSDIR%%/COLOPHON.txt -%%PORTDOCS%%%%DOCSDIR%%/knownbugs.txt -%%PORTDOCS%%%%DOCSDIR%%/things_to_do.txt +%%PORTDOCS%%%%DOCSDIR%%/KNOWNBUGS.txt +%%PORTDOCS%%%%DOCSDIR%%/THINGS_TO_DO.txt +%%PORTDOCS%%%%DOCSDIR%%/Alice_In_Wonderland_Chap_1_And_2.txt +%%PORTDOCS%%%%DOCSDIR%%/Hound_of_the_Baskervilles_first_500_lines.txt +%%PORTDOCS%%%%DOCSDIR%%/Macbeth_Act_IV.txt +%%PORTDOCS%%%%DOCSDIR%%/The_Wind_in_the_Willows_Chap_1.txt %%PORTDOCS%%@dirrm %%DOCSDIR%% -%%EXAMPLESDIR%%/procmailrc.recipe +%%EXAMPLESDIR%%/reto_procmailrc.recipe %%EXAMPLESDIR%%/mailfilter.crm %%EXAMPLESDIR%%/mailfilter.cf %%EXAMPLESDIR%%/mailreaver.crm >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 00:10:11 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 00:10:18 2009 Subject: ports/134213: ports: mail/crm114 - new upstream version (patch) Message-ID: <200905050010.n450AAoE054849@freefall.freebsd.org> Synopsis: ports: mail/crm114 - new upstream version (patch) State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue May 5 00:10:10 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134213 From edwin at FreeBSD.org Tue May 5 00:20:03 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Tue May 5 00:20:16 2009 Subject: ports/134213: ports: mail/crm114 - new upstream version (patch) Message-ID: <200905050020.n450K33k068302@freefall.freebsd.org> The following reply was made to PR ports/134213; it has been noted by GNATS. From: Edwin Groothuis To: hideo@lastamericanempire.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/134213: ports: mail/crm114 - new upstream version (patch) Date: Tue, 5 May 2009 00:10:08 UT Maintainer of mail/crm114, Please note that PR ports/134213 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/134213 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From leeym at FreeBSD.org Tue May 5 00:20:07 2009 From: leeym at FreeBSD.org (Yen-Ming Lee) Date: Tue May 5 00:20:16 2009 Subject: ports/134214: [PATCH] devel/p5-List-Rotation-Cycle: update to 1.009 Message-ID: <200905050018.n450IGWO054690@cn1.leeym.com> >Number: 134214 >Category: ports >Synopsis: [PATCH] devel/p5-List-Rotation-Cycle: update to 1.009 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue May 05 00:20:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yen-Ming Lee >Release: FreeBSD 7.0-RELEASE i386 >Organization: >Environment: System: FreeBSD cn1.leeym.com 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Sun Feb 24 19:59:52 UTC 2008 >Description: - Update to 1.009 Port maintainer (chinsan@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-List-Rotation-Cycle-1.009.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/p5-List-Rotation-Cycle/Makefile,v retrieving revision 1.5 diff -u -d -b -w -u -r1.5 Makefile --- Makefile 30 Aug 2008 11:33:14 -0000 1.5 +++ Makefile 5 May 2009 00:17:52 -0000 @@ -6,26 +6,25 @@ # PORTNAME= List-Rotation-Cycle -PORTVERSION= 1.008 -PORTREVISION= 1 +PORTVERSION= 1.009 CATEGORIES= devel perl5 -MASTER_SITES= LOCAL/chinsan/CPAN CPAN +MASTER_SITES= CPAN LOCAL/chinsan/CPAN PKGNAMEPREFIX= p5- MAINTAINER= chinsan@FreeBSD.org COMMENT= Cycle through a list of values -WRKSRC= ${WRKDIR}/${PORTNAME} - -BUILD_DEPENDS+= ${SITE_PERL}/Module/Signature.pm:${PORTSDIR}/security/p5-Module-Signature \ - ${SITE_PERL}/Test/Pod.pm:${PORTSDIR}/devel/p5-Test-Pod \ - ${SITE_PERL}/Test/Pod/Coverage.pm:${PORTSDIR}/devel/p5-Test-Pod-Coverage -RUN_DEPENDS+= ${BUILD_DEPENDS} - PORTSCOUT= limitw:1,even MAN3= List::Rotation::Cycle.3 PERL_CONFIGURE= yes -.include +.include + +.if ${PERL_LEVEL} < 500703 +BUILD_DEPENDS+= p5-Memoize>=0:${PORTSDIR}/devel/p5-Memoize +RUN_DEPENDS+= p5-Memoize>=0:${PORTSDIR}/devel/p5-Memoize +.endif + +.include Index: distinfo =================================================================== RCS file: /home/pcvs/ports/devel/p5-List-Rotation-Cycle/distinfo,v retrieving revision 1.2 diff -u -d -b -w -u -r1.2 distinfo --- distinfo 2 Mar 2008 08:43:11 -0000 1.2 +++ distinfo 5 May 2009 00:17:52 -0000 @@ -1,3 +1,3 @@ -MD5 (List-Rotation-Cycle-1.008.tar.gz) = 64e88bb5737e6c15189676366a527349 -SHA256 (List-Rotation-Cycle-1.008.tar.gz) = d3e499ba0c75478bc1d14f8b75deccfe5352ee2d37e973ce3106ecae160afd9c -SIZE (List-Rotation-Cycle-1.008.tar.gz) = 4651 +MD5 (List-Rotation-Cycle-1.009.tar.gz) = 5e867a2879e8ffa77c38e1ec64957493 +SHA256 (List-Rotation-Cycle-1.009.tar.gz) = 103f9bb9e43b4c0396218b5c919258d28ef80b89074d96cd0d0240147b9f76f6 +SIZE (List-Rotation-Cycle-1.009.tar.gz) = 4648 --- p5-List-Rotation-Cycle-1.009.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 00:20:19 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 00:20:25 2009 Subject: ports/134214: [PATCH] devel/p5-List-Rotation-Cycle: update to 1.009 Message-ID: <200905050020.n450KIP1070102@freefall.freebsd.org> Synopsis: [PATCH] devel/p5-List-Rotation-Cycle: update to 1.009 Responsible-Changed-From-To: freebsd-ports-bugs->chinsan Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 00:20:18 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134214 From ar at null.lv Tue May 5 00:30:05 2009 From: ar at null.lv (Andris Raugulis) Date: Tue May 5 00:30:12 2009 Subject: ports/134215: [PATCH] devel/geany: update to 0.17 Message-ID: <20090505001834.C315719843D@mail.viss.lv> >Number: 134215 >Category: ports >Synopsis: [PATCH] devel/geany: update to 0.17 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue May 05 00:30:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Andris Raugulis >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: >Description: - Update to 0.17 >How-To-Repeat: >Fix: --- freebsd-ports-devel_geany-0.16-to-devel_geany-0.17.patch begins here --- diff -ruN geany.orig/Makefile geany/Makefile --- geany.orig/Makefile 2009-05-05 02:50:21.000000000 +0300 +++ geany/Makefile 2009-05-05 02:53:01.000000000 +0300 @@ -6,7 +6,7 @@ # PORTNAME= geany -PORTVERSION= 0.16 +PORTVERSION= 0.17 CATEGORIES= devel MASTER_SITES= SF diff -ruN geany.orig/distinfo geany/distinfo --- geany.orig/distinfo 2009-05-05 02:50:21.000000000 +0300 +++ geany/distinfo 2009-05-05 02:52:48.000000000 +0300 @@ -1,3 +1,3 @@ -MD5 (geany-0.16.tar.bz2) = 36ede942a6e4ad4660e918c98cb9cf15 -SHA256 (geany-0.16.tar.bz2) = e481bfde0645b3a0c004bd9fb999f767cf4d76305cd7d0bf24cf7a0ae3d30de8 -SIZE (geany-0.16.tar.bz2) = 2286258 +MD5 (geany-0.17.tar.bz2) = 097f619f5f0800098a2438a216a28e7b +SHA256 (geany-0.17.tar.bz2) = 2daee54b16d19a16bda557d3c7fd0bde900640afd46f1b7529c07cc24019fd84 +SIZE (geany-0.17.tar.bz2) = 2336257 diff -ruN geany.orig/pkg-plist geany/pkg-plist --- geany.orig/pkg-plist 2009-05-05 02:50:21.000000000 +0300 +++ geany/pkg-plist 2009-05-05 03:07:41.000000000 +0300 @@ -8,6 +8,7 @@ include/geany/geanyfunctions.h include/geany/highlighting.h include/geany/keybindings.h +include/geany/main.h include/geany/msgwindow.h include/geany/plugindata.h include/geany/pluginmacros.h @@ -45,8 +46,6 @@ lib/geany/saveactions.so lib/geany/splitwindow.la lib/geany/splitwindow.so -lib/geany/vcdiff.la -lib/geany/vcdiff.so libdata/pkgconfig/geany.pc share/applications/geany.desktop share/icons/hicolor/16x16/apps/classviewer-class.png @@ -87,6 +86,7 @@ %%PORTDOCS%%%%DOCSDIR%%/manual.txt %%DATADIR%%/GPL-2 %%DATADIR%%/filetype_extensions.conf +%%DATADIR%%/filetypes.actionscript %%DATADIR%%/filetypes.asm %%DATADIR%%/filetypes.c %%DATADIR%%/filetypes.caml --- freebsd-ports-devel_geany-0.16-to-devel_geany-0.17.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From mark at foster.cc Tue May 5 01:50:02 2009 From: mark at foster.cc (Mark Foster) Date: Tue May 5 01:50:08 2009 Subject: ports/134216: vuxml submission for net-im/openfire Message-ID: <200905050149.n451njTn003562@www.freebsd.org> >Number: 134216 >Category: ports >Synopsis: vuxml submission for net-im/openfire >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue May 05 01:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Mark Foster >Release: 7.1 RELEASE >Organization: Credentia >Environment: >Description: >How-To-Repeat: >Fix: openfire -- Openfire jabber:iq:auth passwd_change Security Bypass openfire 3.6.4

Secunia reports:

A vulnerability has been reported in Openfire which can be exploited by malicious users to bypass certain security restrictions. The vulnerability is caused due to the application not properly verifying jabber:iq:auth passwd_change requests which can be exploited to change another users password by sending a specially crafted request to the server.

http://secunia.com/advisories/34976/ 2009-05-04 2009-05-04
>Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 01:50:16 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 01:50:23 2009 Subject: ports/134216: vuxml submission for net-im/openfire Message-ID: <200905050150.n451oDGg090690@freefall.freebsd.org> Synopsis: vuxml submission for net-im/openfire Responsible-Changed-From-To: freebsd-ports-bugs->gahr Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 01:50:13 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134216 From wenheping at gmail.com Tue May 5 02:50:02 2009 From: wenheping at gmail.com (Wen Heping) Date: Tue May 5 02:50:08 2009 Subject: ports/134217: [Maintainer Update]science/psychopy:update to 1.00.00 Message-ID: <200905050249.n452nAjL049283@www.freebsd.org> >Number: 134217 >Category: ports >Synopsis: [Maintainer Update]science/psychopy:update to 1.00.00 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue May 05 02:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-Current >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Fri Apr 10 16:36:28 HKT 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/wen1 i386 >Description: update to 1.00.00 from 0.97.01 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-05-04 16:16:43.000000000 +0800 +++ Makefile 2009-05-04 23:03:42.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= psychopy -PORTVERSION= 0.97.01 +PORTVERSION= 1.00.00 CATEGORIES= science python MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} DISTNAME= PsychoPy-${PORTVERSION} @@ -18,7 +18,7 @@ ${PYTHON_PKGNAMEPREFIX}scipy>=0.6.0:${PORTSDIR}/science/py-scipy \ ${PYTHON_PKGNAMEPREFIX}imaging>=1.1.6:${PORTSDIR}/graphics/py-imaging \ ${PYTHON_PKGNAMEPREFIX}pyglet>=1.1.2:${PORTSDIR}/graphics/py-pyglet \ - ${PYTHON_PKGNAMEPREFIX}wxPython>=2.6.3.3:${PORTSDIR}/x11-toolkits/py-wxPython26 \ + ${PYTHON_PKGNAMEPREFIX}wxPython>=2.8.7.1:${PORTSDIR}/x11-toolkits/py-wxPython28 \ ${PYTHON_PKGNAMEPREFIX}matplotlib>=0.90.1:${PORTSDIR}/math/py-matplotlib RUN_DEPENDS= ${BUILD_DEPENDS} --- distinfo.orig 2009-02-27 18:38:56.000000000 +0800 +++ distinfo 2009-05-04 16:17:29.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (PsychoPy-0.97.01.zip) = 5a79f5e1a4ddd0c1c41d6ddf91dad355 -SHA256 (PsychoPy-0.97.01.zip) = 388593c7f66d9fc9e64f379da954234c292405c6986684dbffd2b387673c43c3 -SIZE (PsychoPy-0.97.01.zip) = 3000946 +MD5 (PsychoPy-1.00.00.zip) = f133cb13972fa1266ffacaaa4435d9c9 +SHA256 (PsychoPy-1.00.00.zip) = aa5a398be55be5a8191cb6cb77e1a77d0254664c9ec0285ce35e8b855bb56b02 +SIZE (PsychoPy-1.00.00.zip) = 3005537 --- pkg-plist.orig 2009-05-04 16:16:44.000000000 +0800 +++ pkg-plist 2009-05-04 16:20:34.000000000 +0800 @@ -177,6 +177,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/psychopy/demos/screensAndWindows.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/psychopy/demos/screensAndWindows.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/psychopy/demos/screensAndWindows.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/psychopy/demos/shapes.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/psychopy/demos/shapes.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/psychopy/demos/shapes.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/psychopy/demos/soundStimuli.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/psychopy/demos/soundStimuli.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/psychopy/demos/soundStimuli.pyo >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 02:50:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 02:50:18 2009 Subject: ports/134217: [Maintainer Update]science/psychopy:update to 1.00.00 Message-ID: <200905050250.n452oBOR070679@freefall.freebsd.org> Synopsis: [Maintainer Update]science/psychopy:update to 1.00.00 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 02:50:11 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134217 From rannumgen at globaleyes.net Tue May 5 03:10:01 2009 From: rannumgen at globaleyes.net (RandomUser) Date: Tue May 5 03:10:14 2009 Subject: ports/134218: ports/gnucash current CVS vesion 2.2.7_2 requires goffice-0.8.7 which doesn't exist Message-ID: <1241491739.2440@FreeBSD2.LocalNET10> >Number: 134218 >Category: ports >Synopsis: ports/gnucash current CVS vesion 2.2.7_2 requires goffice-0.8.7 which doesn't exist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue May 05 03:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: RandomUser >Release: FreeBSD 6.4-STABLE i386 >Organization: >Environment: System: FreeBSD 6.4-STABLE #0: Mon May 4 02:28:32 CDT 2009 >Description: The currently available gnucash from CVS (2.2.7_2) Makefile requires goffice-0.8.7 which does not exist, thus causing the build to fail. = = = = = = = = Makefile = = = = = = # Ports collection makefile for: gnucash # Date created: Mon Feb 03, 1997 # Whom: David O'Brien (obrien@NUXI.com) # # $FreeBSD: ports/finance/gnucash/Makefile,v 1.128 2009/01/22 16:04:08 miwi Exp $ # $MCom: ports/finance/gnucash/Makefile,v 1.26 2008/12/31 03:25:18 mezz Exp $ # PORTNAME= gnucash PORTVERSION= 2.2.7 PORTREVISION= 2 CATEGORIES= finance gnome MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ http://www.gnucash.org/pub/gnucash/sources/stable/ MASTER_SITE_SUBDIR= gnucash MAINTAINER= ahze@FreeBSD.org COMMENT= Quicken-like money and finance manager BUILD_DEPENDS= guile>=1.8.6:${PORTSDIR}/lang/guile \ ${LOCALBASE}/share/guile/1.8/slibcat:${PORTSDIR}/lang/slib-guile LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ goffice-0.8.7:${PORTSDIR}/devel/goffice . . . >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From jsa at wickedmachine.net Tue May 5 03:10:02 2009 From: jsa at wickedmachine.net (Joseph S. Atkinson) Date: Tue May 5 03:10:14 2009 Subject: ports/134219: Mark www/kompozer BROKEN for all Message-ID: <1241492615.20360@mephisto.wickedmachine.net> >Number: 134219 >Category: ports >Synopsis: Mark www/kompozer BROKEN for all >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue May 05 03:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Joseph S. Atkinson >Release: FreeBSD 7.2-RELEASE i386 >Organization: >Environment: System: FreeBSD 7.2-RELEASE #0: Sat May 2 00:21:11 EDT 2009 jsa@mephisto.wickedmachine.net:/usr/obj/usr/src/sys/MEPHISTO >Description: The problems with KompoZer aren't limited to any specific architecture. Both i386 and amd64 also crash when menus are selected as well. This appears to be a known issue with more recent GTKs, and it doesn't look like upstream intends to fix it. This port, however, is not dead, as they are actively working on an upcoming 0.8 which hypothetically will not not have any issue with modern GTK editions. Until some progress is made to fix this, or 0.8 comes along, mark BROKEN across the board to save people the headache and disappointment building/using and unstable product. * "KompoZer 0.7 crashes with GTK 2.14" -- Kazé @ http://kazhack.org/?post/2009/04/02/KompoZer-0.8a >How-To-Repeat: Install kompozer (ports or packages, any arch), start playing with the menus. Crash will occur on nested menus, where the majority of features and usablity are. >Fix: --- kompozer_is_dead.diff begins here --- --- Makefile.orig 2009-05-04 22:32:44.000000000 -0400 +++ Makefile 2009-05-04 22:37:41.000000000 -0400 @@ -29,9 +29,7 @@ "${PREFIX}/lib/kompozer/icons/mozicon50.xpm" "${PORTNAME}" \ "Application;Network;" true -NOT_FOR_ARCHS= ia64 sparc64 -NOT_FOR_ARCHS_REASON_ia64= does not build -NOT_FOR_ARCHS_REASON_sparc64= crashes in font selection +BROKEN= crashes while accessing nested menus .include .include "${PORTSDIR}/www/mozilla/Makefile.common" --- kompozer_is_dead.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 03:10:19 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 03:10:31 2009 Subject: ports/134219: Mark www/kompozer BROKEN for all Message-ID: <200905050310.n453AIgS097281@freefall.freebsd.org> Synopsis: Mark www/kompozer BROKEN for all Responsible-Changed-From-To: freebsd-ports-bugs->gecko Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 03:10:18 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134219 From wenheping at gmail.com Tue May 5 06:20:02 2009 From: wenheping at gmail.com (Wen Heping) Date: Tue May 5 06:20:14 2009 Subject: ports/134221: [Update]math/py-numpy:update to 1.3.0 Message-ID: <200905050615.n456FuHb014375@www.freebsd.org> >Number: 134221 >Category: ports >Synopsis: [Update]math/py-numpy:update to 1.3.0 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue May 05 06:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-Current >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Fri Apr 10 16:36:28 HKT 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/wen1 i386 >Description: update to 1.3.0 from 1.2.1 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-01-16 15:12:09.000000000 +0800 +++ Makefile 2009-05-05 19:11:49.000000000 +0800 @@ -6,8 +6,7 @@ # PORTNAME= numpy -PORTVERSION= 1.2.1 -PORTEPOCH= 1 +PORTVERSION= 1.3.0 CATEGORIES= math python MASTER_SITES= http://numpy.scipy.org/:doc \ ${MASTER_SITE_SOURCEFORGE:S/$/:source/} --- distinfo.orig 2009-01-16 15:12:09.000000000 +0800 +++ distinfo 2009-05-05 18:50:37.000000000 +0800 @@ -1,6 +1,6 @@ -MD5 (numpy-1.2.1.tar.gz) = 1bc6dbddaf4b48ded8a619c6438fff37 -SHA256 (numpy-1.2.1.tar.gz) = 4392b4b78eb503b187a6004468d2dd14d976c4b30a327e51f2277730c415003e -SIZE (numpy-1.2.1.tar.gz) = 1448933 +MD5 (numpy-1.3.0.tar.gz) = 3f7773ff0971a5ebb8591536d8ec7bd6 +SHA256 (numpy-1.3.0.tar.gz) = 7524687cce85aa78103046db5e617c626b0ef871a203a049159f88f35647c90d +SIZE (numpy-1.3.0.tar.gz) = 1995868 MD5 (numpy.pdf) = 258b3758645568724ab1a3ead67db78a SHA256 (numpy.pdf) = 1005b55ee84265be490d8270b4e464e11f59455c220da822f6901342f5fe804f SIZE (numpy.pdf) = 1234555 --- pkg-plist.orig 2008-12-12 16:48:29.000000000 +0800 +++ pkg-plist 2009-05-05 20:05:41.000000000 +0800 @@ -20,9 +20,6 @@ %%PYTHON_SITELIBDIR%%/numpy/core/__init__.py %%PYTHON_SITELIBDIR%%/numpy/core/__init__.pyc %%PYTHON_SITELIBDIR%%/numpy/core/__init__.pyo -%%PYTHON_SITELIBDIR%%/numpy/core/__svn_version__.py -%%PYTHON_SITELIBDIR%%/numpy/core/__svn_version__.pyc -%%PYTHON_SITELIBDIR%%/numpy/core/__svn_version__.pyo %%PYTHON_SITELIBDIR%%/numpy/core/_internal.py %%PYTHON_SITELIBDIR%%/numpy/core/_internal.pyc %%PYTHON_SITELIBDIR%%/numpy/core/_internal.pyo @@ -48,6 +45,12 @@ %%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/arrayobject.h %%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/arrayscalars.h %%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/multiarray_api.txt +%%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/mingw_amd64_fenv.h +%%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/npy_common.h +%%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/npy_cpu.h +%%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/npy_endian.h +%%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/npy_math.h +%%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/utils.h %%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/ndarrayobject.h %%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/noprefix.h %%PYTHON_SITELIBDIR%%/numpy/core/include/numpy/npy_interrupt.h @@ -79,6 +82,9 @@ %%PYTHON_SITELIBDIR%%/numpy/core/setup.py %%PYTHON_SITELIBDIR%%/numpy/core/setup.pyc %%PYTHON_SITELIBDIR%%/numpy/core/setup.pyo +%%PYTHON_SITELIBDIR%%/numpy/core/setup_common.py +%%PYTHON_SITELIBDIR%%/numpy/core/setup_common.pyc +%%PYTHON_SITELIBDIR%%/numpy/core/setup_common.pyo %%PYTHON_SITELIBDIR%%/numpy/core/setupscons.py %%PYTHON_SITELIBDIR%%/numpy/core/setupscons.pyc %%PYTHON_SITELIBDIR%%/numpy/core/setupscons.pyo @@ -87,6 +93,7 @@ %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_blasdot.py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_defchararray.py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_defmatrix.py +%%PYTHON_SITELIBDIR%%/numpy/core/tests/test_dtype.py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_errstate.py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_memmap.py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_multiarray.py @@ -100,6 +107,7 @@ %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_umath.py %%PYTHON_SITELIBDIR%%/numpy/core/tests/test_unicode.py %%PYTHON_SITELIBDIR%%/numpy/core/umath.so +%%PYTHON_SITELIBDIR%%/numpy/core/umath_tests.so %%PYTHON_SITELIBDIR%%/numpy/ctypeslib.py %%PYTHON_SITELIBDIR%%/numpy/ctypeslib.pyc %%PYTHON_SITELIBDIR%%/numpy/ctypeslib.pyo @@ -118,6 +126,9 @@ %%PYTHON_SITELIBDIR%%/numpy/distutils/command/__init__.py %%PYTHON_SITELIBDIR%%/numpy/distutils/command/__init__.pyc %%PYTHON_SITELIBDIR%%/numpy/distutils/command/__init__.pyo +%%PYTHON_SITELIBDIR%%/numpy/distutils/command/autodist.py +%%PYTHON_SITELIBDIR%%/numpy/distutils/command/autodist.pyc +%%PYTHON_SITELIBDIR%%/numpy/distutils/command/autodist.pyo %%PYTHON_SITELIBDIR%%/numpy/distutils/command/bdist_rpm.py %%PYTHON_SITELIBDIR%%/numpy/distutils/command/bdist_rpm.pyc %%PYTHON_SITELIBDIR%%/numpy/distutils/command/bdist_rpm.pyo @@ -250,6 +261,7 @@ %%PYTHON_SITELIBDIR%%/numpy/distutils/log.py %%PYTHON_SITELIBDIR%%/numpy/distutils/log.pyc %%PYTHON_SITELIBDIR%%/numpy/distutils/log.pyo +%%PYTHON_SITELIBDIR%%/numpy/distutils/mingw/gfortran_vs2003_hack.c %%PYTHON_SITELIBDIR%%/numpy/distutils/mingw32ccompiler.py %%PYTHON_SITELIBDIR%%/numpy/distutils/mingw32ccompiler.pyc %%PYTHON_SITELIBDIR%%/numpy/distutils/mingw32ccompiler.pyo @@ -310,6 +322,9 @@ %%PYTHON_SITELIBDIR%%/numpy/doc/broadcasting.py %%PYTHON_SITELIBDIR%%/numpy/doc/broadcasting.pyc %%PYTHON_SITELIBDIR%%/numpy/doc/broadcasting.pyo +%%PYTHON_SITELIBDIR%%/numpy/doc/constants.py +%%PYTHON_SITELIBDIR%%/numpy/doc/constants.pyc +%%PYTHON_SITELIBDIR%%/numpy/doc/constants.pyo %%PYTHON_SITELIBDIR%%/numpy/doc/creation.py %%PYTHON_SITELIBDIR%%/numpy/doc/creation.pyc %%PYTHON_SITELIBDIR%%/numpy/doc/creation.pyo @@ -355,9 +370,6 @@ %%PYTHON_SITELIBDIR%%/numpy/f2py/__init__.py %%PYTHON_SITELIBDIR%%/numpy/f2py/__init__.pyc %%PYTHON_SITELIBDIR%%/numpy/f2py/__init__.pyo -%%PYTHON_SITELIBDIR%%/numpy/f2py/__svn_version__.py -%%PYTHON_SITELIBDIR%%/numpy/f2py/__svn_version__.pyc -%%PYTHON_SITELIBDIR%%/numpy/f2py/__svn_version__.pyo %%PYTHON_SITELIBDIR%%/numpy/f2py/__version__.py %%PYTHON_SITELIBDIR%%/numpy/f2py/__version__.pyc %%PYTHON_SITELIBDIR%%/numpy/f2py/__version__.pyo @@ -487,6 +499,9 @@ %%PYTHON_SITELIBDIR%%/numpy/lib/_datasource.py %%PYTHON_SITELIBDIR%%/numpy/lib/_datasource.pyc %%PYTHON_SITELIBDIR%%/numpy/lib/_datasource.pyo +%%PYTHON_SITELIBDIR%%/numpy/lib/_iotools.py +%%PYTHON_SITELIBDIR%%/numpy/lib/_iotools.pyc +%%PYTHON_SITELIBDIR%%/numpy/lib/_iotools.pyo %%PYTHON_SITELIBDIR%%/numpy/lib/arraysetops.py %%PYTHON_SITELIBDIR%%/numpy/lib/arraysetops.pyc %%PYTHON_SITELIBDIR%%/numpy/lib/arraysetops.pyo @@ -521,6 +536,9 @@ %%PYTHON_SITELIBDIR%%/numpy/lib/polynomial.py %%PYTHON_SITELIBDIR%%/numpy/lib/polynomial.pyc %%PYTHON_SITELIBDIR%%/numpy/lib/polynomial.pyo +%%PYTHON_SITELIBDIR%%/numpy/lib/recfunctions.py +%%PYTHON_SITELIBDIR%%/numpy/lib/recfunctions.pyc +%%PYTHON_SITELIBDIR%%/numpy/lib/recfunctions.pyo %%PYTHON_SITELIBDIR%%/numpy/lib/scimath.py %%PYTHON_SITELIBDIR%%/numpy/lib/scimath.pyc %%PYTHON_SITELIBDIR%%/numpy/lib/scimath.pyo @@ -536,6 +554,8 @@ %%PYTHON_SITELIBDIR%%/numpy/lib/stride_tricks.py %%PYTHON_SITELIBDIR%%/numpy/lib/stride_tricks.pyc %%PYTHON_SITELIBDIR%%/numpy/lib/stride_tricks.pyo +%%PYTHON_SITELIBDIR%%/numpy/lib/tests/test__iotools.py +%%PYTHON_SITELIBDIR%%/numpy/lib/tests/test_recfunctions.py %%PYTHON_SITELIBDIR%%/numpy/lib/tests/test__datasource.py %%PYTHON_SITELIBDIR%%/numpy/lib/tests/test_arraysetops.py %%PYTHON_SITELIBDIR%%/numpy/lib/tests/test_arrayterator.py @@ -584,6 +604,7 @@ %%PYTHON_SITELIBDIR%%/numpy/linalg/setupscons.py %%PYTHON_SITELIBDIR%%/numpy/linalg/setupscons.pyc %%PYTHON_SITELIBDIR%%/numpy/linalg/setupscons.pyo +%%PYTHON_SITELIBDIR%%/numpy/linalg/tests/test_build.py %%PYTHON_SITELIBDIR%%/numpy/linalg/tests/test_linalg.py %%PYTHON_SITELIBDIR%%/numpy/linalg/tests/test_regression.py %%PYTHON_SITELIBDIR%%/numpy/ma/__init__.py @@ -801,15 +822,13 @@ %%PYTHON_SITELIBDIR%%/numpy/testing/numpytest.py %%PYTHON_SITELIBDIR%%/numpy/testing/numpytest.pyc %%PYTHON_SITELIBDIR%%/numpy/testing/numpytest.pyo -%%PYTHON_SITELIBDIR%%/numpy/testing/parametric.py -%%PYTHON_SITELIBDIR%%/numpy/testing/parametric.pyc -%%PYTHON_SITELIBDIR%%/numpy/testing/parametric.pyo %%PYTHON_SITELIBDIR%%/numpy/testing/setup.py %%PYTHON_SITELIBDIR%%/numpy/testing/setup.pyc %%PYTHON_SITELIBDIR%%/numpy/testing/setup.pyo %%PYTHON_SITELIBDIR%%/numpy/testing/setupscons.py %%PYTHON_SITELIBDIR%%/numpy/testing/setupscons.pyc %%PYTHON_SITELIBDIR%%/numpy/testing/setupscons.pyo +%%PYTHON_SITELIBDIR%%/numpy/testing/tests/test_decorators.py %%PYTHON_SITELIBDIR%%/numpy/testing/tests/test_utils.py %%PYTHON_SITELIBDIR%%/numpy/testing/utils.py %%PYTHON_SITELIBDIR%%/numpy/testing/utils.pyc @@ -858,6 +877,7 @@ @dirrm %%PYTHON_SITELIBDIR%%/numpy/distutils/tests/f2py_ext/src @dirrm %%PYTHON_SITELIBDIR%%/numpy/distutils/tests/f2py_ext @dirrm %%PYTHON_SITELIBDIR%%/numpy/distutils/tests +@dirrm %%PYTHON_SITELIBDIR%%/numpy/distutils/mingw @dirrm %%PYTHON_SITELIBDIR%%/numpy/distutils/fcompiler @dirrm %%PYTHON_SITELIBDIR%%/numpy/distutils/command @dirrm %%PYTHON_SITELIBDIR%%/numpy/distutils >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 06:20:20 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 06:20:26 2009 Subject: ports/134221: [Update]math/py-numpy:update to 1.3.0 Message-ID: <200905050620.n456KJIs057894@freefall.freebsd.org> Synopsis: [Update]math/py-numpy:update to 1.3.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 06:20:19 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134221 From wenheping at gmail.com Tue May 5 07:10:03 2009 From: wenheping at gmail.com (Wen Heping) Date: Tue May 5 07:10:24 2009 Subject: ports/134223: [Maintainer Update]net/pear-Services_Twitter:update to 0.2.1 Message-ID: <200905050701.n4571xQY048852@www.freebsd.org> >Number: 134223 >Category: ports >Synopsis: [Maintainer Update]net/pear-Services_Twitter:update to 0.2.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue May 05 07:10:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-Current >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Fri Apr 10 16:36:28 HKT 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/wen1 i386 >Description: update to 0.2.1 from 0.2.0 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-05-04 23:50:42.000000000 +0800 +++ Makefile 2009-05-04 23:50:58.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= Services_Twitter -PORTVERSION= 0.2.0 +PORTVERSION= 0.2.1 CATEGORIES= net www pear MAINTAINER= wenheping@gmail.com --- distinfo.orig 2008-11-09 04:00:31.000000000 +0800 +++ distinfo 2009-05-04 23:51:08.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (PEAR/Services_Twitter-0.2.0.tgz) = 6d43a0d450157832614730c432e371c7 -SHA256 (PEAR/Services_Twitter-0.2.0.tgz) = 11229dd17e68d2f3c96311fe5669f3f1418de531d910af24f83ec24c8f99d899 -SIZE (PEAR/Services_Twitter-0.2.0.tgz) = 13870 +MD5 (PEAR/Services_Twitter-0.2.1.tgz) = 53b8f650574ab6cf6dec213126ecb7c5 +SHA256 (PEAR/Services_Twitter-0.2.1.tgz) = 5d2c9303f5cbf9ec11a4adb33f6a1f498f62639b268b4230f8198cf3bc2a53e1 +SIZE (PEAR/Services_Twitter-0.2.1.tgz) = 13976 >Release-Note: >Audit-Trail: >Unformatted: From wenheping at gmail.com Tue May 5 07:10:03 2009 From: wenheping at gmail.com (Wen Heping) Date: Tue May 5 07:10:25 2009 Subject: ports/134224: [Maintainer Update]www/pear-HTTP_Request2:update to 0.4.0 Message-ID: <200905050704.n4574xMC049154@www.freebsd.org> >Number: 134224 >Category: ports >Synopsis: [Maintainer Update]www/pear-HTTP_Request2:update to 0.4.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: Tue May 05 07:10:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-Current >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Fri Apr 10 16:36:28 HKT 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/wen1 i386 >Description: update to 0.4.0 from 0.3.0 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-05-05 22:59:07.000000000 +0800 +++ Makefile 2009-05-05 22:59:23.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= HTTP_Request2 -PORTVERSION= 0.3.0 +PORTVERSION= 0.4.0 CATEGORIES= www pear MAINTAINER= wenheping@gmail.com --- distinfo.orig 2009-03-23 17:46:49.000000000 +0800 +++ distinfo 2009-05-05 22:59:49.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (PEAR/HTTP_Request2-0.3.0.tgz) = 597c8414127c152b6202a09702bf29fc -SHA256 (PEAR/HTTP_Request2-0.3.0.tgz) = 908d39e6238525cbd4195ae33d3273b2004f8840c453b3cc3e215210e90d34cb -SIZE (PEAR/HTTP_Request2-0.3.0.tgz) = 54197 +MD5 (PEAR/HTTP_Request2-0.4.0.tgz) = 198e8b384676544e1f4938f327fe426b +SHA256 (PEAR/HTTP_Request2-0.4.0.tgz) = 11208365051bab152c21307b918020557878ff2cf7961b6989c6ecd99a67aabb +SIZE (PEAR/HTTP_Request2-0.4.0.tgz) = 54549 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 07:10:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 07:10:25 2009 Subject: ports/134223: [Maintainer Update]net/pear-Services_Twitter:update to 0.2.1 Message-ID: <200905050710.n457ACpl027344@freefall.freebsd.org> Synopsis: [Maintainer Update]net/pear-Services_Twitter:update to 0.2.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 07:10:11 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134223 From edwin at FreeBSD.org Tue May 5 07:10:18 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 07:10:26 2009 Subject: ports/134224: [Maintainer Update]www/pear-HTTP_Request2:update to 0.4.0 Message-ID: <200905050710.n457AH8u028044@freefall.freebsd.org> Synopsis: [Maintainer Update]www/pear-HTTP_Request2:update to 0.4.0 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 07:10:17 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134224 From turutani at scphys.kyoto-u.ac.jp Tue May 5 10:00:04 2009 From: turutani at scphys.kyoto-u.ac.jp (Tsurutani Naoki) Date: Tue May 5 10:00:11 2009 Subject: ports/134227: starting apache with www/mod_dnssd causes error Message-ID: <200905050956.n459u24R004555@h120.65.226.10.32118.vlan.kuins.net> >Number: 134227 >Category: ports >Synopsis: starting apache with www/mod_dnssd causes error >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue May 05 10:00:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Tsurutani Naoki >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: System: FreeBSD h120.65.226.10.32118.vlan.kuins.net 7.2-STABLE FreeBSD 7.2-STABLE #18: Tue May 5 14:31:14 JST 2009 turutani@h120.65.226.10.32118.vlan.kuins.net:/usr/local/work/usr/obj/usr/src/sys/POLYMER i386 >Description: starting apache22 with rc.d/apache22 causes error with www/mod_dnssd, which is required by gnome2. % /usr/local/etc/rc.d/apache22 start Performing sanity check on apache22 configuration: httpd: Syntax error on line 116 of /usr/local/etc/apache22/httpd.conf: Cannot load /usr/local/libexec/apache22/mod_dnssd.so into server: /usr/local/lib/libavahi-common.so.3: Undefined symbol "libintl_bindtextdomain" Starting apache22. httpd: Syntax error on line 116 of /usr/local/etc/apache22/httpd.conf: Cannot load /usr/local/libexec/apache22/mod_dnssd.so into server: /usr/local/lib/libavahi-common.so.3: Undefined symbol "libintl_bindtextdomain" >How-To-Repeat: >Fix: mod_dnssd requires libavahi-common.so.3, which is installed by net/avahi-app, and libavahi-common.so.3 contains references to libintl_bindtextdomain(), which is provided by libintl.so.8 installed by gettext. however, libavahi-common.so.3 is not linked to libintl.so.8, hence an error of "undefined symbol" raises. here is a fix to net/avahi-app: --- Makefile.orig 2009-05-01 06:57:27.000000000 +0900 +++ Makefile 2009-05-05 18:36:29.000000000 +0900 @@ -107,7 +107,7 @@ ${WRKSRC}/avahi-client/Makefile.in \ ${WRKSRC}/avahi-daemon/Makefile.in @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} \ - ${REINPLACE_CMD} -e 's|(LIBINTL)|(LTLIBINTL)|g ; \ + ${REINPLACE_CMD} -e 's|(LIBINTL)|(INTLLIBS)|g ; \ s|(LIBICONV)|(LTLIBICONV)|g' @${REINPLACE_CMD} -e 's|%%RC_SUBR%%|${RC_SUBR}| ; \ s|%%GNOME_SUBR%%|${GNOME_SUBR}|' \ ---end of the patch --- I think a change to net/avahi-app/Makefile rev 1.16 is not adeqate, for no building process uses gettext.m4 and iconv.m4, which are guessed to define LTLIBINTL and LTLIBICONV. As a result, "LTLIBINTL" remains null string, and hence libintl.so.8 is not linked to libavahi-common.so.3. >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 10:00:17 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 10:00:29 2009 Subject: ports/134227: starting apache with www/mod_dnssd causes error Message-ID: <200905051000.n45A0EEY086374@freefall.freebsd.org> Synopsis: starting apache with www/mod_dnssd causes error Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 10:00:14 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134227 From turutani at scphys.kyoto-u.ac.jp Tue May 5 10:40:02 2009 From: turutani at scphys.kyoto-u.ac.jp (Tsurutani Naoki) Date: Tue May 5 10:40:10 2009 Subject: ports/134228: update x11/nvidia-driver Message-ID: <200905051037.n45AbAfF001437@h120.65.226.10.32118.vlan.kuins.net> >Number: 134228 >Category: ports >Synopsis: update x11/nvidia-driver >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue May 05 10:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Tsurutani Naoki >Release: FreeBSD 7.2-STABLE i386 >Organization: >Environment: System: FreeBSD h120.65.226.10.32118.vlan.kuins.net 7.2-STABLE FreeBSD 7.2-STABLE #18: Tue May 5 14:31:14 JST 2009 turutani@h120.65.226.10.32118.vlan.kuins.net:/usr/local/work/usr/obj/usr/src/sys/POLYMER i386 >Description: a new version of nvidia-driver is now available. new version is 185.18.04. this release fixes the problem about 1280x1024. >How-To-Repeat: >Fix: here is a patch: --- Makefile.orig 2009-04-14 18:58:51.000000000 +0900 +++ Makefile 2009-05-05 16:31:48.000000000 +0900 @@ -6,7 +6,7 @@ # PORTNAME= nvidia-driver -DISTVERSION?= 180.44 +DISTVERSION?= 185.18.04 PORTREVISION?= 0 # As a reminder it can be overridden CATEGORIES= x11 kld MASTER_SITES= ${MASTER_SITE_NVIDIA} --- distinfo.orig 2009-04-14 18:58:51.000000000 +0900 +++ distinfo 2009-05-05 19:32:53.000000000 +0900 @@ -1,6 +1,6 @@ -MD5 (NVIDIA-FreeBSD-x86-180.44.tar.gz) = b904ffa8d50e204b7b89eee15e1e6e8e -SHA256 (NVIDIA-FreeBSD-x86-180.44.tar.gz) = 29b996aad27f7aa2407ff33af15eac28d10a629d98021d0baa843fad5b8d8f20 -SIZE (NVIDIA-FreeBSD-x86-180.44.tar.gz) = 18591139 +MD5 (NVIDIA-FreeBSD-x86-185.18.04.tar.gz) = f221f1e73b8ff28a3c717aa9675a3ac1 +SHA256 (NVIDIA-FreeBSD-x86-185.18.04.tar.gz) = b84e769c7ff06478d1989c88475792284388c8e0ed78de31af7f0b0f32a3dc4c +SIZE(NVIDIA-FreeBSD-x86-185.18.04.tar.gz) = 19185492 MD5 (NVIDIA-FreeBSD-x86-173.14.18.tar.gz) = ad9a421ef5a29782a263facce985f00b SHA256 (NVIDIA-FreeBSD-x86-173.14.18.tar.gz) = 7c77dd3e442351a5e782888db93a4e2f3832396adb85f65c086ed1f1c906700a SIZE (NVIDIA-FreeBSD-x86-173.14.18.tar.gz) = 16203001 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 10:40:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 10:40:19 2009 Subject: ports/134228: update x11/nvidia-driver Message-ID: <200905051040.n45AeDOf041023@freefall.freebsd.org> Synopsis: update x11/nvidia-driver Responsible-Changed-From-To: freebsd-ports-bugs->danfe Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 10:40:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134228 From dindin at dindin.ru Tue May 5 11:33:19 2009 From: dindin at dindin.ru (Denis Barov) Date: Tue May 5 11:33:31 2009 Subject: ports/134229: [PORTS] ftp/uftp permissions loss fix, more informative logging Message-ID: <200905051121.n45BL11T069626@www.freebsd.org> >Number: 134229 >Category: ports >Synopsis: [PORTS] ftp/uftp permissions loss fix, more informative logging >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue May 05 11:30:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Denis Barov >Release: FreeBSD 6.X 7.X 8.X >Organization: Yandex >Environment: FreeBSD porter.yandex.ru 7.0-RELEASE FreeBSD 7.0-RELEASE #0: Wed Jul 23 22:43:25 MSD 2008 root@porter.yandex.ru:/space/obj/space/RELENG_7/src/sys/W7_AMD64_ULE amd64 >Description: some improvement for ftp/uftp port: - fix file permission loss due file transfer - add errno to error logging - rise hardcoded maximal serves number from 100 to 256 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -urN ftp/uftp/files/patch-Makefile ftp/uftp/files/patch-Makefile --- ftp/uftp/files/patch-Makefile 2009-05-05 15:02:05.000000000 +0400 +++ ftp/uftp/files/patch-Makefile 2009-05-05 15:03:34.000000000 +0400 @@ -1,15 +1,14 @@ -*** /dev/null Wed Jun 4 14:07:15 2008 ---- Makefile Wed Jun 4 14:07:49 2008 -*************** -*** 0 **** ---- 1,10 ---- -+ # -+ # Makefile for uftp client and server -+ # -+ all: uftp uftpd -+ -+ uftp: uftp.c -+ ${CC} ${CFLAGS} -o $@ $< -lm -+ -+ uftpd: uftpd.c -+ ${CC} ${CFLAGS} -o $@ $< -lm +diff -urN Makefile.orig Makefile +--- Makefile.orig 1970-01-01 03:00:00.000000000 +0300 ++++ Makefile 2009-05-05 14:50:35.000000000 +0400 +@@ -0,0 +1,10 @@ ++# ++# Makefile for uftp client and server ++# ++all: uftp uftpd ++ ++uftp: uftp.c uftp.h ++ ${CC} ${CFLAGS} -o $@ $< -lm ++ ++uftpd: uftpd.c uftp.h ++ ${CC} ${CFLAGS} -o $@ $< -lm diff -urN ftp/uftp/files/patch-uftp.c ftp/uftp/files/patch-uftp.c --- ftp/uftp/files/patch-uftp.c 1970-01-01 03:00:00.000000000 +0300 +++ ftp/uftp/files/patch-uftp.c 2009-05-05 15:03:34.000000000 +0400 @@ -0,0 +1,27 @@ +diff -urN uftp.c.orig uftp.c +--- uftp.c.orig 2009-04-27 06:42:35.000000000 +0400 ++++ uftp.c 2009-05-05 14:50:35.000000000 +0400 +@@ -45,6 +45,7 @@ + uint32_t txID; + int32_t numblocks,numsections,rate,packet_wait,client_wait; + f_offset_t filesize; ++mode_t filemode; + struct sockaddr_in listen_dest,receive_dest; + FILE *applog; + +@@ -195,6 +196,7 @@ + header->tx_id=txID; + info->block_total=numblocks; + info->section_total=numsections; ++ info->fmode=filemode; + if (filesize>(f_offset_t)0x7FFFFFFF) { + info->fsize=0; + info->hilargefsize=(int32_t)(filesize >> 32); +@@ -964,6 +966,7 @@ + srand(getpid()); + txID|=rand()&0xFFFF; + filesize=statbuf.st_size; ++ filemode=statbuf.st_mode; + numblocks=(int32_t)((filesize/BLOCKSIZE)+(filesize%BLOCKSIZE?1:0)); + numsections=(numblocks/(BLOCKSIZE*8))+(numblocks%(BLOCKSIZE*8)?1:0); + naklist=(char *)malloc(numblocks); diff -urN ftp/uftp/files/patch-uftp.h ftp/uftp/files/patch-uftp.h --- ftp/uftp/files/patch-uftp.h 1970-01-01 03:00:00.000000000 +0300 +++ ftp/uftp/files/patch-uftp.h 2009-05-05 15:03:34.000000000 +0400 @@ -0,0 +1,20 @@ +diff -urN uftp.h.orig uftp.h +--- uftp.h.orig 2009-04-27 06:42:35.000000000 +0400 ++++ uftp.h 2009-05-05 14:50:35.000000000 +0400 +@@ -231,7 +231,7 @@ + + #define BLOCKSIZE 1400 + #define PACKETSIZE (BLOCKSIZE+sizeof(struct uftp_h)) +-#define MAXDEST 100 ++#define MAXDEST 256 + #define MAXINFODEST 300 + #define MAXOPENDEST 10000 + #define MAXFILENAME 100 +@@ -259,6 +259,7 @@ + int32_t block_total; + int32_t section_total; + int32_t open; ++ mode_t fmode; + struct in_addr mcast; + struct in_addr addr_list[MAXDEST]; + char name[300]; diff -urN ftp/uftp/files/patch-uftpd.c ftp/uftp/files/patch-uftpd.c --- ftp/uftp/files/patch-uftpd.c 2009-05-05 15:02:05.000000000 +0400 +++ ftp/uftp/files/patch-uftpd.c 2009-05-05 15:03:34.000000000 +0400 @@ -1,6 +1,126 @@ ---- uftpd.c.orig 2008-12-26 16:54:54.000000000 +0300 -+++ uftpd.c 2008-12-26 16:55:36.000000000 +0300 -@@ -867,9 +867,9 @@ +diff -urN uftpd.c.orig uftpd.c +--- uftpd.c.orig 2009-04-27 06:42:35.000000000 +0400 ++++ uftpd.c 2009-05-05 14:54:38.000000000 +0400 +@@ -48,6 +48,7 @@ + int32_t numblocks,numsections; + struct sockaddr_in dest; + f_offset_t filesize; ++ mode_t fmode; + int phase,attempt; + timestamp timeout_time; + int last; +@@ -84,7 +85,7 @@ + + void gotpipe(int sig) + { +- logfunc(applog,0,1,0,0,"Got SIGPIPE"); ++ logfunc(applog,0,1,errno,0,"Got SIGPIPE"); + } + + void file_cleanup(int listindex) +@@ -225,6 +226,7 @@ + id_list[i].latency2=DEF_LATENCY2; + id_list[i].numblocks=info->block_total; + id_list[i].numsections=info->section_total; ++ id_list[i].fmode=info->fmode; + id_list[i].dest=dest; + if (info->fsize==0) { + id_list[i].filesize=(f_offset_t)info->hilargefsize<<32; +@@ -261,7 +263,8 @@ + else + logfunc(applog,id_list[listindex].txID,1,0,0,"Bytes: %ld, Blocks: %d, Sections: %d",id_list[listindex].filesize,id_list[listindex].numblocks,id_list[listindex].numsections); + logfunc(applog,id_list[listindex].txID,1,0,0,"Using private multicast address %s",inet_ntoa(id_list[listindex].multi)); +- if ((id_list[listindex].file=open(filepath,OPENWRITE|O_CREAT|O_TRUNC,0644))==-1) { ++// if ((id_list[listindex].file=open(filepath,OPENWRITE|O_CREAT|O_TRUNC,0644))==-1) { ++ if ((id_list[listindex].file=open(filepath,OPENWRITE|O_CREAT|O_TRUNC,id_list[listindex].fmode))==-1) { + logfunc(applog,id_list[listindex].txID,1,errno,0,"Error opening data file"); + abort_msg(listener,&(id_list[listindex].dest),id_list[listindex].txID,"Error opening data file"); + file_cleanup(listindex); +@@ -460,15 +463,15 @@ + data=&(buf[sizeof(struct uftp_h)]); + + if (header->func==ABORT) { +- logfunc(applog,id_list[listindex].txID,1,0,0,"Error: Transfer aborted by server: %s",data); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"Error: Transfer aborted by server: %s",data); + file_cleanup(listindex); + } else if (header->func==FILESEG) { + if (verbose>=2) { + if (header->pass!=1) +- logfunc(applog,id_list[listindex].txID,1,0,0,"Got packet %d",header->seq_num); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"Got packet %d",header->seq_num); + } else if (verbose==1) { + if (header->seq_num!=id_list[listindex].last+1) +- logfunc(applog,id_list[listindex].txID,1,0,0,"Got packet %d, last was %d",header->seq_num,id_list[listindex].last); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"Got packet %d, last was %d",header->seq_num,id_list[listindex].last); + id_list[listindex].last=header->seq_num; + } + offset=(f_offset_t)header->seq_num*BLOCKSIZE; +@@ -477,30 +480,30 @@ + } + if (ret_val!=offset) { + if (sizeof(f_offset_t)>4) +- logfunc(applog,id_list[listindex].txID,1,0,0,"offset is %s, should be %s",printll(ret_val),printll(offset)); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"offset is %s, should be %s",printll(ret_val),printll(offset)); + else +- logfunc(applog,id_list[listindex].txID,1,0,0,"offset is %ld, should be %ld",ret_val,offset); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"offset is %ld, should be %ld",ret_val,offset); + } + if ((header->blsize!=BLOCKSIZE)&&(header->seq_num!=id_list[listindex].numblocks-1)) { +- logfunc(applog,id_list[listindex].txID,1,0,0,"Bad block size: %d",header->blsize); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"Bad block size: %d",header->blsize); + } + if ((ret_val=write(id_list[listindex].file,data,header->blsize))==-1) { +- logfunc(applog,id_list[listindex].txID,1,0,0,"Write failed for segment %d",header->seq_num); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"Write failed for segment %d",header->seq_num); + } + id_list[listindex].prev_offset=offset+ret_val; + if (ret_val!=header->blsize) { +- logfunc(applog,id_list[listindex].txID,1,0,0,"Write failed for segment %d, only wrote %d bytes",header->seq_num,ret_val); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"Write failed for segment %d, only wrote %d bytes",header->seq_num,ret_val); + } + id_list[listindex].naklist[header->seq_num]=0; + set_timeout(listindex); + } else if (header->func==DONE) { +- logfunc(applog,id_list[listindex].txID,1,0,0,"Got DONE message for pass %d section %d",header->pass,header->section_num); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"Got DONE message for pass %d section %d",header->pass,header->section_num); + if (addr_in_list(info)) { + send_status(listindex,header->pass,header->section_num); + } + set_timeout(listindex); + } else if ((header->func!=REG_CONF)&&(header->func!=DONE_CONF)) { +- logfunc(applog,id_list[listindex].txID,1,0,0,"Invalid FILESEG message: wrong func: %s",strfunc(header->func)); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"Invalid FILESEG message: wrong func: %s",strfunc(header->func)); + } + } + +@@ -516,14 +519,14 @@ + data=&(buf[sizeof(struct uftp_h)]); + + if (header->func==ABORT) { +- logfunc(applog,id_list[listindex].txID,1,0,0,"Error: Transfer aborted by server: %s",data); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"Error: Transfer aborted by server: %s",data); + file_cleanup(listindex); + } else if (header->func!=DONE_CONF) { +- logfunc(applog,id_list[listindex].txID,1,0,0,"Invalid DONE_CONF message: wrong func: %s",strfunc(header->func)); ++ logfunc(applog,id_list[listindex].txID,1,errno,0,"Invalid DONE_CONF message: wrong func: %s",strfunc(header->func)); + } else if (addr_in_list(info)) { + move_file(listindex); + t=time(NULL); +- logfunc(applog,id_list[listindex].txID,0,0,0,"File transfer confirmed at %s",ctime(&t)); ++ logfunc(applog,id_list[listindex].txID,0,errno,0,"File transfer confirmed at %s",ctime(&t)); + file_cleanup(listindex); + } + } +@@ -555,7 +558,7 @@ + send_register(i); + break; + case 2: +- logfunc(applog,id_list[i].txID,1,0,0,"Transfer timed out"); ++ logfunc(applog,id_list[i].txID,1,errno,0,"Transfer timed out"); + abort_msg(listener,&(id_list[i].dest),id_list[i].txID,"Transfer timed out"); + file_cleanup(i); + break; +@@ -866,9 +869,9 @@ applog=stderr; nice(-20); for (c=1;c<=17;c++) >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 11:33:36 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 11:33:42 2009 Subject: ports/134229: [PORTS] ftp/uftp permissions loss fix, more informative logging Message-ID: <200905051133.n45BXZWc024309@freefall.freebsd.org> Synopsis: [PORTS] ftp/uftp permissions loss fix, more informative logging Responsible-Changed-From-To: freebsd-ports-bugs->demon Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 11:33:34 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134229 From rea-fbsd at codelabs.ru Tue May 5 13:50:02 2009 From: rea-fbsd at codelabs.ru (Eygene Ryabinkin) Date: Tue May 5 13:50:39 2009 Subject: ports/134232: [patch] devel/git: update to 1.6.2.5 and create the list of mirrors for kernel.org Message-ID: <20090505133607.A4D73173C8@amnesiac.at.no.dns> >Number: 134232 >Category: ports >Synopsis: [patch] devel/git: update to 1.6.2.5 and create the list of mirrors for kernel.org >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: Tue May 05 13:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Eygene Ryabinkin >Release: FreeBSD 8.0-CURRENT amd64 >Organization: Code Labs >Environment: System: FreeBSD 8.0-CURRENT amd64 >Description: Git now is at 1.6.2.5 [1]. >How-To-Repeat: [1] http://git-scm.org/ >Fix: The following patch updates the port and adds a list of kernel.org mirrors. If the patch will be accepted, I am planning to insert MASTER_SITE_KERNEL_ORG to all ports that download files from there. --- 1.6.2.4-to.1.6.2.5-and-kernel.org-mirrors.diff begins here --- >From 5496e98422005884dc6830415f57d389ae30cf18 Mon Sep 17 00:00:00 2001 From: Eygene Ryabinkin Date: Tue, 5 May 2009 17:11:16 +0400 For the list of the kernel.org mirrors, I had chosen sites with more than one backend server (DNS alias) from the complete list of official mirrors. I had tested the complete list of the added mirrors and all of them work fine (download of older release, git-1.6.2.4, is OK for each mirror). Signed-off-by: Eygene Ryabinkin --- Mk/bsd.sites.mk | 12 ++++++++++++ devel/git/Makefile | 5 +++-- devel/git/distinfo | 18 +++++++++--------- devel/git/pkg-plist | 1 + 4 files changed, 25 insertions(+), 11 deletions(-) diff --git a/Mk/bsd.sites.mk b/Mk/bsd.sites.mk index 841912a..2864705 100644 --- a/Mk/bsd.sites.mk +++ b/Mk/bsd.sites.mk @@ -1472,6 +1472,18 @@ MASTER_SITE_XORG+= \ ftp://ftp.x.org/pub/%SUBDIR%/ .endif +.if !defined(IGNORE_MASTER_SITE_KERNEL_ORG) +MASTER_SITE_KERNEL_ORG+= \ + http://kernel.org/pub/%SUBDIR%/ \ + http://www.us.kernel.org/pub/%SUBDIR%/ \ + http://www.uk.kernel.org/pub/%SUBDIR%/ \ + http://www.no.kernel.org/pub/%SUBDIR%/ \ + http://www.de.kernel.org/pub/%SUBDIR%/ \ + http://www.it.kernel.org/pub/%SUBDIR%/ \ + http://www.ru.kernel.org/pub/%SUBDIR%/ \ + http://www.au.kernel.org/pub/%SUBDIR%/ +.endif + # Macro magic MASTER_SITES_ABBREVS= CPAN:PERL_CPAN SF:SOURCEFORGE SFE:SOURCEFORGE_EXTENDED \ diff --git a/devel/git/Makefile b/devel/git/Makefile index 2ca13ef..a8fa1dc 100644 --- a/devel/git/Makefile +++ b/devel/git/Makefile @@ -6,9 +6,10 @@ # PORTNAME= git -PORTVERSION= 1.6.2.4 +PORTVERSION= 1.6.2.5 CATEGORIES= devel -MASTER_SITES= http://www.kernel.org/pub/software/scm/git/ +MASTER_SITES= ${MASTER_SITE_KERNEL_ORG} +MASTER_SITE_SUBDIR= software/scm/${PORTNAME} DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} \ ${PORTNAME}-manpages-${PORTVERSION}${EXTRACT_SUFX} \ ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX}.sign diff --git a/devel/git/distinfo b/devel/git/distinfo index 90983c9..871a717 100644 --- a/devel/git/distinfo +++ b/devel/git/distinfo @@ -1,9 +1,9 @@ -MD5 (git-1.6.2.4.tar.bz2) = c24d796879bb09e1cc5545bf3a3d7cf6 -SHA256 (git-1.6.2.4.tar.bz2) = 7f33a25798452a637740a65591608777e876cc6774162c50ace3822c0532a10f -SIZE (git-1.6.2.4.tar.bz2) = 2019308 -MD5 (git-manpages-1.6.2.4.tar.bz2) = 7a1c179cfc1ee135dc54877be9c6a5f3 -SHA256 (git-manpages-1.6.2.4.tar.bz2) = 68ad3a55a2bd0bdad8e180586700450e1bdc499809684c225780d6d4d3a88208 -SIZE (git-manpages-1.6.2.4.tar.bz2) = 236920 -MD5 (git-1.6.2.4.tar.bz2.sign) = 8d87df5faf6874935aa8063cb948d4da -SHA256 (git-1.6.2.4.tar.bz2.sign) = 50566b69673b24572edf219ba6884c917d9860a15cbaf8d94c6e0acaa614b594 -SIZE (git-1.6.2.4.tar.bz2.sign) = 248 +MD5 (git-1.6.2.5.tar.bz2) = 7ecacfbc97188b7680addf954ecf481f +SHA256 (git-1.6.2.5.tar.bz2) = aca52a50e45a8fc3a6dd6705466afdc7d6d78d5d4ed7c44e9d60a0f29ba3219e +SIZE (git-1.6.2.5.tar.bz2) = 2019842 +MD5 (git-manpages-1.6.2.5.tar.bz2) = cd4fcdf9ef4e09b7e63d539f6ea2192d +SHA256 (git-manpages-1.6.2.5.tar.bz2) = a6659d9e50a2f610b7c0a6c676537268032ab8bf7637ce944d9872c6dc3d8af2 +SIZE (git-manpages-1.6.2.5.tar.bz2) = 236794 +MD5 (git-1.6.2.5.tar.bz2.sign) = 30cf212685546b7b64524e2302b78cb0 +SHA256 (git-1.6.2.5.tar.bz2.sign) = e97991e83b4bcbeaa320bd08a4aedf7eeabad8b9c62cbd705d98dd99328f3cfd +SIZE (git-1.6.2.5.tar.bz2.sign) = 248 diff --git a/devel/git/pkg-plist b/devel/git/pkg-plist index 2532d1a..faabf88 100644 --- a/devel/git/pkg-plist +++ b/devel/git/pkg-plist @@ -530,6 +530,7 @@ share/git-core/templates/info/exclude %%HTMLDOCS%%%%DOCSDIR%%/RelNotes-1.6.2.2.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes-1.6.2.3.txt %%HTMLDOCS%%%%DOCSDIR%%/RelNotes-1.6.2.4.txt +%%HTMLDOCS%%%%DOCSDIR%%/RelNotes-1.6.2.5.txt %%GITWEB%%%%EXAMPLESDIR%%/gitweb/INSTALL %%GITWEB%%%%EXAMPLESDIR%%/gitweb/README %%GITWEB%%%%EXAMPLESDIR%%/gitweb/git-favicon.png -- 1.6.2.5 --- 1.6.2.4-to.1.6.2.5-and-kernel.org-mirrors.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 13:50:43 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 13:50:51 2009 Subject: ports/134232: [patch] devel/git: update to 1.6.2.5 and create the list of mirrors for kernel.org Message-ID: <200905051350.n45DogVE003922@freefall.freebsd.org> Synopsis: [patch] devel/git: update to 1.6.2.5 and create the list of mirrors for kernel.org Responsible-Changed-From-To: freebsd-ports-bugs->wxs Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 13:50:42 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134232 From sbrabez at gmail.com Tue May 5 15:40:01 2009 From: sbrabez at gmail.com (Sofian Brabez) Date: Tue May 5 15:40:13 2009 Subject: ports/134233: [update] www/roundup : update to 1.4.8 Message-ID: <200905051531.n45FVMF6042109@www.freebsd.org> >Number: 134233 >Category: ports >Synopsis: [update] www/roundup : update to 1.4.8 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue May 05 15:40:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 7.1-RELEASE i386 >Organization: >Environment: FreeBSD mawashi 7.1-RELEASE FreeBSD 7.1-RELEASE #4: Fri Jan 2 07:27:39 CET 2009 root@mawashi:/usr/obj/usr/src/sys/MAWASHI i386 >Description: - Update to 1.4.8 - Update MASTER_SITES - Take over maintainership >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN roundup.orig/Makefile roundup/Makefile --- roundup.orig/Makefile 2009-05-05 10:55:22.000000000 +0200 +++ roundup/Makefile 2009-05-05 16:38:16.000000000 +0200 @@ -6,13 +6,11 @@ # PORTNAME= roundup -PORTVERSION= 1.4.6 +PORTVERSION= 1.4.8 CATEGORIES= www python -MASTER_SITES= ${MASTER_SITE_CHEESESHOP} \ - http://dryice.name/computer/FreeBSD/distfiles/ -MASTER_SITE_SUBDIR= source/r/${PORTNAME} +MASTER_SITES= CHEESESHOP -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sbrabez@gmail.com COMMENT= An Issue-Tracking System for Knowledge Workers USE_PYTHON= yes @@ -44,4 +42,7 @@ MAN1= roundup-admin.1 roundup-demo.1 roundup-mailgw.1 \ roundup-server.1 +post-install: + @${INSTALL_MAN} ${MAN1:S,^,${WRKSRC}/share/man/man1/,} ${MAN1PREFIX}/man/man1 + .include diff -ruN roundup.orig/distinfo roundup/distinfo --- roundup.orig/distinfo 2009-05-05 10:55:22.000000000 +0200 +++ roundup/distinfo 2009-05-05 11:18:43.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (roundup-1.4.6.tar.gz) = e364bb8026761829752ffec76e33065f -SHA256 (roundup-1.4.6.tar.gz) = 210209035ca2161c48117eeeedfc61194292920f1b8ac511342d369836b5b2f5 -SIZE (roundup-1.4.6.tar.gz) = 1370687 +MD5 (roundup-1.4.8.tar.gz) = a35e85dc3328d8c7ff774672f5f8a2e8 +SHA256 (roundup-1.4.8.tar.gz) = 5dcc79732a6cf017f56445ced2eb0481df78df60cbed18344f23af1eda145235 +SIZE (roundup-1.4.8.tar.gz) = 1240197 diff -ruN roundup.orig/pkg-plist roundup/pkg-plist --- roundup.orig/pkg-plist 2009-05-05 10:55:22.000000000 +0200 +++ roundup/pkg-plist 2009-05-05 14:52:09.000000000 +0200 @@ -10,6 +10,15 @@ %%PYTHON_SITELIBDIR%%/roundup/admin.py %%PYTHON_SITELIBDIR%%/roundup/admin.pyc %%PYTHON_SITELIBDIR%%/roundup/admin.pyo +%%PYTHON_SITELIBDIR%%/roundup/anypy/__init__.py +%%PYTHON_SITELIBDIR%%/roundup/anypy/__init__.pyc +%%PYTHON_SITELIBDIR%%/roundup/anypy/__init__.pyo +%%PYTHON_SITELIBDIR%%/roundup/anypy/hashlib_.py +%%PYTHON_SITELIBDIR%%/roundup/anypy/hashlib_.pyc +%%PYTHON_SITELIBDIR%%/roundup/anypy/hashlib_.pyo +%%PYTHON_SITELIBDIR%%/roundup/anypy/sets_.py +%%PYTHON_SITELIBDIR%%/roundup/anypy/sets_.pyc +%%PYTHON_SITELIBDIR%%/roundup/anypy/sets_.pyo %%PYTHON_SITELIBDIR%%/roundup/backends/__init__.py %%PYTHON_SITELIBDIR%%/roundup/backends/__init__.pyc %%PYTHON_SITELIBDIR%%/roundup/backends/__init__.pyo @@ -340,6 +349,7 @@ @dirrm %%PYTHON_SITELIBDIR%%/roundup/cgi/PageTemplates @dirrm %%PYTHON_SITELIBDIR%%/roundup/cgi @dirrm %%PYTHON_SITELIBDIR%%/roundup/backends +@dirrm %%PYTHON_SITELIBDIR%%/roundup/anypy @dirrm %%PYTHON_SITELIBDIR%%/roundup @dirrmtry share/locale/es_AR/LC_MESSAGES @dirrmtry share/locale/es_AR >Release-Note: >Audit-Trail: >Unformatted: From jadawin at FreeBSD.org Tue May 5 15:40:42 2009 From: jadawin at FreeBSD.org (jadawin@FreeBSD.org) Date: Tue May 5 15:40:48 2009 Subject: ports/134233: [update] www/roundup : update to 1.4.8 Message-ID: <200905051540.n45Feekg051313@freefall.freebsd.org> Synopsis: [update] www/roundup : update to 1.4.8 Responsible-Changed-From-To: freebsd-ports-bugs->jadawin Responsible-Changed-By: jadawin Responsible-Changed-When: Tue May 5 15:40:40 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134233 From sbrabez at gmail.com Tue May 5 16:00:10 2009 From: sbrabez at gmail.com (Sofian Brabez) Date: Tue May 5 16:00:16 2009 Subject: ports/134235: [maintainer update] security/py-PF : update to 0.0.3 Message-ID: <200905051552.n45Fqgr2055393@www.freebsd.org> >Number: 134235 >Category: ports >Synopsis: [maintainer update] security/py-PF : update to 0.0.3 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue May 05 16:00:09 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Sofian Brabez >Release: FreeBSD 7.1-RELEASE i386 >Organization: >Environment: FreeBSD mawashi 7.1-RELEASE FreeBSD 7.1-RELEASE #4: Fri Jan 2 07:27:39 CET 2009 root@mawashi:/usr/obj/usr/src/sys/MAWASHI i386 >Description: - Update to 0.0.3 >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN py-PF.orig/Makefile py-PF/Makefile --- py-PF.orig/Makefile 2009-05-05 17:43:01.000000000 +0200 +++ py-PF/Makefile 2009-05-05 17:45:29.000000000 +0200 @@ -6,7 +6,7 @@ # PORTNAME= PF -PORTVERSION= 0.0.2 +PORTVERSION= 0.0.3 CATEGORIES= security python MASTER_SITES= SF MASTER_SITE_SUBDIR= ${PYTHON_PKGNAMEPREFIX:C/[0-9]+//}${PORTNAME:L} diff -ruN py-PF.orig/distinfo py-PF/distinfo --- py-PF.orig/distinfo 2009-05-05 17:43:01.000000000 +0200 +++ py-PF/distinfo 2009-05-05 17:45:45.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (py-PF-0.0.2.tar.gz) = e595b0783180efb1c72ab87d9e5d0d16 -SHA256 (py-PF-0.0.2.tar.gz) = 978a2da9000985eb154c1e62efd7f864564514780cb0a55fe2ca0d798a7c5af1 -SIZE (py-PF-0.0.2.tar.gz) = 24066 +MD5 (py-PF-0.0.3.tar.gz) = cc37d5c9817c26fb1247aa7ace5f8954 +SHA256 (py-PF-0.0.3.tar.gz) = 6aec93ff8680cea1e264d04d5b09e5ed8cafe0db70b33f6403c8be528c844d86 +SIZE (py-PF-0.0.3.tar.gz) = 27344 diff -ruN py-PF.orig/pkg-plist py-PF/pkg-plist --- py-PF.orig/pkg-plist 2009-05-05 17:43:01.000000000 +0200 +++ py-PF/pkg-plist 2009-05-05 17:50:17.000000000 +0200 @@ -10,6 +10,9 @@ %%PYTHON_SITELIBDIR%%/PF/PFStatus.py %%PYTHON_SITELIBDIR%%/PF/PFStatus.pyc %%PYTHON_SITELIBDIR%%/PF/PFStatus.pyo +%%PYTHON_SITELIBDIR%%/PF/PFTable.py +%%PYTHON_SITELIBDIR%%/PF/PFTable.pyc +%%PYTHON_SITELIBDIR%%/PF/PFTable.pyo %%PYTHON_SITELIBDIR%%/PF/PFUtils.py %%PYTHON_SITELIBDIR%%/PF/PFUtils.pyc %%PYTHON_SITELIBDIR%%/PF/PFUtils.pyo >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 16:00:21 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 16:00:27 2009 Subject: ports/134235: [maintainer update] security/py-PF : update to 0.0.3 Message-ID: <200905051600.n45G0Kfe074790@freefall.freebsd.org> Synopsis: [maintainer update] security/py-PF : update to 0.0.3 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 16:00:20 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134235 From cm at therek.net Tue May 5 16:20:02 2009 From: cm at therek.net (Cezary Morga) Date: Tue May 5 16:20:08 2009 Subject: ports/134236: [PATCH] Update net/ssvnc to 1.0.22 Message-ID: <200905051611.n45GBrXv078424@www.freebsd.org> >Number: 134236 >Category: ports >Synopsis: [PATCH] Update net/ssvnc to 1.0.22 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue May 05 16:20:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Cezary Morga >Release: FreeBSD 7.1-STABLE i386 >Organization: >Environment: >Description: Update net/ssvnc from 1.0.20 to 1.0.22. >How-To-Repeat: >Fix: Patch attached with submission follows: diff -ruN ssvnc.orig/Makefile ssvnc/Makefile --- ssvnc.orig/Makefile 2009-05-05 18:03:44.000000000 +0200 +++ ssvnc/Makefile 2009-05-05 18:04:02.000000000 +0200 @@ -6,51 +6,58 @@ # PORTNAME= ssvnc -PORTVERSION= 1.0.20 -PORTREVISION= 7 +PORTVERSION= 1.0.22 CATEGORIES= net security -MASTER_SITES= http://www.karlrunge.com/x11vnc/etv/ +MASTER_SITES= SF +DISTFILES= ${DISTNAME}.src${EXTRACT_SUFX} MAINTAINER= alepulver@FreeBSD.org COMMENT= Enhanced TightVNC Viewer (SSVNC: SSL/SSH VNC viewer) BUILD_DEPENDS= imake:${PORTSDIR}/devel/imake LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg -RUN_DEPENDS= stunnel:${PORTSDIR}/security/stunnel +RUN_DEPENDS= stunnel:${PORTSDIR}/security/stunnel \ + xterm:${PORTSDIR}/x11/xterm -USE_XORG= xi xmu xt xaw +OPTIONS= ULTRAFTP "UltraVNC File Transfer support (Java required)" off + +USE_GMAKE= yes +USE_XORG= xi xmu xt xaw ice xpm xext sm USE_TCL_RUN= 84 USE_TK_RUN= 84 -WRKSRC= ${WRKDIR}/${PORTNAME} +USE_PERL5_RUN= yes + +.if defined(WITH_ULTRAFTP) +USE_JAVA= yes +PLIST_SUB+= ULTRAFTP="" +.else +PLIST_SUB+= ULTRAFTP="@comment " +.endif +.if defined(NOPORTDOCS) +MAKE_ARGS+= DOCS="" +.endif + +MAN1= ssvnc-gui.1 \ + ssvncviewer.1 + +PLIST_SUB+= LIBDIR=lib/${PORTNAME} DESKTOPDIR=${_DESKTOPDIR_REL} post-patch: - @${REINPLACE_CMD} -e \ - 's|/usr/local|${LOCALBASE}|g; s|/usr/X11R6|${LOCALBASE}|g' \ - ${WRKSRC}/build.unix - @${REINPLACE_CMD} -e \ - 's|exec wish|exec ${WISH}|; \ - 303,$$s|ss_vncviewer|ssvnc-stunnel|; \ - s|ssvnc_cmd|ssvnc-stunnel|' \ - ${WRKSRC}/bin/util/ssvnc.tcl - @${REINPLACE_CMD} -e \ - 's|ss_vncviewer|ssvnc-stunnel|; \ - s|-vncviewer|-ssvnc|; \ - s|grep Linux|grep ${OPSYS}|' \ - ${WRKSRC}/bin/util/ss_vncviewer - -do-build: - @cd ${WRKSRC} && ${SETENV} UNAME="${OPSYS}" ${SH} build.unix - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/bin/${OPSYS}/vncviewer ${PREFIX}/bin/ssvnc - ${INSTALL_SCRIPT} ${WRKSRC}/bin/util/ss_vncviewer \ - ${PREFIX}/bin/ssvnc-stunnel - ${INSTALL_SCRIPT} ${WRKSRC}/bin/util/ssvnc.tcl ${PREFIX}/bin/ssvnc-gui -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} README bin/util/stunnel-server.conf \ - ${DOCSDIR} + @${REINPLACE_CMD} -e 's|exec wish|exec ${WISH}|' ${WRKSRC}/scripts/util/ssvnc.tcl + @${REINPLACE_CMD} -e 's|grep Linux|grep ${OPSYS}|' ${WRKSRC}/scripts/util/ss_vncviewer + @${REINPLACE_CMD} -e 's|[[:<:]]ssvnc[[:>:]]|ssvnc-gui|' ${WRKSRC}/man/man1/ssvnc.1 +.if !defined(WITH_ULTRAFTP) + @${REINPLACE_CMD} -e "s|sh -c 'type javac'||" \ + -e "s|sh -c 'type jar'||" \ + -e 's|cd $$(JSRC);|@#|' \ + -e 's|cp -p $$(ARCHIVE)|@#|' \ + ${WRKSRC}/Makefile .endif + +do-configure: + @cd ${WRKSRC} && ${GMAKE} config + +post-install: @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} .include diff -ruN ssvnc.orig/distinfo ssvnc/distinfo --- ssvnc.orig/distinfo 2009-05-05 18:03:44.000000000 +0200 +++ ssvnc/distinfo 2009-05-05 18:04:02.000000000 +0200 @@ -1,3 +1,3 @@ -MD5 (ssvnc-1.0.20.tar.gz) = 9d4b1531cac07df5a9975d6760b426c1 -SHA256 (ssvnc-1.0.20.tar.gz) = 27edb3bec4cd48a899bec3bcbee437c9ee3514cdd29eb21c3a2b16546780e0f1 -SIZE (ssvnc-1.0.20.tar.gz) = 13191851 +MD5 (ssvnc-1.0.22.src.tar.gz) = 6273ae862a0e1b1b9dd5aa46eab512dc +SHA256 (ssvnc-1.0.22.src.tar.gz) = a758ad5f4584f2b7aa170fbae5a99849bbc97ef0500b1ecb7445dcbd01d736d9 +SIZE (ssvnc-1.0.22.src.tar.gz) = 453665 diff -ruN ssvnc.orig/files/patch-Makefile ssvnc/files/patch-Makefile --- ssvnc.orig/files/patch-Makefile 1970-01-01 01:00:00.000000000 +0100 +++ ssvnc/files/patch-Makefile 2009-05-05 18:04:02.000000000 +0200 @@ -0,0 +1,45 @@ +--- Makefile.orig 2008-11-16 18:31:44.000000000 +0100 ++++ Makefile 2009-05-05 16:24:14.572268630 +0200 +@@ -29,6 +29,7 @@ + MANDIR ?= $(MAN) + APPS ?= share/applications + BINNAME ?= ssvncviewer ++DOCS ?= share/doc/ssvnc + + + VSRC = vnc_unixsrc +@@ -65,23 +66,28 @@ + cd $(PSRC); $(MAKE) clean + + install: all +- mkdir -p $(ROOT)$(PREFIX)/$(BIN) $(ROOT)$(PREFIX)/$(LIB) $(ROOT)$(PREFIX)/$(MANDIR) ++ mkdir -p $(ROOT)$(PREFIX)/$(BIN) $(ROOT)$(PREFIX)/$(LIB)/util $(ROOT)$(PREFIX)/$(MANDIR) + strip $(VIEWER) + cp -p $(VIEWER) $(ROOT)$(PREFIX)/$(LIB) + cp -p $(VNCSPW) $(ROOT)$(PREFIX)/$(LIB) + cp -p $(UNWRAP) $(ROOT)$(PREFIX)/$(LIB) + cp -p $(LIMACC) $(ROOT)$(PREFIX)/$(LIB) + cp -p $(ULTDSM) $(ROOT)$(PREFIX)/$(LIB) +- cp -pR scripts/* $(ROOT)$(PREFIX)/$(LIB) ++ cp -p scripts/ssvnc $(ROOT)$(PREFIX)/$(LIB) ++ cp -p scripts/ssvnc_cmd $(ROOT)$(PREFIX)/$(LIB) ++ cp -p scripts/util/ssvnc.tcl $(ROOT)$(PREFIX)/$(LIB)/util ++ cp -p scripts/util/ss_vncviewer $(ROOT)$(PREFIX)/$(LIB)/util + cp -p $(ARCHIVE) $(ROOT)$(PREFIX)/$(LIB)/util +- cp -p $(MAN)/ssvnc.1 $(ROOT)$(PREFIX)/$(MANDIR) +- ./wr_tool $(ROOT)$(PREFIX)/$(BIN)/ssvnc $(PREFIX)/$(LIB)/ssvnc +- ./wr_tool $(ROOT)$(PREFIX)/$(BIN)/tsvnc $(PREFIX)/$(LIB)/tsvnc +- ./wr_tool $(ROOT)$(PREFIX)/$(BIN)/sshvnc $(PREFIX)/$(LIB)/sshvnc ++ cp -p $(MAN)/ssvnc.1 $(ROOT)$(PREFIX)/$(MANDIR)/ssvnc-gui.1 ++ ./wr_tool $(ROOT)$(PREFIX)/$(BIN)/ssvnc-gui $(PREFIX)/$(LIB)/ssvnc ++ ./wr_tool $(ROOT)$(PREFIX)/$(BIN)/ssvnc-stunnel $(PREFIX)/$(LIB)/util/ss_vncviewer + if [ "X$(APPS)" != X ]; then mkdir -p $(ROOT)$(PREFIX)/$(APPS); fi + if [ "X$(APPS)" != X ]; then cp -p ssvnc.desktop $(ROOT)$(PREFIX)/$(APPS); fi + if [ "X$(BINNAME)" != X ]; then cp -p $(VIEWER) $(ROOT)$(PREFIX)/$(BIN)/$(BINNAME); fi + if [ "X$(BINNAME)" != X ]; then cp -p $(MAN)/ssvncviewer.1 $(ROOT)$(PREFIX)/$(MANDIR)/$(BINNAME).1; fi ++ if [ "X$(DOCS)" != X ]; then mkdir -p $(ROOT)$(PREFIX)/$(DOCS); fi ++ if [ "X$(DOCS)" != X ]; then cp -p scripts/util/stunnel-server.conf $(ROOT)$(PREFIX)/$(DOCS); fi ++ if [ "X$(DOCS)" != X ]; then cp -p README $(ROOT)$(PREFIX)/$(DOCS); fi + + + #internal use only, a test install: diff -ruN ssvnc.orig/files/patch-build.unix ssvnc/files/patch-build.unix --- ssvnc.orig/files/patch-build.unix 2009-05-05 18:03:38.000000000 +0200 +++ ssvnc/files/patch-build.unix 1970-01-01 01:00:00.000000000 +0100 @@ -1,47 +0,0 @@ ---- ./build.unix.orig Sat Apr 21 20:10:49 2007 -+++ ./build.unix Mon Apr 23 21:43:58 2007 -@@ -77,12 +77,13 @@ - - # Create a tmp dir for this build: - # --tmp=./src/tmp/$name.$$ -+tmp=./src/tmp/$name - if [ "X$TMPDIR" != "X" ]; then - tmp="$TMPDIR/$tmp" - fi - mkdir -p $tmp || exit 1 - -+if false; then - # Try to find some static archives of various libraries: - # - libs="$tmp/libs" -@@ -108,6 +109,7 @@ - ls -ld $libs - ls -l $libs - echo -+fi - - have_gcc="" - if type gcc > /dev/null; then -@@ -203,7 +205,7 @@ - xmkmf - make Makefiles - mv vncviewer/Makefile vncviewer/Makefile.orig --sed -e "s,EXTRA_LDOPTIONS =,EXTRA_LDOPTIONS = -L$start/$libs $LDFLAGS_OS," \ -+sed -e "s,EXTRA_LDOPTIONS =,EXTRA_LDOPTIONS = $LDFLAGS_OS," \ - -e "s,CCOPTIONS =,CCOPTIONS = $CPPFLAGS_OS," \ - vncviewer/Makefile.orig > vncviewer/Makefile - -@@ -245,6 +247,7 @@ - $LDD $dest/vncviewer$suff - echo "" - -+if false; then - # Do stunnel: - # - stunnel_src=`ls -td ./src/stunnel* | head -1` -@@ -322,3 +325,4 @@ - - $dest/vncviewer$suff -h - $LDD $dest/vncviewer$suff -+fi diff -ruN ssvnc.orig/pkg-message ssvnc/pkg-message --- ssvnc.orig/pkg-message 2009-05-05 18:03:44.000000000 +0200 +++ ssvnc/pkg-message 2009-05-05 18:04:02.000000000 +0200 @@ -2,7 +2,7 @@ SSVNC has been installed, and the following commands are available: -ssvnc - SSVNC viewer +ssvncviewer - SSVNC viewer ssvnc-stunnel - Wrapper script for SSVNC + stunnel (SSH/SSL tunnels) ssvnc-gui - GUI for the previous commands diff -ruN ssvnc.orig/pkg-plist ssvnc/pkg-plist --- ssvnc.orig/pkg-plist 2009-05-05 18:03:44.000000000 +0200 +++ ssvnc/pkg-plist 2009-05-05 18:04:02.000000000 +0200 @@ -1,6 +1,19 @@ -bin/ssvnc bin/ssvnc-gui bin/ssvnc-stunnel +bin/ssvncviewer +%%DESKTOPDIR%%ssvnc.desktop +%%LIBDIR%%/lim_accept.so +%%LIBDIR%%/ssvnc +%%LIBDIR%%/ssvnc_cmd +%%LIBDIR%%/ultravnc_dsm_helper +%%LIBDIR%%/unwrap.so +%%LIBDIR%%/util/ss_vncviewer +%%LIBDIR%%/util/ssvnc.tcl +%%LIBDIR%%/vncstorepw +%%LIBDIR%%/vncviewer +%%ULTRAFTP%%%%LIBDIR%%/ultraftp.jar %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/stunnel-server.conf %%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrmtry %%LIBDIR%%/util +@dirrmtry %%LIBDIR%% >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 16:20:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 16:20:18 2009 Subject: ports/134236: [PATCH] Update net/ssvnc to 1.0.22 Message-ID: <200905051620.n45GKCCw001641@freefall.freebsd.org> Synopsis: [PATCH] Update net/ssvnc to 1.0.22 Responsible-Changed-From-To: freebsd-ports-bugs->alepulver Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 16:20:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134236 From uspoerlein at gmail.com Tue May 5 15:40:02 2009 From: uspoerlein at gmail.com (Ulrich Spoerlein) Date: Tue May 5 16:23:29 2009 Subject: ports/134234: [PATCH] sysutils/samesame: Unbreak build on ZFS Message-ID: <200905051533.n45FXZU1006430@roadrunner.spoerlein.net> >Number: 134234 >Category: ports >Synopsis: [PATCH] sysutils/samesame: Unbreak build on ZFS >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 05 15:40:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Ulrich Spoerlein >Release: FreeBSD 7.2-PRERELEASE i386 >Organization: >Environment: >Description: The port's install routine is using bogus tests (during install time, no less!) breaking on ZFS due to misusage of find(1). - Fix the sed magic to really kill all test-foo deps and only those Port maintainer (freebsd@akruijff.dds.nl) is cc'd. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: Build samesame with ZFS backed OBJDIR: ===> Checking if sysutils/samesame already installed /usr/bin/install -c -o root -g wheel -m 0755 samefile /usr/local/bin/ /usr/bin/install -c -o root -g wheel -m 0644 samefile.1.gz /usr/local/man/man1/ /usr/bin/install -c -o root -g wheel -m 0755 samelink /usr/local/bin/ /usr/bin/install -c -o root -g wheel -m 0644 samelink.1.gz /usr/local/man/man1/ Testing samearchive-lite --- test.out 2009-05-04 22:26:14.747699199 +0200 +++ test.samearchive-lite 2009-04-11 05:28:07.000000000 +0200 @@ -1,6 +1,6 @@ 11 test/file1a test2/file1a = 2 1 -11 test/file2c test2/file2c = 3 1 -11 test/file1b test2/file1b = 2 1 11 test/file3a test2/file3a = 1 1 -11 test/file2b test2/file2b = 3 1 11 test/file2a test2/file2a = 3 1 +11 test/file2c test2/file2c = 3 1 +11 test/file2b test2/file2b = 3 1 +11 test/file1b test2/file1b = 2 1 *** Error code 1 Stop in /usr/obj/usr/ports/sysutils/samesame/work/samesame-1.0. >Fix: --- samesame-1.0.patch begins here --- Index: Makefile =================================================================== RCS file: /tank/ncvs/ports/sysutils/samesame/Makefile,v retrieving revision 1.2 diff -u -p -u -r1.2 Makefile --- Makefile 1 May 2009 18:25:31 -0000 1.2 +++ Makefile 5 May 2009 15:28:16 -0000 @@ -47,10 +47,10 @@ CFLAGS+= -DPATH_INIT=256 CFLAGS+= -DSTATIC_CACHE_CAPACITY=8192 post-patch: - @${REINPLACE_CMD} -e 's|test-samefile||g' \ - -e 's|test-samelink||g' \ - -e 's|test-samearchive||g' \ - -e 's|test-samearchive-lite||g' ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e '/^install/s|test-samefile||g' \ + -e '/^install/s|test-samelink||g' \ + -e '/^install/s|test-samearchive-lite||g' \ + -e '/^install/s|test-samearchive||g' ${WRKSRC}/Makefile post-install: ${CHMOD} 770 ${WRKSRC}/test* --- samesame-1.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 16:23:33 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 16:23:40 2009 Subject: ports/134234: [PATCH] sysutils/samesame: Unbreak build on ZFS Message-ID: <200905051623.n45GNWcr013657@freefall.freebsd.org> Synopsis: [PATCH] sysutils/samesame: Unbreak build on ZFS State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Tue May 5 16:23:32 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134234 From edwin at FreeBSD.org Tue May 5 16:30:04 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Tue May 5 16:30:10 2009 Subject: ports/134234: [PATCH] sysutils/samesame: Unbreak build on ZFS Message-ID: <200905051630.n45GU35S013964@freefall.freebsd.org> The following reply was made to PR ports/134234; it has been noted by GNATS. From: Edwin Groothuis To: freebsd@akruijff.dds.nl Cc: bug-followup@FreeBSD.org Subject: Re: ports/134234: [PATCH] sysutils/samesame: Unbreak build on ZFS Date: Tue, 5 May 2009 16:23:30 UT Maintainer of sysutils/samesame, Please note that PR ports/134234 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/134234 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From amdmi3 at FreeBSD.org Tue May 5 17:12:03 2009 From: amdmi3 at FreeBSD.org (amdmi3@FreeBSD.org) Date: Tue May 5 17:12:09 2009 Subject: ports/134215: [PATCH] devel/geany: update to 0.17 Message-ID: <200905051712.n45HC3a1080043@freefall.freebsd.org> Synopsis: [PATCH] devel/geany: update to 0.17 Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Tue May 5 17:12:02 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134215 From cyberbotx at cyberbotx.com Tue May 5 17:40:06 2009 From: cyberbotx at cyberbotx.com (Naram Qashat) Date: Tue May 5 17:40:25 2009 Subject: ports/134237: [MAINTAINER] devel/doxygen: update to 1.5.9 Message-ID: <200905051738.n45HcNkA028142@kirby.cyberbotx.com> >Number: 134237 >Category: ports >Synopsis: [MAINTAINER] devel/doxygen: update to 1.5.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: Tue May 05 17:40:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 7.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Sun May 3 23:48:53 EDT >Description: - Update to 1.5.9 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- doxygen-1.5.9.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/doxygen/Makefile /kirby/shared/ports/doxygen/Makefile --- /usr/ports/devel/doxygen/Makefile 2008-12-29 22:22:38.000000000 -0500 +++ /kirby/shared/ports/doxygen/Makefile 2009-05-05 12:38:49.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= doxygen -PORTVERSION= 1.5.8 +PORTVERSION= 1.5.9 CATEGORIES= devel MASTER_SITES= ftp://ftp.stack.nl/pub/users/dimitri/ \ http://ftp.stack.nl/pub/users/dimitri/ diff -ruN --exclude=CVS /usr/ports/devel/doxygen/distinfo /kirby/shared/ports/doxygen/distinfo --- /usr/ports/devel/doxygen/distinfo 2008-12-29 22:22:38.000000000 -0500 +++ /kirby/shared/ports/doxygen/distinfo 2009-05-05 12:39:07.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (doxygen-1.5.8.src.tar.gz) = 7438b7ff875d522f02860eea39261953 -SHA256 (doxygen-1.5.8.src.tar.gz) = 01540aaf7e929e7784e3392331f2c915480acb174a16e8652855d90965f44ff8 -SIZE (doxygen-1.5.8.src.tar.gz) = 4125837 +MD5 (doxygen-1.5.9.src.tar.gz) = 33c5598fa6d24cbc55849eaf89652557 +SHA256 (doxygen-1.5.9.src.tar.gz) = 89c3d1102e9e5c63ff735dee88b595bc986fbb2b5944b28ba5f91d31adf8958e +SIZE (doxygen-1.5.9.src.tar.gz) = 4141375 diff -ruN --exclude=CVS /usr/ports/devel/doxygen/files/patch-md5 /kirby/shared/ports/doxygen/files/patch-md5 --- /usr/ports/devel/doxygen/files/patch-md5 2008-03-28 02:57:16.000000000 -0400 +++ /kirby/shared/ports/doxygen/files/patch-md5 2009-05-05 12:58:31.000000000 -0400 @@ -14,15 +14,18 @@ #include #include #include -@@ -352,10 +353,8 @@ +@@ -363,13 +364,11 @@ bool Definition::_docsAlreadyAdded(const QString &doc) { - uchar md5_sig[16]; QCString sigStr(33); -- MD5Buffer((const unsigned char *)doc.data(),doc.length(),md5_sig); + // to avoid mismatches due to differences in indenting, we first remove + // double whitespaces... + QCString docStr = doc.simplifyWhiteSpace(); +- MD5Buffer((const unsigned char *)docStr.data(),docStr.length(),md5_sig); - MD5SigToString(md5_sig,sigStr.data(),33); -+ MD5Data((const unsigned char*)doc.data(),doc.length(),sigStr.data()); ++ MD5Data((const unsigned char*)docStr.data(),docStr.length(),sigStr.data()); if (m_impl->docSignatures.find(sigStr)==-1) // new docs, add signature to prevent re-adding it { m_impl->docSignatures+=":"+sigStr; --- doxygen-1.5.9.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From miwi at FreeBSD.org Tue May 5 17:44:01 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Tue May 5 17:44:10 2009 Subject: ports/134237: [MAINTAINER] devel/doxygen: update to 1.5.9 Message-ID: <200905051744.n45Hi1JG022001@freefall.freebsd.org> Synopsis: [MAINTAINER] devel/doxygen: update to 1.5.9 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue May 5 17:44:00 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134237 From cyberbotx at cyberbotx.com Tue May 5 17:50:02 2009 From: cyberbotx at cyberbotx.com (Naram Qashat) Date: Tue May 5 17:50:08 2009 Subject: ports/134238: [MAINTAINER] x11-toolkits/scintilla: update to 1.78 Message-ID: <200905051749.n45HnbCF032094@kirby.cyberbotx.com> >Number: 134238 >Category: ports >Synopsis: [MAINTAINER] x11-toolkits/scintilla: update to 1.78 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue May 05 17:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 7.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Sun May 3 23:48:53 EDT >Description: - Update to 1.78 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- scintilla-1.78.patch begins here --- diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/Makefile /kirby/shared/ports/scintilla/Makefile --- /usr/ports/x11-toolkits/scintilla/Makefile 2008-10-24 17:05:11.000000000 -0400 +++ /kirby/shared/ports/scintilla/Makefile 2009-05-05 13:41:22.000000000 -0400 @@ -6,7 +6,7 @@ # $MCom: ports/x11-toolkits/scintilla/Makefile,v 1.3 2006/09/17 21:58:56 marcus Exp $ PORTNAME= scintilla -PORTVERSION= 1.77 +PORTVERSION= 1.78 CATEGORIES= x11-toolkits MASTER_SITES= SF \ http://www.scintilla.org/ diff -ruN --exclude=CVS /usr/ports/x11-toolkits/scintilla/distinfo /kirby/shared/ports/scintilla/distinfo --- /usr/ports/x11-toolkits/scintilla/distinfo 2008-10-24 17:05:11.000000000 -0400 +++ /kirby/shared/ports/scintilla/distinfo 2009-05-05 13:41:36.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (scite177.tgz) = ba016919190c12cfb712e1f004df4187 -SHA256 (scite177.tgz) = 51b14c1fdff1b88f9361faef5030bc8df24cdc4b23d2d9181303a7708f2eb2af -SIZE (scite177.tgz) = 1520037 +MD5 (scite178.tgz) = 7c62a8f75ef69a7cb143e22bf29456fa +SHA256 (scite178.tgz) = e7a99b2111e7156e9568737e31950879f250f8facba94012a6ac5351107022e9 +SIZE (scite178.tgz) = 1568994 --- scintilla-1.78.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From ccowart at rescomp.berkeley.edu Tue May 5 18:00:15 2009 From: ccowart at rescomp.berkeley.edu (Christopher Cowart) Date: Tue May 5 18:00:33 2009 Subject: ports/134239: [patch] rc script for net-p2p/py-bittornado Message-ID: <200905051752.n45HqnVm064749@www.freebsd.org> >Number: 134239 >Category: ports >Synopsis: [patch] rc script for net-p2p/py-bittornado >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 05 18:00:10 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Christopher Cowart >Release: 7.0 >Organization: UC Berkeley >Environment: FreeBSD dev-aux.rescomp.berkeley.edu 7.0-RELEASE-p6 FreeBSD 7.0-RELEASE-p6 #3: Mon Dec 8 16:42:41 PST 2008 root@dev-aux.rescomp.berkeley.edu:/usr/obj/usr/src/sys/AUX i386 >Description: While the port has a sample startup script, it doesn't make use of rc.subr. >How-To-Repeat: >Fix: Attached patch. Patch attached with submission follows: diff -Nrub py-bittornado/Makefile py-bittornado.new/Makefile --- py-bittornado/Makefile 2009-05-05 10:31:27.000000000 -0700 +++ py-bittornado.new/Makefile 2009-05-05 10:36:38.000000000 -0700 @@ -7,7 +7,7 @@ PORTNAME= BitTornado PORTVERSION= 0.3.18 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES?= net-p2p python ipv6 MASTER_SITES= http://download.bittornado.com/download/ \ @@ -28,6 +28,8 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-CVS +USE_RC_SUBR= bttrack + DOC_FILES1= BUILD.windows.txt FAQ.txt IMPORTANT-multitracker-readme.txt \ INSTALL.unix.txt credits.txt multitracker-spec.txt \ README-Psyco.txt webseed-spec.txt diff -Nrub py-bittornado/files/bttrack.in py-bittornado.new/files/bttrack.in --- py-bittornado/files/bttrack.in 1969-12-31 16:00:00.000000000 -0800 +++ py-bittornado.new/files/bttrack.in 2009-05-05 10:39:41.000000000 -0700 @@ -0,0 +1,36 @@ +#!/bin/sh +# +# $FreeBSD$ +# +# PROVIDE: bttrack +# REQUIRE: DAEMON +# +# Add the following lines to /etc/rc.conf to enable this service: +# +# bttrack_enable: Set to NO by default. +# Set it to YES to enable the tracker. +# bttrack_dfile: Defaults to /var/run/${name}.dfile. +# Stores state for tracker. +# bttrack_port: Set to listen on an alternative port (default is 80). +# +# + +. %%RC_SUBR%% + +name=bttrack +rcvar=`set_rcvar` + +command=%%PREFIX%%/bin/${name}.py +command_args="&" +command_interpreter=`head -n 1 $command | awk -F! '{print $2}'` + +load_rc_config ${name} + +: ${bttrack_enable:="NO"} +: ${bttrack_pidfile:=/var/run/${name}.pid} +: ${bttrack_dfile:=/var/run/${name}.dfile} +bttrack_flags="--dfile ${bttrack_dfile} \ + ${bttrack_port:+--port ${bttrack_port}} \ + ${bttrack_flags}" + +run_rc_command "$1" >Release-Note: >Audit-Trail: >Unformatted: From cyberbotx at cyberbotx.com Tue May 5 18:00:15 2009 From: cyberbotx at cyberbotx.com (Naram Qashat) Date: Tue May 5 18:00:34 2009 Subject: ports/134240: [MAINTAINER] editors/scite: update to 1.78 Message-ID: <200905051755.n45Ht0UW034158@kirby.cyberbotx.com> >Number: 134240 >Category: ports >Synopsis: [MAINTAINER] editors/scite: update to 1.78 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Tue May 05 18:00:11 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Naram Qashat >Release: FreeBSD 7.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD kirby.cyberbotx.com 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #0: Sun May 3 23:48:53 EDT >Description: - Update to 1.78 NOTE: This PR relies on PR ports/134238 to be committed first. Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- scite-1.78.patch begins here --- diff -ruN --exclude=CVS /usr/ports/editors/scite/Makefile /kirby/shared/ports/scite/Makefile --- /usr/ports/editors/scite/Makefile 2008-10-24 17:01:48.000000000 -0400 +++ /kirby/shared/ports/scite/Makefile 2009-05-05 13:50:02.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= scite -PORTVERSION= 1.77 +PORTVERSION= 1.78 CATEGORIES= editors gnome MASTER_SITES= SF \ http://www.scintilla.org/ diff -ruN --exclude=CVS /usr/ports/editors/scite/distinfo /kirby/shared/ports/scite/distinfo --- /usr/ports/editors/scite/distinfo 2008-10-24 17:01:48.000000000 -0400 +++ /kirby/shared/ports/scite/distinfo 2009-05-05 13:50:10.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (scite177.tgz) = ba016919190c12cfb712e1f004df4187 -SHA256 (scite177.tgz) = 51b14c1fdff1b88f9361faef5030bc8df24cdc4b23d2d9181303a7708f2eb2af -SIZE (scite177.tgz) = 1520037 +MD5 (scite178.tgz) = 7c62a8f75ef69a7cb143e22bf29456fa +SHA256 (scite178.tgz) = e7a99b2111e7156e9568737e31950879f250f8facba94012a6ac5351107022e9 +SIZE (scite178.tgz) = 1568994 diff -ruN --exclude=CVS /usr/ports/editors/scite/pkg-plist /kirby/shared/ports/scite/pkg-plist --- /usr/ports/editors/scite/pkg-plist 2008-03-30 19:03:01.000000000 -0400 +++ /kirby/shared/ports/scite/pkg-plist 2009-05-05 13:53:11.000000000 -0400 @@ -58,6 +58,7 @@ %%DATADIR%%/matlab.properties %%DATADIR%%/metapost.properties %%DATADIR%%/mmixal.properties +%%DATADIR%%/nimrod.properties %%DATADIR%%/nncrontab.properties %%DATADIR%%/nsis.properties %%DATADIR%%/opal.properties @@ -65,6 +66,7 @@ %%DATADIR%%/pascal.properties %%DATADIR%%/perl.properties %%DATADIR%%/pov.properties +%%DATADIR%%/powerpro.properties %%DATADIR%%/powershell.properties %%DATADIR%%/ps.properties %%DATADIR%%/purebasic.properties @@ -74,6 +76,7 @@ %%DATADIR%%/ruby.properties %%DATADIR%%/scriptol.properties %%DATADIR%%/smalltalk.properties +%%DATADIR%%/sorcins.properties %%DATADIR%%/specman.properties %%DATADIR%%/spice.properties %%DATADIR%%/sql.properties --- scite-1.78.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 18:00:26 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 18:00:34 2009 Subject: ports/134239: [patch] rc script for net-p2p/py-bittornado Message-ID: <200905051800.n45I0PI4036300@freefall.freebsd.org> Synopsis: [patch] rc script for net-p2p/py-bittornado Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 18:00:25 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134239 From miwi at FreeBSD.org Tue May 5 18:07:45 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Tue May 5 18:07:57 2009 Subject: ports/134240: [MAINTAINER] editors/scite: update to 1.78 Message-ID: <200905051807.n45I7iwd048036@freefall.freebsd.org> Synopsis: [MAINTAINER] editors/scite: update to 1.78 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue May 5 18:07:44 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134240 From miwi at FreeBSD.org Tue May 5 18:07:47 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Tue May 5 18:07:58 2009 Subject: ports/134238: [MAINTAINER] x11-toolkits/scintilla: update to 1.78 Message-ID: <200905051807.n45I7lBa048102@freefall.freebsd.org> Synopsis: [MAINTAINER] x11-toolkits/scintilla: update to 1.78 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Tue May 5 18:07:47 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134238 From sarumaru at jp.freebsd.org Tue May 5 19:00:12 2009 From: sarumaru at jp.freebsd.org (Yoshihiko Sarumaru) Date: Tue May 5 19:00:19 2009 Subject: ports/134241: update port: devel/jude-community: update to 5.5 Message-ID: <200905051854.n45Is97k042889@shimako.yamayuri.org> >Number: 134241 >Category: ports >Synopsis: update port: devel/jude-community: update to 5.5 >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: Tue May 05 19:00:11 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yoshihiko Sarumaru >Release: FreeBSD 6.4-STABLE i386 >Organization: >Environment: System: FreeBSD shimako.yamayuri.org 6.4-STABLE FreeBSD 6.4-STABLE #3: Sun Jan 11 18:21:13 JST 2009 sarumaru@shimako.yamayuri.org:/usr/obj/usr/src/sys/VGN-TX92S i386 >Description: update to jude community 5.5 - this version doesn't work with JDK1.4 any more - this version works with tools.jar derived from JDK1.5+/1.6 - update browser list >How-To-Repeat: >Fix: diff -uwr jude-community-5.4.1/Makefile jude-community/Makefile --- jude-community-5.4.1/Makefile 2009-01-21 08:14:32.000000000 +0900 +++ jude-community/Makefile 2009-05-05 22:39:12.000000000 +0900 @@ -6,7 +6,7 @@ # PORTNAME= jude-community -PORTVERSION= 5.4.1 +PORTVERSION= 5.5 CATEGORIES= devel java MASTER_SITES= # you have to register yourself as a member to download DISTNAME= ${PORTNAME}-${PORTVERSION:S!.!_!g} @@ -16,21 +16,13 @@ USE_ZIP= yes -# Export HTML function can be used with JDK 1.4 only. -# (But it can work with JDK 1.5 + copying JDK 1.4 tools.jar to ${DATADIR}) -OPTIONS= EXPORT_HTML "Enable Exporting HTML function (needs JDK1.4)" Off - .include -# In case you are going to use JDK1.5+ in Japanese environment, make sure +# In case you are going to use JDK1.5 in Japanese environment, make sure # you have prepared following command to avoid from font problem: # ln -s ${LOCALBASE}/lib/X11/fonts/TrueType \ # ${LOCALBASE}/diablo-jdk1.5.0/jre/lib/fonts/fallback -.if defined(WITH_EXPORT_HTML) -JAVA_VERSION= 1.4 -.else -JAVA_VERSION= 1.4+ -.endif +JAVA_VERSION= 1.5+ USE_JAVA= yes JAVA_OS= native @@ -54,15 +46,14 @@ PORTDATA= ${PORTNAME}.jar jude-api.jar jude-gui_en.properties_org \ jude.ico jude-doc.ico Welcome.jude Welcome_ja.jude \ template \ - mozilla -.endif -.if defined(WITH_EXPORT_HTML) -PORTDATA+= tools.jar + mozilla \ + tools.jar .endif .if !defined(NOPORTDOCS) PORTDOCS= ReleaseNote-e.html ReleaseNote.html \ ProductInformation.txt \ + README-e.txt README.txt \ API_sample_program_license_agreement-e.txt \ API_sample_program_license_agreement.txt .endif @@ -78,13 +69,11 @@ ${INSTALL_SCRIPT} ${WRKSRC}/jude ${PREFIX}/bin .if !defined(NOPORTDATA) ${MKDIR} ${DATADIR} - (cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDATA:Nmozilla}" ${DATADIR}) + (cd ${WRKSRC} && ${COPYTREE_SHARE} "${PORTDATA:Nmozilla:Ntools.jar}" ${DATADIR}) ${INSTALL_SCRIPT} ${FILESDIR}/mozilla ${DATADIR} -.if defined(WITH_EXPORT_HTML) - # ExportHTML needs lib/tools.jar of JDK1.4 + # ExportHTML needs lib/tools.jar of JDK1.5/1.6 ${LN} -s ${JAVA_HOME}/lib/tools.jar ${DATADIR} .endif -.endif .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} .for docfile in ${PORTDOCS} diff -uwr jude-community-5.4.1/distinfo jude-community/distinfo --- jude-community-5.4.1/distinfo 2009-01-18 18:49:43.000000000 +0900 +++ jude-community/distinfo 2009-04-12 17:07:16.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (jude-community-5_4_1.zip) = 2bd4b56d0a73105eaed12363856abb3e -SHA256 (jude-community-5_4_1.zip) = dcb3890a53d27b363b2e310db7819889b332319ea460f8e53dce42575bd0274e -SIZE (jude-community-5_4_1.zip) = 10246359 +MD5 (jude-community-5_5.zip) = 90549e57d30ff0e818b8bdd8475ab8dc +SHA256 (jude-community-5_5.zip) = 5f3dba918dbf055c40ff82c0d47844765d6c3e566e2fa6fa15a1138d88b53c4f +SIZE (jude-community-5_5.zip) = 9520770 diff -uwr jude-community-5.4.1/files/mozilla jude-community/files/mozilla --- jude-community-5.4.1/files/mozilla 2008-12-29 21:38:20.000000000 +0900 +++ jude-community/files/mozilla 2009-05-06 03:38:38.000000000 +0900 @@ -1,10 +1,16 @@ #!/bin/sh -# eliminate own path from PATH (without this, cause a inifinite loop) +# eliminate own path from PATH (without this, may cause a inifinite loop) PATH=${PATH#$(dirname $0)} -# add your favorite browser in the top of the list -for browser in mozilla linux-mozilla firefox3 firefox linux-firefox firebird opera linux-opera +# set your favorite browser to JUDE_BROWSER environmental variable +for browser in \ +${JUDE_BROWSER} \ +firefox-devel linux-firefox-devel \ +firefox3 \ +firefox linux-firefox \ +seamonkey-devel linux-seamonkey-devel seamonkey linux-seamonkey \ +opera-devel opera linux-opera do type $browser > /dev/null 2>&1 && exec $browser "$@" done >Release-Note: >Audit-Trail: >Unformatted: From portsbug at b2pi.info Tue May 5 20:00:09 2009 From: portsbug at b2pi.info (Brent B. Powers) Date: Tue May 5 20:00:15 2009 Subject: ports/134243: port mail/libdomainkeys doesn't build dktest Message-ID: <200905051955.n45Jtc5M068582@www.freebsd.org> >Number: 134243 >Category: ports >Synopsis: port mail/libdomainkeys doesn't build dktest >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue May 05 20:00:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Brent B. Powers >Release: 7.1 >Organization: B2Pi >Environment: FreeBSD mx.b2pi.com 7.1-RELEASE-p4 FreeBSD 7.1-RELEASE-p4 #0: Sun Mar 22 12:35:36 UTC 2009 root@i386-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC i386 >Description: The mail/libdomainkeys port installs a dktest script file in /usr/local/share/libdomainkeys. That script (copied from the distributions 'test' script) relies upon an executable (also known as dktest). dktest has other uses in a production system, and must be built and installed. IMHO, dktest should be installed to /usr/local/bin, and the test script should go to /usr/local/share/libdomainkeys/test if installed at all. >How-To-Repeat: build >Fix: Unfortunately, not known >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 20:00:21 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 20:00:27 2009 Subject: ports/134243: port mail/libdomainkeys doesn't build dktest Message-ID: <200905052000.n45K0K98096949@freefall.freebsd.org> Synopsis: port mail/libdomainkeys doesn't build dktest Responsible-Changed-From-To: freebsd-ports-bugs->skv Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 20:00:20 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134243 From rea-fbsd at codelabs.ru Tue May 5 21:10:04 2009 From: rea-fbsd at codelabs.ru (Eygene Ryabinkin) Date: Tue May 5 21:10:27 2009 Subject: ports/134245: [vuxml] net/wireshark: document security issues fixed in 1.0.7 Message-ID: <20090505195232.8D36A1725F@amnesiac.at.no.dns> >Number: 134245 >Category: ports >Synopsis: [vuxml] net/wireshark: document security issues fixed in 1.0.7 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue May 05 21:10:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Eygene Ryabinkin >Release: FreeBSD 8.0-CURRENT amd64 >Organization: Code Labs >Environment: System: FreeBSD 8.0-CURRENT amd64 >Description: 3 vulnerabilities (and one concerning Windows, but I'm not counting it here) were fixed in wireshark 1.0.7: [1], [2]. >How-To-Repeat: [1] http://www.wireshark.org/docs/relnotes/wireshark-1.0.7.html [2] http://www.wireshark.org/security/wnpa-sec-2009-02.html >Fix: Port was already updated, we're fine here. The following VuXML entry should be evaluated and added: --- vuln.xml begins here --- wireshark -- multiple vulnerabilities wireshark wireshark-lite 0.99.61.0.7

Wireshark team reports:

Wireshark 1.0.7 fixes the following vulnerabilities:

  • The PROFINET dissector was vulnerable to a format string overflow. (Bug 3382) Versions affected: 0.99.6 to 1.0.6, CVE-2009-1210.
  • The Check Point High-Availability Protocol (CPHAP) dissector could crash. (Bug 3269) Versions affected: 0.9.6 to 1.0.6; CVE-2009-1268.
  • Wireshark could crash while loading a Tektronix .rf5 file. (Bug 3366) Versions affected: 0.99.6 to 1.0.6, CVE-2009-1269.
CVE-2009-1210 CVE-2009-1268 CVE-2009-1269 34291 34457 http://www.wireshark.org/security/wnpa-sec-2009-02.html 2009-04-06 TODAY
--- vuln.xml ends here --- >Release-Note: >Audit-Trail: >Unformatted: From rea-fbsd at codelabs.ru Tue May 5 21:10:06 2009 From: rea-fbsd at codelabs.ru (Eygene Ryabinkin) Date: Tue May 5 21:10:28 2009 Subject: ports/134246: [patch] [vuxml] graphics/libwmf: document and fix two remote code execution vulnerabilities Message-ID: <20090505205242.0DBB617593@amnesiac.at.no.dns> >Number: 134246 >Category: ports >Synopsis: [patch] [vuxml] graphics/libwmf: document and fix two remote code execution vulnerabilities >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue May 05 21:10:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Eygene Ryabinkin >Release: FreeBSD 8.0-CURRENT amd64 >Organization: Code Labs >Environment: System: FreeBSD 8.0-CURRENT amd64 >Description: Two vulnerabilities (at least) are present in the current FreeBSD's port graphics/libwmf: [1], [2]. >How-To-Repeat: [1] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-1364 [2] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-3376 >Fix: The following patch fixes both vulnerabilites in the FreeBSD port: --- libwmf.diff begins here --- >From 1ac505a89ecb6276374b1c39dc52579368fb97b0 Mon Sep 17 00:00:00 2001 From: Eygene Ryabinkin Date: Wed, 6 May 2009 00:37:31 +0400 Patches were taken from Ubuntu's builds of libwmf, http://security.ubuntu.com/ubuntu/pool/main/libw/libwmf/libwmf_0.2.8.3-3.1ubuntu0.2.diff.gz Signed-off-by: Eygene Ryabinkin --- graphics/libwmf/Makefile | 2 +- graphics/libwmf/files/patch-cve-2006-3376 | 30 +++++++++++++++++++++++++++++ graphics/libwmf/files/patch-cve-2009-1364 | 14 +++++++++++++ 3 files changed, 45 insertions(+), 1 deletions(-) create mode 100644 graphics/libwmf/files/patch-cve-2006-3376 create mode 100644 graphics/libwmf/files/patch-cve-2009-1364 diff --git a/graphics/libwmf/Makefile b/graphics/libwmf/Makefile index 16f6774..3be48d0 100644 --- a/graphics/libwmf/Makefile +++ b/graphics/libwmf/Makefile @@ -7,7 +7,7 @@ PORTNAME= libwmf PORTVERSION= 0.2.8.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= wvware diff --git a/graphics/libwmf/files/patch-cve-2006-3376 b/graphics/libwmf/files/patch-cve-2006-3376 new file mode 100644 index 0000000..75c0b90 --- /dev/null +++ b/graphics/libwmf/files/patch-cve-2006-3376 @@ -0,0 +1,30 @@ +Fix for CVE-2006-3376. + +Obtained from: Ubuntu +--- src/player.c ++++ src/player.c +@@ -23,6 +23,7 @@ + + #include + #include ++#include + #include + #include + +@@ -132,8 +133,14 @@ + } + } + +-/* P->Parameters = (unsigned char*) wmf_malloc (API,(MAX_REC_SIZE(API)-3) * 2 * sizeof (unsigned char)); +- */ P->Parameters = (unsigned char*) wmf_malloc (API,(MAX_REC_SIZE(API) ) * 2 * sizeof (unsigned char)); ++ if (MAX_REC_SIZE(API) > UINT32_MAX / 2) ++ { ++ API->err = wmf_E_InsMem; ++ WMF_DEBUG (API,"bailing..."); ++ return (API->err); ++ } ++ ++ P->Parameters = (unsigned char*) wmf_malloc (API,(MAX_REC_SIZE(API) ) * 2 * sizeof (unsigned char)); + + if (ERR (API)) + { WMF_DEBUG (API,"bailing..."); diff --git a/graphics/libwmf/files/patch-cve-2009-1364 b/graphics/libwmf/files/patch-cve-2009-1364 new file mode 100644 index 0000000..dfce754 --- /dev/null +++ b/graphics/libwmf/files/patch-cve-2009-1364 @@ -0,0 +1,14 @@ +Patch for CVE-2009-1364 + +Obtained from: Ubuntu + +--- src/extra/gd/gd_clip.c ++++ src/extra/gd/gd_clip.c +@@ -70,6 +70,7 @@ + { more = gdRealloc (im->clip->list,(im->clip->max + 8) * sizeof (gdClipRectangle)); + if (more == 0) return; + im->clip->max += 8; ++ im->clip->list = more; + } + im->clip->list[im->clip->count] = (*rect); + im->clip->count++; -- 1.6.2.5 --- libwmf.diff ends here --- The following VuXML entries should be evaluated and added: --- vuln-1.xml begins here --- libwmf -- Denial of Service and possible remote code execution libwmf 0.2.8.4_3

SecurityFocus reports:

The 'libwmf' library is prone to a buffer-overflow vulnerability because the vector graphics linked library improperly allocates memory when parsing WMF image files.

Successfully exploiting this issue would allow an attacker to corrupt memory and execute arbitrary code in the context of the currently logged-in user.

34792 http://secunia.com/advisories/34901/ 2009-05-05 TODAY
--- vuln-1.xml ends here --- --- vuln-2.xml begins here --- libwmf -- heap overflow and arbitrary code execution libwmf 0.2.8.4_3

Secunia reports:

infamous41md has reported a vulnerability in libwmf, which potentially can be exploited by malicious people to compromise an application using the vulnerable library.

The vulnerability is caused due to an integer overflow error when allocating memory based on a value taken directly from a WMF file without performing any checks. This can be exploited to cause a heap-based buffer overflow when a specially crafted WMF file is processed.

Successful exploitation may allow execution of arbitrary code.

SecurityFocus additionally reports:

Failed exploit attempts will likely cause denial-of-service conditions.

CVE-2006-3376 18751 http://secunia.com/advisories/20921 2006-08-10 TODAY
--- vuln-2.xml ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 21:10:15 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 21:10:28 2009 Subject: ports/134245: [vuxml] net/wireshark: document security issues fixed in 1.0.7 Message-ID: <200905052110.n45LAFBQ090338@freefall.freebsd.org> Synopsis: [vuxml] net/wireshark: document security issues fixed in 1.0.7 Responsible-Changed-From-To: freebsd-ports-bugs->marcus Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 21:10:14 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134245 From edwin at FreeBSD.org Tue May 5 21:10:21 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 21:10:29 2009 Subject: ports/134246: [patch] [vuxml] graphics/libwmf: document and fix two remote code execution vulnerabilities Message-ID: <200905052110.n45LAKPZ091045@freefall.freebsd.org> Synopsis: [patch] [vuxml] graphics/libwmf: document and fix two remote code execution vulnerabilities Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 21:10:20 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134246 From rea-fbsd at codelabs.ru Tue May 5 22:00:08 2009 From: rea-fbsd at codelabs.ru (Eygene Ryabinkin) Date: Tue May 5 22:00:14 2009 Subject: ports/134247: [vuxml] print/cups-base: document vulnerabilities fixed in 1.3.10 Message-ID: <20090505214602.389341725F@amnesiac.at.no.dns> >Number: 134247 >Category: ports >Synopsis: [vuxml] print/cups-base: document vulnerabilities fixed in 1.3.10 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue May 05 22:00:06 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Eygene Ryabinkin >Release: FreeBSD 8.0-CURRENT amd64 >Organization: Code Labs >Environment: System: FreeBSD 8.0-CURRENT amd64 >Description: Some vulnerabilities were fixed in CUPS 1.3.10: [1] >How-To-Repeat: [1] http://www.gentoo.org/security/en/glsa/glsa-200904-20.xml >Fix: The following VuXML entry should be evaluated and added: --- vuln.xml begins here --- cups -- remote code execution and DNS rebinding cups-base 1.3.10

Gentoo security team summarizes:

The following issues were reported in CUPS:

  • iDefense reported an integer overflow in the _cupsImageReadTIFF() function in the "imagetops" filter, leading to a heap-based buffer overflow (CVE-2009-0163).
  • Aaron Siegel of Apple Product Security reported that the CUPS web interface does not verify the content of the "Host" HTTP header properly (CVE-2009-0164).
  • Braden Thomas and Drew Yao of Apple Product Security reported that CUPS is vulnerable to CVE-2009-0146, CVE-2009-0147 and CVE-2009-0166, found earlier in xpdf and poppler.

A remote attacker might send or entice a user to send a specially crafted print job to CUPS, possibly resulting in the execution of arbitrary code with the privileges of the configured CUPS user -- by default this is "lp", or a Denial of Service. Furthermore, the web interface could be used to conduct DNS rebinding attacks.

CVE-2009-0163 CVE-2009-0164 CVE-2009-0146 CVE-2009-0147 CVE-2009-0166 34571 34665 34568 http://www.cups.org/articles.php?L582 2009-05-05 TODAY
--- vuln.xml ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 22:00:21 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 22:00:27 2009 Subject: ports/134247: [vuxml] print/cups-base: document vulnerabilities fixed in 1.3.10 Message-ID: <200905052200.n45M0KqL057733@freefall.freebsd.org> Synopsis: [vuxml] print/cups-base: document vulnerabilities fixed in 1.3.10 Responsible-Changed-From-To: freebsd-ports-bugs->dinoex Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 22:00:19 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134247 From rea-fbsd at codelabs.ru Tue May 5 22:40:02 2009 From: rea-fbsd at codelabs.ru (Eygene Ryabinkin) Date: Tue May 5 22:40:08 2009 Subject: ports/134248: [vuxml] net/quagga: document fix for the DoS in 0.99.11_3 Message-ID: <20090505223841.B9B0E1725F@amnesiac.at.no.dns> >Number: 134248 >Category: ports >Synopsis: [vuxml] net/quagga: document fix for the DoS in 0.99.11_3 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue May 05 22:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Eygene Ryabinkin >Release: FreeBSD 8.0-CURRENT amd64 >Organization: Code Labs >Environment: System: FreeBSD 8.0-CURRENT amd64 >Description: PR ports/134108 fixed DoS in the case of multiple AS-4 numbers in an AS path, but vulnerability was not added to the VuXML database. >How-To-Repeat: http://www.securityfocus.com/bid/34817 >Fix: The following VuXML entry should be evaluated and added: --- vuln.xml begins here --- Quagga -- Denial of Service for multiple 4-byte AS numbers in an AS path quagga 0.99.11_3

Debian security team reports:

It was discovered that Quagga, an IP routing daemon, could no longer process the Internet routing table due to broken handling of multiple 4-byte AS numbers in an AS path. If such a prefix is received, the BGP daemon crashes with an assert failure, leading to a denial of service.

34817 http://lists.quagga.net/pipermail/quagga-dev/2009-April/006541.html http://www.securityfocus.com/archive/1/503220 2009-05-04 TODAY
--- vuln.xml ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Tue May 5 22:40:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Tue May 5 22:40:18 2009 Subject: ports/134248: [vuxml] net/quagga: document fix for the DoS in 0.99.11_3 Message-ID: <200905052240.n45MeBhp011918@freefall.freebsd.org> Synopsis: [vuxml] net/quagga: document fix for the DoS in 0.99.11_3 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Tue May 5 22:40:11 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134248 From jimmy at mammothcheese.ca Wed May 6 01:40:02 2009 From: jimmy at mammothcheese.ca (James Bailie) Date: Wed May 6 01:40:08 2009 Subject: ports/134252: Update Port: www/drood => 1.42 Message-ID: <20090506013217.C89D18FC12@mx1.freebsd.org> >Number: 134252 >Category: ports >Synopsis: Update Port: www/drood => 1.42 >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 May 06 01:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: James Bailie >Release: FreeBSD 7.2-PRERELEASE amd64 >Organization: >Environment: System: FreeBSD localhost 7.2-PRERELEASE FreeBSD 7.2-PRERELEASE #11: Tue May 5 16:38:14 EDT 2009 jbailie@localhost:/usr/obj/usr/src/sys/LOCAL amd64 >Description: >How-To-Repeat: >Fix: --- drood.diff begins here --- diff -ruN /usr/ports/www/drood/Makefile ./drood/Makefile --- /usr/ports/www/drood/Makefile 2009-05-03 09:29:26.000000000 -0400 +++ ./drood/Makefile 2009-05-05 16:20:13.000000000 -0400 @@ -6,7 +6,7 @@ # PORTNAME= drood -PORTVERSION= 1.41 +PORTVERSION= 1.42 CATEGORIES= www MASTER_SITES= http://www.mammothcheese.ca/ diff -ruN /usr/ports/www/drood/distinfo ./drood/distinfo --- /usr/ports/www/drood/distinfo 2009-05-03 09:29:26.000000000 -0400 +++ ./drood/distinfo 2009-05-05 21:24:10.000000000 -0400 @@ -1,3 +1,3 @@ -MD5 (drood-1.41.tar.gz) = c4b22239830a437527048bb75241499c -SHA256 (drood-1.41.tar.gz) = 62efbc849e9eaa91fda00b043322e534be0de73293f9d5f9731f9889524966de -SIZE (drood-1.41.tar.gz) = 39179 +MD5 (drood-1.42.tar.gz) = cc61ff7cd249f8a7bd331ab91ab950eb +SHA256 (drood-1.42.tar.gz) = 8d5c479edef5fa5dc5c60ad7f07ada43b17da146fe290dce1396524bc9e30912 +SIZE (drood-1.42.tar.gz) = 39603 diff -ruN /usr/ports/www/drood/pkg-descr ./drood/pkg-descr --- /usr/ports/www/drood/pkg-descr 2007-07-08 11:06:40.000000000 -0400 +++ ./drood/pkg-descr 2009-05-05 18:06:15.000000000 -0400 @@ -1,7 +1,9 @@ -Drood is a lightweight, kqueue-based, connection-multiplexing, HTTP/1.1 -server, intended as an alternative to larger, more complex web servers for -websites where the server requirements are simple. Drood supports -name-based virtual hosting. +Drood is a lightweight, partially-compliant HTTP/1.1 server, intended as an +alternative to more complex web servers for websites where the server +requirements are simple. Drood supports name-based virtual hosting, CGI +and SCGI, gzipped content-encoding for static resources, and will service +both IPv4 and IPv6 connections. The HEAD, GET, and POST request methods, +only, are recognized. WWW: http://www.mammothcheese.ca/munger.html --- drood.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed May 6 01:40:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 01:40:19 2009 Subject: ports/134252: Update Port: www/drood => 1.42 Message-ID: <200905060140.n461eBgk053965@freefall.freebsd.org> Synopsis: Update Port: www/drood => 1.42 Responsible-Changed-From-To: freebsd-ports-bugs->tabthorpe Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 6 01:40:11 UTC 2009 Responsible-Changed-Why: tabthorpe@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134252 From hideo at lastamericanempire.com Wed May 6 02:10:05 2009 From: hideo at lastamericanempire.com (hideo) Date: Wed May 6 02:10:11 2009 Subject: ports/134213: ports: mail/crm114 - new upstream version (patch) Message-ID: <200905060210.n462A4Ws091840@freefall.freebsd.org> The following reply was made to PR ports/134213; it has been noted by GNATS. From: hideo To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/134213: ports: mail/crm114 - new upstream version (patch) Date: Tue, 5 May 2009 20:00:29 -0600 Please transfer maintainership to submitter. Thank you! Zach From giffunip at tutopia.com Wed May 6 03:00:15 2009 From: giffunip at tutopia.com (Pedro F. Giffuni) Date: Wed May 6 03:00:21 2009 Subject: ports/134253: drop maintainance of my ports Message-ID: <200905060251.n462pjQu038899@www.freebsd.org> >Number: 134253 >Category: ports >Synopsis: drop maintainance of my ports >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 May 06 03:00:14 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Pedro F. Giffuni >Release: 7.2-RC2 >Organization: >Environment: non-relevant >Description: My current job has nothing to do with FreeBSD (or computers) so I want to drop my ports. I have been releasing most of them back to the ports list. Most of them don't give trouble but hopefully this will let someone else update them faster. Hopefully I will have less pressure in the near future so I will continue doing ports stuff for FreeBSD. >How-To-Repeat: >Fix: Please reset maintainership on these ports: devel/ptmalloc graphics/mesagl science/silo textproc/amberfish textproc/es-ispell textproc/it-ispell >Release-Note: >Audit-Trail: >Unformatted: From wenheping at gmail.com Wed May 6 03:40:03 2009 From: wenheping at gmail.com (Wen Heping) Date: Wed May 6 03:40:13 2009 Subject: ports/134254: [Maintainer Update]www/py-beaker:update to 1.3.1 Message-ID: <200905060337.n463blJl072360@www.freebsd.org> >Number: 134254 >Category: ports >Synopsis: [Maintainer Update]www/py-beaker:update to 1.3.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 May 06 03:40:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-Current >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Fri Apr 10 16:36:28 HKT 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/wen1 i386 >Description: update to 1.3.1 from 1.3 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-05-06 19:15:12.000000000 +0800 +++ Makefile 2009-05-06 19:15:38.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= beaker -PORTVERSION= 1.3 +PORTVERSION= 1.3.1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} --- distinfo.orig 2009-04-07 16:57:00.000000000 +0800 +++ distinfo 2009-05-06 19:15:48.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (Beaker-1.3.tar.gz) = b38afdc892460113609bf933284c75c5 -SHA256 (Beaker-1.3.tar.gz) = 3c30105ed31e111a7a5b275cb83694be6a8d23f2f3b869edf0b8e66b71beb029 -SIZE (Beaker-1.3.tar.gz) = 41493 +MD5 (Beaker-1.3.1.tar.gz) = bdc4237d68f1a0f9b853d202a2d16617 +SHA256 (Beaker-1.3.1.tar.gz) = 96b75a07a9fa34989ffce85970b4a563fbe46d6d368636d82cddcd85f5e4c66b +SIZE (Beaker-1.3.1.tar.gz) = 41543 >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed May 6 03:40:17 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 03:40:23 2009 Subject: ports/134254: [Maintainer Update]www/py-beaker:update to 1.3.1 Message-ID: <200905060340.n463eHcB015639@freefall.freebsd.org> Synopsis: [Maintainer Update]www/py-beaker:update to 1.3.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 6 03:40:16 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134254 From joey at mingrone.org Wed May 6 04:00:16 2009 From: joey at mingrone.org (Joey Mingrone) Date: Wed May 6 04:00:23 2009 Subject: ports/134255: This is a new port for parcellite, a lightweight GTK+ clipboard manager. Message-ID: <200905060357.n463vaQK093701@www.freebsd.org> >Number: 134255 >Category: ports >Synopsis: This is a new port for parcellite, a lightweight GTK+ clipboard manager. >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 May 06 04:00:14 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Joey Mingrone >Release: >Organization: >Environment: >Description: >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # /usr/ports/deskutils/parcellite # /usr/ports/deskutils/parcellite/Makefile # /usr/ports/deskutils/parcellite/pkg-descr # /usr/ports/deskutils/parcellite/pkg-plist # /usr/ports/deskutils/parcellite/distinfo # /usr/ports/deskutils/parcellite/files # /usr/ports/deskutils/parcellite/files/patch-po_Makefile.in.in # echo c - /usr/ports/deskutils/parcellite mkdir -p /usr/ports/deskutils/parcellite > /dev/null 2>&1 echo x - /usr/ports/deskutils/parcellite/Makefile sed 's/^X//' >/usr/ports/deskutils/parcellite/Makefile << '4b3b42a3bd0665ce557264dd59e685d0' X# New ports collection makefile for: parcellite X# Date created: 29 April 2009 X# Whom: Joey Mingrone X# X# $FreeBSD$ X# X XPORTNAME= parcellite XPORTVERSION= 0.9.1 XCATEGORIES= deskutils XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= parcellite X XMAINTAINER= joey@mingrone.org XCOMMENT= A lightweight GTK+ clipboard manager X XGNU_CONFIGURE= yes XUSE_GMAKE= yes XUSE_GNOME= gtk20 X X.if !defined(WITHOUT_NLS) XUSE_GETTEXT= yes XPLIST_SUB+= NLS="" X.else XCONFIGURE_ARGS+= --disable-nls XPLIST_SUB+= NLS="@comment " X.endif X XMAN1= parcellite.1 X X.include 4b3b42a3bd0665ce557264dd59e685d0 echo x - /usr/ports/deskutils/parcellite/pkg-descr sed 's/^X//' >/usr/ports/deskutils/parcellite/pkg-descr << 'd601a9bd7a5b0540398ab6715332a14d' XParcellite is a lightweight GTK+ clipboard manager. This is a stripped down, Xbasic-features-only clipboard manager with a small memory footprint for those Xwho like simplicity. X XWWW: http://parcellite.sourceforge.net d601a9bd7a5b0540398ab6715332a14d echo x - /usr/ports/deskutils/parcellite/pkg-plist sed 's/^X//' >/usr/ports/deskutils/parcellite/pkg-plist << 'db82b6db90a5f1ca164e6e89a076f703' Xbin/parcellite Xetc/xdg/autostart/parcellite-startup.desktop X%%NLS%%share/locale/de/LC_MESSAGES/parcellite.mo X%%NLS%%share/locale/es/LC_MESSAGES/parcellite.mo X%%NLS%%share/locale/hu/LC_MESSAGES/parcellite.mo X%%NLS%%share/locale/ja/LC_MESSAGES/parcellite.mo X%%NLS%%share/locale/pt_BR/LC_MESSAGES/parcellite.mo X%%NLS%%share/locale/sv/LC_MESSAGES/parcellite.mo Xshare/applications/parcellite.desktop X X@dirrmtry etc/xdg/autostart/ X@dirrmtry etc/xdg/ db82b6db90a5f1ca164e6e89a076f703 echo x - /usr/ports/deskutils/parcellite/distinfo sed 's/^X//' >/usr/ports/deskutils/parcellite/distinfo << '2c1918a703dd0f38d5a0ca5183defc44' XMD5 (parcellite-0.9.1.tar.gz) = 099d1ccc9fa1e59d3e3b19b77a90a8fb XSHA256 (parcellite-0.9.1.tar.gz) = 37a438bfc58f953acf327d72adcb6c6e7940c2794b27c451187ece6398486464 XSIZE (parcellite-0.9.1.tar.gz) = 260434 2c1918a703dd0f38d5a0ca5183defc44 echo c - /usr/ports/deskutils/parcellite/files mkdir -p /usr/ports/deskutils/parcellite/files > /dev/null 2>&1 echo x - /usr/ports/deskutils/parcellite/files/patch-po_Makefile.in.in sed 's/^X//' >/usr/ports/deskutils/parcellite/files/patch-po_Makefile.in.in << '334a59cc538c2025f5f365536fde3b25' X*** po/Makefile.in.in.orig Tue May 5 19:45:52 2009 X--- po/Makefile.in.in Tue May 5 19:46:58 2009 X*************** X*** 34,40 **** X datarootdir = @datarootdir@ X libdir = @libdir@ X DATADIRNAME = @DATADIRNAME@ X! itlocaledir = $(prefix)/$(DATADIRNAME)/locale X subdir = po X install_sh = @install_sh@ X # Automake >= 1.8 provides @mkdir_p@. X--- 34,40 ---- X datarootdir = @datarootdir@ X libdir = @libdir@ X DATADIRNAME = @DATADIRNAME@ X! itlocaledir = $(datarootdir)/locale X subdir = po X install_sh = @install_sh@ X # Automake >= 1.8 provides @mkdir_p@. 334a59cc538c2025f5f365536fde3b25 exit >Release-Note: >Audit-Trail: >Unformatted: From viper at perm.raid.ru Wed May 6 05:40:05 2009 From: viper at perm.raid.ru (Vladimir Korkodinov) Date: Wed May 6 05:40:16 2009 Subject: ports/134256: [FIX] net-im/mu-conference. Unbreak build with mysql Message-ID: <200905060539.n465dOLV072236@www.freebsd.org> >Number: 134256 >Category: ports >Synopsis: [FIX] net-im/mu-conference. Unbreak build with mysql >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed May 06 05:40:04 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Vladimir Korkodinov >Release: 6.4-RELEASE-p3 >Organization: >Environment: FreeBSD xxxxx 6.4-RELEASE-p3 FreeBSD 6.4-RELEASE-p3 #2: Mon Jan 19 17:35:46 YEKT 2009 root@xxxxx:/usr/obj/usr/src/sys/kernel i386 >Description: net-im/mu-conference 0.8 don`t build with mysql support cc -O2 -fno-strict-aliasing -pipe -march=pentium4 -I/usr/local/include -DHAVE_MYSQL -march=pentium4 -Wall -I../../lib -I../include `/usr/local/bin/pkg-config --cflags glib-2.0` -D_JCOMP -D_REENTRANT -DLIBIDN -o mu-conference libjcomp.a conference.o conference_room.o conference_user.o utils.o xdata.o admin.o roles.o xdb.o hash.o iq.o main.o mysql.o -L. -ljcomp -lm `/usr/local/bin/pkg-config --libs glib-2.0` `/usr/local/bin/pkg-config --libs gthread-2.0` -lexpat -lidn mysql.o(.text+0x46): In function `sql_mysql_connect': : undefined reference to `mysql_real_connect' mysql.o(.text+0xb2): In function `sql_mysql_init': : undefined reference to `mysql_init' mysql.o(.text+0x182): In function `sql_mysql_init': : undefined reference to `mysql_close' mysql.o(.text+0x1a6): In function `sql_mysql_close': : undefined reference to `mysql_close' mysql.o(.text+0x20f): In function `sql_mysql_execute': : undefined reference to `mysql_query' mysql.o(.text+0x226): In function `sql_mysql_execute': : undefined reference to `mysql_errno' mysql.o(.text+0x246): In function `sql_mysql_execute': : undefined reference to `mysql_error' mysql.o(.text+0x2da): In function `sql_mysql_execute': : undefined reference to `mysql_query' mysql.o(.text+0x364): In function `_sql_escape_string': : undefined reference to `mysql_real_escape_string' *** Error code 1 Stop in /usr/home/viper/ports/net-im/mu-conference.orig/work/mu-conference_0.8/src. *** Error code 1 Stop in /usr/home/viper/ports/net-im/mu-conference.orig/work/mu-conference_0.8. *** Error code 1 Stop in /usr/home/viper/ports/net-im/mu-conference.orig. *** Error code 1 Stop in /usr/home/viper/ports/net-im/mu-conference.orig. >How-To-Repeat: Try build with mysql support >Fix: Apply patch Patch attached with submission follows: diff -ruN mu-conference.orig/files/patch-src-Makefile mu-conference/files/patch-src-Makefile --- mu-conference.orig/files/patch-src-Makefile 1970-01-01 05:00:00.000000000 +0500 +++ mu-conference/files/patch-src-Makefile 2009-05-06 11:30:22.000000000 +0600 @@ -0,0 +1,13 @@ +--- src/Makefile.orig 2007-07-17 04:05:44.000000000 +0600 ++++ src/Makefile 2009-05-06 11:29:46.000000000 +0600 +@@ -1,8 +1,8 @@ + CC:=gcc + CFLAGS:=$(CFLAGS) -O2 -Wall -I../../lib -I../include `pkg-config --cflags glib-2.0` -D_JCOMP -D_REENTRANT -DLIBIDN + #CFLAGS:=$(CFLAGS) -O2 -Wall -I../../lib -I../include `pkg-config --cflags glib-2.0` -D_JCOMP -D_REENTRANT -DLIBIDN -DHAVE_MYSQL +-LIBS:=$(LIBS) -ljcomp -lm `pkg-config --libs glib-2.0` `pkg-config --libs gthread-2.0` -lexpat -lidn +-#LIBS:=$(LIBS) -ljcomp -lm `pkg-config --libs glib-2.0` `pkg-config --libs gthread-2.0` -lexpat -lidn `mysql_config --libs` ++#LIBS:=$(LIBS) -ljcomp -lm `pkg-config --libs glib-2.0` `pkg-config --libs gthread-2.0` -lexpat -lidn ++LIBS:=$(LIBS) -ljcomp -lm `pkg-config --libs glib-2.0` `pkg-config --libs gthread-2.0` -lexpat -lidn `mysql_config --libs` + LDFLAGS:=-L. + + # Debug/Experimental >Release-Note: >Audit-Trail: >Unformatted: From leeym at FreeBSD.org Wed May 6 06:13:32 2009 From: leeym at FreeBSD.org (leeym@FreeBSD.org) Date: Wed May 6 06:13:39 2009 Subject: ports/134253: drop maintainance of my ports Message-ID: <200905060613.n466DVlo032416@freefall.freebsd.org> Synopsis: drop maintainance of my ports State-Changed-From-To: open->closed State-Changed-By: leeym State-Changed-When: Wed May 6 06:13:12 UTC 2009 State-Changed-Why: Thanks for your past effort. http://www.freebsd.org/cgi/query-pr.cgi?pr=134253 From dfilter at FreeBSD.ORG Wed May 6 06:20:08 2009 From: dfilter at FreeBSD.ORG (dfilter service) Date: Wed May 6 06:20:15 2009 Subject: ports/134253: commit references a PR Message-ID: <200905060620.n466K8tr032958@freefall.freebsd.org> The following reply was made to PR ports/134253; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/134253: commit references a PR Date: Wed, 6 May 2009 06:13:24 +0000 (UTC) leeym 2009-05-06 06:13:09 UTC FreeBSD ports repository Modified files: devel/ptmalloc Makefile graphics/mesagl Makefile science/silo Makefile textproc/amberfish Makefile textproc/es-ispell Makefile textproc/it-ispell Makefile Log: - reset MAINTAINER per request PR: 134253 Submitted by: giffunip@tutopia.com Revision Changes Path 1.13 +1 -1 ports/devel/ptmalloc/Makefile 1.76 +1 -1 ports/graphics/mesagl/Makefile 1.10 +1 -1 ports/science/silo/Makefile 1.2 +1 -1 ports/textproc/amberfish/Makefile 1.2 +1 -1 ports/textproc/es-ispell/Makefile 1.2 +1 -1 ports/textproc/it-ispell/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From markun at onohara.to Wed May 6 06:30:06 2009 From: markun at onohara.to (TERAMOTO Masahiro) Date: Wed May 6 06:30:14 2009 Subject: ports/134257: [MAINTAINER] japanese/p5-WWW-MobileCarrierJP: update to 0.32 Message-ID: <20090506062239.1065A2845B@gate.onohara.to> >Number: 134257 >Category: ports >Synopsis: [MAINTAINER] japanese/p5-WWW-MobileCarrierJP: update to 0.32 >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 May 06 06:30:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: TERAMOTO Masahiro >Release: FreeBSD 6.4-RELEASE-p1 i386 >Organization: >Environment: System: FreeBSD gate.onohara.to 6.4-RELEASE-p1 FreeBSD 6.4-RELEASE-p1 #0: Sun Dec 21 07:56:41 UTC 2008 >Description: - Update to 0.32 - Fix PKGNAMEPREFIX - Add dependency for p5-Moose Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- p5-WWW-MobileCarrierJP-0.32.patch begins here --- diff -ruN --exclude=CVS /usr/ports/japanese/p5-WWW-MobileCarrierJP/Makefile /home/markun/work/ports/p5-WWW-MobileCarrierJP/Makefile --- /usr/ports/japanese/p5-WWW-MobileCarrierJP/Makefile 2009-04-27 08:47:58.000000000 +0900 +++ /home/markun/work/ports/p5-WWW-MobileCarrierJP/Makefile 2009-05-06 15:20:11.000000000 +0900 @@ -6,16 +6,17 @@ # PORTNAME= WWW-MobileCarrierJP -PORTVERSION= 0.31 +PORTVERSION= 0.32 CATEGORIES= japanese www perl5 MASTER_SITES= CPAN MAINTAINER= markun@onohara.to COMMENT= Scrape Japanese mobile carrier information -BUILD_DEPENDS= p5-Filter>=0:${PORTSDIR}/devel/p5-Filter \ - p5-HTML-Selector-XPath>=0:${PORTSDIR}/www/p5-HTML-Selector-XPath \ - p5-Web-Scraper>=0:${PORTSDIR}/www/p5-Web-Scraper \ +BUILD_DEPENDS= p5-Moose>=0.60:${PORTSDIR}/devel/p5-Moose \ + p5-Filter>=0:${PORTSDIR}/devel/p5-Filter \ + p5-HTML-Selector-XPath>=0.03:${PORTSDIR}/www/p5-HTML-Selector-XPath \ + p5-Web-Scraper>=0.24:${PORTSDIR}/www/p5-Web-Scraper \ p5-CAM-PDF>=0:${PORTSDIR}/textproc/p5-CAM-PDF PERL_CONFIGURE= yes @@ -38,4 +39,8 @@ WWW::MobileCarrierJP::DoCoMo::HTMLVersion.3 \ WWW::MobileCarrierJP.3 -.include +.include + +PKGNAMEPREFIX:= ${PKGNAMEPREFIX}p5- + +.include diff -ruN --exclude=CVS /usr/ports/japanese/p5-WWW-MobileCarrierJP/distinfo /home/markun/work/ports/p5-WWW-MobileCarrierJP/distinfo --- /usr/ports/japanese/p5-WWW-MobileCarrierJP/distinfo 2009-04-27 08:47:58.000000000 +0900 +++ /home/markun/work/ports/p5-WWW-MobileCarrierJP/distinfo 2009-05-06 15:20:11.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (WWW-MobileCarrierJP-0.31.tar.gz) = 309c3044cd98d4f058daad3323ae5bce -SHA256 (WWW-MobileCarrierJP-0.31.tar.gz) = 738c4379c7d2d72c089375221bb6fe252e06d3060c6306fe16178b4f928aa16b -SIZE (WWW-MobileCarrierJP-0.31.tar.gz) = 57046 +MD5 (WWW-MobileCarrierJP-0.32.tar.gz) = 52d6b09f6ec5a32334c6ce28a5983473 +SHA256 (WWW-MobileCarrierJP-0.32.tar.gz) = af347deaac2c2738f0b7f1b987d3f01d30aa844fae658719e957da32c8250ae4 +SIZE (WWW-MobileCarrierJP-0.32.tar.gz) = 57725 --- p5-WWW-MobileCarrierJP-0.32.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From jun-g at daemonfreaks.com Wed May 6 07:20:01 2009 From: jun-g at daemonfreaks.com (Junji NAKANISHI) Date: Wed May 6 07:20:07 2009 Subject: ports/134259: [maintainer] www/py-amf update to 0.4.2 Message-ID: <1241593899.9097@blackmagic.daemonfreaks.local> >Number: 134259 >Category: ports >Synopsis: [maintainer] www/py-amf update to 0.4.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: Wed May 06 07:20:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Junji NAKANISHI >Release: FreeBSD 7.2-PRERELEASE i386 >Organization: >Environment: System: FreeBSD 7.2-PRERELEASE #0: Fri Mar 20 06:09:42 JST 2009 root@blackmagic.daemonfreaks.local:/usr/obj/usr/src/sys/GENERIC >Description: Update to 0.4.2. >How-To-Repeat: >Fix: --- py-amf.patch begins here --- diff -durN py-amf.orig/Makefile py-amf/Makefile --- py-amf.orig/Makefile 2009-05-06 15:31:58.000000000 +0900 +++ py-amf/Makefile 2009-05-06 15:32:07.000000000 +0900 @@ -5,7 +5,7 @@ # $FreeBSD: ports/www/py-amf/Makefile,v 1.3 2009/03/01 15:27:28 miwi Exp $ PORTNAME= amf -PORTVERSION= 0.4.1 +PORTVERSION= 0.4.2 CATEGORIES= www devel python MASTER_SITES= http://download.pyamf.org/releases/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff -durN py-amf.orig/distinfo py-amf/distinfo --- py-amf.orig/distinfo 2009-05-06 15:31:58.000000000 +0900 +++ py-amf/distinfo 2009-05-06 15:32:18.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (PyAMF-0.4.1.tar.gz) = 156f7bdd1686748ffab81a1275dddef9 -SHA256 (PyAMF-0.4.1.tar.gz) = 4aaa91cf8f27af3617d7a5bdc6f613a9e0d0c0aade68bee34190ef1e2e5a948f -SIZE (PyAMF-0.4.1.tar.gz) = 1788854 +MD5 (PyAMF-0.4.2.tar.gz) = a3a682545eb46d94b1a9243eb046c194 +SHA256 (PyAMF-0.4.2.tar.gz) = 0632869061354a8274ae8605aee5c3b2be59f8e95c6806fe1dee02c1f4e5b94d +SIZE (PyAMF-0.4.2.tar.gz) = 1798947 diff -durN py-amf.orig/pkg-plist py-amf/pkg-plist --- py-amf.orig/pkg-plist 2009-05-06 15:31:58.000000000 +0900 +++ py-amf/pkg-plist 2009-05-06 16:07:05.000000000 +0900 @@ -47,6 +47,8 @@ %%PORTDOCS%%%%DOCSDIR%%/api/pyamf.adapters._django_db_models_fields-pysrc.html %%PORTDOCS%%%%DOCSDIR%%/api/pyamf.adapters._django_db_models_query-module.html %%PORTDOCS%%%%DOCSDIR%%/api/pyamf.adapters._django_db_models_query-pysrc.html +%%PORTDOCS%%%%DOCSDIR%%/api/pyamf.adapters._django_utils_translation-module.html +%%PORTDOCS%%%%DOCSDIR%%/api/pyamf.adapters._django_utils_translation-pysrc.html %%PORTDOCS%%%%DOCSDIR%%/api/pyamf.adapters._google_appengine_ext_db-module.html %%PORTDOCS%%%%DOCSDIR%%/api/pyamf.adapters._google_appengine_ext_db-pysrc.html %%PORTDOCS%%%%DOCSDIR%%/api/pyamf.adapters._google_appengine_ext_db.DataStoreClassAlias-class.html @@ -172,6 +174,7 @@ %%PORTDOCS%%%%DOCSDIR%%/api/toc-pyamf.adapters._django_db_models_base-module.html %%PORTDOCS%%%%DOCSDIR%%/api/toc-pyamf.adapters._django_db_models_fields-module.html %%PORTDOCS%%%%DOCSDIR%%/api/toc-pyamf.adapters._django_db_models_query-module.html +%%PORTDOCS%%%%DOCSDIR%%/api/toc-pyamf.adapters._django_utils_translation-module.html %%PORTDOCS%%%%DOCSDIR%%/api/toc-pyamf.adapters._google_appengine_ext_db-module.html %%PORTDOCS%%%%DOCSDIR%%/api/toc-pyamf.adapters._sets-module.html %%PORTDOCS%%%%DOCSDIR%%/api/toc-pyamf.adapters._sqlalchemy-module.html --- py-amf.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed May 6 07:20:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 07:20:23 2009 Subject: ports/134259: [maintainer] www/py-amf update to 0.4.2 Message-ID: <200905060720.n467KB5e019721@freefall.freebsd.org> Synopsis: [maintainer] www/py-amf update to 0.4.2 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 6 07:20:10 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134259 From utisoft at gmail.com Wed May 6 08:20:04 2009 From: utisoft at gmail.com (Chris Rees) Date: Wed May 6 08:20:16 2009 Subject: ports/134260: Request ownership of ports/mail/qgmailnotifier Message-ID: <200905060732.n467WqZo074274@amnesiac.bayofrum.net> >Number: 134260 >Category: ports >Synopsis: Request ownership of ports/mail/qgmailnotifier >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 May 06 08:20:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Chris Rees >Release: FreeBSD 7.2-RELEASE i386 >Organization: bayofrum.net >Environment: System: FreeBSD amnesiac.bayofrum.net 7.2-RELEASE FreeBSD 7.2-RELEASE #1: Sun May 3 21:54:38 BST 2009 root@amnesiac.bayofrum.net:/usr/obj/usr/src/sys/AMNESIAC i386 >Description: Owner no longer wants responsibility >How-To-Repeat: http://groups.google.com/group/mailing.freebsd.ports/browse_thread/thread/f0fb81ac4974eefb# >Fix: Please transfer ownership to me. Hope this is the right way to do it! Thanks Chris >Release-Note: >Audit-Trail: >Unformatted: From wenheping at gmail.com Wed May 6 08:20:05 2009 From: wenheping at gmail.com (Wen Heping) Date: Wed May 6 08:20:16 2009 Subject: ports/134261: [Maintainer Update]devel/py-mwlib:update to 0.11.1 Message-ID: <200905060813.n468D4SV023057@www.freebsd.org> >Number: 134261 >Category: ports >Synopsis: [Maintainer Update]devel/py-mwlib:update to 0.11.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 May 06 08:20:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-Current >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Fri Apr 10 16:36:28 HKT 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/wen1 i386 >Description: update to 0.11.1 from 0.10.1 >How-To-Repeat: >Fix: Patch attached with submission follows: --- Makefile.orig 2009-05-06 04:32:12.000000000 +0800 +++ Makefile 2009-05-06 18:39:50.000000000 +0800 @@ -6,7 +6,7 @@ # PORTNAME= mwlib -PORTVERSION= 0.10.1 +PORTVERSION= 0.11.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,14 +19,17 @@ ${PYTHON_PKGNAMEPREFIX}simplejson>2.0.8:${PORTSDIR}/devel/py-simplejson \ ${PYTHON_PKGNAMEPREFIX}flup>=1.0:${PORTSDIR}/www/py-flup \ ${PYTHON_PKGNAMEPREFIX}dateutil>=1.4.1:${PORTSDIR}/devel/py-dateutil \ - ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging + ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging \ + ${PYTHON_PKGNAMEPREFIX}twisted>=8.2.0:${PORTSDIR}/devel/py-twisted USE_PYTHON= 2.5+ USE_PYDISTUTILS= easy_install PYEASYINSTALL_ARCHDEP= yes post-patch: - ${REINPLACE_CMD} -e 's|odfpy==0.7.0|odfpy>=0.7.0|' \ + ${REINPLACE_CMD} \ + -e 's|odfpy==0.7.0|odfpy>=0.7.0|' \ + -e 's|, "twisted>=8.2"||' \ ${WRKSRC}/setup.py .include --- distinfo.orig 2009-04-29 16:21:11.000000000 +0800 +++ distinfo 2009-05-06 04:32:38.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (mwlib-0.10.1.tar.gz) = 72c6463f6893d941474cba68069b1c34 -SHA256 (mwlib-0.10.1.tar.gz) = f6bb38d62cafd7ea768a1e2e9b3ff4c18a9e2a93610e2e94a07656fe8680370d -SIZE (mwlib-0.10.1.tar.gz) = 481407 +MD5 (mwlib-0.11.1.tar.gz) = 3425c048134cf96e198141462942edfd +SHA256 (mwlib-0.11.1.tar.gz) = 569a3ec8fa4ed6347bcc9aef1963cc2ce3c4f7f39ab4a2d3efbf17405746e512 +SIZE (mwlib-0.11.1.tar.gz) = 511620 --- pkg-plist.orig 2009-05-06 04:32:07.000000000 +0800 +++ pkg-plist 2009-05-06 18:29:42.000000000 +0800 @@ -38,9 +38,18 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/allnodes.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/allnodes.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/allnodes.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps/__init__.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps/__init__.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps/__init__.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps/buildzip.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps/buildzip.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps/buildzip.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps/render.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps/render.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps/render.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/authors.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/authors.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/authors.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/bookshelf.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/bookshelf.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/bookshelf.pyo @@ -135,6 +144,15 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/netdb.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/netdb.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/netdb.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/nshandling.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/nshandling.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/nshandling.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/nuwiki.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/nuwiki.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/nuwiki.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/twisted_api.py +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/twisted_api.pyc +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/twisted_api.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/odfconf.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/odfconf.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/odfconf.pyo @@ -150,9 +168,6 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/options.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/options.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/options.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/overlay.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/overlay.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/overlay.pyo %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/parser/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/parser/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/parser/__init__.pyo @@ -207,12 +222,9 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/__init__.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/__init__.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/__init__.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/_registry.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/_registry.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/_registry.pyo -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/siteinfo_en.py -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/siteinfo_en.pyc -%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/siteinfo_en.pyo +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/siteinfo-de.json +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/siteinfo-en.json +%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/siteinfo/siteinfo-ja.json %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/snippets.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/snippets.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/snippets.pyo @@ -338,6 +350,7 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/zipwiki.py %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/zipwiki.pyc %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/zipwiki.pyo +@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/apps @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/parser @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/refine/ @dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/resources >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed May 6 08:20:17 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 08:20:23 2009 Subject: ports/134260: Request ownership of ports/mail/qgmailnotifier Message-ID: <200905060820.n468KGHs027896@freefall.freebsd.org> Synopsis: Request ownership of ports/mail/qgmailnotifier Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 6 08:20:15 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134260 From edwin at FreeBSD.org Wed May 6 08:20:25 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 08:20:32 2009 Subject: ports/134261: [Maintainer Update]devel/py-mwlib:update to 0.11.1 Message-ID: <200905060820.n468KOhJ028639@freefall.freebsd.org> Synopsis: [Maintainer Update]devel/py-mwlib:update to 0.11.1 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 6 08:20:23 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134261 From miwi at FreeBSD.org Wed May 6 08:34:18 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Wed May 6 08:34:31 2009 Subject: ports/134255: [new port] deskutils/parcellite, a lightweight GTK+ clipboard manager. Message-ID: <200905060834.n468YHmv055668@freefall.freebsd.org> Synopsis: [new port] deskutils/parcellite, a lightweight GTK+ clipboard manager. Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed May 6 08:34:17 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134255 From miwi at FreeBSD.org Wed May 6 08:34:20 2009 From: miwi at FreeBSD.org (miwi@FreeBSD.org) Date: Wed May 6 08:34:31 2009 Subject: ports/134257: [MAINTAINER] japanese/p5-WWW-MobileCarrierJP: update to 0.32 Message-ID: <200905060834.n468YKw5055734@freefall.freebsd.org> Synopsis: [MAINTAINER] japanese/p5-WWW-MobileCarrierJP: update to 0.32 Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: miwi Responsible-Changed-When: Wed May 6 08:34:19 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134257 From wenheping at gmail.com Wed May 6 08:50:03 2009 From: wenheping at gmail.com (Wen Heping) Date: Wed May 6 08:50:16 2009 Subject: ports/134262: [NEW PORTS]devel/py-mwlib.rl:Generate Pdfs from Mediawiki Markup Message-ID: <200905060848.n468mBjZ047602@www.freebsd.org> >Number: 134262 >Category: ports >Synopsis: [NEW PORTS]devel/py-mwlib.rl:Generate Pdfs from Mediawiki Markup >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 May 06 08:50:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Wen Heping >Release: FreeBSD 8.0-Current >Organization: ChangAn Middle School >Environment: FreeBSD fb8.wenjing.com 8.0-CURRENT FreeBSD 8.0-CURRENT #4: Fri Apr 10 16:36:28 HKT 2009 root@fb8.wenjing.com:/usr/obj/usr/src/sys/wen1 i386 >Description: py-mwlib.rl provides a library for writing pdf documents from mediawiki articles which were parsed by the mwlib library. WWW: http://pypi.python.org/pypi/mwlib.rl/ >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-mwlib.rl # py-mwlib.rl/distinfo # py-mwlib.rl/pkg-plist # py-mwlib.rl/pkg-descr # py-mwlib.rl/Makefile # echo c - py-mwlib.rl mkdir -p py-mwlib.rl > /dev/null 2>&1 echo x - py-mwlib.rl/distinfo sed 's/^X//' >py-mwlib.rl/distinfo << '5f395d9f97d3672cd7e26c57c60e678b' XMD5 (mwlib.rl-0.11.1.tar.gz) = 540eb4ff11442eec3d605c4124649bd5 XSHA256 (mwlib.rl-0.11.1.tar.gz) = 1b7bb5d91e1e337c859f74c76c72de5e71cb37c587d79e581db804f05a3770b0 XSIZE (mwlib.rl-0.11.1.tar.gz) = 3216042 5f395d9f97d3672cd7e26c57c60e678b echo x - py-mwlib.rl/pkg-plist sed 's/^X//' >py-mwlib.rl/pkg-plist << '9380bb443b341946c88e3be36dd6af8d' X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/PKG-INFO X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/SOURCES.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/dependency_links.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/entry_points.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/namespace_packages.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/not-zip-safe X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/requires.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO/top_level.txt X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/__init__.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/__init__.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/__init__.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSans-Bold.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSans-BoldOblique.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSans-Oblique.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSans.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSansMono-Bold.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSansMono-BoldOblique.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSansMono-Oblique.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSansMono.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSerif-Bold.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSerif-BoldItalic.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSerif-Italic.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu/DejaVuSerif.ttf X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/__init__.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/__init__.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/__init__.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/__init__.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/__init__.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/__init__.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/_version.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/_version.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/_version.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/create_collection.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/create_collection.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/create_collection.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/customflowables.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/customflowables.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/customflowables.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/debughelper.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/debughelper.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/debughelper.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/fontconfig.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/fontconfig.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/fontconfig.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/af/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/af/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/arz/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/arz/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/el/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/el/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/gsw/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/gsw/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ia/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ia/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pt_BR/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pt_BR/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sl/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sl/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/su/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/su/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sv/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sv/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/te/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/te/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/vi/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/vi/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/de/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/de/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/en/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/en/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/fr/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/fr/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/hu/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/hu/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/it/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/it/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pl/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pl/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pt/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pt/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ar/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ar/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/bg/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/bg/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/br/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/br/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/bs/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/bs/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/dsb/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/dsb/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/eo/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/eo/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/es/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/es/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/eu/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/eu/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/fi/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/fi/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/gl/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/gl/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/he/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/he/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/hsb/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/hsb/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ja/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ja/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/km/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/km/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ko/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ko/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ksh/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ksh/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/lb/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/lb/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/nl/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/nl/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/nn/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/nn/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/oc/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/oc/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/qqq/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/qqq/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ru/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ru/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sk/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sk/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/tl/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/tl/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/tr/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/tr/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/uk/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/uk/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/vo/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/vo/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/zh-hans/LC_MESSAGES/mwlib.rl.mo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/zh-hans/LC_MESSAGES/mwlib.rl.po X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/toc.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/toc.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/toc.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/pdfmessages.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/pdfmessages.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/pdfmessages.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/pagetemplates.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/pagetemplates.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/pagetemplates.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/pdfstyles.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/pdfstyles.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/pdfstyles.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/rlsourceformatter.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/rlsourceformatter.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/rlsourceformatter.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/rltables.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/rltables.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/rltables.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/rlwriter.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/rlwriter.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/rlwriter.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/wikipedia_logo.png X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/__init__.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/__init__.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/__init__.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/renderhelper.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/renderhelper.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/renderhelper.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/test_advanced.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/test_advanced.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/test_advanced.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/test_basicnodes.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/test_basicnodes.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/test_basicnodes.pyo X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/test_snippets.py X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/test_snippets.pyc X%%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests/test_snippets.pyo X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/EGG-INFO X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts/ttf-dejavu X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/fonts X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/af/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/af X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/arz/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/arz X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/el/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/el X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/gsw/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/gsw X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ia/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ia X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pt_BR/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pt_BR X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sl/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sl X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/su/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/su X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sv/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sv X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/te/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/te X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/vi/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/vi X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/de/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/de X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/en/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/en X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/fr/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/fr X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/hu/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/hu X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/it/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/it X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pl/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pl X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pt/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/pt X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ar/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ar X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/bg/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/bg X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/br/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/br X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/bs/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/bs X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/dsb/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/dsb X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/eo/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/eo X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/es/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/es X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/eu/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/eu X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/fi/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/fi X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/gl/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/gl X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/he/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/he X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/hsb/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/hsb X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ja/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ja X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/km/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/km X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ko/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ko X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ksh/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ksh X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/lb/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/lb X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/nl/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/nl X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/nn/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/nn X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/oc/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/oc X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/qqq/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/qqq X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ru/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/ru X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sk/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/sk X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/tl/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/tl X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/tr/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/tr X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/uk/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/uk X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/vo/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/vo X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/zh-hans/LC_MESSAGES X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale/zh-hans X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl/locale X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/rl X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib/tests X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/mwlib X@dirrm %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%%/ 9380bb443b341946c88e3be36dd6af8d echo x - py-mwlib.rl/pkg-descr sed 's/^X//' >py-mwlib.rl/pkg-descr << 'af321d300cbfbb26094acffb72547514' Xpy-mwlib.rl provides a library for writing pdf documents from mediawiki Xarticles which were parsed by the mwlib library. X XWWW: http://pypi.python.org/pypi/mwlib.rl/ af321d300cbfbb26094acffb72547514 echo x - py-mwlib.rl/Makefile sed 's/^X//' >py-mwlib.rl/Makefile << 'ad9e62ad8a6aba365adb56ccbb33a060' X# New ports collection makefile for: mwlib.rl X# Date created: 06 May, 2009 X# Whom: Wen Heping X# X# $FreeBSD$ X# X XPORTNAME= mwlib.rl XPORTVERSION= 0.11.1 XCATEGORIES= devel python XMASTER_SITES= CHEESESHOP XPKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} X XMAINTAINER= wenheping@gmail.com XCOMMENT= Generate Pdfs from Mediawiki Markup X XBUILD_DEPENDS= ${LOCALBASE}/bin/texvc:${PORTSDIR}/print/texvc \ X ${LOCALBASE}/bin/fribidi:${PORTSDIR}/converters/fribidi \ X ${PYTHON_PKGNAMEPREFIX}mwlib>=0.11.1:${PORTSDIR}/devel/py-mwlib \ X ${PYTHON_PKGNAMEPREFIX}mwlib.ext>=0.9.3:${PORTSDIR}/devel/py-mwlib.ext \ X ${PYTHON_PKGNAMEPREFIX}pygments>=1.0:${PORTSDIR}/textproc/py-pygments XRUN_DEPENDS= ${BUILD_DEPENDS} X XUSE_GETTEXT= yes XUSE_PYTHON= 2.5+ XUSE_PYDISTUTILS= easy_install X X.include ad9e62ad8a6aba365adb56ccbb33a060 exit >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed May 6 08:50:20 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 08:50:29 2009 Subject: ports/134262: [NEW PORTS]devel/py-mwlib.rl:Generate Pdfs from Mediawiki Markup Message-ID: <200905060850.n468oKHJ070580@freefall.freebsd.org> Synopsis: [NEW PORTS]devel/py-mwlib.rl:Generate Pdfs from Mediawiki Markup Responsible-Changed-From-To: freebsd-ports-bugs->miwi Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 6 08:50:19 UTC 2009 Responsible-Changed-Why: miwi@ wants his PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134262 From takefu at airport.fm Wed May 6 09:00:15 2009 From: takefu at airport.fm (Takefu Kenji) Date: Wed May 6 09:00:26 2009 Subject: ports/134263: munin-node failure in some Message-ID: <200905060856.n468u96f058746@www.freebsd.org> >Number: 134263 >Category: ports >Synopsis: munin-node failure in some >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 May 06 09:00:14 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Takefu Kenji >Release: >Organization: FOX Amateur Radio Club >Environment: >Description: defects occur in hddtemp_smartctl plugin cron (8) e-mail sent to the administrator of the following warnings to be counted. > (process:3286): Pango-WARNING **: Invalid UTF-8 string passed to pango_layout_set_text() munin-node, the following error logs. > hdparm: not found > hdparm: not found defects occur in bind9 plugin view statement does not correctly reflect the results under the circumstances. defects occur in postfix_mailstats plugin newsyslog(8) for gzip and bzip archives in correctly and not the aggregate by the compression. >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From lupe at lupe-christoph.de Wed May 6 09:40:05 2009 From: lupe at lupe-christoph.de (Lupe Christoph) Date: Wed May 6 09:40:11 2009 Subject: ports/134263: munin-node failure in some Message-ID: <200905060940.n469e4dR036331@freefall.freebsd.org> The following reply was made to PR ports/134263; it has been noted by GNATS. From: Lupe Christoph To: Takefu Kenji Cc: freebsd-gnats-submit@freebsd.org, munin-users@lists.sourceforge.net Subject: Re: ports/134263: munin-node failure in some Date: Wed, 6 May 2009 11:25:02 +0200 On Wednesday, 2009-05-06 at 08:56:09 +0000, Takefu Kenji wrote: Since I did the original port and am still involved with Munin, let me pitch in. > >Description: > defects occur in hddtemp_smartctl plugin > cron (8) e-mail sent to the administrator of the following warnings to be counted. > > (process:3286): Pango-WARNING **: Invalid UTF-8 string passed to pango_layout_set_text() This is completely unrelated to munin-node. > munin-node, the following error logs. > > hdparm: not found > > hdparm: not found A Linuxism crept in. We try to find out which disks are spun down with hdparm -C. That made the plugin non-portable. I have just sent a mail to the freebsd-ports list asking for a replacement. > defects occur in bind9 plugin > view statement does not correctly reflect the results under the circumstances. I do not understand you. The plugin does not contain the word "view". Which results? Which circumstances? > defects occur in postfix_mailstats plugin > newsyslog(8) for gzip and bzip archives in correctly and not the aggregate by the compression. Neither the plugin nor (AFAIK) postfix care about compression in mails. Again, you have to provide details. Thank you for your PR, Lupe Christoph -- | There is no substitute for bad design except worse design. | | /me | From flz at FreeBSD.org Wed May 6 10:12:18 2009 From: flz at FreeBSD.org (flz@FreeBSD.org) Date: Wed May 6 10:12:33 2009 Subject: ports/133501: [patch] pthread_atfork breaks net/nss_ldap on RELENG_7 Message-ID: <200905061012.n46ACIgf087798@freefall.freebsd.org> Synopsis: [patch] pthread_atfork breaks net/nss_ldap on RELENG_7 State-Changed-From-To: open->closed State-Changed-By: flz State-Changed-When: Wed May 6 10:12:17 UTC 2009 State-Changed-Why: Committed. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=133501 From dfilter at FreeBSD.ORG Wed May 6 10:20:05 2009 From: dfilter at FreeBSD.ORG (dfilter service) Date: Wed May 6 10:20:11 2009 Subject: ports/133501: commit references a PR Message-ID: <200905061020.n46AK4DZ089009@freefall.freebsd.org> The following reply was made to PR ports/133501; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/133501: commit references a PR Date: Wed, 6 May 2009 10:10:14 +0000 (UTC) flz 2009-05-06 10:09:55 UTC FreeBSD ports repository Modified files: net/nss_ldap Makefile net/nss_ldap/files patch-configure.in Log: Disable pthread_atfork detection. This fixes login issues on FreeBSD 7.2-RELEASE and possibly previous versions. PR: ports/133501 Submitted by: Benjamin Lee Approved by: maintainer timeout (4 weeks) Revision Changes Path 1.28 +1 -1 ports/net/nss_ldap/Makefile 1.2 +8 -0 ports/net/nss_ldap/files/patch-configure.in _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From bsam at FreeBSD.org Wed May 6 12:20:06 2009 From: bsam at FreeBSD.org (Boris Samorodov) Date: Wed May 6 12:20:12 2009 Subject: ports/134265: [repocopy] linux-f8 -> linux-f10 ports Message-ID: <200905061218.n46CIOag005772@bb.ipt.ru> >Number: 134265 >Category: ports >Synopsis: [repocopy] linux-f8 -> linux-f10 ports >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 May 06 12:20:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Boris Samorodov >Release: FreeBSD 8.0-CURRENT i386 >Organization: InPharmTech, Co. >Environment: System: FreeBSD bb.ipt.ru 8.0-CURRENT FreeBSD 8.0-CURRENT #0: Wed May 6 15:19:22 MSD 2009 root@bb.ipt.ru:/usr/obj/usr/src/sys/BB i386 >Description: Please, do repocopies of linux-f8 ports to linux-f10 ones and assign the PR back to me. Thanks! >How-To-Repeat: >Fix: --- pr.dirs begins here --- accessibility/linux-f8-atk -> accessibility/linux-f10-atk archivers/linux-f8-ucl -> archivers/linux-f10-ucl archivers/linux-f8-upx -> archivers/linux-f10-upx audio/linux-f8-alsa-lib -> audio/linux-f10-alsa-lib audio/linux-f8-arts -> audio/linux-f10-arts audio/linux-f8-esound -> audio/linux-f10-esound audio/linux-f8-freealut -> audio/linux-f10-freealut audio/linux-f8-libaudiofile -> audio/linux-f10-libaudiofile audio/linux-f8-libogg -> audio/linux-f10-libogg audio/linux-f8-libvorbis -> audio/linux-f10-libvorbis audio/linux-f8-openal -> audio/linux-f10-openal audio/linux-f8-sdl_mixer -> audio/linux-f10-sdl_mixer databases/linux-f8-sqlite3 -> databases/linux-f10-sqlite3 devel/linux-f8-allegro -> devel/linux-f10-allegro devel/linux-f8-libglade -> devel/linux-f10-libglade devel/linux-f8-libglade2 -> devel/linux-f10-libglade2 devel/linux-f8-libsigc++20 -> devel/linux-f10-libsigc++20 devel/linux-f8-nspr -> devel/linux-f10-nspr devel/linux-f8-sdl12 -> devel/linux-f10-sdl12 emulators/linux_base-f10 -> emulators/linux_base-f10 ftp/linux-f8-curl -> ftp/linux-f10-curl graphics/linux-f8-cairo -> graphics/linux-f10-cairo graphics/linux-f8-dri -> graphics/linux-f10-dri graphics/linux-f8-gdk-pixbuf -> graphics/linux-f10-gdk-pixbuf graphics/linux-f8-imlib -> graphics/linux-f10-imlib graphics/linux-f8-jpeg -> graphics/linux-f10-jpeg graphics/linux-f8-libmng -> graphics/linux-f10-libmng graphics/linux-f8-png -> graphics/linux-f10-png graphics/linux-f8-png10 -> graphics/linux-f10-png10 graphics/linux-f8-sdl_image -> graphics/linux-f10-sdl_image graphics/linux-f8-tiff -> graphics/linux-f10-tiff graphics/linux-f8-ungif -> graphics/linux-f10-ungif lang/linux-f8-libg2c -> lang/linux-f10-libg2c lang/linux-f8-tcl84 -> lang/linux-f10-tcl85 multimedia/linux-f8-libtheora -> multimedia/linux-f10-libtheora security/linux-f8-libssh2 -> security/linux-f10-libssh2 security/linux-f8-nss -> security/linux-f10-nss security/linux-f8-openssl -> security/linux-f10-openssl textproc/linux-f8-aspell -> textproc/linux-f10-aspell textproc/linux-f8-expat -> textproc/linux-f10-expat textproc/linux-f8-libxml -> textproc/linux-f10-libxml textproc/linux-f8-libxml2 -> textproc/linux-f10-libxml2 textproc/linux-f8-scim-gtk -> textproc/linux-f10-scim-gtk textproc/linux-f8-scim-libs -> textproc/linux-f10-scim-libs x11-fonts/linux-f8-fontconfig -> x11-fonts/linux-f10-fontconfig x11-themes/linux-f8-hicolor-icon-theme -> x11-themes/linux-f10-hicolor-icon-theme x11-toolkits/linux-f8-gtk -> x11-toolkits/linux-f10-gtk x11-toolkits/linux-f8-gtk2 -> x11-toolkits/linux-f10-gtk2 x11-toolkits/linux-f8-openmotif -> x11-toolkits/linux-f10-openmotif x11-toolkits/linux-f8-pango -> x11-toolkits/linux-f10-pango x11-toolkits/linux-f8-qt33 -> x11-toolkits/linux-f10-qt33 x11-toolkits/linux-f8-tk84 -> x11-toolkits/linux-f10-tk85 x11/linux-f8-xorg-libs -> x11/linux-f10-xorg-libs --- pr.dirs ends here --- WBR -- bsam >Release-Note: >Audit-Trail: >Unformatted: From bsam at FreeBSD.org Wed May 6 12:24:33 2009 From: bsam at FreeBSD.org (bsam@FreeBSD.org) Date: Wed May 6 12:24:39 2009 Subject: ports/134265: [repocopy] linux-f8 -> linux-f10 ports Message-ID: <200905061224.n46COWSc065871@freefall.freebsd.org> Synopsis: [repocopy] linux-f8 -> linux-f10 ports State-Changed-From-To: open->repocopy State-Changed-By: bsam State-Changed-When: Wed May 6 12:22:28 UTC 2009 State-Changed-Why: Repocopies are portmgr territory. Please, assign the PR back to me after repocopies are done. Thanks! Responsible-Changed-From-To: freebsd-ports-bugs->portmgr Responsible-Changed-By: bsam Responsible-Changed-When: Wed May 6 12:22:28 UTC 2009 Responsible-Changed-Why: Repocopies are portmgr territory. Please, assign the PR back to me after repocopies are done. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=134265 From pluknet at gmail.com Wed May 6 12:50:04 2009 From: pluknet at gmail.com (pluknet) Date: Wed May 6 12:50:10 2009 Subject: ports/134266: New port: www/simpleproxy Simple tcp proxy Message-ID: <200905061241.n46CfrHw049483@www.freebsd.org> >Number: 134266 >Category: ports >Synopsis: New port: www/simpleproxy Simple tcp proxy >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 May 06 12:50:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: pluknet >Release: 6.4-STABLE >Organization: >Environment: FreeBSD 6.4-STABLE #96: Thu Jan 22 16:59:43 MSK 2009 root@jaw.ripn.net:/usr/obj/usr/src/sys/JAW i386 >Description: New port. Simple tcp proxy. >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: # # simpleproxy # simpleproxy/Makefile # simpleproxy/pkg-descr # simpleproxy/pkg-plist # simpleproxy/distinfo # echo c - simpleproxy mkdir -p simpleproxy > /dev/null 2>&1 echo x - simpleproxy/Makefile sed 's/^X//' >simpleproxy/Makefile << 'END-of-simpleproxy/Makefile' X# New ports collection makefile for: simpleproxy X# Date created: 06 May 2009 X# Whom: Sergey Kandaurov X# X# $FreeBSD$ X# X XPORTNAME= simpleproxy XPORTVERSION= 3.4 XCATEGORIES= www XMASTER_SITES= SF/simpleproxy X XMAINTAINER= pluknet@gmail.com XCOMMENT= Simple tcp proxy X XGNU_CONFIGURE= yes X.if !defined(NO_INSTALL_MANPAGES) XMAN1= simpleproxy.1 X.endif X X.include END-of-simpleproxy/Makefile echo x - simpleproxy/pkg-descr sed 's/^X//' >simpleproxy/pkg-descr << 'END-of-simpleproxy/pkg-descr' XSimpleproxy program acts as simple tcp proxy. It listens for local Xsocket, and any connection to this port will be forwarded to another Xsocket at remote host. X XLICENSE: GPL2 or later X XWWW: http://www.crocodile.org/software.html END-of-simpleproxy/pkg-descr echo x - simpleproxy/pkg-plist sed 's/^X//' >simpleproxy/pkg-plist << 'END-of-simpleproxy/pkg-plist' Xbin/simpleproxy END-of-simpleproxy/pkg-plist echo x - simpleproxy/distinfo sed 's/^X//' >simpleproxy/distinfo << 'END-of-simpleproxy/distinfo' XMD5 (simpleproxy-3.4.tar.gz) = 95fbc83e731f4c727802e023cf3d43ad XSHA256 (simpleproxy-3.4.tar.gz) = 194b280251edc16f1930dca6e2742c3f353523bc735c7a9d3d1a4d23ca09a74c XSIZE (simpleproxy-3.4.tar.gz) = 31904 END-of-simpleproxy/distinfo exit >Release-Note: >Audit-Trail: >Unformatted: From ports at logvinov.com Wed May 6 13:00:14 2009 From: ports at logvinov.com (Alexander Logvinov) Date: Wed May 6 13:00:50 2009 Subject: ports/134267: [new port] sysutils/flashrom: A utility for reading, writing, verifying and erasing flash ROM chips Message-ID: <200905061255.n46CtNwE062557@blg.akavia.ru> >Number: 134267 >Category: ports >Synopsis: [new port] sysutils/flashrom: A utility for reading, writing, verifying and erasing flash ROM chips >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 May 06 13:00:08 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexander Logvinov >Release: FreeBSD 6.4-RELEASE i386 >Organization: >Environment: >Description: flashrom is a utility for reading, writing, verifying and erasing flash ROM chips. It's often used to flash BIOS/coreboot/firmware images. It supports a wide range of DIP32, PLCC32, DIP8, SO8/SOIC8, TSOP32, and TSOP40 chips, which use various protocols such as LPC, FWH, parallel flash, or SPI. WWW: http://www.coreboot.org/Flashrom >How-To-Repeat: >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # flashrom # flashrom/Makefile # flashrom/distinfo # flashrom/pkg-descr # echo c - flashrom mkdir -p flashrom > /dev/null 2>&1 echo x - flashrom/Makefile sed 's/^X//' >flashrom/Makefile << 'b2ef95f3b0c23b9d15f3366712e880b7' X# New ports collection makefile for: flashrom X# Date created: 06 May 2009 X# Whom: Alexander Logvinov X# X# $FreeBSD$ X# X XPORTNAME= flashrom XPORTVERSION= 0.9.0 XCATEGORIES= sysutils XMASTER_SITES= http://qa.coreboot.org/releases/ X XMAINTAINER= ports@logvinov.com XCOMMENT= A utility for reading, writing, verifying and erasing flash ROM chips X XLIB_DEPENDS= pci.2:${PORTSDIR}/devel/libpci X XUSE_BZIP2= yes XUSE_GMAKE= yes X XPORTDOCS= COPYING README XPLIST_FILES= bin/${PORTNAME} X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin X.if !defined(NOPORTDOCS) X @${MKDIR} ${DOCSDIR} X.for i in ${PORTDOCS} X ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} X.endfor X.endif X X.include b2ef95f3b0c23b9d15f3366712e880b7 echo x - flashrom/distinfo sed 's/^X//' >flashrom/distinfo << '6d35ba5b4c593ce096787bc4eb4ad180' XMD5 (flashrom-0.9.0.tar.bz2) = e9953bc012b07ce20e83f253e5199c2a XSHA256 (flashrom-0.9.0.tar.bz2) = ebad45feb735318c4196ca2336d469b2bd7d2a8db43d879f468b0c2cd2ff136a XSIZE (flashrom-0.9.0.tar.bz2) = 59006 6d35ba5b4c593ce096787bc4eb4ad180 echo x - flashrom/pkg-descr sed 's/^X//' >flashrom/pkg-descr << '01b2cb5ca00077b0d926018fdade85f3' Xflashrom is a utility for reading, writing, verifying and erasing flash ROM Xchips. It's often used to flash BIOS/coreboot/firmware images. X XIt supports a wide range of DIP32, PLCC32, DIP8, SO8/SOIC8, TSOP32, and XTSOP40 chips, which use various protocols such as LPC, FWH, parallel flash, Xor SPI. X XWWW: http://www.coreboot.org/Flashrom 01b2cb5ca00077b0d926018fdade85f3 exit >Release-Note: >Audit-Trail: >Unformatted: From amdmi3 at FreeBSD.org Wed May 6 13:34:45 2009 From: amdmi3 at FreeBSD.org (amdmi3@FreeBSD.org) Date: Wed May 6 13:34:56 2009 Subject: ports/134267: [new port] sysutils/flashrom: A utility for reading, writing, verifying and erasing flash ROM chips Message-ID: <200905061334.n46DYiQJ061214@freefall.freebsd.org> Synopsis: [new port] sysutils/flashrom: A utility for reading, writing, verifying and erasing flash ROM chips Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Wed May 6 13:34:44 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134267 From amdmi3 at FreeBSD.org Wed May 6 13:34:47 2009 From: amdmi3 at FreeBSD.org (amdmi3@FreeBSD.org) Date: Wed May 6 13:34:57 2009 Subject: ports/134266: New port: www/simpleproxy Simple tcp proxy Message-ID: <200905061334.n46DYkop061284@freefall.freebsd.org> Synopsis: New port: www/simpleproxy Simple tcp proxy Responsible-Changed-From-To: freebsd-ports-bugs->amdmi3 Responsible-Changed-By: amdmi3 Responsible-Changed-When: Wed May 6 13:34:46 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134266 From yzlin at cs.nctu.edu.tw Wed May 6 14:40:02 2009 From: yzlin at cs.nctu.edu.tw (Yi-Jheng Lin) Date: Wed May 6 14:40:17 2009 Subject: ports/134269: [MAINTAINER] graphics/py-graph: update to 1.5.0 Message-ID: <20090506142624.2585C48F437@yzlin.org> >Number: 134269 >Category: ports >Synopsis: [MAINTAINER] graphics/py-graph: update to 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: Wed May 06 14:40:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Yi-Jheng Lin >Release: FreeBSD 7.2-RELEASE amd64 >Organization: NCTU CS >Environment: System: FreeBSD yzlin 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Sun May 3 19:23:15 CST >Description: - Update to 1.5.0 Generated with FreeBSD Port Tools 0.77 >How-To-Repeat: >Fix: --- py-graph-1.5.0.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/py-graph/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- Makefile 12 Mar 2009 19:24:03 -0000 1.3 +++ Makefile 6 May 2009 14:31:34 -0000 @@ -6,7 +6,7 @@ # PORTNAME= graph -PORTVERSION= 1.4.2 +PORTVERSION= 1.5.0 CATEGORIES= graphics python MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,8 +15,7 @@ MAINTAINER= yzlin@cs.nctu.edu.tw COMMENT= A library for working with graphs in Python -BUILD_DEPENDS= dot:${PORTSDIR}/graphics/graphviz -RUN_DEPENDS= dot:${PORTSDIR}/graphics/graphviz +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pydot>=0:${PORTSDIR}/graphics/py-pydot PROJECTHOST= python-graph USE_PYTHON= yes @@ -30,17 +29,37 @@ DOCSDIR= ${PREFIX}/share/doc/py-${PORTNAME} EXAMPLESDIR= ${PREFIX}/share/examples/py-${PORTNAME} +TESTFILES= unittests-accessibility.py \ + unittests-cycles.py \ + unittests-digraph.py \ + unittests-filters.py \ + unittests-graph.py \ + unittests-heuristics.py \ + unittests-readwrite.py \ + unittests-searching.py \ + unittests-sorting.py \ + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/Changelog ${DOCSDIR} - ${INSTALL_DATA} ${WRKSRC}/COPYING ${DOCSDIR} - ${INSTALL_MAN} ${WRKSRC}/docs/* ${DOCSDIR} +.for f in COPYING Changelog README + ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor + ${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR} .endif .if !defined(NOPORTEXAMPLES) @${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} .endif +# This target is only meant to be used by the port maintainer. +x-regression-test: install +.for f in ${TESTFILES} + @${ECHO} "" >> ${WRKSRC}/tests/${f} + @${ECHO} "if __name__ == '__main__':" >> ${WRKSRC}/tests/${f} + @${ECHO} " unittest.main()" >> ${WRKSRC}/tests/${f} + @${ECHO} "Unit-testing ${f}..." + @(cd ${WRKSRC}/tests && ${PYTHON_CMD} ${f}) +.endfor + .include Index: distinfo =================================================================== RCS file: /home/ncvs/ports/graphics/py-graph/distinfo,v retrieving revision 1.3 diff -u -r1.3 distinfo --- distinfo 12 Mar 2009 19:24:03 -0000 1.3 +++ distinfo 6 May 2009 14:31:34 -0000 @@ -1,3 +1,3 @@ -MD5 (python-graph-1.4.2.tar.bz2) = 142807b1d3865c915bee8b5346790e7b -SHA256 (python-graph-1.4.2.tar.bz2) = 91225ee818272debc17af7df4b0f4acb638fc772b796397689464a26c8bf0ee6 -SIZE (python-graph-1.4.2.tar.bz2) = 49957 +MD5 (python-graph-1.5.0.tar.bz2) = fc349565a013286a4cb20297cd00364b +SHA256 (python-graph-1.5.0.tar.bz2) = f7bf5d9e7233d75b72defc724c9678abed54a54633dab0e700c7aec47a390532 +SIZE (python-graph-1.5.0.tar.bz2) = 53892 Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/graphics/py-graph/pkg-plist,v retrieving revision 1.3 diff -u -r1.3 pkg-plist --- pkg-plist 12 Mar 2009 19:24:03 -0000 1.3 +++ pkg-plist 6 May 2009 14:31:34 -0000 @@ -1,5 +1,5 @@ %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% -@dirrm %%PYTHON_SITELIBDIR%%/graph +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/critical.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/draw.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/drawhyper.py %%PORTEXAMPLES%%%%EXAMPLESDIR%%/ex1.py @@ -20,6 +20,7 @@ %%PORTDOCS%%%%DOCSDIR%%/graph-module.html %%PORTDOCS%%%%DOCSDIR%%/graph.algorithms-module.html %%PORTDOCS%%%%DOCSDIR%%/graph.algorithms.accessibility-module.html +%%PORTDOCS%%%%DOCSDIR%%/graph.algorithms.critical-module.html %%PORTDOCS%%%%DOCSDIR%%/graph.algorithms.cycles-module.html %%PORTDOCS%%%%DOCSDIR%%/graph.algorithms.exceptions-module.html %%PORTDOCS%%%%DOCSDIR%%/graph.algorithms.exceptions.python_graph_exception-class.html Index: files/patch-setup.py =================================================================== RCS file: /home/ncvs/ports/graphics/py-graph/files/patch-setup.py,v retrieving revision 1.2 diff -u -r1.2 patch-setup.py --- files/patch-setup.py 12 Mar 2009 19:24:03 -0000 1.2 +++ files/patch-setup.py 6 May 2009 14:31:34 -0000 @@ -1,6 +1,19 @@ ---- setup.py.orig 2009-02-23 22:14:56.000000000 +0800 -+++ setup.py 2009-02-23 22:14:38.000000000 +0800 -@@ -37,8 +37,8 @@ +--- setup.py.orig ++++ setup.py +@@ -4,11 +4,7 @@ + import os + import logging + +-try: +- from setuptools import setup, find_packages +-except ImportError, ie: +- import ez_setup +- ez_setup.use_setuptools() ++from setuptools import setup, find_packages + + # Startup + appname = "python-graph" +@@ -37,8 +33,8 @@ name = appname, version = appversion, packages = ['graph', 'graph.algorithms', 'graph.algorithms.filters', 'graph.algorithms.heuristics', 'graph.classes'], --- py-graph-1.5.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: From andrewclarkii at gmail.com Wed May 6 14:40:03 2009 From: andrewclarkii at gmail.com (Andrew Clark) Date: Wed May 6 14:40:18 2009 Subject: ports/134270: update port: print/hplip update to: 3.9.4 Message-ID: <200905061439.n46EdRGE043368@www.freebsd.org> >Number: 134270 >Category: ports >Synopsis: update port: print/hplip update to: 3.9.4 >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 May 06 14:40:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Andrew Clark >Release: 7.2-RELEASE >Organization: moskb >Environment: FreeBSD powercharge.moskb.local 7.2-RELEASE FreeBSD 7.2-RELEASE #1: Wed May 6 11:23:58 MSD 2009 andy@powercharge.moskb.local:/usr/obj/usr/src/sys/GENERIC i386 >Description: New version HP Linux Imaging and Printing utility >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: # # . # ./files # ./files/hpssd.sh.in # ./distinfo # ./pkg-descr # ./Makefile # ./pkg-message # ./pkg-plist # ./pkg-install # echo c - . mkdir -p . > /dev/null 2>&1 echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/hpssd.sh.in sed 's/^X//' >./files/hpssd.sh.in << 'ef427467a537a2cd04059f884c1e1d02' X#!/bin/sh X X# PROVIDE: hpssd X# BEFORE: cupsd X# KEYWORD: shutdown X X. %%RC_SUBR%% X Xname=hpssd Xrcvar=${name}_enable X Xcommand="%%PREFIX%%/sbin/${name}" Xcommand_interpreter="%%PREFIX%%/bin/python" Xpidfile="/var/run/${name}.pid" Xhpssd_user=nobody Xcommand_args=">/dev/null" X Xstart_precmd="hpssd_prestart" X Xload_rc_config $name X X: ${hpssd_enable="NO"} X Xhpssd_prestart() X{ X touch ${pidfile} X chown ${hpssd_user} ${pidfile} X} X Xrun_rc_command $* ef427467a537a2cd04059f884c1e1d02 echo x - ./distinfo sed 's/^X//' >./distinfo << 'aec8793adfd5b7c3f00e62ae41a09ac2' XMD5 (hplip-3.9.4.tar.gz) = 03f76601dce5fdabca5d68fadf786fc3 XSHA256 (hplip-3.9.4.tar.gz) = 3a3b9086e330565abcbbd85857a493f6ee5aebe2e61f5c891d8596f036d62f77 XSIZE (hplip-3.9.4.tar.gz) = 15698325 aec8793adfd5b7c3f00e62ae41a09ac2 echo x - ./pkg-descr sed 's/^X//' >./pkg-descr << '0e313719ff012ceaf97a028d51caa8f5' XHPLIP is an HP developed solution for printing, scanning, Xand faxing with HP inkjet and laser based printers in Linux. X XThe HP driver project provides printing support for nearly X1000 printer models, including Deskjet, Officejet, Photosmart, XPSC (Print Scan Copy), Business Inkjet, LaserJet, and LaserJet MFP. X XWWW: http://hplipopensource.com/hplip-web/index.html 0e313719ff012ceaf97a028d51caa8f5 echo x - ./Makefile sed 's/^X//' >./Makefile << '464ef7c6571951809b23e262cbe26e19' X# New ports collection makefile for: hplip X# Date created: 1 April 2006 X# Whom: amistry@am-productions.biz X# X# $FreeBSD: ports/print/hplip/Makefile,v 1.23 2009/03/25 16:42:56 pav Exp $ X# X XPORTNAME= hplip XPORTVERSION= 3.9.4 XCATEGORIES= print XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= hplip X XMAINTAINER= amistry@am-productions.biz XCOMMENT= Drivers and utilities for HP Printers and All-in-One devices X XLIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg \ X sane.1:${PORTSDIR}/graphics/sane-backends \ X cups.2:${PORTSDIR}/print/cups-base \ X netsnmp.16:${PORTSDIR}/net-mgmt/net-snmp X XRUN_DEPENDS= ${PYTHON_SITELIBDIR}/reportlab/__init__.py:${PORTSDIR}/print/py-reportlab2 \ X foomatic-rip:${PORTSDIR}/print/foomatic-filters X XCONFLICTS= hpijs-* X XGNU_CONFIGURE= yes XCONFIGURE_ARGS= --disable-dependency-tracking \ X --disable-pp-build \ X --enable-foomatic-ppd-install \ X --with-icondir=${LOCALBASE}/share/applications \ X --with-cupsbackenddir=${LOCALBASE}/libexec/cups/backend \ X --with-cupsfilterdir=${LOCALBASE}/libexec/cups/filter \ X --with-drvdir=${LOCALBASE}/libexec/cups/driver X XUSE_LDCONFIG= yes XUSE_GHOSTSCRIPT_RUN= yes XUSE_PYTHON= yes XUSE_RC_SUBR= hpssd.sh XMAKE_JOBS_SAFE= yes X XCONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ X LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" X XMAKE_ENV= CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \ X LDFLAGS="${LDFLAGS} -L${LOCALBASE}/lib" X XPKGDEINSTALL= ${PKGINSTALL} X XOPTIONS= GUI "build with Python QT" on X XPLIST_SUB+= PORTVERSION=${PORTVERSION} IJSVER=2.7.4 X X.include X X.if ${OSVERSION} < 800069 XLIB_DEPENDS+= usb:${PORTSDIR}/devel/libusb X.endif X X.if !defined(WITHOUT_GUI) || exists(${LOCALBASE}/bin/pylupdate) XRUN_DEPENDS+= pylupdate:${PORTSDIR}/x11-toolkits/py-qt XCONFIGURE_ARGS+= --enable-gui-build X.endif X Xpost-patch: X @${REINPLACE_CMD} -e 's|/etc/hp|${LOCALBASE}/etc/hp|g ; \ X s|/etc/sane.d|${LOCALBASE}/etc/sane.d|g' \ X ${WRKSRC}/Makefile.am \ X ${WRKSRC}/Makefile.in \ X ${WRKSRC}/check.py \ X ${WRKSRC}/hpssd.py \ X ${WRKSRC}/base/g.py \ X ${WRKSRC}/fax/backend/hpfax.py \ X ${WRKSRC}/installer/distros.dat \ X ${WRKSRC}/installer/core_install.py \ X ${WRKSRC}/prnt/hpijs/ljzjs.cpp X X @${REINPLACE_CMD} 's|-lpthread|${PTHREAD_LIBS}|g' \ X ${WRKSRC}/configure \ X ${WRKSRC}/configure.in X.if defined(NOPORTDOCS) X @${REINPLACE_CMD} -e 's|install-dist_www7DATA install-docDATA|install-dist_www7DATA|g ; \ X s|install-dist_unrelDATA install-dist_www0DATA|install-dist_unrelDATA|g ; \ X s|install-dist_www1DATA install-dist_www21DATA||g ; \ X s|install-dist_www22DATA install-dist_www23DATA||g ; \ X s|install-dist_www241DATA install-dist_www242DATA||g ; \ X s|install-dist_www243DATA install-dist_www24DATA||g ; \ X s|install-dist_www251DATA install-dist_www252DATA||g ; \ X s|install-dist_www261DATA install-dist_www2DATA||g ; \ X s|install-dist_www3DATA install-dist_www4DATA||g ; \ X s|install-dist_www5DATA install-dist_www61DATA||g ; \ X s|install-dist_www6DATA install-dist_www7DATA||g' \ X ${WRKSRC}/Makefile.in X.endif X @${REINPLACE_CMD} -e 's|install-dist_prntSCRIPTS install-dist_rulesDATA|install-dist_prntSCRIPTS|g ; \ X s|install-hpPROGRAMS install-hplip_confDATA|install-hpPROGRAMS|g' \ X ${WRKSRC}/Makefile.in X# @${REINPLACE_CMD} -e 's|install-dist_www7DATA install-docDATA|install-dist_www7DATA|g' \ X# ${WRKSRC}/Makefile.in X @${REINPLACE_CMD} -e 's|-ldld||g ; \ X s|-ldl||g ; \ X s|-dld||g' \ X ${WRKSRC}/configure \ X ${WRKSRC}/configure.in \ X ${WRKSRC}/Makefile.in \ X ${WRKSRC}/Makefile.am \ X ${WRKSRC}/aclocal.m4 X X @${REINPLACE_CMD} -e 's|/usr/bin/env python|${LOCALBASE}/bin/python|g' \ X ${WRKSRC}/hpssd.py X Xpre-su-install: X @${MKDIR} ${PREFIX}/share/applications X Xpost-install: X.if !defined(PACKAGE_BUILDING) X @${SETENV} PKG_PREFIX=${PREFIX} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL X.endif X @${LN} -sf ${PREFIX}/share/hplip/hpssd.py ${PREFIX}/sbin/hpssd X @${MKDIR} ${PREFIX}/etc/hp X # Auto-generate sample configuration file X @${INSTALL_DATA} ${WRKSRC}/hplip.conf ${PREFIX}/etc/hp/hplip.conf.sample X.if !exists(${PREFIX}/etc/hp/hplip.conf) X @${INSTALL_DATA} ${WRKSRC}/hplip.conf ${PREFIX}/etc/hp/hplip.conf X.endif X @${SED} -e "s|%%PREFIX%%|${PREFIX}|" ${PKGMESSAGE} X X.include 464ef7c6571951809b23e262cbe26e19 echo x - ./pkg-message sed 's/^X//' >./pkg-message << '9f51c313804c544b8024c5640d645b0a' X********************************************************** X X**************** UPGRADE FROM 1.X NOTICE ***************** X XNOTE: If you are upgrading from 1.x you will need to Xchange your devfs ruleset as hpiod is now gone, so remove Xit from you rc.conf. The printer communication now runs Xthrough cupsd. You will need to make the devfs ruleset Xchanges to allow cups to access the usb bus and ugen Xdevices so that it can enumerate the printers. You will Xalso need to update your hplip.conf. See the instructions Xbelow. X X**************** UPGRADE FROM 1.X NOTICE ***************** X XAdd the following to your rc.conf: X Xhpssd_enable="YES" X XSo all you have to do if you have a custom ruleset setup Xis add the following to that ruleset in devfs.rules: X Xadd path 'usb*' group cups Xadd path 'usb*' mode 0660 Xadd path 'ugen*' group cups Xadd path 'ugen*' mode 0660 X XIf you have never setup devfs.rules please read the Xmanpage and see: Xhttp://am-productions.biz/docs/devfs.rules.php X XThe printer MUST attach as a ugen(4) device. This means Xthat you must NOT have "device ulpt" in your kernel and Xulpt must NOT be loaded as a kernel module. X XIf you are seeing device connection errors restart the Xprinting chain with the following command. NOTE: It MUST Xbe restarted in the stated order. X%%PREFIX%%/etc/rc.d/hpssd restart && \ X%%PREFIX%%/etc/rc.d/cupsd restart X XIf upgrading from a version < 2.7.9 copy the new Xhplip.conf.sample config. Xcp %%PREFIX%%/etc/hp/hplip.conf.sample \ X %%PREFIX%%/etc/hp/hplip.conf X XIf you are still having problems check: Xhttp://am-productions.biz/docs/hplip.php XIf you are still having problems send the relevant part Xof your /var/log/messages, console output from the hp-* Xutility that you are trying to run, and your rc.conf + Xdevfs.rules files and the output of "ls -l /dev" to the Xmaintainer. X********************************************************** 9f51c313804c544b8024c5640d645b0a echo x - ./pkg-plist sed 's/^X//' >./pkg-plist << 'ef3e7f63841ae908ba397c2bef1fbad6' Xbin/hp-align Xbin/hp-check Xbin/hp-clean Xbin/hp-colorcal Xbin/hp-devicesetup Xbin/hp-fab Xbin/hp-faxsetup Xbin/hp-firmware Xbin/hp-info Xbin/hp-levels Xbin/hp-linefeedcal Xbin/hp-makecopies Xbin/hp-makeuri Xbin/hp-mkuri Xbin/hp-pkservice Xbin/hp-plugin Xbin/hp-pqdiag Xbin/hp-print Xbin/hp-printsettings Xbin/hp-probe Xbin/hp-query Xbin/hp-scan Xbin/hp-sendfax Xbin/hp-setup Xbin/hp-systray Xbin/hp-testpage Xbin/hp-timedate Xbin/hp-toolbox Xbin/hp-unload Xbin/hpijs Xetc/hp/hplip.conf Xetc/hp/hplip.conf.sample Xetc/rc.d/hpssd Xetc/sane.d/dll.conf Xlib/libhpip.la Xlib/libhpip.so Xlib/libhpip.so.0 Xlib/libhpmud.la Xlib/libhpmud.so Xlib/libhpmud.so.0 Xlib/python2.5/site-packages/cupsext.la Xlib/python2.5/site-packages/cupsext.so Xlib/python2.5/site-packages/hpmudext.la Xlib/python2.5/site-packages/hpmudext.so Xlib/python2.5/site-packages/pcardext.la Xlib/python2.5/site-packages/pcardext.so Xlib/python2.5/site-packages/scanext.la Xlib/python2.5/site-packages/scanext.so Xlib/sane/libsane-hpaio.la Xlib/sane/libsane-hpaio.so Xlib/sane/libsane-hpaio.so.1 Xsbin/hpssd Xshare/doc/hplip-3.9.4/COPYING Xshare/doc/hplip-3.9.4/README_LIBJPG Xshare/doc/hplip-3.9.4/commandline.html Xshare/doc/hplip-3.9.4/copying.html Xshare/doc/hplip-3.9.4/copyright Xshare/doc/hplip-3.9.4/devicemanager.html Xshare/doc/hplip-3.9.4/faxtrouble.html Xshare/doc/hplip-3.9.4/gettinghelp.html Xshare/doc/hplip-3.9.4/hpscan.html Xshare/doc/hplip-3.9.4/images/favicon.ico Xshare/doc/hplip-3.9.4/images/print.png Xshare/doc/hplip-3.9.4/images/toolbox_actions.png Xshare/doc/hplip-3.9.4/images/toolbox_fax.png Xshare/doc/hplip-3.9.4/images/toolbox_print_control.png Xshare/doc/hplip-3.9.4/images/toolbox_print_settings.png Xshare/doc/hplip-3.9.4/images/toolbox_status.png Xshare/doc/hplip-3.9.4/images/toolbox_supplies.png Xshare/doc/hplip-3.9.4/images/xsane.png Xshare/doc/hplip-3.9.4/index.html Xshare/doc/hplip-3.9.4/mainttask.html Xshare/doc/hplip-3.9.4/plugins.html Xshare/doc/hplip-3.9.4/print.html Xshare/doc/hplip-3.9.4/printing.html Xshare/doc/hplip-3.9.4/printoptions.html Xshare/doc/hplip-3.9.4/printtroubleshooting.html Xshare/doc/hplip-3.9.4/scanning.html Xshare/doc/hplip-3.9.4/scantrouble.html Xshare/doc/hplip-3.9.4/sendfax.html Xshare/doc/hplip-3.9.4/setup.html Xshare/doc/hplip-3.9.4/styles/css.css Xshare/doc/hplip-3.9.4/systray.html Xshare/doc/hplip-3.9.4/troubleshooting.html Xshare/doc/hplip-3.9.4/uninstalling.html Xshare/doc/hplip-3.9.4/upgrading.html Xshare/hplip/__init__.py Xshare/hplip/align.py Xshare/hplip/base/__init__.py Xshare/hplip/base/codes.py Xshare/hplip/base/device.py Xshare/hplip/base/dime.py Xshare/hplip/base/exif.py Xshare/hplip/base/g.py Xshare/hplip/base/imagesize.py Xshare/hplip/base/ldif.py Xshare/hplip/base/logger.py Xshare/hplip/base/magic.py Xshare/hplip/base/maint.py Xshare/hplip/base/mdns.py Xshare/hplip/base/mfpdtf.py Xshare/hplip/base/models.py Xshare/hplip/base/module.py Xshare/hplip/base/pexpect.py Xshare/hplip/base/pkit.py Xshare/hplip/base/pml.py Xshare/hplip/base/slp.py Xshare/hplip/base/status.py Xshare/hplip/base/strings.py Xshare/hplip/base/tui.py Xshare/hplip/base/utils.py Xshare/hplip/base/vcard.py Xshare/hplip/check.py Xshare/hplip/clean.py Xshare/hplip/colorcal.py Xshare/hplip/copier/__init__.py Xshare/hplip/copier/copier.py Xshare/hplip/data/images/128x128/audio.png Xshare/hplip/data/images/128x128/bmp.png Xshare/hplip/data/images/128x128/gif.png Xshare/hplip/data/images/128x128/hp_logo.png Xshare/hplip/data/images/128x128/jpg.png Xshare/hplip/data/images/128x128/movie.png Xshare/hplip/data/images/128x128/mpg.png Xshare/hplip/data/images/128x128/png.png Xshare/hplip/data/images/128x128/tif.png Xshare/hplip/data/images/128x128/unknown.png Xshare/hplip/data/images/16x16/active.png Xshare/hplip/data/images/16x16/add_user.png Xshare/hplip/data/images/16x16/add_user_quick.png Xshare/hplip/data/images/16x16/add_users.png Xshare/hplip/data/images/16x16/battery.png Xshare/hplip/data/images/16x16/busy.png Xshare/hplip/data/images/16x16/cancel.png Xshare/hplip/data/images/16x16/close.png Xshare/hplip/data/images/16x16/down.png Xshare/hplip/data/images/16x16/down_user.png Xshare/hplip/data/images/16x16/download.png Xshare/hplip/data/images/16x16/edit.png Xshare/hplip/data/images/16x16/error.png Xshare/hplip/data/images/16x16/fab.png Xshare/hplip/data/images/16x16/fax.png Xshare/hplip/data/images/16x16/folder_open.png Xshare/hplip/data/images/16x16/folder_remove.png Xshare/hplip/data/images/16x16/help.png Xshare/hplip/data/images/16x16/hp_logo.png Xshare/hplip/data/images/16x16/idle.png Xshare/hplip/data/images/16x16/info.png Xshare/hplip/data/images/16x16/inkdrop.png Xshare/hplip/data/images/16x16/list_add.png Xshare/hplip/data/images/16x16/list_remove.png Xshare/hplip/data/images/16x16/makecopies.png Xshare/hplip/data/images/16x16/mimetypes.png Xshare/hplip/data/images/16x16/minus.png Xshare/hplip/data/images/16x16/next.png Xshare/hplip/data/images/16x16/ok.png Xshare/hplip/data/images/16x16/paper.png Xshare/hplip/data/images/16x16/pcard.png Xshare/hplip/data/images/16x16/plus.png Xshare/hplip/data/images/16x16/prev.png Xshare/hplip/data/images/16x16/print.png Xshare/hplip/data/images/16x16/quit.png Xshare/hplip/data/images/16x16/refresh.png Xshare/hplip/data/images/16x16/refresh1.png Xshare/hplip/data/images/16x16/remove_user.png Xshare/hplip/data/images/16x16/scan.png Xshare/hplip/data/images/16x16/settings.png Xshare/hplip/data/images/16x16/status_refresh.png Xshare/hplip/data/images/16x16/thumbnail.png Xshare/hplip/data/images/16x16/toner.png Xshare/hplip/data/images/16x16/up.png Xshare/hplip/data/images/16x16/up_user.png Xshare/hplip/data/images/16x16/warning.png Xshare/hplip/data/images/24x24/add_to_group.png Xshare/hplip/data/images/24x24/new_group.png Xshare/hplip/data/images/24x24/new_group_from_selection.png Xshare/hplip/data/images/24x24/new_user.png Xshare/hplip/data/images/24x24/remove_from_group.png Xshare/hplip/data/images/24x24/remove_group.png Xshare/hplip/data/images/24x24/remove_user.png Xshare/hplip/data/images/24x24/rename_group.png Xshare/hplip/data/images/256x256/hp_logo.png Xshare/hplip/data/images/32x32/align.png Xshare/hplip/data/images/32x32/battery.png Xshare/hplip/data/images/32x32/busy.png Xshare/hplip/data/images/32x32/clean.png Xshare/hplip/data/images/32x32/colorcal.png Xshare/hplip/data/images/32x32/cups.png Xshare/hplip/data/images/32x32/download.png Xshare/hplip/data/images/32x32/error.png Xshare/hplip/data/images/32x32/ews.png Xshare/hplip/data/images/32x32/fab.png Xshare/hplip/data/images/32x32/fax-disabled.png Xshare/hplip/data/images/32x32/fax.png Xshare/hplip/data/images/32x32/fax_machine.png Xshare/hplip/data/images/32x32/fax_setup.png Xshare/hplip/data/images/32x32/firmware.png Xshare/hplip/data/images/32x32/help.png Xshare/hplip/data/images/32x32/hp_logo.png Xshare/hplip/data/images/32x32/idle.png Xshare/hplip/data/images/32x32/info.png Xshare/hplip/data/images/32x32/inkdrop.png Xshare/hplip/data/images/32x32/linefeed_cal.png Xshare/hplip/data/images/32x32/lporg.png Xshare/hplip/data/images/32x32/makecopies-disabled.png Xshare/hplip/data/images/32x32/makecopies.png Xshare/hplip/data/images/32x32/ok.png Xshare/hplip/data/images/32x32/paper.png Xshare/hplip/data/images/32x32/pcard-disabled.png Xshare/hplip/data/images/32x32/pcard.png Xshare/hplip/data/images/32x32/plugin.png Xshare/hplip/data/images/32x32/pq_diag.png Xshare/hplip/data/images/32x32/print-disabled.png Xshare/hplip/data/images/32x32/print.png Xshare/hplip/data/images/32x32/scan-disabled.png Xshare/hplip/data/images/32x32/scan.png Xshare/hplip/data/images/32x32/settings.png Xshare/hplip/data/images/32x32/testpage.png Xshare/hplip/data/images/32x32/toner.png Xshare/hplip/data/images/32x32/toner_cartridge.png Xshare/hplip/data/images/32x32/warning.png Xshare/hplip/data/images/64x64/hp_logo.png Xshare/hplip/data/images/devices/120.png Xshare/hplip/data/images/devices/COLOR_INKJET_PRINTER_CP1700.png Xshare/hplip/data/images/devices/CP_1700.png Xshare/hplip/data/images/devices/DESKJET_1120C.png Xshare/hplip/data/images/devices/DESKJET_1220C.png Xshare/hplip/data/images/devices/DESKJET_2500C.png Xshare/hplip/data/images/devices/DESKJET_3820.png Xshare/hplip/data/images/devices/DESKJET_5740.png Xshare/hplip/data/images/devices/DESKJET_610.png Xshare/hplip/data/images/devices/DESKJET_630C.png Xshare/hplip/data/images/devices/DESKJET_650C.png Xshare/hplip/data/images/devices/DESKJET_840C.png Xshare/hplip/data/images/devices/DESKJET_916C.png Xshare/hplip/data/images/devices/DESKJET_9600.png Xshare/hplip/data/images/devices/DESKJET_960C.png Xshare/hplip/data/images/devices/DESKJET_970C.png Xshare/hplip/data/images/devices/DESKJET_990C.png Xshare/hplip/data/images/devices/DESKJET_995C.png Xshare/hplip/data/images/devices/Deskjet_3740.png Xshare/hplip/data/images/devices/Deskjet_5400_series.png Xshare/hplip/data/images/devices/Deskjet_5700.png Xshare/hplip/data/images/devices/Deskjet_5900_series.png Xshare/hplip/data/images/devices/Deskjet_6500.png Xshare/hplip/data/images/devices/Deskjet_6800.png Xshare/hplip/data/images/devices/HP_2000C.png Xshare/hplip/data/images/devices/HP_2500C.png Xshare/hplip/data/images/devices/HP_BI_3000.png Xshare/hplip/data/images/devices/HP_Business_Inkjet_1200.png Xshare/hplip/data/images/devices/HP_Color_LaserJet_1500.png Xshare/hplip/data/images/devices/HP_Color_LaserJet_2840.png Xshare/hplip/data/images/devices/HP_Color_LaserJet_4500.png Xshare/hplip/data/images/devices/HP_Color_LaserJet_4730mfp.png Xshare/hplip/data/images/devices/HP_Color_LaserJet_8550.png Xshare/hplip/data/images/devices/HP_LJ1xxx.png Xshare/hplip/data/images/devices/HP_LaserJet_1012.png Xshare/hplip/data/images/devices/HP_LaserJet_1220.png Xshare/hplip/data/images/devices/HP_LaserJet_3200M.png Xshare/hplip/data/images/devices/HP_LaserJet_3300_3310_3320.png Xshare/hplip/data/images/devices/HP_LaserJet_4000.png Xshare/hplip/data/images/devices/HP_LaserJet_4100_MFP.png Xshare/hplip/data/images/devices/HP_LaserJet_4M.png Xshare/hplip/data/images/devices/HP_LaserJet_5Si.png Xshare/hplip/data/images/devices/HP_LaserJet_6MP.png Xshare/hplip/data/images/devices/HP_LaserJet_8100_Series.png Xshare/hplip/data/images/devices/HP_LaserJet_9000_MFP.png Xshare/hplip/data/images/devices/HP_LaserJet_9040_MFP.png Xshare/hplip/data/images/devices/HP_LaserJet_9500dn.png Xshare/hplip/data/images/devices/HP_LaserJet_m1005.png Xshare/hplip/data/images/devices/HP_LaserJet_m1522.png Xshare/hplip/data/images/devices/HP_Officejet_Pro_L7700.png Xshare/hplip/data/images/devices/LASERJET_3500.png Xshare/hplip/data/images/devices/LASERJET_4650.png Xshare/hplip/data/images/devices/LASERJET_4650dtn.png Xshare/hplip/data/images/devices/LASERJET_5500.png Xshare/hplip/data/images/devices/LASERJET_5500dtn.png Xshare/hplip/data/images/devices/LASERJET_5550.png Xshare/hplip/data/images/devices/LASERJET_5550DTN.png Xshare/hplip/data/images/devices/OFFICEJET_PRO_1150C.png Xshare/hplip/data/images/devices/OfficeJet_5105.png Xshare/hplip/data/images/devices/OfficeJet_6100_Series.png Xshare/hplip/data/images/devices/OfficeJet_G85.png Xshare/hplip/data/images/devices/OfficeJet_Series_300.png Xshare/hplip/data/images/devices/Officejet_6150_Series.png Xshare/hplip/data/images/devices/Officejet_6200_series.png Xshare/hplip/data/images/devices/Officejet_7200_series.png Xshare/hplip/data/images/devices/Officejet_9100_series.png Xshare/hplip/data/images/devices/PHOTOSMART_100.png Xshare/hplip/data/images/devices/PHOTOSMART_1218.png Xshare/hplip/data/images/devices/PHOTOSMART_1315.png Xshare/hplip/data/images/devices/PHOTOSMART_P1100.png Xshare/hplip/data/images/devices/PSC_900_Series.png Xshare/hplip/data/images/devices/Photosmart_2600_series.png Xshare/hplip/data/images/devices/Photosmart_2700_series.png Xshare/hplip/data/images/devices/Photosmart_3300_series.png Xshare/hplip/data/images/devices/Photosmart_370_series.png Xshare/hplip/data/images/devices/Photosmart_7400_series.png Xshare/hplip/data/images/devices/Photosmart_8050.png Xshare/hplip/data/images/devices/Photosmart_8100_series.png Xshare/hplip/data/images/devices/Photosmart_8250.png Xshare/hplip/data/images/devices/Photosmart_8400_series.png Xshare/hplip/data/images/devices/Photosmart_8750_series.png Xshare/hplip/data/images/devices/Photosmart_C3100.png Xshare/hplip/data/images/devices/Photosmart_C4100.png Xshare/hplip/data/images/devices/Photosmart_C5100.png Xshare/hplip/data/images/devices/Photosmart_C6100.png Xshare/hplip/data/images/devices/Photosmart_D5060.png Xshare/hplip/data/images/devices/Photosmart_D5100.png Xshare/hplip/data/images/devices/Photosmart_D6160.png Xshare/hplip/data/images/devices/Photosmart_D7100.png Xshare/hplip/data/images/devices/Photosmart_D7300.png Xshare/hplip/data/images/devices/Photosmart_Pro_B8300.png Xshare/hplip/data/images/devices/Photosmart_Pro_B9180.png Xshare/hplip/data/images/devices/Photosmart_a310.png Xshare/hplip/data/images/devices/Photosmart_a510.png Xshare/hplip/data/images/devices/Photosmart_a710.png Xshare/hplip/data/images/devices/cp1160.png Xshare/hplip/data/images/devices/default_business_inkjet.png Xshare/hplip/data/images/devices/default_designjet.png Xshare/hplip/data/images/devices/default_deskjet.png Xshare/hplip/data/images/devices/default_laserjet.png Xshare/hplip/data/images/devices/default_officejet.png Xshare/hplip/data/images/devices/default_photosmart.png Xshare/hplip/data/images/devices/default_printer.png Xshare/hplip/data/images/devices/default_psc.png Xshare/hplip/data/images/devices/desket_5650.png Xshare/hplip/data/images/devices/deskjet_1280.png Xshare/hplip/data/images/devices/deskjet_3200.png Xshare/hplip/data/images/devices/deskjet_3320.png Xshare/hplip/data/images/devices/deskjet_3325.png Xshare/hplip/data/images/devices/deskjet_3420.png Xshare/hplip/data/images/devices/deskjet_3425.png Xshare/hplip/data/images/devices/deskjet_3500.png Xshare/hplip/data/images/devices/deskjet_3600.png Xshare/hplip/data/images/devices/deskjet_3840.png Xshare/hplip/data/images/devices/deskjet_5100.png Xshare/hplip/data/images/devices/deskjet_5550.png Xshare/hplip/data/images/devices/deskjet_5552.png Xshare/hplip/data/images/devices/deskjet_5600.png Xshare/hplip/data/images/devices/deskjet_6120.png Xshare/hplip/data/images/devices/deskjet_6980.png Xshare/hplip/data/images/devices/deskjet_D2360.png Xshare/hplip/data/images/devices/dj350.png Xshare/hplip/data/images/devices/dj450.png Xshare/hplip/data/images/devices/hp_LaserJet_1200.png Xshare/hplip/data/images/devices/hp_LaserJet_2100.png Xshare/hplip/data/images/devices/hp_LaserJet_3015.png Xshare/hplip/data/images/devices/hp_LaserJet_3020.png Xshare/hplip/data/images/devices/hp_LaserJet_4345_mfp.png Xshare/hplip/data/images/devices/hp_LaserJet_5000.png Xshare/hplip/data/images/devices/hp_LaserJet_8000.png Xshare/hplip/data/images/devices/hp_business_inkjet_1100.png Xshare/hplip/data/images/devices/hp_business_inkjet_2200.png Xshare/hplip/data/images/devices/hp_business_inkjet_2600.png Xshare/hplip/data/images/devices/hp_business_inkjet_3000.png Xshare/hplip/data/images/devices/hp_color_LaserJet_2550.png Xshare/hplip/data/images/devices/hp_color_LaserJet_3700.png Xshare/hplip/data/images/devices/hp_color_LaserJet_4600.png Xshare/hplip/data/images/devices/hp_color_LaserJet_9500.png Xshare/hplip/data/images/devices/hp_color_laserjet_cm1015_mfp.png Xshare/hplip/data/images/devices/hp_color_laserjet_cm1312_mfp.png Xshare/hplip/data/images/devices/hp_color_laserjet_cp2025.png Xshare/hplip/data/images/devices/hp_color_laserjet_cp3505.png Xshare/hplip/data/images/devices/hp_color_laserjet_cp3525.png Xshare/hplip/data/images/devices/hp_color_laserjet_cp4005.png Xshare/hplip/data/images/devices/hp_color_laserjet_cp6015.png Xshare/hplip/data/images/devices/hp_deskjet_9300.png Xshare/hplip/data/images/devices/hp_deskjet_f4200.png Xshare/hplip/data/images/devices/hp_laserjet_3050.png Xshare/hplip/data/images/devices/hp_laserjet_m2727_mfp.png Xshare/hplip/data/images/devices/hp_laserjet_p2015.png Xshare/hplip/data/images/devices/hp_photosmart_b8500_series.png Xshare/hplip/data/images/devices/laserjet_2410.png Xshare/hplip/data/images/devices/officejet_4200_series.png Xshare/hplip/data/images/devices/officejet_500.png Xshare/hplip/data/images/devices/officejet_5500_series.png Xshare/hplip/data/images/devices/officejet_5600.png Xshare/hplip/data/images/devices/officejet_j3600_series.png Xshare/hplip/data/images/devices/officejet_j5500_series.png Xshare/hplip/data/images/devices/officejet_k550.png Xshare/hplip/data/images/devices/officejet_k80.png Xshare/hplip/data/images/devices/photosmart_7150.png Xshare/hplip/data/images/devices/photosmart_7900_series.png Xshare/hplip/data/images/devices/photosmart_a610.png Xshare/hplip/data/images/devices/photosmart_a820_series.png Xshare/hplip/data/images/devices/psc_1100_series.png Xshare/hplip/data/images/devices/psc_1610.png Xshare/hplip/data/images/devices/psc_2300_series.png Xshare/hplip/data/images/other/aio_align.png Xshare/hplip/data/images/other/align10.png Xshare/hplip/data/images/other/clean.png Xshare/hplip/data/images/other/color_adj.png Xshare/hplip/data/images/other/confidential_coverpage.png Xshare/hplip/data/images/other/confidential_title.png Xshare/hplip/data/images/other/fax.png Xshare/hplip/data/images/other/fax2.png Xshare/hplip/data/images/other/generic_coverpage.png Xshare/hplip/data/images/other/generic_title.png Xshare/hplip/data/images/other/h-kc-2.png Xshare/hplip/data/images/other/h-kc-3.png Xshare/hplip/data/images/other/hp-tux-printer.png Xshare/hplip/data/images/other/load_paper.png Xshare/hplip/data/images/other/opensource-75x65.png Xshare/hplip/data/images/other/panel_lcd.png Xshare/hplip/data/images/other/pens.png Xshare/hplip/data/images/other/powered_by_python.png Xshare/hplip/data/images/other/standard_coverpage.png Xshare/hplip/data/images/other/type4_color_patch.png Xshare/hplip/data/images/other/type4_gray_patch.png Xshare/hplip/data/images/other/urgent_coverpage.png Xshare/hplip/data/images/other/urgent_title.png Xshare/hplip/data/images/other/v-c-2.png Xshare/hplip/data/images/other/v-c-3.png Xshare/hplip/data/images/other/v-k-2.png Xshare/hplip/data/images/other/v-k-3.png Xshare/hplip/data/images/other/v-kc-2.png Xshare/hplip/data/images/other/v-kc-3.png Xshare/hplip/data/images/other/zca.png Xshare/hplip/data/ldl/cb2pcal.ldl.gz Xshare/hplip/data/ldl/cb2pcal_done.ldl.gz Xshare/hplip/data/ldl/cbbcal.ldl.gz Xshare/hplip/data/ldl/cbccal.ldl.gz Xshare/hplip/data/ldl/cbccal_done.ldl.gz Xshare/hplip/data/ldl/cbcpcal.ldl.gz Xshare/hplip/data/ldl/cbpcal.ldl.gz Xshare/hplip/data/localization/hplip_de.qm Xshare/hplip/data/localization/hplip_es.qm Xshare/hplip/data/localization/hplip_fr.qm Xshare/hplip/data/localization/hplip_it.qm Xshare/hplip/data/localization/hplip_pt.qm Xshare/hplip/data/localization/hplip_ru.qm Xshare/hplip/data/localization/hplip_zh.qm Xshare/hplip/data/models/models.dat Xshare/hplip/data/pcl/align1_8xx.pcl.gz Xshare/hplip/data/pcl/align1_9xx.pcl.gz Xshare/hplip/data/pcl/align2_8xx.pcl.gz Xshare/hplip/data/pcl/align2_9xx.pcl.gz Xshare/hplip/data/pcl/align3_8xx.pcl.gz Xshare/hplip/data/pcl/align3_9xx.pcl.gz Xshare/hplip/data/pcl/align4_450.pcl.gz Xshare/hplip/data/pcl/align4_8xx.pcl.gz Xshare/hplip/data/pcl/align5_8xx.pcl.gz Xshare/hplip/data/pcl/align6_450.pcl.gz Xshare/hplip/data/pcl/colorcal1_450.pcl.gz Xshare/hplip/data/pcl/colorcal2_450.pcl.gz Xshare/hplip/data/pcl/crbcal.pcl.gz Xshare/hplip/data/pcl/crcaldone.pcl.gz Xshare/hplip/data/pcl/crcbcal.pcl.gz Xshare/hplip/data/pcl/crccal.pcl.gz Xshare/hplip/data/pcl/crcpcal.pcl.gz Xshare/hplip/data/pcl/crpcal.pcl.gz Xshare/hplip/data/ps/clean_page.pdf.gz Xshare/hplip/data/ps/testpage.ps.gz Xshare/hplip/devicesetup.py Xshare/hplip/fab.py Xshare/hplip/fax/__init__.py Xshare/hplip/fax/coverpages.py Xshare/hplip/fax/fax.py Xshare/hplip/fax/faxdevice.py Xshare/hplip/fax/pmlfax.py Xshare/hplip/fax/soapfax.py Xshare/hplip/faxsetup.py Xshare/hplip/firmware.py Xshare/hplip/hpdio.py Xshare/hplip/hpssd.py Xshare/hplip/info.py Xshare/hplip/installer/__init__.py Xshare/hplip/installer/core_install.py Xshare/hplip/installer/dcheck.py Xshare/hplip/installer/distros.dat Xshare/hplip/levels.py Xshare/hplip/linefeedcal.py Xshare/hplip/makecopies.py Xshare/hplip/makeuri.py Xshare/hplip/pcard/__init__.py Xshare/hplip/pcard/photocard.py Xshare/hplip/pkservice.py Xshare/hplip/plugin.py Xshare/hplip/pqdiag.py Xshare/hplip/print.py Xshare/hplip/printsettings.py Xshare/hplip/prnt/__init__.py Xshare/hplip/prnt/colorcal.py Xshare/hplip/prnt/cups.py Xshare/hplip/prnt/ldl.py Xshare/hplip/prnt/pcl.py Xshare/hplip/probe.py Xshare/hplip/query.py Xshare/hplip/scan.py Xshare/hplip/scan/__init__.py Xshare/hplip/scan/sane.py Xshare/hplip/sendfax.py Xshare/hplip/setup.py Xshare/hplip/systray.py Xshare/hplip/testpage.py Xshare/hplip/timedate.py Xshare/hplip/toolbox.py Xshare/hplip/ui4/__init__.py Xshare/hplip/ui4/aboutdialog.py Xshare/hplip/ui4/aboutdialog_base.py Xshare/hplip/ui4/aligndialog.py Xshare/hplip/ui4/aligndialog_base.py Xshare/hplip/ui4/cleandialog.py Xshare/hplip/ui4/cleandialog_base.py Xshare/hplip/ui4/colorcaldialog.py Xshare/hplip/ui4/colorcaldialog_base.py Xshare/hplip/ui4/devicesetupdialog.py Xshare/hplip/ui4/devicesetupdialog_base.py Xshare/hplip/ui4/deviceuricombobox.py Xshare/hplip/ui4/devmgr5.py Xshare/hplip/ui4/devmgr5_base.py Xshare/hplip/ui4/fabgrouptable.py Xshare/hplip/ui4/fabnametable.py Xshare/hplip/ui4/fabwindow.py Xshare/hplip/ui4/fabwindow_base.py Xshare/hplip/ui4/faxsetupdialog.py Xshare/hplip/ui4/faxsetupdialog_base.py Xshare/hplip/ui4/filetable.py Xshare/hplip/ui4/firmwaredialog.py Xshare/hplip/ui4/firmwaredialog_base.py Xshare/hplip/ui4/infodialog.py Xshare/hplip/ui4/infodialog_base.py Xshare/hplip/ui4/linefeedcaldialog.py Xshare/hplip/ui4/linefeedcaldialog_base.py Xshare/hplip/ui4/loadpapergroupbox.py Xshare/hplip/ui4/makecopiesdialog.py Xshare/hplip/ui4/makecopiesdialog_base.py Xshare/hplip/ui4/mimetypesdialog.py Xshare/hplip/ui4/mimetypesdialog_base.py Xshare/hplip/ui4/nodevicesdialog.py Xshare/hplip/ui4/nodevicesdialog_base.py Xshare/hplip/ui4/plugindialog.py Xshare/hplip/ui4/plugindialog_base.py Xshare/hplip/ui4/pluginlicensedialog.py Xshare/hplip/ui4/pluginlicensedialog_base.py Xshare/hplip/ui4/pqdiagdialog.py Xshare/hplip/ui4/pqdiagdialog_base.py Xshare/hplip/ui4/printdialog.py Xshare/hplip/ui4/printdialog_base.py Xshare/hplip/ui4/printernamecombobox.py Xshare/hplip/ui4/printsettingsdialog.py Xshare/hplip/ui4/printsettingsdialog_base.py Xshare/hplip/ui4/printsettingstoolbox.py Xshare/hplip/ui4/printtestpagedialog.py Xshare/hplip/ui4/printtestpagedialog_base.py Xshare/hplip/ui4/sendfaxdialog.py Xshare/hplip/ui4/sendfaxdialog_base.py Xshare/hplip/ui4/settingsdialog.py Xshare/hplip/ui4/settingsdialog_base.py Xshare/hplip/ui4/setupdialog.py Xshare/hplip/ui4/setupdialog_base.py Xshare/hplip/ui4/systemtray.py Xshare/hplip/ui4/systrayframe.py Xshare/hplip/ui4/systrayframe_base.py Xshare/hplip/ui4/ui_utils.py Xshare/hplip/unload.py Xshare/ppd/HP/HP-Fax-hplip.ppd.gz Xshare/ppd/HP/HP-Fax2-hplip.ppd.gz Xshare/ppd/HP/hp-2000c-hpijs.ppd.gz Xshare/ppd/HP/hp-2500c-hpijs.ppd.gz Xshare/ppd/HP/hp-910-hpijs.ppd.gz Xshare/ppd/HP/hp-915-hpijs.ppd.gz Xshare/ppd/HP/hp-business_inkjet_1000-hpijs.ppd.gz Xshare/ppd/HP/hp-business_inkjet_1100-hpijs.ppd.gz Xshare/ppd/HP/hp-business_inkjet_1200-hpijs.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2200-hpijs.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2230-hpijs.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2250-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2250-ps.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2280-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2280-ps.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2300-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2300-ps.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2600-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2600-ps.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2800-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-business_inkjet_2800-ps.ppd.gz Xshare/ppd/HP/hp-business_inkjet_3000-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-business_inkjet_3000-ps.ppd.gz Xshare/ppd/HP/hp-cm8050_mfp_with_edgeline-ps.ppd.gz Xshare/ppd/HP/hp-cm8060_mfp_with_edgeline-ps.ppd.gz Xshare/ppd/HP/hp-color_inkjet_cp1700-hpijs.ppd.gz Xshare/ppd/HP/hp-color_inkjet_printer_cp1700-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_1600-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2500-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2500-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2500_series-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2550_series-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2600n-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2605-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2605dn-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2605dtn-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2700-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2700n-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2800-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2820-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2830-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_2840-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3000-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3000-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3500-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3500n-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3550-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3550n-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3600-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3700-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3700-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3700n-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3700n-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3800-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_3800-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4500-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4500-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4550-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4550-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4600-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4600-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4600_series-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4600_series-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4610-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4610-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4650-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4650-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4700-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4700-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4730mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_4730mfp-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_5-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_5500-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_5500-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_5550-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_5550-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_5m-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_5m-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_8500-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_8500-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_8550-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_8550-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_9500-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_9500-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_9500_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_9500_mfp-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm1015-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm1017-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm1312_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm1312_mfp-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm1312nfi_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm1312nfi_mfp-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm2320_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm2320_mfp-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm2320fxi_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm2320fxi_mfp-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm2320n_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm2320n_mfp-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm2320nf_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm2320nf_mfp-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm3530_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm3530_mfp-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm4730_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm4730_mfp-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm6030_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm6030_mfp-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cm6040_mfp-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp1215-hpijs.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp1514n-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp1514n-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp1515n-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp1515n-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp1518ni-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp1518ni-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp2025-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp2025-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp2025dn-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp2025dn-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp2025n-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp2025n-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp2025x-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp2025x-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp3505-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp3505-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp3525-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp3525-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp4005-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp4005-ps.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp6015-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-color_laserjet_cp6015-ps.ppd.gz Xshare/ppd/HP/hp-cp1160-hpijs.ppd.gz Xshare/ppd/HP/hp-designjet_4020ps-ps.ppd.gz Xshare/ppd/HP/hp-designjet_4520mfp-ps.ppd.gz Xshare/ppd/HP/hp-designjet_4520ps-ps.ppd.gz Xshare/ppd/HP/hp-deskjet_1100-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_1120-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_1125-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_1200c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_1220c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_1280-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_1600c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_1600cm-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_1600cn-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3320-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3325-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3420-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3425-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3450-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3500-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3550-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3600-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3650-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3740-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3810-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3816-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3819-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3820-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3822-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3840-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3870-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3900-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3910-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3920-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_3940-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_400-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_400l-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_460-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_500-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_500c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_505j-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_510-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5100-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_520-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_540-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_550c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5550-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5551-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5552-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5600-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5650-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5652-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5700-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5800-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5850-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_5900_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_600-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_610c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_610cl-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_6120-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_6122-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_6127-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_612c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_630c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_632c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_640c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_648c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_6500-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_656c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_660-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_6600-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_670-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_670tv-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_672c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_680-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_6800-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_682-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_690-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_690c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_692-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_693-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_694-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_6940_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_695-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_697-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_6980_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_810c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_812c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_815c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_816c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_825c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_830c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_832c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_840c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_841c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_842c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_843c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_845c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_850c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_855c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_870c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_880c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_882c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_890c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_895c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_916c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_920c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_9300-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_930c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_932c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_933c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_934c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_935c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_940c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_948c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_950c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_952c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_955c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_957c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_959c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_9600-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_960c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_970c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_975c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_9800-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_980c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_990c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_995c-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_d1300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_d1400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_d1500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_d2300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_d2400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_d2500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_d4100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_d4200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_d4300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_d730-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_f2100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_f2200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_f300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_f4100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_f4200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_f4210_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_f4213_series-hpijs.ppd.gz Xshare/ppd/HP/hp-deskjet_f735-hpijs.ppd.gz Xshare/ppd/HP/hp-dj350-hpijs.ppd.gz Xshare/ppd/HP/hp-dj450-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1000-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1005_series-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1010-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1012-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1015-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1018-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1020-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1022-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_1022-hpijs-zjs.ppd.gz Xshare/ppd/HP/hp-laserjet_1022n-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_1022n-hpijs-zjs.ppd.gz Xshare/ppd/HP/hp-laserjet_1022nw-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_1022nw-hpijs-zjs.ppd.gz Xshare/ppd/HP/hp-laserjet_1100-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1100a-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1100xi-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1150-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1160-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1160_series-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1200-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_1200-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_1200n-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1200n-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_1220-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_1220-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_1220se-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1220se-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_1300-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_1300-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_1300n-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_1300n-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_1300xi-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_1300xi-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_1320-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1320-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_1320_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_1320_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_1320n-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1320n-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_1320nw-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1320nw-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_1320tn-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_1320tn-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_2100-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_2100-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_2100_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_2100_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_2200-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_2200-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_2200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_2200_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_2300-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_2300-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_2300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_2300_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_2410-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_2410-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_2420-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_2420-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_2430-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_2430-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3015-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_3015-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3020-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_3020-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3030-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_3030-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3050-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_3050-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3052-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_3052-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3055-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_3100-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_3150-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_3200-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_3200-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3200_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3200m-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_3200m-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3200se-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_3200se-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3300_3310_3320-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_3300_3310_3320-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3330-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_3380-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_3380-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3390-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_3390-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_3392-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_4-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4000_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4000_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4050_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4050_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4100_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4100_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4100_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4100_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4150_series-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_4200-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4200-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4240-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4240-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4250-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4250-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4300-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4300-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4345_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4345_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4350-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4350-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4_plus-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4_plus-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4l-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_4ml-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_4ml-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4mp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4mp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4si-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4si-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_4v-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_4v-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_5000-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_5000-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_5000_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_5000_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_5100_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_5100_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_5200-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_5200-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_5200l-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_5200l-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_5200lx-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_5200lx-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_5l-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_5mp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_5mp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_5p-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_5p-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_5si-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_5si-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_5si_mopier-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_5si_mopier-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_6l-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_6mp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_6mp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_6p-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_6p-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_8000-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_8000-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_8000_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_8000_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_8100_mfp-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_8100_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_8100_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_8100_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_8150_mfp-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_8150_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_8150_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_9000_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_9000_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_9000_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_9000_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_9040-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_9040-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_9040_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_9040_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_9050-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_9050-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_9050_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_9050_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_9055mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_9055mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_9065mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_9065mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m1005-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_m1120_mfp-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_m1120n_mfp-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_m1319f_mfp-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_m1522_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m1522n_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m1522nf_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_m1522nf_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m2727_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_m2727_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m2727nf_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m2727nfs_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m3027_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_m3027_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m3035_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_m3035_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m4345_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_m4345_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m5025_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_m5025_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m5035_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_m5035_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m9040_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_m9040_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_m9050_mfp-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_m9050_mfp-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p1005-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p1006-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p1007-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p1008-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p1009-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p1505-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p1505n-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p1505n-hpijs-zxs.ppd.gz Xshare/ppd/HP/hp-laserjet_p2014-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p2014-hpijs-zxs.ppd.gz Xshare/ppd/HP/hp-laserjet_p2014n-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p2014n-hpijs-zxs.ppd.gz Xshare/ppd/HP/hp-laserjet_p2015_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p2015_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p2015d_series-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p2015dn_series-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p2015dn_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p2015n_series-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p2015n_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p2015x_series-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p2015x_series-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p2035-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p2035-hpijs-zjs.ppd.gz Xshare/ppd/HP/hp-laserjet_p2035n-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p2035n-hpijs-zjs.ppd.gz Xshare/ppd/HP/hp-laserjet_p2055-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p2055-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p2055d-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p2055d-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p2055dn-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p2055dn-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p2055x-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p2055x-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p3004-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p3004-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p3005-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-laserjet_p3005-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4014-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4014-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4014dn-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4014dn-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4014n-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4014n-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4015-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4015-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4015dn-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4015dn-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4015n-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4015n-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4015tn-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4015tn-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4015x-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4015x-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4515-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4515-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4515n-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4515n-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4515tn-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4515tn-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4515x-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4515x-ps.ppd.gz Xshare/ppd/HP/hp-laserjet_p4515xm-hpijs.ppd.gz Xshare/ppd/HP/hp-laserjet_p4515xm-ps.ppd.gz Xshare/ppd/HP/hp-mopier_240-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-mopier_240-ps.ppd.gz Xshare/ppd/HP/hp-mopier_320-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-mopier_320-ps.ppd.gz Xshare/ppd/HP/hp-officejet-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_4100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_4105-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_4115_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_4200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_4255-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_4300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_5100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_5105-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_5110-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_5110v-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_5500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_5600_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_6100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_6150_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_6200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_6300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_6500_e709a-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_6500_e709n-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_7100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_7200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_7300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_7400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_9100_series-hpijs-pcl3.ppd.gz Xshare/ppd/HP/hp-officejet_d_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_g55-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_g55xi-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_g85-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_g85xi-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_g95-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_h470-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_j3500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_j3600_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_j4500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_j4660_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_j4680_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_j5500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_j5700_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_j6400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_k60-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_k60xi-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_k7100-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_k80-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_k80xi-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_lx-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_1150c-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_1170c_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_8000_a809-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_8500_a909a-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_8500_a909g-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_8500_a909n-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_k5300-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_k5400-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_k550-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_k850-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_k8600-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_l7300-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_l7400-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_l7500-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_l7600-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_pro_l7700-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_r40-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_r40xi-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_r45-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_r60-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_r65-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_r80-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_r80xi-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_300-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_310-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_320-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_330-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_350-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_500-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_520-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_570-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_580-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_590-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_600-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_610-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_630-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_700-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_710-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_720-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_series_725-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_t_series-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_v30-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_v40-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_v40xi-hpijs.ppd.gz Xshare/ppd/HP/hp-officejet_v45-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_100-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_1115-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_1215-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_1218-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_130-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_1315-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_140_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_230-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_240_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_2570_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_2600_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_2700_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_3100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_3200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_320_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_3300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_330_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_370_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_380_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_420_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_470_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_7150-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_7200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_7345-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_7350-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_7400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_7550-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_7600_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_7700_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_7800_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_7900_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_8000_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_8100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_8200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_8400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_8700_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a310_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a320_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a430_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a440_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a510_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a520_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a530_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a610_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a620_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a630_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a710_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_a820_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_b8500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c309a_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c3100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c4100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c4200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c4340_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c4380_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c4400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c4500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c5100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c5200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c5300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c5500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c6100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c6200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c6300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c7100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c7200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_c8100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_d5060_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_d5100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_d5300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_d5400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_d6100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_d7100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_d7200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_d7300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_d7400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_d7500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_p1000-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_p1100-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_pro_b8300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-photosmart_pro_b8800_series-hpijs.ppd.gz Xshare/ppd/HP/hp-printer_scanner_copier_300-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_1000_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_1100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_1200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_1300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_1310_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_1358_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_1400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_1500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_1510_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_1600_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_2100_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_2150_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_2170_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_2200_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_2210_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_2300_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_2350_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_2400_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_2500_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_500-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_720-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_750-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_750xi-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_760-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_780-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_780xi-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_900_series-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_920-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_950-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_950vr-hpijs.ppd.gz Xshare/ppd/HP/hp-psc_950xi-hpijs.ppd.gz X@dirrm share/ppd/HP X@dirrm share/ppd X@dirrm share/hplip/ui4/plugins X@dirrm share/hplip/ui4 X@dirrm share/hplip/scan X@dirrm share/hplip/prnt X@dirrm share/hplip/pcard X@dirrm share/hplip/installer X@dirrm share/hplip/fax X@dirrm share/hplip/data/ps X@dirrm share/hplip/data/pcl X@dirrm share/hplip/data/models X@dirrm share/hplip/data/localization X@dirrm share/hplip/data/ldl X@dirrm share/hplip/data/images/other X@dirrm share/hplip/data/images/devices X@dirrm share/hplip/data/images/64x64 X@dirrm share/hplip/data/images/32x32 X@dirrm share/hplip/data/images/256x256 X@dirrm share/hplip/data/images/24x24 X@dirrm share/hplip/data/images/16x16 X@dirrm share/hplip/data/images/128x128 X@dirrm share/hplip/data/images X@dirrm share/hplip/data X@dirrm share/hplip/copier X@dirrm share/hplip/base X@dirrm share/hplip X@dirrm share/doc/hplip-3.9.4/styles X@dirrm share/doc/hplip-3.9.4/images X@dirrm share/doc/hplip-3.9.4 X@dirrm lib/sane X@dirrm etc/sane.d/dll.conf X@dirrm etc/sane.d X@dirrm etc/hp ef3e7f63841ae908ba397c2bef1fbad6 echo x - ./pkg-install sed 's/^X//' >./pkg-install << '27619a18dd23e2222544c05fd3a2dd62' X#!/bin/sh X XUSER=hplip XGROUP=operator XUID=116 X XDLLFILE=${PKG_PREFIX}/etc/sane.d/dll.conf X Xcase $2 in XPOST-INSTALL) X echo "hpaio" >> ${DLLFILE} X ;; X XPOST-DEINSTALL) X cp ${DLLFILE} ${DLLFILE}.orig X cat ${DLLFILE}.orig | grep -v hpaio > ${DLLFILE} X rm ${DLLFILE}.orig X ;; Xesac 27619a18dd23e2222544c05fd3a2dd62 exit >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed May 6 14:40:16 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 14:40:32 2009 Subject: ports/134269: [MAINTAINER] graphics/py-graph: update to 1.5.0 Message-ID: <200905061440.n46EeFRX042964@freefall.freebsd.org> Synopsis: [MAINTAINER] graphics/py-graph: update to 1.5.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 6 14:40:15 UTC 2009 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134269 From edwin at FreeBSD.org Wed May 6 14:40:21 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 14:40:33 2009 Subject: ports/134270: update port: print/hplip update to: 3.9.4 Message-ID: <200905061440.n46EeLCe043572@freefall.freebsd.org> Synopsis: update port: print/hplip update to: 3.9.4 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed May 6 14:40:20 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134270 From edwin at FreeBSD.org Wed May 6 14:50:03 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Wed May 6 14:50:26 2009 Subject: ports/134270: update port: print/hplip update to: 3.9.4 Message-ID: <200905061450.n46Eo3Vn055064@freefall.freebsd.org> The following reply was made to PR ports/134270; it has been noted by GNATS. From: Edwin Groothuis To: amistry@am-productions.biz Cc: bug-followup@FreeBSD.org Subject: Re: ports/134270: update port: print/hplip update to: 3.9.4 Date: Wed, 6 May 2009 14:40:18 UT Maintainer of print/hplip, Please note that PR ports/134270 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/134270 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From hanabana at mail.ru Wed May 6 14:50:04 2009 From: hanabana at mail.ru (Dmitry) Date: Wed May 6 14:50:26 2009 Subject: ports/134271: mail/popd POP3 server dies handling messages with very long lines (>64K) Message-ID: <200905061440.n46EeMIu049935@www.freebsd.org> >Number: 134271 >Category: ports >Synopsis: mail/popd POP3 server dies handling messages with very long lines (>64K) >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 May 06 14:50:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Dmitry >Release: FreeBSD 7.2 >Organization: home >Environment: FreeBSD mail.mcm.ru 7.2-STABLE FreeBSD 7.2-STABLE #0: Mon May 4 18:46:34 MSD 2009 root@mail.mcm.ru:/var/tmp/obj/usr/src/sys/MCM i386 >Description: mail/popd POP3 server makes assignment to NULL pointer if the length of the email line exceeds 65535 bytes. Attached patch solves this problem. It also hides annoying messages. >How-To-Repeat: >Fix: Patch attached with submission follows: --- lib/mbox_mbf.c.orig 2003-03-05 10:33:12.000000000 +0300 +++ lib/mbox_mbf.c 2009-05-06 18:21:18.000000000 +0400 @@ -151,7 +151,10 @@ bytes -= len; offset += len; q[buffleft] = '\0'; - p = strchr(buffer, '\n'); + if ((p = strchr(buffer, '\n')) == NULL) { + p = q + buffleft; + continue; + } } *p++ = '\0'; if (*line == '\0') { @@ -382,7 +385,14 @@ len = read(mbox->fd, offset, buffleft); bytes -= len; offset[len] = '\0'; - p = strchr(buffer, '\n'); + if ((p = strchr(buffer, '\n')) == NULL) { + p = offset + len; + if( (p - buffer) == 1 && buffer[0] == '.' ) + sendline(SEND_BUF, ".."); + else + sendline(SEND_BUF, "%s", buffer); + continue; + } } *p++ = '\0'; if (line[0] == '.' && line[1] == '\0') { --- lib/private.h.orig 2009-05-06 18:17:23.000000000 +0400 +++ lib/private.h 2009-05-06 18:16:24.000000000 +0400 @@ -26,6 +26,9 @@ * $Id: private.h,v 1.1 2001/10/10 09:48:11 ianf Exp $ */ +#undef NULL +#define NULL 0 + #define TRUE 1 #define FALSE 0 #define MAXINCR 20 --- src/config.h.orig 2002-11-20 13:27:49.000000000 +0300 +++ src/config.h 2009-05-06 18:12:46.000000000 +0400 @@ -26,6 +26,7 @@ * $Id: config.h,v 1.20 2002/11/20 10:27:49 ianf Exp $ */ +#undef NULL #define NULL 0 #define TRUE 1 #define FALSE 0 >Release-Note: >Audit-Trail: >Unformatted: From avg at icyb.net.ua Wed May 6 14:50:06 2009 From: avg at icyb.net.ua (Andriy Gapon) Date: Wed May 6 14:50:27 2009 Subject: ports/134272: New port: sysutils/flashrom - read/write/etc flash ROM chips Message-ID: <200905061432.n46EWw4Z063695@odyssey.starpoint.kiev.ua> >Number: 134272 >Category: ports >Synopsis: New port: sysutils/flashrom - read/write/etc flash ROM chips >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed May 06 14:50:05 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Andriy Gapon >Release: FreeBSD 7.2-PRERELEASE amd64 >Organization: >Environment: >Description: A utility from coreboot (formerly linuxbios) project to read/write/etc contents of flash rom chips. E.g. you can read or write a BIOS image or some other kind of firmware. More at: http://www.coreboot.org/Flashrom One note is that I am not sure what archs are really supported, I used this tool on i386 and amd64. >How-To-Repeat: >Fix: --- flashrom.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: # # flashrom # flashrom/pkg-descr # flashrom/Makefile # flashrom/distinfo # flashrom/files # flashrom/files/patch-Makefile # echo c - flashrom mkdir -p flashrom > /dev/null 2>&1 echo x - flashrom/pkg-descr sed 's/^X//' >flashrom/pkg-descr << '01b2cb5ca00077b0d926018fdade85f3' Xflashrom is a utility for reading, writing, verifying and Xerasing flash ROM chips. XIt's often used to flash BIOS/coreboot/firmware images. X XWWW: http://www.coreboot.org/Flashrom 01b2cb5ca00077b0d926018fdade85f3 echo x - flashrom/Makefile sed 's/^X//' >flashrom/Makefile << 'b2ef95f3b0c23b9d15f3366712e880b7' X# New ports collection makefile for: flashrom X# Date created: 2009-05-05 X# Whom: Andriy Gapon X# X# $FreeBSD$ X# X XPORTNAME= flashrom XPORTVERSION= 0.9.0 XCATEGORIES= sysutils XMASTER_SITES= http://qa.coreboot.org/releases/ X XMAINTAINER= avg@icyb.net.ua XCOMMENT= Utility for reading/writing/verifying/erasing flash ROM chips X XLIB_DEPENDS+= pci.2:${PORTSDIR}/devel/libpci X XUSE_GMAKE= yes X XPLIST_FILES= sbin/flashrom XMAN8= flashrom.8 X X.include b2ef95f3b0c23b9d15f3366712e880b7 echo x - flashrom/distinfo sed 's/^X//' >flashrom/distinfo << '6d35ba5b4c593ce096787bc4eb4ad180' XMD5 (flashrom-0.9.0.tar.gz) = 2211590202aead416eb649c9348b35b3 XSHA256 (flashrom-0.9.0.tar.gz) = ed47a2a3b46ea2191d46cca298bdbaefa5e307cfee9a3ff03bc67b6190cefc7c XSIZE (flashrom-0.9.0.tar.gz) = 72150 6d35ba5b4c593ce096787bc4eb4ad180 echo c - flashrom/files mkdir -p flashrom/files > /dev/null 2>&1 echo x - flashrom/files/patch-Makefile sed 's/^X//' >flashrom/files/patch-Makefile << 'a54dd89ffef6b526280d8815a0f7bf9d' X--- Makefile.orig 2009-05-05 20:19:35.275615799 +0300 X+++ Makefile 2009-05-05 20:19:52.947719074 +0300 X@@ -72,8 +72,7 @@ X X install: $(PROGRAM) X $(INSTALL) $(PROGRAM) $(PREFIX)/sbin X- mkdir -p $(PREFIX)/share/man/man8 X- $(INSTALL) $(PROGRAM).8 $(PREFIX)/share/man/man8 X+ $(INSTALL) $(PROGRAM).8 $(PREFIX)/man/man8 X X .PHONY: all clean distclean dep pciutils X a54dd89ffef6b526280d8815a0f7bf9d exit --- flashrom.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed May 6 14:50:18 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 14:50:27 2009 Subject: ports/134271: mail/popd POP3 server dies handling messages with very long lines (>64K) Message-ID: <200905061450.n46EoIM0056539@freefall.freebsd.org> Synopsis: mail/popd POP3 server dies handling messages with very long lines (>64K) State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed May 6 14:50:17 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134271 From edwin at FreeBSD.org Wed May 6 15:00:11 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Wed May 6 15:00:21 2009 Subject: ports/134271: mail/popd POP3 server dies handling messages with very long lines (>64K) Message-ID: <200905061500.n46F0A2H068108@freefall.freebsd.org> The following reply was made to PR ports/134271; it has been noted by GNATS. From: Edwin Groothuis To: ian@freislich.nom.za Cc: bug-followup@FreeBSD.org Subject: Re: ports/134271: mail/popd POP3 server dies handling messages with very long lines (>64K) Date: Wed, 6 May 2009 14:50:15 UT Maintainer of mail/popd, Please note that PR ports/134271 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/134271 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From villa.alberto at gmail.com Wed May 6 15:10:01 2009 From: villa.alberto at gmail.com (Alberto Villa) Date: Wed May 6 15:10:19 2009 Subject: ports/134273: [patch] multimedia/ffmpeg - avoid crash in multimedia/kdenlive Message-ID: <200905061505.n46F57IW071029@www.freebsd.org> >Number: 134273 >Category: ports >Synopsis: [patch] multimedia/ffmpeg - avoid crash in multimedia/kdenlive >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 May 06 15:10:00 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alberto Villa >Release: FreeBSD 7-STABLE >Organization: >Environment: FreeBSD echo.hoth 7.2-STABLE FreeBSD 7.2-STABLE #4: Mon May 4 14:19:14 CEST 2009 root@echo.hoth:/usr/obj/usr/src/sys/TPR60 i386 >Description: update libavformat/avidec.c to avoid a crash in inigo, the mlt renderer used by multimedia/kdenlive >How-To-Repeat: import a clip in kdenlive and sometimes this will result in a segmentation fault >Fix: here's the patch to be put in files/ (it has been taken from a new svn version of ffmpeg, so it's code made in ffmpeg and just works) Patch attached with submission follows: --- libavformat/avidec.c.old 2008-10-16 10:30:37.000000000 +0000 +++ libavformat/avidec.c 2008-10-16 10:32:22.000000000 +0000 @@ -1026,8 +1026,9 @@ continue; // assert(st2->codec->block_align); - assert(st2->time_base.den == ast2->rate); - assert(st2->time_base.num == ast2->scale); + assert((int64_t)st2->time_base.num*ast2->rate == (int64_t)st2->time_base.den*ast2->scale); +// assert(st2->time_base.den == ast2->rate); +// assert(st2->time_base.num == ast2->scale); index = av_index_search_timestamp( st2, av_rescale(timestamp, st2->time_base.den*(int64_t)st->time_base.num, st->time_base.den * (int64_t)st2->time_base.num), >Release-Note: >Audit-Trail: >Unformatted: From mldodson at comcast.net Wed May 6 15:10:02 2009 From: mldodson at comcast.net (M. L. Dodson) Date: Wed May 6 15:10:19 2009 Subject: ports/134274: maintainer update of lang/g95 Message-ID: <200905061509.n46F9OgQ072704@www.freebsd.org> >Number: 134274 >Category: ports >Synopsis: maintainer update of lang/g95 >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 May 06 15:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: M. L. Dodson >Release: 7.2-RELEASE >Organization: activesitedynamics.com >Environment: FreeBSD glycine.activesitedynamics.com 7.2-RELEASE FreeBSD 7.2-RELEASE #0: Mon May 4 10:37:49 CDT 2009 mldodson@glycine.activesitedynamics.com:/usr/obj/usr/src/sys/GENERIC i386 >Description: I am the current maintainer of the lang/g95 port. This updates the port to a recent snapshot. I am hosting the snapshot as indicated in the Makefile and will continue to do so for approximately 6 months. Please find an alternative hosting arrangement before then. I am also resigning as maintainer of this port, and I have assigned the maintainership to ports@freebsd.org in the Makefile. Please reassign as you see fit. I find I no longer use g95 as gfortran has become sufficiently mature to satisfy all my needs, so my maintainership of this port is problematic. My email address is wrong in the current port Makefile. It is correct in the new Makefile. I doubt email will get to me at the old address. FYI, the correct email, as indicated in this send-pr, is mldodson@comcast.net >How-To-Repeat: NA >Fix: See attached patch. Patch attached with submission follows: diff -ruN g95-bak/Makefile g95/Makefile --- g95/Makefile.orig 2008-08-21 01:17:29.000000000 -0500 +++ g95/Makefile 2009-05-04 15:16:37.000000000 -0500 @@ -8,20 +8,18 @@ PORTNAME= g95 PORTVERSION= ${G95VERSION}.${SNAPDATE} CATEGORIES= lang -MASTER_SITES= http://ftp.g95.org/v0.9/:g95 \ - ${MASTER_SITE_LOCAL}:g95 \ +MASTER_SITES= http://www.activesitedynamics.com/ \ ${MASTER_SITE_GCC:S/$/:gcc/} -MASTER_SITE_SUBDIR= releases/gcc-${GCC_VER}/:gcc \ - maho/g95/:g95 -DISTFILES= ${PORTNAME}_source.tgz:g95 \ +MASTER_SITE_SUBDIR= releases/gcc-${GCC_VER}/:gcc +DISTFILES= ${PORTNAME}_source.tgz \ gcc-core-${GCC_VER}${EXTRACT_SUFX}:gcc DIST_SUBDIR= g95/${SNAPDATE} -MAINTAINER= mldodson@comcast.net +MAINTAINER= ports@freebsd.org COMMENT= Fortran 95 compiler from g95.org -SNAPDATE= 20070129 -G95VERSION= 0.91 +SNAPDATE= 20090502 +G95VERSION= 0.92 WRKSRC= ${WRKDIR}/${PORTNAME}-${G95VERSION} USE_GMAKE= yes GNU_CONFIGURE= yes diff -ruN g95-bak/distinfo g95/distinfo --- g95/distinfo.orig 2007-01-29 19:03:17.000000000 -0600 +++ g95/distinfo 2009-05-04 13:52:14.000000000 -0500 @@ -1,6 +1,6 @@ -MD5 (g95/20070129/g95_source.tgz) = 94a7d1d00563be8e89aa165175e77256 -SHA256 (g95/20070129/g95_source.tgz) = b63ccbe9ae4c8f40f897c253792de7f440e47fdb14290e906b6c962b6c0c8e74 -SIZE (g95/20070129/g95_source.tgz) = 1319217 -MD5 (g95/20070129/gcc-core-4.0.3.tar.gz) = 090c507c9807e70b8404799a6fc570eb -SHA256 (g95/20070129/gcc-core-4.0.3.tar.gz) = 5f320b2d271af1084ec298cbde2256c5e7e7f7019adc2c52d2ff8593ac64a65f -SIZE (g95/20070129/gcc-core-4.0.3.tar.gz) = 20137297 +MD5 (g95/20090502/g95_source.tgz) = d0e4d124bc7e1d075b74e18b579a10e9 +SHA256 (g95/20090502/g95_source.tgz) = 46602e15249d31486f2c4036ac52f8b6c09c0040121f76e8e96e3d0fac4f87bd +SIZE (g95/20090502/g95_source.tgz) = 1352400 +MD5 (g95/20090502/gcc-core-4.0.3.tar.gz) = 090c507c9807e70b8404799a6fc570eb +SHA256 (g95/20090502/gcc-core-4.0.3.tar.gz) = 5f320b2d271af1084ec298cbde2256c5e7e7f7019adc2c52d2ff8593ac64a65f +SIZE (g95/20090502/gcc-core-4.0.3.tar.gz) = 20137297 diff -ruN g95-bak/files/patch-Makefile.in g95/files/patch-Makefile.in --- g95/files/patch-Makefile.in.orig 2007-01-29 19:03:17.000000000 -0600 +++ g95/files/patch-Makefile.in 2009-05-04 13:58:46.000000000 -0500 @@ -1,6 +1,6 @@ ---- Makefile.in.orig Wed Jul 12 02:20:14 2006 -+++ Makefile.in Sat Jan 20 20:42:53 2007 -@@ -57,6 +57,7 @@ +--- Makefile.in.orig 2009-02-17 10:46:06.000000000 -0600 ++++ Makefile.in 2009-05-04 13:58:03.000000000 -0500 +@@ -170,6 +170,7 @@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DEST_LIBDIR = @DEST_LIBDIR@ @@ -8,9 +8,9 @@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ -@@ -167,16 +168,16 @@ - +@@ -284,16 +285,16 @@ + @GCC_TRUE@g95_SOURCES = g95spec.c @GCC_TRUE@g95_CFLAGS = -DTARGET_NAME=\"@host@\" \ -@GCC_TRUE@ -DSTANDARD_EXEC_PREFIX=\"@DEST_LIBDIR@\" \ +@GCC_TRUE@ -DSTANDARD_EXEC_PREFIX=\"@DEST_LIBDIR@/\" \ @@ -29,26 +29,26 @@ @GCC_TRUE@ -DG95_SPEC=\"@G95_SPEC@\" \ @GCC_TRUE@ @G95_CFLAGS@ -@@ -395,6 +396,9 @@ +@@ -364,6 +365,9 @@ install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(DESTDIR)$(bindir) + test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + if test "X@DEST_DOCDIR@" != "X"; then \ + $(mkinstalldirs) @DEST_DOCDIR@ ; \ + fi @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ -@@ -2659,8 +2663,10 @@ - ranlib @DEST_LIBDIR@/libgcc_eh.a ; \ - ranlib @DEST_LIBDIR@/libgcc.a ; \ +@@ -1341,8 +1345,10 @@ + ranlib $(DESTDIR)@DEST_LIBDIR@/libgcc_eh.a ; \ + ranlib $(DESTDIR)@DEST_LIBDIR@/libgcc.a ; \ fi -- cp INSTALL @DEST_LIBDIR@/../../../.. -- cp G95Manual.pdf @DEST_LIBDIR@/../../../.. +- cp INSTALL $(DESTDIR)@DEST_LIBDIR@/../../../.. +- cp G95Manual.pdf $(DESTDIR)@DEST_LIBDIR@/../../../.. + if test "X@DEST_DOCDIR@" != "X"; then \ + $(INSTALL_DATA) INSTALL @DEST_DOCDIR@ ; \ + $(INSTALL_DATA) G95Manual.pdf @DEST_DOCDIR@ ; \ + fi if test -n "`ls @GCC_DIR@/g95/gcc/libgcc_s.*`" ; then \ (cd @GCC_DIR@/g95/gcc; tar cf - libgcc_s.*) | \ - (cd @DEST_LIBDIR@; tar xf -) ; \ + (cd $(DESTDIR)@DEST_LIBDIR@; tar xf -) ; \ diff -ruN g95-bak/files/patch-configure g95/files/patch-configure --- g95/files/patch-configure.orig 2007-01-29 19:03:17.000000000 -0600 +++ g95/files/patch-configure 2009-05-04 14:06:50.000000000 -0500 @@ -1,27 +1,128 @@ ---- configure.orig Tue Jan 9 16:28:10 2007 -+++ configure Tue Jan 30 09:38:36 2007 -@@ -308,7 +308,7 @@ +--- configure.orig 2008-08-19 20:05:52.000000000 -0500 ++++ configure 2009-05-04 14:05:43.000000000 -0500 +@@ -613,115 +613,8 @@ # include #endif" --ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM AWK SET_MAKE CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP build build_cpu build_vendor build_os host host_cpu host_vendor host_os EGREP ALLOCA GCC_DIR DEST_LIBDIR PREFIX EXTRA_OPTS PARTS LDADD0 GCC_TRUE GCC_FALSE GCC41_TRUE GCC41_FALSE TARGET_SYSTEM_ROOT DEFAULT_TARGET_VERSION DEFAULT_TARGET_MACHINE G95_SPEC G95_CFLAGS COMMON_LDFLAGS G95_WORD L INK_SPEC STARTFILE_PREFIX_2 LIBOBJS LTLIBOBJS' +-ac_subst_vars='SHELL +-PATH_SEPARATOR +-PACKAGE_NAME +-PACKAGE_TARNAME +-PACKAGE_VERSION +-PACKAGE_STRING +-PACKAGE_BUGREPORT +-exec_prefix +-prefix +-program_transform_name +-bindir +-sbindir +-libexecdir +-datarootdir +-datadir +-sysconfdir +-sharedstatedir +-localstatedir +-includedir +-oldincludedir +-docdir +-infodir +-htmldir +-dvidir +-pdfdir +-psdir +-libdir +-localedir +-mandir +-DEFS +-ECHO_C +-ECHO_N +-ECHO_T +-LIBS +-build_alias +-host_alias +-target_alias +-INSTALL_PROGRAM +-INSTALL_SCRIPT +-INSTALL_DATA +-am__isrc +-CYGPATH_W +-PACKAGE +-VERSION +-ACLOCAL +-AUTOCONF +-AUTOMAKE +-AUTOHEADER +-MAKEINFO +-install_sh +-STRIP +-INSTALL_STRIP_PROGRAM +-mkdir_p +-AWK +-SET_MAKE +-am__leading_dot +-AMTAR +-am__tar +-am__untar +-CC +-CFLAGS +-LDFLAGS +-CPPFLAGS +-ac_ct_CC +-EXEEXT +-OBJEXT +-DEPDIR +-am__include +-am__quote +-AMDEP_TRUE +-AMDEP_FALSE +-AMDEPBACKSLASH +-CCDEPMODE +-am__fastdepCC_TRUE +-am__fastdepCC_FALSE +-CPP +-build +-build_cpu +-build_vendor +-build_os +-host +-host_cpu +-host_vendor +-host_os +-GREP +-EGREP +-ALLOCA +-GCC_DIR +-DEST_LIBDIR +-PREFIX +-EXTRA_OPTS +-PARTS +-LDADD0 +-GCC_TRUE +-GCC_FALSE +-GCC41_TRUE +-GCC41_FALSE +-TARGET_SYSTEM_ROOT +-DEFAULT_TARGET_VERSION +-DEFAULT_TARGET_MACHINE +-G95_SPEC +-G95_CFLAGS +-COMMON_LDFLAGS +-G95_WORD +-LINK_SPEC +-STARTFILE_PREFIX_2 +-LIBOBJS +-LTLIBOBJS' +-ac_subst_files='' +ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO AMTAR install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM AWK SET_MAKE CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE CPP build build_cpu build_vendor build_os host host_cpu host_vendor host_os EGREP ALLOCA GCC_DIR DEST_DOCDIR DEST_LIBDIR PREFIX EXTRA_OPTS PARTS LDADD0 GCC_TRUE GCC_FALSE GCC41_TRUE GCC41_FALSE TARGET_SYSTEM_ROOT DEFAULT_TARGET_VERSION DEFAULT_TARGET_MACHINE G95_SPEC G95_CFLAGS COMMON_LDFLAG S G95_WORD LINK_SPEC STARTFILE_PREFIX_2 LIBOBJS LTLIBOBJS' - ac_subst_files='' - - # Initialize some variables set by options. -@@ -3994,6 +3994,7 @@ - echo "${ECHO_T}$gcc_version" >&6 ++ ac_subst_files='' + ac_precious_vars='build_alias + host_alias + target_alias +@@ -4877,6 +4770,7 @@ + echo "${ECHO_T}$gcc_version" >&6; } DEST_LIBDIR=$prefix/lib/gcc-lib/$host/$gcc_version + DEST_DOCDIR=${DOCSDIR} SAVE_DIR=`pwd` PREFIX=$prefix -@@ -6354,6 +6355,7 @@ - s,@ALLOCA@,$ALLOCA,;t t - s,@GCC_DIR@,$GCC_DIR,;t t - s,@DEST_LIBDIR@,$DEST_LIBDIR,;t t -+s,@DEST_DOCDIR@,$DEST_DOCDIR,;t t - s,@PREFIX@,$PREFIX,;t t - s,@EXTRA_OPTS@,$EXTRA_OPTS,;t t - s,@PARTS@,$PARTS,;t t >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed May 6 15:10:12 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 15:10:20 2009 Subject: ports/134273: [patch] multimedia/ffmpeg - avoid crash in multimedia/kdenlive Message-ID: <200905061510.n46FABY1081950@freefall.freebsd.org> Synopsis: [patch] multimedia/ffmpeg - avoid crash in multimedia/kdenlive Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-multimedia Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 6 15:10:11 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134273 From edwin at FreeBSD.org Wed May 6 15:10:18 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 15:10:34 2009 Subject: ports/134274: maintainer update of lang/g95 Message-ID: <200905061510.n46FAGZm082579@freefall.freebsd.org> Synopsis: maintainer update of lang/g95 Class-Changed-From-To: maintainer-update->change-request Class-Changed-By: edwin Class-Changed-When: Wed May 6 15:10:16 UTC 2009 Class-Changed-Why: Fix category (submitter is not maintainer) (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134274 From edwin at FreeBSD.org Wed May 6 15:10:22 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 15:10:34 2009 Subject: ports/134274: maintainer update of lang/g95 Message-ID: <200905061510.n46FAKXm083052@freefall.freebsd.org> Synopsis: maintainer update of lang/g95 State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Wed May 6 15:10:20 UTC 2009 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134274 From edwin at FreeBSD.org Wed May 6 15:20:04 2009 From: edwin at FreeBSD.org (Edwin Groothuis) Date: Wed May 6 15:20:10 2009 Subject: ports/134274: maintainer update of lang/g95 Message-ID: <200905061520.n46FK3qK095340@freefall.freebsd.org> The following reply was made to PR ports/134274; it has been noted by GNATS. From: Edwin Groothuis To: mldodson@houston.rr.com Cc: bug-followup@FreeBSD.org Subject: Re: ports/134274: maintainer update of lang/g95 Date: Wed, 6 May 2009 15:10:18 UT Maintainer of lang/g95, Please note that PR ports/134274 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/134274 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From uid at atnus.com Wed May 6 15:50:02 2009 From: uid at atnus.com (Rafal Szkodzinski) Date: Wed May 6 15:50:09 2009 Subject: ports/134275: [patch] print/foo2zjs - getweb problem Message-ID: <200905061545.n46FjYkY006493@www.freebsd.org> >Number: 134275 >Category: ports >Synopsis: [patch] print/foo2zjs - getweb problem >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 May 06 15:50:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Rafal Szkodzinski >Release: 7.2-STABLE i386 >Organization: >Environment: >Description: After installing foo2zjs, script about the name getweb contains incorrect hyperlinks. >How-To-Repeat: >Fix: Apply the file patch. Patch attached with submission follows: --- /usr/local/bin/getweb 2009-05-06 14:44:52.000000000 +0200 +++ getweb 2009-05-06 14:46:25.000000000 +0200 @@ -74,7 +74,7 @@ case "$1" in lj1000|1000) gettgz \ - http://foo2zjs.rkkda.com sihp1000.tar.gz \ + http://foo2zjs.rkkda.com/firmware/ sihp1000.tar.gz \ "" #echo "provided" #getexe \ @@ -84,7 +84,7 @@ ;; lj1005|1005) gettgz \ - http://foo2zjs.rkkda.com sihp1005.tar.gz \ + http://foo2zjs.rkkda.com/firmware/ sihp1005.tar.gz \ "" #echo "provided" #getexe \ @@ -94,12 +94,12 @@ ;; lj1018|1018) gettgz \ - http://foo2zjs.rkkda.com sihp1018.tar.gz \ + http://foo2zjs.rkkda.com/firmware/ sihp1018.tar.gz \ "" ;; lj1020|1020) gettgz \ - http://foo2zjs.rkkda.com sihp1020.tar.gz \ + http://foo2zjs.rkkda.com/firmware/ sihp1020.tar.gz \ "" ;; 2200dl|2200) @@ -112,7 +112,7 @@ ftp://ftp.minolta-qms.com/pub/crc/out_going/win m23dlicc.exe \ "*.icm" gettgz \ - http://foo2zjs.rkkda.com km2430.tar.gz \ + http://foo2zjs.rkkda.com/icm/ km2430.tar.gz \ "" ;; 2300dl_fw) @@ -138,20 +138,20 @@ ;; 2430) gettgz \ - http://foo2zjs.rkkda.com km2430.tar.gz \ + http://foo2zjs.rkkda.com/icm/ km2430.tar.gz \ "" ;; 2530|2490) gettgz \ - http://foo2lava.rkkda.com km2530.tar.gz \ + http://foo2lava.rkkda.com/icm/ km2530.tar.gz \ "" ;; 1600|2600n) gettgz \ - http://foo2hp.rkkda.com hpclj2600n.tar.gz \ + http://foo2hp.rkkda.com/icm/ hpclj2600n.tar.gz \ "" gettgz \ - http://foo2zjs.rkkda.com km2430.tar.gz \ + http://foo2zjs.rkkda.com/icm/ km2430.tar.gz \ "km2430_2.icm" ;; xPPD) >Release-Note: >Audit-Trail: >Unformatted: From edwin at FreeBSD.org Wed May 6 15:50:13 2009 From: edwin at FreeBSD.org (edwin@FreeBSD.org) Date: Wed May 6 15:50:19 2009 Subject: ports/134275: [patch] print/foo2zjs - getweb problem Message-ID: <200905061550.n46FoClu036967@freefall.freebsd.org> Synopsis: [patch] print/foo2zjs - getweb problem Responsible-Changed-From-To: freebsd-ports-bugs->acm Responsible-Changed-By: edwin Responsible-Changed-When: Wed May 6 15:50:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=134275 From skreuzer at FreeBSD.org Wed May 6 16:33:07 2009 From: skreuzer at FreeBSD.org (skreuzer@FreeBSD.org) Date: Wed May 6 16:33:13 2009 Subject: ports/134272: New port: sysutils/flashrom - read/write/etc flash ROM chips Message-ID: <200905061633.n46GX6YK003294@freefall.freebsd.org> Synopsis: New port: sysutils/flashrom - read/write/etc flash ROM chips Responsible-Changed-From-To: freebsd-ports-bugs->skreuzer Responsible-Changed-By: skreuzer Responsible-Changed-When: Wed May 6 16:33:06 UTC 2009 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=134272 From garga at FreeBSD.org Wed May 6 17:28:45 2009 From: garga at FreeBSD.org (garga@FreeBSD.org) Date: Wed May 6 17:28:52 2009 Subject: ports/134256: [FIX] net-im/mu-conference. Unbreak build with mysql Message-ID: <200905061728.n46HSj5M069348@freefall.freebsd.org> Synopsis: [FIX] net-im/mu-conference. Unbreak build with mysql Responsible-Changed-From-To: freebsd-ports-bugs->mm Responsible-Changed-By: garga Responsible-Changed-When: Wed May 6 17:28:37 UTC 2009 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=134256 From tkato432 at yahoo.com Wed May 6 18:10:02 2009 From: tkato432 at yahoo.com (KATO Tsuguru) Date: Wed May 6 18:10:32 2009 Subject: ports/134277: Update port: audio/abcmidi to 2009.03.17 Message-ID: <20090507030008.d5d2cefd.tkato432@yahoo.com> >Number: 134277 >Category: ports >Synopsis: Update port: audio/abcmidi to 2009.03.17 >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 May 06 18:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.1-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 2009.03.17 >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/abcmidi/Makefile audio/abcmidi/Makefile --- /usr/ports/audio/abcmidi/Makefile 2009-01-14 23:53:26.000000000 +0900 +++ audio/abcmidi/Makefile 2009-04-16 04:04:19.000000000 +0900 @@ -6,7 +6,7 @@ # PORTNAME= abcmidi -PORTVERSION= 2008.09.28 +PORTVERSION= 2009.03.17 CATEGORIES= audio MASTER_SITES= http://ifdo.pugmarks.com/~seymour/runabc/ DISTNAME= abcMIDI-${PORTVERSION:S/./-/g} diff -urN /usr/ports/audio/abcmidi/distinfo audio/abcmidi/distinfo --- /usr/ports/audio/abcmidi/distinfo 2009-01-14 23:53:26.000000000 +0900 +++ audio/abcmidi/distinfo 2009-04-16 04:08:39.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (abcMIDI-2008-09-28.zip) = a0426bd2cb3aed712fad6104b8632518 -SHA256 (abcMIDI-2008-09-28.zip) = 4e318517f2c96bdac8a5883d2110b875630787d7d1f8e2a807c3f8077c9cb109 -SIZE (abcMIDI-2008-09-28.zip) = 379856 +MD5 (abcMIDI-2009-03-17.zip) = e58ee677884bfc85fd3cd150179966c1 +SHA256 (abcMIDI-2009-03-17.zip) = 6005f5f527b7fc7eb6d68d0765a6179aac76a1d4db4ea7aee301bac24cb2cfa3 +SIZE (abcMIDI-2009-03-17.zip) = 380284 >Release-Note: >Audit-Trail: >Unformatted: From tkato432 at yahoo.com Wed May 6 18:10:02 2009 From: tkato432 at yahoo.com (KATO Tsuguru) Date: Wed May 6 18:10:32 2009 Subject: ports/134278: Update port: audio/mp3plot to 0.5.1 Message-ID: <20090507030011.c3382402.tkato432@yahoo.com> >Number: 134278 >Category: ports >Synopsis: Update port: audio/mp3plot to 0.5.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed May 06 18:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.1-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 0.5.1 >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/mp3plot/Makefile audio/mp3plot/Makefile --- /usr/ports/audio/mp3plot/Makefile 2008-09-07 14:52:58.000000000 +0900 +++ audio/mp3plot/Makefile 2009-05-05 02:57:46.000000000 +0900 @@ -6,24 +6,42 @@ # PORTNAME= mp3plot -DISTVERSION= 0.4.0a -PORTREVISION= 1 +DISTVERSION= 0.5.1 CATEGORIES= audio -MASTER_SITES= http://p.outlyer.net/mp3plot/files/ CENKES +MASTER_SITES= http://p.outlyer.net/mp3plot/files/ MAINTAINER= ports@FreeBSD.org COMMENT= Mp3 bitrate plot tool LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost +OPTIONS= GD "Enable support for GD library" on \ + IMAGEMAGICK "Enable support for Magick++" off + GNU_CONFIGURE= yes -CPPFLAGS= -I${LOCALBASE}/include -LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" + +MAN1= ${PORTNAME}.1 PLIST_FILES= bin/${PORTNAME} +CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} +LDFLAGS= -L${LOCALBASE}/lib ${PTHREAD_LIBS} + +.include + +.if defined(WITHOUT_GD) +CONFIGURE_ARGS+= --disable-gd +.else +LIB_DEPENDS+= gd.4:${PORTSDIR}/graphics/gd +.endif + +.if defined(WITH_IMAGEMAGICK) +LIB_DEPENDS+= Magick++.2:${PORTSDIR}/graphics/ImageMagick +.else +CONFIGURE_ARGS+= --disable-magick +.endif + post-patch: - @${REINPLACE_CMD} -e '/HAVE.*MAGICK=1/s|1|0|;/^#define HAVE.*MAGICK/s|1|0|;\ - /test.*==/s|==|=|;s/-O2//' ${WRKSRC}/configure + @${REINPLACE_CMD} -e '/bldtype_/s|-O2||g' ${WRKSRC}/configure -.include +.include diff -urN /usr/ports/audio/mp3plot/distinfo audio/mp3plot/distinfo --- /usr/ports/audio/mp3plot/distinfo 2007-06-12 19:32:45.000000000 +0900 +++ audio/mp3plot/distinfo 2009-05-05 02:34:32.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (mp3plot-0.4.0a.tar.gz) = 5b1189a6e524fa9ffdf73c37505de4df -SHA256 (mp3plot-0.4.0a.tar.gz) = 3c6e2fe90d399c300392ef81b714791591873f69508329cb957451d89c6eeddf -SIZE (mp3plot-0.4.0a.tar.gz) = 137150 +MD5 (mp3plot-0.5.1.tar.gz) = 20d1e6b21926b9d42412eae37fe1cf91 +SHA256 (mp3plot-0.5.1.tar.gz) = d368bcdefb4e25abef93aa7c323f23311e553170392b2d88322f4812d42c7303 +SIZE (mp3plot-0.5.1.tar.gz) = 197379 >Release-Note: >Audit-Trail: >Unformatted: From tkato432 at yahoo.com Wed May 6 18:10:02 2009 From: tkato432 at yahoo.com (KATO Tsuguru) Date: Wed May 6 18:10:33 2009 Subject: ports/134279: Update port: databases/libzdb to 2.5 Message-ID: <20090507030014.a3878b9f.tkato432@yahoo.com> >Number: 134279 >Category: ports >Synopsis: Update port: databases/libzdb to 2.5 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed May 06 18:10:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.1-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 2.5 >How-To-Repeat: >Fix: diff -urN /usr/ports/databases/libzdb/Makefile databases/libzdb/Makefile --- /usr/ports/databases/libzdb/Makefile 2009-03-15 01:13:06.000000000 +0900 +++ databases/libzdb/Makefile 2009-04-07 05:00:16.000000000 +0900 @@ -6,7 +6,7 @@ # PORTNAME= libzdb -PORTVERSION= 2.4 +PORTVERSION= 2.5 CATEGORIES= databases MASTER_SITES= http://www.tildeslash.com/libzdb/dist/ diff -urN /usr/ports/databases/libzdb/distinfo databases/libzdb/distinfo --- /usr/ports/databases/libzdb/distinfo 2009-03-15 01:13:06.000000000 +0900 +++ databases/libzdb/distinfo 2009-04-07 15:38:20.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (libzdb-2.4.tar.gz) = b4c4ba0090881d4714f7f3e56d6eadbd -SHA256 (libzdb-2.4.tar.gz) = 4536130adffa907924167a7b2b3b026eb1ec63456e26c6987ca6b4d7adbb80fa -SIZE (libzdb-2.4.tar.gz) = 608663 +MD5 (libzdb-2.5.tar.gz) = 780d6c3b4704159c0c5ce086387d81b2 +SHA256 (libzdb-2.5.tar.gz) = 2c1214f5ae8188a0f7c52f8d28131df586810d8301f1bca1b87ec220daace9b9 +SIZE (libzdb-2.5.tar.gz) = 566521 >Release-Note: >Audit-Trail: >Unformatted: From tkato432 at yahoo.com Wed May 6 18:10:03 2009 From: tkato432 at yahoo.com (KATO Tsuguru) Date: Wed May 6 18:10:34 2009 Subject: ports/134280: Update port: deskutils/qtm to 0.7.4.1 Message-ID: <20090507030017.57807073.tkato432@yahoo.com> >Number: 134280 >Category: ports >Synopsis: Update port: deskutils/qtm to 0.7.4.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed May 06 18:10:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.1-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 0.7.4.1 >How-To-Repeat: >Fix: diff -urN /usr/ports/deskutils/qtm/Makefile deskutils/qtm/Makefile --- /usr/ports/deskutils/qtm/Makefile 2009-03-25 15:20:32.000000000 +0900 +++ deskutils/qtm/Makefile 2009-04-28 00:37:21.000000000 +0900 @@ -6,8 +6,7 @@ # PORTNAME= qtm -PORTVERSION= 0.7.4 -PORTREVISION= 1 +PORTVERSION= 0.7.4.1 CATEGORIES= deskutils MASTER_SITES= SF/catkin @@ -30,7 +29,6 @@ MAN1= qtm.1 post-install: - @${STRIP_CMD} ${PREFIX}/bin/qtm .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for doc in Changelog INSTALL README diff -urN /usr/ports/deskutils/qtm/distinfo deskutils/qtm/distinfo --- /usr/ports/deskutils/qtm/distinfo 2009-03-15 01:13:28.000000000 +0900 +++ deskutils/qtm/distinfo 2009-04-27 22:44:01.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (qtm-0.7.4.tar.bz2) = c6d0a55adf12fb493c3b0f46f383bc16 -SHA256 (qtm-0.7.4.tar.bz2) = 75124426b2d6e3e5f036b1abe3e2cc1deecad40401bd148ac0b1722835688653 -SIZE (qtm-0.7.4.tar.bz2) = 153156 +MD5 (qtm-0.7.4.1.tar.bz2) = 117146c54784a78fecc7e81140eb1534 +SHA256 (qtm-0.7.4.1.tar.bz2) = 8c785681c7280b38f300dfadec4d275962ff4be7ca350f4d7b8e9d17ab247af4 +SIZE (qtm-0.7.4.1.tar.bz2) = 153236 >Release-Note: >Audit-Trail: >Unformatted: From tkato432 at yahoo.com Wed May 6 18:10:03 2009 From: tkato432 at yahoo.com (KATO Tsuguru) Date: Wed May 6 18:10:34 2009 Subject: ports/134281: Update port: editors/zile to 2.3.7 Message-ID: <20090507030020.b048310c.tkato432@yahoo.com> >Number: 134281 >Category: ports >Synopsis: Update port: editors/zile to 2.3.7 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed May 06 18:10:02 UTC 2009 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.1-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 2.3.7 >How-To-Repeat: >Fix: diff -urN /usr/ports/editors/zile/Makefile editors/zile/Makefile --- /usr/ports/editors/zile/Makefile 2009-03-15 01:16:00.000000000 +0900 +++ editors/zile/Makefile 2009-04-29 02:23:16.000000000 +0900 @@ -6,39 +6,29 @@ # PORTNAME= zile -PORTVERSION= 2.3.4 +PORTVERSION= 2.3.7 CATEGORIES= editors MASTER_SITES= GNU MAINTAINER= ports@FreeBSD.org COMMENT= Small emacs-like text editor -BUILD_DEPENDS= help2man:${PORTSDIR}/misc/help2man - -USE_LUA= 5.0+ -LUA_COMPS= lua:build USE_GMAKE= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= LIBS="-lgnuregex" \ - ac_cv_path_LUA="${LUA_CMD}" +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --without-included-regex MAN1= zile.1 PLIST_FILES= bin/zile %%DATADIR%%/FAQ %%DATADIR%%/dotzile.sample PLIST_DIRS= %%DATADIR%% +CPPFLAGS= -isystem /usr/include/gnu +LDFLAGS= -lgnuregex + post-patch: @${REINPLACE_CMD} -e \ - 's|||g ; \ - s|-pedantic||g' ${WRKSRC}/configure - @${REINPLACE_CMD} -e \ - 's|"regex\.h"||g' ${WRKSRC}/src/search.c + 's|-pedantic||g' ${WRKSRC}/configure @${REINPLACE_CMD} -e \ 's|: install-exec-local|:|g' ${WRKSRC}/lib/Makefile.in -pre-build: - @${RM} -f ${WRKSRC}/src/tbl_funcs.h - @(cd ${BUILD_WRKSRC}/src; ${SETENV} ${MAKE_ENV} ${GMAKE} \ - ${MAKE_FLAGS} ${MAKEFILE} tbl_funcs.h) - .include diff -urN /usr/ports/editors/zile/distinfo editors/zile/distinfo --- /usr/ports/editors/zile/distinfo 2009-03-15 01:16:00.000000000 +0900 +++ editors/zile/distinfo 2009-04-29 02:20:29.000000000 +0900 @@ -1,3 +1,3 @@ -MD5 (zile-2.3.4.tar.gz) = c296056172e99498f5e6459325f0c6b7 -SHA256 (zile-2.3.4.tar.gz) = dd85ae2312eb0e8d2b791b57856c51f2951b73d472f09ce6caa7af4b6f9140d4 -SIZE (zile-2.3.4.tar.gz) = 622075 +MD5 (zile-2.3.7.tar.gz) = 712f7d814efd18190c025d23f97a6902 +SHA256 (zile-2.3.7.tar.gz) = 41bf96ce96bb79c51fac376b521d4ffadefafad92a0d44db15a4426e89c7d111 +SIZE (zile-2.3.7.tar.gz) = 621989 >Release-Note: >Audit-Trail: >Unformatted: From tkato432 at yahoo.com Wed May 6 18:10:04 2009 From: tkato432 at yahoo.com (KATO Tsuguru) Date: Wed May 6 18:12:08 2009 Subject: ports/134282: Update port: finance/homebank to 4.0.3 Message-ID: <20090507030023.b99bfce9.tkato432@yahoo.com> >Number: 134282 >Category: ports >Synopsis: Update port: finance/homebank to 4.0.3 >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 May 06 18:10:03 UTC 2009 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: FreeBSD 7.1-RELEASE-p5 i386 >Organization: >Environment: >Description: - Update to version 4.0.3 New file: files/patch-src__import.c >How-To-Repeat: >Fix: diff -urN /usr/ports/finance/homebank/Makefile finance/homebank/Makefile --- /usr/ports/finance/homebank/Makefile 2009-03-19 15:16:45.000000000 +0900 +++ finance/homebank/Makefile 2009-05-05 05:19:02.000000000 +0900 @@ -6,38 +6,42 @@ # PORTNAME= homebank -PORTVERSION= 4.0.2 +PORTVERSION= 4.0.3 CATEGORIES= finance MASTER_SITES= http://homebank.free.fr/public/ MAINTAINER= ports@FreeBSD.org COMMENT= Manage your personal accounts at home -USE_GMAKE= yes -USE_GNOME= gnomeprefix gtk20 desktopfileutils librsvg2 +OPTIONS= OFX "Enable libOFX support" on + +USE_GNOME= desktopfileutils gnomehier gtk20 librs