From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 13:38:24 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 026E416A419; Sun, 17 Feb 2008 13:38:24 +0000 (UTC) (envelope-from djp@polands.org) Received: from hrndva-omtalb.mail.rr.com (hrndva-omtalb.mail.rr.com [71.74.56.123]) by mx1.freebsd.org (Postfix) with ESMTP id A018B13C465; Sun, 17 Feb 2008 13:38:23 +0000 (UTC) (envelope-from djp@polands.org) Received: from corinth.polands.org ([75.87.219.217]) by hrndva-omta02.mail.rr.com with ESMTP id <20080217132318.QQDR27223.hrndva-omta02.mail.rr.com@corinth.polands.org>; Sun, 17 Feb 2008 13:23:18 +0000 Received: from ammon.polands.org (ammon.polands.org [172.16.1.7]) by corinth.polands.org (8.13.8/8.13.8) with ESMTP id m1HDNHec075150; Sun, 17 Feb 2008 07:23:17 -0600 (CST) (envelope-from djp@polands.org) Received: from ammon.polands.org (localhost [127.0.0.1]) by ammon.polands.org (8.13.8/8.13.8) with ESMTP id m1HDNHhN072533; Sun, 17 Feb 2008 07:23:17 -0600 (CST) (envelope-from djp@ammon.polands.org) Received: (from djp@localhost) by ammon.polands.org (8.13.8/8.13.8/Submit) id m1HDNHbi072532; Sun, 17 Feb 2008 07:23:17 -0600 (CST) (envelope-from djp) Date: Sun, 17 Feb 2008 07:23:17 -0600 From: Doug Poland To: questions@freebsd.org Message-ID: <20080217132317.GC72400@polands.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11 X-Virus-Scanned: ClamAV 0.88.4/5840/Sat Feb 16 17:35:57 2008 on corinth.polands.org X-Virus-Status: Clean Cc: freebsd-ports@freebsd.org Subject: apache 2.2.8 authdbm woes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 13:38:24 -0000 Hello, For the past few days, I've been migrating a bunch of apache-1.3.41 vhosts to apache-2.2.8 (on the same machine, 6.3-RELEASE i386). Many of directories are protected with AuthType directives and I want to reuse the existing .dat files. After working successfully for more than a day with the original .dat files, apache-2.2.8 suddenly decides that format is not supported. Here's what the error log says: This function has not been implemented on this platform: could not open dbm (type DB) auth file: /usr/local/etc/apache22/auth/admin-passwords.dat I'm fairly certain that the beginning of the error messages coincided with the first modifications I made to the .dat files after copying them from /usr/local/etc/apache to /usr/local/etc/apache22. The syntax I used to modify the files were: dbmmanage admin-groups.dat add newAdminUser newAdminGroup dbmmanage admin-passwords.dat adduser newAdminUser I compiled apache-2.2.8 with the following options: make -DWITH_BDB -DWITH_BDB_BASE And have the following directives in the conf file: AuthType Basic AuthName "Authorized Users" AuthBasicProvider dbm AuthDBMType DB AuthDBMUserFile etc/apache22/auth/admin-passwords.dat AuthDBMGroupFile etc/apache22/auth/admin-groups.dat require group newAdminGroup In the apache-1.3.41 httpd.conf file, I used: AuthName "Authorized Users" AuthType Basic AuthDBUserFile /usr/local/etc/apache/admin-passwords.dat AuthDBGroupFile /usr/local/etc/apache/admin-groups.dat require group newAdminGroup This change in apache's behavior is very strange indeed. I tried copying the original .dat files and restarting apache, but to no avail. I also must admit that I'm a little confused between AuthDBM/AuthDB and and all the DBM/BDB options in FreeBSD's Make infrastructure Many thanks for your consideration and assistance. -- Regards, Doug From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 14:19:25 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27F5316A41A for ; Sun, 17 Feb 2008 14:19:25 +0000 (UTC) (envelope-from jdc@parodius.com) Received: from mx01.sc1.parodius.com (mx01.sc1.parodius.com [72.20.106.3]) by mx1.freebsd.org (Postfix) with ESMTP id 199C413C474 for ; Sun, 17 Feb 2008 14:19:25 +0000 (UTC) (envelope-from jdc@parodius.com) Received: by mx01.sc1.parodius.com (Postfix, from userid 1000) id 062E11CC038; Sun, 17 Feb 2008 06:19:25 -0800 (PST) Date: Sun, 17 Feb 2008 06:19:25 -0800 From: Jeremy Chadwick To: Doug Poland Message-ID: <20080217141925.GA51665@eos.sc1.parodius.com> References: <20080217132317.GC72400@polands.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080217132317.GC72400@polands.org> User-Agent: Mutt/1.5.16 (2007-06-09) Cc: questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: apache 2.2.8 authdbm woes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 14:19:25 -0000 On Sun, Feb 17, 2008 at 07:23:17AM -0600, Doug Poland wrote: > Hello, You're likely suffering from this: http://www.freebsd.org/cgi/query-pr.cgi?pr=119711 There were some recent changes to www/apache22 which specifically addressed the above: http://www.freebsd.org/cgi/cvsweb.cgi/ports/www/apache22/Makefile -- | Jeremy Chadwick jdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 15:27:54 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C80EC16A41A for ; Sun, 17 Feb 2008 15:27:54 +0000 (UTC) (envelope-from admin@lissyara.su) Received: from hosting.lissyara.su (hosting.lissyara.su [77.221.149.162]) by mx1.freebsd.org (Postfix) with ESMTP id 73E4413C447 for ; Sun, 17 Feb 2008 15:27:52 +0000 (UTC) (envelope-from admin@lissyara.su) Received: from [87.240.15.4] (port=64623 helo=ussr.lissyara.int.otradno.ru) by hosting.lissyara.su with esmtpa (Exim 4.69 (FreeBSD)) (envelope-from ) id 1JQl18-0007s1-QC; Sun, 17 Feb 2008 18:01:22 +0300 Message-ID: <47B84C42.40603@lissyara.su> Date: Sun, 17 Feb 2008 18:01:22 +0300 From: Alex Keda User-Agent: Thunderbird 2.0.0.9 (X11/20080209) MIME-Version: 1.0 To: Peter Jeremy References: <20080215135036.GA6988@blaxxtarz.evangelion.free> <20080216104809.GJ64299@server.vk2pj.dyndns.org> In-Reply-To: <20080216104809.GJ64299@server.vk2pj.dyndns.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Description: if spam count > 60 - this is spam X-Spam-Count: 0 X-Spam-Description: if spam count > 60 - this is spam X-Spam-Count: 0 X-Descriptions: powered by www.lissyara.su X-Bounce-ID: hosting.lissyara.su Cc: freebsd-ports Subject: Re: obexftp - call for testers X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 15:27:54 -0000 Peter Jeremy : > On Fri, Feb 15, 2008 at 02:50:36PM +0100, Dierk Sacher wrote: > >> This is a 'works for me' port. I've only been able to test it with >> 6.2-RELEASE on i386 with only one mobile over bluetooth. I did not test >> anything else (usb, IR ...). >> > > I wouldn't mind having obexftp to talk to my phone but unfortunately > this port doesn't work for me on 6.3-PRERELEASE/amd64 over bluetooth, > though that could be just that I'm not driving it correctly: > > turion# obexftp -b PeterPhone -v -x > Scanning for PeterPhone ... > Browsing PeterPhone ... > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect > turion# > > And hcidump shows no data so I suspect it's not even trying BlueTooth. > ktrace shows that it's not searching /etc/bluetooth/hosts but directly > specifying the BD_ADDR has no improvement and the connect() is returning > EINVAL. > With - nokia-6085 - obexapp-1.4.8 work correct. But this port: ussr$ obexftp --bluetooth nokia-6085 -x Scanning for nokia-6085 ... Browsing nokia-6085 ... Connecting...failed: connect Still trying to connect Connecting...failed: connect Still trying to connect Connecting...failed: connect Still trying to connect ussr$ obexftp --bluetooth siemens-sl56 -x Scanning for siemens-sl56 ... Browsing siemens-sl56 ... Connecting...failed: connect Still trying to connect Connecting...failed: connect Still trying to connect Connecting...failed: connect Still trying to connect ussr$ obexftp --bluetooth siemens-sl56 -X Scanning for siemens-sl56 ... Browsing siemens-sl56 ... Connecting...failed: connect Still trying to connect Connecting...failed: connect Still trying to connect Connecting...failed: connect Still trying to connect ussr$ obexftp --bluetooth nokia-6085 -X Scanning for nokia-6085 ... Browsing nokia-6085 ... Connecting...failed: connect Still trying to connect Connecting...failed: connect Still trying to connect Connecting...failed: connect Still trying to connect ussr$ uname -a FreeBSD ussr.lissyara.int.otradno.ru 6.3-RELEASE FreeBSD 6.3-RELEASE #0: Sun Jan 20 09:47:57 MSK 2008 lissyara@ussr.lissyara.int.otradno.ru:/usr/obj/usr/src/sys/color-console i386 ussr$ obexftp --bluetooth siemens-sl56 -p /usr/home/lissyara/Desktop/nokia_freebsd.txt Scanning for siemens-sl56 ... Browsing siemens-sl56 ... Connecting...failed: connect Still trying to connect Connecting...failed: connect Still trying to connect Connecting...failed: connect Still trying to connect From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 16:21:15 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A398516A418 for ; Sun, 17 Feb 2008 16:21:15 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 3724613C45D for ; Sun, 17 Feb 2008 16:21:14 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JQmGK-00042h-9G for freebsd-ports@freebsd.org; Sun, 17 Feb 2008 16:21:08 +0000 Received: from p5b0cecfb.dip.t-dialin.net ([91.12.236.251]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 17 Feb 2008 16:21:08 +0000 Received: from jumper99 by p5b0cecfb.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 17 Feb 2008 16:21:08 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: "Helmut Schneider" Date: Sun, 17 Feb 2008 17:20:57 +0100 Lines: 52 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: p5b0cecfb.dip.t-dialin.net X-MSMail-Priority: Normal X-Newsreader: vi with a tiny GUI... X-MimeOLE: Huh, what?! Sender: news Subject: ntop does not compile on 7.0-RC2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 16:21:15 -0000 Hi, ntop stops with: [...] then mv -f ".deps/iface.Tpo" ".deps/iface.Plo"; else rm -f ".deps/iface.Tpo"; exit 1; fi cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I/usr -I/usr/include -DINET6 -O2 -Dfreebsd7 -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/lib/perl5/5.8.8/mach/CORE -I. -I/usr/local/include -DFREEBSD -I/usr/local/include -I/usr/local/include -I/usr/include -g -O2 -fno-strict-aliasing -pipe -I/usr/local/include -g -Wshadow -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fPIC -DPIC -MT iface.lo -MD -MP -MF .deps/iface.Tpo -c iface.c -fPIC -DPIC -o .libs/iface.o In file included from /usr/local/include/net-snmp/utilities.h:54, from /usr/local/include/net-snmp/net-snmp-includes.h:78, from iface.c:766: /usr/local/include/net-snmp/library/container.h: In function 'CONTAINER_FREE': /usr/local/include/net-snmp/library/container.h:416: error: lvalue required as left operand of assignment In file included from /usr/local/include/net-snmp/mib_api.h:24, from /usr/local/include/net-snmp/net-snmp-includes.h:81, from iface.c:766: /usr/local/include/net-snmp/library/parse.h:32:1: warning: "MAXLABEL" redefined In file included from /usr/include/arpa/nameser.h:579, from ntop.h:321, from iface.c:26: /usr/include/arpa/nameser_compat.h:104:1: warning: this is the location of the previous definition gmake[2]: *** [iface.lo] Error 1 gmake[2]: Leaving directory `/usr/ports/net/ntop/work/ntop-3.3' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/net/ntop/work/ntop-3.3' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/net/ntop. *** Error code 1 Stop in /usr/ports/net/ntop. Bug or a local problem? Thanks, Helmut -- No Swen today, my love has gone away My mailbox stands for lorn, a symbol of the dawn From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 17:01:28 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58A7116A417; Sun, 17 Feb 2008 17:01:28 +0000 (UTC) (envelope-from doug@polands.org) Received: from hrndva-omtalb.mail.rr.com (hrndva-omtalb.mail.rr.com [71.74.56.123]) by mx1.freebsd.org (Postfix) with ESMTP id 04CFA13C458; Sun, 17 Feb 2008 17:01:27 +0000 (UTC) (envelope-from doug@polands.org) Received: from corinth.polands.org ([75.87.219.217]) by hrndva-omta03.mail.rr.com with ESMTP id <20080217164612.KPXE7178.hrndva-omta03.mail.rr.com@corinth.polands.org>; Sun, 17 Feb 2008 16:46:12 +0000 Received: from email.polands.org (ammon.polands.org [172.16.1.7]) by corinth.polands.org (8.13.8/8.13.8) with ESMTP id m1HF7hR4075460; Sun, 17 Feb 2008 09:07:43 -0600 (CST) (envelope-from doug@polands.org) Received: from 172.16.1.8 (proxying for 172.16.1.47) (SquirrelMail authenticated user djp) by email.polands.org with HTTP; Sun, 17 Feb 2008 09:07:43 -0600 (CST) Message-ID: <62450.172.16.1.8.1203260863.squirrel@email.polands.org> In-Reply-To: <20080217141925.GA51665@eos.sc1.parodius.com> References: <20080217132317.GC72400@polands.org> <20080217141925.GA51665@eos.sc1.parodius.com> Date: Sun, 17 Feb 2008 09:07:43 -0600 (CST) From: "Doug Poland" To: "Jeremy Chadwick" User-Agent: SquirrelMail/1.4.5 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-Virus-Scanned: ClamAV 0.88.4/5847/Sun Feb 17 05:26:12 2008 on corinth.polands.org X-Virus-Status: Clean Cc: questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: apache 2.2.8 authdbm woes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 17:01:28 -0000 On Sun, February 17, 2008 08:19, Jeremy Chadwick wrote: > On Sun, Feb 17, 2008 at 07:23:17AM -0600, Doug Poland wrote: >> Hello, > > You're likely suffering from this: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=119711 > > There were some recent changes to www/apache22 which specifically > addressed the above: > > http://www.freebsd.org/cgi/cvsweb.cgi/ports/www/apache22/Makefile > Thanks for the quick response. I've read the pr description (119711) but am still a little confused. I used the new Makefile options: make -DWITH_BDB -DWITH_BDB_BASE as mentioned in my OP. The really weird thing is apache-2.2.8 worked with AuthDBM for many tests, but then suddenly stopped working. Perhaps my base install of Berkeley DB is having issues reading .dat files generated from an earlier version? How would one diagnose this? Again, thanks for the help. -- Regards, Doug From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 19:14:02 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F77C16A468 for ; Sun, 17 Feb 2008 19:14:02 +0000 (UTC) (envelope-from lars.stokholm@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.191]) by mx1.freebsd.org (Postfix) with ESMTP id F149113C46B for ; Sun, 17 Feb 2008 19:14:01 +0000 (UTC) (envelope-from lars.stokholm@gmail.com) Received: by rv-out-0910.google.com with SMTP id g13so1153957rvb.43 for ; Sun, 17 Feb 2008 11:13:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=/6Dvboq5P7QdduRDl+qMPeqSCvmf4/HusxxzhlkAYL8=; b=X/7jqy0LPHPl20YaWC00v1oRgdaRL9XO8a7YbQ1Noa1U28F7TRVZ6McnMELZdZjBB+VITq0PqjokNMbZa+yQGodWpiVC/j6VFtulVmpZktK6JeahccooC/hiT1gHdJLkdm/WUjxlD96YRBRzaY9QI+YB7jBG45l9KqY2rn6kA4s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Rztd9Xfsz7QJRoJudTacqOS3aUSCxr2dQAMRffiKV1pfA5DgGMAScbPkPDc9PREQ56gAWaTwM7Rs44FisMAB1kFZSyeqroIv8+AaQdR2VEd+ZwspCJQopckTTDLLCu2ahMrlFPYJ9FS6sAeddLugbiLcJzl9ecJQsJ5NJycdVMU= Received: by 10.141.18.14 with SMTP id v14mr2935233rvi.252.1203273983412; Sun, 17 Feb 2008 10:46:23 -0800 (PST) Received: by 10.141.68.8 with HTTP; Sun, 17 Feb 2008 10:46:23 -0800 (PST) Message-ID: Date: Sun, 17 Feb 2008 19:46:23 +0100 From: "Lars Stokholm" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: tor-devel doesn't log X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 19:14:02 -0000 As far as I can see, tor-devel doesn't log to /var/log/tor as the rc.d script means for it to do. >From what I found out, Tor is called with command_args="[...] --Log \"notice file ${tor_logfile}\"" But putting an 'echo' in front of the command, only "--Log notice" is what I see. I.e. the command_args are cut short of "file /var/log/tor": /usr/local/bin/tor -f /usr/local/etc/tor/torrc --PidFile /var/run/tor/tor.pid --RunAsDaemon 1 --DataDirectory /var/db/tor --User _tor --Group _tor --Log notice What gives? From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 20:14:28 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C194116A41B for ; Sun, 17 Feb 2008 20:14:28 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (adsl-63-193-123-122.dsl.snfc21.pacbell.net [63.193.123.122]) by mx1.freebsd.org (Postfix) with ESMTP id 75C7413C44B for ; Sun, 17 Feb 2008 20:14:28 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (localhost [127.0.0.1]) by bunrab.catwhisker.org (8.13.3/8.13.3) with ESMTP id m1HJqxjF039030 for ; Sun, 17 Feb 2008 11:52:59 -0800 (PST) (envelope-from david@bunrab.catwhisker.org) Received: (from david@localhost) by bunrab.catwhisker.org (8.13.3/8.13.1/Submit) id m1HJqxLE039029 for freebsd-ports@freebsd.org; Sun, 17 Feb 2008 11:52:59 -0800 (PST) (envelope-from david) Date: Sun, 17 Feb 2008 11:52:59 -0800 From: David Wolfskill To: freebsd-ports@freebsd.org Message-ID: <20080217195259.GS20280@bunrab.catwhisker.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TegBI+r9roYdcP94" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: What's a "good" way to handle installation of conflicting ports? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 20:14:28 -0000 --TegBI+r9roYdcP94 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I've been asked to come up with at least an interim approach -- that can be implemented within a few days -- to allow the SAs at my new job to install conflicting ports on the same machine. I can think of some approaches, but I'd prefer to use one that doesn't suck too much, and that doesn't impede the transition to something better. I would also like to continue to be able to make use of the FreeBSD "ports" system, and be able to take advantage of the ports collection, such as dependency-tracking. Their (the SAs) stated preferred approach is to use GNU stow (sysutils/stow), though I've not used it previously, and I'm not quite clear on just how that would work in practice -- and still provide the benefits of the FreeBSD "ports" system as mentioned above. (They use it for the Linux machines; not sure about the Solaris machines.) The catalyst for the exercise is that we have some pools of machines for developers to use; some of the developers wish to use editors/xemacs; some wish to use editors/emacs -- on the same machine. (Given the requirement, it's OK for the affected folks to need to adjust search, library, and man paths.) (I haven't been in the new position long enough to know why folks can't just each use their own desktop/workstations, configured however each one sees fit. Even so, I suppose that there might be a developer out there who might want conflicting ports on his dektop -- I've had that request before ... or rather, a request that implied that: One of the developers at a previous place of employment was distressed when he determined that he was unable to install every port in the ports collection on his desktop machine. In that case, his local disk storage gave out before he ran into the "conflicts" issue, but I'm sure that would have come up eventually.) (I've subscribed to -ports@, at least for now, so there's no need to copy me on messages sent to the list.) Anyway, thanks in advance for suggestions -- even pointing out why a certain approach would be inadvisable would be helpful. Peace, david --=20 David H. Wolfskill david@catwhisker.org I submit that "conspiracy" would be an appropriate collective noun for cats. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --TegBI+r9roYdcP94 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iEYEARECAAYFAke4kJoACgkQmprOCmdXAD32UwCfT6v5Cmj0dMsNYa3ipGjwppeH C7cAnRK66nFAJmzf2vohMjSEkzUkbOa8 =3GZC -----END PGP SIGNATURE----- --TegBI+r9roYdcP94-- From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 20:28:58 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 84B3F16A41A for ; Sun, 17 Feb 2008 20:28:58 +0000 (UTC) (envelope-from pneumann@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.245]) by mx1.freebsd.org (Postfix) with ESMTP id 3C2FF13C45A for ; Sun, 17 Feb 2008 20:28:58 +0000 (UTC) (envelope-from pneumann@gmail.com) Received: by an-out-0708.google.com with SMTP id c14so360411anc.13 for ; Sun, 17 Feb 2008 12:28:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; bh=S4hll9+/dFHC2bwIjcdOF8wAetokNetTS6TZkdRHig8=; b=TJPtCjbrQv4wKgDhfdiLjj7r5XYKmx9nKn4PjJWqeqsgAdxziDPqUBYSBnphicii2bza4VK1ATjU/7ZL6VjViTyXTTtjVEgINbWoVTQLzgssJIX2a7m0ydI9eOeb41wd3A0JvcAMcEqWIeHNFBT2vDUE13Acdm+1/PhCqBpc73s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=c0Zz8UHX5Un5SRAw0vCFbM4Fk/DAAvuNVj+o5uosUE/zAgtrNUV7kVkwnn8uZcfjL6raIX1ZJb/N4gGHrApBQDa7Afni3olyKi83UUl2TLc0i0hdd6KZ6j6Rz7BU3ZfW0EpobsK4Xqc2zoDv0hzRjG9h4ARY1KwVPYrcaFgsyEI= Received: by 10.100.214.15 with SMTP id m15mr9564677ang.25.1203280137625; Sun, 17 Feb 2008 12:28:57 -0800 (PST) Received: from ?10.0.0.174? ( [190.8.122.129]) by mx.google.com with ESMTPS id 5sm8014663agc.14.2008.02.17.12.28.55 (version=SSLv3 cipher=RC4-MD5); Sun, 17 Feb 2008 12:28:56 -0800 (PST) From: "Phillip N." To: Ganbold In-Reply-To: <47B0FF4D.1070900@micom.mng.net> References: <1202754305.1329.5.camel@negro> <47B0FF4D.1070900@micom.mng.net> Content-Type: text/plain; charset=utf-8 Date: Sun, 17 Feb 2008 17:28:42 -0300 Message-Id: <1203280122.4366.14.camel@negro> Mime-Version: 1.0 X-Mailer: Evolution 2.12.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 8bit Cc: Sevan / Venture37 , freebsd-ports@freebsd.org Subject: Re: Asterisk-Addons 1.4.5 still wont build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 20:28:58 -0000 Hello all. Unfortunatly i dont use h323 so i cannot test if all this really works. What are the last patches need to make asterisk-addons compile with the codec negotiation patch, that works? If all compiles ok, and you guys can confirm the patch really works, we could send a pr. Thanks! El mar, 12-02-2008 a las 10:07 +0800, Ganbold escribió: > However I was able to compile it after making some changes to > chan_h323.c and ooh323cDriver.c. From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 20:53:13 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 35D3116A418 for ; Sun, 17 Feb 2008 20:53:13 +0000 (UTC) (envelope-from atanas.gendov@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.185]) by mx1.freebsd.org (Postfix) with ESMTP id 7806A13C465 for ; Sun, 17 Feb 2008 20:53:12 +0000 (UTC) (envelope-from atanas.gendov@gmail.com) Received: by rv-out-0910.google.com with SMTP id g13so1174068rvb.43 for ; Sun, 17 Feb 2008 12:53:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=S6b4XmH1SpN52+6XJIb4+Ckg9VzKtSCkXmMCyIfwbLs=; b=YxV8xALDidTiSUbpNsgGj+evXtX0alzFNQvKiPCgQyDup6pAnZKeJTR1HYR+swlglbOJ5dOHu4SSEgWwxjOTV60KazhYGVxoY4PFke4hbvQCO/nY55lou/MbE2LPWLJgeV6pkUpkwCyo0eCehfVPfBlIz4xzMkTo1z+1AdYgwrg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=Ol6AvGfK6V+sV/GerAmRJ6aFntUReesx2IFsLryPilUlTCNwQdNvqcu1WtWzn8xNPZ7O0bhQRyjcSvBAYVbsvHJ1FK3EfxerkQvF1zvZdKRzMOS0JUyIXa2gZNBiNYIAikh4+18TS56f07lhC2FlnG+Jh8QZzIyyPIm7pVY7LZo= Received: by 10.140.180.42 with SMTP id c42mr3348265rvf.145.1203279961312; Sun, 17 Feb 2008 12:26:01 -0800 (PST) Received: by 10.140.207.3 with HTTP; Sun, 17 Feb 2008 12:26:01 -0800 (PST) Message-ID: <36e46ac80802171226p6a18997ao21e03b626425695e@mail.gmail.com> Date: Sun, 17 Feb 2008 22:26:01 +0200 From: "Atanas Gendov" To: ports@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Problems with icu - 3.8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 20:53:13 -0000 Greetings to all from FreeBSD Ports!!! :) I have some problems with icu - 3.8. After portupgrade of icu and some others packages I can't start Gnome. Because of Gnome needs module from icu - 3.6. Unfortunately there is no new port for gdm which doesn't have depends on icu-3.6. Atanas From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 21:07:47 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 08A2516A418 for ; Sun, 17 Feb 2008 21:07:47 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by mx1.freebsd.org (Postfix) with ESMTP id B20EC13C4D1 for ; Sun, 17 Feb 2008 21:07:46 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: by py-out-1112.google.com with SMTP id u52so1743170pyb.10 for ; Sun, 17 Feb 2008 13:07:46 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; bh=rIXAXG2U5gWsXtPiWlau3v98c0K8y4mNYLIXUYVeTpE=; b=mFO4aGbrIAbkYj63s4PZK48WUH6Hg+nQGz3iKDQnF1VhZfoaepZNbLiBYmkRqAu5baZthww19SIBw9gQ2QMIvPOFYSb6k2ipLBLhUp+Eu7ewKoh8ep1CcPDgq6ogAlse1qyFTiqtoocJcDkyZDr6397ZlN/Cbwz8mERrQSjo7EQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:reply-to:to:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=rLEQ2qGXnCNN/RTdiJ7pomxjuKa1ghgw1572CwJJ9L/1Mfn8tCRJIl8dtm7Dl4K40zEWMSHSUt2LNFNEeFS/4wChsL8QJg/z9N0MGmGD7s+rkrkuS7pZhbIFb7H/njDT6UIZyDgWMGRHATmbmF1l9ii1hR5pEFmvg8KnxfsBBqE= Received: by 10.141.180.5 with SMTP id h5mr3344781rvp.240.1203282465396; Sun, 17 Feb 2008 13:07:45 -0800 (PST) Received: from ?192.168.1.104? ( [68.35.151.186]) by mx.google.com with ESMTPS id 2sm3947157rvi.32.2008.02.17.13.07.44 (version=SSLv3 cipher=RC4-MD5); Sun, 17 Feb 2008 13:07:44 -0800 (PST) From: James To: freebsd-ports@freebsd.org In-Reply-To: <20080217195259.GS20280@bunrab.catwhisker.org> References: <20080217195259.GS20280@bunrab.catwhisker.org> Content-Type: text/plain Date: Sun, 17 Feb 2008 14:07:43 -0700 Message-Id: <1203282463.6223.1.camel@pclmills> Mime-Version: 1.0 X-Mailer: Evolution 2.12.1 Content-Transfer-Encoding: 7bit Subject: Re: What's a "good" way to handle installation of conflicting ports? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: oscartheduck@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 21:07:47 -0000 On Sun, 2008-02-17 at 11:52 -0800, David Wolfskill wrote: > I've been asked to come up with at least an interim approach -- > that can be implemented within a few days -- to allow the SAs at > my new job to install conflicting ports on the same machine. > > I can think of some approaches, but I'd prefer to use one that doesn't > suck too much, and that doesn't impede the transition to something better. > I would also like to continue to be able to make use of the FreeBSD > "ports" system, and be able to take advantage of the ports collection, > such as dependency-tracking. > > Their (the SAs) stated preferred approach is to use GNU stow > (sysutils/stow), though I've not used it previously, and I'm not > quite clear on just how that would work in practice -- and still provide > the benefits of the FreeBSD "ports" system as mentioned above. (They > use it for the Linux machines; not sure about the Solaris machines.) > > The catalyst for the exercise is that we have some pools of machines > for developers to use; some of the developers wish to use > editors/xemacs; some wish to use editors/emacs -- on the same machine. > (Given the requirement, it's OK for the affected folks to need to adjust > search, library, and man paths.) > You can either edit the Makefile of the port to try and install it somewhere non-standard and hope there are no conflicting libraries, or you could implement a jail system. If you had a beefy enough machine, give each developer their own jail and let them run with it. http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/jails.html > (I haven't been in the new position long enough to know why folks can't > just each use their own desktop/workstations, configured however each > one sees fit. Even so, I suppose that there might be a developer out > there who might want conflicting ports on his dektop -- I've had that > request before ... or rather, a request that implied that: One of the > developers at a previous place of employment was distressed when he > determined that he was unable to install every port in the ports > collection on his desktop machine. In that case, his local disk storage > gave out before he ran into the "conflicts" issue, but I'm sure that > would have come up eventually.) > > (I've subscribed to -ports@, at least for now, so there's no need to > copy me on messages sent to the list.) > > Anyway, thanks in advance for suggestions -- even pointing out why a > certain approach would be inadvisable would be helpful. > > Peace, > david From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 21:14:33 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F3E3016A421 for ; Sun, 17 Feb 2008 21:14:32 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 4B9F213C4EB for ; Sun, 17 Feb 2008 21:14:32 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) by smtp.infracaninophile.co.uk (8.14.2/8.14.2) with ESMTP id m1HLEQhs069148; Sun, 17 Feb 2008 21:14:27 GMT (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.4.4 smtp.infracaninophile.co.uk m1HLEQhs069148 Authentication-Results: smtp.infracaninophile.co.uk; dkim=hardfail (SSP) header.i=unknown Message-ID: <47B8A3B2.8090202@infracaninophile.co.uk> Date: Sun, 17 Feb 2008 21:14:26 +0000 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.9 (X11/20080210) MIME-Version: 1.0 To: Atanas Gendov References: <36e46ac80802171226p6a18997ao21e03b626425695e@mail.gmail.com> In-Reply-To: <36e46ac80802171226p6a18997ao21e03b626425695e@mail.gmail.com> X-Enigmail-Version: 0.95.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (smtp.infracaninophile.co.uk [IPv6:::1]); Sun, 17 Feb 2008 21:14:27 +0000 (GMT) X-Virus-Scanned: ClamAV 0.92/5852/Sun Feb 17 19:58:05 2008 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,NO_RELAYS autolearn=ham version=3.2.4 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on happy-idiot-talk.infracaninophile.co.uk Cc: ports@freebsd.org Subject: Re: Problems with icu - 3.8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 21:14:33 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Atanas Gendov wrote: > Greetings to all from FreeBSD Ports!!! :) > I have some problems with icu - 3.8. After portupgrade of icu and some > others packages I can't start Gnome. Because of Gnome needs module from icu > - 3.6. Unfortunately there is no new port for gdm which doesn't have depends > on icu-3.6. Lots of people are getting bitten by the effects of the bump in the libicu* shlib ABI version numbers -- there really should be a note in UPDATING about it. It affects all sorts of different packages -- I've even got one system where it took out OpenLDAP. Anyhow, one solution is to rebuild all ports that depend on ICU. That's unfortunately going to be quite a lot of ports on a typical desktop system. # portupgrade -fr icu-3.8.1 will do the trick: alternatives using other ports management software are left as an exercise for the reader. This will fix gdm for you. Cheers, Matthew - -- Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFHuKOy8Mjk52CukIwRCOvkAJ453BrjXMrLGabXjTJZgDbzRMO2iwCdFwCx KdjSjvSia2Nu1f3/gUNL2Ts= =oIMR -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 21:23:40 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D28B116A420 for ; Sun, 17 Feb 2008 21:23:40 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.175]) by mx1.freebsd.org (Postfix) with ESMTP id A18F213C45E for ; Sun, 17 Feb 2008 21:23:40 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: by wf-out-1314.google.com with SMTP id 25so329409wfa.7 for ; Sun, 17 Feb 2008 13:23:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; bh=I8BjAzp8igha/pGoGoGyhy904ANER7HKGZFPjRJjAuY=; b=tqhCZKvg56a2kB2D9IGaWvbb223+PfYzpmpdE/h6Cevqhq1YXuk9WytDMCNrLJ+M1rQ3zW7HWbY8DHgSpj1nc2LrQNskG2ed6yEapxasasjOpwY5/AHvg8wVzEQJpd3cM0PuXtv9vKmcN+3J9rK5FryEX1XLQuHm9iwXZy2wF0A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=Q+a0lFJnEWqPUG8me+3TJZIfP+pU8XZTzjknuxfhGGU9QgkVFZ+ZpSk/XzC5S0spG3/ggMwz/t8uFmbj4m8oeJARdWYBKk3jZZuEymw0ceSZ52y53x1Hh6x0FV6CNA8LNkkr9eCVv/HNresoQkFjGLxTBV+8vN74AuhjgQzSz3Y= Received: by 10.142.222.21 with SMTP id u21mr3809956wfg.128.1203283420198; Sun, 17 Feb 2008 13:23:40 -0800 (PST) Received: from ?192.168.1.104? ( [68.35.151.186]) by mx.google.com with ESMTPS id 30sm15425663wfd.19.2008.02.17.13.23.37 (version=SSLv3 cipher=RC4-MD5); Sun, 17 Feb 2008 13:23:38 -0800 (PST) From: James To: Matthew Seaman In-Reply-To: <47B8A3B2.8090202@infracaninophile.co.uk> References: <36e46ac80802171226p6a18997ao21e03b626425695e@mail.gmail.com> <47B8A3B2.8090202@infracaninophile.co.uk> Content-Type: text/plain Date: Sun, 17 Feb 2008 14:23:37 -0700 Message-Id: <1203283417.6223.3.camel@pclmills> Mime-Version: 1.0 X-Mailer: Evolution 2.12.1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Atanas Gendov Subject: Re: Problems with icu - 3.8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: oscartheduck@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 21:23:40 -0000 On Sun, 2008-02-17 at 21:14 +0000, Matthew Seaman wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA256 > > Atanas Gendov wrote: > > Greetings to all from FreeBSD Ports!!! :) > > I have some problems with icu - 3.8. After portupgrade of icu and some > > others packages I can't start Gnome. Because of Gnome needs module from icu > > - 3.6. Unfortunately there is no new port for gdm which doesn't have depends > > on icu-3.6. > > Lots of people are getting bitten by the effects of the bump in the > libicu* shlib ABI version numbers -- there really should be a note > in UPDATING about it. It affects all sorts of different packages -- > I've even got one system where it took out OpenLDAP. Do you know who to ask for the note? I was bitten by it, but fortunately there had just been a large thread in questions@ about it. It does seem to be a common issue. James From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 21:40:19 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D23516A417 for ; Sun, 17 Feb 2008 21:40:19 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [91.103.162.4]) by mx1.freebsd.org (Postfix) with ESMTP id 166A213C461 for ; Sun, 17 Feb 2008 21:40:18 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from localhost (localhost.codelab.cz [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id 935A819E071 for ; Sun, 17 Feb 2008 22:40:17 +0100 (CET) Received: from [192.168.1.2] (r5bb235.net.upc.cz [86.49.61.235]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTP id 5B28819E070 for ; Sun, 17 Feb 2008 22:40:15 +0100 (CET) Message-ID: <47B8A9D8.4080906@quip.cz> Date: Sun, 17 Feb 2008 22:40:40 +0100 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.12) Gecko/20050915 X-Accept-Language: cz, cs, en, en-us MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <20080217195259.GS20280@bunrab.catwhisker.org> In-Reply-To: <20080217195259.GS20280@bunrab.catwhisker.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: What's a "good" way to handle installation of conflicting ports? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 21:40:19 -0000 David Wolfskill wrote: > I've been asked to come up with at least an interim approach -- > that can be implemented within a few days -- to allow the SAs at > my new job to install conflicting ports on the same machine. > > I can think of some approaches, but I'd prefer to use one that doesn't > suck too much, and that doesn't impede the transition to something better. > I would also like to continue to be able to make use of the FreeBSD > "ports" system, and be able to take advantage of the ports collection, > such as dependency-tracking. > > Their (the SAs) stated preferred approach is to use GNU stow > (sysutils/stow), though I've not used it previously, and I'm not > quite clear on just how that would work in practice -- and still provide > the benefits of the FreeBSD "ports" system as mentioned above. (They > use it for the Linux machines; not sure about the Solaris machines.) > > The catalyst for the exercise is that we have some pools of machines > for developers to use; some of the developers wish to use > editors/xemacs; some wish to use editors/emacs -- on the same machine. > (Given the requirement, it's OK for the affected folks to need to adjust > search, library, and man paths.) > > (I haven't been in the new position long enough to know why folks can't > just each use their own desktop/workstations, configured however each > one sees fit. Even so, I suppose that there might be a developer out > there who might want conflicting ports on his dektop -- I've had that > request before ... or rather, a request that implied that: One of the > developers at a previous place of employment was distressed when he > determined that he was unable to install every port in the ports > collection on his desktop machine. In that case, his local disk storage > gave out before he ran into the "conflicts" issue, but I'm sure that > would have come up eventually.) And what if someone wants more operating systems on one machine... I recommend you jails and run those conflicting applications in jail(s). Conflicting ports are... conflicting :) And even if you change Makefiles or use another PREFIX you could have some problems. Miroslav Lachman From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 21:53:37 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FAB616A468 for ; Sun, 17 Feb 2008 21:53:37 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: from mail5out.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) by mx1.freebsd.org (Postfix) with ESMTP id 2AE7913C45A for ; Sun, 17 Feb 2008 21:53:36 +0000 (UTC) (envelope-from edwin@mavetju.org) Received: by mail5out.barnet.com.au (Postfix, from userid 1001) id 3BB9E2218A67; Mon, 18 Feb 2008 08:53:36 +1100 (EST) X-Viruscan-Id: <47B8ACE000017A9942662F@BarNet> Received: from mail5auth.barnet.com.au (mail5.barnet.com.au [202.83.178.78]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail5auth.barnet.com.au", Issuer "*.barnet.com.au" (verified OK)) by mail5.barnet.com.au (Postfix) with ESMTP id 0615421B1C50 for ; Mon, 18 Feb 2008 08:53:36 +1100 (EST) Received: from k7.mavetju (k7.mavetju.org [10.251.1.18]) by mail5auth.barnet.com.au (Postfix) with ESMTP id 0EAD62218A75 for ; Mon, 18 Feb 2008 08:53:35 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id DBD6F13C; Mon, 18 Feb 2008 08:53:34 +1100 (EST) Date: Mon, 18 Feb 2008 08:53:34 +1100 From: Edwin Groothuis To: freebsd-ports@freebsd.org Message-ID: <20080217215334.GC3945@k7.mavetju> References: <20080217195259.GS20280@bunrab.catwhisker.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080217195259.GS20280@bunrab.catwhisker.org> User-Agent: Mutt/1.4.2.3i Subject: Re: What's a "good" way to handle installation of conflicting ports? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 21:53:37 -0000 On Sun, Feb 17, 2008 at 11:52:59AM -0800, David Wolfskill wrote: > The catalyst for the exercise is that we have some pools of machines > for developers to use; some of the developers wish to use > editors/xemacs; some wish to use editors/emacs -- on the same machine. > (Given the requirement, it's OK for the affected folks to need to adjust > search, library, and man paths.) Use a jailed environment for this (unless it's not possible due to low-level kernel building requirements (in which case they should have a machine for their own anyway)) Have a single jail for system-ports building which afterwards copies the package to /pkg directory which is via nullfs mapped on the /pkg directories of the other jails. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/ From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 23:03:52 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48FA316A41A for ; Sun, 17 Feb 2008 23:03:52 +0000 (UTC) (envelope-from chris_whitehouse@onetel.com) Received: from smtp1.bethere.co.uk (smtp1.betherenow.co.uk [87.194.0.68]) by mx1.freebsd.org (Postfix) with ESMTP id 0D03113C442 for ; Sun, 17 Feb 2008 23:03:51 +0000 (UTC) (envelope-from chris_whitehouse@onetel.com) Received: from [192.168.1.71] (78-86-169-223.zone2.bethere.co.uk [78.86.169.223]) by smtp1.bethere.co.uk (Postfix) with SMTP id 026E9A000A for ; Sun, 17 Feb 2008 22:41:14 +0000 (GMT) Message-ID: <47B8B80A.7060205@onetel.com> Date: Sun, 17 Feb 2008 22:41:14 +0000 From: Chris Whitehouse User-Agent: Thunderbird 2.0.0.9 (X11/20080214) MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: FreeBSD Port: sdl-1.2.11_2,2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 23:03:52 -0000 hi, [please could you cc me as I'm not subscribed, thanks] I'm trying to install projectm (http://projectm.sourceforge.net/). Instructions say install sdl-1.3 due to some feature being necessary. Can I keep sdl-1.2 and install sdl-1.3 without them conflicting? Any pointers for how to do it, or an alternative approach? Thanks Chris From owner-freebsd-ports@FreeBSD.ORG Sun Feb 17 23:46:12 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62A9916A468 for ; Sun, 17 Feb 2008 23:46:12 +0000 (UTC) (envelope-from cokane@freebsd.org) Received: from QMTA01.westchester.pa.mail.comcast.net (qmta01.westchester.pa.mail.comcast.net [76.96.62.16]) by mx1.freebsd.org (Postfix) with ESMTP id EC87513C457 for ; Sun, 17 Feb 2008 23:46:11 +0000 (UTC) (envelope-from cokane@freebsd.org) Received: from OMTA14.westchester.pa.mail.comcast.net ([76.96.62.60]) by QMTA01.westchester.pa.mail.comcast.net with comcast id qnHs1Y0851HzFnQ5100L00; Sun, 17 Feb 2008 23:29:56 +0000 Received: from discordia ([24.61.189.203]) by OMTA14.westchester.pa.mail.comcast.net with comcast id qnWA1Y00C4PktZC3a00000; Sun, 17 Feb 2008 23:30:11 +0000 X-Authority-Analysis: v=1.0 c=1 a=c5sTgUsrrxMA:10 a=FP58Ms26AAAA:8 a=6I5d2MoRAAAA:8 a=rApI4zH3AAAA:8 a=aGVWDPtICEBrKTl5LYMA:9 a=kb0SQqpSkE2C0oklXMIA:7 a=a7chcwV2HKLa1yD37J2zdh9ksPkA:4 a=SV7veod9ZcQA:10 a=C35D7iIojSgA:10 Received: by discordia (Postfix, from userid 103) id C2D971636F9; Sun, 17 Feb 2008 18:30:10 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.1.8-gr1 (2007-02-13) on discordia X-Spam-Level: X-Spam-Status: No, score=-4.4 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.8-gr1 Received: from [172.20.1.3] (erwin.int.cokane.org [172.20.1.3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by discordia (Postfix) with ESMTP id 65D4C1636F8; Sun, 17 Feb 2008 18:29:54 -0500 (EST) Message-ID: <47B8C2F3.6080408@FreeBSD.org> Date: Sun, 17 Feb 2008 18:27:47 -0500 From: Coleman Kane Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.9 (X11/20080123) MIME-Version: 1.0 To: Chris Whitehouse References: <47B8B80A.7060205@onetel.com> In-Reply-To: <47B8B80A.7060205@onetel.com> X-Enigmail-Version: 0.96a Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: sdl-1.2.11_2,2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: cokane@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Feb 2008 23:46:12 -0000 Chris Whitehouse wrote: > hi, > > [please could you cc me as I'm not subscribed, thanks] > > I'm trying to install projectm (http://projectm.sourceforge.net/). > Instructions say install sdl-1.3 due to some feature being necessary. > Can I keep sdl-1.2 and install sdl-1.3 without them conflicting? Any > pointers for how to do it, or an alternative approach? > > Thanks > > Chris > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > Chris, You could get sdl-1.3 from www.libsdl.org (I think you need to use SVN to get it). Then, when you configure make sure you specify a special prefix, such as: cd sdl-1.3 ./configure --prefix=/usr/local/libsdl13-root ...other args... make make install Then, when you build mproject, make sure that you add "--with-sdl-prefix=/usr/local/libsdl13-root" to the configure arguments, to tell it where SDL 1.3 is located. When you run the program, make sure that you set the LD_LIBRARY_PATH environment variable to /usr/local/libsdl13-root/lib, so that it looks for the SDL libraries there before looking in the normal library path. HTH, -- Coleman Kane From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 01:36:21 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7720F16A419 for ; Mon, 18 Feb 2008 01:36:21 +0000 (UTC) (envelope-from danny@ricin.com) Received: from smtpq1.groni1.gr.home.nl (smtpq1.groni1.gr.home.nl [213.51.130.200]) by mx1.freebsd.org (Postfix) with ESMTP id 02BDD13C442 for ; Mon, 18 Feb 2008 01:36:20 +0000 (UTC) (envelope-from danny@ricin.com) Received: from [213.51.130.188] (port=42158 helo=smtp3.groni1.gr.home.nl) by smtpq1.groni1.gr.home.nl with esmtp (Exim 4.60) (envelope-from ) id 1JQuvb-0002lj-Ir for freebsd-ports@freebsd.org; Mon, 18 Feb 2008 02:36:19 +0100 Received: from cp1228410-a.dbsch1.nb.home.nl ([84.27.217.164]:63355 helo=desktop.homenet) by smtp3.groni1.gr.home.nl with smtp (Exim 4.60) (envelope-from ) id 1JQuva-0006wJ-UZ for freebsd-ports@freebsd.org; Mon, 18 Feb 2008 02:36:19 +0100 Received: by desktop.homenet (sSMTP sendmail emulation); Mon, 18 Feb 2008 02:35:33 +0100 From: "Danny Pansters" To: freebsd-ports@freebsd.org Date: Mon, 18 Feb 2008 02:35:33 +0100 User-Agent: KMail/1.9.7 References: <20080217195259.GS20280@bunrab.catwhisker.org> In-Reply-To: <20080217195259.GS20280@bunrab.catwhisker.org> X-Face: (Zs+'ncTcchkOX|~t6{?Iii=O!G#WEK!+OD0|-F=i%1pvP5V_Sz4PaJC8o)=?utf-8?q?MiSnH/JMJFy=0A=09oBN-My?=, v":S7, (=?utf-8?q?mmkPm=27U=7BMgT+eM=2EBd=5Cp/P!dr=5DhOTXqpse21O!=25Ct=60SE=2EOodq?= =?utf-8?q?=5Dry=5E=23kU=5E=0A=09-?=GT.[8D}i$6P>=" =?utf-8?q?=23=0A=09*J+4d=7E?= MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200802180235.33631.danny@ricin.com> X-Spam-Score: 0.0 (/) Subject: Re: What's a "good" way to handle installation of conflicting ports? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 01:36:21 -0000 Interesting question... On Sunday 17 February 2008 20:52:59 David Wolfskill wrote: > I've been asked to come up with at least an interim approach -- > that can be implemented within a few days -- to allow the SAs at > my new job to install conflicting ports on the same machine. > > I can think of some approaches, but I'd prefer to use one that doesn't > suck too much, and that doesn't impede the transition to something better. > I would also like to continue to be able to make use of the FreeBSD > "ports" system, and be able to take advantage of the ports collection, > such as dependency-tracking. > > Their (the SAs) stated preferred approach is to use GNU stow > (sysutils/stow), though I've not used it previously, and I'm not > quite clear on just how that would work in practice -- and still provide > the benefits of the FreeBSD "ports" system as mentioned above. (They > use it for the Linux machines; not sure about the Solaris machines.) Say no to stow. You might get a working install but not working ports eventually. Stow essentially means many symlinks (a la appdirs). > > The catalyst for the exercise is that we have some pools of machines > for developers to use; some of the developers wish to use > editors/xemacs; some wish to use editors/emacs -- on the same machine. > (Given the requirement, it's OK for the affected folks to need to adjust > search, library, and man paths.) I don't think you're going to get a generic solution, because conflicting ports can have different reasons why they're conflicting. - installs (some) same files. In many cases one (certainly a developer!) can just take his chances and often it will only complain on deinstall at pkg-plist - conflicting binaries (names). Not nice, but could be changed on a case-by-case basis for example with a wrapper script - conflicting shared libraries (names and/or versions). Bad, but this too could be done case-by-case (ldconfig, path, ..) - conflicting headers. If this is a concern, fire them :) So, what I'm saying, it's much more likely that examining the actual conflicts that occur and dealing with them then (you also have the option of saying "don't do that" occasionally!) is easier and faster than trying to do some generic out-of-ports thing. You can trivially create local ports, or just rename official ones and change them and 'make install' them. If many of your devs do that, I suggest setting up one local repo for it (or just a NFS share...). So I would rather organize the case-by-case hacks that some devs may come up with in a way that they are somewhere central and useable and in sync for all (plus you offload the problem of solving their hack to them ;-) A generalized (e.g. stowed) circumvention of ports dealing with the very spots where the port maintainers concede that there's conflict (in other words: where the shit is known to hit the fan) is not going to be viable IMHO. > > (I haven't been in the new position long enough to know why folks can't > just each use their own desktop/workstations, configured however each > one sees fit. Even so, I suppose that there might be a developer out > there who might want conflicting ports on his dektop -- I've had that > request before ... or rather, a request that implied that: One of the > developers at a previous place of employment was distressed when he > determined that he was unable to install every port in the ports > collection on his desktop machine. In that case, his local disk storage > gave out before he ran into the "conflicts" issue, but I'm sure that > would have come up eventually.) > > (I've subscribed to -ports@, at least for now, so there's no need to > copy me on messages sent to the list.) > > Anyway, thanks in advance for suggestions -- even pointing out why a > certain approach would be inadvisable would be helpful. > > Peace, > david Just my thoughts. Cheers, Dan From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 01:39:42 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D91D16A418 for ; Mon, 18 Feb 2008 01:39:42 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.189]) by mx1.freebsd.org (Postfix) with ESMTP id 5887313C459 for ; Mon, 18 Feb 2008 01:39:42 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: by rv-out-0910.google.com with SMTP id g13so1230091rvb.43 for ; Sun, 17 Feb 2008 17:39:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; bh=jZk3EweiZ9s8Fb5FBv0XE7WB5nIevMZd31CXXR2Caek=; b=SpNrVeZIQ0MJQ++7q1xnoCcT6vBhxcgY+fWq6UUXoj+pLPXiJ8sGyObTRohSws9SXxIzyjygiytAU37OPbw67OV6GUam4205sbP0D+4FotW6CA+nGpB1vo4TrADcBlvt8EOEuNNQ4pQEEYMr3OwOmFBMqkee+wOwVa9a3as0NaM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=ssswiwF2ioLsllipVejXUzEIbIl65pBvWjHHtu+O30Kvx7QbDlmkKCkzpuL3ShNd3zOwS/CND8qwCTW7GI6Ixbq/OrMRV41fLv9m7AWmYb1Qst4Lo5oiWbu98WkSlMxueuhFaFv45KTIfsagDmee1XRjohRn/7PEwWHwqggcQ7k= Received: by 10.140.82.38 with SMTP id f38mr3476058rvb.28.1203298781324; Sun, 17 Feb 2008 17:39:41 -0800 (PST) Received: from ?192.168.1.104? ( [68.35.151.186]) by mx.google.com with ESMTPS id f36sm8126862rvb.4.2008.02.17.17.39.40 (version=SSLv3 cipher=RC4-MD5); Sun, 17 Feb 2008 17:39:40 -0800 (PST) From: James To: Helmut Schneider In-Reply-To: References: Content-Type: text/plain Date: Sun, 17 Feb 2008 18:39:38 -0700 Message-Id: <1203298778.6223.10.camel@pclmills> Mime-Version: 1.0 X-Mailer: Evolution 2.12.1 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: ntop does not compile on 7.0-RC2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: oscartheduck@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 01:39:42 -0000 On Sun, 2008-02-17 at 17:20 +0100, Helmut Schneider wrote: > Hi, > > ntop stops with: > [...] > then mv -f ".deps/iface.Tpo" ".deps/iface.Plo"; else rm -f > ".deps/iface.Tpo"; exit 1; fi > cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I/usr -I/usr/include -DINET6 -O2 -Dfreebsd7 > -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H > -fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/usr/local/lib/perl5/5.8.8/mach/CORE > -I. -I/usr/local/include -DFREEBSD -I/usr/local/include -I/usr/local/include > -I/usr/include -g -O2 -fno-strict-aliasing -pipe -I/usr/local/include -g -Wshadow > -Wpointer-arith -Wmissing-prototypes -Wmissing-declarations -Wnested-externs > -fPIC -DPIC -MT iface.lo -MD -MP -MF .deps/iface.Tpo -c > iface.c -fPIC -DPIC -o .libs/iface.o > In file included from /usr/local/include/net-snmp/utilities.h:54, > from /usr/local/include/net-snmp/net-snmp-includes.h:78, > from iface.c:766: > /usr/local/include/net-snmp/library/container.h: In function > 'CONTAINER_FREE': > /usr/local/include/net-snmp/library/container.h:416: error: lvalue required > as left operand of assignment > In file included from /usr/local/include/net-snmp/mib_api.h:24, > from /usr/local/include/net-snmp/net-snmp-includes.h:81, > from iface.c:766: > /usr/local/include/net-snmp/library/parse.h:32:1: warning: "MAXLABEL" > redefined > In file included from /usr/include/arpa/nameser.h:579, > from ntop.h:321, > from iface.c:26: > /usr/include/arpa/nameser_compat.h:104:1: warning: this is the location of > the previous definition > gmake[2]: *** [iface.lo] Error 1 > gmake[2]: Leaving directory `/usr/ports/net/ntop/work/ntop-3.3' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/usr/ports/net/ntop/work/ntop-3.3' > gmake: *** [all] Error 2 > *** Error code 2 > > Stop in /usr/ports/net/ntop. > *** Error code 1 > > Stop in /usr/ports/net/ntop. > > Bug or a local problem? > Local problem. I don'thave a net-snmp directory installed; looks like some library there is clobbering a needed definition. > Thanks, Helmut > From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 02:26:03 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 672A116A418; Mon, 18 Feb 2008 02:26:03 +0000 (UTC) (envelope-from ganbold@micom.mng.net) Received: from publicd.ub.mng.net (publicd.ub.mng.net [202.179.0.88]) by mx1.freebsd.org (Postfix) with ESMTP id 1210813C45A; Mon, 18 Feb 2008 02:26:03 +0000 (UTC) (envelope-from ganbold@micom.mng.net) Received: from [202.179.0.164] (helo=daemon.micom.mng.net) by publicd.ub.mng.net with esmtpa (Exim 4.67 (FreeBSD)) (envelope-from ) id 1JQvhg-000K4n-QB; Mon, 18 Feb 2008 10:26:01 +0800 Message-ID: <47B8ECB8.4050107@micom.mng.net> Date: Mon, 18 Feb 2008 10:26:00 +0800 From: Ganbold User-Agent: Thunderbird 2.0.0.9 (X11/20071225) MIME-Version: 1.0 To: "Phillip N." References: <1202754305.1329.5.camel@negro> <47B0FF4D.1070900@micom.mng.net> <1203280122.4366.14.camel@negro> In-Reply-To: <1203280122.4366.14.camel@negro> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: sobomax@FreeBSD.org, Sevan / Venture37 , freebsd-ports@freebsd.org Subject: Re: Asterisk-Addons 1.4.5 still wont build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 02:26:03 -0000 Phillip N. wrote: > Hello all. > > Unfortunatly i dont use h323 so i cannot test if all this really works. > > What are the last patches need to make asterisk-addons compile with the > codec negotiation patch, that works? > Here they are: http://lists.digium.com/pipermail/asterisk-dev/2008-February/031932.html You can also see Maxim's response on next message. > If all compiles ok, and you guys can confirm the patch really works, we > could send a pr. > Yes, I'm waiting for Maxim's response. Ganbold > Thanks! > > > El mar, 12-02-2008 a las 10:07 +0800, Ganbold escribió: > >> However I was able to compile it after making some changes to >> chan_h323.c and ooh323cDriver.c. >> > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > > > > -- Legalize free-enterprise murder: why should governments have all the fun? From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 02:49:43 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C54716A417 for ; Mon, 18 Feb 2008 02:49:43 +0000 (UTC) (envelope-from ota@j.email.ne.jp) Received: from mail.asahi-net.or.jp (mail2.asahi-net.or.jp [202.224.39.198]) by mx1.freebsd.org (Postfix) with ESMTP id C4C8C13C458 for ; Mon, 18 Feb 2008 02:49:42 +0000 (UTC) (envelope-from ota@j.email.ne.jp) Received: from localhost (cpe-24-193-0-128.nj.res.rr.com [24.193.0.128]) by mail.asahi-net.or.jp (Postfix) with ESMTP id 482CD52D14; Mon, 18 Feb 2008 11:29:04 +0900 (JST) Date: Sun, 17 Feb 2008 21:28:57 -0500 From: Yoshihiro Ota To: oscartheduck@gmail.com Message-Id: <20080217212857.c4df5d25.ota@j.email.ne.jp> In-Reply-To: <1203283417.6223.3.camel@pclmills> References: <36e46ac80802171226p6a18997ao21e03b626425695e@mail.gmail.com> <47B8A3B2.8090202@infracaninophile.co.uk> <1203283417.6223.3.camel@pclmills> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.8; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Atanas Gendov Subject: Re: Problems with icu - 3.8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 02:49:43 -0000 On Sun, 17 Feb 2008 14:23:37 -0700 James wrote: > > On Sun, 2008-02-17 at 21:14 +0000, Matthew Seaman wrote: > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA256 > > > > Atanas Gendov wrote: > > > Greetings to all from FreeBSD Ports!!! :) > > > I have some problems with icu - 3.8. After portupgrade of icu and some > > > others packages I can't start Gnome. Because of Gnome needs module from icu > > > - 3.6. Unfortunately there is no new port for gdm which doesn't have depends > > > on icu-3.6. > > > > Lots of people are getting bitten by the effects of the bump in the > > libicu* shlib ABI version numbers -- there really should be a note > > in UPDATING about it. It affects all sorts of different packages -- > > I've even got one system where it took out OpenLDAP. > > Do you know who to ask for the note? I was bitten by it, but fortunately there > had just been a large thread in questions@ about it. It does seem to be a > common issue. > > James Why are so many people are bitten by this? Is that the jobs of port-upgrading tool to safe copy these libraries to compat so that all programs using the old libraries works? Hiro From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 04:20:03 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0A80E16A417 for ; Mon, 18 Feb 2008 04:20:03 +0000 (UTC) (envelope-from dierk@blaxxtarz.de) Received: from smtprelay08.ispgateway.de (smtprelay08.ispgateway.de [80.67.29.8]) by mx1.freebsd.org (Postfix) with ESMTP id 7010F13C43E for ; Mon, 18 Feb 2008 04:20:02 +0000 (UTC) (envelope-from dierk@blaxxtarz.de) Received: from [88.72.166.238] (helo=maxx.evangelion.free) by smtprelay08.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1JQxU0-0002F4-1O for freebsd-ports@freebsd.org; Mon, 18 Feb 2008 05:20:00 +0100 Received: from [192.168.123.1] (helo=blaxxtarz.evangelion.free) by maxx.evangelion.free with esmtps (Exim 4.69 #0 (Unix)) id 1JQxT4-000ItH-L3 for ; Mon, 18 Feb 2008 05:19:02 +0100 Received: from blaxxtarz.evangelion.free (localhost [127.0.0.1]) by blaxxtarz.evangelion.free (8.13.8/8.13.8) with ESMTP id m1I4J2XB046520 for ; Mon, 18 Feb 2008 05:19:02 +0100 (CET) (envelope-from dierk@blaxxtarz.evangelion.free) Received: (from dierk@localhost) by blaxxtarz.evangelion.free (8.13.8/8.13.8/Submit) id m1I4J1SC046519 for freebsd-ports@freebsd.org; Mon, 18 Feb 2008 05:19:01 +0100 (CET) (envelope-from dierk) Date: Mon, 18 Feb 2008 05:19:01 +0100 From: Dierk Sacher To: freebsd-ports Message-ID: <20080218041901.GA45835@blaxxtarz.evangelion.free> Mail-Followup-To: freebsd-ports References: <20080215135036.GA6988@blaxxtarz.evangelion.free> <20080216104809.GJ64299@server.vk2pj.dyndns.org> <47B84C42.40603@lissyara.su> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="u3/rZRmxL6MmkK24" Content-Disposition: inline In-Reply-To: <47B84C42.40603@lissyara.su> User-Agent: Mutt/1.4.2.3i X-Df-Sender: 799978 Subject: Re: obexftp - call for testers X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 04:20:03 -0000 --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, thank you for your feedback. For doing obex over bluetooth, obexftp needs both the (1) BD_ADDR in raw format (it's _not_ resolving literal device names) (2) the Channel (by using the -B option) So, on my K750i, which has I do something like this (I will use long options for better understanding): # get the capability list: obexftp --bluetooth `bthost -b k750ieva` --channel 6 --capability Channel 6 is OBEX File Transfer on that phone. IrMC (8 for me) will also do. You won't be succesful doing this on OBEX Object Push. If you need to find out the proper channel for your mobile, do something like sdpcontrol -a k750ieva Browse The whole point of using obexftp over obexapp is (for me), that obexapp is not able to retrieve all the telecom/ nodes, which won't show up in filebrowsing and return an error if you try to traverse the path level by level. Thatswhy you have to specify the path as a whole in 'get' command blindly to successfully retrieve them. This is AFAIK only a restriction of some (including obviously all my) mobile phones. So this is where the -S (--nopath) parameter comes handy: obexftp --bluetooth `bthost -b k750ieva` --channel 6 --nopath \ --uuid SYNCH --get telecom/devinfo.txt (You may also try telecom/pb.vcf or telecom/cal.vcs and *PLEASE* backup your contacts first! It's perfectly possible to bust your databases so all your valuable contacts go down the drain and I won't be the one to be put in charge for that.) As you see, I also need to specify the SYNCH (IRMC will also do). Please look up the manpage, cause my understanding of this rather limited (in other words: I'm just using it). One final note: my mobiles firmware obviously left the drawing table a bit, uhm, early. You may have to reset your bluetooth devices and/or the whole mobile (by removing batteries in my case :-() after doing some transfers. This is *not* a problem specific to obexftp. Its happening with a lot of other peers and usage scenarios too. Gruss Dierk Zitiere Alex Keda vom Sun, Feb 17, 2008 at 06:01:22PM +0300: > Peter Jeremy ?????: > >On Fri, Feb 15, 2008 at 02:50:36PM +0100, Dierk Sacher wrote: > > =20 > >>This is a 'works for me' port. I've only been able to test it with > >>6.2-RELEASE on i386 with only one mobile over bluetooth. I did not test > >>anything else (usb, IR ...). > >> =20 > > > >I wouldn't mind having obexftp to talk to my phone but unfortunately > >this port doesn't work for me on 6.3-PRERELEASE/amd64 over bluetooth, > >though that could be just that I'm not driving it correctly: > > > >turion# obexftp -b PeterPhone -v -x > >Scanning for PeterPhone ... > >Browsing PeterPhone ... > >Connecting...failed: connect > >Still trying to connect > >Connecting...failed: connect > >Still trying to connect > >Connecting...failed: connect > >Still trying to connect > >turion#=20 > > > >And hcidump shows no data so I suspect it's not even trying BlueTooth. > >ktrace shows that it's not searching /etc/bluetooth/hosts but directly > >specifying the BD_ADDR has no improvement and the connect() is returning > >EINVAL. > > =20 > With - nokia-6085 - obexapp-1.4.8 work correct. > But this port: >=20 > ussr$ obexftp --bluetooth nokia-6085 -x > Scanning for nokia-6085 ... > Browsing nokia-6085 ... > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect >=20 > ussr$ obexftp --bluetooth siemens-sl56 -x > Scanning for siemens-sl56 ... > Browsing siemens-sl56 ... > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect >=20 > ussr$ obexftp --bluetooth siemens-sl56 -X > Scanning for siemens-sl56 ... > Browsing siemens-sl56 ... > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect >=20 > ussr$ obexftp --bluetooth nokia-6085 -X > Scanning for nokia-6085 ... > Browsing nokia-6085 ... > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect >=20 > ussr$ uname -a > FreeBSD ussr.lissyara.int.otradno.ru 6.3-RELEASE FreeBSD 6.3-RELEASE #0:= =20 > Sun Jan 20 09:47:57 MSK 2008 =20 > lissyara@ussr.lissyara.int.otradno.ru:/usr/obj/usr/src/sys/color-console = =20 > i386 >=20 > ussr$ obexftp --bluetooth siemens-sl56 -p=20 > /usr/home/lissyara/Desktop/nokia_freebsd.txt > Scanning for siemens-sl56 ... > Browsing siemens-sl56 ... > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect > Connecting...failed: connect > Still trying to connect >=20 > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" --=20 |----+----|----+----|----+----|----+----|----+----|----+----|----+----|--< GPG Fingerprint: D14C 12BB 37A6 6745 7F4F F420 9E59 D79E A492 2A96 GPG KeyID : A4922A96 =20 +------------------------------------------------------------------------+ --u3/rZRmxL6MmkK24 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFHuQc0nlnXnqSSKpYRAhshAJ9L86p+e5dRC4YCICtql7GHSw7eTACeODII 4bcCNxHjn1HhIQWJAI5Qbpw= =X0mB -----END PGP SIGNATURE----- --u3/rZRmxL6MmkK24-- From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 06:18:53 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 78EE716A41A for ; Mon, 18 Feb 2008 06:18:53 +0000 (UTC) (envelope-from AhmedS@dhowsoft.com) Received: from mail.ALSAYERGROUP.COM (alsayer.org [168.187.241.15]) by mx1.freebsd.org (Postfix) with ESMTP id D9CD613C467 for ; Mon, 18 Feb 2008 06:18:51 +0000 (UTC) (envelope-from AhmedS@dhowsoft.com) Received: from dhow-ahmeds ([172.16.1.8]) by mail.ALSAYERGROUP.COM with Microsoft SMTPSVC(6.0.3790.1830); Sun, 17 Feb 2008 14:24:36 +0300 Message-ID: From: "ahmed felfel" To: Date: Sun, 17 Feb 2008 14:29:06 +0300 MIME-Version: 1.0 X-OriginalArrivalTime: 17 Feb 2008 11:24:36.0074 (UTC) FILETIME=[AD207CA0:01C87157] Content-Type: text/plain; charset="windows-1256" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Automotive ERP Software X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ahmeds@dhowsoft.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 06:18:53 -0000 Dear Acc Manager, It my pleasure to introduce my most widely used Automotive ERP system to = you and with all respecting for your attention=2E I=92m inviting you to take a look of our indoor demo of the system on = current period=20 We have office in Dubai ,KSA and Kuwait=20 I wish that system that serves 30% of automotive business in gulf region = fits with your business needs For more information about the ERP and who use it in gulf please visit the = link below and waiting for your soon feedback=2E =20 The ERP Modules =20 Financial Management Sys.=20 Vehicle Management Sys.=20 Inventory Management Sys.=20 Service Management Sys=20 Rental Management Sys=2E Asset Management Sys.=20 Consumer Finance Sys.=20 Insurance Management Sys=2E Treasury Management Sys=2E Project Management Sys=2E =20 =20 Best regards, Ahmad Samir =20 Business Development Manager=20 Dhow Information System W.L.L=2E Tel: +965 224-0808 Ext.6621 Mob: +965 9862-853 Fax: +965 434-2826 P.O. Box 485 Safat 13005 - Kuwait www.dhowsoft.com =20 =20 This email and any files transmitted with it are confidential and intended = solely for the use of the individual or entity to which they are = addressed. If you have received this email in error, please notify the = system manager. This message contains confidential information and is = intended only for the individual named. If you are not the named addressee = you should not disseminate, distribute or copy this e-mail. From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 07:53:58 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 596DF16A41A for ; Mon, 18 Feb 2008 07:53:58 +0000 (UTC) (envelope-from oceanare@pacific.net.sg) Received: from smtpgate1.pacific.net.sg (smtpgate1.pacific.net.sg [203.120.90.31]) by mx1.freebsd.org (Postfix) with SMTP id A2EE413C45D for ; Mon, 18 Feb 2008 07:53:57 +0000 (UTC) (envelope-from oceanare@pacific.net.sg) Received: (qmail 16757 invoked from network); 18 Feb 2008 07:27:16 -0000 Received: from adsl246.dyn234.pacific.net.sg (HELO P2120.somewherefaraway.com) (oceanare@210.24.234.246) by smtpgate1.pacific.net.sg with ESMTPA; 18 Feb 2008 07:27:13 -0000 Message-ID: <47B9334A.6060202@pacific.net.sg> Date: Mon, 18 Feb 2008 15:27:06 +0800 From: Erich Dollansky User-Agent: Thunderbird 2.0.0.6 (X11/20070826) MIME-Version: 1.0 To: ahmeds@dhowsoft.com References: In-Reply-To: Content-Type: text/plain; charset=windows-1256; format=flowed Content-Transfer-Encoding: quoted-printable Cc: ports@freebsd.org Subject: Re: Automotive ERP Software X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 07:53:58 -0000 Hi, sounds good. Is there also a FreeBSD port available? Erich ahmed felfel wrote: > Dear Acc Manager, > It my pleasure to introduce my most widely used Automotive ERP system t= o you and with all respecting for your attention. > I=92m inviting you to take a look of our indoor demo of the system on c= urrent period=20 > We have office in Dubai ,KSA and Kuwait=20 > I wish that system that serves 30% of automotive business in gulf regio= n fits with your business needs > For more information about the ERP and who use it in gulf please visit = the link below and waiting for your soon feedback. > =20 > The ERP Modules =20 > Financial Management Sys.=20 > Vehicle Management Sys.=20 > Inventory Management Sys.=20 > Service Management Sys=20 > Rental Management Sys. > Asset Management Sys.=20 > Consumer Finance Sys.=20 > Insurance Management Sys. > Treasury Management Sys. > Project Management Sys. >=20 > =20 > =20 > Best regards, > Ahmad Samir =20 > Business Development Manager=20 >=20 > Dhow Information System W.L.L. > Tel: +965 224-0808 Ext.6621 > Mob: +965 9862-853 > Fax: +965 434-2826 > P.O. Box 485 Safat 13005 - Kuwait > www.dhowsoft.com > =20 > =20 > This email and any files transmitted with it are confidential and inten= ded solely for the use of the individual or entity to which they are addr= essed. If you have received this email in error, please notify the system= manager. This message contains confidential information and is intended = only for the individual named. If you are not the named addressee you sho= uld not disseminate, distribute or copy this e-mail. > =20 > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org= " >=20 From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 09:09:49 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2FDE016A419 for ; Mon, 18 Feb 2008 09:09:49 +0000 (UTC) (envelope-from rock_on_the_web@hotmail.com) Received: from bay0-omc3-s23.bay0.hotmail.com (bay0-omc3-s23.bay0.hotmail.com [65.54.246.223]) by mx1.freebsd.org (Postfix) with ESMTP id 1D76D13C4EC for ; Mon, 18 Feb 2008 09:09:48 +0000 (UTC) (envelope-from rock_on_the_web@hotmail.com) Received: from BAY143-W5 ([65.55.154.40]) by bay0-omc3-s23.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Mon, 18 Feb 2008 01:09:48 -0800 Message-ID: X-Originating-IP: [202.172.126.254] From: Da Rock To: Date: Mon, 18 Feb 2008 09:09:48 +0000 Importance: Normal Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginalArrivalTime: 18 Feb 2008 09:09:48.0693 (UTC) FILETIME=[0315D450:01C8720E] Subject: mod_webapp port broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 09:09:49 -0000 I'm tearing my hair out here- I'm having absolutely no luck with getting a = calendar server and my latest sore point is the mod_webapp port which won't= build because of missing includes. I ran a search but it appears that is only marked broken for certain archs,= well I'm only running a poxy little pentium box - not 64bit processor. Her= e is my output: Building for mod_webapp-4.1.24_2 /bin/mkdir -p /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.= 24-src/webapp/build /bin/mkdir -p /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.= 24-src/webapp/build/objs /usr/bin/perl "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1= .24-src/webapp/support/scandoc.pl" \ -i "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.= 24-src/webapp/support/template.pl" \ -p "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.= 24-src/webapp/build/docs/api-c/" \ /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-s= rc/webapp/include/*.h Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-sr= c/webapp/include/wa.h" Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-sr= c/webapp/include/wa_config.h" parsing class wa_connection parsing class wa_virtualhost parsing class wa_application Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-sr= c/webapp/include/wa_main.h" parsing class wa_chain parsing class wa_provider Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-sr= c/webapp/include/wa_request.h" parsing class wa_hostdata parsing class wa_ssldata parsing class wa_handler parsing class wa_request Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-sr= c/webapp/include/wa_version.h" gmake[1]: Entering directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat= -connectors-4.1.24-src/webapp' gmake[1]: Entering directory "/usr/ports/www/mod_webapp/work/jakarta-tomcat= -connectors-4.1.24-src/webapp/lib" gmake[2]: Entering directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat= -connectors-4.1.24-src/webapp/lib' /usr/local/build-1/libtool --silent --mode=3Dcompile \ cc -c /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.= 1.24-src/webapp/lib/wa_main.c -o wa_main.lo \ -I. -I/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-= 4.1.24-src/webapp/include -I/usr/local/include/apache22 \ \ -O2 -fno-strict-aliasing -pipe=20 In file included from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connect= ors-4.1.24-src/webapp/lib/wa_main.c:59: /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa.h:77:25: apr_general.h: No such file or directory /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa.h:78:23: apr_pools.h: No such file or directory /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa.h:79:25: apr_strings.h: No such file or directory /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa.h:80:24: apr_tables.h: No such file or directory /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa.h:82:22: apr_time.h: No such file or directory /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa.h:83:28: apr_network_io.h: No such file or directory /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa.h:84:27: apr_file_info.h: No such file or directory In file included from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connect= ors-4.1.24-src/webapp/include/wa.h:115, from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connect= ors-4.1.24-src/webapp/lib/wa_main.c:59: /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa_main.h:141: error: syntax error before "apr_pool_t" /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa_main.h:150: error: syntax error before "apr_pool_t" /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa_main.h:232: error: syntax error before '*' token /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa_main.h:232: warning: data definition has no type or storage clas= s In file included from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connect= ors-4.1.24-src/webapp/include/wa.h:117, from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connect= ors-4.1.24-src/webapp/lib/wa_main.c:59: /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa_request.h:114: error: syntax error before "apr_pool_t" /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= include/wa_request.h:146: error: syntax error before "apr_table_t" /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= lib/wa_main.c:62: error: syntax error before '*' token /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= lib/wa_main.c:62: warning: data definition has no type or storage class /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= lib/wa_main.c: In function `wa_init': /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= lib/wa_main.c:82: error: `APR_SUCCESS' undeclared (first use in this functi= on) /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= lib/wa_main.c:82: error: (Each undeclared identifier is reported only once /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/= lib/wa_main.c:82: error: for each function it appears in.) gmake[2]: *** [wa_main.lo] Error 1 gmake[2]: Leaving directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat-= connectors-4.1.24-src/webapp/lib' gmake[1]: *** [subdir] Error 2 gmake[1]: Leaving directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat-= connectors-4.1.24-src/webapp' gmake: *** [lib-build] Error 2 *** Error code 2 Stop in /usr/ports/www/mod_webapp. Now, I've run this several times with various changes all with the same res= ult. I've checked my $LOCALBASE and $PORTSDIR variables which point to /usr= /local and /usr/ports respectively. I've run make using -Dwith-apr-include= =3D/usr/local/include/apr-1 - all no good. Am I missing something? And if you want to mark it as broken thats ok, but = I'd like to know how to get around it myself... _________________________________________________________________ What are you waiting for? Join Lavalife FREE http://a.ninemsn.com.au/b.aspx?URL=3Dhttp%3A%2F%2Flavalife9%2Eninemsn%2Ecom= %2Eau%2Fclickthru%2Fclickthru%2Eact%3Fid%3Dninemsn%26context%3Dan99%26local= e%3Den%5FAU%26a%3D30288&_t=3D764581033&_r=3Demail_taglines_Join_free_OCT07&= _m=3DEXT= From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 10:10:32 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0834816A417 for ; Mon, 18 Feb 2008 10:10:32 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from mail.ciam.ru (ns.ciam.ru [213.247.195.75]) by mx1.freebsd.org (Postfix) with ESMTP id B830713C448 for ; Mon, 18 Feb 2008 10:10:31 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from dhcp250-210.yandex.ru ([87.250.250.210]) by mail.ciam.ru with esmtpa (Exim 4.x) id 1JR318-000ECs-NT; Mon, 18 Feb 2008 13:14:34 +0300 Message-ID: <47B95990.8070808@FreeBSD.org> Date: Mon, 18 Feb 2008 13:10:24 +0300 From: Sergey Matveychuk User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) MIME-Version: 1.0 To: Yoshihiro Ota References: <36e46ac80802171226p6a18997ao21e03b626425695e@mail.gmail.com> <47B8A3B2.8090202@infracaninophile.co.uk> <1203283417.6223.3.camel@pclmills> <20080217212857.c4df5d25.ota@j.email.ne.jp> In-Reply-To: <20080217212857.c4df5d25.ota@j.email.ne.jp> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Atanas Gendov , stable@FreeBSD.org, oscartheduck@gmail.com Subject: ldconfig -R issue (Was: Problems with icu - 3.8) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 10:10:32 -0000 +stable@ Yoshihiro Ota wrote: > Why are so many people are bitten by this? Is that the jobs of port-upgrading > tool to safe copy these libraries to compat so that all programs using > the old libraries works? Portupgrade preserves the libraries in /usr/local/lib/compat/pkg: % ls /usr/local/lib/compat/pkg/ libicudata.so.36.0 libicule.so.36.0 libicuuc.so.36.0 libicui18n.so.36.0 libiculx.so.36.0 libicuio.so.36.0 libicutu.so.36.0 ldconfig knows about the directory: % ldconfig -r | head -2 /var/run/ld-elf.so.hints: search directories: /lib:/usr/lib:/usr/lib/compat:/usr/X11R6/lib:/usr/local/lib:/usr/local/lib/mysql:/usr/local/lib/compat/pkg But ldconfig -R don't rescan them: % ldconfig -R % ldconfig -r | grep libicudata 231:-licudata.38 => /usr/X11R6/lib/libicudata.so.38 386:-licudata.38 => /usr/local/lib/libicudata.so.38 Could anybody investigate it? I have no time now. -- Dixi. Sem. From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 10:19:09 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CADF16A41B for ; Mon, 18 Feb 2008 10:19:09 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 8DB1013C43E for ; Mon, 18 Feb 2008 10:19:08 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JR35W-00005Q-Iz for freebsd-ports@freebsd.org; Mon, 18 Feb 2008 10:19:06 +0000 Received: from 193.101.155.96 ([193.101.155.96]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 18 Feb 2008 10:19:06 +0000 Received: from jumper99 by 193.101.155.96 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 18 Feb 2008 10:19:06 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: "Helmut Schneider" Date: Mon, 18 Feb 2008 11:18:59 +0100 Lines: 63 Message-ID: References: <1203298778.6223.10.camel@pclmills> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 193.101.155.96 X-Newsreader: vi with a tiny little GUI X-MimeOLE: Huh, what?! Sender: news Subject: Re: ntop does not compile on 7.0-RC2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 10:19:09 -0000 James wrote: > > On Sun, 2008-02-17 at 17:20 +0100, Helmut Schneider wrote: >> Hi, >> >> ntop stops with: >> [...] >> then mv -f ".deps/iface.Tpo" ".deps/iface.Plo"; else rm -f >> ".deps/iface.Tpo"; exit 1; fi >> cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I/usr -I/usr/include -DINET6 -O2 >> -Dfreebsd7 -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN >> -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe >> -Wdeclaration-after-statement -I/usr/local/lib/perl5/5.8.8/mach/CORE >> -I. -I/usr/local/include -DFREEBSD -I/usr/local/include >> -I/usr/local/include -I/usr/include -g -O2 -fno-strict-aliasing -pipe >> -I/usr/local/include -g -Wshadow -Wpointer-arith -Wmissing-prototypes >> -Wmissing-declarations -Wnested-externs -fPIC -DPIC -MT iface.lo -MD >> -MP -MF .deps/iface.Tpo -c iface.c -fPIC -DPIC -o .libs/iface.o >> In file included from /usr/local/include/net-snmp/utilities.h:54, >> from /usr/local/include/net-snmp/net-snmp-includes.h:78, >> from iface.c:766: >> /usr/local/include/net-snmp/library/container.h: In function >> 'CONTAINER_FREE': >> /usr/local/include/net-snmp/library/container.h:416: error: lvalue >> required as left operand of assignment >> In file included from /usr/local/include/net-snmp/mib_api.h:24, >> from /usr/local/include/net-snmp/net-snmp-includes.h:81, >> from iface.c:766: >> /usr/local/include/net-snmp/library/parse.h:32:1: warning: "MAXLABEL" >> redefined >> In file included from /usr/include/arpa/nameser.h:579, >> from ntop.h:321, >> from iface.c:26: >> /usr/include/arpa/nameser_compat.h:104:1: warning: this is the >> location of the previous definition >> gmake[2]: *** [iface.lo] Error 1 >> gmake[2]: Leaving directory `/usr/ports/net/ntop/work/ntop-3.3' >> gmake[1]: *** [all-recursive] Error 1 >> gmake[1]: Leaving directory `/usr/ports/net/ntop/work/ntop-3.3' >> gmake: *** [all] Error 2 >> *** Error code 2 >> >> Stop in /usr/ports/net/ntop. >> *** Error code 1 >> >> Stop in /usr/ports/net/ntop. >> >> Bug or a local problem? >> > Local problem. > > I don'thave a net-snmp directory installed; looks like some library > there is clobbering a needed definition. Indeed, net-snmp breaks ntop. I removed net-snmp and ntop compiles fine. Installed net-snmp and rebuilded ntop, fails. What should I do now, report the maintainer of ntop and/or net-snmp? -- No Swen today, my love has gone away My mailbox stands for lorn, a symbol of the dawn From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 11:06:06 2008 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82C6916A417 for ; Mon, 18 Feb 2008 11:06:06 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7191E13C442 for ; Mon, 18 Feb 2008 11:06:06 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m1IB66QK038422 for ; Mon, 18 Feb 2008 11:06:06 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m1IB65Fa038418 for freebsd-ports@FreeBSD.org; Mon, 18 Feb 2008 11:06:05 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 18 Feb 2008 11:06:05 GMT Message-Id: <200802181106.m1IB65Fa038418@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Cc: Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 11:06:06 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. r - repocopy The resolution of the problem report is dependent on a repocopy operation within the CVS repository which is awaiting completion. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/106369 vpnd caused kernel panic with ppp mode o ports/106372 vpnd can't run with slip mode f ports/108077 www/linux-flashplugin9 crashes linux-firefox f ports/108413 net/vnc does not works. f ports/112921 x11-wm/Beryl not loading focus and keybinding settings f ports/113144 print/ghostscript-gnu dumps core with several output d f ports/115818 Executable clash between databases/grass and ruby gems f ports/116378 xorg 7.3 on -stable breaks math/scilab f ports/116385 net/vnc using vnc.so crashes Xorg 7.3 when remote comp f ports/116586 net/isc-dhcp3-server does not work when compiled with f ports/116777 The math/scilab port fails in demos->signal->bode. f ports/116778 security/nmap ping-scan misses some hosts f ports/116949 security/vpnc: Some Cisco Concentrators refuse Connect o ports/117025 multimedia/pwcbsd: Pwcbsd-1.4.0 + New USBStack not wor f ports/117128 security/ipsec-tools racoon.sh fails with /var on mfs f ports/117196 Port net/asterisk-addons 1.4.2 fails to compile f ports/118173 net/gatekeeper port doesn't honor LOCALBASE setting o ports/118877 audio/streamripper does not detect song title from str f ports/118966 Configure cannot find path_dps.m4 during mail/mutt-dev f ports/119546 net/nss_ldap makes /usr/bin/ssh dump core in getpwuid( o ports/120372 java/linux-sun-jdk16: linux-sun-jre1.6.0 plugin doesn' f ports/120379 devel/icu should be patched o ports/120505 [maintainer] net/phpldapadmin, net/phpldapadmin098 -- o ports/120741 Upgrade security/vpnc to 0.5.1 in order to connect to 24 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/102544 ltmdm driver (comms/ltmdm) crashes system whene line r o ports/107354 net/icmpinfo: icmpinfo -vvv does not recocnize any ICM f ports/107937 jailed net/isc-dhcp3-server wouldn't run with an immut o ports/110144 New port: math/Matlab7 f ports/111456 [UPDATE] finance/pfpro updated distinfo f ports/112887 net/nxserver 1.4.0_1 fails to compile after upgrading f ports/113423 Update for ports net/freenx to version 0.6.0 f ports/114127 net/vnc - vnc.so installed to bad location f ports/114825 pam module security/pam_abl not working s ports/115216 ADA devel/florist exit_process program doesn't compile s ports/115217 Ada devel/florist socket program doesn't compile due t f ports/115304 multimedia/gpac-mp4box cannot import files larger than o ports/115308 multimedia/jahshaka fails to open GUI - ends with "pre f ports/115336 port multimedia/avifile on FreeBSD 7.0 not BROKEN with f ports/115627 www/Lynx (-ssl) does not correctly test for OpenSSL f ports/115722 New port:x11/tastymenu A K-Menu replacement for KDE 3. f ports/116037 multimedia/dvd-slideshow has been updated from 0.7.5 t f ports/116058 Update: x11-themes/gtk-qt-engine to version 0.8 f ports/116120 [patch] x11-toolkits/gtkdatabox2: update to 0.7.0.1 f ports/116142 devel/cvsweb3 coloured side-by-side stopped working wh f ports/116226 x11-wm/compiz - emerald and compiz-fusion and scim are f ports/116323 net-im/jabber-users-agent bugs f ports/116333 math/isabelle fails to build with SML/NJ; requires bas o ports/116485 games/vultures-eye gets a permission denied after typi f ports/116567 [PATCH] net/vnc: patch x0vncserver to not give the sel o ports/116683 [NEW PORT] audio/kirocker: KDE Kicker applet for Amaro f ports/116783 databases/db46 can not be built f ports/116974 net-p2p/azureus fails to operate correctly if IPV6 sup f ports/117053 [patch] www/youtube_dl Add FLV2MPEG4 option o ports/117078 [PATCH]: www/* COMMENT, BROKEN, RESTRICTED, NO_PACKAGE f ports/117140 [PATCH] mail/nmh: add an option for Cyrus SASL2 f ports/117173 graphics/opencv does not compile if ffmpeg option is c f ports/117288 [PATCH] x11-wm/compiz: Add in KDE support, clean up pk f ports/117298 port (/usr/ports/russian/xneur) update needed o ports/117299 [NEW PORTS] www/webobjects(+) Apple WebObjects ports b o ports/117312 New port: x11-fonts/ttf-bengali-fonts - Free TrueType o ports/117324 ports devel/sourcenav can't build o ports/117327 devel/devhelp doesn't build with seamonkey f ports/117431 Update port: graphics/ipe Version 6.0pre28 of Ipe that o ports/117480 New Port: devel/dev86 -- 8086 Development Tools f ports/117518 [PATCH] misc/ipbt - fix BROKEN size mismatch in distin o ports/117521 [new port] net/asterisk-res-bonjour Bonjour (Zeroconf) o ports/117703 New port: devel/asdlgen generate serializers for C,C++ f ports/117900 x11-wm/pekwm ports needs to be updated o ports/117945 New port: sysutils/metamorphose-1.1 Metamorphose flexi o ports/117957 security/swatch can't stop (doesn't match pid with pro o ports/118033 [new port] devel/cvs-devel 1.12.13_8 o ports/118074 net-im/jarl Runtime error: unknown (tk) option "state f ports/118092 Installing mail/dbmail breaks installation of mail/mai o ports/118103 New port: databases/couchdb A document database server f ports/118105 mail/spamd - spamd-setup with multiple files in spamd- o ports/118229 New port: security/fwknop fwknop,"FireWall KNock OPera f ports/118232 A note on multimedia/nuppelvideo + multimedia/exportvi f ports/118293 net/vnc Xvnc won't run without fonts.alias installed f ports/118314 x11-wm/compiz-fusion-plugins-extra doesn't build o ports/118331 [NEW PORT] x11-fonts/indic-ttf f ports/118358 math/R update from 2.6.0 to 2.6.1 version o ports/118368 New port: net/asterisk-agx AGX Extra Addons (including o ports/118386 New port: graphics/hugin-devel A GUI for Panorama Tool o ports/118438 New port: biology/njplot Phylogenetic tree drawing pro f ports/118456 [Patch] x11/roxterm doesn't match URLs properly o ports/118460 New port: biology/muscle multiple alignment software f ports/118482 sysutils/desktopbsd-tools dbsd-pkgmgr doesn't recogniz o ports/118529 New port: devel/luajava o ports/118548 New port: biology/consed viewing and editing workbench f ports/118570 www/linux-flashplugin9 - v9.0r48 doesn't play youtube s ports/118663 [update] net-mgmt/nrpe2 - update to 2.10 f ports/118707 [patch]audio/musicpd shout support o ports/118906 [NEW PORT] graphics/2d-rewriter: Fractals generator ba o ports/118923 Wrong pidfile in /usr/local/etc/rc.d/dcc-start port ma f ports/118926 mail/spamd: issues with deletion and syncing from spam f ports/118960 cannot apply patches for port russian/xmms o ports/119008 [NEW PORT] security/easypg: EasyPG is yet another GnuP f ports/119015 games/alephone - TotalTextureEnhancementv61.zip unfetc o ports/119044 New port: audio/festlex-czech,audio/festvox-czech Czec f ports/119057 sysutils/fusefs-wdfs update to upstream wdfs-1.4.2 o ports/119183 [NEW PORT] net/freeradius-client: FreeRADIUS Client li o ports/119224 New port: net/openamq OpenAMQ is a complete AMQP messa o ports/119236 New port: www/squidclamav, interface to perform antivi f ports/119319 www/tomcat55 rc.d script fails to stop tomcat o ports/119388 ports that require gcc 34 instead of gcc42 o ports/119425 New port: korean/ko.TeX Korean TeX macro and utilities o ports/119427 New port: korean/ko.TeX-fonts-extra Korean TeX extra f o ports/119428 New port: korean/ko.TeX-fonts-base Korean TeX base fon f ports/119454 mail/dcc-dccd port deletes dcc_conf on update f ports/119457 update textproc/qstardict f ports/119556 [PATCH] textproc/xerces-c2: Update to 2.8.0 o ports/119593 [patch] multimedia/mplayer: allow building with distcc f ports/119603 upgrade net/whois from 4.7.22 to 4.7.24 o ports/119640 [NEW PORT] devel/sml_tk: Typed and abstract Standard M f ports/119644 FreeBSD Port: archivers/xarchive failing to open files f ports/119647 multimedia/libdvdcss has errors decoding keys o ports/119672 New port: multimedia/kissdx f ports/119745 www/linux-flashplugin7 - flashplayer does not work wit o ports/119756 New port: databases/sqldeveloper Graphical tool for da f ports/119843 security/xca 0.6.3 has gross compilation errors after f ports/119860 archivers/par2cmdline gives "Main packet not found" - o ports/119886 [NEW PORT] www/famp: Metaport of FreeBSD, Apache2, MyS o ports/119904 rearrange x11-toolkits/qwt* ports o ports/119928 [MAINTAINER] x11-wm/xmonad: [SUMMARIZE CHANGES] o ports/119939 New Port: mail/vchkuser vchkuser is a helper program s o ports/119991 New Port: mail/archiveopteryx - Archiveopteryx 2.05 f ports/120022 [UPDATE] graphics/phplot - Updated to 5.0.5 o ports/120065 [NEW PORT] multimedia/smilutils: A collection of utili o ports/120087 [UPDATE] net/asterisk-addons to 1.4.5 f ports/120126 [Update] audio/musicpd to 0.13.1 f ports/120134 net-mgmt/ourmon port needs to go away - out of date f ports/120137 [UPDATE/repocopy] devel/hc12mem to devel/hcs12mem o ports/120142 sysutils/wmcube-gdk does not work on CURRENT o ports/120181 weird tty permissions with x11/rxvt o ports/120184 New port: emulators/cpmtools27: Tools to access CP/M d o ports/120189 New port: emulators/xcpc: A portable Amstrad CPC 464/6 o ports/120234 [MAINTAINER] x11-wm/xmonad: update to 0.6 o ports/120235 [NEW PORT] x11-wm/xmonad-contrib: Third party tiling a o ports/120278 [patch] lang/lua update to 5.1.3 f ports/120298 [PATCH] www/youtube_dl: fix conv2avi.patch o ports/120300 [PATCH] devel/shapelib: Make use of shapelib utils, ta o ports/120311 New port: devel/aegis-devel developer version of devel o ports/120320 Mistake in sample config file from net-mgmt/nagios f ports/120331 net-mgmt/nrpe2: [PATCH]: update 2.7 -> 2.8 o ports/120342 improvement of net/sendfile port o ports/120462 [New port] archivers/par2cmdline-tbb o ports/120463 new port: sysutils/getdelta, uses Deltup to reduce ban f ports/120480 [patch] devel/quilt: RPM dependency should be optional f ports/120481 Update port: graphics/qtpfsgui Update to 1.8.12 and fi o ports/120488 New port: devel/dlna, a reference DLNA open-source imp f ports/120494 Renew discontinued port lang/tuareg-mode.el o ports/120499 new port converters/fribidi: fribidi2 library f ports/120510 multimedia/handbrake doesn't build on amd64 f ports/120530 ports update [lang] lang/sbcl 1.0.11->1.0.14 f ports/120531 ports update math/maxima 5.12.0 -> 5.13.0 f ports/120542 [patch] lang/lua update 5.1.3 (revised) f ports/120561 [UPDATE] devel/kscope to 1.6.1 f ports/120573 [UPDATE] devel/kdbg to 2.1.0 f ports/120588 [UPDATE] net/p5-IO-INET6 f ports/120592 [UPDATE] lang/p5-JavaScript-SpiderMonkey f ports/120593 [UPDATE] security/p5-Net-OpenID-Server o ports/120606 japanese/Wnn7-lib: USE_GCC=3.4 for CURRENT o ports/120625 [patch] Bug in net/ifstat for AMD64 f ports/120633 update security/tor to 0.1.2.19 f ports/120661 [UPDATE] lang/p5-Error f ports/120687 polish/libgadu with OpenSSL f ports/120688 polish/ekg with OpenSSL f ports/120736 Update port: devel/libffi to 3.0.1 f ports/120744 mail/phpmailer 1.73 -> 2.0.0 o ports/120750 [patch] update x11-themes/kde-windeco-crystal to 1.0. o ports/120757 New port: www/joomla15 Stable 1.5 version of the Jooml o ports/120759 games/eduke32 : allow for all archs o ports/120774 New port: x11-fonts/linuxlibertine f ports/120785 polish/libgadu: update to 1.7.2 150 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 11:09:19 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3988E16A417 for ; Mon, 18 Feb 2008 11:09:19 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mail.bsdforen.de (bsdforen.de [212.204.60.79]) by mx1.freebsd.org (Postfix) with ESMTP id EDDE213C4E8 for ; Mon, 18 Feb 2008 11:09:18 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mobileKamikaze.norad (nat-wh-1.rz.uni-karlsruhe.de [129.13.72.169]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bsdforen.de (Postfix) with ESMTP id 20682405493; Mon, 18 Feb 2008 11:40:10 +0100 (CET) Message-ID: <47B9608A.40304@bsdforen.de> Date: Mon, 18 Feb 2008 11:40:10 +0100 From: Dominic Fandrey User-Agent: Thunderbird 2.0.0.9 (X11/20080205) MIME-Version: 1.0 To: Yoshihiro Ota References: <36e46ac80802171226p6a18997ao21e03b626425695e@mail.gmail.com> <47B8A3B2.8090202@infracaninophile.co.uk> <1203283417.6223.3.camel@pclmills> <20080217212857.c4df5d25.ota@j.email.ne.jp> In-Reply-To: <20080217212857.c4df5d25.ota@j.email.ne.jp> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Atanas Gendov , oscartheduck@gmail.com Subject: Re: Problems with icu - 3.8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 11:09:19 -0000 Yoshihiro Ota wrote: > On Sun, 17 Feb 2008 14:23:37 -0700 > James wrote: > >> On Sun, 2008-02-17 at 21:14 +0000, Matthew Seaman wrote: >>> -----BEGIN PGP SIGNED MESSAGE----- >>> Hash: SHA256 >>> >>> Atanas Gendov wrote: >>>> Greetings to all from FreeBSD Ports!!! :) >>>> I have some problems with icu - 3.8. After portupgrade of icu and some >>>> others packages I can't start Gnome. Because of Gnome needs module from icu >>>> - 3.6. Unfortunately there is no new port for gdm which doesn't have depends >>>> on icu-3.6. >>> Lots of people are getting bitten by the effects of the bump in the >>> libicu* shlib ABI version numbers -- there really should be a note >>> in UPDATING about it. It affects all sorts of different packages -- >>> I've even got one system where it took out OpenLDAP. >> Do you know who to ask for the note? I was bitten by it, but fortunately there >> had just been a large thread in questions@ about it. It does seem to be a >> common issue. >> >> James > > > Why are so many people are bitten by this? Is that the jobs of port-upgrading > tool to safe copy these libraries to compat so that all programs using > the old libraries works? > > Hiro I detest this method of keeping programs working. It causes potentially vulnerable libraries to remain in use. I much prefer to run pkg_libchk -R (sysutils/bsdadminscripts) and rebuild the ports it lists as broken due to the change. I already advertised this solution in another thread about the icu problem on this list. From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 11:54:09 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EB1E816A417 for ; Mon, 18 Feb 2008 11:54:09 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.227]) by mx1.freebsd.org (Postfix) with ESMTP id A37F713C4F8 for ; Mon, 18 Feb 2008 11:54:08 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: by wx-out-0506.google.com with SMTP id i29so1332894wxd.7 for ; Mon, 18 Feb 2008 03:54:07 -0800 (PST) Received: by 10.70.92.12 with SMTP id p12mr4080359wxb.47.1203335647546; Mon, 18 Feb 2008 03:54:07 -0800 (PST) Received: from scorpio ( [67.189.206.211]) by mx.google.com with ESMTPS id i33sm9864061wxd.4.2008.02.18.03.54.06 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 18 Feb 2008 03:54:06 -0800 (PST) Date: Mon, 18 Feb 2008 06:53:50 -0500 From: Gerard To: freebsd-ports@freebsd.org Message-ID: <20080218065350.61f5475f@scorpio> In-Reply-To: <47B9608A.40304@bsdforen.de> References: <36e46ac80802171226p6a18997ao21e03b626425695e@mail.gmail.com> <47B8A3B2.8090202@infracaninophile.co.uk> <1203283417.6223.3.camel@pclmills> <20080217212857.c4df5d25.ota@j.email.ne.jp> <47B9608A.40304@bsdforen.de> Organization: seibercom.net X-Mailer: Claws Mail 3.3.0 (GTK+ 2.12.8; i386-portbld-freebsd6.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q User-Agent: Claws Mail 3.3.0 Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/TDpxnvB1a5Vv.zi4cuDaYeC"; protocol="application/pgp-signature"; micalg=PGP-SHA1 Subject: Re: Problems with icu - 3.8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 11:54:10 -0000 --Sig_/TDpxnvB1a5Vv.zi4cuDaYeC Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Mon, 18 Feb 2008 11:40:10 +0100 Dominic Fandrey wrote: > I detest this method of keeping programs working. It causes > potentially vulnerable libraries to remain in use. I much prefer to > run pkg_libchk -R (sysutils/bsdadminscripts) and rebuild the ports it > lists as broken due to the change. >=20 > I already advertised this solution in another thread about the icu > problem on this list. Running: "portmanager -u -p -l" will update all out of date libraries/files no matter how far down the dependency tree they are and create a log of what it updated. It works for me. --=20 Gerard gerard@seibercom.net Today is what happened to yesterday. --Sig_/TDpxnvB1a5Vv.zi4cuDaYeC Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iEYEARECAAYFAke5cc4ACgkQ6DWTaTcTwMl1VQCgsGnDDehx9RkpBTgrTDiGPxwZ rM8AoK+lf99yuEz7pNxjd9lFvRTafRhD =aDYb -----END PGP SIGNATURE----- --Sig_/TDpxnvB1a5Vv.zi4cuDaYeC-- From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 12:58:18 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9FCA16A420 for ; Mon, 18 Feb 2008 12:58:18 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from melon.pingpong.net (melon.pingpong.net [195.178.174.161]) by mx1.freebsd.org (Postfix) with ESMTP id 895FE13C458 for ; Mon, 18 Feb 2008 12:58:18 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from localhost (localhost.pingpong.net [127.0.0.1]) by melon.pingpong.net (Postfix) with ESMTP id E9832509EA; Mon, 18 Feb 2008 13:30:42 +0100 (CET) Received: from melon.pingpong.net ([127.0.0.1]) by localhost (melon.pingpong.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 42423-05-2; Mon, 18 Feb 2008 13:30:42 +0100 (CET) Received: from [192.168.1.187] (unknown [213.136.40.204]) by melon.pingpong.net (Postfix) with ESMTP id 8115D509FC; Mon, 18 Feb 2008 13:30:42 +0100 (CET) Date: Mon, 18 Feb 2008 13:30:31 +0100 From: Palle Girgensohn To: Mikhail Teterin , freebsd-ports@freebsd.org Message-ID: <48CE67260A05D090B9C5A4B6@rambutan.pingpong.net> In-Reply-To: <200802110605.54825@aldan> References: <20080210120013.95C3D16A478@hub.freebsd.org> <200802110605.54825@aldan> X-Mailer: Mulberry/4.0.8 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline X-Virus-Scanned: by amavisd-new at pingpong.net Cc: Geoffroy DESVERNAY Subject: Re: postgresql 8.1.11 with icu 3.8: incompatible X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 12:58:18 -0000 Hi, >From what I remember, I had to make it version dependent, since there where = no symbols that where not verisioned. I have a look at it, though. Regards Palle --On m=C3=A5ndag, februari 11, 2008 06.05.54 -0500 Mikhail Teterin=20 wrote: > On =D0=BD=D0=B5=D0=B4=D1=96=D0=BB=D1=8F 10 =D0=BB=D1=8E=D1=82=D0=B8=D0=B9 = 2008, freebsd-ports-request@freebsd.org > wrote: =3D It seems that postgresql 8.1 port's icu patch need icu <=3D = 3.6: > > The patch is wrong, unfortunately. It makes configure search for > /versioned/ symbols like ucol_open_3_6 and ucnv_fromUChars_3_4. It needs > to be updated for 3_8 or, better yet, be made version-independent, if at > all possible... > > Maintainer CC-ed. Yours, > > -mi > > =3D installed: icu-3.8 (fresh) > =3D > =3D > =3D postgresql options: > =3D WITH_NLS=3Dtrue > =3D WITHOUT_PAM=3Dtrue > =3D WITHOUT_MIT_KRB5=3Dtrue > =3D WITHOUT_HEIMDAL_KRB5=3Dtrue > =3D WITH_OPTIMIZED_CFLAGS=3Dtrue > =3D WITHOUT_LIBC_R=3Dtrue > =3D WITH_THREADSAFE=3Dtrue > =3D WITHOUT_TESTS=3Dtrue > =3D WITHOUT_DEBUG=3Dtrue > =3D WITH_ICU=3Dtrue > =3D WITHOUT_HIER=3Dtrue > =3D WITHOUT_INTDATE=3Dtrue > =3D > =3D > =3D while typing 'make' in /usr/ports/databases/postgresql81-server: > =3D > =3D checking for library containing getopt_long... none required > =3D checking for main in -lunix... no > =3D checking for library containing crypt... -lcrypt > =3D checking for library containing fdatasync... no > =3D checking for shmget in -lcygipc... no > =3D checking for readline... yes (-lreadline) > =3D checking for inflate in -lz... yes > =3D checking for CRYPTO_new_ex_data in -lcrypto... yes > =3D checking for SSL_library_init in -lssl... yes > =3D checking for ucol_open_3_6 in -licui18n... no > =3D checking for ucol_open_3_4 in -licui18n... no > =3D configure: error: library 'icui18n' is required for ICU > =3D =3D=3D=3D> =C2=A0Script "configure" failed unexpectedly. > =3D Please report the problem to girgen@FreeBSD.org [maintainer] and = attach > the =3D > "/usr/ports/databases/postgresql81-server/work/postgresql-8.1.11/config.l > og" =3D including the output of the failure of your make command. Also, = it > might be =3D a good idea to provide an overview of all packages installed > on your system =3D (e.g. an `ls /var/db/pkg`). > =3D *** Error code 1 > =3D > =3D -- > =3D Geoffroy > =3D > > From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 13:33:50 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8014316A468 for ; Mon, 18 Feb 2008 13:33:50 +0000 (UTC) (envelope-from cochard@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.184]) by mx1.freebsd.org (Postfix) with ESMTP id 09A7B13C47E for ; Mon, 18 Feb 2008 13:33:49 +0000 (UTC) (envelope-from cochard@gmail.com) Received: by nf-out-0910.google.com with SMTP id b2so534878nfb.33 for ; Mon, 18 Feb 2008 05:33:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:references:x-google-sender-auth; bh=SIu4J6MuVHCsUKsu0kWPpIgoFF+4+v7XEjcdBj2+jhw=; b=WfM279DO6YdS7Ubn+mX3MriV4aWk+VC5/ALGGp/iAeoPuK5LDeEL5K0QfNpQIl249lah/okVu9o6NclyFryiczqOOAwm2v+Qa1NwZjElunxFkRyR/xlrOZjAYvjh1ctKD51gxXfUq8F6c3RZXyhYso522r1ypKCi75LazxjkQxk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:references:x-google-sender-auth; b=Vk36jBmUD2PAlB4FkkEDztoFftFvxMoc5NnQTSWMZXUVgD79/mmGDnRsvMraKXbiU3nY98wR/nYxLBx4htS2ErNq+RHY6WD28aokc0LsiHH4Cci13HyOVCxtR/3lWmjVKi+RAVj/VIV91xxvqXshIgGMWHQLqpvEdGauypQ8WPU= Received: by 10.142.89.9 with SMTP id m9mr4277223wfb.116.1203340058227; Mon, 18 Feb 2008 05:07:38 -0800 (PST) Received: by 10.70.25.13 with HTTP; Mon, 18 Feb 2008 05:07:38 -0800 (PST) Message-ID: <3131aa530802180507k25166102s19719688c43b356e@mail.gmail.com> Date: Mon, 18 Feb 2008 14:07:38 +0100 From: "Olivier Cochard-Labbe" Sender: cochard@gmail.com To: "Michael Ross" In-Reply-To: MIME-Version: 1.0 References: <47AEB6C8.1070907@gmx.net> <47AF4AF8.8040808@FreeBSD.org> <20080213072347.GA23253@nagual.pp.ru> X-Google-Sender-Auth: 7e7f705c7f07f338 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Matt , Garrett Cooper , Andrey Chernov , watermelon@gmx.net, freebsd-ports-mailinglist , Sergey Matveychuk Subject: Re: TrueCrypt 5.0 - Built, short test result: Ok. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 13:33:50 -0000 Hi all, > Port at http://www.triplefork.net/truecrypt.tgz has updated checksums. I'm using it under FreeBSD 7.0 RC2 with a 1Gb file (created with a previous Truecrypt release under Windows), and working on my OOo files on this encrypted volume without problem. Thanks for your works. Olivier From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 15:02:18 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B15516A46C for ; Mon, 18 Feb 2008 15:02:18 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.238]) by mx1.freebsd.org (Postfix) with ESMTP id 911E813C45E for ; Mon, 18 Feb 2008 15:02:17 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: by wr-out-0506.google.com with SMTP id 68so1121196wri.3 for ; Mon, 18 Feb 2008 07:02:17 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; bh=1TnbD2Wqh+Loq9K0sBLnbWn4Kq+R49HeOIkJAbU/UO8=; b=eSZ8qJMTgGFnfGTngfDxXXAGgN0OM9LvTh2t3NYxplNcrWDR/LyAjXiSMorPFNgJSjlBy/vJjw2aS+aDLrCydA2JrgKhSRF7OdNgJa5Sk3oo1J87x+zD1s9B/69ZPlNrcoNSi0E+aXszmIZ92uzpkbwFXLaoYXcjLuZpBVBTdJs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=Kmrb6uA+JewPE00Zi13wa9I0mns4w6mvAfW19YkFUt1vWbTp5Mjs1lcpi2o0LTobMJGoFlpX89jHhMZg9gkhuKsi/iJCgxKZxpvONimsISC2ZeZ1UITLduKTZzN+wZ7P2ERWapVhyTXVCV67WYXMeWA5L0QKgSIGNDXVQd7uIFk= Received: by 10.142.111.14 with SMTP id j14mr4393768wfc.96.1203346935820; Mon, 18 Feb 2008 07:02:15 -0800 (PST) Received: from ?192.168.1.104? ( [68.35.151.186]) by mx.google.com with ESMTPS id 31sm15938314wff.7.2008.02.18.07.02.14 (version=SSLv3 cipher=RC4-MD5); Mon, 18 Feb 2008 07:02:15 -0800 (PST) From: James To: Helmut Schneider In-Reply-To: References: <1203298778.6223.10.camel@pclmills> Content-Type: text/plain Date: Mon, 18 Feb 2008 08:02:13 -0700 Message-Id: <1203346933.5865.6.camel@pclmills> Mime-Version: 1.0 X-Mailer: Evolution 2.12.1 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: ntop does not compile on 7.0-RC2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: oscartheduck@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 15:02:18 -0000 On Mon, 2008-02-18 at 11:18 +0100, Helmut Schneider wrote: > James wrote: > > > > On Sun, 2008-02-17 at 17:20 +0100, Helmut Schneider wrote: > >> Hi, > >> > >> ntop stops with: > >> [...] > >> then mv -f ".deps/iface.Tpo" ".deps/iface.Plo"; else rm -f > >> ".deps/iface.Tpo"; exit 1; fi > >> cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I/usr -I/usr/include -DINET6 -O2 > >> -Dfreebsd7 -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN > >> -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe > >> -Wdeclaration-after-statement -I/usr/local/lib/perl5/5.8.8/mach/CORE > >> -I. -I/usr/local/include -DFREEBSD -I/usr/local/include > >> -I/usr/local/include -I/usr/include -g -O2 -fno-strict-aliasing -pipe > >> -I/usr/local/include -g -Wshadow -Wpointer-arith -Wmissing-prototypes > >> -Wmissing-declarations -Wnested-externs -fPIC -DPIC -MT iface.lo -MD > >> -MP -MF .deps/iface.Tpo -c iface.c -fPIC -DPIC -o .libs/iface.o > >> In file included from /usr/local/include/net-snmp/utilities.h:54, > >> from /usr/local/include/net-snmp/net-snmp-includes.h:78, > >> from iface.c:766: > >> /usr/local/include/net-snmp/library/container.h: In function > >> 'CONTAINER_FREE': > >> /usr/local/include/net-snmp/library/container.h:416: error: lvalue > >> required as left operand of assignment > >> In file included from /usr/local/include/net-snmp/mib_api.h:24, > >> from /usr/local/include/net-snmp/net-snmp-includes.h:81, > >> from iface.c:766: > >> /usr/local/include/net-snmp/library/parse.h:32:1: warning: "MAXLABEL" > >> redefined > >> In file included from /usr/include/arpa/nameser.h:579, > >> from ntop.h:321, > >> from iface.c:26: > >> /usr/include/arpa/nameser_compat.h:104:1: warning: this is the > >> location of the previous definition > >> gmake[2]: *** [iface.lo] Error 1 > >> gmake[2]: Leaving directory `/usr/ports/net/ntop/work/ntop-3.3' > >> gmake[1]: *** [all-recursive] Error 1 > >> gmake[1]: Leaving directory `/usr/ports/net/ntop/work/ntop-3.3' > >> gmake: *** [all] Error 2 > >> *** Error code 2 > >> > >> Stop in /usr/ports/net/ntop. > >> *** Error code 1 > >> > >> Stop in /usr/ports/net/ntop. > >> > >> Bug or a local problem? > >> > > Local problem. > > > > I don'thave a net-snmp directory installed; looks like some library > > there is clobbering a needed definition. > > Indeed, net-snmp breaks ntop. I removed net-snmp and ntop compiles fine. > Installed net-snmp and rebuilded ntop, fails. > > What should I do now, report the maintainer of ntop and/or net-snmp? > Sounds like an entirely reasonable course of action. The maintainers' email addresses ought to be in the Makefile for each port. I imagine it's the ntop person you want to report to. If other ports install fine, then net-snmp is also (probably) installing as it should and the ntop Makefile just needs to be tweaked. James From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 15:07:40 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF7AC16A41A for ; Mon, 18 Feb 2008 15:07:40 +0000 (UTC) (envelope-from c0rn@o2.pl) Received: from tur.go2.pl (tur.go2.pl [193.17.41.50]) by mx1.freebsd.org (Postfix) with ESMTP id 81FE713C4D3 for ; Mon, 18 Feb 2008 15:07:40 +0000 (UTC) (envelope-from c0rn@o2.pl) Received: from poczta.o2.pl (mx10.go2.pl [193.17.41.74]) by tur.go2.pl (o2.pl Mailer 2.0.1) with ESMTP id 19531230374 for ; Mon, 18 Feb 2008 15:37:51 +0100 (CET) Received: from poczta.o2.pl (mx10.go2.pl [127.0.0.1]) by poczta.o2.pl (Postfix) with ESMTP id 4730F58004 for ; Mon, 18 Feb 2008 15:37:48 +0100 (CET) Received: from localhost (ayj88.neoplus.adsl.tpnet.pl [83.27.121.88]) by poczta.o2.pl (Postfix) with ESMTP for ; Mon, 18 Feb 2008 15:37:46 +0100 (CET) Date: Mon, 18 Feb 2008 15:37:14 +0100 From: =?ISO-8859-2?Q?Pawe=B3_P=EAkala?= To: ports@freebsd.org Message-ID: <20080218153714.50f3f9b0@o2.pl> In-Reply-To: <47B95990.8070808@FreeBSD.org> References: <36e46ac80802171226p6a18997ao21e03b626425695e@mail.gmail.com> <47B8A3B2.8090202@infracaninophile.co.uk> <1203283417.6223.3.camel@pclmills> <20080217212857.c4df5d25.ota@j.email.ne.jp> <47B95990.8070808@FreeBSD.org> X-Mailer: Claws Mail 3.3.0 (GTK+ 2.12.7; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: ldconfig -R issue (Was: Problems with icu - 3.8) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 15:07:41 -0000 Dnia 2008-02-18, o godz. 13:10:24 Sergey Matveychuk napisa=B3(a): >Portupgrade preserves the libraries in /usr/local/lib/compat/pkg: >% ls /usr/local/lib/compat/pkg/ >libicudata.so.36.0 libicule.so.36.0 libicuuc.so.36.0 >libicui18n.so.36.0 libiculx.so.36.0 >libicuio.so.36.0 libicutu.so.36.0 I solved this problem by renaming those files, removing trailing '.0' from their names fixed it for me, ldconfig can see those libs after that. HTH, Pawe=B3=20 From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 15:12:48 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7275916A49C for ; Mon, 18 Feb 2008 15:12:48 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.freebsd.org (Postfix) with ESMTP id 546BC13C4DD for ; Mon, 18 Feb 2008 15:12:48 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id DD3085C5C; Mon, 18 Feb 2008 10:15:13 -0500 (EST) Date: Mon, 18 Feb 2008 10:15:13 -0500 From: Wesley Shields To: James Message-ID: <20080218151513.GE90004@atarininja.org> References: <1203298778.6223.10.camel@pclmills> <1203346933.5865.6.camel@pclmills> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1203346933.5865.6.camel@pclmills> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: Helmut Schneider , freebsd-ports@freebsd.org Subject: Re: ntop does not compile on 7.0-RC2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 15:12:48 -0000 On Mon, Feb 18, 2008 at 08:02:13AM -0700, James wrote: > > On Mon, 2008-02-18 at 11:18 +0100, Helmut Schneider wrote: > > James wrote: > > > > > > On Sun, 2008-02-17 at 17:20 +0100, Helmut Schneider wrote: > > >> Hi, > > >> > > >> ntop stops with: > > >> [...] > > >> then mv -f ".deps/iface.Tpo" ".deps/iface.Plo"; else rm -f > > >> ".deps/iface.Tpo"; exit 1; fi > > >> cc -DHAVE_CONFIG_H -I. -I. -I. -I. -I/usr -I/usr/include -DINET6 -O2 > > >> -Dfreebsd7 -DAPPLLIB_EXP=/usr/local/lib/perl5/5.8.8/BSDPAN > > >> -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -fno-strict-aliasing -pipe > > >> -Wdeclaration-after-statement -I/usr/local/lib/perl5/5.8.8/mach/CORE > > >> -I. -I/usr/local/include -DFREEBSD -I/usr/local/include > > >> -I/usr/local/include -I/usr/include -g -O2 -fno-strict-aliasing -pipe > > >> -I/usr/local/include -g -Wshadow -Wpointer-arith -Wmissing-prototypes > > >> -Wmissing-declarations -Wnested-externs -fPIC -DPIC -MT iface.lo -MD > > >> -MP -MF .deps/iface.Tpo -c iface.c -fPIC -DPIC -o .libs/iface.o > > >> In file included from /usr/local/include/net-snmp/utilities.h:54, > > >> from /usr/local/include/net-snmp/net-snmp-includes.h:78, > > >> from iface.c:766: > > >> /usr/local/include/net-snmp/library/container.h: In function > > >> 'CONTAINER_FREE': > > >> /usr/local/include/net-snmp/library/container.h:416: error: lvalue > > >> required as left operand of assignment > > >> In file included from /usr/local/include/net-snmp/mib_api.h:24, > > >> from /usr/local/include/net-snmp/net-snmp-includes.h:81, > > >> from iface.c:766: > > >> /usr/local/include/net-snmp/library/parse.h:32:1: warning: "MAXLABEL" > > >> redefined > > >> In file included from /usr/include/arpa/nameser.h:579, > > >> from ntop.h:321, > > >> from iface.c:26: > > >> /usr/include/arpa/nameser_compat.h:104:1: warning: this is the > > >> location of the previous definition > > >> gmake[2]: *** [iface.lo] Error 1 > > >> gmake[2]: Leaving directory `/usr/ports/net/ntop/work/ntop-3.3' > > >> gmake[1]: *** [all-recursive] Error 1 > > >> gmake[1]: Leaving directory `/usr/ports/net/ntop/work/ntop-3.3' > > >> gmake: *** [all] Error 2 > > >> *** Error code 2 > > >> > > >> Stop in /usr/ports/net/ntop. > > >> *** Error code 1 > > >> > > >> Stop in /usr/ports/net/ntop. > > >> > > >> Bug or a local problem? > > >> > > > Local problem. > > > > > > I don'thave a net-snmp directory installed; looks like some library > > > there is clobbering a needed definition. > > > > Indeed, net-snmp breaks ntop. I removed net-snmp and ntop compiles fine. > > Installed net-snmp and rebuilded ntop, fails. > > > > What should I do now, report the maintainer of ntop and/or net-snmp? > > > > Sounds like an entirely reasonable course of action. The maintainers' > email addresses ought to be in the Makefile for each port. That would be me. :) > I imagine it's the ntop person you want to report to. If other ports > install fine, then net-snmp is also (probably) installing as it should > and the ntop Makefile just needs to be tweaked. I'll look into this, but any relevant information should be submitted as a PR so there is a more permanent record of it. I'll go about getting it fixed as time permits. Thank you for bringing this to my attention. :) -- WXS From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 15:46:27 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CBFE16A41A for ; Mon, 18 Feb 2008 15:46:27 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.226]) by mx1.freebsd.org (Postfix) with ESMTP id BD28613C465 for ; Mon, 18 Feb 2008 15:46:26 +0000 (UTC) (envelope-from oscartheduck@gmail.com) Received: by wx-out-0506.google.com with SMTP id i29so1410531wxd.7 for ; Mon, 18 Feb 2008 07:46:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:subject:from:reply-to:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; bh=Jb14Ji7k3F0v3Mra7SVR9miiFhtPTZvUCrdWq7nwx80=; b=ih2nbRZMH6ueofHbQ++7YVfM+KoDMFuo/sURfNm62xiwxH1zQQgI8pjHqqqCTzzycHBydhFynebHYl2Ky7s3UYA1CCWMACxLvOAHBmbUxf3nM/3t7+3BzI7uAeICQKp2SbjcDAe5Y9rWxUoXtszgRnYbRopvTy0SJAa5Ei4raD8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=subject:from:reply-to:to:cc:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=Vgn/kStAutCUVRoyj2Be/bfjvrLs0UJGApPuTYskFh5ewslp1rTIavmDlV6ZGKAqtGyAvQ1TjmE2UJl5JKW05L5bGoK2qsKt+Gn9b0SVgtqNJzGXY+EvRwXQKuwQRv4fwNVr6OqcLrQVGHpcao2ER9nO7x29vYKA7/YspcqPlHM= Received: by 10.141.204.16 with SMTP id g16mr3941045rvq.45.1203349584942; Mon, 18 Feb 2008 07:46:24 -0800 (PST) Received: from ?192.168.1.104? ( [68.35.151.186]) by mx.google.com with ESMTPS id k34sm874377rvb.23.2008.02.18.07.46.23 (version=SSLv3 cipher=RC4-MD5); Mon, 18 Feb 2008 07:46:24 -0800 (PST) From: James To: Da Rock In-Reply-To: References: Content-Type: text/plain Date: Mon, 18 Feb 2008 08:46:22 -0700 Message-Id: <1203349582.5865.11.camel@pclmills> Mime-Version: 1.0 X-Mailer: Evolution 2.12.1 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: mod_webapp port broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: oscartheduck@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 15:46:27 -0000 On Mon, 2008-02-18 at 09:09 +0000, Da Rock wrote: > I'm tearing my hair out here- I'm having absolutely no luck with getting a calendar server and my latest sore point is the mod_webapp port which won't build because of missing includes. > > I ran a search but it appears that is only marked broken for certain archs, well I'm only running a poxy little pentium box - not 64bit processor. Here is my output: > > Building for mod_webapp-4.1.24_2 > /bin/mkdir -p /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/build > /bin/mkdir -p /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/build/objs > /usr/bin/perl "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/support/scandoc.pl" \ > -i "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/support/template.pl" \ > -p "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/build/docs/api-c/" \ > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/*.h > Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h" > Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_config.h" > parsing class wa_connection > parsing class wa_virtualhost > parsing class wa_application > Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_main.h" > parsing class wa_chain > parsing class wa_provider > Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_request.h" > parsing class wa_hostdata > parsing class wa_ssldata > parsing class wa_handler > parsing class wa_request > Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_version.h" > gmake[1]: Entering directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp' > > gmake[1]: Entering directory "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib" > gmake[2]: Entering directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib' > /usr/local/build-1/libtool --silent --mode=compile \ > cc -c /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c -o wa_main.lo \ > -I. -I/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include -I/usr/local/include/apache22 \ > \ > -O2 -fno-strict-aliasing -pipe > In file included from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:59: > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:77:25: apr_general.h: No such file or directory > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:78:23: apr_pools.h: No such file or directory > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:79:25: apr_strings.h: No such file or directory > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:80:24: apr_tables.h: No such file or directory > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:82:22: apr_time.h: No such file or directory > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:83:28: apr_network_io.h: No such file or directory > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:84:27: apr_file_info.h: No such file or directory > In file included from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:115, > from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:59: > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_main.h:141: error: syntax error before "apr_pool_t" > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_main.h:150: error: syntax error before "apr_pool_t" > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_main.h:232: error: syntax error before '*' token > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_main.h:232: warning: data definition has no type or storage class > In file included from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:117, > from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:59: > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_request.h:114: error: syntax error before "apr_pool_t" > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_request.h:146: error: syntax error before "apr_table_t" > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:62: error: syntax error before '*' token > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:62: warning: data definition has no type or storage class > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c: In function `wa_init': > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:82: error: `APR_SUCCESS' undeclared (first use in this function) > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:82: error: (Each undeclared identifier is reported only once > /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:82: error: for each function it appears in.) > gmake[2]: *** [wa_main.lo] Error 1 > gmake[2]: Leaving directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib' > gmake[1]: *** [subdir] Error 2 > gmake[1]: Leaving directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp' > gmake: *** [lib-build] Error 2 > *** Error code 2 > > Stop in /usr/ports/www/mod_webapp. > > Now, I've run this several times with various changes all with the same result. I've checked my $LOCALBASE and $PORTSDIR variables which point to /usr/local and /usr/ports respectively. I've run make using -Dwith-apr-include=/usr/local/include/apr-1 - all no good. > > Am I missing something? And if you want to mark it as broken thats ok, but I'd like to know how to get around it myself... It installs fine over here. First check the simple things: run make clean, update your ports tree, run portupgrade, and try again. Best James From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 15:47:46 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C07B416A417 for ; Mon, 18 Feb 2008 15:47:46 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id 7DA6213C459 for ; Mon, 18 Feb 2008 15:47:46 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JR8DT-0007rj-6Y for freebsd-ports@freebsd.org; Mon, 18 Feb 2008 15:47:39 +0000 Received: from 193.101.155.96 ([193.101.155.96]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 18 Feb 2008 15:47:39 +0000 Received: from jumper99 by 193.101.155.96 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 18 Feb 2008 15:47:39 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: "Helmut Schneider" Date: Mon, 18 Feb 2008 16:47:29 +0100 Lines: 22 Message-ID: References: <1203298778.6223.10.camel@pclmills> <1203346933.5865.6.camel@pclmills> <20080218151513.GE90004@atarininja.org> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 193.101.155.96 X-MSMail-Priority: Normal X-Newsreader: vi with a tiny little GUI X-MimeOLE: Huh, what?! Sender: news Subject: Re: ntop does not compile on 7.0-RC2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 15:47:46 -0000 Wesley Shields wrote: > On Mon, Feb 18, 2008 at 08:02:13AM -0700, James wrote: >> Sounds like an entirely reasonable course of action. The maintainers' >> email addresses ought to be in the Makefile for each port. > > That would be me. :) > >> I imagine it's the ntop person you want to report to. If other ports >> install fine, then net-snmp is also (probably) installing as it should >> and the ntop Makefile just needs to be tweaked. > > I'll look into this, but any relevant information should be submitted as > a PR so there is a more permanent record of it. I'll go about getting > it fixed as time permits. done. For more information don't hesitate to contact me. Thanks, Helmut -- No Swen today, my love has gone away My mailbox stands for lorn, a symbol of the dawn From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 17:06:33 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13D8916A417 for ; Mon, 18 Feb 2008 17:06:33 +0000 (UTC) (envelope-from gahr@gahr.ch) Received: from cpanel03.rubas-s03.net (cpanel03.rubas-s03.net [195.182.222.73]) by mx1.freebsd.org (Postfix) with ESMTP id 8C7DE13C478 for ; Mon, 18 Feb 2008 17:06:32 +0000 (UTC) (envelope-from gahr@gahr.ch) Received: from town.bfh.ch ([147.87.98.171]) by cpanel03.rubas-s03.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1JR8zy-0003FU-AS; Mon, 18 Feb 2008 17:37:46 +0100 Message-ID: <47B9B458.6000103@gahr.ch> Date: Mon, 18 Feb 2008 17:37:44 +0100 From: Pietro Cerutti User-Agent: Thunderbird 1.5.0.9 (X11/20070104) MIME-Version: 1.0 To: oscartheduck@gmail.com References: <1203349582.5865.11.camel@pclmills> In-Reply-To: <1203349582.5865.11.camel@pclmills> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel03.rubas-s03.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - gahr.ch X-Source: X-Source-Args: X-Source-Dir: Cc: Da Rock , freebsd-ports@freebsd.org Subject: Re: mod_webapp port broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 17:06:33 -0000 James wrote: > On Mon, 2008-02-18 at 09:09 +0000, Da Rock wrote: >> I'm tearing my hair out here- I'm having absolutely no luck with getting a calendar server and my latest sore point is the mod_webapp port which won't build because of missing includes. >> >> I ran a search but it appears that is only marked broken for certain archs, well I'm only running a poxy little pentium box - not 64bit processor. Here is my output: >> > > > >> Building for mod_webapp-4.1.24_2 >> /bin/mkdir -p /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/build >> /bin/mkdir -p /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/build/objs >> /usr/bin/perl "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/support/scandoc.pl" \ >> -i "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/support/template.pl" \ >> -p "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/build/docs/api-c/" \ >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/*.h >> Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h" >> Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_config.h" >> parsing class wa_connection >> parsing class wa_virtualhost >> parsing class wa_application >> Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_main.h" >> parsing class wa_chain >> parsing class wa_provider >> Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_request.h" >> parsing class wa_hostdata >> parsing class wa_ssldata >> parsing class wa_handler >> parsing class wa_request >> Reading "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_version.h" >> gmake[1]: Entering directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp' >> >> gmake[1]: Entering directory "/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib" >> gmake[2]: Entering directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib' >> /usr/local/build-1/libtool --silent --mode=compile \ >> cc -c /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c -o wa_main.lo \ >> -I. -I/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include -I/usr/local/include/apache22 \ >> \ >> -O2 -fno-strict-aliasing -pipe >> In file included from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:59: >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:77:25: apr_general.h: No such file or directory >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:78:23: apr_pools.h: No such file or directory >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:79:25: apr_strings.h: No such file or directory >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:80:24: apr_tables.h: No such file or directory >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:82:22: apr_time.h: No such file or directory >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:83:28: apr_network_io.h: No such file or directory >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:84:27: apr_file_info.h: No such file or directory >> In file included from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:115, >> from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:59: >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_main.h:141: error: syntax error before "apr_pool_t" >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_main.h:150: error: syntax error before "apr_pool_t" >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_main.h:232: error: syntax error before '*' token >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_main.h:232: warning: data definition has no type or storage class >> In file included from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa.h:117, >> from /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:59: >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_request.h:114: error: syntax error before "apr_pool_t" >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/include/wa_request.h:146: error: syntax error before "apr_table_t" >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:62: error: syntax error before '*' token >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:62: warning: data definition has no type or storage class >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c: In function `wa_init': >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:82: error: `APR_SUCCESS' undeclared (first use in this function) >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:82: error: (Each undeclared identifier is reported only once >> /usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib/wa_main.c:82: error: for each function it appears in.) >> gmake[2]: *** [wa_main.lo] Error 1 >> gmake[2]: Leaving directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp/lib' >> gmake[1]: *** [subdir] Error 2 >> gmake[1]: Leaving directory `/usr/ports/www/mod_webapp/work/jakarta-tomcat-connectors-4.1.24-src/webapp' >> gmake: *** [lib-build] Error 2 >> *** Error code 2 >> >> Stop in /usr/ports/www/mod_webapp. >> >> Now, I've run this several times with various changes all with the same result. I've checked my $LOCALBASE and $PORTSDIR variables which point to /usr/local and /usr/ports respectively. I've run make using -Dwith-apr-include=/usr/local/include/apr-1 - all no good. >> >> Am I missing something? And if you want to mark it as broken thats ok, but I'd like to know how to get around it myself... > > > It installs fine over here. just a ditto.. > > First check the simple things: run make clean, update your ports tree, > run portupgrade, and try again. > > Best > > James -- Pietro Cerutti PGP Public Key: http://gahr.ch/pgp From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 17:19:20 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A2D1E16A41A for ; Mon, 18 Feb 2008 17:19:20 +0000 (UTC) (envelope-from gvm999@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by mx1.freebsd.org (Postfix) with ESMTP id EE7DC13C45D for ; Mon, 18 Feb 2008 17:19:19 +0000 (UTC) (envelope-from gvm999@gmail.com) Received: by ug-out-1314.google.com with SMTP id y2so1021140uge.37 for ; Mon, 18 Feb 2008 09:19:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=kBaBmcod67XkMiF0PgVp4s95JhYQZHOqcUp6k0C2HDI=; b=osAmuWWunt7Z6OxCU3HehGdWORA1Z91peYfsxlQQEbxr6tsedton4HQDRAWZUFsbKncb4tJNGrVTD1WJ2xBkLnQMDG+IoSDC0/WDxJUmY9FPdv1ZxFHbuFXWacxp9YmILiZqc4Gf8LgFXoOxDQMqqJUr52pHRFmC37zhplrCYtA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=wkXvUBGhTXaeCjVisCXahvhVV8WqXEjXmtbno2lIRRl+0aefcZFhuteBAQtsU4Q8KyCplrIcGSoLSs927fpqx7U1ndDRXrIEMWYkcW0dpGD1j7adZy+2T7l2cejzxm8rGKPXW5uI51wLbOS0Gx/RKREIHmNh9vkMHge+wdxKAvY= Received: by 10.67.27.3 with SMTP id e3mr971712ugj.22.1203353622762; Mon, 18 Feb 2008 08:53:42 -0800 (PST) Received: by 10.66.237.11 with HTTP; Mon, 18 Feb 2008 08:53:42 -0800 (PST) Message-ID: Date: Mon, 18 Feb 2008 17:53:42 +0100 From: gvm999 To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Netbios name resolving for ping and other software (rdesktop,..) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 17:19:20 -0000 I want to be able to resolve Netbios names without the use of /etc/hosts nor a DNS server. However I cant get it to work. I want to be able to use the netbios name for example with CUPS, rdesktop, ssh. CUPS for example uses the netbios name with its shared printers. If another computer lists shared printer then the netbios name is used, which cannot be resolved, leaving it not working. So I wanted to have transparent name resolving. I had this working previously on Linux (debian) I thought I could fix this with /etc/nsswitch.conf but without any luck. Does someone knows what I am doing wrong? I have been searching for this for a few days :s I have a samba configured as wins server and nmbd is also running. Resolving with nmblookup works fine... however does not with for example PING. This is my config. My smb.conf: Code: [global] workgroup = MYGROUP server string = Samba Server interfaces = 192.168.1.11/24 log file = /usr/local/samba/var/log.%m max log size = 50 name resolve order = wins hosts lmhosts bcast printcap name = printcap os level = 33 preferred master = Yes domain master = Yes wins support = Yes hosts allow = 192.168.1., 192.168.100., 127. [homes] comment = Home Directories [printers] comment = All Printers path = /usr/spool/samba printable = Yes browseable = No [share] comment = Torrent Share path = /home/gvm/downloaded read only = No [torrent-watch] comment = Torrent Share path = /home/gvm/watch-torrent read only = No When I do smbclient -L vpn-gateway: Code: Anonymous login successful Domain=[MYGROUP] OS=[Unix] Server=[Samba 3.0.23c] Sharename Type Comment --------- ---- ------- homes Disk Home Directories share Disk Torrent Share torrent-watch Disk Torrent Share IPC$ IPC IPC Service (Samba Server) Anonymous login successful Domain=[MYGROUP] OS=[Unix] Server=[Samba 3.0.23c] Server Comment --------- ------- VPN-GATEWAY Samba Server Workgroup Master --------- ------- MYGROUP VPN-GATEWAY Still if I want to ping I get unknown host. Cat /etc/nsswitch.conf Code: group: compat group_compat: nis hosts: files wins winbind bcast dns networks: files passwd: compat passwd_compat: nis shells: files nmblookup vpn-gateway: Code: nmblookup vpn-gateway querying vpn-gateway on 192.168.1.255192.168.1.11 vpn-gateway<00> What I dont understand are the contents of /etc/host.conf They dont have wins or broadcast (bcast) in it. But it says that it is automatically generated. How can I regenerate that file? cat /etc/host.conf Code: # Auto-generated from nsswitch.conf, do not edit hosts dns Maybe it is just normal that it only has those 2 entrys. From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 17:25:24 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9A1516A41A for ; Mon, 18 Feb 2008 17:25:24 +0000 (UTC) (envelope-from jdc@parodius.com) Received: from mx01.sc1.parodius.com (mx01.sc1.parodius.com [72.20.106.3]) by mx1.freebsd.org (Postfix) with ESMTP id 9D8A413C457 for ; Mon, 18 Feb 2008 17:25:24 +0000 (UTC) (envelope-from jdc@parodius.com) Received: by mx01.sc1.parodius.com (Postfix, from userid 1000) id 85FD11CC038; Mon, 18 Feb 2008 09:25:24 -0800 (PST) Date: Mon, 18 Feb 2008 09:25:24 -0800 From: Jeremy Chadwick To: gvm999 Message-ID: <20080218172524.GA6302@eos.sc1.parodius.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.16 (2007-06-09) Cc: freebsd-ports@freebsd.org Subject: Re: Netbios name resolving for ping and other software (rdesktop,..) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 17:25:24 -0000 On Mon, Feb 18, 2008 at 05:53:42PM +0100, gvm999 wrote: > I want to be able to resolve Netbios names without the use of /etc/hosts nor > a DNS server. > > However I cant get it to work. > ... > Cat /etc/nsswitch.conf > > hosts: files wins winbind bcast dns This won't work, because FreeBSD does not understand source types "wins", "winbind", nor "bcast". See the nsswitch.conf manpage for details regarding what sources are actually accepted. Sounds like Linux has this capability, which is why it works there. -- | Jeremy Chadwick jdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 17:49:36 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A935E16A481 for ; Mon, 18 Feb 2008 17:49:36 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao104.cox.net (eastrmmtao104.cox.net [68.230.240.46]) by mx1.freebsd.org (Postfix) with ESMTP id 37F0413C4F0 for ; Mon, 18 Feb 2008 17:49:35 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo01.cox.net ([68.1.16.119]) by eastrmmtao106.cox.net (InterMail vM.7.08.02.01 201-2186-121-102-20070209) with ESMTP id <20080218171246.OLEJ20005.eastrmmtao106.cox.net@eastrmimpo01.cox.net>; Mon, 18 Feb 2008 12:12:46 -0500 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo01.cox.net with bizsmtp id r5Cb1Y00R4iy4EG0200000; Mon, 18 Feb 2008 12:12:36 -0500 Date: Mon, 18 Feb 2008 11:13:56 -0600 To: "Yoshihiro Ota" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <36e46ac80802171226p6a18997ao21e03b626425695e@mail.gmail.com> <47B8A3B2.8090202@infracaninophile.co.uk> <1203283417.6223.3.camel@pclmills> <20080217212857.c4df5d25.ota@j.email.ne.jp> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <20080217212857.c4df5d25.ota@j.email.ne.jp> User-Agent: Opera Mail/9.25 (Linux) Cc: ports@freebsd.org, Atanas Gendov , oscartheduck@gmail.com Subject: Re: Problems with icu - 3.8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 17:49:36 -0000 On Sun, 17 Feb 2008 20:28:57 -0600, Yoshihiro Ota wrote: > On Sun, 17 Feb 2008 14:23:37 -0700 > James wrote: > >> >> On Sun, 2008-02-17 at 21:14 +0000, Matthew Seaman wrote: >> > -----BEGIN PGP SIGNED MESSAGE----- >> > Hash: SHA256 >> > >> > Atanas Gendov wrote: >> > > Greetings to all from FreeBSD Ports!!! :) >> > > I have some problems with icu - 3.8. After portupgrade of icu and >> some >> > > others packages I can't start Gnome. Because of Gnome needs module >> from icu >> > > - 3.6. Unfortunately there is no new port for gdm which doesn't >> have depends >> > > on icu-3.6. >> > >> > Lots of people are getting bitten by the effects of the bump in the >> > libicu* shlib ABI version numbers -- there really should be a note >> > in UPDATING about it. It affects all sorts of different packages -- >> > I've even got one system where it took out OpenLDAP. >> >> Do you know who to ask for the note? I was bitten by it, but >> fortunately there >> had just been a large thread in questions@ about it. It does seem to be >> a >> common issue. >> >> James > > > Why are so many people are bitten by this? Is that the jobs of > port-upgrading > tool to safe copy these libraries to compat so that all programs using > the old libraries works? Backup the old libraries aren't right solution, anyway. The right solution is to add in UPDATING to tell users to rebuild all of ports that depend on icu. Read all follow up in http://lists.freebsd.org/pipermail/cvs-ports/2008-February/142107.html .. Cheers, Mezz > Hiro -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team - FreeBSD Multimedia Hat (ports, not src) http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org http://wiki.freebsd.org/multimedia - multimedia@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Mon Feb 18 19:04:54 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86DDA16A498 for ; Mon, 18 Feb 2008 19:04:54 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from viefep15-int.chello.at (viefep18-int.chello.at [213.46.255.22]) by mx1.freebsd.org (Postfix) with ESMTP id C787C13C457 for ; Mon, 18 Feb 2008 19:04:53 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from novel.renet.ru ([82.116.33.234]) by viefep28-int.chello.at (InterMail vM.7.08.02.02 201-2186-121-104-20070414) with ESMTP id <20080218184903.HSWV14086.viefep28-int.chello.at@novel.renet.ru>; Mon, 18 Feb 2008 19:49:03 +0100 Date: Mon, 18 Feb 2008 21:52:42 +0300 From: Roman Bogorodskiy To: ports@freebsd.org Message-ID: <20080218185241.GA34373@underworld.novel.ru> Mail-Followup-To: ports@freebsd.org, Thomas Orgis MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="opJtzjQTFsWo+cga" Content-Disposition: inline X-PGP: http://people.freebsd.org/~novel/novel.key.asc Cc: Thomas Orgis Subject: RFC: audio/mpg123 update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Feb 2008 19:04:54 -0000 --opJtzjQTFsWo+cga Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, I'm going to update audio/mpg123 to the version 1.2.0. Because it differs from the usual update a bit, I'd like to hear your comments. shar is available here: http://people.freebsd.org/~novel/misc/mpg123_120.shar If you're using mpg123 0.59r I would appreciate you test new mpg123 1.2.0 and report me any problems with it or with the port, missing features, etc. Based on your feedback, I will decide whether update audio/mpg123 as is or repocopy mpg123 to mpg123-old or something like that if the new mpg123 misses some features. Thanks, Roman Bogorodskiy --opJtzjQTFsWo+cga Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFHudP55nvOfo4+NdURAu4GAJ9qzwSRO9o+FWZfpnaDb9AHrFDg0ACdEd1j jOoHmskJ+koEZZ4A/3eCM3g= =W6Cj -----END PGP SIGNATURE----- --opJtzjQTFsWo+cga-- From owner-freebsd-ports@FreeBSD.ORG Tue Feb 19 01:24:32 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 692E016A41B; Tue, 19 Feb 2008 01:24:32 +0000 (UTC) (envelope-from sean@gothic.net.au) Received: from visi.gothic.net.au (unknown [IPv6:2001:388:f000::a25]) by mx1.freebsd.org (Postfix) with ESMTP id 26B5913C458; Tue, 19 Feb 2008 01:24:32 +0000 (UTC) (envelope-from sean@gothic.net.au) Received: from localhost (localhost [127.0.0.1]) by visi.gothic.net.au (Postfix) with ESMTP id C44D4171A4D; Tue, 19 Feb 2008 12:26:54 +1100 (EST) X-Virus-Scanned: amavisd-new at gothic.net.au Received: from localhost ([127.0.0.1]) by localhost (visi.gothic.net.au [127.0.0.1]) (amavisd-new, port 10026) with SMTP id Diwoff-n1l7Q; Tue, 19 Feb 2008 12:26:52 +1100 (EST) Received: from [IPv6:2002:9665:9a11:1:21c:b3ff:febe:59cc] (unknown [IPv6:2002:9665:9a11:1:21c:b3ff:febe:59cc]) (Authenticated sender: sean) by visi.gothic.net.au (Postfix) with ESMTP id 22C70171A48; Tue, 19 Feb 2008 12:26:52 +1100 (EST) Message-Id: <01336154-6A88-4DAD-9319-690F3307902F@gothic.net.au> From: Sean To: Jeremy Chadwick In-Reply-To: <20080218172524.GA6302@eos.sc1.parodius.com> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v919.2) Date: Tue, 19 Feb 2008 12:24:25 +1100 References: <20080218172524.GA6302@eos.sc1.parodius.com> X-Mailer: Apple Mail (2.919.2) Cc: gvm999 , freebsd-ports@freebsd.org Subject: Re: Netbios name resolving for ping and other software (rdesktop, ..) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 01:24:32 -0000 12:21 Tue 19-Feb root@queen:0 [~] pkg_info -W /usr/local/lib/ nss_winbind.so.1 /usr/local/lib/nss_winbind.so.1 was installed by package samba-3.0.28,1 Install the Samba port, and try configuring nss_winbind and nss_wins using instructions from that. On 19/02/2008, at 4:25 AM, Jeremy Chadwick wrote: > On Mon, Feb 18, 2008 at 05:53:42PM +0100, gvm999 wrote: >> I want to be able to resolve Netbios names without the use of /etc/ >> hosts nor >> a DNS server. >> >> However I cant get it to work. >> ... >> Cat /etc/nsswitch.conf >> >> hosts: files wins winbind bcast dns > > This won't work, because FreeBSD does not understand source types > "wins", "winbind", nor "bcast". See the nsswitch.conf manpage for > details regarding what sources are actually accepted. > > Sounds like Linux has this capability, which is why it works there. > > -- > | Jeremy Chadwick jdc at > parodius.com | > | Parodius Networking http://www.parodius.com/ > | > | UNIX Systems Administrator Mountain View, CA, > USA | > | Making life hard for others since 1977. PGP: > 4BD6C0CB | > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org > " > From owner-freebsd-ports@FreeBSD.ORG Tue Feb 19 05:53:51 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B729616A420 for ; Tue, 19 Feb 2008 05:53:51 +0000 (UTC) (envelope-from err@speed.grandmail.jp) Received: from speed.grandmail.jp (speed.grandmail.jp [59.106.20.223]) by mx1.freebsd.org (Postfix) with ESMTP id 642DD13C44B for ; Tue, 19 Feb 2008 05:53:51 +0000 (UTC) (envelope-from err@speed.grandmail.jp) Received: by speed.grandmail.jp (Postfix, from userid 0) id 9722110C22C; Tue, 19 Feb 2008 14:56:34 +0900 (JST) From: =?ISO-2022-JP?B?a3VyaXN1dGFydRskQiVeJSwlOCVzGyhC?= Errors-To: err@speed.grandmail.jp X-mid: acnnNiD X-pid: Yelk5gJmbYQN X-rid: UbhgnULiX2EikG To: ports@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=ISO-2022-JP Message-Id: <20080219055634.9722110C22C@speed.grandmail.jp> Date: Tue, 19 Feb 2008 14:56:34 +0900 (JST) Cc: Subject: =?iso-2022-jp?b?GyRCIXo7MjJDPFRBNDB3JEshIiMxISQjMCMwIzAxXyROGyhC?= =?iso-2022-jp?b?GyRCSnM9NyVXJWwlPCVzJUhEczYhISobKEI=?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: info_ku@ladymaid.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 05:53:51 -0000 *$B!z(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!z(B* $B!!!!!!!!%/%j%9%?%k%^%,%8%s!!!!!!!!(Bhttp://kurisutaru.ladymaid.net/ $B!!!!!!!!(B *$B!y(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!y(B* $B!!(Bports@freebsd.org $BMM(B $B$49XFI$"$j$,$H$&$4$6$$$^$9!#(B $B!z#2K|?M$KG[?.$G$-$kFH@j9-9p#1#02sJ,!J#3!$#0#0#01_!K$r%W%l%<%s%H!*(B $B!z%a%s%P!<%5%$%H$K$OKh7nBX$o$k$*F@>pJs!J2A3J?t@i1_!A?tK|1_!K$r7G:\!*(B $B!!$4<+M3$K$*;H$$$$$?$@$1$^$9!#(B $B!z$$$^$9$0$*?=$79~$_$J$i%9%?!<%H%-%c%s%Z!<%spJs$NDs6!$G;22CHqMQ$O!"$?$C$?$N!!(B $B!!!!#2!$#8#0#01_$@$1!*!!!!;22C$7$F8e2y$9$k$h$&$J;v$O$"$j$^$;$s!*(B $B"M!!(B http://affili.biz-wave.com/1st/top.cgi?sid=08haru $B!Z(B $B$*A&$aFCA*>pJs(B $B![(B------------------------------------------------ $B"#$"$J$?$NK>$`L4$rr7o!*(B $B!V%U%!!<%9%H%"%U%#%j!W$N%S%8%M%9%7%9%F%`$O!"=>Mh$N%"%U%#%j%(%$%HHNGd$K$*$1$k(B $B@.2LJs=7$K2C$(!"$"$J$?$N>R2p$+$i;O$^$k%@%&%s%0%k!<%W#1#0CJ3,$NHNGd$d(B $B%S%8%M%9;22C$+$iH/@8$7$F!"3F%l%Y%kKh$K5,Dj$5$l$?#1#0CJ3,Js=7A4$F$,!"(B $B$"$J$?$NITO+=jF@$H$7$FN_@Q$7$F;YJ'$o$l$^$9!#(B $B"M!!(B http://affili.biz-wave.com/1st/top.cgi?sid=08haru $B!Z(B $B$*A&$aFCA*>pJs(B $B![(B------------------------------------------------ $B"#"""#"""#"""#"""#"""#!!%a%k%^%,H/9T5$/$@$5$$!#(B ---------------------------------------------------------------- $BEj9F7G:\FbMF$K$D$$$F$N$*Ld$$9g$o$;$O!"Ej9F$NC4Ev Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A573916A420 for ; Tue, 19 Feb 2008 06:07:33 +0000 (UTC) (envelope-from err@speed.grandmail.jp) Received: from speed.grandmail.jp (speed.grandmail.jp [59.106.20.223]) by mx1.freebsd.org (Postfix) with ESMTP id 4B0C013C45E for ; Tue, 19 Feb 2008 06:07:33 +0000 (UTC) (envelope-from err@speed.grandmail.jp) Received: by speed.grandmail.jp (Postfix, from userid 0) id BA27910C268; Tue, 19 Feb 2008 15:10:16 +0900 (JST) From: =?ISO-2022-JP?B?a3VyaXN1dGFydRskQiVeJSwlOCVzGyhC?= Errors-To: err@speed.grandmail.jp X-mid: 35GGsBi X-pid: agnm7iLodeKI X-rid: t_43Atk5wRd57f To: ports@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=ISO-2022-JP Message-Id: <20080219061016.BA27910C268@speed.grandmail.jp> Date: Tue, 19 Feb 2008 15:10:16 +0900 (JST) Cc: Subject: =?iso-2022-jp?b?GyRCIXo7MjJDPFRBNDB3JEshIiMxISQjMCMwIzAxXyROGyhC?= =?iso-2022-jp?b?GyRCSnM9NyVXJWwlPCVzJUhEczYhISobKEI=?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: info_ku@ladymaid.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 06:07:33 -0000 *$B!z(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!z(B* $B!!!!!!!!%/%j%9%?%k%^%,%8%s!!!!!!!!(Bhttp://kurisutaru.ladymaid.net/ $B!!!!!!!!(B *$B!y(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!y(B* $B!!(Bports@freebsd.org $BMM(B $B$49XFI$"$j$,$H$&$4$6$$$^$9!#(B $B!z#2K|?M$KG[?.$G$-$kFH@j9-9p#1#02sJ,!J#3!$#0#0#01_!K$r%W%l%<%s%H!*(B $B!z%a%s%P!<%5%$%H$K$OKh7nBX$o$k$*F@>pJs!J2A3J?t@i1_!A?tK|1_!K$r7G:\!*(B $B!!$4<+M3$K$*;H$$$$$?$@$1$^$9!#(B $B!z$$$^$9$0$*?=$79~$_$J$i%9%?!<%H%-%c%s%Z!<%spJs$NDs6!$G;22CHqMQ$O!"$?$C$?$N!!(B $B!!!!#2!$#8#0#01_$@$1!*!!!!;22C$7$F8e2y$9$k$h$&$J;v$O$"$j$^$;$s!*(B $B"M!!(B http://affili.biz-wave.com/1st/top.cgi?sid=08haru $B!Z(B $B$*A&$aFCA*>pJs(B $B![(B------------------------------------------------ $B"#$"$J$?$NK>$`L4$rr7o!*(B $B!V%U%!!<%9%H%"%U%#%j!W$N%S%8%M%9%7%9%F%`$O!"=>Mh$N%"%U%#%j%(%$%HHNGd$K$*$1$k(B $B@.2LJs=7$K2C$(!"$"$J$?$N>R2p$+$i;O$^$k%@%&%s%0%k!<%W#1#0CJ3,$NHNGd$d(B $B%S%8%M%9;22C$+$iH/@8$7$F!"3F%l%Y%kKh$K5,Dj$5$l$?#1#0CJ3,Js=7A4$F$,!"(B $B$"$J$?$NITO+=jF@$H$7$FN_@Q$7$F;YJ'$o$l$^$9!#(B $B"M!!(B http://affili.biz-wave.com/1st/top.cgi?sid=08haru $B!Z(B $B$*A&$aFCA*>pJs(B $B![(B------------------------------------------------ $B"#"""#"""#"""#"""#"""#!!%a%k%^%,H/9T5$/$@$5$$!#(B ---------------------------------------------------------------- $BEj9F7G:\FbMF$K$D$$$F$N$*Ld$$9g$o$;$O!"Ej9F$NC4Ev Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E96B16A418 for ; Tue, 19 Feb 2008 06:17:01 +0000 (UTC) (envelope-from jack@jarasoft.net) Received: from raats.xs4all.nl (raats.xs4all.nl [82.95.230.43]) by mx1.freebsd.org (Postfix) with ESMTP id 16BE213C45B for ; Tue, 19 Feb 2008 06:17:00 +0000 (UTC) (envelope-from jack@jarasoft.net) Received: from raats.xs4all.nl (localhost.jarasoft.net [127.0.0.1]) by raats.xs4all.nl (Postfix) with ESMTP id 4836C16A66A for ; Tue, 19 Feb 2008 07:17:01 +0100 (CET) Received: from jara3 (unknown [192.168.1.64]) by raats.xs4all.nl (Postfix) with ESMTP id 5DA9D16A585 for ; Tue, 19 Feb 2008 07:17:00 +0100 (CET) Message-ID: <004301c872bf$08613f10$0202fea9@jarasoft.net> From: "Jack Raats" To: Date: Tue, 19 Feb 2008 07:16:58 +0100 Organization: JaRaSoft, Steenbergen, Nederland MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3138 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198 X-Signed-With-GnuPG: GPGrelay Version 0.959 (Win32) Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: ClamAV using ClamSMTP Cc: Subject: Ports unfreeze X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jack Raats List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 06:17:01 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 AT this moment the ports are semi-unfrozen. When will be the ports unfrozen completely? Jack (waiting for the new postfix 2.5.1 in the ports) -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MingW32) - GPGrelay v0.959 iD8DBQFHunRbPh5RwW/NzC4RAroiAJ9sP6JVJ8jPXKW1LDbjxcU+Sm0wgACfRSX7 tRicU3VTnEwGzr0FLPEgE4Q=3D =3DTKiF -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Tue Feb 19 06:56:02 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B99E16A469 for ; Tue, 19 Feb 2008 06:56:02 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from mail07.syd.optusnet.com.au (mail07.syd.optusnet.com.au [211.29.132.188]) by mx1.freebsd.org (Postfix) with ESMTP id C8D5613C4E9 for ; Tue, 19 Feb 2008 06:56:01 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from server.vk2pj.dyndns.org (c220-239-20-82.belrs4.nsw.optusnet.com.au [220.239.20.82]) by mail07.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id m1J6tvAT006422 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 19 Feb 2008 17:55:59 +1100 Received: from server.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by server.vk2pj.dyndns.org (8.14.2/8.14.1) with ESMTP id m1J6tvhc058073; Tue, 19 Feb 2008 17:55:57 +1100 (EST) (envelope-from peter@server.vk2pj.dyndns.org) Received: (from peter@localhost) by server.vk2pj.dyndns.org (8.14.2/8.14.2/Submit) id m1J6tvF9058072; Tue, 19 Feb 2008 17:55:57 +1100 (EST) (envelope-from peter) Date: Tue, 19 Feb 2008 17:55:57 +1100 From: Peter Jeremy To: Jack Raats Message-ID: <20080219065557.GN64299@server.vk2pj.dyndns.org> References: <004301c872bf$08613f10$0202fea9@jarasoft.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Vy6UCbb9EK60RK4A" Content-Disposition: inline In-Reply-To: <004301c872bf$08613f10$0202fea9@jarasoft.net> X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.17 (2007-11-01) Cc: ports@freebsd.org Subject: Re: Ports unfreeze X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 06:56:02 -0000 --Vy6UCbb9EK60RK4A Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Feb 19, 2008 at 07:16:58AM +0100, Jack Raats wrote: >AT this moment the ports are semi-unfrozen. >When will be the ports unfrozen completely? Once 7.0 is released. --=20 Peter Jeremy Please excuse any delays as the result of my ISP's inability to implement an MTA that is either RFC2821-compliant or matches their claimed behaviour. --Vy6UCbb9EK60RK4A Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFHun19/opHv/APuIcRAvFjAJ90UnrsL3yDO02Th4f553EFUbXalACfbTs8 +2o1JFPvmS9NBzQkK83/ivw= =udD3 -----END PGP SIGNATURE----- --Vy6UCbb9EK60RK4A-- From owner-freebsd-ports@FreeBSD.ORG Tue Feb 19 07:33:49 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FCAE16A469 for ; Tue, 19 Feb 2008 07:33:49 +0000 (UTC) (envelope-from mmz-6144=65095357768579=2ji2lyb=417=ports=FreeBSD.org@magerr.combzmail.jp) Received: from r1288.ps.combzmail.jp (r61.combzmail.jp [211.133.130.136]) by mx1.freebsd.org (Postfix) with SMTP id 7DF9213C46B for ; Tue, 19 Feb 2008 07:33:47 +0000 (UTC) (envelope-from mmz-6144=65095357768579=2ji2lyb=417=ports=FreeBSD.org@magerr.combzmail.jp) Received: (qmail 18180 invoked by uid 509); 19 Feb 2008 16:07:06 +0900 Date: 19 Feb 2008 16:07:06 +0900 Message-ID: <20080219070706.18178.qmail@r1288.ps.combzmail.jp> To: ports@FreeBSD.org From: =?ISO-2022-JP?B?GyRCN3w+XiRHJUklaiE8JWAlMiVDJUgbKEI=?= X-Ip: 168832126961598 Mime-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit X-MagazineId: 6144 X-uId: 6746235745484258645285711002 X-Sender: CombzMailSender X-Url: http://www.combzmail.jp/ Cc: Subject: =?iso-2022-jp?b?GyRCIXkheiF5JDMkbCRPJGIkJiQqNmI7fSRBJEskSiRsGyhC?= =?iso-2022-jp?b?GyRCJGtKdUgiJGQhQSEqIXkheiF5GyhC?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 07:33:49 -0000 $B!y(,(B^$B!{(B^-$B!y(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!y(B $B!!!y!y!!$b$&!!LY$+$i$J$$$J$s$F$$$o$;$^$;$s!*!!!y!y(B $B$"$J$?$,$b$7!"<}F~$r7n<}#1#0#0K|1_$d#1#0#0#0K|1_$K$7$F!"(B $BIT0B$JKhF|$H%5%h%J%i$7$?$$$J$i!"$7$+$b<+M3$J;~4V$r^@83h"v!z!y(B $B!!!!!!!!!!!!!!!!!!7|>^(Bde$B%I%j!<%`%2%C%H!!!!(B http://fficenow.web.fc2.com/ $B!!!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D!D(B $B!!!!!!!y!z!y$3$l$O$b$&$*6b;}$A$K$J$l$kJuH"$d!A!*!y!z!y(B $B!!!!!!!!!!!!(B http://happy2007.blog.shinobi.jp/ $B".".".".".".".".".".".".".".".".".".".".".".".".".".".".".".".".".".".".(B $B!y!z!y!y!z!y!y!z!y!y!z!y!y!z!y!y!z!y!y!z!y!y!z!y!y!z!y!y!y!z!y(B $B;d$O!"$3$N%S%8%M%9$r;O$a$F(B1$B7nL\$K(B25$BK|1_!"(B $B#2%v7nL\$O(B48$BK|1_!"#3%v7nL\$K$O(B62$BK|(B8$B@i1_!"#4%v7nL\$K$O!&!&!&(B $B#1#1#8K|#9@i1_$N<}F~$rD:$-$^$7$?(B(^^)v$B$-$A$s$H7k2L$,=P$F$$$^$9!*(B $B$3$l$O4V@Z$l$b$J$$;vR2p$7$?$i!VM'C#$,$$$J$/$J$C$?!W(B $B!y%$%s%?!<%M%C%H$G@kEA$7$F$b!";W$&$h$&$K$$$+$J$$(B $B$=$N$h$&$JJ}!9$,!"$J$<;d$?$A$N%S%8%M%9$K6=L#$r$b$A(B $B%S%8%M%9%A%'%s%8$7$FMh$k$N$G$7$g$&!)(B $B0JA0$N%S%8%M%9$G$O7k2L$,=P$J$+$C$?!#(B $B;W$&$h$&$K%S%8%M%9$r?J9T$G$-$J$+$C$?!#(B $B!!(B $B!!!!(Bhttp://39.go2.jp $B$=$3$G!Z$D$$$KF|K\=iEP>l!*![2h4|E*%7%9%F%`$N>R2p$G$9!#(B $B$b$A$m$sM'?M!&CN?M$N4+M6$OI,MW$"$j$^$;$s!#(B $B%;%_%J!<$d%$%Y%s%H$N;22C$bI,MW$"$j$^$;$s!#(B $B:_Bp%Y!<%9$N%S%8%M%9$J$N$G!"6u$$$?;~4V$rM-8zMxMQ$7$F9b<}F~(B[$B#G#E#T!*(B] $B$7$+$b@=IJ$rHNGd$9$kI,MW$,$"$j$^$;$s!#$@$+$i:_8K$K$J$i$J$$$s$G$9!#(B $B$=$s$J;]$$OC$,$"$k$+!*$H;W$$$NJ}!&!&!&;d$b$=$&;W$$$^$7$?!#(B $B!!!!!!!!"-!!!!!!!!!!"-!!!!!!!!!!"-(B $B!!!!!!(Bhttp://happy2007.blog.shinobi.jp/$B!!(B $B!!!!(B $B!!(B $B!!!;(B $BK\Ev$K9b<}F~$,M_$7$$$G$9$+!)(B $B!;(B $BK\Ev$K$*6b;}$A$K@.$j$?$$$G$9$+!)(B $B!;(B $BK\Ev$K:#$N@83h$+$iC&=P$7$?$$$G$9$+!)(B $B!;(B $BK\Ev$KL4$r3p$($?$$$H;W$C$F$$$^$9$+!)(B $B!y!z!y9TF0$r5/$3$5$J$$$H2?$bJQ$o$j$^$;$s!y!z!y(B $B0B?4$7$F$/$@$5$$!#;dC#$K$O$9$P$i$7$$%7%9%F%`$H$9$P$i$7$$Cg4V$,$$$^$9!#(B $B$*$3$E$+$$E*$JI{6H$H$7$F!"$b$A$m$sK\6H$H$7$F$b:GE,$G$9!#(B $BG/Np!&?&6H$OLd$$$^$;$s!#$7$?$$$"$J$?$r!"40A4$K%5%]!<%H$7$^$9!#(B $BI,$:A*$s$GNI$+$C$?$H;W$($h$&$K7k2L$r=P$7$^$9!#(B $B!!!!!!??7u$JJ}$N$_;qNA@A5a$7$F$_$F2<$5$$!#(B $B!!!!!!!!!!"-!!!!!!!!!!"-!!!!!!!!!!"-(B $B!!(B http://g-revo.com/hp9ssl/?c=305092 $B!y(,(B^$B!{(B^-$B!y(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!y(B $B!!(B $B!!!!!!!!!!!!(,(,(,(,(,(,(,(,(,(,(,(,(,(,(B $B!!!!!!!!!!!!(B $B!!(B $B!ZLH@U;v9`Ey5Z$SCm0U;v9`![(B $B!!!!(B $B!!!!!!!!!!!!(B $B!!(B $B(,(,(,(,(,(,(,(,(,(,(,(,(,(,(B $BK\%a!<%k%^%,%8%s7G:\$K4X$9$k>pJs$K4X$7$F$O0l@Z@UG$$rIi$$$^$;$s!#(B $B7G:\$OK!N'$d8x=xNIB/$KH?$9$kFbMF$O7G:\$G$-$^$;$s!#(B $B7G:\FbMF$K4X$7$F$OEv;v@\8r>D!"7@LsDy7k!"2r7hEy$r$7$F2<$5$$!#(B $B7G:\FbMF$K4X$7$F$$$+$J$kB;32$K4X$7$F$b0l@Z@UG$$rIi$$$+$M$^$9!#(B $B7G:\FbMF$K4X$9$k$*Ld$$9g$o$;$O=PMh$^$;$s!#(B $B"(Ev%^%,%8%s$O9XFI$NN;2r$rD:$$$F$$$kJ}$K$N$_G[?.$7$F$$$^$9!#(B $B0l3gEj9F%5%$%HMM!"L5NAEj9FMM(B($B7G<(HD$b4^$`!K$+$i$NEj9F$OMxMQ5,Ls$K$h$j(B $BBeM}EPO?$5$;$FD:$$$F$*$j$^$9!#G[?.3NG'$O%a%k%^%,$K$F$*4j$$CW$7$^$9!#(B $B!y(,(B^$B!{(B^-$B!y(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!y(B ************************************************************************ $B:G8e$^$G$*FI$_$$$?$@$-$"$j$,$H$&$4$6$$$^$9!#(B ************************************************************************ $B%^%,%8%sL>!'!Z7|>^(Bde$B%I%j!<%`%2%C%H![(B $B9XFI2r=|!'(B $B2<5-$N#U#R#L$h$j#H#P$XF~$j2r=|$7$F$/$@$5$$!#!JBeM}2r=|$O9T$C$F$*$j$^$;$s!K(B $B8=:_$NH/9TIt?t(B $B!'(B51,346 $BIt(B $BH/9T^(Bde$B%I%j!<%`%2%C%H1?1D;vL36I![(B $B%[!<%`%Z!<%8!'(B http://fficenow.web.fc2.com/ $B$*Ld$$9g$o$;!'(B $B%5%$%HFb$NLd$$9g$o$;%U%)!<%`$h$j$*4j$$CW$7$^$9!#(B $B!y(,(B^$B!{(B^-$B!y(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!y(B From owner-freebsd-ports@FreeBSD.ORG Tue Feb 19 08:46:37 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 62BD516A421 for ; Tue, 19 Feb 2008 08:46:37 +0000 (UTC) (envelope-from anonymous@s328.xrea.com) Received: from s328.xrea.com (s328.xrea.com [210.196.169.200]) by mx1.freebsd.org (Postfix) with SMTP id BC22613C46A for ; Tue, 19 Feb 2008 08:46:36 +0000 (UTC) (envelope-from anonymous@s328.xrea.com) Received: (qmail 24741 invoked by uid 10258); 19 Feb 2008 17:24:44 +0900 Date: 19 Feb 2008 17:24:44 +0900 Message-ID: <20080219082444.24740.qmail@s328.xrea.com> X-Mailer: perl-sendmail To: freebsd-ports@freebsd.org From: office@gdi.cute.bz Content-Transfer-Encoding: 7bit Content-type: text/plain; charset=iso-2022-jp Subject: =?iso-2022-jp?b?GyRCIVo9RU1XIVtBajhfJWolcyUvJE4kKjRqJCQbKEI=?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 08:46:37 -0000 $BFMA3$N%a!<%k$G<:Ni$7$^$9!#(B $B%8!<%G%#!<%"%$$NC4Ev!"1|ED$H?=$7$^$9!#(B $BAj8_%j%s%/$N$*4j$$$G%a!<%k$5$;$F$$$?$@$-$^$7$?!#(B $BB~:#%V%m%0%"%/%;%9%"%C%W$KNO$rF~$l$F$$$^$7$F!":9$7=P$,$^$7$$$H;W$$$^$9$,!"5.%5%$%H$K@'Hs$46(NO$r$*4j$$$G$-$l$P4r$7$/;W$$$^$9!#(B $B:9$7>c$j$J$1$l$P!"Aj8_%j%s%/$r$*4j$$?=$7>e$2$^$9!#(B $B:#8eM=A[$5$l$k<}F~$N#26KJ82=!"G/6bIT0BEy$NIT0B2r>C$N$?$a$KN)$A>e$2$^$7$?!V%"%U%#%j%(%$%H!W@lMQ$N%V%m%0$G$9!#(B http://ameblo.jp/dreamsoho/ $B$^$?!"Aj8_%j%s%/$r$7$F$$$?$@$$$?!"$[$s$N$5$5$d$+$J5$;}$A$G$9$N$G!"2<5-%U%)!<%`$+$i%W%l%<%s%H$r@A5a$7$F Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D38E16A417 for ; Tue, 19 Feb 2008 09:50:41 +0000 (UTC) (envelope-from anonymous@s328.xrea.com) Received: from s328.xrea.com (s328.xrea.com [210.196.169.200]) by mx1.freebsd.org (Postfix) with SMTP id 761BF13C459 for ; Tue, 19 Feb 2008 09:50:40 +0000 (UTC) (envelope-from anonymous@s328.xrea.com) Received: (qmail 13683 invoked by uid 10258); 19 Feb 2008 18:10:30 +0900 Date: 19 Feb 2008 18:10:30 +0900 Message-ID: <20080219091030.13682.qmail@s328.xrea.com> X-Mailer: perl-sendmail To: ports@freebsd.org From: office@gdi.cute.bz Content-Transfer-Encoding: 7bit Content-type: text/plain; charset=iso-2022-jp Cc: Subject: =?iso-2022-jp?b?GyRCIVo9RU1XIVtBajhfJWolcyUvJE4kKjRqJCQbKEI=?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 09:50:41 -0000 $BFMA3$N%a!<%k$G<:Ni$7$^$9!#(B $B%8!<%G%#!<%"%$$NC4Ev!"1|ED$H?=$7$^$9!#(B $BAj8_%j%s%/$N$*4j$$$G%a!<%k$5$;$F$$$?$@$-$^$7$?!#(B $BB~:#%V%m%0%"%/%;%9%"%C%W$KNO$rF~$l$F$$$^$7$F!":9$7=P$,$^$7$$$H;W$$$^$9$,!"5.%5%$%H$K@'Hs$46(NO$r$*4j$$$G$-$l$P4r$7$/;W$$$^$9!#(B $B:9$7>c$j$J$1$l$P!"Aj8_%j%s%/$r$*4j$$?=$7>e$2$^$9!#(B $B:#8eM=A[$5$l$k<}F~$N#26KJ82=!"G/6bIT0BEy$NIT0B2r>C$N$?$a$KN)$A>e$2$^$7$?!V%"%U%#%j%(%$%H!W@lMQ$N%V%m%0$G$9!#(B http://ameblo.jp/dreamsoho/ $B$^$?!"Aj8_%j%s%/$r$7$F$$$?$@$$$?!"$[$s$N$5$5$d$+$J5$;}$A$G$9$N$G!"2<5-%U%)!<%`$+$i%W%l%<%s%H$r@A5a$7$F Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D5F116A418 for ; Tue, 19 Feb 2008 09:50:41 +0000 (UTC) (envelope-from anonymous@s328.xrea.com) Received: from s328.xrea.com (s328.xrea.com [210.196.169.200]) by mx1.freebsd.org (Postfix) with SMTP id 7642713C45A for ; Tue, 19 Feb 2008 09:50:40 +0000 (UTC) (envelope-from anonymous@s328.xrea.com) Received: (qmail 13680 invoked by uid 10258); 19 Feb 2008 18:10:30 +0900 Date: 19 Feb 2008 18:10:30 +0900 Message-ID: <20080219091030.13679.qmail@s328.xrea.com> X-Mailer: perl-sendmail To: ports@freebsd.org From: office@gdi.cute.bz Content-Transfer-Encoding: 7bit Content-type: text/plain; charset=iso-2022-jp Cc: Subject: =?iso-2022-jp?b?GyRCIVo9RU1XIVtBajhfJWolcyUvJE4kKjRqJCQbKEI=?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 09:50:41 -0000 $BFMA3$N%a!<%k$G<:Ni$7$^$9!#(B $B%8!<%G%#!<%"%$$NC4Ev!"1|ED$H?=$7$^$9!#(B $BAj8_%j%s%/$N$*4j$$$G%a!<%k$5$;$F$$$?$@$-$^$7$?!#(B $BB~:#%V%m%0%"%/%;%9%"%C%W$KNO$rF~$l$F$$$^$7$F!":9$7=P$,$^$7$$$H;W$$$^$9$,!"5.%5%$%H$K@'Hs$46(NO$r$*4j$$$G$-$l$P4r$7$/;W$$$^$9!#(B $B:9$7>c$j$J$1$l$P!"Aj8_%j%s%/$r$*4j$$?=$7>e$2$^$9!#(B $B:#8eM=A[$5$l$k<}F~$N#26KJ82=!"G/6bIT0BEy$NIT0B2r>C$N$?$a$KN)$A>e$2$^$7$?!V%"%U%#%j%(%$%H!W@lMQ$N%V%m%0$G$9!#(B http://ameblo.jp/dreamsoho/ $B$^$?!"Aj8_%j%s%/$r$7$F$$$?$@$$$?!"$[$s$N$5$5$d$+$J5$;}$A$G$9$N$G!"2<5-%U%)!<%`$+$i%W%l%<%s%H$r@A5a$7$F Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0DAF916A417 for ; Tue, 19 Feb 2008 10:18:18 +0000 (UTC) (envelope-from streamsendbouncer@me-ss2-T2o8mZ.mailengine1.com) Received: from me-ss2-T2o8mZ.mailengine1.com (me-ss2-T2o8mZ.mailengine1.com [72.19.234.81]) by mx1.freebsd.org (Postfix) with ESMTP id D550B13C465 for ; Tue, 19 Feb 2008 10:17:38 +0000 (UTC) (envelope-from streamsendbouncer@me-ss2-T2o8mZ.mailengine1.com) Received: by me-ss2-T2o8mZ.mailengine1.com (PowerMTA(TM) v3.2r16) id hnamc60eutch for ; Tue, 19 Feb 2008 02:17:35 -0800 (envelope-from ) MIME-Version: 1.0 X-Mailer: StreamSend2 - 13412 X-Mailer-Version: 2.0 X-Mailer-Environment: production X-Report-Abuse-At: abuse@streamsend.com X-Report-Abuse-Info: It is important to please include full email headers in the report X-Campaign-ID: 276051 X-Streamsend2id: 13412++7423131+276051+me-ss2-T2o8mZ.mailengine1.com Date: Tue, 19 Feb 2008 02:17:35 -0800 From: "EasyLoanChoice Newsletter" To: ports@freebsd.org Message-Id: <20080219101738.D550B13C465@mx1.freebsd.org> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Fixing Your Finances Has Never Been Easier, Just A Click Away. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 10:18:18 -0000 From owner-freebsd-ports@FreeBSD.ORG Tue Feb 19 11:28:57 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6E4A816A421 for ; Tue, 19 Feb 2008 11:28:57 +0000 (UTC) (envelope-from visiplus@arawak-marketing.com) Received: from halleck.aquaray.com (halleck.aquaray.com [195.14.22.88]) by mx1.freebsd.org (Postfix) with ESMTP id C9AAA13C469 for ; Tue, 19 Feb 2008 11:28:56 +0000 (UTC) (envelope-from visiplus@arawak-marketing.com) Received: from [195.14.22.88] (halleck.aquaray.com [195.14.22.88]) by halleck.aquaray.com (Postfix) with ESMTP id B1214A75D9E0 for ; Tue, 19 Feb 2008 12:24:53 +0100 (CET) Content-Transfer-Encoding: 7bit Date: Tue, 19 Feb 2008 12:24:53 +0100 To: freebsd-ports@freebsd.org From: Visiplus X-Emailink: Ref=Elk-1019771-22590 X-Mailer: eMailink 3 Message-Id: <20080219112453.B1214A75D9E0@halleck.aquaray.com> MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: =?iso-8859-1?q?D=E9couvrez_les_nouveaux_outils_du_Web_Marketing?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: infos@arawak-marketing.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 11:28:57 -0000 Logo Formations web marketing organises Paris, Lyon, Sophia-antipolis Image ordinateur avec souris Dcouvrez les nouveaux outils pour russir vos campagnes de Web marketing ! [1]Augmentez vos ventes en ligne ! Augmentez vos ventes en ligne ! Gnrez de nouveaux contacts ! Ils ont particip notre formation web marketing : Primagaz, O'Reilly, France Loisirs, Arte TV, Presses Universitaires de France, Edhec, Direct 8, CNP Assurances, Novasep, Ecole Cordon Bleu, Banque Populaire Cote d' Azur, Anacours, Hexotol, Htel des Arts, Laforet Immobilier, CCI Nantes... Diffrenciez vous de vos concurrents Visiplus _________________________________________________________________ Dsabonnement : Vous disposez d'un droit d'accs, de modification, de rectification et de suppression des donnes qui vous concernent (art. 34 de la loi"Informatique et Liberts"). Fichier de diffusion Arawak, enregistr la CNIL, sous le N1026477 Pour vous dsabonner : [2]cliquez sur ce lien References 1. LYNXIMGMAP:file://localhost/tmp/tmpZ6wDjZ.html#Map 2. http://www.arawak-emailing.com/desabonnement/email.php?email=freebsd-ports@freebsd.org From owner-freebsd-ports@FreeBSD.ORG Tue Feb 19 11:33:24 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24D5A16A4EA for ; Tue, 19 Feb 2008 11:33:24 +0000 (UTC) (envelope-from errorlogs4+inclub=89=38132@accessmail.jp) Received: from f1.jws01.com (f1.jws01.com [203.179.82.141]) by mx1.freebsd.org (Postfix) with ESMTP id 8463513C4D5 for ; Tue, 19 Feb 2008 11:33:23 +0000 (UTC) (envelope-from errorlogs4+inclub=89=38132@accessmail.jp) Received: from f1.jws01.com (unknown [203.179.82.141]) by f1.jws01.com (Postfix) with ESMTP id AD2365404C1 for ; Tue, 19 Feb 2008 20:15:37 +0900 (JST) Date: Tue, 19 Feb 2008 20:15:37 +0900 (JST) From: INCLUB To: ports@freebsd.org Message-ID: <26876742.393772251203419737661.marioda4@ybb.ne.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-2022-JP Content-Transfer-Encoding: 7bit X-pk: inclub X-mgno: 89 X-num: 38132 X-Mailer: AccessMail engine Cc: Subject: =?iso-2022-jp?b?GyRCIVobKEJJTkNMVUIbJEIkTiVhJWslXiUsJCpKdT5wGyhC?= =?iso-2022-jp?b?GyRCSnMhWyFKJS8lOElVJC0hSxsoQk5PLjIyNC0bJEIjSCNUI00bKEI=?= =?iso-2022-jp?b?GyRCI0w9LEZAJDckXiQ7JHMkKyEpGyhC?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 11:33:24 -0000 ********************************************************************** $B!!!!!!!!!!!!!!!!!!!!!!(B $B!!!!!!!!!!!!!!!!!!!Z(BINCLUB$B$N%a%k%^%,$*Ju>pJs![!J$/$8IU$-!K(B $B!!!!!!!!!!!!!!!!!!!!!!"!5.J}$N%S%8%M%9%Q!<%H%J!<$G$9"!(B ********************************************************************** $B!!!!!!!!!!!z!V$/$8!W$KEv$?$l$PM-NAFH@j9-9p$,#32sL5NA$GG[?.$G$-$^$9(B $B!!!!!!!!!!!!!V$/$8!W$O%a%k%^%,$N:G8e$NJ}$K$"$j$^$9!J#1F|#32s$^$G!K(B ports@freebsd.org$BMM(B $B!z!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a(BTOP$B!a!z(B $B!!!!!!!!"#$"$J$?$N2T$2$k%M%C%H%S%8%M%9$N3+6H$r;Y1g$$$?$7$^$9"#(B $B!!(B $B!z$3$N%=%U%H$G@kEAHq$O1J5WE*$KL5NA!*JF9q:G6/=85R%D!<%k?JDhCf!*!z(B $B!zJF9q:G@hC<5;=Q3+H/$N5f6K$N%$%s%?!<%M%C%H=85R%D!<%k$,?k$KF|K\>eN&!*(B $B!z<+F0E*$K!VI4!&@i!&K|!WC10L$N:G>e5i$No$N%a!<%k$H$7$FAw?.$G$-$k!*!*(B $B!z$3$N%=%U%H$,$"$l$P@kEAHqMQ$O1J5WE*$K!VL5NA!W!*?2$F$$$k4V$b2TF0!*(B $B!!(B $B"#!V%^!<%1%F%$%s%0@oN,!W"!Gd$l$k;E3]$1"!$K$D$$$F$O(B $B"#(B $B!!!!(B $B"-!!"-!!"-(B $B!!(B $B>\:Y;qNA(B($BL5NA(B) http://edc.magic-biz.net/index.php?ref=1202$B!!!!!!!!!!!!(B $B!z!a(BTOP$B!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!z(B $B!!!!!!!!!!!!!!!!(BINCLUB$B$O$"$J$?$N%S%8%M%9$r1~1g$7$^$9(B $B!!!!!!!!!!!!$I$s$I$sEj9F$7$F$/$@$5$$$M!*$*BT$A$7$F$$$^$9(B $B!z!a(BPR$B!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!a!z(B $B!!!!!!!!!!!!!!!z%^%8%'%9%F%#!z$G:#G/$O4hD%$j$^$;$s$+!)(B $BAG@2$i$7$$Js=7%W%i%s!"AG@2$i$7$$@=IJ!"7n!9$N7PHq!"$I$l$r$H$C$F$b:G9b(B $B!!H~MF%8%'%k!V%*!<%I%;%j%e!<%k!W@v4i8e$N$*Q?e!&F}1U!&%/%j!<%`!&H~MF1U!&%Q%C%/!&2pJs4["M!!(Bhttp://www2s.biglobe.ne.jp/~marutoku/index.html INCLUB$B$G$O!"$_$J$5$^$NEj9F$*BT$A$7$F$$$^$9(B $B!!!!!!"-!!"-!!"-!!"-(B $B!{(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!!{(B $B!!3'MM$NEj9F$r$*BT$A$7$F$$$^$9(B $B!vL5NAEj9F$O$3$A$i$+$i"M!!(Bhttp://www.formpro.jp/form.php?fid=21660 $B!!$*5$7Z$K$I$&$>!!(B $B!v8z2LH472$NFH@j9-9p$OM-NA$K$J$j$^$9$,!"BgJQ$*0B$/@_Dj$7$F$$$^$9$N$G(B $B!!@'Hs$4MxMQ$7$F$/$@$5$$!#(BTOP$B9-9p$bMQ0U$7$F$$$^$9!#(B $B!!M-NA9-9p?=$79~$_!!!!!!"M!!(Bhttp://marioda.net/melmaga/yuryoumm $B!{(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!!{(B INCLUB$B$N0f>e$G$9(B $B:#F|$O#H#P4X78$N$*OC$G$9(B $B$"$J$?$O#H#P$O;}$C$F$^$9$+!)(B $B:#$O$[$H$s$I$NJ}$OL5NA%V%m%0$H$+#H#P$r(B $B$*;}$A$G$9$M(B $B$G$b!"5,@)$bB?$$$7#H#T#M#L$NCN<1$,$J$$$H(B $B$J$+$J$+;W$$DL$j$N%Z!<%8$,:n$l$J$$$G$9$M(B $B$=$3$G3J0B$K#H#P$r:n@.$7$F$/$l$k(B $B$H$3$m$,$"$k$s$G$9(B $B$"$J$?$,5$$KF~$k$^$G=$@5$7$F$/$l$^$9$h(B $BDL>o!{K|1_$b$+$+$j$^$9$,!"$o$:$+!o(B1,980$B1_(B $B$G:n$C$F$/$l$^$9(B $B"M!!(Bhttp://www.e-fines.info/hp/top.cgi?sid=inclub $B<+J,$G:n$j$?$$$1$I!":#0l#H#T#M#L$,(B $B$o$+$i$J$$$J$"!*$H!"$$$&J}$K$O(B $B0l=54V$"$l$P=,F@$G$-$^$9$h(B $B%$%s%?!<%M%C%H%S%8%M%9$K6=L#$N$"$k?M$,!"(B $B:G=i$N0lJb$rF'$_$@$9$N$r%5%]!<%H$9$k(Be-Book $B%^%K%e%"%k(B $B#1=54V$G%[!<%`%Z!<%8:n$j$K$O7g$+$;$J$$(B $B#H#T#M#L8@8l$N4pAC$N4pAC$rJY6/$9$k$3$H$,$G$-$^$9(B $BL54|8B%a!<%k%5%]!<%HIU$-$G$9(B $B$3$A$i$b$$$?$l$j$D$/$;$j$G$9(B $B"#!!e$2%"%C%W$N$*uBV$GEP>l!*!*(B $B$7$+$b!"(B60$BF|4VJV6bJ]>ZIU$-$G$9!J(B\4,900$B1_!K(B $B"M!!(Bhttp://123direct.info/tracking/af/38818/bEooF2Ov/ $B$J$*$bGd>e?-$P$7$?$$J}$K$O(B $B$d$O$j!"5\@nL@$5$s$N#D#V#D$G$7$g$&!*!*(B $B"#!!(BDVD$B#2KgAH!!6KHk%;%_%J!ZIU$-$G$9!J(B\9,800$B1_!K(B $B"M!!(Bhttp://123direct.info/tracking/af/38818/OYbOJFXm/ $B$$$:$l$b=i?4e$2$5$l$k>&:`$P$+$j$G$9(B $B!|(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!!|(B $B"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!(B $B!!!!!!!!!!!!!!!}:#F|$b!V$*$_$/$8!W$r0z$-$^$7$g$&!}(B $B!!!!!!!!!!!!!!(B $B!zEv$?$k$+$J!*!*$3$A$i$r%]%A$C$H!z(B $B!!!!!!!!!!!!(Bhttp://bi-max.net/kuji/kuji.cgi?id=inclub $B"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!(B $B!|(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!!|(B $BL5NAEj9F#1(B $B"!!~"!!~(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!!~"!!~"!(B $B!!!!!!!!!!(B $B"#G=NO$N$J$$#5#1:P$N;d$,!"2T$$$G$$$kI{6H$G$9!*"#(B $B"!!~"!!~(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!!~"!!~"!(B $BG=NO!";q3J$b!"?ML.$b$J$$!"$=$7$F;~4V$b$J$$$1$l$I!&!&!&(B $B$=$s$J;d$,!"$3$N%[!<%`%Z!<%8$r8+$F!";E;vBN83%$%Y%s%H$X9T$C$F$_$F!&!&(B $BBgJQ$J<}F~$r2T$$$G$$$k!"IaDL$N$*$8$5$s!"$*$P$5$s$,$?$/$5$s(B $B$$$i$C$7$c$k$3$H$,J,$+$j!&!&!&(B $B$=$7$F!"?M$K$H$F$b4n$P$l$k;E;v$G$"$k$3$H$bJ,$+$j$^$7$?!#(B $B$=$l$,$-$C$+$1$G!&!&!&:#$O#5#0Be$N$3$N;d$b2T$$$G$$$kI{6H$H$O!)(B $B$*CN$j$K$J$j$?$$J}!"$I$&$>(B $B"M(B http://www.yanto.net/undebt/chris/ $B!|!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!|(B $BL5NAEj9F#2(B $B"!!~"!!~(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!!~"!!~"!(B $B!!!!!!!!!!(B $B!!!!!!"#Fn3$EEE49bLn;3%U%j!<%5!<%S%C%/"#(B $B"!!~"!!~(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!(!!~"!!~"!(B $B!!!!!!!!9bLn;3$KK,$M$kEEhl=j!'Fn3$$J$s$P1X$N$[$+(B $B!!!!!!!!!!#J#T#B!&F|K\N99T!&6a5&F|K\%D!<%j%9%HpJs>&:`!z(B $B9XF~e$rG\A}$5$;$k#7$D$N8\5R?4M}!Y(B $B"!FCE5#3(B $B!X(BINCLUB$B$K$*$^$+$;!Y(B $B:GDc#2$D!"$*IU$1$7$^$9(B $B!v9XF~8e$KAw$i$l$F$/$k%a!<%k!J%$%s%U%)%H%C%W$+$i$N7h:Q40N;$N0FFb!K(B $B$r$=$N$^$^(B[INCLUB$B;vL36I(B]$B$^$GE>Aw$7$F$/$@$5$$(B $B%a!<%k$r3NG'e5-$NFCE5(B2$B$D$r%9%0$K$*Aw$j$7$^$9(B $B"#(B $B>pJs5/6H%P%H%k%m%o%$%d%k(B $B_@ED>:!u5\@nL@$3$l$,;d$?$A$N=P$7$?7kO@$G$9(B $B!&!H=i?4&IJ$,$J$/$F$b2T$0%F%/%K%C%/(B $B!&!H%9!<%Q!<%"%U%#%j%(%$%?!<$,6CX3$7!"<;EJ$9$k$[$I$NHNGdNO(B $B!&!H=i?4e7hDj$K$J$k$=$&$G$9$N$G!"5^$$$G$43NG'$/$@$5$$(B $B"#!!%"%U%#%j%(%$%H%\!<%$!!"#(B $B!Z40A4<+F02=![=85R!&%"%U%#%j%(%$%H%D!<%k(B $B!X%"%U%#%j%(%$%H%\!<%$!Y(B $B$[$C$?$i$+$7$G<+F0=85R$7$F$/$l$F!"?2$F$F$b%"%U%#%j%(%$%HJs=7$,(B $B;![;a$N!VD6!W5/6HK!(B $BFbMFE*$K$O!">pJs5/6H$N%^%K%e%"%k$G$9$,!"(B $B$=$3$iJU$K$h$/$"$k!V0lH/8B$j$N%N%&%O%&!W$G$O$J$/!"(B $B%S%8%M%9$r9=C[$7$F!V0l@82T$.$D$E$1$k%N%&%O%&!W$K(B $B$J$C$F$$$^$9(B http://www.infotop.jp/click.php?aid=53933&iid=13470 $B"#!Z%@%$%(%C%H$r$7$J$/$F$b!"%(%9%F$K9T$+$J$/$F$b>.4i$K$J$kJ}K!![(B $B8z2L$,$J$1$l$P!ZA43[JV6bJ]>ZIU$-![$G$9(B $B$?$@$7!"@hCe#3#0#0L>MM8BDj$G$9$N$G$*5^$.$/$@$5$$(B http://www.infotop.jp/click.php?aid=53933&iid=16788 $B"!(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,"!(B $B"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!(B $B(.(,(/(.(,(/(.(,(/(.(,(/!!!!!!!!!|HqMQ0l@ZITMW$N%S%8%M%9>pJs!*(B $B(-NI(-(-IJ(-(-&IJ$,!"$"$J$?$N@.8y$r%5%]!<%H$$$?$7$^$9!!!d!d!!!!(B $B!VNIIJe$G>&IJHNGd$r$7$?$$J}$H!"$=$N>&IJ$N@kEA9-9p$r(B $B$7$F<}1W$r>e$2$?$$$H9M$($F$*$i$l$kJ}$N66EO$7$r$9$k%5%$%H$G$9!#(B $B!!?M5$$N%"%U%#%j%(!<%H%5%$%H(B $B>\:Y$O!!"-"-"-"-"-"-"-(B $B"*!!(Bhttp://www.syatyu.net/shop/index.cgi?s=900&id=s2225501 $B"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!!~"!(B $B"!(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,"!(B $B!|!!;d$b:rF|9XF~$7$^$7$?!!!|(B $B%?%$%H%k$O>.$P$+$K$7$F$$$k$1$I!"Cf?H$O:G9b$K$D$+$($^$9(B $B#S#E#OBP:v$G$-$F$$$J$/$C$F$b!"(BYahoo$B!"(BGoogle$B$N8!:w>e0L(B $B$KI=<($5$l$kJ}K!$,>\$7$/2r@b$5$l$F$k$h!*!*(B $B$o$+$j$d$9$/$C$F!"$9$0$K%V%m%0$b#2$D:n@.$7$^$7$?$h(B $B$H$K$+$/8+$F$/$@$5$$(B $B"#$[$C$?$i$+$7%"%[%j%(%$%H#2"#(B $B%"%U%#%j%(%$%H$O$b$&2T$2$J$$$H9+$G$O8@$o$l$F$$$^$9$,!&!&!&(B $B$G$b!"$3$l$C$F!"7k6I!"(B $B:F8=@-$N$J$$>&:`$rGc$C$F!"(B $B2T$2$J$+$C$??M$?$A$,8@$C$F$k$@$1$J$N$G$9!#(B $B$=$3$N!Z!!:F8=@-!!![$C$F$H$3$m$K5$$,$D$+$J$$$H(B $B$$$/$i>&:`$K$D$.9~$s$G$b!"$^$C$?$/2T$2$J$$$s$G$9$h$M!#(B $B5U$K$=$N!Z!!:F8=@-!!![$K5$$,$D$/$H!"(B $BM>M5$G2T$2$k$s$G$9$h!#%[%s%H$K!#(B $B8=pJs>&:`$O@h9TZ5r$K!"$^$C$?$/$N=i?4Z5r!!(B $B"M!!(Bhttp://www.infotop.jp/click.php?aid=53933&iid=7218 $B"#!Z!!DI?-!!![(B $B$A$g$C$H$7$?;~4V$N9g4V$K%V%m%0$r:n$C$F$*$1$P(B $BCN$i$J$$$&$A$KGd$l$F$$$/$s$G$9$h!#(B $B7n#1K|1_$b2T$2$J$$$H8@$o$l$F$$$k%"%U%#%j%(%$%H$N@$3&$G(B $B$"$J$?$b;d$?$A$H0l=o$K!"$^$:$O!Z!!#5K|1_!!![(B $B$[$C$?$i$+$7$G2T$$$G$_$^$;$s$+!)(B $B!z$[$C$?$i$+$7%"%[%j%(%$%H#2!z(B $B"M!!(Bhttp://www.infotop.jp/click.php?aid=53933&iid=7218 $B:G8e$^$G$*FI$_$$$?$@$$$F$"$j$,$H$&$4$6$$$^$9(Bm(_ _)m $B$=$l$G$O$3$N$X$s$G<:Ni$7$^$9(B $B!|!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!|(B $B"!$*Ju>pJs$G$9(B http://marioda.blog105.fc2.com/ $B"!%^%8%'%9%F%#(B http://marioda.net/majesuty $B"!(BINCLUB$B$N#H#P(B http://marioda.net/ $B!z$b$7$b(BShopping https://www.moshimo.com/top/106083 $B!zH~!A#M#A#X"v(B http://realmarket.jp/26445/1000357412101/ $B!z>pJs%S%8%M%9(B http://blotop.jp/mario46/ $B!|!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!|(B $BEv%a%k%^%,$O(B $B!zL5NA%l%]!<%H$4MxMQ$5$l$?J}(B $B!zL5NA0l3g%5%$%H$K$4Ej9F$5$l$?J}(B $B!|>e5-%5%$%H$KEj9F!&EPO?$5$l$?J}$K$bG[?.$5$;$FD:$$$F$*$j$^$9(B $B!!EPO?2r=|$O2<5-#U#R#L$+$i!"$4<+?H$G$*4j$$$7$^$9(B $B!{!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!=!{(B $B3'MM$NEj9F$r$*BT$A$7$F$$$^$9(B $B!vL5NAEj9F$O$3$A$i$+$i"M!!(Bhttp://www.formpro.jp/form.php?fid=21660 $B!!(B $B$*5$7Z$K$I$&$>!!(B $B!v8z2LH472$NFH@j9-9p$OM-NA$K$J$j$^$9$,!"BgJQ$*0B$/@_Dj$7$F$$$^$9$N$G(B $B!!(B $B@'Hs$4MxMQ$7$F$/$@$5$$!#(BTOP$B9-9p$bMQ0U$7$F$$$^$9!#(B $B!vM-NA9-9p?=$79~$_!!!!!!"M!!(Bhttp://marioda.net/melmaga/yuryoumm $B!v9XFIEPO?!u2r=|$O$3$A$i"M!!(Bhttp://marioda.net/melmaga/incubmm $B!v6u%a!<%kEPO?$O$3$A$i(B $B"M!!(Bj+245@accessmail.jp $B!v%P%C%/%J%s%P!<$O$3$A$i(B $B!!"M!!(Bhttp://accessmail.jp/public/bn2.php3?pk=%A1%F0inclub ********************************************************************** $B!!!!!!!!!!!!!!!!!!!!!!(B $B!!!!!!!!!!!!!!!!!!!Z(BINCLUB$B$N%a%k%^%,$*Ju>pJs![!J$/$8IU$-!K(B $B!!!!!!!!!!!!!!!!!!!!!!"!5.J}$N%S%8%M%9%Q!<%H%J!<$G$9"!(B ********************************************************************** $B$40U8+$O$3$A$i$X!!(BINCLUB$B;vL36I!!(B marioda4@ybb.ne.jp $B5.J}$b%a%k%^%,H/9T$G$-$^$9(B $B!!!!!!!!"M!!(Bhttp://www.accessmail.jp/index.php3?ad=%A1%F0inclub From owner-freebsd-ports@FreeBSD.ORG Tue Feb 19 12:27:01 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 71F3116A481 for ; Tue, 19 Feb 2008 12:27:01 +0000 (UTC) (envelope-from mr-00091145@e.merumo.ne.jp) Received: from merumo04-00.sender.mailsp.jp (merumo04-10.sender.mailsp.jp [210.171.139.91]) by mx1.freebsd.org (Postfix) with SMTP id DE71213C4F0 for ; Tue, 19 Feb 2008 12:27:00 +0000 (UTC) (envelope-from mr-00091145@e.merumo.ne.jp) Received: (qmail 44489 invoked from network); 19 Feb 2008 21:00:19 +0900 Received: from bn.merumo.ne.jp (210.171.139.134) by merumo04-00.sender.mailsp.jp with SMTP; 19 Feb 2008 21:00:19 +0900 Message-ID: <2008021921000000091145000@merumo.ne.jp> Date: Tue, 19 Feb 2008 21:00:00 +0900 (JST) From: 00091145r@merumo.ne.jp To: ports@freebsd.org Errors-To: mr-00091145@e.merumo.ne.jp Mime-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp Content-Transfer-Encoding: 7bit X-Mag-Issue: 2008021921000000091145000 X-Mag-ID: 00091145 X-Mag-Genre: 91 X-Issue-Style: 0 Cc: Subject: =?iso-2022-jp?b?GyRCJWIlUCUkJWslPyVvITwbKEI=?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: 00091145r@merumo.ne.jp List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 12:27:01 -0000 [PR] $B(.$I$s$J>r7o$GA*$V(B $B(-"";~5k(B1700$B1_(B $B(-""C;4|!&F|J'$$(B $B(-""L$7P83(BOK $B(1(,(,(,(,(,(B http://gw.tv/afw/c?p=2g6iqAnmt [MM] $B!X%a%k%^%,3&:GBg5i$N62I]$r$"$J$?$K$*FO$1$7$^$9!#!Y(B $B"(?4B!$NuBV$G$b;YJ'$$$O$7$J$$$H$$$1$J$$$N!)(B $B!yBP=hJ}K!!y(B http://jamjam.tv/mo/ From owner-freebsd-ports@FreeBSD.ORG Tue Feb 19 12:45:09 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D5A3D16A469 for ; Tue, 19 Feb 2008 12:45:09 +0000 (UTC) (envelope-from clientele@welcomeoffice.emv1.net) Received: from emailer99-153.emv1.net (emailer99-153.emv1.net [84.14.99.153]) by mx1.freebsd.org (Postfix) with ESMTP id 50CCE13C4CC for ; Tue, 19 Feb 2008 12:45:09 +0000 (UTC) (envelope-from clientele@welcomeoffice.emv1.net) Received: by emailer99-153.emv1.net (PowerMTA(TM) v3.2r17) id hnb7la0bmg0o for ; Tue, 19 Feb 2008 13:45:08 +0100 (envelope-from ) Date: Tue, 19 Feb 2008 13:45:08 +0100 (CET) From: Welcome Office To: =?iso-8859-15?Q?Votre_soci=E9t=E9?= Message-ID: <5513385636.2269251.1203425108506@sch3> MIME-Version: 1.0 X-EMV-CampagneId: 2269251$ X-EMV-MemberId: 5513385636$ Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: =?iso-8859-15?q?Votre_papier_=E0_2=2C08_EUR_la_ramette?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "clientele@welcomeoffice.com" List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 12:45:09 -0000 WELCOME OFFICE n1 DU DISCOUNT AUX ENTREPRISES Si vous ne visualisez pas correctement ce message, cliquez ici : http://trc1.emv2.com/I?a=A9X7CqhuEqdL8QKdc6F4Zorjlw Pour tre certain de recevoir notre newsletter , nous vous conseillons d'ajouter clientele@welcomeoffice.emv1.net votre carnet d'adresses ========================================================= Offre rserve votre socit, pour votre premire commande Trois offres pour imprimer volont ! - Papier Spcial Repro 2,08 HT au lieu de 3,59 HT la ramette de 500 feuilles A4 blanc 80g/m Pour tous copieurs et imprimantes. Idal pour vos travaux quotidiens. - Papier Datacopy 2,99 HT au lieu de 4,34 HT la ramette de 500 feuilles A4 blanc 85g/m Pour tous copieurs et imprimantes. - Papier ClairAlfa 3,49 HT au lieu de 3,99 HT la ramette de 500 feuilles A4 blanc 80g/m Pour tous copieurs et imprimantes. Plus grande brillance d'impression. Pour bnficier de cette offre, rien de plus simple : - connectez vous sur notre site : http://trc1.emv2.com/I?a=A9X7CqhuEqdL8QKdc6F4ZojjiQ - dans la section "Ma commande", inscrivez le code suivant : M08P208PP ou copiez-collez le lien suivant dans votre navigateur web http://trc1.emv2.com/I?a=A9X7CqhuEqdL8QKdc6F4ZozjjQ Bonne journe. L'quipe WELCOME OFFICE ========================================================= Vous recevez ce message car vous avez t en contact avec le Service Commercial de Welcome Office ou de ses partenaires. Pour ne plus recevoir de messages de la part de Welcome Office, cliquez ici : http://trc1.emv2.com/I?a=A9X7CqhuEqdL8QKdc6F4ZovjiA From owner-freebsd-ports@FreeBSD.ORG Tue Feb 19 13:41:52 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 43B8816A418 for ; Tue, 19 Feb 2008 13:41:52 +0000 (UTC) (envelope-from err@speed.grandmail.jp) Received: from speed.grandmail.jp (speed.grandmail.jp [59.106.20.223]) by mx1.freebsd.org (Postfix) with ESMTP id E46C713C458 for ; Tue, 19 Feb 2008 13:41:51 +0000 (UTC) (envelope-from err@speed.grandmail.jp) Received: by speed.grandmail.jp (Postfix, from userid 0) id 4E7B210C69E; Tue, 19 Feb 2008 22:44:43 +0900 (JST) From: =?ISO-2022-JP?B?a3VyaXN1dGFydRskQiVeJSwlOCVzGyhC?= Errors-To: err@speed.grandmail.jp X-mid: TVggGb6 X-pid: JPWVsR3VcR3w X-rid: NUaZgNEbQx7bd9 To: ports@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=ISO-2022-JP Message-Id: <20080219134443.4E7B210C69E@speed.grandmail.jp> Date: Tue, 19 Feb 2008 22:44:43 +0900 (JST) Cc: Subject: =?iso-2022-jp?b?GyRCIVo0MEE0TDVOQSFbJSIlVSUjJWolKCUkJUhKcz03GyhC?= =?iso-2022-jp?b?GyRCIzIjMCMwIXMhKhsoQg==?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: info_ku@ladymaid.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 13:41:52 -0000 *$B!z(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!z(B* $B!!!!!!!!%/%j%9%?%k%^%,%8%s!!!!!!!!(Bhttp://kurisutaru.ladymaid.net/ $B!!!!!!!!(B *$B!y(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,(,!y(B* $B!!(Bports@freebsd.org $BMM(B $B$49XFI$"$j$,$H$&$4$6$$$^$9!#(B $B$b$&6lO+$7$F>&:`$r:n$kI,MW$O$J$/$J$j$^$7$?!#(B ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ $B>&:`$r:n$i$J$/$F$b!"(B $B!|$?$H$($P!Z#4K|1_![$N%"%U%#%j%(%$%HJs=7!*(B $B!|$?$H$($P!Z#1K|1_![$N%5%V%"%U%#%j%(%$%H(B($B#2%F%#%"(B)$BJs=7!*!JITO+=jF@!*!K(B $B$H$$$&0[>o$JJs=7$,F@$i$l$^$9!#(B $B>&IJ$N0lNc$r$4>R2p$9$k$H!"(B $B%;!<%k%9%l%?!<(B http://www.winwin-import.com/main.html $B$,$b$N$9$4$/@vN}$5$l$F$*$j!"(B10$BK|1_$H$$$&9b3[>&IJ$K$b$+$+$o$i$:!"(B $B$?$C$?(B1698$B7o$N%O%&%9%j%9%H$KBP$7(B31$B7o$bGd$l$F$$$^$9!#(B 10$BK|1_$H$$$&9b3[>&IJ$K$b$+$+$o$i$:!"(B $B!Z@.LsN((B1.8%$B![$H$$$&6C0[E*$J?t;z$r$"$2$k$^$G$K(B $B%l%?!<$O;E>e$2$i$l$F$$$^$9!#(B $B$?$@$7!"$3$N8"Mx$r3MF@$G$-$k$N$O!"!Z@hCe(B500$BL>$N$_![$G$9!#(B $B$$$^$9$0%/%j%C%/$7$F!"EPO?$9$k$3$H$r%*%9%9%a$7$^$9!#(B $B"M"M"M(B http://123direct.info/tracking/subaf/1866 p.s. $BIQHK$K$3$N$h$&$J>&:`$d%-%c%s%Z!<%s$,9T$o$l$F$$$k$N$G!"(B $BEPO?$r@h1d$P$7$K$9$l$P$9$k$[$IB;$9$k$3$H$K$J$j$^$9!#(B $B"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%"%(B $B!Z(B $B$*A&$aFCA*>pJs(B $B![(B------------------------------------------------ $B"#$"$J$?$NK>$`L4$rr7o!*(B $B!V%U%!!<%9%H%"%U%#%j!W$N%S%8%M%9%7%9%F%`$O!"=>Mh$N%"%U%#%j%(%$%HHNGd$K$*$1$k(B $B@.2LJs=7$K2C$(!"$"$J$?$N>R2p$+$i;O$^$k%@%&%s%0%k!<%W#1#0CJ3,$NHNGd$d(B $B%S%8%M%9;22C$+$iH/@8$7$F!"3F%l%Y%kKh$K5,Dj$5$l$?#1#0CJ3,Js=7A4$F$,!"(B $B$"$J$?$NITO+=jF@$H$7$FN_@Q$7$F;YJ'$o$l$^$9!#(B $B"M!!(B http://affili.biz-wave.com/1st/top.cgi?sid=08haru $B!Z(B $B$*A&$aFCA*>pJs(B $B![(B------------------------------------------------ $B"#"""#"""#"""#"""#"""#!!%a%k%^%,H/9T5$/$@$5$$!#(B ---------------------------------------------------------------- $BEj9F7G:\FbMF$K$D$$$F$N$*Ld$$9g$o$;$O!"Ej9F$NC4Ev Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 85A8316A417 for ; Tue, 19 Feb 2008 22:06:35 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from proxy3.bredband.net (proxy3.bredband.net [195.54.101.73]) by mx1.freebsd.org (Postfix) with ESMTP id 43FFC13C45E for ; Tue, 19 Feb 2008 22:06:35 +0000 (UTC) (envelope-from girgen@FreeBSD.org) Received: from ironport2.bredband.com (195.54.101.122) by proxy3.bredband.net (7.3.127) id 47A1E0E5005D69E3 for freebsd-ports@freebsd.org; Tue, 19 Feb 2008 22:45:54 +0100 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Aj1KAOfcukdV4VYeRmdsb2JhbAAIkD8BAQE3nj4 Received: from c-1e56e155.1521-1-64736c12.cust.bredbandsbolaget.se (HELO [10.0.1.3]) ([85.225.86.30]) by ironport2.bredband.com with ESMTP; 19 Feb 2008 22:45:56 +0100 Date: Tue, 19 Feb 2008 22:45:54 +0100 From: Palle Girgensohn To: Mikhail Teterin , freebsd-ports@freebsd.org Message-ID: In-Reply-To: <200802110605.54825@aldan> References: <20080210120013.95C3D16A478@hub.freebsd.org> <200802110605.54825@aldan> X-Mailer: Mulberry/4.0.6 (Mac OS X) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Cc: Geoffroy DESVERNAY Subject: Re: postgresql 8.1.11 with icu 3.8: incompatible X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 22:06:35 -0000 Hi, I just committed a patch that fixes the problem. Regards, Palle --On m=C3=A5ndag, m=C3=A5 11 feb 2008 06.05.54 -0500 Mikhail Teterin=20 wrote: > On =D0=BD=D0=B5=D0=B4=D1=96=D0=BB=D1=8F 10 =D0=BB=D1=8E=D1=82=D0=B8=D0=B9 = 2008, freebsd-ports-request@freebsd.org > wrote: =3D It seems that postgresql 8.1 port's icu patch need icu <=3D = 3.6: > > The patch is wrong, unfortunately. It makes configure search for > /versioned/ symbols like ucol_open_3_6 and ucnv_fromUChars_3_4. It needs > to be updated for 3_8 or, better yet, be made version-independent, if at > all possible... > > Maintainer CC-ed. Yours, > > -mi > > =3D installed: icu-3.8 (fresh) > =3D > =3D > =3D postgresql options: > =3D WITH_NLS=3Dtrue > =3D WITHOUT_PAM=3Dtrue > =3D WITHOUT_MIT_KRB5=3Dtrue > =3D WITHOUT_HEIMDAL_KRB5=3Dtrue > =3D WITH_OPTIMIZED_CFLAGS=3Dtrue > =3D WITHOUT_LIBC_R=3Dtrue > =3D WITH_THREADSAFE=3Dtrue > =3D WITHOUT_TESTS=3Dtrue > =3D WITHOUT_DEBUG=3Dtrue > =3D WITH_ICU=3Dtrue > =3D WITHOUT_HIER=3Dtrue > =3D WITHOUT_INTDATE=3Dtrue > =3D > =3D > =3D while typing 'make' in /usr/ports/databases/postgresql81-server: > =3D > =3D checking for library containing getopt_long... none required > =3D checking for main in -lunix... no > =3D checking for library containing crypt... -lcrypt > =3D checking for library containing fdatasync... no > =3D checking for shmget in -lcygipc... no > =3D checking for readline... yes (-lreadline) > =3D checking for inflate in -lz... yes > =3D checking for CRYPTO_new_ex_data in -lcrypto... yes > =3D checking for SSL_library_init in -lssl... yes > =3D checking for ucol_open_3_6 in -licui18n... no > =3D checking for ucol_open_3_4 in -licui18n... no > =3D configure: error: library 'icui18n' is required for ICU > =3D =3D=3D=3D> =C2=A0Script "configure" failed unexpectedly. > =3D Please report the problem to girgen@FreeBSD.org [maintainer] and = attach > the =3D > "/usr/ports/databases/postgresql81-server/work/postgresql-8.1.11/config.l > og" =3D including the output of the failure of your make command. Also, = it > might be =3D a good idea to provide an overview of all packages installed > on your system =3D (e.g. an `ls /var/db/pkg`). > =3D *** Error code 1 > =3D > =3D -- > =3D Geoffroy > =3D > > From owner-freebsd-ports@FreeBSD.ORG Tue Feb 19 22:32:21 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 934E416A46E for ; Tue, 19 Feb 2008 22:32:21 +0000 (UTC) (envelope-from admin@lissyara.su) Received: from hosting.lissyara.su (hosting.lissyara.su [77.221.149.162]) by mx1.freebsd.org (Postfix) with ESMTP id E89B613C459 for ; Tue, 19 Feb 2008 22:32:20 +0000 (UTC) (envelope-from admin@lissyara.su) Received: from [87.240.15.4] (port=53132 helo=ussr.lissyara.int.otradno.ru) by hosting.lissyara.su with esmtpa (Exim 4.69 (FreeBSD)) (envelope-from ) id 1JRb0d-0000ER-BH for freebsd-ports@freebsd.org; Wed, 20 Feb 2008 01:32:19 +0300 Message-ID: <47BB58F3.7070300@lissyara.su> Date: Wed, 20 Feb 2008 01:32:19 +0300 From: Alex Keda User-Agent: Thunderbird 2.0.0.9 (X11/20080209) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Description: if spam count > 60 - this is spam X-Spam-Count: 0 X-Descriptions: powered by www.lissyara.su X-Bounce-ID: hosting.lissyara.su Subject: [Fwd: Re: obexftp - call for testers] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Feb 2008 22:32:21 -0000 Dierk Sacher : > Hello, > > thank you for your feedback. > > For doing obex over bluetooth, obexftp needs both the > > (1) BD_ADDR in raw format (it's _not_ resolving literal device names) > (2) the Channel (by using the -B option) > > So, on my K750i, which has I do something like this (I will use long > options for better understanding): > > # get the capability list: > obexftp --bluetooth `bthost -b k750ieva` --channel 6 --capability > > Channel 6 is OBEX File Transfer on that phone. IrMC (8 for me) will also > do. You won't be succesful doing this on OBEX Object Push. > > If you need to find out the proper channel for your mobile, do something > like > > sdpcontrol -a k750ieva Browse > > The whole point of using obexftp over obexapp is (for me), that obexapp > is not able to retrieve all the telecom/ nodes, which won't show up in > filebrowsing and return an error if you try to traverse the path level > by level. > Thatswhy you have to specify the path as a whole in 'get' command > blindly > to successfully retrieve them. This is AFAIK only a restriction of some > (including obviously all my) mobile phones. > > So this is where the -S (--nopath) parameter comes handy: > > > obexftp --bluetooth `bthost -b k750ieva` --channel 6 --nopath \ > --uuid SYNCH --get telecom/devinfo.txt > > (You may also try telecom/pb.vcf or telecom/cal.vcs and *PLEASE* backup > your contacts first! It's perfectly possible to bust your databases so > all your valuable contacts go down the drain and I won't be the one to > be put in charge for that.) > > As you see, I also need to specify the SYNCH (IRMC will also do). Please > look up the manpage, cause my understanding of this rather limited (in > other words: I'm just using it). > > One final note: my mobiles firmware obviously left the drawing table a > bit, uhm, early. You may have to reset your bluetooth devices and/or the > whole mobile (by removing batteries in my case :-() after doing some > transfers. This is *not* a problem specific to obexftp. Its happening > with a lot of other peers and usage scenarios too. > > Gruss > Dierk > > > Zitiere Alex Keda vom Sun, Feb 17, 2008 at 06:01:22PM +0300: > >> Peter Jeremy ?????: >> >>> On Fri, Feb 15, 2008 at 02:50:36PM +0100, Dierk Sacher wrote: >>> >>> >>>> This is a 'works for me' port. I've only been able to test it with >>>> 6.2-RELEASE on i386 with only one mobile over bluetooth. I did not test >>>> anything else (usb, IR ...). >>>> >>>> >>> I wouldn't mind having obexftp to talk to my phone but unfortunately >>> this port doesn't work for me on 6.3-PRERELEASE/amd64 over bluetooth, >>> though that could be just that I'm not driving it correctly: >>> >>> turion# obexftp -b PeterPhone -v -x >>> Scanning for PeterPhone ... >>> Browsing PeterPhone ... >>> Connecting...failed: connect >>> Still trying to connect >>> Connecting...failed: connect >>> Still trying to connect >>> Connecting...failed: connect >>> Still trying to connect >>> turion# >>> >>> And hcidump shows no data so I suspect it's not even trying BlueTooth. >>> ktrace shows that it's not searching /etc/bluetooth/hosts but directly >>> specifying the BD_ADDR has no improvement and the connect() is returning >>> EINVAL. >>> >>> >> With - nokia-6085 - obexapp-1.4.8 work correct. >> But this port: >> >> ussr$ obexftp --bluetooth nokia-6085 -x >> Scanning for nokia-6085 ... >> Browsing nokia-6085 ... >> Connecting...failed: connect >> Still trying to connect >> Connecting...failed: connect >> Still trying to connect >> Connecting...failed: connect >> Still trying to connect >> >> ussr$ obexftp --bluetooth siemens-sl56 -x >> Scanning for siemens-sl56 ... >> Browsing siemens-sl56 ... >> Connecting...failed: connect >> Still trying to connect >> Connecting...failed: connect >> Still trying to connect >> Connecting...failed: connect >> Still trying to connect >> >> ussr$ obexftp --bluetooth siemens-sl56 -X >> Scanning for siemens-sl56 ... >> Browsing siemens-sl56 ... >> Connecting...failed: connect >> Still trying to connect >> Connecting...failed: connect >> Still trying to connect >> Connecting...failed: connect >> Still trying to connect >> >> ussr$ obexftp --bluetooth nokia-6085 -X >> Scanning for nokia-6085 ... >> Browsing nokia-6085 ... >> Connecting...failed: connect >> Still trying to connect >> Connecting...failed: connect >> Still trying to connect >> Connecting...failed: connect >> Still trying to connect >> >> ussr$ uname -a >> FreeBSD ussr.lissyara.int.otradno.ru 6.3-RELEASE FreeBSD 6.3-RELEASE #0: >> Sun Jan 20 09:47:57 MSK 2008 >> lissyara@ussr.lissyara.int.otradno.ru:/usr/obj/usr/src/sys/color-console >> i386 >> >> ussr$ obexftp --bluetooth siemens-sl56 -p >> /usr/home/lissyara/Desktop/nokia_freebsd.txt >> Scanning for siemens-sl56 ... >> Browsing siemens-sl56 ... >> Connecting...failed: connect >> Still trying to connect >> Connecting...failed: connect >> Still trying to connect >> Connecting...failed: connect >> Still trying to connect >> >> _______________________________________________ >> freebsd-ports@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-ports >> To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" >> > > ================= nokia =============== ussr# obexftp --bluetooth `bthost -b nokia-6085` --channel 10 --capability Connecting...done Receiving "(null)"...| Nokia RM-198 358630018080756 ru DEV 4168192 4202496 MMC 820772864 209059840 text/x-vCard vcf text/x-vCalendar vcs Folder-Browsing F9EC7BC4-953c-11d2-984E-525400DC9E09 1.0 x-obex/folder-listing IrDA F9EC7BC4-953c-11d2-984E-525400DC9E09 Images Folder=Фото\ MemType=DEV Videos Folder=Видео\ MemType=DEV Music Folder=Музыка\ MemType=DEV Graphics Folder=Графика\ MemType=DEV Tones Folder=Сигналы\ MemType=DEV Recordings Folder=Записи\ MemType=DEV Applications Folder= оллекция\ MemType=DEV Games Folder=Игры\ MemType=DEV MMC Folder=Victoriya\ MemType=MMC Infolog x-irmc/info.log log SyncML SYNCML-SYNC 1.1 application/vnd.syncml+wbxml done Disconnecting...done ussr# ================ end nokia ===================== for siemens-sl56 i not find channel number ussr# sdpcontrol -a siemens-sl56 Browse Could not execute command "Browse". Host is down ussr# sdpcontrol -a nokia-6085 Browse Record Handle: 0x0001003c Service Class ID List: Dial-Up Networking (0x1103) Generic Networking (0x1201) Protocol Descriptor List: L2CAP (0x0100) RFCOMM (0x0003) Protocol specific parameter #1: u/int8/bool 1 Bluetooth Profile Descriptor List: Dial-Up Networking (0x1103) ver. 1.0 Record Handle: 0x0001003d Service Class ID List: Serial Port (0x1101) Protocol Descriptor List: L2CAP (0x0100) RFCOMM (0x0003) Protocol specific parameter #1: u/int8/bool 15 Record Handle: 0x0001003e Service Class ID List: Serial Port (0x1101) Protocol Descriptor List: L2CAP (0x0100) RFCOMM (0x0003) Protocol specific parameter #1: u/int8/bool 3 Record Handle: 0x0001003f Service Class ID List: Handsfree Audio Gateway (0x111f) Generic Audio (0x1203) Protocol Descriptor List: L2CAP (0x0100) RFCOMM (0x0003) Protocol specific parameter #1: u/int8/bool 13 Bluetooth Profile Descriptor List: Handsfree (0x111e) ver. 1.5 Record Handle: 0x00010040 Service Class ID List: Headset Audio Gateway (0x1112) Generic Audio (0x1203) Protocol Descriptor List: L2CAP (0x0100) RFCOMM (0x0003) Protocol specific parameter #1: u/int8/bool 12 Bluetooth Profile Descriptor List: Headset (0x1108) ver. 1.0 Record Handle: 0x00010046 Service Class ID List: Network Access Point (0x1116) Protocol Descriptor List: L2CAP (0x0100) Protocol specific parameter #1: u/int/uuid16 15 BNEP (0x000f) Protocol specific parameter #1: u/int/uuid16 256 Protocol specific parameter #2: 0x09 0x86 0xdd 0x09 0x08 0x06 Bluetooth Profile Descriptor List: Network Access Point (0x1116) ver. 1.0 Record Handle: 0x00010048 Service Class ID List: OBEX Object Push (0x1105) Protocol Descriptor List: L2CAP (0x0100) RFCOMM (0x0003) Protocol specific parameter #1: u/int8/bool 9 OBEX (0x0008) Bluetooth Profile Descriptor List: OBEX Object Push (0x1105) ver. 1.0 Record Handle: 0x00010049 Service Class ID List: OBEX File Transfer (0x1106) Protocol Descriptor List: L2CAP (0x0100) RFCOMM (0x0003) Protocol specific parameter #1: u/int8/bool 10 OBEX (0x0008) Bluetooth Profile Descriptor List: OBEX File Transfer (0x1106) ver. 1.0 Record Handle: 0x0001004b Service Class ID List: 0x00000002-0000-1000-8000-0002ee000002 Protocol Descriptor List: L2CAP (0x0100) RFCOMM (0x0003) Protocol specific parameter #1: u/int8/bool 11 OBEX (0x0008) Record Handle: 0x0001004c Service Class ID List: Audio Source (0x110a) Protocol Descriptor List: L2CAP (0x0100) Protocol specific parameter #1: u/int/uuid16 25 AVDTP (0x0019) Protocol specific parameter #1: u/int/uuid16 256 Bluetooth Profile Descriptor List: Advanced Audio Distribution (0x110d) ver. 1.0 Record Handle: 0x0001004d Service Class ID List: A/V Remote Control Target (0x110c) Protocol Descriptor List: L2CAP (0x0100) Protocol specific parameter #1: u/int/uuid16 23 AVCTP (0x0017) Protocol specific parameter #1: u/int/uuid16 256 Bluetooth Profile Descriptor List: A/V Remote Control (0x110e) ver. 1.0 Record Handle: 0x0001004e Service Class ID List: A/V Remote Control (0x110e) Protocol Descriptor List: L2CAP (0x0100) Protocol specific parameter #1: u/int/uuid16 23 AVCTP (0x0017) Protocol specific parameter #1: u/int/uuid16 256 Bluetooth Profile Descriptor List: A/V Remote Control (0x110e) ver. 1.0 Record Handle: 0x0001004f Service Class ID List: SIM Access (0x112d) Generic Telephony (0x1204) Protocol Descriptor List: L2CAP (0x0100) RFCOMM (0x0003) Protocol specific parameter #1: u/int8/bool 4 Bluetooth Profile Descriptor List: SIM Access (0x112d) ver. 1.1 ussr# =========== any additional commands? From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 02:13:02 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC5D816A408; Wed, 20 Feb 2008 02:13:02 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (adsl-63-193-123-122.dsl.snfc21.pacbell.net [63.193.123.122]) by mx1.freebsd.org (Postfix) with ESMTP id C327F13C448; Wed, 20 Feb 2008 02:13:02 +0000 (UTC) (envelope-from david@catwhisker.org) Received: from bunrab.catwhisker.org (localhost [127.0.0.1]) by bunrab.catwhisker.org (8.13.3/8.13.3) with ESMTP id m1K2D27c056678; Tue, 19 Feb 2008 18:13:02 -0800 (PST) (envelope-from david@bunrab.catwhisker.org) Received: (from david@localhost) by bunrab.catwhisker.org (8.13.3/8.13.1/Submit) id m1K2D0Qt056677; Tue, 19 Feb 2008 18:13:00 -0800 (PST) (envelope-from david) Date: Tue, 19 Feb 2008 18:12:59 -0800 From: David Wolfskill To: Rong-En Fan Message-ID: <20080220021259.GS47504@bunrab.catwhisker.org> References: <20080129032111.GH40423@bunrab.catwhisker.org> <20080220020707.GK97111@svm.csie.ntu.edu.tw> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="68uOmRXIw+u8y5pO" Content-Disposition: inline In-Reply-To: <20080220020707.GK97111@svm.csie.ntu.edu.tw> User-Agent: Mutt/1.4.2.1i Cc: ports@freebsd.org, danfe@freebsd.org, cperciva@freebsd.org Subject: Re: Fix for FreeBSD-SA-08:01.pty appears to break net/omnitty? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 02:13:03 -0000 --68uOmRXIw+u8y5pO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Feb 20, 2008 at 10:07:07AM +0800, Rong-En Fan wrote: > FYI, this is fixed in omnitty 0.3.0_1. Thanks! Should I file a PR against misc/compat6x (because its version of libutil.so is apparently still subject PTY security advisory)? Peace, david --=20 David H. Wolfskill david@catwhisker.org I submit that "conspiracy" would be an appropriate collective noun for cats. See http://www.catwhisker.org/~david/publickey.gpg for my public key. --68uOmRXIw+u8y5pO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iEYEARECAAYFAke7jKkACgkQmprOCmdXAD2d5wCfaC94oBQ333Td/q/DvbcigP14 7IIAnR+FE8wCFwubtixcy8v92rqwJ71R =d77S -----END PGP SIGNATURE----- --68uOmRXIw+u8y5pO-- From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 02:18:08 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 943C716A403; Wed, 20 Feb 2008 02:18:08 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (svm.csie.ntu.edu.tw [140.112.90.75]) by mx1.freebsd.org (Postfix) with ESMTP id 118C513C45B; Wed, 20 Feb 2008 02:18:07 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (localhost [127.0.0.1]) by svm.csie.ntu.edu.tw (8.14.1/8.14.1) with ESMTP id m1K2I5Wk040396; Wed, 20 Feb 2008 10:18:05 +0800 (CST) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: (from rafan@localhost) by svm.csie.ntu.edu.tw (8.14.1/8.14.1/Submit) id m1K2I5tT072277; Wed, 20 Feb 2008 10:18:05 +0800 (CST) (envelope-from rafan) Date: Wed, 20 Feb 2008 10:18:05 +0800 From: Rong-En Fan To: David Wolfskill Message-ID: <20080220021805.GL97111@svm.csie.ntu.edu.tw> References: <20080129032111.GH40423@bunrab.catwhisker.org> <20080220020707.GK97111@svm.csie.ntu.edu.tw> <20080220021259.GS47504@bunrab.catwhisker.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="muT+E17Lr9urPYYJ" Content-Disposition: inline In-Reply-To: <20080220021259.GS47504@bunrab.catwhisker.org> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: mnag@freebsd.org, ports@freebsd.org Subject: Re: Fix for FreeBSD-SA-08:01.pty appears to break net/omnitty? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 02:18:08 -0000 --muT+E17Lr9urPYYJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Tue, Feb 19, 2008 at 06:12:59PM -0800, David Wolfskill wrote: > On Wed, Feb 20, 2008 at 10:07:07AM +0800, Rong-En Fan wrote: > > FYI, this is fixed in omnitty 0.3.0_1. >=20 > Thanks! >=20 > Should I file a PR against misc/compat6x (because its version of > libutil.so is apparently still subject PTY security advisory)? Maintainer is CC'ed. I think we should update misc/compat6x to use contents from 6.3-RELEASE. And filing a PR is also good.=20 Regards, Rong-En Fan --muT+E17Lr9urPYYJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFHu43d144QkYb9jGgRAqoeAJ0Q27XaUizAvv0GZ5NrXdV6GKGz2QCfbeut 48ViWkFW0Ra3+8Rzrqkz0sM= =L+Re -----END PGP SIGNATURE----- --muT+E17Lr9urPYYJ-- From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 02:32:53 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7424E16A402; Wed, 20 Feb 2008 02:32:53 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (svm.csie.ntu.edu.tw [140.112.90.75]) by mx1.freebsd.org (Postfix) with ESMTP id 1C2DD13C467; Wed, 20 Feb 2008 02:32:52 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (localhost [127.0.0.1]) by svm.csie.ntu.edu.tw (8.14.1/8.14.1) with ESMTP id m1K278kA078611; Wed, 20 Feb 2008 10:07:08 +0800 (CST) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: (from rafan@localhost) by svm.csie.ntu.edu.tw (8.14.1/8.14.1/Submit) id m1K277m1072994; Wed, 20 Feb 2008 10:07:07 +0800 (CST) (envelope-from rafan) Date: Wed, 20 Feb 2008 10:07:07 +0800 From: Rong-En Fan To: David Wolfskill Message-ID: <20080220020707.GK97111@svm.csie.ntu.edu.tw> References: <20080129032111.GH40423@bunrab.catwhisker.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="uwB7x3tnyrZQfZJI" Content-Disposition: inline In-Reply-To: <20080129032111.GH40423@bunrab.catwhisker.org> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: ports@freebsd.org, danfe@freebsd.org, cperciva@freebsd.org Subject: Re: Fix for FreeBSD-SA-08:01.pty appears to break net/omnitty? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 02:32:53 -0000 --uwB7x3tnyrZQfZJI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline FYI, this is fixed in omnitty 0.3.0_1. Regards, Rong-En Fan --uwB7x3tnyrZQfZJI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFHu4tL144QkYb9jGgRAsSrAJ9u0CMFJ8z9x88fZWV0vVZNgD/PowCfVGOY NuzzT1W0imkYzn5ONlTPVxw= =OdZR -----END PGP SIGNATURE----- --uwB7x3tnyrZQfZJI-- From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 04:01:05 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BA22A16A401 for ; Wed, 20 Feb 2008 04:01:05 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.freebsd.org (Postfix) with ESMTP id 898AB13C457 for ; Wed, 20 Feb 2008 04:01:05 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id D56455C5E; Tue, 19 Feb 2008 23:03:41 -0500 (EST) Date: Tue, 19 Feb 2008 23:03:41 -0500 From: Wesley Shields To: ports@FreeBSD.org Message-ID: <20080220040341.GA64876@atarininja.org> References: <20080211184626.GH90004@atarininja.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="WIyZ46R2i8wDzkSu" Content-Disposition: inline In-Reply-To: <20080211184626.GH90004@atarininja.org> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: Subject: Re: Collecting pkg-message files? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 04:01:05 -0000 --WIyZ46R2i8wDzkSu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Feb 11, 2008 at 01:46:26PM -0500, Wesley Shields wrote: > One of the things that often trips up new users is the fact that > pkg-message files scroll past their buffers when installing something > via ports. As such, they sometimes miss important post-installation > steps which need to be taken in order to finish the install. I've > attached a patch I've come up with to collect all the pkg-message files > during an install and display them at the end. > > In order to not be in violation of POLA I only collect the messages and > display them if SHOW_ALL_PKG_MSGS is defined. This way it won't get in > the way of any automated tools, and in some cases it may reduce the > complexity of those tools if they provide native support for this. > > I've barely tested this, but I'm due to get a new laptop in a few weeks > and plan to run this patch while I'm building and installing everything > I normally use. I'm curious if there is anyone else out there willing > to test this out before I submit a PR for it once it proves stable > during my new laptop install. Please let me know what you think and if > you run into any problems with it. > > -- WXS I've had one or two people report back on this. I've attached what I believe should fix their problem and ran it through a couple more builds of a handful of ports. If you want to test it out I'm attaching an updated version here. -- WXS --WIyZ46R2i8wDzkSu Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="show-all-pkg-messages.diff" Index: bsd.commands.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.commands.mk,v retrieving revision 1.1 diff -u -u -r1.1 bsd.commands.mk --- bsd.commands.mk 4 Aug 2007 11:37:23 -0000 1.1 +++ bsd.commands.mk 20 Feb 2008 03:52:17 -0000 @@ -64,6 +64,7 @@ MV?= /bin/mv OBJCOPY?= /usr/bin/objcopy OBJDUMP?= /usr/bin/objdump +PAGER?= /usr/bin/less PASTE?= /usr/bin/paste PAX?= /bin/pax PRINTF?= /usr/bin/printf Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.589 diff -u -u -r1.589 bsd.port.mk --- bsd.port.mk 17 Oct 2007 10:12:24 -0000 1.589 +++ bsd.port.mk 20 Feb 2008 03:52:18 -0000 @@ -2313,6 +2313,7 @@ PKGMESSAGE?= ${PKGDIR}/pkg-message TMPPLIST?= ${WRKDIR}/.PLIST.mktmp +ALLPKGMSGS?= ${WRKDIR}/all-pkg-messages .for _CATEGORY in ${CATEGORIES} PKGCATEGORY?= ${_CATEGORY} @@ -3933,6 +3934,30 @@ .endif .endif +.if !target(collect-all-pkg-message) +collect-all-pkg-message: +.if defined(SHOW_ALL_PKG_MSGS) + @if [ -f ${PKGMESSAGE} ]; then \ + ${ECHO_MSG} "===> Collecting pkg-message for later display."; \ + ${ECHO_CMD} "pkg-message for ${PKGNAME}:" >> ${ALLPKGMSGS}; \ + ${CAT} ${PKGMESSAGE} >> ${ALLPKGMSGS}; \ + fi; +.else + @${DO_NADA} +.endif +.endif + +.if !target(display-all-pkg-message) +display-all-pkg-message: +.if defined(SHOW_ALL_PKG_MSGS) + @if [ ${WRKDIR} = `dirname ${ALLPKGMSGS}` -a -e ${ALLPKGMSGS} ]; then \ + ${PAGER} ${ALLPKGMSGS}; \ + fi; +.else + @${DO_NADA} +.endif +.endif + .if !target(security-check) .if !defined(OLD_SECURITY_CHECK) @@ -4109,13 +4134,15 @@ _INSTALL_DEP= build _INSTALL_SEQ= install-message check-conflicts \ run-depends lib-depends apply-slist pre-install \ - pre-install-script generate-plist check-already-installed + pre-install-script generate-plist collect-all-pkg-message \ + check-already-installed _INSTALL_SUSEQ= check-umask install-mtree pre-su-install \ pre-su-install-script do-install install-desktop-entries \ post-install post-install-script add-plist-info \ add-plist-docs add-plist-examples add-plist-data \ add-plist-post install-rc-script compress-man \ - install-ldconfig-file fake-pkg security-check + install-ldconfig-file fake-pkg security-check \ + display-all-pkg-message _PACKAGE_DEP= install _PACKAGE_SEQ= package-message pre-package pre-package-script \ do-package post-package-script @@ -4817,15 +4844,15 @@ dir=`${ECHO_CMD} $$dir | ${SED} -e 's/:.*//'`; \ if [ X${DEPENDS_PRECLEAN} != "X" ]; then \ target="clean $$target"; \ - depends_args="$$depends_args NOCLEANDEPENDS=yes"; \ + depends_args="$$depends_args NOCLEANDEPENDS=yes ALLPKGMSGS=${ALLPKGMSGS}"; \ fi; \ if [ X${DEPENDS_CLEAN} != "X" ]; then \ target="$$target clean"; \ - depends_args="$$depends_args NOCLEANDEPENDS=yes"; \ + depends_args="$$depends_args NOCLEANDEPENDS=yes ALLPKGMSGS=${ALLPKGMSGS}"; \ fi; \ else \ target="${DEPENDS_TARGET}"; \ - depends_args="${DEPENDS_ARGS}"; \ + depends_args="${DEPENDS_ARGS} ALLPKGMSGS=${ALLPKGMSGS}"; \ fi; \ if ${EXPR} "$$prog" : \\/ >/dev/null; then \ if [ -e "$$prog" ]; then \ --WIyZ46R2i8wDzkSu-- From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 06:36:45 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 51E4516A400 for ; Wed, 20 Feb 2008 06:36:45 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.184]) by mx1.freebsd.org (Postfix) with ESMTP id 2746513C467 for ; Wed, 20 Feb 2008 06:36:45 +0000 (UTC) (envelope-from yanegomi@gmail.com) Received: by rv-out-0910.google.com with SMTP id g13so1954011rvb.43 for ; Tue, 19 Feb 2008 22:36:44 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:to:in-reply-to:content-type:content-transfer-encoding:mime-version:subject:date:references:x-mailer:from; bh=XVBLsMYOKHNQ92SCniMQeHYPfa8nULtUrXnpSMMLWZo=; b=PJLv1Rgn/CquNLjYq0VOaVasSzxWIyxp9kY/5c4eF3c6HZQogT3PDS9q5pExzQnx+jCTn9FhGnkZ+iZUn7VDroANWXrA0ZCfZdvEY15TJQon3iDIlTOQ4VBwF7HOiMMSoNkOtQmcGYrQ/Swko01reGrqFjhRFyT5q10gaGDEIvE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:to:in-reply-to:content-type:content-transfer-encoding:mime-version:subject:date:references:x-mailer:from; b=M2bXG6UhmqW4PRyA8IZ+WWimg45cXJ9ZpjXRadLGwaUSyT9faVlEpOKQq7I/iB03LONsPDGuWpau+mbmIW5dARCIhMjzccnlhNd2vThH80YMQX7got4HC1Ec+FwR7FG054Eg1J/lCbN3ZDmrXCJtyYENbPE8q780onedvOBYUCQ= Received: by 10.141.211.13 with SMTP id n13mr5404582rvq.184.1203489404560; Tue, 19 Feb 2008 22:36:44 -0800 (PST) Received: from ?10.0.0.19? ( [71.92.133.50]) by mx.google.com with ESMTPS id m29sm18997665poh.3.2008.02.19.22.36.41 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 19 Feb 2008 22:36:42 -0800 (PST) Message-Id: <4CC080E4-4C4C-453B-A89F-A3053A598DEE@u.washington.edu> To: freebsd-ports@freebsd.org In-Reply-To: <20080217195259.GS20280@bunrab.catwhisker.org> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Mime-Version: 1.0 (Apple Message framework v919.2) Date: Tue, 19 Feb 2008 22:37:29 -0800 References: <20080217195259.GS20280@bunrab.catwhisker.org> X-Mailer: Apple Mail (2.919.2) From: Garrett Cooper Subject: Re: What's a "good" way to handle installation of conflicting ports? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 06:36:45 -0000 On Feb 17, 2008, at 11:52 AM, David Wolfskill wrote: > I've been asked to come up with at least an interim approach -- > that can be implemented within a few days -- to allow the SAs at > my new job to install conflicting ports on the same machine. [...] > The catalyst for the exercise is that we have some pools of machines > for developers to use; some of the developers wish to use > editors/xemacs; some wish to use editors/emacs -- on the same machine. > (Given the requirement, it's OK for the affected folks to need to > adjust > search, library, and man paths.) My suggestion is to determine what the most common set of ports are in your group, set that as the mainstream config, then for anyone who ventures outside of the norm, setup local ports and jails to fix that little issue. NFS'ed directories with multiple copies with version tags (prefixes) corresponding to the binary build as well as the linking libs, and possibly scripts to setup the environment / jail might be the best way to go. When it all boils down to it though you should (once you get enough IT staff on-board) standardize a given setup and once things are standard basically require that all individuals can be supported by IT or can self-support their own machines if necessary. It's just too difficult to manage a lot of machines where there are a large number of unknowns and variable configs. Just some food for thought... -Garrett From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 07:12:05 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 87C7B16A405 for ; Wed, 20 Feb 2008 07:12:05 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from mail04.syd.optusnet.com.au (mail04.syd.optusnet.com.au [211.29.132.185]) by mx1.freebsd.org (Postfix) with ESMTP id 1E66E13C474 for ; Wed, 20 Feb 2008 07:12:04 +0000 (UTC) (envelope-from peterjeremy@optushome.com.au) Received: from server.vk2pj.dyndns.org (c220-239-20-82.belrs4.nsw.optusnet.com.au [220.239.20.82]) by mail04.syd.optusnet.com.au (8.13.1/8.13.1) with ESMTP id m1K7C1Gc002105 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 20 Feb 2008 18:12:02 +1100 Received: from server.vk2pj.dyndns.org (localhost.vk2pj.dyndns.org [127.0.0.1]) by server.vk2pj.dyndns.org (8.14.2/8.14.1) with ESMTP id m1K7C1wJ051432 for ; Wed, 20 Feb 2008 18:12:01 +1100 (EST) (envelope-from peter@server.vk2pj.dyndns.org) Received: (from peter@localhost) by server.vk2pj.dyndns.org (8.14.2/8.14.2/Submit) id m1K7C1jQ051431 for freebsd-ports@freebsd.org; Wed, 20 Feb 2008 18:12:01 +1100 (EST) (envelope-from peter) Date: Wed, 20 Feb 2008 18:12:01 +1100 From: Peter Jeremy To: freebsd-ports Message-ID: <20080220071201.GH51095@server.vk2pj.dyndns.org> References: <20080215135036.GA6988@blaxxtarz.evangelion.free> <20080216104809.GJ64299@server.vk2pj.dyndns.org> <47B84C42.40603@lissyara.su> <20080218041901.GA45835@blaxxtarz.evangelion.free> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dDRMvlgZJXvWKvBx" Content-Disposition: inline In-Reply-To: <20080218041901.GA45835@blaxxtarz.evangelion.free> X-PGP-Key: http://members.optusnet.com.au/peterjeremy/pubkey.asc User-Agent: Mutt/1.5.17 (2007-11-01) Subject: Re: obexftp - call for testers X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 07:12:05 -0000 --dDRMvlgZJXvWKvBx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Feb 18, 2008 at 05:19:01AM +0100, Dierk Sacher wrote: >(1) BD_ADDR in raw format (it's _not_ resolving literal device names) >(2) the Channel (by using the -B option) OK. This works on my Motorola L6i but it seems that Motorola didn't bother with the telecom/ nodes or capability support so obexftp can't do anything that obexapp can't (unfortunately). turion% obexftp --bluetooth `bthost -b PeterPhone` --channel 9 -v -l picture Connecting...failed: connect Still trying to connect Connecting...done Receiving "picture"...| done Disconnecting...done turion%=20 >One final note: my mobiles firmware obviously left the drawing table a >bit, uhm, early. You may have to reset your bluetooth devices and/or the >whole mobile (by removing batteries in my case :-() after doing some >transfers. This is *not* a problem specific to obexftp. Its happening >with a lot of other peers and usage scenarios too. I don't see that but usually have to execute commands multiple times for the phone to acknowledge. --=20 Peter Jeremy Please excuse any delays as the result of my ISP's inability to implement an MTA that is either RFC2821-compliant or matches their claimed behaviour. --dDRMvlgZJXvWKvBx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.4 (FreeBSD) iD8DBQFHu9LB/opHv/APuIcRAv1vAJ9FR7Gg4IO/VttCEUMcDSeCfYP+lACfbA3x 3IO+mafpgZIVbjI7ZQy8i+k= =PBDc -----END PGP SIGNATURE----- --dDRMvlgZJXvWKvBx-- From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 11:20:40 2008 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C4CC16A40E; Wed, 20 Feb 2008 11:20:40 +0000 (UTC) (envelope-from tataz@tataz.chchile.org) Received: from postfix2-g20.free.fr (postfix2-g20.free.fr [212.27.60.43]) by mx1.freebsd.org (Postfix) with ESMTP id 8CA1913C458; Wed, 20 Feb 2008 11:20:39 +0000 (UTC) (envelope-from tataz@tataz.chchile.org) Received: from smtp5-g19.free.fr (smtp5-g19.free.fr [212.27.42.35]) by postfix2-g20.free.fr (Postfix) with ESMTP id 8C4B123853B8; Wed, 20 Feb 2008 09:48:09 +0100 (CET) Received: from smtp5-g19.free.fr (localhost.localdomain [127.0.0.1]) by smtp5-g19.free.fr (Postfix) with ESMTP id B59CF3F617D; Wed, 20 Feb 2008 11:48:42 +0100 (CET) Received: from tatooine.tataz.chchile.org (tataz.chchile.org [82.233.239.98]) by smtp5-g19.free.fr (Postfix) with ESMTP id A502C3F619D; Wed, 20 Feb 2008 11:48:42 +0100 (CET) Received: from obiwan.tataz.chchile.org (unknown [192.168.1.25]) by tatooine.tataz.chchile.org (Postfix) with ESMTP id 8DA399BF12; Wed, 20 Feb 2008 10:43:37 +0000 (UTC) Received: by obiwan.tataz.chchile.org (Postfix, from userid 1000) id 83C83405B; Wed, 20 Feb 2008 11:43:37 +0100 (CET) To: FreeBSD-gnats-submit@freebsd.org From: Jeremie Le Hen X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20080220104337.83C83405B@obiwan.tataz.chchile.org> Date: Wed, 20 Feb 2008 11:43:37 +0100 (CET) Cc: ambrisko@FreeBSD.org, jeremie@le-hen.org, freebsd-ports@FreeBSD.org Subject: [patch] net/etherboot doesn't compile with gcc4 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jeremie Le Hen List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 11:20:40 -0000 >Submitter-Id: current-users >Originator: Jeremie Le Hen >Organization: >Confidential: no >Synopsis: [patch] net/etherboot doesn't compile with gcc4 >Severity: non-critical >Priority: low >Category: ports >Class: sw-bug >Release: FreeBSD 7.0 i386 >Environment: System: FreeBSD 7.0 >Description: GCC 4 is far more nit-picking than its ancestor. >How-To-Repeat: Simply try to compile net/etherboot on RELENG_7 or CURRENT. >Fix: Drop the following three patchs into the files/ directory. --- patch-gcc40-1 begins here --- --- arch/i386/firmware/pcbios/basemem.c.old 2008-02-20 11:24:39.000000000 +0100 +++ arch/i386/firmware/pcbios/basemem.c 2008-02-20 11:24:49.000000000 +0100 @@ -93,6 +93,7 @@ uint16_t size_kb = ( size + remainder + 1023 ) >> 10; free_base_memory_block_t *free_block = ( free_base_memory_block_t * ) ( ptr - remainder ); + unsigned char *fbaddr; if ( ( ptr == NULL ) || ( size == 0 ) ) { return; } @@ -125,7 +126,9 @@ free_block->magic = FREE_BLOCK_MAGIC; free_block->size_kb = size_kb; /* Move up by 1 kB */ - (void *)free_block += ( 1 << 10 ); + fbaddr = (void *)free_block; + fbaddr += ( 1 << 10 ); + free_block = (void *)fbaddr; size_kb--; } --- patch-gcc40-1 ends here --- --- patch-gcc40-2 begins here --- --- drivers/net/natsemi.c.old 2008-02-20 11:29:11.000000000 +0100 +++ drivers/net/natsemi.c 2008-02-20 11:32:13.000000000 +0100 @@ -602,7 +602,7 @@ const char *p) /* Packet */ { u32 to, nstype; - u32 tx_status; + volatile u32 tx_status; /* Stop the transmitter */ outl(TxOff, ioaddr + ChipCmd); @@ -641,7 +641,7 @@ to = currticks() + TX_TIMEOUT; - while ((((volatile u32) tx_status=txd.cmdsts) & OWN) && (currticks() < to)) + while (((tx_status=txd.cmdsts) & OWN) && (currticks() < to)) /* wait */ ; if (currticks() >= to) { --- patch-gcc40-2 ends here --- --- patch-gcc40-3 begins here --- --- drivers/net/sis900.c.old 2008-02-20 11:33:10.000000000 +0100 +++ drivers/net/sis900.c 2008-02-20 11:33:54.000000000 +0100 @@ -1083,7 +1083,7 @@ const char *p) /* Packet */ { u32 to, nstype; - u32 tx_status; + volatile u32 tx_status; /* Stop the transmitter */ outl(TxDIS | inl(ioaddr + cr), ioaddr + cr); @@ -1122,7 +1122,7 @@ to = currticks() + TX_TIMEOUT; - while ((((volatile u32) tx_status=txd.cmdsts) & OWN) && (currticks() < to)) + while (((tx_status=txd.cmdsts) & OWN) && (currticks() < to)) /* wait */ ; if (currticks() >= to) { --- patch-gcc40-3 ends here --- From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 11:41:21 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from sup-afu.wrk.terra.com.br (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by hub.freebsd.org (Postfix) with ESMTP id 2C1EC16A400; Wed, 20 Feb 2008 11:41:20 +0000 (UTC) (envelope-from mnag@FreeBSD.org) Message-ID: <47BC11E0.5010401@FreeBSD.org> Date: Wed, 20 Feb 2008 08:41:20 -0300 From: Marcus Alves Grando Organization: FreeBSD.org User-Agent: Thunderbird 2.0.0.9 (X11/20080123) MIME-Version: 1.0 To: Rong-En Fan References: <20080129032111.GH40423@bunrab.catwhisker.org> <20080220020707.GK97111@svm.csie.ntu.edu.tw> <20080220021259.GS47504@bunrab.catwhisker.org> <20080220021805.GL97111@svm.csie.ntu.edu.tw> In-Reply-To: <20080220021805.GL97111@svm.csie.ntu.edu.tw> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, David Wolfskill Subject: Re: Fix for FreeBSD-SA-08:01.pty appears to break net/omnitty? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 11:41:22 -0000 Rong-En Fan wrote: > Hi, > > On Tue, Feb 19, 2008 at 06:12:59PM -0800, David Wolfskill wrote: >> On Wed, Feb 20, 2008 at 10:07:07AM +0800, Rong-En Fan wrote: >>> FYI, this is fixed in omnitty 0.3.0_1. >> Thanks! >> >> Should I file a PR against misc/compat6x (because its version of >> libutil.so is apparently still subject PTY security advisory)? > > Maintainer is CC'ed. > > I think we should update misc/compat6x to use contents from > 6.3-RELEASE. And filing a PR is also good. Probably i'll update today, maybe tomorrow. Regards > > Regards, > Rong-En Fan > -- Marcus Alves Grando marcus(at)sbh.eng.br | Personal mnag(at)FreeBSD.org | FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 13:30:09 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04EA016A400 for ; Wed, 20 Feb 2008 13:30:09 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id ADE1513C45E for ; Wed, 20 Feb 2008 13:30:08 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from root by ciao.gmane.org with local (Exim 4.43) id 1JRp1O-0002QU-7B for freebsd-ports@freebsd.org; Wed, 20 Feb 2008 13:30:02 +0000 Received: from detroit.slack.net ([69.31.82.90]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 20 Feb 2008 13:30:02 +0000 Received: from mark.evenson by detroit.slack.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 20 Feb 2008 13:30:02 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Mark Evenson Date: Wed, 20 Feb 2008 14:27:58 +0100 Lines: 12 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: detroit.slack.net User-Agent: Thunderbird 2.0.0.9 (X11/20080122) Sender: news Subject: mail/mail-notification patch 117710 commit? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 13:30:09 -0000 mail/mail-notification has been broken for a while. The patch attached to [117710][1] worked for me on a fresh ports tree as of 20080220. Perhaps it should be committed/moved into the right queue? [1]: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/117710 -- "[T]his is not a disentanglement from, but a progressive knotting into." From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 14:37:17 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 15DFD16A404 for ; Wed, 20 Feb 2008 14:37:17 +0000 (UTC) (envelope-from aturetta@commit.it) Received: from aa002msb.fastweb.it (aa002msb.fastweb.it [85.18.95.81]) by mx1.freebsd.org (Postfix) with ESMTP id 9308A13C461 for ; Wed, 20 Feb 2008 14:37:16 +0000 (UTC) (envelope-from aturetta@commit.it) Received: from mail.logital.it (89.97.230.176) by aa002msb.fastweb.it (8.0.013.5) id 47A9B14101B170E6 for freebsd-ports@freebsd.org; Wed, 20 Feb 2008 15:24:57 +0100 Received: from [10.143.90.129] ([10.143.90.129]) (authenticated bits=0) by mail.logital.it (8.14.2/8.14.2) with ESMTP id m1KEPexs078405 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 20 Feb 2008 15:25:49 +0100 (CET) (envelope-from aturetta@commit.it) Message-ID: <47BC385C.3020907@commit.it> Date: Wed, 20 Feb 2008 15:25:32 +0100 From: Angelo Turetta User-Agent: Thunderbird 2.0.0.12 (Windows/20080213) MIME-Version: 1.0 To: FreeBSD - Ports Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 0.92.1, clamav-milter version 0.92.1 on mail.logital.it X-Virus-Status: Clean Subject: I've started to hate portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 14:37:17 -0000 Every new version has such *evident* regressions! Beside needlessly repackaging ports that fail build when doing "-a -p" (obviously non repeatable by the developers), and sometimes failing to reinstall a package if the install phase fails (also non reproducible, but happening nonetheless in production servers). Now, since the last upgrade, I cannot use -R if there's a port with an unknown origin. Look: [root@mail]# portversion -vL= openldap-client-2.3.40 < needs updating (port has 2.3.41) p5-Mail-IMAPClient-2.2.9 < [held] needs updating (port has 3.04) p5-PathTools-3.2700 < needs updating (port has 3.2701) p5-Socket6-0.19 < needs updating (port has 0.20) p5-Test-Harness-3.07 < needs updating (port has 3.09) squid-2.5.14_4 ? [held] error - origin not found squirrelmail-compatibility-plugin-2.0.9_1 < needs updating (port has 2.0.10) [root@mail]# portupgrade -aRp ** There are errors in a meta info for squid-2.5.14_4 ** Run 'pkgdb -F' to interactively fix them. Of course pkgdb -F asks me to delete squid-2.5.14_4. I also tried to add it to HOLD_PKGS in pkgtools.conf, no change. What the heck does it care if I want to keep an obsolete port! I think the same would happen with a package installed from a developer (non-standard) ports tree, or a perl module installed from CPAN without a corresponding FreeBSD port. Umpfffff... Any portmaster migration guide for long-time portupgrade users? Angelo. From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 15:05:59 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BE5616A402 for ; Wed, 20 Feb 2008 15:05:59 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mail.bsdforen.de (bsdforen.de [212.204.60.79]) by mx1.freebsd.org (Postfix) with ESMTP id B823513C45B for ; Wed, 20 Feb 2008 15:05:58 +0000 (UTC) (envelope-from kamikaze@bsdforen.de) Received: from mobileKamikaze.norad (nat-wh-1.rz.uni-karlsruhe.de [129.13.72.169]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bsdforen.de (Postfix) with ESMTP id 9A6E2405486; Wed, 20 Feb 2008 15:40:59 +0100 (CET) Message-ID: <47BC3BFA.9090301@bsdforen.de> Date: Wed, 20 Feb 2008 15:40:58 +0100 From: Dominic Fandrey User-Agent: Thunderbird 2.0.0.9 (X11/20080205) MIME-Version: 1.0 To: Angelo Turetta References: <47BC385C.3020907@commit.it> In-Reply-To: <47BC385C.3020907@commit.it> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD - Ports Subject: Re: I've started to hate portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 15:05:59 -0000 Angelo Turetta wrote: > Every new version has such *evident* regressions! > > Beside needlessly repackaging ports that fail build when doing "-a -p" > (obviously non repeatable by the developers), and sometimes failing to > reinstall a package if the install phase fails (also non reproducible, > but happening nonetheless in production servers). Also often happened to me. Portmaster ist my tool of choice, now. From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 15:57:38 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1879216A400 for ; Wed, 20 Feb 2008 15:57:38 +0000 (UTC) (envelope-from jamebus@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.187]) by mx1.freebsd.org (Postfix) with ESMTP id 9AB1C13C469 for ; Wed, 20 Feb 2008 15:57:37 +0000 (UTC) (envelope-from jamebus@gmail.com) Received: by rv-out-0910.google.com with SMTP id g13so2074463rvb.43 for ; Wed, 20 Feb 2008 07:57:37 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; bh=TJtAC66HmgBkEUbC0pQH/mGsFpK6c8xvPBNXFyYLyhU=; b=JA8b0v8oRR1TKtoptlms5zRUkWKezcytSJ7pG8OOpTDvoZXmH5US0iOHivPdEfBgDpt0XPFRmwoWiTPDLKWK2gesFRaXD+VIdI4Vk5Uf+q3XPGBo7yPKd8KAnfIFwU+FzoMEqYXy8e358inJS7bV1dje0Ga1wwqh/9k9s1vIfKc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=DcXBAP87u0w+Ih6LcJVymYXU2+N8Z9ny/Wj3ehLXhPX5W4S/yFitsJ6SFsKRPVQA0/5lr98Dlh5bcsHt1pAigtVqAmbxNlZQN5MGOzXFpW4aDJ0aBtJi9/vugAsO4jFihiPp4ootfYNwI8qGKeMzttQiwRoyYjFlr9gu6sg8fcU= Received: by 10.141.26.18 with SMTP id d18mr5771455rvj.264.1203521532277; Wed, 20 Feb 2008 07:32:12 -0800 (PST) Received: by 10.140.186.13 with HTTP; Wed, 20 Feb 2008 07:32:12 -0800 (PST) Message-ID: Date: Wed, 20 Feb 2008 09:32:12 -0600 From: James Sender: jamebus@gmail.com To: FreeBSD-ports MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: 7470795c069c5a96 Subject: Portupgrade not running get_notinstalled_depends (2.4.3_1, 2 vs 2.4.3_2, 2) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 15:57:38 -0000 hihi. I was wondering what sort of problems the following change to portupgrade was solving: -------------------------------------------------------------------------- sem 2008-02-11 16:17:39 UTC FreeBSD ports repository Modified files: ports-mgmt/portupgrade Makefile ports-mgmt/portupgrade/files patch-bin-portupgrade Log: - Remove code that gather not installed depends. It makes more problems than solves. Discussed with: pav Revision Changes Path 1.249 +1 -1 ports/ports-mgmt/portupgrade/Makefile 1.13 +13 -3 ports/ports-mgmt/portupgrade/files/patch-bin-portupgrade -------------------------------------------------------------------------- It seems to break ALT_PKGDEP processing during a portupgrade run because alt_dep happens in get_notinstalled_depends. For example, in my tests, if I have an alt-dep set for a package and I install a port that depends on that package it'll still install the original package rather than my alt-dep. If I revert the change that happened in 2.4.3_2,2 the alt-dep stuff works out. I'm worried that I'm opening up a can of worms because I don't understand what problems were trying to be solved in that version. Any ideas? Or does it sound like I'm misunderstanding ALT_PKGDEP? Thanks! -- James. From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 19:30:57 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1D4A516A404 for ; Wed, 20 Feb 2008 19:30:57 +0000 (UTC) (envelope-from singularityy@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.236]) by mx1.freebsd.org (Postfix) with ESMTP id C400C13C457 for ; Wed, 20 Feb 2008 19:30:56 +0000 (UTC) (envelope-from singularityy@gmail.com) Received: by wx-out-0506.google.com with SMTP id i29so2352015wxd.7 for ; Wed, 20 Feb 2008 11:30:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:mime-version:content-type; bh=9mVCCkauIG3ACdh3nqR95kRlAR4sWj0GxCrdUceBeyY=; b=IeWQUDqHiCELfPI8Q1q/5UeusD8deRq/Y+GQuTpUaxFKwNtvZdYbozgqv404dFdXtuihz0vTuehunv9J/MAuBNO8lgsLaTi9YO+O1cGaGGxA9s2fG0liMJCl1qm2oW7mzE+LpQN1921aMAPcm+XekiN+yLax1/BLBAuBzzt+xDk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:mime-version:content-type; b=kSFFEihrcuDsTfo98PifhgB8SKEJhAKTEGumsacwffkcVbt9qZYhg1PIBOZwZcF3Moag7M3uB6/BPm5Up1fhEnRpX/ziRRfAACYjpC9tkvlwCmcw7ZQQ6b70O2Az3+ClckJSTFXuw9JyivuKFqPrL8srQhe+IZmZP4yYDgEukBs= Received: by 10.141.122.20 with SMTP id z20mr5974133rvm.93.1203534271879; Wed, 20 Feb 2008 11:04:31 -0800 (PST) Received: by 10.140.131.5 with HTTP; Wed, 20 Feb 2008 11:04:31 -0800 (PST) Message-ID: Date: Wed, 20 Feb 2008 20:04:31 +0100 From: "peter bird" To: jylefort@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org Subject: FreeBSD Port: timeseal-1.0 - Bad system call X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 19:30:57 -0000 Please can you help with this? pulsarity# uname -a FreeBSD pulsarity.demax.sk 7.0-RC1 FreeBSD 7.0-RC1 #1: Wed Feb 6 11:45:51 CET 2008 bird@pulsarity.demax.sk:/usr/obj/usr/src/sys/PULS i386 pulsarity# timeseal Bad system call pulsarity# kldstat Id Refs Address Size Name 1 8 0xc0400000 60b5b0 kernel 2 1 0xc0a0c000 30150 iwi_bss.ko 3 1 0xc0a3d000 2f2b0 iwi_ibss.ko 4 1 0xc0a6d000 6b39c acpi.ko 5 1 0xc7345000 2000 aout.ko This is in 7.0 long time..... From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 21:27:12 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5D1C316A406 for ; Wed, 20 Feb 2008 21:27:12 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.171]) by mx1.freebsd.org (Postfix) with ESMTP id 2ADE513C469 for ; Wed, 20 Feb 2008 21:27:12 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: by wf-out-1314.google.com with SMTP id 25so788682wfa.7 for ; Wed, 20 Feb 2008 13:27:12 -0800 (PST) Received: by 10.142.178.13 with SMTP id a13mr6966316wff.24.1203542831982; Wed, 20 Feb 2008 13:27:11 -0800 (PST) Received: from scorpio ( [67.189.206.211]) by mx.google.com with ESMTPS id 5sm10710954wrh.6.2008.02.20.13.27.10 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 20 Feb 2008 13:27:11 -0800 (PST) Date: Wed, 20 Feb 2008 16:27:03 -0500 From: Gerard To: freebsd-ports@freebsd.org Message-ID: <20080220162703.25bf8aeb@scorpio> In-Reply-To: <47BC385C.3020907@commit.it> References: <47BC385C.3020907@commit.it> Organization: seibercom.net X-Mailer: Claws Mail 3.3.0 (GTK+ 2.12.8; i386-portbld-freebsd6.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q User-Agent: Claws Mail 3.3.0 Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/pBd+58h_MDoVgHiUGwcksqJ"; protocol="application/pgp-signature"; micalg=PGP-SHA1 Subject: Re: I've started to hate portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 21:27:12 -0000 --Sig_/pBd+58h_MDoVgHiUGwcksqJ Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Wed, 20 Feb 2008 15:25:32 +0100 Angelo Turetta wrote: > Every new version has such *evident* regressions! >=20 > Beside needlessly repackaging ports that fail build when doing "-a > -p" (obviously non repeatable by the developers), and sometimes > failing to reinstall a package if the install phase fails (also non > reproducible, but happening nonetheless in production servers). >=20 > Now, since the last upgrade, I cannot use -R if there's a port with > an unknown origin. >=20 > Look: >=20 > [root@mail]# portversion -vL=3D > openldap-client-2.3.40 < needs updating (port has 2.3.41) > p5-Mail-IMAPClient-2.2.9 < [held] needs updating (port has 3.04) > p5-PathTools-3.2700 < needs updating (port has 3.2701) > p5-Socket6-0.19 < needs updating (port has 0.20) > p5-Test-Harness-3.07 < needs updating (port has 3.09) > squid-2.5.14_4 ? [held] error - origin not found > squirrelmail-compatibility-plugin-2.0.9_1 < needs updating (port > has 2.0.10) >=20 > [root@mail]# portupgrade -aRp > ** There are errors in a meta info for squid-2.5.14_4 > ** Run 'pkgdb -F' to interactively fix them. >=20 > Of course pkgdb -F asks me to delete squid-2.5.14_4. I also tried to > add it to HOLD_PKGS in pkgtools.conf, no change. I have had a similar experience with portupgrade from time to time. I made sure I had no reference to it in pkgtools.conf and when I ran pkgdb -F, actually pkgdb -Ffuv, I would choose to delete the entry if I could not get it set correctly. Thereafter, running "portupgrade -apRr" usually worked without any snags. You can always use: "portmanager -u -l -p -bu" to get hard to fix ports working again. At least it has worked for me in the past. Of course, you should run 'pkgdb -Ffu' to insure that portupgrade will operate correctly the next time you invoke it. Anyway, that is my 2=A2. --=20 Gerard gerard@seibercom.net Everybody has something to conceal. Humphrey Bogart --Sig_/pBd+58h_MDoVgHiUGwcksqJ Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iEYEARECAAYFAke8mygACgkQ6DWTaTcTwMlQHwCgyXldF8UyKvPyrUCdrInZztMZ Um0An0I2hgBgSK6KGN301W7nH+hnIbYr =UH+g -----END PGP SIGNATURE----- --Sig_/pBd+58h_MDoVgHiUGwcksqJ-- From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 22:14:11 2008 Return-Path: Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BB8416A400 for ; Wed, 20 Feb 2008 22:14:11 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from raven.customer.vol.cz (raven.customer.vol.cz [195.250.144.108]) by mx1.freebsd.org (Postfix) with ESMTP id C145A13C442 for ; Wed, 20 Feb 2008 22:14:10 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from [192.168.0.23] (rb5dg130.net.upc.cz [89.176.238.130]) (authenticated bits=0) by raven.customer.vol.cz (8.14.1/8.14.1) with ESMTP id m1KME2nr047179; Wed, 20 Feb 2008 23:14:05 +0100 (CET) (envelope-from pav@FreeBSD.org) From: Pav Lucistnik To: James In-Reply-To: References: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-r1TK7v4Ts+AFgGVrWaNU" Date: Wed, 20 Feb 2008 23:14:02 +0100 Message-Id: <1203545642.95757.24.camel@ikaros.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.12.3 FreeBSD GNOME Team Port X-Spam-Score: -2.547 () AWL,BAYES_00 X-Scanned-By: MIMEDefang 2.63 on 195.250.144.108 X-Milter: Spamilter (Reciever: raven.customer.vol.cz; Sender-ip: 89.176.238.130; Sender-helo: [192.168.0.23]; ) Cc: FreeBSD-ports Subject: Re: Portupgrade not running get_notinstalled_depends (2.4.3_1, 2 vs 2.4.3_2, 2) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 22:14:11 -0000 --=-r1TK7v4Ts+AFgGVrWaNU Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable James p=ED=B9e v st 20. 02. 2008 v 09:32 -0600: > hihi. I was wondering what sort of problems the following change to > portupgrade was solving: >=20 > -------------------------------------------------------------------------= - >=20 > sem 2008-02-11 16:17:39 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > ports-mgmt/portupgrade Makefile > ports-mgmt/portupgrade/files patch-bin-portupgrade > Log: > - Remove code that gather not installed depends. It makes more problems > than solves. >=20 > Discussed with: pav >=20 > Revision Changes Path > 1.249 +1 -1 ports/ports-mgmt/portupgrade/Makefile > 1.13 +13 -3 ports/ports-mgmt/portupgrade/files/patch-bin-portu= pgrade >=20 > -------------------------------------------------------------------------= - >=20 > It seems to break ALT_PKGDEP processing during a portupgrade run > because alt_dep happens in get_notinstalled_depends. >=20 > For example, in my tests, if I have an alt-dep set for a package and I > install a port that depends on that package it'll still install the > original package rather than my alt-dep. It was installing dependent ports that does not needed to be getting installed. To be more precise, a build dependency of already up-to-date port in a dependency chain of an outdated port. --=20 Pav Lucistnik See file. Click file. Get file. --=-r1TK7v4Ts+AFgGVrWaNU Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?UTF-8?Q?digit=C3=A1ln=C4=9B?= =?ISO-8859-1?Q?_podepsan=E1?= =?UTF-8?Q?_=C4=8D=C3=A1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iEYEABECAAYFAke8pioACgkQntdYP8FOsoLu/QCeMxnxDeatuVX/SS6JQriUHxcr xTMAoMszNp21RfNy8k5mlfGJF5I9UYHY =cYKm -----END PGP SIGNATURE----- --=-r1TK7v4Ts+AFgGVrWaNU-- From owner-freebsd-ports@FreeBSD.ORG Wed Feb 20 22:47:10 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9F80416A403 for ; Wed, 20 Feb 2008 22:47:10 +0000 (UTC) (envelope-from jamebus@gmail.com) Received: from hs-out-0708.google.com (hs-out-0708.google.com [64.233.178.246]) by mx1.freebsd.org (Postfix) with ESMTP id 345F913C469 for ; Wed, 20 Feb 2008 22:47:09 +0000 (UTC) (envelope-from jamebus@gmail.com) Received: by hs-out-0708.google.com with SMTP id h53so2341279hsh.11 for ; Wed, 20 Feb 2008 14:47:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; bh=lQmq5DXY7EV2V702TVAoQV92ObOQIN5mVvmoQ1b6K8o=; b=lCddpGTgoUrCk9rGfxbnGn9LTs4DT6qE+JkD+Ibx7ZKo/6kR5i7KlUA3ZW1Otz8PIYL3bAYeTV3SYp0NT3Sc2hKjMNRyh7szQsckwQf3omvRMpFKgEODFWnkIYeCASmiRCZuX0nxC2vmnXT0XZbFZdAwlrwOOoOAbYpthsoMyrU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=jlAc5FvsujCcE3yj1sdtQQfQ+zRa0U5n89nGNREA/q4DsHQjIa0QtipskWCSeAL3vCFMy170Svg6Q1Dhx8xx27cdnsDL8R1R9xhGujwFFeFBfS/HL9cbhz9bIqtAL4yISPqTuydedBT2VPGdpV39dSilLxWSA0JTvcyY+FOPCxA= Received: by 10.100.143.12 with SMTP id q12mr18311334and.82.1203547629174; Wed, 20 Feb 2008 14:47:09 -0800 (PST) Received: by 10.100.168.10 with HTTP; Wed, 20 Feb 2008 14:47:09 -0800 (PST) Message-ID: Date: Wed, 20 Feb 2008 16:47:09 -0600 From: James Sender: jamebus@gmail.com To: pav@freebsd.org In-Reply-To: <1203545642.95757.24.camel@ikaros.oook.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1203545642.95757.24.camel@ikaros.oook.cz> X-Google-Sender-Auth: a2d89888e0dbd331 Cc: FreeBSD-ports Subject: Re: Portupgrade not running get_notinstalled_depends (2.4.3_1, 2 vs 2.4.3_2, 2) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 22:47:10 -0000 2008/2/20 Pav Lucistnik : > It was installing dependent ports that does not needed to be getting > installed. To be more precise, a build dependency of already > up-to-date port in a dependency chain of an outdated port. I see. Great. Thanks for the information, Pav. -- James. From owner-freebsd-ports@FreeBSD.ORG Thu Feb 21 11:25:33 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E855816A401; Thu, 21 Feb 2008 11:25:33 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1131B13C442; Thu, 21 Feb 2008 11:25:30 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <47BD5FA7.3040204@FreeBSD.org> Date: Thu, 21 Feb 2008 12:25:27 +0100 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.9 (Macintosh/20071031) MIME-Version: 1.0 To: peter bird References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: jylefort@FreeBSD.org, ports@FreeBSD.org Subject: Re: FreeBSD Port: timeseal-1.0 - Bad system call X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2008 11:25:34 -0000 peter bird wrote: > Please can you help with this? > > pulsarity# uname -a > FreeBSD pulsarity.demax.sk 7.0-RC1 FreeBSD 7.0-RC1 #1: Wed Feb 6 11:45:51 > CET 2008 bird@pulsarity.demax.sk:/usr/obj/usr/src/sys/PULS i386 > > pulsarity# timeseal > Bad system call Use ktrace to determine what the syscall is. Kris From owner-freebsd-ports@FreeBSD.ORG Thu Feb 21 15:54:18 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E92B716A401 for ; Thu, 21 Feb 2008 15:54:18 +0000 (UTC) (envelope-from comperr@gmail.com) Received: from wr-out-0708.google.com (wr-out-0708.google.com [64.233.184.251]) by mx1.freebsd.org (Postfix) with ESMTP id 8E59113C461 for ; Thu, 21 Feb 2008 15:54:18 +0000 (UTC) (envelope-from comperr@gmail.com) Received: by wr-out-0708.google.com with SMTP id 56so2760160wra.3 for ; Thu, 21 Feb 2008 07:54:17 -0800 (PST) MIME-Version: 1.0 Message-ID: Date: Thu, 21 Feb 2008 07:43:32 -0800 (PST) Received: by 10.100.143.12 with SMTP id q12mr278484and.19.1203608612427; Thu, 21 Feb 2008 07:43:32 -0800 (PST) X-IP: 207.168.160.116 User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727),gzip(gfe),gzip(gfe) From: comperr To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Weird portlint errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2008 15:54:19 -0000 I am working on a new port for pastebinit (command line pastebin) and when I run portlint I get a weird error that my portname and such don't exist and there are nion comments in the comment part - but I know these error are wrong. From owner-freebsd-ports@FreeBSD.ORG Thu Feb 21 16:00:39 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9648A16A400 for ; Thu, 21 Feb 2008 16:00:39 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net (cl-162.ewr-01.us.sixxs.net [IPv6:2001:4830:1200:a1::2]) by mx1.freebsd.org (Postfix) with ESMTP id 228D013C465 for ; Thu, 21 Feb 2008 16:00:38 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net (localhost [127.0.0.1]) by lor.one-eyed-alien.net (8.14.1/8.13.8) with ESMTP id m1LG0csR012714; Thu, 21 Feb 2008 10:00:38 -0600 (CST) (envelope-from brooks@lor.one-eyed-alien.net) Received: (from brooks@localhost) by lor.one-eyed-alien.net (8.14.1/8.13.8/Submit) id m1LG0cO3012713; Thu, 21 Feb 2008 10:00:38 -0600 (CST) (envelope-from brooks) Date: Thu, 21 Feb 2008 10:00:37 -0600 From: Brooks Davis To: comperr Message-ID: <20080221160037.GC12023@lor.one-eyed-alien.net> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lCAWRPmW1mITcIfM" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.16 (2007-06-09) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (lor.one-eyed-alien.net [127.0.0.1]); Thu, 21 Feb 2008 10:00:38 -0600 (CST) Cc: freebsd-ports@freebsd.org Subject: Re: Weird portlint errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2008 16:00:39 -0000 --lCAWRPmW1mITcIfM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Feb 21, 2008 at 07:43:32AM -0800, comperr wrote: > I am working on a new port for pastebinit (command line pastebin) and > when I run portlint I get a weird error that my portname and such > don't exist and there are nion comments in the comment part - but I > know these error are wrong. Please provide at least the actual errors and preferably the port skeleton as well. -- Brooks --lCAWRPmW1mITcIfM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFHvaAlXY6L6fI4GtQRAj0QAJ9lNG+Ev/0u0fgTxLIEE1lhA3xoiwCfaWa5 lJA20ZqS3UJ/bUB0OP+j+Ug= =2cKB -----END PGP SIGNATURE----- --lCAWRPmW1mITcIfM-- From owner-freebsd-ports@FreeBSD.ORG Thu Feb 21 22:30:23 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8750216A402 for ; Thu, 21 Feb 2008 22:30:23 +0000 (UTC) (envelope-from Comperr.Extra@gmail.com) Received: from yw-out-2122.google.com (yw-out-2122.google.com [74.125.46.24]) by mx1.freebsd.org (Postfix) with ESMTP id E283013C467 for ; Thu, 21 Feb 2008 22:30:22 +0000 (UTC) (envelope-from Comperr.Extra@gmail.com) Received: by yw-out-2122.google.com with SMTP id 8so2318523yws.18 for ; Thu, 21 Feb 2008 14:30:20 -0800 (PST) MIME-Version: 1.0 Message-ID: <532978dc-c74f-4417-b5b8-5278443676eb@q70g2000hsb.googlegroups.com> Date: Thu, 21 Feb 2008 14:19:14 -0800 (PST) Received: by 10.100.141.5 with SMTP id o5mr302123and.11.1203632354319; Thu, 21 Feb 2008 14:19:14 -0800 (PST) In-Reply-To: <20080221160037.GC12023@lor.one-eyed-alien.net> X-IP: 24.45.43.202 References: <20080221160037.GC12023@lor.one-eyed-alien.net> User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.12) Gecko/20080201 FreeBSD/amd64 Firefox/2.0.0.12,gzip(gfe),gzip(gfe) From: comperr To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: Weird portlint errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2008 22:30:23 -0000 http://groups.google.com/group/ml-freebsd-ports/files tmp is portlint >tmp 2>&1 Makefile is the makefile I'm having errors with. On Feb 21, 11:00 am, Brooks Davis wrote: > On Thu, Feb 21, 2008 at 07:43:32AM -0800, comperr wrote: > > I am working on a new port for pastebinit (command line pastebin) and > > when I run portlint I get a weird error that my portname and such > > don't exist and there are nion comments in the comment part - but I > > know these error are wrong. > > Please provide at least the actual errors and preferably the port > skeleton as well. > > -- Brooks > > application_pgp-signature_part > 1KDownload From owner-freebsd-ports@FreeBSD.ORG Thu Feb 21 22:38:05 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1B4C16A400 for ; Thu, 21 Feb 2008 22:38:05 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net (cl-162.ewr-01.us.sixxs.net [IPv6:2001:4830:1200:a1::2]) by mx1.freebsd.org (Postfix) with ESMTP id 0B55D13C4D1 for ; Thu, 21 Feb 2008 22:38:04 +0000 (UTC) (envelope-from brooks@lor.one-eyed-alien.net) Received: from lor.one-eyed-alien.net (localhost [127.0.0.1]) by lor.one-eyed-alien.net (8.14.1/8.13.8) with ESMTP id m1LMc3Ab015917; Thu, 21 Feb 2008 16:38:03 -0600 (CST) (envelope-from brooks@lor.one-eyed-alien.net) Received: (from brooks@localhost) by lor.one-eyed-alien.net (8.14.1/8.13.8/Submit) id m1LMc33c015916; Thu, 21 Feb 2008 16:38:03 -0600 (CST) (envelope-from brooks) Date: Thu, 21 Feb 2008 16:38:03 -0600 From: Brooks Davis To: comperr Message-ID: <20080221223803.GA15824@lor.one-eyed-alien.net> References: <20080221160037.GC12023@lor.one-eyed-alien.net> <532978dc-c74f-4417-b5b8-5278443676eb@q70g2000hsb.googlegroups.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="MGYHOYXEY6WxJCY8" Content-Disposition: inline In-Reply-To: <532978dc-c74f-4417-b5b8-5278443676eb@q70g2000hsb.googlegroups.com> User-Agent: Mutt/1.5.16 (2007-06-09) X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (lor.one-eyed-alien.net [127.0.0.1]); Thu, 21 Feb 2008 16:38:04 -0600 (CST) Cc: freebsd-ports@freebsd.org Subject: Re: Weird portlint errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2008 22:38:05 -0000 --MGYHOYXEY6WxJCY8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Feb 21, 2008 at 02:19:14PM -0800, comperr wrote: > http://groups.google.com/group/ml-freebsd-ports/files > tmp is portlint >tmp 2>&1 > Makefile is the makefile I'm having errors with. The file contains bogus carrage returns, probably due to being exiting on a windows box. Please run dos2unix on it or recreate it in an appropriate editor. Then it will work. Also, please don't top-post when posting to freebsd-lists. -- Brooks >=20 > On Feb 21, 11:00 am, Brooks Davis wrote: > > On Thu, Feb 21, 2008 at 07:43:32AM -0800, comperr wrote: > > > I am working on a new port for pastebinit (command line pastebin) and > > > when I run portlint I get a weird error that my portname and such > > > don't exist and there are nion comments in the comment part - but I > > > know these error are wrong. > > > > Please provide at least the actual errors and preferably the port > > skeleton as well. > > > > -- Brooks > > > > application_pgp-signature_part > > 1KDownload > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" >=20 --MGYHOYXEY6WxJCY8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFHvf1KXY6L6fI4GtQRAquxAJ9WWpRIB6ZMmfajwSCcbIRdHDz+VACfdPCO 8TcL8tSQhLgZdMUBq14QZiU= =FtvY -----END PGP SIGNATURE----- --MGYHOYXEY6WxJCY8-- From owner-freebsd-ports@FreeBSD.ORG Thu Feb 21 23:09:57 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83BD816A403 for ; Thu, 21 Feb 2008 23:09:57 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from freebsd.alaskaparadise.com (freebsd.alaskaparadise.com [208.79.80.117]) by mx1.freebsd.org (Postfix) with ESMTP id 507D213C468 for ; Thu, 21 Feb 2008 23:09:57 +0000 (UTC) (envelope-from beech@freebsd.org) Received: from 137-42-178-69.gci.net (137-42-178-69.gci.net [69.178.42.137]) by freebsd.alaskaparadise.com (Postfix) with ESMTP id 96A4823835B4; Thu, 21 Feb 2008 23:09:56 +0000 (UTC) From: Beech Rintoul To: freebsd-ports@freebsd.org Date: Thu, 21 Feb 2008 14:09:47 -0900 User-Agent: KMail/1.9.7 References: <532978dc-c74f-4417-b5b8-5278443676eb@q70g2000hsb.googlegroups.com> <20080221223803.GA15824@lor.one-eyed-alien.net> In-Reply-To: <20080221223803.GA15824@lor.one-eyed-alien.net> X-Face: jC2w\k*Q1\0DA2Q0Eh&BrP/Rt2M,^2O#R07VoT98m*>miQF9%Bi9vy`F6cPjwEe?m,)=?utf-8?q?2=0A=09X=3FM=5C=3AOE9QgZ?="xT3/n3,3MJ7N=Cfkmi%f(w^~X"SUxn>; 27NO; C+)g[7J`$G*SN>{<=?utf-8?q?O=3Bg7=7C=0A=09o=7D=265A=5D4?=@7D`=Eb@Zs1Ln814?]|k@'bG=.Ca"[|8+_.OsNAo8!#?4u MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200802211409.51801.beech@freebsd.org> Cc: comperr , Brooks Davis Subject: Re: Weird portlint errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Beech Rintoul List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2008 23:09:57 -0000 On Thursday 21 February 2008, Brooks Davis said: > On Thu, Feb 21, 2008 at 02:19:14PM -0800, comperr wrote: > > http://groups.google.com/group/ml-freebsd-ports/files > > tmp is portlint >tmp 2>&1 > > Makefile is the makefile I'm having errors with. > > The file contains bogus carrage returns, probably due to being > exiting on a windows box. Please run dos2unix on it or recreate it > in an appropriate editor. Then it will work. > > Also, please don't top-post when posting to freebsd-lists. > > -- Brooks > I agree and additionally you can't use spaces after variable names, use tabs. The Makefile is full of spaces. Beech -- --------------------------------------------------------------------------------------- Beech Rintoul - FreeBSD Developer - beech@FreeBSD.org /"\ ASCII Ribbon Campaign | FreeBSD Since 4.x \ / - NO HTML/RTF in e-mail | http://www.freebsd.org X - NO Word docs in e-mail | Latest Release: / \ - http://www.FreeBSD.org/releases/6.3R/announce.html --------------------------------------------------------------------------------------- From owner-freebsd-ports@FreeBSD.ORG Thu Feb 21 23:15:53 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9881F16A406 for ; Thu, 21 Feb 2008 23:15:53 +0000 (UTC) (envelope-from comperr@gmail.com) Received: from wr-out-0708.google.com (wr-out-0708.google.com [64.233.184.247]) by mx1.freebsd.org (Postfix) with ESMTP id 4EC1913C45B for ; Thu, 21 Feb 2008 23:15:52 +0000 (UTC) (envelope-from comperr@gmail.com) Received: by wr-out-0708.google.com with SMTP id 56so348249wra.3 for ; Thu, 21 Feb 2008 15:15:52 -0800 (PST) MIME-Version: 1.0 Message-ID: <90b7d07f-fb95-4f3d-9630-f2ccf2e20511@h25g2000hsf.googlegroups.com> Date: Thu, 21 Feb 2008 15:15:52 -0800 (PST) Received: by 10.100.164.10 with SMTP id m10mr306497ane.3.1203635752194; Thu, 21 Feb 2008 15:15:52 -0800 (PST) In-Reply-To: <20080221223803.GA15824@lor.one-eyed-alien.net> X-IP: 24.45.43.202 References: <20080221160037.GC12023@lor.one-eyed-alien.net> <532978dc-c74f-4417-b5b8-5278443676eb@q70g2000hsb.googlegroups.com> <20080221223803.GA15824@lor.one-eyed-alien.net> User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.12) Gecko/20080201 FreeBSD/amd64 Firefox/2.0.0.12,gzip(gfe),gzip(gfe) From: comperr To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: Weird portlint errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2008 23:15:53 -0000 On Feb 21, 5:38 pm, Brooks Davis wrote: > On Thu, Feb 21, 2008 at 02:19:14PM -0800, comperr wrote: > >http://groups.google.com/group/ml-freebsd-ports/files > > tmp is portlint >tmp 2>&1 > > Makefile is the makefile I'm having errors with. > > The file contains bogus carrage returns, probably due to being exiting > on a windows box. Please run dos2unix on it or recreate it in an > appropriate editor. Then it will work. > > Also, please don't top-post when posting to freebsd-lists. > > -- Brooks > > > > > On Feb 21, 11:00 am, Brooks Davis wrote: > > > On Thu, Feb 21, 2008 at 07:43:32AM -0800, comperr wrote: > > > > I am working on a new port for pastebinit (command line pastebin) and > > > > when I run portlint I get a weird error that my portname and such > > > > don't exist and there are nion comments in the comment part - but I > > > > know these error are wrong. > > > > Please provide at least the actual errors and preferably the port > > > skeleton as well. > > > > -- Brooks > > > > application_pgp-signature_part > > > 1KDownload > > _______________________________________________ > > freebsd-po...@freebsd.org mailing list > >http://lists.freebsd.org/mailman/listinfo/freebsd-ports > > To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org" > > > > application_pgp-signature_part > 1KDownload Sorry - I changed the spaces to tabs - and it was originally created in freeBSD using the nano editor From owner-freebsd-ports@FreeBSD.ORG Thu Feb 21 23:21:23 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4E6A116A401 for ; Thu, 21 Feb 2008 23:21:23 +0000 (UTC) (envelope-from comperr@gmail.com) Received: from yw-out-2122.google.com (yw-out-2122.google.com [74.125.46.27]) by mx1.freebsd.org (Postfix) with ESMTP id 07DE513C447 for ; Thu, 21 Feb 2008 23:21:22 +0000 (UTC) (envelope-from comperr@gmail.com) Received: by yw-out-2122.google.com with SMTP id 8so2331675yws.18 for ; Thu, 21 Feb 2008 15:21:21 -0800 (PST) MIME-Version: 1.0 Message-ID: <75453cf3-1748-4b60-9f98-a499cc9f145f@d21g2000prf.googlegroups.com> Date: Thu, 21 Feb 2008 15:21:21 -0800 (PST) Received: by 10.141.195.18 with SMTP id x18mr437635rvp.8.1203636081557; Thu, 21 Feb 2008 15:21:21 -0800 (PST) In-Reply-To: <90b7d07f-fb95-4f3d-9630-f2ccf2e20511@h25g2000hsf.googlegroups.com> X-IP: 24.45.43.202 References: <20080221160037.GC12023@lor.one-eyed-alien.net> <532978dc-c74f-4417-b5b8-5278443676eb@q70g2000hsb.googlegroups.com> <20080221223803.GA15824@lor.one-eyed-alien.net> <90b7d07f-fb95-4f3d-9630-f2ccf2e20511@h25g2000hsf.googlegroups.com> User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.12) Gecko/20080201 FreeBSD/amd64 Firefox/2.0.0.12,gzip(gfe),gzip(gfe) From: comperr To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: Weird portlint errors X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Feb 2008 23:21:23 -0000 On Feb 21, 6:15 pm, comperr wrote: > On Feb 21, 5:38 pm, Brooks Davis wrote: > > > On Thu, Feb 21, 2008 at 02:19:14PM -0800, comperr wrote: > > >http://groups.google.com/group/ml-freebsd-ports/files > > > tmp is portlint >tmp 2>&1 > > > Makefile is the makefile I'm having errors with. > > > The file contains bogus carrage returns, probably due to being exiting > > on a windows box. Please run dos2unix on it or recreate it in an > > appropriate editor. Then it will work. > > > Also, please don't top-post when posting to freebsd-lists. > > > -- Brooks > > > > On Feb 21, 11:00 am, Brooks Davis wrote: > > > > On Thu, Feb 21, 2008 at 07:43:32AM -0800, comperr wrote: > > > > > I am working on a new port for pastebinit (command line pastebin) and > > > > > when I run portlint I get a weird error that my portname and such > > > > > don't exist and there are nion comments in the comment part - but I > > > > > know these error are wrong. > > > > > Please provide at least the actual errors and preferably the port > > > > skeleton as well. > > > > > -- Brooks > > > > > application_pgp-signature_part > > > > 1KDownload > > > _______________________________________________ > > > freebsd-po...@freebsd.org mailing list > > >http://lists.freebsd.org/mailman/listinfo/freebsd-ports > > > To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org" > > > application_pgp-signature_part > > 1KDownload > > Sorry - I changed the spaces to tabs - and it was originally created > in freeBSD using the nano editor > _______________________________________________ > freebsd-po...@freebsd.org mailing listhttp://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org" Thanks all - I fixed it - and it installs now :D From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 02:40:49 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 689C716A401; Fri, 22 Feb 2008 02:40:49 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: from chen.org.nz (chen.org.nz [202.89.146.5]) by mx1.freebsd.org (Postfix) with ESMTP id 2027813C4CC; Fri, 22 Feb 2008 02:40:49 +0000 (UTC) (envelope-from jonc@chen.org.nz) Received: by chen.org.nz (Postfix, from userid 1000) id CD36728494; Fri, 22 Feb 2008 15:40:47 +1300 (NZDT) Date: Fri, 22 Feb 2008 15:40:47 +1300 From: Jonathan Chen To: nemoliu@freebsd.org Message-ID: <20080222024047.GA16889@osiris.chen.org.nz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Cc: freebsd-ports@freebsd.org Subject: www/geronimo distinfo patch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 02:40:49 -0000 Hi, http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/120745 While the priority on this is low, would you mind taking 10 minutes to check it out and commit this? Cheers. -- Jonathan Chen ---------------------------------------------------------------------- "Opportunity does not knock, it presents itself when you beat down the door" - W.E. Channing From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 10:32:06 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D78E116A404; Fri, 22 Feb 2008 10:32:06 +0000 (UTC) (envelope-from bkoenig@alpha-tierchen.de) Received: from mx02.qsc.de (mx02.qsc.de [213.148.130.14]) by mx1.freebsd.org (Postfix) with ESMTP id 8921713C4E9; Fri, 22 Feb 2008 10:32:06 +0000 (UTC) (envelope-from bkoenig@alpha-tierchen.de) Received: from webmail.alpha-tierchen.de (port-212-202-40-215.dynamic.qsc.de [212.202.40.215]) by mx02.qsc.de (Postfix) with ESMTP id 9E2D016C039D; Fri, 22 Feb 2008 11:06:55 +0100 (CET) Received: from 192.168.1.2 (SquirrelMail authenticated user bkoenig) by webmail.alpha-tierchen.de with HTTP; Fri, 22 Feb 2008 11:06:54 +0100 (CET) Message-ID: <50287.192.168.1.2.1203674814.squirrel@webmail.alpha-tierchen.de> In-Reply-To: <47BD5FA7.3040204@FreeBSD.org> References: <47BD5FA7.3040204@FreeBSD.org> Date: Fri, 22 Feb 2008 11:06:54 +0100 (CET) From: =?iso-8859-1?Q?Bj=F6rn_K=F6nig?= To: "Kris Kennaway" User-Agent: SquirrelMail/1.4.13 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: jylefort@freebsd.org, ports@freebsd.org, peter bird Subject: Re: FreeBSD Port: timeseal-1.0 - Bad system call X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 10:32:06 -0000 Kris Kennaway wrote: > peter bird wrote: >> pulsarity# timeseal >> Bad system call > > Use ktrace to determine what the syscall is. It uses compat.sigaction. 1199 timeseal CALL compat.sigaction 1199 timeseal RET compat.sigaction -1 errno 78 Function not implemented Bjrn From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 16:36:23 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 552DA16A402 for ; Fri, 22 Feb 2008 16:36:23 +0000 (UTC) (envelope-from bt@turtle.freedns.us) Received: from turtle.freedns.us (netblock-66-159-221-76.dslextreme.com [66.159.221.76]) by mx1.freebsd.org (Postfix) with ESMTP id 2D63713C4EA for ; Fri, 22 Feb 2008 16:36:22 +0000 (UTC) (envelope-from bt@turtle.freedns.us) Received: from panda.turtle.freedns.us (panda.turtle.freedns.us [10.0.0.2]) by turtle.freedns.us (8.13.8/8.13.8) with ESMTP id m1MG5ieU058923 for ; Fri, 22 Feb 2008 08:05:44 -0800 (PST) (envelope-from bt@turtle.freedns.us) Message-ID: <47BEF2CE.6020705@turtle.freedns.us> Date: Fri, 22 Feb 2008 08:05:34 -0800 From: Igor Serikov User-Agent: Thunderbird 2.0.0.9 (X11/20080119) MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: New version while port is on the waiting list X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 16:36:23 -0000 Hello porters, I have submitted a new port. While it was sitting in the PR database - and it is still there - I produced a new version. What can/should I do? Regards, Igor. From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 17:01:45 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3533316A40A for ; Fri, 22 Feb 2008 17:01:45 +0000 (UTC) (envelope-from ml@t-b-o-h.net) Received: from vjofn.tucs-beachin-obx-house.com (vjofn-pt.tunnel.tserv1.fmt.ipv6.he.net [IPv6:2001:470:1f00:ffff::5e5]) by mx1.freebsd.org (Postfix) with ESMTP id EF8EA13C469 for ; Fri, 22 Feb 2008 17:01:44 +0000 (UTC) (envelope-from ml@t-b-o-h.net) Received: from himinbjorg.tucs-beachin-obx-house.com ([208.45.246.58]) (authenticated bits=0) by vjofn.tucs-beachin-obx-house.com (8.12.9/8.12.9) with ESMTP id m1MH1hJn094885 for ; Fri, 22 Feb 2008 12:01:44 -0500 (EST) Received: from himinbjorg.tucs-beachin-obx-house.com (localhost.tucs-beachin-obx-house.com [127.0.0.1]) by himinbjorg.tucs-beachin-obx-house.com (8.13.8/8.13.6) with ESMTP id m1MH1h23031498 for ; Fri, 22 Feb 2008 12:01:43 -0500 (EST) (envelope-from ml@t-b-o-h.net) Received: (from tbohml@localhost) by himinbjorg.tucs-beachin-obx-house.com (8.13.8/8.13.6/Submit) id m1MH1gjU031497 for freebsd-ports@freebsd.org; Fri, 22 Feb 2008 12:01:42 -0500 (EST) (envelope-from tbohml) From: "Tuc at T-B-O-H.NET" Message-Id: <200802221701.m1MH1gjU031497@himinbjorg.tucs-beachin-obx-house.com> To: freebsd-ports@freebsd.org Date: Fri, 22 Feb 2008 12:01:42 -0500 (EST) X-Mailer: ELM [version 2.5 PL8] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: portupgrade changed operation? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 17:01:45 -0000 Hi, Using "portupgrade 2.4.1 (2008/01/29)". I have 509 packages, and a 1/2 dozen in HOLD_PKG. I went to run it today, and oddly it started doing things like : [Gathering depends for textproc/php5-xml .... done] [Gathering depends for archivers/php5-zlib .. done] [Gathering depends for ports-mgmt/portupgrade-devel ..... done] [Gathering depends for net-mgmt/rancid ............. done] ruby-1.8.6,1 is in HOLD_PKG. Ignored. [Gathering depends for x11/xdm ................ done] [Gathering depends for x11/xterm ................... done] [Gathering depends for shells/zsh .. done] It didn't do it for all 509 packages though... The next thing it did was : ---> Skipping 'www/apache13' because a requisite port 'lang/perl5.8' failed (specify -k to force) But I *DO* want apache upgraded, even if I have perl5.8 in HOLD_PKG. It is behaving properly? Thanks, Tuc From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 17:10:30 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA8A216A413 for ; Fri, 22 Feb 2008 17:10:30 +0000 (UTC) (envelope-from freebsd-ports-local@be-well.ilk.org) Received: from be-well.ilk.org (dsl092-078-145.bos1.dsl.speakeasy.net [66.92.78.145]) by mx1.freebsd.org (Postfix) with ESMTP id 9486B13C4E3 for ; Fri, 22 Feb 2008 17:10:30 +0000 (UTC) (envelope-from freebsd-ports-local@be-well.ilk.org) Received: from Lowell-Desk.lan (Lowell-Desk.lan [172.30.250.6]) by be-well.ilk.org (Postfix) with ESMTP id DD02F2845C; Fri, 22 Feb 2008 11:51:12 -0500 (EST) Received: by Lowell-Desk.lan (Postfix, from userid 1147) id 66F321CCA9; Fri, 22 Feb 2008 11:51:12 -0500 (EST) To: Igor Serikov References: <47BEF2CE.6020705@turtle.freedns.us> From: Lowell Gilbert Date: Fri, 22 Feb 2008 11:51:12 -0500 In-Reply-To: <47BEF2CE.6020705@turtle.freedns.us> (Igor Serikov's message of "Fri\, 22 Feb 2008 08\:05\:34 -0800") Message-ID: <44y79d0wan.fsf@Lowell-Desk.lan> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: ports@FreeBSD.org Subject: Re: New version while port is on the waiting list X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 17:10:31 -0000 Igor Serikov writes: > Hello porters, > > I have submitted a new port. While it was sitting in the PR database - > and it is still there - I produced a new version. > What can/should I do? Just submit the new set of patches in a followup to the same PR. From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 17:13:58 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7DC616A404 for ; Fri, 22 Feb 2008 17:13:58 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from ik-out-1112.google.com (ik-out-1112.google.com [66.249.90.182]) by mx1.freebsd.org (Postfix) with ESMTP id 7DF3913C46A for ; Fri, 22 Feb 2008 17:13:58 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: by ik-out-1112.google.com with SMTP id c21so402255ika.3 for ; Fri, 22 Feb 2008 09:13:57 -0800 (PST) Received: by 10.143.37.20 with SMTP id p20mr148154wfj.236.1203700435554; Fri, 22 Feb 2008 09:13:55 -0800 (PST) Received: from scorpio ( [67.189.206.211]) by mx.google.com with ESMTPS id m29sm1831427wrm.37.2008.02.22.09.13.54 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 22 Feb 2008 09:13:54 -0800 (PST) Date: Fri, 22 Feb 2008 12:13:39 -0500 From: Gerard To: freebsd-ports@freebsd.org Message-ID: <20080222121339.1816328e@scorpio> In-Reply-To: <200802221701.m1MH1gjU031497@himinbjorg.tucs-beachin-obx-house.com> References: <200802221701.m1MH1gjU031497@himinbjorg.tucs-beachin-obx-house.com> Organization: seibercom.net X-Mailer: Claws Mail 3.3.0 (GTK+ 2.12.8; i386-portbld-freebsd6.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAGFBMVEX+/v7++v6YOTrq8PCcuIX989UvOSj++v0BNCbpAAAAB3RJTUUHsQwfFzs7RBhzUQAAAhJJREFUOI1dU8GOqzAMNKIoV1bvwD1i0ysqrHplIdBrVSX7ATSbd03VVvn9tQNtQy0hjAdn7LED4AAcPtWm9RV+MPSfxhBLx9ajd6X/ngB6/mTwnRSZua7i7Ca+0ctZKo4Qmz+JY13X6I3nFZBxIYW1PbgfQ5RP8g0XlltEWGf3cV03joYpRnFbvYDKbXjZlXyyhEZA4lI+cN3NaVXE4VKjSwTExO10eTEkkJVqIAD5z0nUBQJluQDRSQjcrBiHAJxZlAH5CUMBMC7OcJ4LMQNnxhZ1HYPscMc6J4UlWRMNwzOpCcAHKSICd1EDn83abdREIbXsHkD1OinP1aCUCOEVRaa1lMcvywUWdYgk13JQUpYNKmvXQ8Kw5ML9YI5h8SakctBc7E/IYuLhYd/zZIk+1gM1vNweQBvHE0j+oYah3sMqAytQYlZk6+ANaaawJdu3OFzYGMZ3iGpa3qMlq9ZH0VZTgrCtw/ngdYkEIIpSbP1bWQAdFdX9vocBdkH2qVjVmuMu3gI5rjs814EUdrCZgWlPaxZZ3RiLFUtr+ud0PXwp2dnQSNXgePt6AZpBj6UMJ7VQkzN4utVeaSW1Dhn/kblGrKeMvNGnzwX4zuEDarYz1KdPtR60Gul0Gued+515SJXhCsl+Tx/3kY/UDvicPll9mfu50t3tvQ/thZpJYgeuwdSKNJ6tCD98MCgoxLDaPxbwqqwPWaWiAAAAAElFTkSuQmCC X-Face: "\j?x](l|]4p?-1Bf@!wN<&p=$.}^k-HgL}cJKbQZ3r#Ar]\%U(#6}'?<3s7%(%(gxJxxcR nSNPNr*/^~StawWU9KDJ-CT0k$f#@t2^K&BS_f|?ZV/.7Q User-Agent: Claws Mail 3.3.0 Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/UPs.Tln1bHqCJHA6fmsxhnE"; protocol="application/pgp-signature"; micalg=PGP-SHA1 Subject: Re: portupgrade changed operation? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-ports@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 17:13:59 -0000 --Sig_/UPs.Tln1bHqCJHA6fmsxhnE Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Fri, 22 Feb 2008 12:01:42 -0500 (EST) "Tuc at T-B-O-H.NET" wrote: > ---> Skipping 'www/apache13' because a requisite port 'lang/perl5.8' > failed (specify -k to force) =20 >=20 > But I *DO* want apache upgraded, even if I have perl5.8 in > HOLD_PKG. >=20 > It is behaving properly? I believe it is. I am not quite sure why you have Perl on hold, however, why not do as the message indicated and use the '-k' switch. Personally, I would remove Perl, as well as Ruby from hold, but that is just me. --=20 Gerard gerard@seibercom.net There are few people more often in the wrong than those who cannot endure to be thought so. --Sig_/UPs.Tln1bHqCJHA6fmsxhnE Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iEYEARECAAYFAke/AsMACgkQ6DWTaTcTwMkCGACfeRHWa4Zd1vqnj20o00yg27Nf 4e0AoKIRppXfU/Ff3VnOuvAjBUPERsVt =3HZJ -----END PGP SIGNATURE----- --Sig_/UPs.Tln1bHqCJHA6fmsxhnE-- From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 17:23:31 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E89DE16A405 for ; Fri, 22 Feb 2008 17:23:31 +0000 (UTC) (envelope-from alejandro@varnet.biz) Received: from relay00.pair.com (relay00.pair.com [209.68.5.9]) by mx1.freebsd.org (Postfix) with SMTP id 872AE13C455 for ; Fri, 22 Feb 2008 17:23:31 +0000 (UTC) (envelope-from alejandro@varnet.biz) Received: (qmail 8101 invoked by uid 0); 22 Feb 2008 16:56:50 -0000 Received: from unknown (HELO deimos.mars.bsd) (unknown) by unknown with SMTP; 22 Feb 2008 16:56:50 -0000 X-pair-Authenticated: 200.127.53.53 Date: Fri, 22 Feb 2008 14:56:39 -0300 From: Alejandro Pulver To: Igor Serikov Message-ID: <20080222145639.3b89e3bc@deimos.mars.bsd> In-Reply-To: <47BEF2CE.6020705@turtle.freedns.us> References: <47BEF2CE.6020705@turtle.freedns.us> X-Mailer: Claws Mail 3.3.0 (GTK+ 2.12.8; i386-portbld-freebsd6.3) Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/f/NGqJiqogpBW.Diw_fEZCB"; protocol="application/pgp-signature"; micalg=PGP-SHA1 Cc: ports@FreeBSD.org Subject: Re: New version while port is on the waiting list X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 17:23:32 -0000 --Sig_/f/NGqJiqogpBW.Diw_fEZCB Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Fri, 22 Feb 2008 08:05:34 -0800 Igor Serikov wrote: > Hello porters, >=20 > I have submitted a new port. While it was sitting in the PR database -=20 > and it is still there - I produced a new version. > What can/should I do? >=20 > Regards, > Igor. Send the new .shar (or a .diff to the previous if you want, but it leads to more complications for the case of a new port) as a follow-up (reply the notification e-mail from GNATS to bug-followup@FreeBSD.org including the new .shar). Best Regards, Ale --Sig_/f/NGqJiqogpBW.Diw_fEZCB Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iEYEARECAAYFAke/DNcACgkQiV05EpRcP2GIegCfdXU/wwfnOBEnWdgJSs2AJiQH ZRQAoN02r+18IkUdzoBvfM0Y0gTg+PRk =cLcp -----END PGP SIGNATURE----- --Sig_/f/NGqJiqogpBW.Diw_fEZCB-- From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 17:40:29 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2289B16A407 for ; Fri, 22 Feb 2008 17:40:29 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from cpanel03.rubas-s03.net (cpanel03.rubas-s03.net [195.182.222.73]) by mx1.freebsd.org (Postfix) with ESMTP id D965113C468 for ; Fri, 22 Feb 2008 17:40:28 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from 80-218-191-236.dclient.hispeed.ch ([80.218.191.236] helo=gahrtop.localhost) by cpanel03.rubas-s03.net with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1JSaws-0007Ih-RX; Fri, 22 Feb 2008 17:40:34 +0100 Message-ID: <47BEFAEC.9070800@FreeBSD.org> Date: Fri, 22 Feb 2008 17:40:12 +0100 From: Pietro Cerutti Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.9 (X11/20080208) MIME-Version: 1.0 To: Igor Serikov References: <47BEF2CE.6020705@turtle.freedns.us> In-Reply-To: <47BEF2CE.6020705@turtle.freedns.us> X-Enigmail-Version: 0.95.5 OpenPGP: id=9571F78E; url=http://gahr.ch/pgp/ Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - cpanel03.rubas-s03.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - FreeBSD.org X-Source: X-Source-Args: X-Source-Dir: Cc: freebsd ports Subject: Re: New version while port is on the waiting list X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 17:40:29 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Igor Serikov wrote: > Hello porters, Hello, > > I have submitted a new port. While it was sitting in the PR database - > and it is still there - I produced a new version. > What can/should I do? Submit a followup with the new diff/shar Have a look at the bottom of the page where your PR is. There's a "Submit Followup" e-mail link. > > Regards, Thanks, > Igor. - -- Pietro Cerutti gahr@FreeBSD.org PGP Public Key: http://gahr.ch/pgp -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iEYEAREKAAYFAke++usACgkQwMJqmJVx947PRwCfeVu4A+BzTsujYVNk5RoPB4R3 kf4An3sAg6roBk7RCEcfaSo/KwUMVVJy =UvZI -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 18:15:51 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0D82E16A400 for ; Fri, 22 Feb 2008 18:15:51 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from srvbsdsmt002.uct.ac.za (srvbsdsmt002.uct.ac.za [137.158.153.104]) by mx1.freebsd.org (Postfix) with ESMTP id ABFAA13C448 for ; Fri, 22 Feb 2008 18:15:50 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from mail.uct.ac.za ([137.158.153.100]) by srvbsdsmt002.uct.ac.za with esmtp (Exim 4.63 (FreeBSD)) (envelope-from ) id 1JSbb7-000NXT-GV for ports@freebsd.org; Fri, 22 Feb 2008 19:22:09 +0200 Received: from lhc.phy.uct.ac.za ([137.158.92.134]) by mail.uct.ac.za with esmtp (Exim 4.44 (FreeBSD)) id 1JSbb6-000Jfe-2i for ports@freebsd.org; Fri, 22 Feb 2008 19:22:08 +0200 Received: from lordcow by lhc.phy.uct.ac.za with local (Exim 4.68) (envelope-from ) id 1JSbb8-00014O-9j for ports@freebsd.org; Fri, 22 Feb 2008 19:22:10 +0200 Date: Fri, 22 Feb 2008 19:22:10 +0200 From: gareth To: ports@freebsd.org Message-ID: <20080222172210.GA31869@lordcow.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.17+20080114 (2008-01-14) Cc: Subject: caching problems X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 18:15:51 -0000 hey guys, our proxy is caching extremely old copies of the ports index and portaudit databases from freebsd.org. our admins claim that they cache the following files i need normally: http://www.FreeBSD.org/ports/auditfile.tbz http://www.FreeBSD.org/ports/INDEX-6.bz2 since they have no no-cache pragma directives, and our admins won't budge on their 'policy'. is the freebsd site breaking standards in this way? is it feasible to add the directives? if not my solution is to mirror the files elsewhere and specify this mirror - for portaudit i see you can specify it in /usr/local/etc/portaudit.conf, but i can't see where to specify an alternate url for 'portsdb -F' to use? From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 18:23:30 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 031B916A400 for ; Fri, 22 Feb 2008 18:23:30 +0000 (UTC) (envelope-from jamebus@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by mx1.freebsd.org (Postfix) with ESMTP id 73ED513C4F4 for ; Fri, 22 Feb 2008 18:23:29 +0000 (UTC) (envelope-from jamebus@gmail.com) Received: by wr-out-0506.google.com with SMTP id 68so787198wri.3 for ; Fri, 22 Feb 2008 10:23:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; bh=UgLRehg3+p/LcLzTHgiLRwsjyoe7uMVXOqvSf9ROAqc=; b=VvsyeYpXUV9f1lkVEJFfPuCSMSf2iwQhiFbMZrTYmPJB0kTB5E9BInc8tuem7welv3AxxGcmc4cpIsBJJ00IYeKoIQrq+DuSdTsQ+zFRcZ0vYhiWBjZIJHjVmOnBEd38i6Ms+nBauO9KD/nweLTw/kyZIRGW78D1k/qrm8xTwic= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:sender:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=SkfqZPvajNHwzP2PKNWS+MrkAS5tt6qqL7Ajp6lsblOxwbNVZN90skXUG3BNtmZnQgFNgEwChNyAlxCfyiv7ER6+ffsXOpT6Ff3bvB65co/8cm0usLUjSpaQfxqeWKFPAyh4oGq6ilCblxaRyYHOazaGmqQo67nOmOQNh/J1SM4= Received: by 10.141.87.13 with SMTP id p13mr220930rvl.55.1203704606802; Fri, 22 Feb 2008 10:23:26 -0800 (PST) Received: by 10.140.186.13 with HTTP; Fri, 22 Feb 2008 10:23:26 -0800 (PST) Message-ID: Date: Fri, 22 Feb 2008 12:23:26 -0600 From: James Sender: jamebus@gmail.com To: FreeBSD-ports In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: X-Google-Sender-Auth: 249b2ab1ffc8c5f0 Subject: Re: Portupgrade not running get_notinstalled_depends (2.4.3_1, 2 vs 2.4.3_2, 2) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 18:23:30 -0000 On Wed, Feb 20, 2008 at 9:32 AM, James wrote: > For example, in my tests, if I have an alt-dep set for a package and > I install a port that depends on that package it'll still install > the original package rather than my alt-dep. In case anyone's interested or running into this too I have an update to the issue I ran into here. As it turns out I was off base about the cause of the problem. It wasn't the change instituted in version 2.4.3_2,2 at all. That version fixes a problem when upgrading ports, not installing them. I was running into problems installing ports. In one of my tests I was installing the following ports in one portinstall session. databases/mysql50-client databases/mysql50-server databases/mysql50-scripts databases/mytop The problem I ran into was with databases/p5-DBD-mysql50 vs. databases/p5-DBD-mysql. databases/mysql50-scripts depends on databases/p5-DBD-mysql50 and databases/mytop depends on databases/p5-DBD-mysql. portinstall tries to install both and fails because they conflict. I figured I could use ALT_PKGDEP to help me here. I used this: 'databases/p5-DBD-mysql' => 'databases/p5-DBD-mysql50', But the install was still failing. After reading the code and working in irb a bit I traced the problem down to the way alt_dep (used when resolving alt-deps) works. Turns out it only works when the port involved in the alternate dependency is already installed (because it uses pkgdb methods -- if the port isn't installed pkgdb has nothing to say). In other words the alternate dependency will not take effect if the port involved is being installed in the same session that the alternate dependency is being used. I was able to work around my trouble by installing -client, -server, and -scripts first. Then installing mytop in another session. Viola, the alt-dep works because the port involved in the alt-dep already present. If anyone considers this a bug I'd be happy to help work on a correction. Heck I may do it anyhow. HTH! -- James. From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 20:42:08 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BBC516A407 for ; Fri, 22 Feb 2008 20:42:08 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mx.critical.ch (mx.critical.ch [62.2.45.171]) by mx1.freebsd.org (Postfix) with ESMTP id EBA7F13C467 for ; Fri, 22 Feb 2008 20:42:07 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from alaska.critical.ch (84-72-48-221.dclient.hispeed.ch [84.72.48.221]) (authenticated bits=0) by mx.critical.ch (8.14.2/8.14.2/critical-1.0) with ESMTP id m1MKF8uJ077496; Fri, 22 Feb 2008 21:15:09 +0100 (CET) (envelope-from ehaupt@FreeBSD.org) Received: from beaver (beaver.home.critical.ch [192.168.1.3]) by alaska.home.critical.ch (8.14.2/8.14.2) with SMTP id m1MKF6fH046664; Fri, 22 Feb 2008 21:15:08 +0100 (CET) (envelope-from ehaupt@FreeBSD.org) Date: Fri, 22 Feb 2008 21:17:42 +0100 From: Emanuel Haupt To: gareth Message-Id: <20080222211742.ed8a1c17.ehaupt@FreeBSD.org> In-Reply-To: <20080222172210.GA31869@lordcow.org> References: <20080222172210.GA31869@lordcow.org> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.8; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (mx.critical.ch [62.2.45.171]); Fri, 22 Feb 2008 21:15:09 +0100 (CET) X-Virus-Scanned: ClamAV 0.92.1/5938/Fri Feb 22 19:08:07 2008 on milkyway.critical.ch X-Virus-Status: Clean Cc: ports@FreeBSD.org Subject: Re: caching problems X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 20:42:08 -0000 > hey guys, our proxy is caching extremely old copies of the ports index > and portaudit databases from freebsd.org. our admins claim that they > cache the following files i need normally: > > http://www.FreeBSD.org/ports/auditfile.tbz > http://www.FreeBSD.org/ports/INDEX-6.bz2 > > since they have no no-cache pragma directives, and our admins won't > budge on their 'policy'. is the freebsd site breaking standards in > this way? is it feasible to add the directives? if not my solution > is to mirror the files elsewhere and specify this mirror - for > portaudit i see you can specify it in /usr/local/etc/portaudit.conf, > but i can't see where to specify an alternate url for 'portsdb -F' > to use? You could host the INDEX file on a mirror running a webserver on a non standard port. Then you could add something like this to /usr/local/etc/pkgtools.conf: ENV['MASTER_SITE_INDEX'] = "http://your.index.mirror.tld:81/" Although adjusting the cache policy seems more reasonable to me. Emanuel -- GnuPG key id: 0x90215DB9 Download: http://pgp.mit.edu:11371 Key fingerprint: 741B C70F 100B F360 0B52 E92D 5F01 7A86 9021 5DB9 From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 21:48:19 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41D9916A406 for ; Fri, 22 Feb 2008 21:48:19 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [91.103.162.4]) by mx1.freebsd.org (Postfix) with ESMTP id 0DE3F13C457 for ; Fri, 22 Feb 2008 21:48:18 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from localhost (localhost.codelab.cz [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id B2B5B19E02A for ; Fri, 22 Feb 2008 22:48:16 +0100 (CET) Received: from [192.168.1.2] (r5bb235.net.upc.cz [86.49.61.235]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTP id 9590419E027 for ; Fri, 22 Feb 2008 22:48:11 +0100 (CET) Message-ID: <47BF4327.2060505@quip.cz> Date: Fri, 22 Feb 2008 22:48:23 +0100 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.12) Gecko/20050915 X-Accept-Language: cz, cs, en, en-us MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: portmaster did not replace port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 21:48:19 -0000 Hi, I am trying to use portmaster to replace installed GnuPG 2 with GnuPG 1. portmaster -o security/gnupg1 gnupg-2.0.4 But it always ends with gnupg-2.0.4 re-installed again, so now I have both versions installed. Is it possible to use portmaster for this task? (gnupg-2.0.4 was misinstalled by portmaster as dependency of p5-Mail-SpamAssassin-3.2.4_2, but SpamAssassin can be used with prevously installed gnupg-1.4.8) Miroslav Lachman From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 22:17:04 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1A0116A474 for ; Fri, 22 Feb 2008 22:17:04 +0000 (UTC) (envelope-from fbsd06+TL=8887b65f@mlists.homeunix.com) Received: from turtle-out.mxes.net (turtle-out.mxes.net [216.86.168.191]) by mx1.freebsd.org (Postfix) with ESMTP id BEE8213C442 for ; Fri, 22 Feb 2008 22:17:04 +0000 (UTC) (envelope-from fbsd06+TL=8887b65f@mlists.homeunix.com) Received: from mxout-03.mxes.net (mxout-03.mxes.net [216.86.168.178]) by turtle-in.mxes.net (Postfix) with ESMTP id 22EEB16448D for ; Fri, 22 Feb 2008 16:59:43 -0500 (EST) Received: from gumby.homeunix.com. (unknown [87.81.140.128]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.mxes.net (Postfix) with ESMTP id A46B523E496 for ; Fri, 22 Feb 2008 16:59:41 -0500 (EST) Date: Fri, 22 Feb 2008 21:59:38 +0000 From: RW To: freebsd-ports@freebsd.org Message-ID: <20080222215938.554c9459@gumby.homeunix.com.> In-Reply-To: <20080222172210.GA31869@lordcow.org> References: <20080222172210.GA31869@lordcow.org> X-Mailer: Claws Mail 3.3.0 (GTK+ 2.12.8; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: caching problems X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 22:17:05 -0000 On Fri, 22 Feb 2008 19:22:10 +0200 gareth wrote: > hey guys, our proxy is caching extremely old copies of the ports index > and portaudit databases from freebsd.org. our admins claim that they > cache the following files i need normally: > > http://www.FreeBSD.org/ports/auditfile.tbz > http://www.FreeBSD.org/ports/INDEX-6.bz2 > > since they have no no-cache pragma directives, and our admins won't > budge on their 'policy'. is the freebsd site breaking standards in > this way? No, these these files *should* be cachable, but a properly configured cache shouldn't cache then for very long since their last-modified headers are usually very recent (and since they have that header they can be revalidated cheaply). You don't say how old "ancient" is, but bear in mind that the auditfile.tbz is only fetched every three days when it's done from periodic scripts. Have you tried using curl to prefetch the relevant files, IIRC it adds a header that asks for a refetch or revalidation. That may cause the cache to update its copy, depending on whether their policy complies with standards. From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 22:47:57 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D922816A404 for ; Fri, 22 Feb 2008 22:47:57 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx24.fluidhosting.com [204.14.89.7]) by mx1.freebsd.org (Postfix) with SMTP id 0BC9913C442 for ; Fri, 22 Feb 2008 22:47:56 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 4974 invoked by uid 399); 22 Feb 2008 22:47:55 -0000 Received: from localhost (HELO lap.dougb.net) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTP; 22 Feb 2008 22:47:55 -0000 X-Originating-IP: 127.0.0.1 Message-ID: <47BF5119.2060000@FreeBSD.org> Date: Fri, 22 Feb 2008 14:47:53 -0800 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0.0.9 (X11/20080126) MIME-Version: 1.0 To: Miroslav Lachman <000.fbsd@quip.cz> References: <47BF4327.2060505@quip.cz> In-Reply-To: <47BF4327.2060505@quip.cz> X-Enigmail-Version: 0.95.5 OpenPGP: id=D5B2F0FB Content-Type: multipart/mixed; boundary="------------020101030002090707090707" Cc: freebsd-ports@freebsd.org Subject: Re: portmaster did not replace port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 22:47:57 -0000 This is a multi-part message in MIME format. --------------020101030002090707090707 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Miroslav Lachman wrote: > Hi, > > I am trying to use portmaster to replace installed GnuPG 2 with GnuPG 1. > portmaster -o security/gnupg1 gnupg-2.0.4 > > But it always ends with gnupg-2.0.4 re-installed again, so now I have > both versions installed. Is it possible to use portmaster for this task? It certainly should be. :) I made a last-minute optimization in the "detect which port we're working on" code and while I special-cased the -o code in one place, I forgot to do it in the other, resulting in the behavior you're seeing. The attached patch should fix this up for you, I've tested it specifically with gnupg going from 2->1 and back again. Please let me know if this works for you, and I'll be committing a new version with this patch pretty much right away. Doug -- This .signature sanitized for your protection --------------020101030002090707090707 Content-Type: text/plain; name="pm-origin.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pm-origin.diff" --- portmaster 2008/01/30 01:40:33 2.24 +++ portmaster 2008/02/22 22:35:17 @@ -1769,7 +1769,7 @@ fi fi -if [ -n "$upg_port" ]; then +if [ -n "$upg_port" -a -z "$REPLACE_ORIGIN" ]; then portdir=`origin_from_pdb $upg_port` [ -n "$portdir" ] || fail "No ORIGIN in $pdb/$upg_port/+CONTENTS" elif [ -z "$portdir" ]; then --------------020101030002090707090707-- From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 23:06:03 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3121C16A404 for ; Fri, 22 Feb 2008 23:06:03 +0000 (UTC) (envelope-from danny@ricin.com) Received: from smtpq2.tilbu1.nb.home.nl (smtpq2.tilbu1.nb.home.nl [213.51.146.201]) by mx1.freebsd.org (Postfix) with ESMTP id EE8A313C43E for ; Fri, 22 Feb 2008 23:06:02 +0000 (UTC) (envelope-from danny@ricin.com) Received: from [213.51.146.188] (port=49008 helo=smtp3.tilbu1.nb.home.nl) by smtpq2.tilbu1.nb.home.nl with esmtp (Exim 4.60) (envelope-from ) id 1JSgxt-0007qQ-MC for freebsd-ports@freebsd.org; Sat, 23 Feb 2008 00:06:01 +0100 Received: from cp1228410-a.dbsch1.nb.home.nl ([84.27.217.164]:64722 helo=desktop.homenet) by smtp3.tilbu1.nb.home.nl with smtp (Exim 4.60) (envelope-from ) id 1JSgxt-0005Vh-63 for freebsd-ports@freebsd.org; Sat, 23 Feb 2008 00:06:01 +0100 Received: by desktop.homenet (sSMTP sendmail emulation); Sat, 23 Feb 2008 00:05:11 +0100 From: "Danny Pansters" To: freebsd-ports@freebsd.org Date: Sat, 23 Feb 2008 00:05:11 +0100 User-Agent: KMail/1.9.7 References: <47BEF2CE.6020705@turtle.freedns.us> In-Reply-To: <47BEF2CE.6020705@turtle.freedns.us> X-Face: (Zs+'ncTcchkOX|~t6{?Iii=O!G#WEK!+OD0|-F=i%1pvP5V_Sz4PaJC8o)=?utf-8?q?MiSnH/JMJFy=0A=09oBN-My?=, v":S7, (=?utf-8?q?mmkPm=27U=7BMgT+eM=2EBd=5Cp/P!dr=5DhOTXqpse21O!=25Ct=60SE=2EOodq?= =?utf-8?q?=5Dry=5E=23kU=5E=0A=09-?=GT.[8D}i$6P>=" =?utf-8?q?=23=0A=09*J+4d=7E?= MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200802230005.11430.danny@ricin.com> X-Spam-Score: 0.0 (/) Subject: Re: New version while port is on the waiting list X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 23:06:03 -0000 On Friday 22 February 2008 17:05:34 Igor Serikov wrote: > Hello porters, > > I have submitted a new port. While it was sitting in the PR database - > and it is still there - I produced a new version. > What can/should I do? > > Regards, > Igor. > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" It's easier for everyone to file a new PR and mention that it supersedes your old PR category/number Dan From owner-freebsd-ports@FreeBSD.ORG Fri Feb 22 23:52:48 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9AE2616A401; Fri, 22 Feb 2008 23:52:48 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from elsa.codelab.cz (elsa.codelab.cz [91.103.162.4]) by mx1.freebsd.org (Postfix) with ESMTP id 600DF13C46B; Fri, 22 Feb 2008 23:52:48 +0000 (UTC) (envelope-from 000.fbsd@quip.cz) Received: from localhost (localhost.codelab.cz [127.0.0.1]) by elsa.codelab.cz (Postfix) with ESMTP id 52EF219E02A; Sat, 23 Feb 2008 00:52:47 +0100 (CET) Received: from [192.168.1.2] (r5bb235.net.upc.cz [86.49.61.235]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by elsa.codelab.cz (Postfix) with ESMTP id 3E6B019E027; Sat, 23 Feb 2008 00:52:45 +0100 (CET) Message-ID: <47BF6058.7000903@quip.cz> Date: Sat, 23 Feb 2008 00:52:56 +0100 From: Miroslav Lachman <000.fbsd@quip.cz> User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.12) Gecko/20050915 X-Accept-Language: cz, cs, en, en-us MIME-Version: 1.0 To: Doug Barton References: <47BF4327.2060505@quip.cz> <47BF5119.2060000@FreeBSD.org> In-Reply-To: <47BF5119.2060000@FreeBSD.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: portmaster did not replace port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Feb 2008 23:52:48 -0000 Doug Barton wrote: > Miroslav Lachman wrote: > >>Hi, >> >>I am trying to use portmaster to replace installed GnuPG 2 with GnuPG 1. >>portmaster -o security/gnupg1 gnupg-2.0.4 >> >>But it always ends with gnupg-2.0.4 re-installed again, so now I have >>both versions installed. Is it possible to use portmaster for this task? > > > It certainly should be. :) I made a last-minute optimization in the > "detect which port we're working on" code and while I special-cased > the -o code in one place, I forgot to do it in the other, resulting in > the behavior you're seeing. The attached patch should fix this up for > you, I've tested it specifically with gnupg going from 2->1 and back > again. > > Please let me know if this works for you, and I'll be committing a new > version with this patch pretty much right away. ===>>> Upgrade of gnupg-2.0.4 to gnupg-1.4.8 complete Nice. Thank you for your quick response and fix! And one more question: devel/pth security/libassuan security/libksba were installed as gnupg-2 dependencies, now registered as inherited dependencies for SpamAssassin. Is there any "right" way to remove those libraries and dependency records from /var/db/pkg? # pkg_info -R pth-2.0.7 libassuan-1.0.4 libksba-1.0.2 Information for libassuan-1.0.4: Information for libksba-1.0.2: Required by: p5-Mail-SpamAssassin-3.2.4_2 Information for pth-2.0.7: Required by: p5-Mail-SpamAssassin-3.2.4_2 libassuan-1.0.4 Miroslav Lachman From owner-freebsd-ports@FreeBSD.ORG Sat Feb 23 06:17:40 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 752D116A402 for ; Sat, 23 Feb 2008 06:17:40 +0000 (UTC) (envelope-from dierk@blaxxtarz.de) Received: from smtprelay05.ispgateway.de (smtprelay05.ispgateway.de [80.67.18.43]) by mx1.freebsd.org (Postfix) with ESMTP id E9D8F13C442 for ; Sat, 23 Feb 2008 06:17:39 +0000 (UTC) (envelope-from dierk@blaxxtarz.de) Received: from [88.72.36.2] (helo=maxx.evangelion.free) by smtprelay05.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1JSnha-00081Y-2E for freebsd-ports@freebsd.org; Sat, 23 Feb 2008 07:17:38 +0100 Received: from [192.168.123.1] (helo=blaxxtarz.evangelion.free) by maxx.evangelion.free with esmtps (Exim 4.69 #0 (Unix)) id 1JSnge-0007qV-Gd for ; Sat, 23 Feb 2008 07:16:40 +0100 Received: from blaxxtarz.evangelion.free (localhost [127.0.0.1]) by blaxxtarz.evangelion.free (8.13.8/8.13.8) with ESMTP id m1N6GeZX012912 for ; Sat, 23 Feb 2008 07:16:40 +0100 (CET) (envelope-from dierk@blaxxtarz.evangelion.free) Received: (from dierk@localhost) by blaxxtarz.evangelion.free (8.13.8/8.13.8/Submit) id m1N6GeF4012911 for freebsd-ports@freebsd.org; Sat, 23 Feb 2008 07:16:40 +0100 (CET) (envelope-from dierk) Date: Sat, 23 Feb 2008 07:16:40 +0100 From: Dierk Sacher To: freebsd-ports Message-ID: <20080223061640.GA12414@blaxxtarz.evangelion.free> Mail-Followup-To: freebsd-ports References: <20080215135036.GA6988@blaxxtarz.evangelion.free> <20080216104809.GJ64299@server.vk2pj.dyndns.org> <47B84C42.40603@lissyara.su> <20080218041901.GA45835@blaxxtarz.evangelion.free> <20080220071201.GH51095@server.vk2pj.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080220071201.GH51095@server.vk2pj.dyndns.org> User-Agent: Mutt/1.4.2.3i X-Df-Sender: 799978 Subject: Re: obexftp - call for testers X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Feb 2008 06:17:40 -0000 Thank you very much for testing. As of the L6i failing: maybe it's just another UUID (like siemens and sharp - see the obexftp(1) -U ). But this is way beyond the scope of my attempt. Judging from the upstreams wiki at http://dev.zuckschwerdt.org/openobex/wiki/SupportedPhonesMotorola the L6i is just not on the list of supported devices. Zitiere Peter Jeremy vom Wed, Feb 20, 2008 at 06:12:01PM +1100: > On Mon, Feb 18, 2008 at 05:19:01AM +0100, Dierk Sacher wrote: > >(1) BD_ADDR in raw format (it's _not_ resolving literal device names) > >(2) the Channel (by using the -B option) > > OK. This works on my Motorola L6i but it seems that Motorola didn't > bother with the telecom/ nodes or capability support so obexftp can't > do anything that obexapp can't (unfortunately). > > turion% obexftp --bluetooth `bthost -b PeterPhone` --channel 9 -v -l picture > Connecting...failed: connect > Still trying to connect > Connecting...done > Receiving "picture"...| > > > > > > done > Disconnecting...done > turion% > > >One final note: my mobiles firmware obviously left the drawing table a > >bit, uhm, early. You may have to reset your bluetooth devices and/or the > >whole mobile (by removing batteries in my case :-() after doing some > >transfers. This is *not* a problem specific to obexftp. Its happening > >with a lot of other peers and usage scenarios too. > > I don't see that but usually have to execute commands multiple times for > the phone to acknowledge. > > -- > Peter Jeremy > Please excuse any delays as the result of my ISP's inability to implement > an MTA that is either RFC2821-compliant or matches their claimed behaviour. -- |----+----|----+----|----+----|----+----|----+----|----+----|----+----|--< GPG Fingerprint: D14C 12BB 37A6 6745 7F4F F420 9E59 D79E A492 2A96 GPG KeyID : A4922A96 +------------------------------------------------------------------------+ From owner-freebsd-ports@FreeBSD.ORG Sat Feb 23 06:21:40 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF30016A403 for ; Sat, 23 Feb 2008 06:21:40 +0000 (UTC) (envelope-from j.kelly.hays@gmail.com) Received: from wf-out-1314.google.com (wf-out-1314.google.com [209.85.200.174]) by mx1.freebsd.org (Postfix) with ESMTP id B0BDB13C455 for ; Sat, 23 Feb 2008 06:21:40 +0000 (UTC) (envelope-from j.kelly.hays@gmail.com) Received: by wf-out-1314.google.com with SMTP id 25so407295wfa.7 for ; Fri, 22 Feb 2008 22:21:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; bh=6NC/3cRG4Eo++NcUFmvWGl2bEUX5QAlGZxfx8GhDQpo=; b=gTDGJiV3PFVqOU0wHozHXRxailKLoqk/k3WzoM8k0A2SbONPun4Rd8gzemOpR/oeVjkjvWYYZRwsAmCFQZAwq9mbVz8LYkXbQIGDlOWaLwGO2QqGQ+Kr4A0a1wNfV/w+rg/yiUhhFU8ljfEZMGL+zPgHhPBbEIGlCNg24AKrGhw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:mime-version:content-type:content-transfer-encoding:content-disposition; b=amW3Dz/BEIlAe9oQ4OhoqkvxhYLAG+lTRifpBXt0VqVHPF0oOAXNu1VCESgrJVwx/urgx6lOPYoV4zX4kRKgZZ89qNHq75AzoRdUoZrU5DOQwa4pg9VZsb1Z1ZZIyLxaESHn7aXr1fB0V3rPZLff5Ky8HWiFdRtC4RZON8KpMQY= Received: by 10.142.211.10 with SMTP id j10mr12696wfg.202.1203746226818; Fri, 22 Feb 2008 21:57:06 -0800 (PST) Received: by 10.142.212.17 with HTTP; Fri, 22 Feb 2008 21:57:06 -0800 (PST) Message-ID: <4f615770802222157q5b2376dcg7d1862abbf7f8cfd@mail.gmail.com> Date: Fri, 22 Feb 2008 23:57:06 -0600 From: "Kelly Hays" To: shaun@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: ports@freebsd.org Subject: net-im/psi update plans? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Feb 2008 06:21:41 -0000 Hi, I was wondering what plans were in the works for net-im/psi version 0.11 and/or development snapshots of 0.12? I just looked at GNATS and found PR ports/120324. Any estimates when this might get committed? Thanks, Kelly Hays From owner-freebsd-ports@FreeBSD.ORG Sat Feb 23 06:27:40 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFE6216A401 for ; Sat, 23 Feb 2008 06:27:40 +0000 (UTC) (envelope-from dierk@blaxxtarz.de) Received: from smtprelay11.ispgateway.de (smtprelay11.ispgateway.de [80.67.29.28]) by mx1.freebsd.org (Postfix) with ESMTP id 4CA3B13C45D for ; Sat, 23 Feb 2008 06:27:40 +0000 (UTC) (envelope-from dierk@blaxxtarz.de) Received: from [88.72.36.2] (helo=maxx.evangelion.free) by smtprelay11.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1JSnrG-0008GY-6b for freebsd-ports@freebsd.org; Sat, 23 Feb 2008 07:27:38 +0100 Received: from [192.168.123.1] (helo=blaxxtarz.evangelion.free) by maxx.evangelion.free with esmtps (Exim 4.69 #0 (Unix)) id 1JSnqk-0007uy-Fv for ; Sat, 23 Feb 2008 07:27:06 +0100 Received: from blaxxtarz.evangelion.free (localhost [127.0.0.1]) by blaxxtarz.evangelion.free (8.13.8/8.13.8) with ESMTP id m1N6R6eG012947 for ; Sat, 23 Feb 2008 07:27:06 +0100 (CET) (envelope-from dierk@blaxxtarz.evangelion.free) Received: (from dierk@localhost) by blaxxtarz.evangelion.free (8.13.8/8.13.8/Submit) id m1N6R6vS012946 for freebsd-ports@freebsd.org; Sat, 23 Feb 2008 07:27:06 +0100 (CET) (envelope-from dierk) Date: Sat, 23 Feb 2008 07:27:06 +0100 From: Dierk Sacher To: freebsd-ports-mailinglist Message-ID: <20080223062706.GB12414@blaxxtarz.evangelion.free> Mail-Followup-To: freebsd-ports-mailinglist References: <47AEB6C8.1070907@gmx.net> <47AF4AF8.8040808@FreeBSD.org> <20080213072347.GA23253@nagual.pp.ru> <3131aa530802180507k25166102s19719688c43b356e@mail.gmail.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PEIAKu/WMn1b1Hv9" Content-Disposition: inline In-Reply-To: <3131aa530802180507k25166102s19719688c43b356e@mail.gmail.com> User-Agent: Mutt/1.4.2.3i X-Df-Sender: 799978 Subject: Re: TrueCrypt 5.0 - Built, short test result: Ok. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Feb 2008 06:27:40 -0000 --PEIAKu/WMn1b1Hv9 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Are you able to transfer let's say the content of /usr/local/bin to it? I'm still able to deadlock the whole vfs by doing something like that. Zitiere Olivier Cochard-Labbe vom Mon, Feb 18, 2008 at 02:07:38PM +0100: > Hi all, >=20 >=20 > > Port at http://www.triplefork.net/truecrypt.tgz has updated checksums. >=20 >=20 > I'm using it under FreeBSD 7.0 RC2 with a 1Gb file (created with a > previous Truecrypt release under Windows), and working on my OOo files on > this encrypted volume without problem. >=20 > Thanks for your works. >=20 > Olivier > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" --=20 |----+----|----+----|----+----|----+----|----+----|----+----|----+----|--< GPG Fingerprint: D14C 12BB 37A6 6745 7F4F F420 9E59 D79E A492 2A96 GPG KeyID : A4922A96 =20 +------------------------------------------------------------------------+ --PEIAKu/WMn1b1Hv9 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQFHv7y5nlnXnqSSKpYRAlJ7AJ9AzVWRCo4vXLwML0xfGEG78vdb/QCfboUj 54DsoFTSzGOR7OL76QaQiek= =7XYZ -----END PGP SIGNATURE----- --PEIAKu/WMn1b1Hv9-- From owner-freebsd-ports@FreeBSD.ORG Sat Feb 23 11:32:37 2008 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8126C16A400; Sat, 23 Feb 2008 11:32:37 +0000 (UTC) (envelope-from rmh@aybabtu.com) Received: from aybabtu.com (aybabtu.com [69.60.117.155]) by mx1.freebsd.org (Postfix) with ESMTP id 4A63713C45A; Sat, 23 Feb 2008 11:32:37 +0000 (UTC) (envelope-from rmh@aybabtu.com) Received: from [192.168.10.6] (helo=thorin) by aybabtu.com with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.63) (envelope-from ) id 1JSsNB-0000Pt-F5; Sat, 23 Feb 2008 12:16:54 +0100 Received: from rmh by thorin with local (Exim 4.63) (envelope-from ) id 1JSsIH-0002FB-0C; Sat, 23 Feb 2008 12:11:49 +0100 Date: Sat, 23 Feb 2008 12:11:48 +0100 From: Robert Millan To: sem@FreeBSD.org Message-ID: <20080223111148.GA8591@thorin> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit Organization: free as in freedom X-Message-Flag: Worried about Outlook viruses? Switch to Thunderbird! www.mozilla.com/thunderbird X-Debbugs-No-Ack: true User-Agent: Mutt/1.5.13 (2006-08-11) Cc: ports@FreeBSD.org Subject: FreeBSD Port: grub-0.97_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Feb 2008 11:32:37 -0000 Hey, Do you plan on adding GRUB 2 to the ports collection? GRUB Legacy is not actively developed anymore, as you may have noticed. Btw, GRUB 2 added support for UFS and loaders for *BSD kernels recently. -- Robert Millan I know my rights; I want my phone call! What use is a phone call… if you are unable to speak? (as seen on /.) From owner-freebsd-ports@FreeBSD.ORG Sat Feb 23 20:59:14 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92E6F16A408 for ; Sat, 23 Feb 2008 20:59:14 +0000 (UTC) (envelope-from bsd-unix@embarqmail.com) Received: from mailrelay.embarq.synacor.com (mailrelay.embarq.synacor.com [208.47.184.3]) by mx1.freebsd.org (Postfix) with ESMTP id 51EE313C474 for ; Sat, 23 Feb 2008 20:59:13 +0000 (UTC) (envelope-from bsd-unix@embarqmail.com) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=1.0 c=1 a=J7GNilp2RotllNuMISoA:9 a=BlLF6mwHmhGCWgnP_rQc79C8FU0A:4 a=CWfAmLVWKswA:10 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp09.embarq.synacor.com smtp.mail=bsd-unix@embarqmail.com; spf=neutral Authentication-Results: smtp09.embarq.synacor.com smtp.user=rpratt1950@embarqmail.com; auth=pass (LOGIN) Received-SPF: neutral (smtp09.embarq.synacor.com: 76.6.194.251 is neither permitted nor denied by domain of embarqmail.com) Received: from [76.6.194.251] ([76.6.194.251:55604] helo=kt.weeeble.com) by mailrelay.embarq.synacor.com (envelope-from ) (ecelerity 2.2.1.21 r(19176)) with ESMTPA id 7F/CC-12920-02980C74; Sat, 23 Feb 2008 15:59:13 -0500 Date: Sat, 23 Feb 2008 15:59:11 -0500 From: Randy Pratt To: freebsd-ports@freebsd.org Message-Id: <20080223155911.84fe423f.bsd-unix@embarqmail.com> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.8; i386-portbld-freebsd6.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dougb@FreeBSD.org Subject: Portmaster and added dependencies X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Feb 2008 20:59:14 -0000 I've been using portmaster for a couple of weeks and like what I've seen. However, I'm a bit confused on how dependencies changes are to be handled. Here's a scenario: Events: 2008.02.17 01:50:08 UTC devel/p5-ExtUtils-CBuilder: update to 0.22 2008.02.17 11:00:00 UTC update ports and devel/p5-ExtUtils-CBuilder was updated 2008.02.19 05:33:50 UTC devel/p5-ExtUtils-CBuilder: Add missing deps ports/120802 (textproc/p5-Text-ParseWords was added as a build/run dependency) I have been running the command in my daily port updates: portmaster -d -w -m DISABLE_VULNERABILITIES=yes -a but it never picked up the added dependency since it is already up to date. The man page seems to indicate that the dependency check will be skipped if the port is up-to-date. Running: portmaster --check-depends didn't seem do do anything (because all ports were up-to-date?). I decided to just update p5-ExtUtils-CBuilder-0.22 and it did catch the added dependency of p5-Text-ParseWords. Checking what depends on p5-Text-ParseWords: # pkg_info -R p5-Text-ParseWords-\* Information for p5-Text-ParseWords-3.1: Required by: p5-ExtUtils-CBuilder-0.22 On this system I have 3 ports which depend on p5-ExtUtils-CBuilder: # pkg_info -R p5-ExtUtils-CBuilder-0.22 Information for p5-ExtUtils-CBuilder-0.22: Required by: p5-ExtUtils-ParseXS-2.19 p5-Module-Build-0.28.08 txt2html-2.50 Finally, I just did a recursive update of p5-ExtUtils-CBuilder: portmaster -r p5-ExtUtils-CBuilder-0.22 and that gave me what I expected to see: # pkg_info -R p5-Text-ParseWords-\* Information for p5-Text-ParseWords-3.1: Required by: p5-ExtUtils-CBuilder-0.22 p5-ExtUtils-ParseXS-2.19 p5-Module-Build-0.28.08 txt2html-2.50 I got to where I think I should be but obviously, I'm not doing exactly the right thing for the portmaster command to always pick up these added and/or removed dependencies. I tried to use the '-t' but it didn't seem to make any difference. I've reread the man page but I still don't seem to see what I need to do so that I don't have to chase down these little things. Suggestions? Thanks, Randy From owner-freebsd-ports@FreeBSD.ORG Sat Feb 23 21:23:49 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 817E816A404 for ; Sat, 23 Feb 2008 21:23:49 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.freebsd.org (Postfix) with ESMTP id 66B2C13C4E3 for ; Sat, 23 Feb 2008 21:23:49 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 33F015C5A; Sat, 23 Feb 2008 16:26:53 -0500 (EST) Date: Sat, 23 Feb 2008 16:26:53 -0500 From: Wesley Shields To: Randy Pratt Message-ID: <20080223212653.GC73222@atarininja.org> References: <20080223155911.84fe423f.bsd-unix@embarqmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080223155911.84fe423f.bsd-unix@embarqmail.com> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: dougb@FreeBSD.org, leeym@FreeBSD.org, freebsd-ports@freebsd.org Subject: Re: Portmaster and added dependencies X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Feb 2008 21:23:49 -0000 On Sat, Feb 23, 2008 at 03:59:11PM -0500, Randy Pratt wrote: > I've been using portmaster for a couple of weeks and like what I've > seen. However, I'm a bit confused on how dependencies changes are to > be handled. Here's a scenario: > > Events: > > 2008.02.17 01:50:08 UTC devel/p5-ExtUtils-CBuilder: update to 0.22 > > 2008.02.17 11:00:00 UTC update ports and devel/p5-ExtUtils-CBuilder > was updated > > 2008.02.19 05:33:50 UTC devel/p5-ExtUtils-CBuilder: Add missing deps > ports/120802 (textproc/p5-Text-ParseWords was > added as a build/run dependency) Snipped the rest because I think this could have all been avoided by bumping PORTREVISION when the dependency to p5-Text-ParseWords was added. Ideally the dependency information should have been recorded with the update to 0.22 (like is in ports/120802). I'm CC'ing leeym@ who made the last commit. I'll leave the rest up to Doug. :) -- WXS From owner-freebsd-ports@FreeBSD.ORG Sat Feb 23 21:50:18 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D117B16A404 for ; Sat, 23 Feb 2008 21:50:18 +0000 (UTC) (envelope-from bsd-unix@embarqmail.com) Received: from mailrelay.embarq.synacor.com (mailrelay.embarq.synacor.com [208.47.184.3]) by mx1.freebsd.org (Postfix) with ESMTP id 8EA9613C442 for ; Sat, 23 Feb 2008 21:50:18 +0000 (UTC) (envelope-from bsd-unix@embarqmail.com) X_CMAE_Category: 0,0 Undefined,Undefined X-CNFS-Analysis: v=1.0 c=1 a=iZOzACmRa6pwjebCvzIA:9 a=rtfIdfwKFScVfLgTfn3NZiqY_sAA:4 a=SV7veod9ZcQA:10 a=LY0hPdMaydYA:10 X-CM-Score: 0 X-Scanned-by: Cloudmark Authority Engine Authentication-Results: smtp07.embarq.synacor.com smtp.mail=bsd-unix@embarqmail.com; spf=neutral Authentication-Results: smtp07.embarq.synacor.com smtp.user=rpratt1950@embarqmail.com; auth=pass (LOGIN) Received-SPF: neutral (smtp07.embarq.synacor.com: 76.6.194.251 is neither permitted nor denied by domain of embarqmail.com) Received: from [76.6.194.251] ([76.6.194.251:58378] helo=kt.weeeble.com) by mailrelay.embarq.synacor.com (envelope-from ) (ecelerity 2.2.1.21 r(19176)) with ESMTPA id 88/1F-23048-91590C74; Sat, 23 Feb 2008 16:50:17 -0500 Date: Sat, 23 Feb 2008 16:50:16 -0500 From: Randy Pratt To: Wesley Shields Message-Id: <20080223165016.8a36f06d.bsd-unix@embarqmail.com> In-Reply-To: <20080223212653.GC73222@atarininja.org> References: <20080223155911.84fe423f.bsd-unix@embarqmail.com> <20080223212653.GC73222@atarininja.org> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.8; i386-portbld-freebsd6.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dougb@FreeBSD.org, leeym@FreeBSD.org, freebsd-ports@freebsd.org Subject: Re: Portmaster and added dependencies X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Feb 2008 21:50:18 -0000 On Sat, 23 Feb 2008 16:26:53 -0500 Wesley Shields wrote: > On Sat, Feb 23, 2008 at 03:59:11PM -0500, Randy Pratt wrote: > > I've been using portmaster for a couple of weeks and like what I've > > seen. However, I'm a bit confused on how dependencies changes are to > > be handled. Here's a scenario: > > > > Events: > > > > 2008.02.17 01:50:08 UTC devel/p5-ExtUtils-CBuilder: update to 0.22 > > > > 2008.02.17 11:00:00 UTC update ports and devel/p5-ExtUtils-CBuilder > > was updated > > > > 2008.02.19 05:33:50 UTC devel/p5-ExtUtils-CBuilder: Add missing deps > > ports/120802 (textproc/p5-Text-ParseWords was > > added as a build/run dependency) > > Snipped the rest because I think this could have all been avoided by > bumping PORTREVISION when the dependency to p5-Text-ParseWords was > added. Ideally the dependency information should have been recorded > with the update to 0.22 (like is in ports/120802). I'm CC'ing leeym@ > who made the last commit. It would have been far easier that way of course but this isn't the first time a dependency change has been made to some port without bumping PORTREVISION and probably won't be the last. This situation only existed for a couple of days and affected only those who updated during the interim. What I'm really looking for is the portmaster equivalent of portupgrade's "pkgdb -L" to look for lost dependencies so I can check all the installed ports dependency chains. Thanks, Randy -- From owner-freebsd-ports@FreeBSD.ORG Sat Feb 23 22:10:42 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C58B516A401; Sat, 23 Feb 2008 22:10:42 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.freebsd.org (Postfix) with ESMTP id B613513C45A; Sat, 23 Feb 2008 22:10:42 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id A6EBF5C5A; Sat, 23 Feb 2008 17:13:46 -0500 (EST) Date: Sat, 23 Feb 2008 17:13:46 -0500 From: Wesley Shields To: Randy Pratt Message-ID: <20080223221346.GD73222@atarininja.org> References: <20080223155911.84fe423f.bsd-unix@embarqmail.com> <20080223212653.GC73222@atarininja.org> <20080223165016.8a36f06d.bsd-unix@embarqmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080223165016.8a36f06d.bsd-unix@embarqmail.com> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: dougb@FreeBSD.org, leeym@FreeBSD.org, freebsd-ports@freebsd.org Subject: Re: Portmaster and added dependencies X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Feb 2008 22:10:42 -0000 On Sat, Feb 23, 2008 at 04:50:16PM -0500, Randy Pratt wrote: > On Sat, 23 Feb 2008 16:26:53 -0500 > Wesley Shields wrote: > > > On Sat, Feb 23, 2008 at 03:59:11PM -0500, Randy Pratt wrote: > > > I've been using portmaster for a couple of weeks and like what I've > > > seen. However, I'm a bit confused on how dependencies changes are to > > > be handled. Here's a scenario: > > > > > > Events: > > > > > > 2008.02.17 01:50:08 UTC devel/p5-ExtUtils-CBuilder: update to 0.22 > > > > > > 2008.02.17 11:00:00 UTC update ports and devel/p5-ExtUtils-CBuilder > > > was updated > > > > > > 2008.02.19 05:33:50 UTC devel/p5-ExtUtils-CBuilder: Add missing deps > > > ports/120802 (textproc/p5-Text-ParseWords was > > > added as a build/run dependency) > > > > Snipped the rest because I think this could have all been avoided by > > bumping PORTREVISION when the dependency to p5-Text-ParseWords was > > added. Ideally the dependency information should have been recorded > > with the update to 0.22 (like is in ports/120802). I'm CC'ing leeym@ > > who made the last commit. > > It would have been far easier that way of course but this isn't the > first time a dependency change has been made to some port without > bumping PORTREVISION and probably won't be the last. This situation > only existed for a couple of days and affected only those who updated > during the interim. Right, I was just pointing out that it is not necessarily a problem with portmaster since PORTREVISION should have been bumped. :) Thank you for brining this up, however, since it is a mistake in the port and may be a nice addition to portmaster (if such a thing does not already exist). > What I'm really looking for is the portmaster equivalent of > portupgrade's "pkgdb -L" to look for lost dependencies so I can > check all the installed ports dependency chains. That I will leave up to Doug to answer. -- WXS From owner-freebsd-ports@FreeBSD.ORG Sat Feb 23 22:56:14 2008 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7506816A413 for ; Sat, 23 Feb 2008 22:56:14 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from dione.picobyte.net (dione.picobyte.net [IPv6:2001:770:15d::fefa]) by mx1.freebsd.org (Postfix) with ESMTP id 4720F13C4CE for ; Sat, 23 Feb 2008 22:56:14 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from charon.picobyte.net (charon.picobyte.net [IPv6:2001:770:15d::fe03]) by dione.picobyte.net (Postfix) with ESMTP id 469A1B837; Sat, 23 Feb 2008 22:56:12 +0000 (GMT) Date: Sat, 23 Feb 2008 22:56:12 +0000 From: Shaun Amott To: Kelly Hays Message-ID: <20080223225611.GA57972@charon.picobyte.net> References: <4f615770802222157q5b2376dcg7d1862abbf7f8cfd@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <4f615770802222157q5b2376dcg7d1862abbf7f8cfd@mail.gmail.com> User-Agent: Mutt/1.5.16 (FreeBSD i386) Cc: ports@freebsd.org Subject: Re: net-im/psi update plans? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Feb 2008 22:56:14 -0000 On Fri, Feb 22, 2008 at 11:57:06PM -0600, Kelly Hays wrote: > > I was wondering what plans were in the works for net-im/psi version > 0.11 and/or development snapshots of 0.12? > I'll be updating the port to 0.12 shortly. I have some additional testing to do. I currently have no plans to do do anything with the development snapshots, though. Shaun -- Shaun Amott // PGP: 0x6B387A9A "A foolish consistency is the hobgoblin of little minds." - Ralph Waldo Emerson From owner-freebsd-ports@FreeBSD.ORG Sat Feb 23 23:52:12 2008 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C3F2616A403 for ; Sat, 23 Feb 2008 23:52:12 +0000 (UTC) (envelope-from leeym@leeym.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.251]) by mx1.freebsd.org (Postfix) with ESMTP id 9BFB413C467 for ; Sat, 23 Feb 2008 23:52:12 +0000 (UTC) (envelope-from leeym@leeym.com) Received: by an-out-0708.google.com with SMTP id c14so226938anc.13 for ; Sat, 23 Feb 2008 15:52:12 -0800 (PST) Received: by 10.100.9.20 with SMTP id 20mr2363287ani.75.1203809227933; Sat, 23 Feb 2008 15:27:07 -0800 (PST) Received: by 10.101.68.17 with HTTP; Sat, 23 Feb 2008 15:27:07 -0800 (PST) Message-ID: <759236930802231527iab7ced1ncaf3a117c9fe191c@mail.gmail.com> Date: Sat, 23 Feb 2008 15:27:07 -0800 From: "Yen-Ming Lee" To: "Wesley Shields" In-Reply-To: <20080223221346.GD73222@atarininja.org> MIME-Version: 1.0 References: <20080223155911.84fe423f.bsd-unix@embarqmail.com> <20080223212653.GC73222@atarininja.org> <20080223165016.8a36f06d.bsd-unix@embarqmail.com> <20080223221346.GD73222@atarininja.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Randy Pratt , lbr@FreeBSD.org, Felippe de Meirelles Motta , dougb@freebsd.org, freebsd-ports@freebsd.org, leeym@freebsd.org Subject: Re: Portmaster and added dependencies X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Feb 2008 23:52:12 -0000 [cc to the submitter of ports/120802 and lbr@] 2008/2/23, Wesley Shields : > > On Sat, Feb 23, 2008 at 04:50:16PM -0500, Randy Pratt wrote: > > On Sat, 23 Feb 2008 16:26:53 -0500 > > Wesley Shields wrote: > > > > > On Sat, Feb 23, 2008 at 03:59:11PM -0500, Randy Pratt wrote: > > > > I've been using portmaster for a couple of weeks and like what I've > > > > seen. However, I'm a bit confused on how dependencies changes are > to > > > > be handled. Here's a scenario: > > > > > > > > Events: > > > > > > > > 2008.02.17 01:50:08 UTC devel/p5-ExtUtils-CBuilder: update to 0.22 > > > > > > > > 2008.02.17 11:00:00 UTC update ports and devel/p5-ExtUtils-CBuilder > > > > was updated > > > > > > > > 2008.02.19 05:33:50 UTC devel/p5-ExtUtils-CBuilder: Add missing > deps > > > > ports/120802 (textproc/p5-Text-ParseWords > was > > > > added as a build/run dependency) > > > > > > Snipped the rest because I think this could have all been avoided by > > > bumping PORTREVISION when the dependency to p5-Text-ParseWords was > > > added. Ideally the dependency information should have been recorded > > > with the update to 0.22 (like is in ports/120802). I'm CC'ing leeym@ > > > who made the last commit. > > > > It would have been far easier that way of course but this isn't the > > first time a dependency change has been made to some port without > > bumping PORTREVISION and probably won't be the last. This situation > > only existed for a couple of days and affected only those who updated > > during the interim. > > Right, I was just pointing out that it is not necessarily a problem with > portmaster since PORTREVISION should have been bumped. :) Thank you > for brining this up, however, since it is a mistake in the port and may > be a nice addition to portmaster (if such a thing does not already > exist). > The fact behinds this commit is that Text::ParseWords and File::Spec are both in the core list of PERL, so ExtUtils::CBuilder will work no matter these "dependencies" installed or not. See http://www.freebsd.org/cgi/query-pr.cgi?pr=120802 for details. And, two problems in this case: 1. Do we need to add some modules into dependency if they are already in the core list of PERL itself. I myself prefer to remove them and keep the dependency tree as simple as possible, however submitter prefer to use the latest version, so I follow his way. Maybe you have different opinions? 2. What does it mean to bump the PORTREVISION? I heard two meanings, one is "you'd better reinstall it otherwise it won't work", and the other is "something updated and it will change the package". If it means the former one, it's not the case of ExtUtils::CBuilder. If it means the latter one, then it's my fault, I should bump PORTREVISION anyway. -- Yen-Ming Lee