From owner-freebsd-ports@FreeBSD.ORG Sun Mar 18 00:34:51 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 62A9E16A401 for ; Sun, 18 Mar 2007 00:34:51 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout1.cac.washington.edu (mxout1.cac.washington.edu [140.142.32.134]) by mx1.freebsd.org (Postfix) with ESMTP id 4010F13C48A for ; Sun, 18 Mar 2007 00:34:51 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout1.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2I0Yoan001496 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sat, 17 Mar 2007 17:34:50 -0700 X-Auth-Received: from [192.168.10.41] (c-67-187-172-183.hsd1.ca.comcast.net [67.187.172.183]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2I0YnHe010060 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sat, 17 Mar 2007 17:34:50 -0700 Message-ID: <45FC8929.2010309@u.washington.edu> Date: Sat, 17 Mar 2007 17:34:49 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.10 (X11/20070316) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <45FC65B2.2060006@u.washington.edu> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.0.289146, Antispam-Engine: 2.5.0.283055, Antispam-Data: 2007.3.17.171933 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __STOCK_PHRASE_7 0, __USER_AGENT 0' Subject: Re: A list of possible ports that require www/mozilla 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, 18 Mar 2007 00:34:51 -0000 Jeremy Messenger wrote: > On Sat, 17 Mar 2007 17:03:30 -0500, Garrett Cooper > wrote: > >> A did a (more) expensive ports tree walk and I found a partial list of >> ports which may require www/mozilla (or need to be modified >> appropriately to support globally required mozilla properties). The >> file is available at >> . > > Here is better grep with lesser false positive. > > ================================================== > % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l > "www/mozilla$" > /usr/ports/java/eclipse-devel/Makefile > /usr/ports/mail/enigmail/Makefile > /usr/ports/net/penguintv/Makefile > /usr/ports/net/penguintv-devel/Makefile > /usr/ports/www/openvrml/Makefile > /usr/ports/x11-toolkits/hs-gtk2hs/Makefile > % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l > "www/mozilla[[:cntrl:]].*" > /usr/ports/www/openvrml/Makefile > % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l > "www/mozilla[[:space:]].*" > /usr/ports/devel/devhelp/Makefile > /usr/ports/www/openvrml/Makefile > % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l > "www/mozilla.*HEADERS" > /usr/ports/www/swfdec-plugin/Makefile > % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l > "www/.*MOZILLA" > /usr/ports/devel/devhelp/Makefile > /usr/ports/japanese/mozilla-jlp/Makefile > ================================================== > > Might need to write a shell script for find any of ports that only have > "USE_GECKO=mozilla", so can fix these ports to make work with > "USE_GECKO=firefox xulrunner ". > > Cheers, > Mezz > >> Also, the list of ports subtrees that I don't update on my 7-CURRENT >> system are as follows: >> > >> >> Thanks, >> -Garrett Technically those weren't really false positives.. they called up files needed by other ports that were using www/mozilla files. My script (now, slightly more improved): #!/bin/sh index_num=0 for i in $*; do let "index_num=index_num+1" > /dev/null done if [ $index_num -ne 3 ]; then echo "Usage: $0 [directory where ports are located] [filename of ports subtrees] [grep search string with key]" exit 1 fi for i in `cat $2`; do for j in `find "$1/$i" -name Makefile -type f -type l -maxdepth 2`; do grep -Hi -e '$3' $j done done I know it can be improved, but I just wanted something quick and my sh scripting skills are not as good as my bash or perl. -Garrett From owner-freebsd-ports@FreeBSD.ORG Sun Mar 18 00:43:48 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5D83B16A400 for ; Sun, 18 Mar 2007 00:43:48 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.freebsd.org (Postfix) with ESMTP id 379FA13C44C for ; Sun, 18 Mar 2007 00:43:48 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.8/8.13.8) with ESMTP id l2I0hmte046921 for ; Sun, 18 Mar 2007 00:43:48 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.8/8.13.8/Submit) id l2I0hm0v046919 for ports@FreeBSD.org; Sun, 18 Mar 2007 00:43:48 GMT (envelope-from erwin) Date: Sun, 18 Mar 2007 00:43:48 GMT From: Erwin Lansing Message-Id: <200703180043.l2I0hm0v046919@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX now builds successfully on 5.x 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, 18 Mar 2007 00:43:48 -0000 From owner-freebsd-ports@FreeBSD.ORG Sun Mar 18 01:04:30 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BCA7316A403 for ; Sun, 18 Mar 2007 01:04:30 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout2.cac.washington.edu (mxout2.cac.washington.edu [140.142.33.4]) by mx1.freebsd.org (Postfix) with ESMTP id 99B3C13C457 for ; Sun, 18 Mar 2007 01:04:30 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout2.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2I14U2p020477 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sat, 17 Mar 2007 18:04:30 -0700 X-Auth-Received: from [192.168.10.41] (c-67-187-172-183.hsd1.ca.comcast.net [67.187.172.183]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2I14TTZ011445 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sat, 17 Mar 2007 18:04:29 -0700 Message-ID: <45FC901C.9070809@u.washington.edu> Date: Sat, 17 Mar 2007 18:04:28 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.10 (X11/20070316) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <45FC65B2.2060006@u.washington.edu> <45FC8929.2010309@u.washington.edu> In-Reply-To: <45FC8929.2010309@u.washington.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.0.289146, Antispam-Engine: 2.5.0.283055, Antispam-Data: 2007.3.17.174934 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CP_URI_IN_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __STOCK_PHRASE_7 0, __USER_AGENT 0' Subject: Re: A list of possible ports that require www/mozilla 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, 18 Mar 2007 01:04:30 -0000 Garrett Cooper wrote: > Jeremy Messenger wrote: >> On Sat, 17 Mar 2007 17:03:30 -0500, Garrett Cooper >> wrote: >> >>> A did a (more) expensive ports tree walk and I found a partial list >>> of ports which may require www/mozilla (or need to be modified >>> appropriately to support globally required mozilla properties). The >>> file is available at >>> . >> >> Here is better grep with lesser false positive. >> >> ================================================== >> % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l >> "www/mozilla$" >> /usr/ports/java/eclipse-devel/Makefile >> /usr/ports/mail/enigmail/Makefile >> /usr/ports/net/penguintv/Makefile >> /usr/ports/net/penguintv-devel/Makefile >> /usr/ports/www/openvrml/Makefile >> /usr/ports/x11-toolkits/hs-gtk2hs/Makefile >> % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l >> "www/mozilla[[:cntrl:]].*" >> /usr/ports/www/openvrml/Makefile >> % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l >> "www/mozilla[[:space:]].*" >> /usr/ports/devel/devhelp/Makefile >> /usr/ports/www/openvrml/Makefile >> % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l >> "www/mozilla.*HEADERS" >> /usr/ports/www/swfdec-plugin/Makefile >> % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l >> "www/.*MOZILLA" >> /usr/ports/devel/devhelp/Makefile >> /usr/ports/japanese/mozilla-jlp/Makefile >> ================================================== >> >> Might need to write a shell script for find any of ports that only >> have "USE_GECKO=mozilla", so can fix these ports to make work with >> "USE_GECKO=firefox xulrunner ". >> >> Cheers, >> Mezz >> >>> Also, the list of ports subtrees that I don't update on my 7-CURRENT >>> system are as follows: >>> >> >>> >>> Thanks, >>> -Garrett > > Technically those weren't really false positives.. they called up files > needed by other ports that were using www/mozilla files. > > My script (now, slightly more improved): > > #!/bin/sh > > index_num=0 > > for i in $*; do > let "index_num=index_num+1" > /dev/null > done > > if [ $index_num -ne 3 ]; then > echo "Usage: $0 [directory where ports are located] [filename of > ports subtrees] [grep search string with key]" > exit 1 > fi > > for i in `cat $2`; do > for j in `find "$1/$i" -name Makefile -type f -type l -maxdepth > 2`; do > grep -Hi -e '$3' $j > done > done > > I know it can be improved, but I just wanted something quick and my sh > scripting skills are not as good as my bash or perl. > > -Garrett Slight mistake. This line: for j in `find "$1/$i" -name Makefile -type f -type l -maxdepth 2`; do Should read like this: for j in `find "$1/$i" -name Makefile -type f -maxdepth 2`; do Also, you'll have to get the directory names first. I used ls -1F | grep '/' > dir_list and then ran the script like: /path/to/walk_tree_for_key /usr/ports/ ./dir_list "USE_GECKO.*mozilla" /usr/ports//devel/gtkmozedit/Makefile:USE_GECKO= mozilla /usr/ports//graphics/librsvg2/Makefile:USE_GECKO= firefox mozilla seamonkey xulrunner firefox15 /usr/ports//java/eclipse/Makefile:USE_GECKO= xulrunner firefox mozilla seamonkey /usr/ports//net/liferea/Makefile:USE_GECKO= mozilla firefox /usr/ports//net/blam/Makefile:USE_GECKO= firefox mozilla /usr/ports//www/epiphany-extensions/Makefile:USE_GECKO= firefox mozilla seamonkey firefox15<->firefox /usr/ports//www/galeon/Makefile:USE_GECKO= firefox mozilla seamonkey xulrunner /usr/ports//www/gecko-sharp10/Makefile:USE_GECKO= firefox mozilla /usr/ports//www/gecko-sharp20/Makefile:USE_GECKO= firefox mozilla /usr/ports//www/kazehakase/Makefile:USE_GECKO= firefox mozilla seamonkey xulrunner firefox15<->seamonkey /usr/ports//www/mplayer-plugin/Makefile:USE_GECKO= firefox mozilla seamonkey /usr/ports//www/ruby-gtkmozembed/Makefile:USE_GECKO= firefox mozilla xulrunner firefox15 /usr/ports//x11-toolkits/swt-devel/Makefile:USE_GECKO= mozilla firefox seamonkey /usr/ports//x11-toolkits/swt/Makefile:USE_GECKO= mozilla firefox seamonkey /usr/ports//x11-toolkits/jdic/Makefile:#USE_GECKO= firefox seamonkey mozilla /usr/ports//x11-toolkits/py-gnome-extras/Makefile:USE_GECKO= firefox mozilla seamonkey /usr/ports//x11-toolkits/swt31/Makefile:USE_GECKO= firefox mozilla seamonkey xulrunner /usr/ports//x11-toolkits/wxmozilla/Makefile:USE_GECKO= mozilla So there are a number of ports still using mozilla in my ports tree on my dev box, unfortunately :(.. -Garrett From owner-freebsd-ports@FreeBSD.ORG Sun Mar 18 01:08:38 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0F0F16A401 for ; Sun, 18 Mar 2007 01:08:38 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout5.cac.washington.edu (mxout5.cac.washington.edu [140.142.32.135]) by mx1.freebsd.org (Postfix) with ESMTP id ADB2A13C44C for ; Sun, 18 Mar 2007 01:08:38 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout5.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2I18c7E009796 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sat, 17 Mar 2007 18:08:38 -0700 X-Auth-Received: from [192.168.10.41] (c-67-187-172-183.hsd1.ca.comcast.net [67.187.172.183]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2I18bi8011644 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Sat, 17 Mar 2007 18:08:37 -0700 Message-ID: <45FC910F.6050401@u.washington.edu> Date: Sat, 17 Mar 2007 18:08:31 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.10 (X11/20070316) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <20070317143636.LMPK2045.dukecmmtao03.coxmail.com@dukecmmtao03> <45FC4BF7.9060805@u.washington.edu> <45FC5678.40203@u.washington.edu> In-Reply-To: <45FC5678.40203@u.washington.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.0.289146, Antispam-Engine: 2.5.0.283055, Antispam-Data: 2007.3.17.175434 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__C230066_P3_6 0, __CP_NAME_BODY 0, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Subject: Re: Mozilla -is this port ever going to be fixed? 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, 18 Mar 2007 01:08:38 -0000 Garrett Cooper wrote: > Garrett Cooper wrote: >> Vizion wrote: >>>>>> They will? Why? >>>>>> While there's no reason to think they want to gratuitously >>>>>> create bad feelings, FreeBSD machines are a small fraction of the >>>>>> current (and potential) user base. They could blow off FreeBSD - >>>>>> heck, *BSD - first thing tomorrow and not notice. >>>>>> OpenOffice.Org is under no obligation to FreeBSD, or its users, >>>>>> whatsoever. Of course ... if you want to step up and contribute >>>>>> patches (or pay someone to do so) then this will get corrected. >>>>>> Welcome to the underside of open source software. >>>>>> >>>>>> >>>>>> Robert Huff >>>>> What about the Seamonkey headers break OpenOffice though? >>>> Sheesh, the >>>>> OpenOffice people should know that it's an unsupported >>>> browser and bad >>>>> to have sitting around on a machine for security reasons >>>> (riddled with >>>>> security bugs). >>>>> >>>>> Provide me with the perfunctory necessary patches and >>>> stuff, and I'll >>>>> give compiling it a go with Seamonkey's headers. >>>>> >>>>> -Garrett >>>> Correct me if I'm wrong, but it doesn't appear that mozilla actually >>>> needs to be installed for OOo-2.x-devel and it appears that instead >>>> it just automatically drags in mozilla off the web and compiles >>>> portions of OOo specifically using mozilla's headers. >>>> >>>> Either way I'm trying a compile right now and will hopefully get >>>> through without a hitch (even though I'm getting a bit sort on disk >>>> space =\..). >>>> >>>> -Garrett >>> >>> Hi Garrett >>> Just want to say how much I appreciate what you are doing >>> >>> David >> >> David, >> You can also build Ooo with Firefox headers if you like.. it >> requires passing in --with-system-mozilla to configure for Oo. >> Cheers, >> -Garrett > > Update: > > So far I've fixed configure, but now I'm working my way through trying > to update all the child make / dependency files. We'll see how long this > takes.. > > -Garrett I'm going to stall my work on this (fixing OO.o) until next weekend because I have some work items to attend to. -Garrett From owner-freebsd-ports@FreeBSD.ORG Sun Mar 18 01:22:25 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99EF916A403 for ; Sun, 18 Mar 2007 01:22:25 +0000 (UTC) (envelope-from boris@brooknet.com.au) Received: from pecan.exetel.com.au (pecan.exetel.com.au [220.233.0.17]) by mx1.freebsd.org (Postfix) with ESMTP id 625A313C44C for ; Sun, 18 Mar 2007 01:22:25 +0000 (UTC) (envelope-from boris@brooknet.com.au) Received: from 180.205.233.220.exetel.com.au ([220.233.205.180] helo=[192.168.0.148]) by pecan.exetel.com.au with esmtp (Exim 4.63) (envelope-from ) id 1HShOD-0006nT-2C; Sun, 18 Mar 2007 09:28:42 +1100 In-Reply-To: <45FC6903.2040808@u.washington.edu> References: <200703172215.l2HMF9Xu086942@builder.freebsd.org> <45FC6903.2040808@u.washington.edu> Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <187FA7FB-EBDE-4268-AB47-3179B752FBE4@brooknet.com.au> Content-Transfer-Encoding: 7bit From: Sam Lawrance Date: Sun, 18 Mar 2007 09:28:32 +1100 To: Garrett Cooper X-Mailer: Apple Mail (2.752.3) Cc: freebsd ports Subject: Re: INDEX build failed for 5.x 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, 18 Mar 2007 01:22:25 -0000 On 18/03/2007, at 9:17 AM, Garrett Cooper wrote: > Erwin Lansing wrote: >> INDEX build failed with errors: >> Generating INDEX-5 - please wait..make: chdir /local0/tmp/erwin/ >> tindex/ports/www/jakarta-tomcat41: No such file or directory >> "Makefile", line 44: warning: "make -C /local0/tmp/erwin/tindex/ >> ports/www/jakarta-tomcat41 -VAPP_HOME" returned non-zero status >> ja-xgate-3.5pl3: "/local0/tmp/erwin/tindex/ports/www/jakarta- >> tomcat41" non-existent -- dependency list incomplete > > 5.x isn't supported anymore. Kris has sent a few emails to this > list over the past couple weeks about this. The message you replied to was generated by a process designed to automatically test and report on INDEX builds. 5.x is still supported, you're probably thinking of 4.x - http://www.freebsd.org/ releng/ Cheers Sam From owner-freebsd-ports@FreeBSD.ORG Sun Mar 18 01:57:56 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6AF6916A400 for ; Sun, 18 Mar 2007 01:57:56 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao106.cox.net (eastrmmtao106.cox.net [68.230.240.48]) by mx1.freebsd.org (Postfix) with ESMTP id 252EC13C45D for ; Sun, 18 Mar 2007 01:57:56 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao106.cox.net (InterMail vM.7.05.02.00 201-2174-114-20060621) with ESMTP id <20070318015754.MWJK2226.eastrmmtao106.cox.net@eastrmimpo02.cox.net>; Sat, 17 Mar 2007 21:57:54 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo02.cox.net with bizsmtp id c1xu1W00M4iy4EG0000000; Sat, 17 Mar 2007 21:57:54 -0400 Date: Sat, 17 Mar 2007 20:59:41 -0500 To: "Garrett Cooper" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <45FC65B2.2060006@u.washington.edu> <45FC8929.2010309@u.washington.edu> <45FC901C.9070809@u.washington.edu> Content-Transfer-Encoding: Quoted-Printable Message-ID: In-Reply-To: <45FC901C.9070809@u.washington.edu> User-Agent: Opera Mail/9.10 (Linux) Cc: freebsd-ports@freebsd.org Subject: Re: A list of possible ports that require www/mozilla 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, 18 Mar 2007 01:57:56 -0000 On Sat, 17 Mar 2007 20:04:28 -0500, Garrett Cooper = wrote: > Garrett Cooper wrote: >> Jeremy Messenger wrote: >>> On Sat, 17 Mar 2007 17:03:30 -0500, Garrett Cooper = >>> wrote: >>> >>>> A did a (more) expensive ports tree walk and I found a partial list= = >>>> of ports which may require www/mozilla (or need to be modified = >>>> appropriately to support globally required mozilla properties). The= = >>>> file is available at = >>>> . >>> >>> Here is better grep with lesser false positive. >>> >>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l = >>> "www/mozilla$" >>> /usr/ports/java/eclipse-devel/Makefile >>> /usr/ports/mail/enigmail/Makefile >>> /usr/ports/net/penguintv/Makefile >>> /usr/ports/net/penguintv-devel/Makefile >>> /usr/ports/www/openvrml/Makefile >>> /usr/ports/x11-toolkits/hs-gtk2hs/Makefile >>> % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l = >>> "www/mozilla[[:cntrl:]].*" >>> /usr/ports/www/openvrml/Makefile >>> % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l = >>> "www/mozilla[[:space:]].*" >>> /usr/ports/devel/devhelp/Makefile >>> /usr/ports/www/openvrml/Makefile >>> % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l = >>> "www/mozilla.*HEADERS" >>> /usr/ports/www/swfdec-plugin/Makefile >>> % find /usr/ports -maxdepth 3 -name Makefile | xargs egrep -l = >>> "www/.*MOZILLA" >>> /usr/ports/devel/devhelp/Makefile >>> /usr/ports/japanese/mozilla-jlp/Makefile >>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D >>> >>> Might need to write a shell script for find any of ports that only = >>> have "USE_GECKO=3Dmozilla", so can fix these ports to make work with= = >>> "USE_GECKO=3Dfirefox xulrunner ". >>> >>> Cheers, >>> Mezz >>> >>>> Also, the list of ports subtrees that I don't update on my 7-CURREN= T = >>>> system are as follows: >>>> >>> >>>> >>>> Thanks, >>>> -Garrett >> Technically those weren't really false positives.. they called up = >> files needed by other ports that were using www/mozilla files. The bsd.gecko.mk and Makefile.common are merely a framework, not a = dependency. My grep above shows the dependency rather than use files. Th= e = bsd.gecko.mk and Makefile can be move outside www/mozilla in anywhere = without have to make any of big change, but only change the path of both= = files. We can move bsd.gecko.mk and Makefile.common in www/firefox while= = www/mozilla has been marked as deprecated. >> My script (now, slightly more improved): >> #!/bin/sh >> index_num=3D0 >> for i in $*; do >> let "index_num=3Dindex_num+1" > /dev/null >> done >> if [ $index_num -ne 3 ]; then >> echo "Usage: $0 [directory where ports are located] [filename= = >> of ports subtrees] [grep search string with key]" >> exit 1 >> fi >> for i in `cat $2`; do >> for j in `find "$1/$i" -name Makefile -type f -type l -maxdep= th = >> 2`; do >> grep -Hi -e '$3' $j >> done >> done >> I know it can be improved, but I just wanted something quick and my = sh = >> scripting skills are not as good as my bash or perl. >> -Garrett > > Slight mistake. This line: > > for j in `find "$1/$i" -name Makefile -type f -type l -maxdepth 2`; do= > > Should read like this: > > for j in `find "$1/$i" -name Makefile -type f -maxdepth 2`; do > > Also, you'll have to get the directory names first. I used ls -1F | gr= ep = > '/' > dir_list and then ran the script like: > > /path/to/walk_tree_for_key /usr/ports/ ./dir_list "USE_GECKO.*mozilla"= > /usr/ports//devel/gtkmozedit/Makefile:USE_GECKO=3D mozilla > /usr/ports//x11-toolkits/wxmozilla/Makefile:USE_GECKO=3D mozilla > > So there are a number of ports still using mozilla in my ports tree on= = > my dev box, unfortunately :(.. Add 'WITH_GECKO=3Dfirefox' in your make.conf, then more ports will be de= pend = on firefox rather than mozilla. Anyway I think it's not bad, there only about less than 15 ports. The tw= o = 'USE_GECKO=3D mozilla' and about 10 ports that have hardcore or have not= yet = catch up to use USE_GECKO. You can add firefox in two of USE_GECKO to se= e = if it will working then you can make request(s) to the maintainer to add= = 'firefox'. There might be need some tweaks other than just add 'firefox'= = in USE_GECKO. However, you also can requests to the maintainers for = convert these ports to use USE_GECKO. Cheers, Mezz > -Garrett -- = 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 Sun Mar 18 20:22:58 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D2EB516A402 for ; Sun, 18 Mar 2007 20:22:58 +0000 (UTC) (envelope-from dandee@hellteam.net) Received: from pipa.vshosting.cz (pipa.vshosting.cz [81.0.201.10]) by mx1.freebsd.org (Postfix) with ESMTP id 8858013C457 for ; Sun, 18 Mar 2007 20:22:58 +0000 (UTC) (envelope-from dandee@hellteam.net) Received: from localhost (localhost [127.0.0.1]) by pipa.vshosting.cz (Postfix) with ESMTP id 0B30E1C976A; Sun, 18 Mar 2007 21:22:53 +0100 (CET) Received: from pipa.vshosting.cz ([127.0.0.1]) by localhost (pipa [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28710-05; Sun, 18 Mar 2007 21:22:45 +0100 (CET) Received: from gandalf (nat-other.praha12.net [86.49.90.31]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by pipa.vshosting.cz (Postfix) with ESMTP id 2BADD1C9731; Sun, 18 Mar 2007 21:22:45 +0100 (CET) From: =?UTF-8?Q?Daniel_Dvo=C5=99=C3=A1k?= To: "'Matthew Seaman'" References: <007401c76810$4036ff20$6508280a@tocnet28.jspoj.czf> <45FB1B28.8060308@infracaninophile.co.uk> Date: Sun, 18 Mar 2007 21:22:48 +0100 Organization: Projekt HELL Message-ID: <005001c7699b$32954840$6508280a@tocnet28.jspoj.czf> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3028 In-Reply-To: <45FB1B28.8060308@infracaninophile.co.uk> Thread-Index: AcdoGxR1lfDexiwxR0SJOzAeJNGNzABf8arg X-Virus-Scanned: by amavisd-new at pipa.vshosting.cz Cc: ports@FreeBSD.org Subject: RE: FreeBSD Port: phpMyAdmin-2.10.0.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dandee@hellteam.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Mar 2007 20:22:58 -0000 >Can you try this small test to see if your php setup really does have >broken support for ctype_digit() ? >% php -r 'print ctype_digit(1234);' Yes, it returned 1. Should print '1'. If that doesn't work, then examine=20 /usr/local/etc/php/extensions.ini -- does it contain the line extension=3Dctype.so ? Yes, it contains. Did you restart apache since installing the php5-ctype module? Perhaps, I didn=C2=B4t. I restarted the daemon and the site works now = again. Thank you. Dan Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW From owner-freebsd-ports@FreeBSD.ORG Sun Mar 18 21:00:26 2007 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3AA7616A402 for ; Sun, 18 Mar 2007 21:00:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 294A213C4DB for ; Sun, 18 Mar 2007 21:00:26 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2IL0PWU023875 for ; Sun, 18 Mar 2007 21:00:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2IL0PIA023874; Sun, 18 Mar 2007 21:00:25 GMT (envelope-from gnats) Date: Sun, 18 Mar 2007 21:00:25 GMT Message-Id: <200703182100.l2IL0PIA023874@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/11048: commit references a PR X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Mar 2007 21:00:26 -0000 The following reply was made to PR ports/11048; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/11048: commit references a PR Date: Sun, 18 Mar 2007 20:59:03 +0000 (UTC) arved 2007-03-18 20:58:56 UTC FreeBSD ports repository Modified files: graphics/qglviewer Makefile pkg-descr Log: Make fetchable. PR: 11048 Submitted by: Eric P. Scott Revision Changes Path 1.21 +1 -1 ports/graphics/qglviewer/Makefile 1.3 +1 -1 ports/graphics/qglviewer/pkg-descr _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 05:59:30 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8F73B16A400; Mon, 19 Mar 2007 05:59:30 +0000 (UTC) (envelope-from marcus@freebsd.org) Received: from creme-brulee.marcuscom.com (creme-brulee.marcuscom.com [24.172.16.118]) by mx1.freebsd.org (Postfix) with ESMTP id 420FC13C448; Mon, 19 Mar 2007 05:59:30 +0000 (UTC) (envelope-from marcus@freebsd.org) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.13.8/8.13.8) with ESMTP id l2J5R60m031101; Mon, 19 Mar 2007 01:27:06 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: FreeBSD GNOME Users Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-RCMvEvJqzyxCXc1f5RTU" Organization: FreeBSD, Inc. Date: Mon, 19 Mar 2007 01:26:32 -0400 Message-Id: <1174281992.96641.24.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Evolution 2.8.3 FreeBSD GNOME Team Port Cc: ports@freebsd.org Subject: HEADS UP: GNOME 2.18 now available for FreeBSD X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd-gnome@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Mar 2007 05:59:30 -0000 --=-RCMvEvJqzyxCXc1f5RTU Content-Type: text/plain Content-Transfer-Encoding: quoted-printable GNOME 2.18 has just been merged into the FreeBSD ports tree. While this release focuses more on stability and improving existing functionality, there are a few new surprises. See http://www.gnome.org/start/2.18/ for all the details. On top of that, our very own adamw has created a few new FreeBSD GNOME splash screens which are available in gnome-session. Upgrading from 2.16 to 2.18 is fairly straight-forward. A portupgrade or portmaster -a will get everything. For people that already did the gettext rebuild, sorry. We're still looking for FreeBSD GNOME screenshots for our gallery. So if you have a creative desktop, please forward on an image. Joe --=20 Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-RCMvEvJqzyxCXc1f5RTU Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBF/h8Ib2iPiv4Uz4cRAsRzAKCp/qc5mdariqQ697ArLEj+Q8XDNACgledb myKUjzmILT6StqJvFd/BRSA= =QpXX -----END PGP SIGNATURE----- --=-RCMvEvJqzyxCXc1f5RTU-- From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 06:12:38 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 929B516A400 for ; Mon, 19 Mar 2007 06:12:38 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.freebsd.org (Postfix) with ESMTP id 83BBE13C455 for ; Mon, 19 Mar 2007 06:12:38 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.8/8.13.8) with ESMTP id l2J6CcVN011902 for ; Mon, 19 Mar 2007 06:12:38 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.8/8.13.8/Submit) id l2J6CcBQ011877 for ports@FreeBSD.org; Mon, 19 Mar 2007 06:12:38 GMT (envelope-from erwin) Date: Mon, 19 Mar 2007 06:12:38 GMT From: Erwin Lansing Message-Id: <200703190612.l2J6CcBQ011877@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 5.x 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, 19 Mar 2007 06:12:38 -0000 INDEX build failed with errors: Generating INDEX-5 - please wait..rhythmbox-0.9.8: "/local0/tmp/erwin/tindex/ports/multimedia/totem-gstreamer" non-existent -- dependency list incomplete ===> audio/rhythmbox failed *** Error code 1 *** Error code 1 Stop in /local0/tmp/erwin/tindex/ports. *** Error code 1 Stop in /local0/tmp/erwin/tindex/ports. 1 error Committers on the hook: ahze dinoex kevlo leeym maho marcus rafan sat Most recent CVS update was: U devel/Makefile U devel/deputy/Makefile U devel/deputy/distinfo U devel/deputy/pkg-descr U devel/deputy/pkg-plist U devel/deputy/files/patch-bin-deputy U devel/deputy/files/patch-cil-Makefile.in U devel/deputy/files/patch-configure U devel/deputy/files/patch-lib-Deputy.pm U games/fxsudoku/Makefile U graphics/cairo/Makefile U graphics/cairo/distinfo U graphics/cairo/pkg-plist U graphics/eog/Makefile U graphics/eog/distinfo U graphics/eog/pkg-plist U graphics/evince/Makefile U graphics/evince/distinfo U graphics/evince/pkg-plist U graphics/evince/files/patch-backend_ps_ps-interpreter.c U graphics/evince/files/patch-configure U graphics/jpatch/Makefile U graphics/jpatch/distinfo U graphics/jpatch/pkg-descr U graphics/p5-Cairo/Makefile U graphics/p5-Cairo/distinfo U graphics/py-cairo/Makefile U graphics/py-cairo/distinfo U mail/balsa/Makefile U mail/evolution/Makefile U mail/evolution/distinfo U mail/evolution/pkg-plist U mail/evolution/files/patch-mail_em-utils.h U mail/evolution-exchange/Makefile U mail/evolution-exchange/distinfo U mail/mail-notification/Makefile U mail/p5-Mail-ListDetector/Makefile U mail/p5-Mail-ListDetector/distinfo U mail/sendmail/Makefile U mail/thunderbird/Makefile U math/gcalctool/Makefile U math/gcalctool/distinfo U math/gcalctool/pkg-plist U math/gnumeric/Makefile U math/gnumeric/distinfo U math/gnumeric/pkg-plist U math/octave-devel/Makefile U misc/gnome-icon-theme/Makefile U misc/gnome-icon-theme/distinfo U misc/gnome-icon-theme/pkg-plist U misc/gnome-user-docs/Makefile U misc/gnome-user-docs/distinfo U misc/gnome-user-docs/pkg-plist U misc/hicolor-icon-theme/Makefile U misc/hicolor-icon-theme/distinfo U misc/hicolor-icon-theme/files/pkg-install.in U multimedia/Makefile U multimedia/totem/Makefile U multimedia/totem/distinfo U multimedia/totem/pkg-plist U multimedia/totem/files/patch-browser-plugin_Makefile.in U multimedia/totem-xine/Makefile U net/gnome-nettool/Makefile U net/gnome-nettool/distinfo U net/gnome-nettool/pkg-plist U net/gnome-nettool/files/patch-src_info.c U net/vino/Makefile U net/vino/distinfo U net-im/gaim/Makefile U net-im/libgaim/Makefile U net-im/wildfire/Makefile U net-im/wildfire/distinfo U net-im/wildfire/pkg-descr U net-im/wildfire/pkg-plist U net-im/wildfire/files/pkg-message.in U print/libgnomeprint/Makefile U print/libgnomeprint/distinfo U print/libgnomeprint/pkg-plist U security/gaim-encryption/Makefile U security/gnome-keyring/Makefile U security/gnome-keyring/distinfo U security/gnome-keyring/pkg-plist U security/gnome-keyring-manager/Makefile U security/gnome-keyring-manager/distinfo U security/gnome-keyring-manager/pkg-plist U security/gss/Makefile U security/gss/distinfo U security/nss/Makefile U security/nss/pkg-plist U security/nss/files/nss-config.in U security/nss/files/nss.pc.in U security/nss/files/patch-..::coreconf::command.mk U security/nss/files/patch-..::coreconf::rules.mk U security/nss/files/patch-cmd::platlibs.mk U security/seahorse/Makefile U security/seahorse/distinfo U security/seahorse/pkg-plist U security/seahorse/files/patch-configure U security/seahorse/files/patch-libseahorse_seahorse-ssh-operation.c U sysutils/brasero/Makefile U sysutils/brasero/distinfo U sysutils/brasero/pkg-plist U sysutils/gconf-editor/Makefile U sysutils/gconf-editor/distinfo U sysutils/gconf-editor/pkg-plist U sysutils/gnome-control-center/Makefile U sysutils/gnome-control-center/distinfo U sysutils/gnome-control-center/pkg-plist U sysutils/gnome-control-center/files/patch-configure U sysutils/gnome-control-center/files/patch-libslab_directory-tile.c U sysutils/gnome-mount/Makefile U sysutils/gnome-mount/distinfo U sysutils/gnome-mount/pkg-plist U sysutils/gnome-mount/files/patch-gnome-mount.schemas.in U sysutils/gnome-mount/files/patch-src_gnome-mount-properties-view.c U sysutils/gnome-mount/files/patch-src_gnome-mount-properties.c U sysutils/gnome-mount/files/patch-src_gnome-mount.c U sysutils/gnome-power-manager/Makefile U sysutils/gnome-power-manager/distinfo U sysutils/gnome-power-manager/pkg-plist U sysutils/gnome-system-monitor/Makefile U sysutils/gnome-system-monitor/distinfo U sysutils/gnome-system-monitor/pkg-plist U sysutils/gnome-system-tools/Makefile U sysutils/gnome-system-tools/distinfo U sysutils/gnome-system-tools/pkg-plist U sysutils/gnome-volume-manager/Makefile U sysutils/gnome-volume-manager/distinfo U sysutils/gnome-volume-manager/pkg-plist U sysutils/gnome-volume-manager/files/patch-src_manager.c U sysutils/nautilus-cd-burner/Makefile U sysutils/nautilus-cd-burner/distinfo U sysutils/nautilus-cd-burner/pkg-plist U sysutils/system-tools-backends/Makefile U sysutils/system-tools-backends/distinfo U sysutils/system-tools-backends/pkg-plist U sysutils/system-tools-backends/files/system-tools-backends.in U textproc/docbook-sk/Makefile U textproc/docbook-sk/pkg-plist U textproc/gnome-doc-utils/Makefile U textproc/gnome-doc-utils/distinfo U textproc/gnome-doc-utils/pkg-plist U textproc/libxml++26/Makefile U textproc/libxml++26/distinfo U textproc/libxml++26/pkg-plist U textproc/scrollkeeper/Makefile U www/Makefile U www/epiphany/Makefile U www/epiphany/distinfo U www/epiphany/pkg-plist U www/epiphany-extensions/Makefile U www/epiphany-extensions/distinfo U www/epiphany-extensions/pkg-plist U www/erwn/Makefile U www/evolution-webcal/Makefile U www/evolution-webcal/distinfo U www/evolution-webcal/pkg-plist U www/gtkhtml3/Makefile U www/gtkhtml3/distinfo U www/gtkhtml3/pkg-plist U www/horde-meta/Makefile U www/horde-trean/Makefile U www/horde-trean/distinfo U www/horde-trean/pkg-descr U www/horde-trean/pkg-plist U www/horde-trean/files/httpd.conf.trean U www/horde-trean/files/pkg-deinstall.in U www/horde-trean/files/pkg-install.in U www/horde-trean/files/pkg-message.in U www/mozilla/Makefile U www/mozilla/Makefile.common U www/mozilla/bsd.gecko.mk U www/mozilla/pkg-deinstall.in U www/mozilla/pkg-install.in U www/peacock/Makefile U x11/Makefile U x11/fast-user-switch-applet/Makefile U x11/fast-user-switch-applet/distinfo U x11/fast-user-switch-applet/pkg-plist U x11/fast-user-switch-applet/files/patch-src_gdm-queue.c U x11/gdm/Makefile U x11/gdm/distinfo U x11/gdm/pkg-plist U x11/gdm/files/extra-patch-daemon_slave.c U x11/gdm/files/gdm.in U x11/gdm/files/patch-config_locale.alias U x11/gnome-applets/Makefile U x11/gnome-applets/distinfo U x11/gnome-applets/pkg-plist U x11/gnome-applets/files/patch-cpufreq-freebsd U x11/gnome-applets/files/patch-cpufreq-selector-freebsd U x11/gnome-desktop/Makefile U x11/gnome-desktop/distinfo U x11/gnome-desktop/pkg-plist U x11/gnome-menus/Makefile U x11/gnome-menus/distinfo U x11/gnome-menus/pkg-plist U x11/gnome-menus/files/patch-layout::preferences.menu U x11/gnome-panel/Makefile U x11/gnome-panel/distinfo U x11/gnome-panel/pkg-plist U x11/gnome-screensaver/Makefile U x11/gnome-screensaver/distinfo U x11/gnome-screensaver/pkg-plist U x11/gnome-session/Makefile U x11/gnome-session/distinfo U x11/gnome-session/pkg-plist U x11/gnome-session/files/patch-data_Makefile.in U x11/gnome-session/files/patch-gnome-session_Makefile.in U x11/gnome-session/files/patch-gnome-session_gsm-dbus.c U x11/gnome-terminal/Makefile U x11/gnome-terminal/distinfo U x11/gnome-terminal/pkg-plist U x11/gnome2/Makefile U x11/gnome2-fifth-toe/Makefile U x11/gnome2-lite/Makefile U x11/gnome2-power-tools/Makefile U x11/libgnome/Makefile U x11/libgnome/distinfo U x11/libgnome/pkg-plist U x11/libgnome/files/pkg-deinstall.in U x11/libgnomekbd/Makefile U x11/libgnomekbd/distinfo U x11/libgnomekbd/pkg-descr U x11/libgnomekbd/pkg-plist U x11/libgnomemm26/Makefile U x11/libgnomemm26/distinfo U x11/libxklavier/Makefile U x11/libxklavier/distinfo U x11/libxklavier/pkg-plist U x11/libxklavier/files/patch-configure U x11/yelp/Makefile U x11/yelp/distinfo U x11/zenity/Makefile U x11/zenity/distinfo U x11/zenity/pkg-plist U x11-fm/nautilus/Makefile U x11-fm/nautilus/distinfo U x11-fm/nautilus/pkg-plist U x11-fonts/fontconfig/Makefile U x11-fonts/fontconfig/distinfo U x11-fonts/fontconfig/pkg-plist U x11-fonts/fontconfig/files/fc-cache.1 U x11-fonts/fontconfig/files/fc-cat.1 U x11-fonts/fontconfig/files/fc-list.1 U x11-fonts/fontconfig/files/fc-match.1 U x11-fonts/fontconfig/files/patch-Makefile.in U x11-fonts/fontconfig/files/pkg-install.in U x11-fonts/linux-fontconfig/Makefile U x11-fonts/linux-fontconfig/files/fonts.conf U x11-themes/gnome-themes/Makefile U x11-themes/gnome-themes/distinfo U x11-themes/gnome-themes/pkg-plist U x11-themes/gtk-engines2/Makefile U x11-themes/gtk-engines2/distinfo U x11-themes/gtk-engines2/pkg-plist U x11-toolkits/Makefile U x11-toolkits/eel/Makefile U x11-toolkits/eel/distinfo U x11-toolkits/eel/pkg-plist U x11-toolkits/fltk2/Makefile U x11-toolkits/fltk2/distinfo U x11-toolkits/fltk2/pkg-plist U x11-toolkits/fox16/Makefile U x11-toolkits/fox16/distinfo U x11-toolkits/gdl/Makefile U x11-toolkits/gdl/distinfo U x11-toolkits/gdl/pkg-plist U x11-toolkits/gnome-sharp20/Makefile U x11-toolkits/gtk-sharp10/Makefile U x11-toolkits/libbonoboui/Makefile U x11-toolkits/libbonoboui/distinfo U x11-toolkits/libbonoboui/pkg-plist U x11-toolkits/libbonoboui/files/patch-Makefile.in U x11-toolkits/libgail-gnome/Makefile U x11-toolkits/libgail-gnome/distinfo U x11-toolkits/libgnomeprintui/Makefile U x11-toolkits/libgnomeprintui/distinfo U x11-toolkits/libgnomeprintui/pkg-plist U x11-toolkits/libgnomeui/Makefile U x11-toolkits/libgnomeui/distinfo U x11-toolkits/libgnomeui/pkg-plist U x11-toolkits/libgnomeuimm26/Makefile U x11-toolkits/libgnomeuimm26/distinfo U x11-toolkits/libgtksourceviewmm/Makefile U x11-toolkits/libgtksourceviewmm/distinfo U x11-toolkits/libgtksourceviewmm/pkg-descr U x11-toolkits/libgtksourceviewmm/pkg-plist U x11-toolkits/libwnck/Makefile U x11-toolkits/libwnck/distinfo U x11-toolkits/libwnck/pkg-plist U x11-toolkits/pango/Makefile U x11-toolkits/pango/distinfo U x11-toolkits/pango/pkg-plist U x11-toolkits/py-gnome-desktop/Makefile U x11-toolkits/py-gnome-desktop/distinfo U x11-toolkits/py-gnome-desktop/pkg-plist U x11-toolkits/py-gnome2/Makefile U x11-toolkits/py-gnome2/distinfo U x11-toolkits/py-gnome2/pkg-plist U x11-toolkits/py-vte/Makefile U x11-toolkits/py-vte/pkg-descr U x11-toolkits/py-vte/pkg-plist U x11-toolkits/vte/Makefile U x11-toolkits/vte/distinfo U x11-toolkits/vte/pkg-descr U x11-toolkits/vte/pkg-plist U x11-toolkits/vte/files/patch-configure U x11-toolkits/vte/files/patch-python_Makefile.in U x11-toolkits/vte/files/patch-src_pty.c U x11-wm/metacity/Makefile U x11-wm/metacity/distinfo U x11-wm/metacity/pkg-plist U x11-wm/metacity/files/patch-configure From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 08:57:47 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9423216A400 for ; Mon, 19 Mar 2007 08:57:47 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.freebsd.org (Postfix) with ESMTP id 6D8E113C480 for ; Mon, 19 Mar 2007 08:57:47 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.8/8.13.8) with ESMTP id l2J8vl6v007361 for ; Mon, 19 Mar 2007 08:57:47 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.8/8.13.8/Submit) id l2J8vl6q007359 for ports@FreeBSD.org; Mon, 19 Mar 2007 08:57:47 GMT (envelope-from erwin) Date: Mon, 19 Mar 2007 08:57:47 GMT From: Erwin Lansing Message-Id: <200703190857.l2J8vl6q007359@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX now builds successfully on 5.x 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, 19 Mar 2007 08:57:47 -0000 From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 09:28:00 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 74C0A16A408; Mon, 19 Mar 2007 09:28:00 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from server.t-hosting.hu (server.t-hosting.hu [217.20.133.7]) by mx1.freebsd.org (Postfix) with ESMTP id 30A3113C4C1; Mon, 19 Mar 2007 09:28:00 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by server.t-hosting.hu (Postfix) with ESMTP id 8EFDC9F18DE; Mon, 19 Mar 2007 10:27:58 +0100 (CET) X-Virus-Scanned: amavisd-new at t-hosting.hu Received: from server.t-hosting.hu ([127.0.0.1]) by localhost (server.t-hosting.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id sltFrK-9N5lg; Mon, 19 Mar 2007 10:27:41 +0100 (CET) Received: from [192.168.2.186] (catv-50635cb6.catv.broadband.hu [80.99.92.182]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by server.t-hosting.hu (Postfix) with ESMTP id A01329F18DA; Mon, 19 Mar 2007 10:27:41 +0100 (CET) Message-ID: <45FE5780.80501@FreeBSD.org> Date: Mon, 19 Mar 2007 10:27:28 +0100 From: Gabor Kovesdan User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: FreeBSD Questions , FreeBSD Ports Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: SoC application: please comment! 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, 19 Mar 2007 09:28:00 -0000 Hello All, I would like to participate in SoC again. I have a draft proposal, which I haven't submitted yet, you can read it here: http://www.kovesdan.org/soc/article.html Similarly, to the last year, it is a set of minor (but demanded) improvements to the Ports Collection infrastructure. If you have any suggestions to any point listed in the apllication, please let me know. If you have an idea, what else to include (not too big for SoC and I have the knowledge for), please tell me that, too, as I wrote in the proposal, I'd like to work on such projects that are actually demanded. Or if you just have anything to say about the overall text of the proposal, please write me that as well. Thanks in advance, Gabor From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 10:18:01 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ECBF416A402 for ; Mon, 19 Mar 2007 10:18:01 +0000 (UTC) (envelope-from nicki@astcape.co.za) Received: from ns1.astcape.co.za (ns1.astcape.co.za [196.7.15.16]) by mx1.freebsd.org (Postfix) with ESMTP id 8E31B13C4B9 for ; Mon, 19 Mar 2007 10:18:00 +0000 (UTC) (envelope-from nicki@astcape.co.za) Received: from localhost (localhost.astcape.co.za [127.0.0.1]) by ns1.astcape.co.za (Postfix) with ESMTP id E7B7C816BE for ; Mon, 19 Mar 2007 11:53:41 +0200 (SAST) Received: from ns1.astcape.co.za ([127.0.0.1]) by localhost (ns1.astcape.co.za [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32898-02 for ; Mon, 19 Mar 2007 11:53:34 +0200 (SAST) Received: from CC10673 (unknown [192.168.1.229]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by ns1.astcape.co.za (Postfix) with ESMTP id E2EDD813DF for ; Mon, 19 Mar 2007 11:53:34 +0200 (SAST) Message-ID: <013f01c76a0c$80ef59b0$e501a8c0@CC10673> From: "Nicki de Wet" To: Date: Mon, 19 Mar 2007 11:53:53 +0200 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.3028 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3028 X-Virus-Scanned: by amavisd-new at astcape.co.za Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Problem with clamav-0.90.1_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: Mon, 19 Mar 2007 10:18:02 -0000 Hi, The latest version has a bug in the clamav-clamd.sh and = clamav-freshclam.sh files. It does not contain the prefix /usr/local = when calling rc.subr. The previous versions always had this right. Regards, Nicki From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 11:06:24 2007 Return-Path: X-Original-To: ports@hub.freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A172C16A4CB for ; Mon, 19 Mar 2007 11:06:24 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 898E413C44C for ; Mon, 19 Mar 2007 11:06:24 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2JB6Obx054532 for ; Mon, 19 Mar 2007 11:06:24 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2JB6Mbf054528 for PORTS; Mon, 19 Mar 2007 11:06:22 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 19 Mar 2007 11:06:22 GMT Message-Id: <200703191106.l2JB6Mbf054528@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon 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, 19 Mar 2007 11:06:24 -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 o ports/107229 sysutils/coreutils: gcp fails to set default ACL which o ports/107536 editors/scite: Can't write on SciTE text editor f ports/108077 www/linux-flashplugin9 crashes linux-firefox f ports/108105 building biology/platon fails. f ports/108413 net/vnc does not works. f ports/108537 print/hplip: Build failure f ports/108543 math/R (R-2.4.0/R-2.4.1) won't upgrade/install on f ports/108606 Courier MTA terminates abnormaly after installation f ports/108748 mod_fcgid 1.10 does not work inside jail f ports/109160 net/samba3 crashes freebsd when accessing a share resi f ports/109422 sysutils/gnomebaker-0.6.1: could not find signal handl f ports/110027 DOS in silc-server, update available f ports/110035 Port fix for sysutils/be_agent o ports/110224 Address change for SPAMCOP in 'spamcup.pl' o ports/110382 New port: x11/oooqs2 - OpenOffice 2.x quickstarter for f ports/110454 Joomla port Makefile has incorrect url for package 18 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- s ports/59254 ports that write something after bsd.port.mk f ports/94073 [NEW PORTS] x11-toolkits/libsmokeqt, x11-toolkits/libs f ports/94074 [NEW PORTS] x11-toolkits/ruby-qt3, x11-toolkits/kde3: f ports/95990 New Port: emulators/xjoypad s ports/96731 textproc/docbook-utils doesn`t build f ports/100650 audio/moc dumps core when detach/quit o ports/100896 [new ports] emulators/vmware-server-guestd1 emulators/ f ports/102093 new port (restoring from Attic): fix games/myth2_demo o ports/103395 security/gnome-ssh-askpass interferes with gnome-scree f ports/105473 ports/sysutils/cpdup -o doesn't work as advertised f ports/107267 [new port] science/dcmtk -- DICOM toolkit o ports/107354 net/icmpinfo: icmpinfo -vvv does not recocnize any ICM f ports/107368 audio/normalize: [patch] - normalize-mp3 and normalize f ports/107621 net/proxychains doens't compile on 4 and 5 f ports/107937 jailed net/isc-dhcp3-server wouldn't run with an immut f ports/108021 New Port : gpsim Microchip(t) PIC emulator f ports/108104 print/hplip: documentation gets installed though NOPOR f ports/108115 new port: devel/pstreams: C++ utility for simple IOStr o ports/108595 pstree (sysutils/psmisc) don't work in jail f ports/108723 kxgenerator never worked for me f ports/108788 [patch] sysutils/fusefs-kmod: Add BASE option f ports/108801 www/mod_perl2: Apache-2.0.59 / mod_perl-2-2.0.3_1 freq f ports/108853 Contradiction of CONFLICTS¡¡ f ports/109041 security/tinyca doesn't allow for user installed OpenS f ports/109045 security/xca compile fails: x509rev.cpp:63: error: inv f ports/109231 update sysutils/fusefs-wdfs to new version o ports/109344 restore .svn support to security/metasploit-devel f ports/109432 [Update Version] x11-toolkits/tktable to 2.9 f ports/109535 Eggdrop SSL error f ports/109609 security/ca-roots addition request f ports/109824 editors/emacs-devel WITHOUT_GTK=1: package-building fa f ports/110057 Update port: graphics/opencv update to 1.0.0 f ports/110063 games/dungeoncrawl doesn't respect CXX/CXXFALGS o ports/110144 New port: math/Matlab7 f ports/110192 update www/tomcat55 to 5.5.23 o ports/110201 amule2 doesn't shows accentuated filename f ports/110319 Delete port: devel/tkref f ports/110320 [security/vpnc] rc script returns 0 on failure f ports/110396 PATCH: Upgrade /usr/ports/sysutils/syslog-ng2 to versi o ports/110482 Port upgrade: sysutils/k3b to 1.0 o ports/110497 [MAINTAINER] deskutils/gimmie: update to 0.2.5 o ports/110508 [PATCH] print/fontforge fix install on -CURRENT o ports/110509 [UPDATE]update Nant to 0.85:a free .NET build tool 43 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 08:37:41 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9FFD116A401 for ; Mon, 19 Mar 2007 08:37:41 +0000 (UTC) (envelope-from knightbg@yahoo.com) Received: from web32406.mail.mud.yahoo.com (web32406.mail.mud.yahoo.com [68.142.207.199]) by mx1.freebsd.org (Postfix) with SMTP id 4EAFD13C448 for ; Mon, 19 Mar 2007 08:37:41 +0000 (UTC) (envelope-from knightbg@yahoo.com) Received: (qmail 7499 invoked by uid 60001); 19 Mar 2007 08:10:59 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=AcpcKbmHJrLiyn4221E0b7VCzlGayA+HbQd24k33Q0zN3P7FgTGWPN+0KY+x9xMq/LXPQ32uWarXuhTOmSSIzY3lJMJLActH8OtBJmL+nxt2eZMNcct49v7mFxTUBKXQ/2EdIfgDmbxl9KQMZZxMqSU4KCI4nTxHpzTWHpBM7qk=; X-YMail-OSG: s7Ieh54VM1nfFsqQo5.PiVSCyo2rar2mJkhkoBTv0jEBDsivpROdvCszspuy6i..gZfV.VjvHqHLUUOR3jrX_NKNFcb50JTZ5zLOlunWYVmq7lG88Jm7McvTNQ6RSvivVt3eMYHmK3utoQrtd5lWs0eXtw-- Received: from [72.68.192.198] by web32406.mail.mud.yahoo.com via HTTP; Mon, 19 Mar 2007 01:10:59 PDT Date: Mon, 19 Mar 2007 01:10:59 -0700 (PDT) From: Brian Gruber To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <21458.6639.qm@web32406.mail.mud.yahoo.com> X-Mailman-Approved-At: Mon, 19 Mar 2007 11:22:11 +0000 Subject: stupid question about -rf upgrades 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, 19 Mar 2007 08:37:41 -0000 Every once in a while (like this week with gettext) a library with a very large number of dependencies has a shared library version bump, and a note is placed in UPDATING requesting that users do something like portupgrade -rf gettext But if I'm using portupgrade, isn't this unnecessary? doesn't pkg_deinstall (and by extension portupgrade) preserve old shared libraries just to avoid this? what am i missing? why do i need to recompile half my system? thanks, /b ____________________________________________________________________________________ It's here! Your new message! Get new email alerts with the free Yahoo! Toolbar. http://tools.search.yahoo.com/toolbar/features/mail/ From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 12:53:04 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F17F16A401 for ; Mon, 19 Mar 2007 12:53:04 +0000 (UTC) (envelope-from mi+kde@aldan.algebra.com) Received: from mail1.sea5.speakeasy.net (mail1.sea5.speakeasy.net [69.17.117.3]) by mx1.freebsd.org (Postfix) with ESMTP id 4AAED13C46C for ; Mon, 19 Mar 2007 12:53:04 +0000 (UTC) (envelope-from mi+kde@aldan.algebra.com) Received: (qmail 2309 invoked from network); 19 Mar 2007 12:26:22 -0000 Received: from aldan.algebra.com ([216.254.65.224]) (envelope-sender ) by mail1.sea5.speakeasy.net (qmail-ldap-1.03) with AES256-SHA encrypted SMTP for ; 19 Mar 2007 12:26:22 -0000 Received: from aldan.algebra.com (aldan [127.0.0.1]) by aldan.algebra.com (8.13.8/8.13.8) with ESMTP id l2JCQKIf007665 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 19 Mar 2007 07:26:20 -0500 (EST) (envelope-from mi+kde@aldan.algebra.com) Received: from localhost (localhost [[UNIX: localhost]]) by aldan.algebra.com (8.13.8/8.13.8/Submit) id l2JCQKB1007664; Mon, 19 Mar 2007 08:26:20 -0400 (EDT) (envelope-from mi+kde@aldan.algebra.com) From: Mikhail Teterin To: Gabor Kovesdan Date: Mon, 19 Mar 2007 08:26:19 -0400 User-Agent: KMail/1.9.5 X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7whJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" Cc: freebsd-ports@freebsd.org Subject: Re: SoC application: please comment! 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, 19 Mar 2007 12:53:04 -0000 What I'd like to see added, is a flag, which would cause bsd.port.mk to simply ignore the explicit shared libraries' major numbers in LIB_DEPENDS. In almost all cases requiring a specific number does not make sense (not from a user's point of view, anyway). It only causes unneccessary rebuilds: * install mplayer, which uses libFOO.X * wait a week * update the ports-tree * try to install vlc -- oops, because of the shlib number bump of libFOO, got to rebuild the libFOO and the mplayer, which uses it. Of course, vlc would use libFOO.X just as well libFOO.X+1 -- in almost all cases. So there is no point in _forcing_ the user to rebuild all that... The proposed knob would allow the users to ignore the numbers. I hope, of course, that the flag will, eventually, become default... -mi From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 13:32:04 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0C80A16A407 for ; Mon, 19 Mar 2007 13:32:04 +0000 (UTC) (envelope-from allbery@ece.cmu.edu) Received: from bache.ece.cmu.edu (BACHE.ECE.CMU.EDU [128.2.129.23]) by mx1.freebsd.org (Postfix) with ESMTP id E0D7913C487 for ; Mon, 19 Mar 2007 13:32:03 +0000 (UTC) (envelope-from allbery@ece.cmu.edu) Received: from [10.9.204.128] (dsl093-061-215.pit1.dsl.speakeasy.net [66.93.61.215]) by bache.ece.cmu.edu (Postfix) with ESMTP id A448AB8; Mon, 19 Mar 2007 09:01:00 -0400 (EDT) In-Reply-To: <21458.6639.qm@web32406.mail.mud.yahoo.com> References: <21458.6639.qm@web32406.mail.mud.yahoo.com> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: "Brandon S. Allbery KF8NH" Date: Mon, 19 Mar 2007 09:00:58 -0400 To: Brian Gruber X-Mailer: Apple Mail (2.752.2) Cc: freebsd ports Subject: Re: stupid question about -rf upgrades 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, 19 Mar 2007 13:32:04 -0000 On Mar 19, 2007, at 4:10 , Brian Gruber wrote: > portupgrade -rf gettext > > But if I'm using portupgrade, isn't this unnecessary? > doesn't pkg_deinstall (and by extension portupgrade) > preserve old shared libraries just to avoid this? what > am i missing? why do i need to recompile half my > system? Because you might forget that you've done so, then later on install something which links both the new gettext and another dependency still using the old one. If you're lucky, this will result in a link- time error; if not, you'll get odd behavior and/or core dumps. -- brandon s. allbery [solaris,freebsd,perl,pugs,haskell] allbery@kf8nh.com system administrator [openafs,heimdal,too many hats] allbery@ece.cmu.edu electrical and computer engineering, carnegie mellon university KF8NH From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 13:40:54 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1143216A401 for ; Mon, 19 Mar 2007 13:40:54 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.238]) by mx1.freebsd.org (Postfix) with ESMTP id B74D213C4BC for ; Mon, 19 Mar 2007 13:40:53 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so1215895wxc for ; Mon, 19 Mar 2007 06:40:53 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=NqEGV05FUpOx99eEBaV183Axv+W8zh2dDKfS3FmHbj1FsNIBCsKGO0F4G4gZxfup4/26ksZh0bJdvxWmICCDIQQEYcjE9uPD0Ssj2zUb4LMR7yUW8Z6J2oPaaXrTpAipmaDqi38eZX5+2DxWuECiimRUOYUzKLZVNaHBLfQUUH4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=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; b=oRMmlP85jyd3kpWeppZRSdI5gSHmJDVEw6PoyuIZpwt39BVuSzJQnlrDUMDTheEviAPHkBLpf/w6qKn1PIu9NaCeZSujAhI6yORy+7m+KBUDj9LtXalUVNA5VnapID/nZcYGx6ZvC3jX7H+0q3Gn+0KYbaqUwnm42tkcrrPGvcQ= Received: by 10.90.79.6 with SMTP id c6mr3858522agb.1174310017673; Mon, 19 Mar 2007 06:13:37 -0700 (PDT) Received: by 10.114.201.2 with HTTP; Mon, 19 Mar 2007 06:13:37 -0700 (PDT) Message-ID: Date: Mon, 19 Mar 2007 16:13:37 +0300 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Mikhail Teterin" In-Reply-To: <200703190826.20211@aldan> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200703190826.20211@aldan> X-Google-Sender-Auth: 4896999e1db74483 Cc: ports@freebsd.org Subject: Re: SoC application: please comment! 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, 19 Mar 2007 13:40:54 -0000 On 3/19/07, Mikhail Teterin wrote: > What I'd like to see added, is a flag, which would cause bsd.port.mk to simply > ignore the explicit shared libraries' major numbers in LIB_DEPENDS. > > In almost all cases requiring a specific number does not make sense (not from > a user's point of view, anyway). It only causes unneccessary rebuilds: > > * install mplayer, which uses libFOO.X > * wait a week > * update the ports-tree > * try to install vlc -- oops, because of the shlib number bump of libFOO, > got to rebuild the libFOO and the mplayer, which uses it. > > Of course, vlc would use libFOO.X just as well libFOO.X+1 -- in almost all > cases. So there is no point in _forcing_ the user to rebuild all that... > > The proposed knob would allow the users to ignore the numbers. I hope, of > course, that the flag will, eventually, become default... The problem is to find the minority(?) of cases when shlib bumps are significant and cause run-time quirks if not completed correctly. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 19:29:30 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CE6FC16A404; Mon, 19 Mar 2007 19:29:30 +0000 (UTC) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (creme-brulee.marcuscom.com [24.172.16.118]) by mx1.freebsd.org (Postfix) with ESMTP id D834113C487; Mon, 19 Mar 2007 19:29:29 +0000 (UTC) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) by creme-brulee.marcuscom.com (8.13.8/8.13.8) with ESMTP id l2JIqvFi038517; Mon, 19 Mar 2007 14:52:57 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: ports@freebsd.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-daohkf0QBisFlEYRHASM" Organization: MarcusCom, Inc. Date: Mon, 19 Mar 2007 14:52:21 -0400 Message-Id: <1174330341.26866.32.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Evolution 2.8.3 FreeBSD GNOME Team Port Cc: sem@freebsd.org Subject: Problems running pkgdb -fF 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, 19 Mar 2007 19:29:30 -0000 --=-daohkf0QBisFlEYRHASM Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Running pkgdb -Ff today gives me the following error: Stale origin: 'multimedia/totem-gstreamer': perhaps moved or obsoleted. -> The port 'multimedia/totem-gstreamer' was moved to 'multimedia/totem' on= 2007-03-19 because: "multimedia/totem now uses gstreamer by default" sed: 1: "s|^\(@comment[": unbalanced brackets ([]) Failed to rewrite /var/db/pkg/totem-gstreamer-2.16.5/+CONTENTS: Command fai= led [exit code 1]: "sed" "\"s|^\\\\(@comment[\"" "\"\"" "\"][\"" "\"\"" "\"= ]*ORIGIN:\\\\).*\\\$|\\\\1multimedia/totem|\"" "<" "/var/db/pkg/totem-gstre= amer-2.16.5/+CONTENTS" ">" "/tmp/+CONTENTS.71426.0" This is with portupgrade 2.2.6_2,2 on both 6-STABLE i386 and 7-CURRENT amd64. I don't think I did anything funky with the totem MOVED entry. This seems to be a problem with pkgdb. Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-daohkf0QBisFlEYRHASM Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) iD8DBQBF/tvib2iPiv4Uz4cRAtBHAJ9+e1kWLo7kKIP2uZaVMA9MdGZASACfaXMt Y+p0wPgx8LDk/3qUiuOCnis= =x+OR -----END PGP SIGNATURE----- --=-daohkf0QBisFlEYRHASM-- From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 20:55:40 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9398C16A404; Mon, 19 Mar 2007 20:55:40 +0000 (UTC) (envelope-from ericnk@esreco.net) Received: from srecows.esreco.net (srecows.esreco.net [67.139.146.114]) by mx1.freebsd.org (Postfix) with ESMTP id 5D45A13C4BA; Mon, 19 Mar 2007 20:55:40 +0000 (UTC) (envelope-from ericnk@esreco.net) Received: from infotech.esreco.net ([10.0.0.186] helo=infotech) by srecows.esreco.net with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1HTOtE-000GKe-Hd; Mon, 19 Mar 2007 13:55:38 -0700 From: "Eric Kingston" To: Date: Mon, 19 Mar 2007 14:53:43 -0600 Message-ID: <010401c76a68$ae3dd7a0$ba00000a@infotech> MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook 11 Thread-Index: AcdqaK3j+QKe221bSKekoPzke0m6qw== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3028 X-Spam-Score: -2.6 (--) X-Spam-Report: Spam detection software, running on the system "srecows.esreco.net", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see The administrator of that system for details. Content preview: Hi, After upgrading to knoda and hk_classes 0.8.1 on FreeBSD 6.2 and KDE 3.5.5, I'm having some problems. The iconv library installed doesn't support 'WCHAR_T' which is causing problems when any report is rendered in knoda. The installed iconv library version is 1.9.2. This library is directly referenced in the port requirements of hk_classes and knoda, yet it doesn't support the 'WCHAR_T' character set and I can't believe no one else hasn't had any issues like this. I'm at a dead end so far and I need to get knoda working properly. Is there anything (please, I'm begging) that anyone can suggest that I try. I'm at my wits end. [...] Content analysis details: (-2.6 points, 3.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.8 ALL_TRUSTED Passed through trusted hosts only via SMTP -2.6 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] 0.0 HTML_MESSAGE BODY: HTML included in message 0.2 DNS_FROM_RFC_ABUSE RBL: Envelope sender in abuse.rfc-ignorant.org 1.7 DNS_FROM_RFC_POST RBL: Envelope sender in postmaster.rfc-ignorant.org -0.1 AWL AWL: From: address is in the auto white-list Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org, hk_classes@knoda.org Subject: FreeBSD Port: hk_classes-0.8.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: Mon, 19 Mar 2007 20:55:40 -0000 Hi, After upgrading to knoda and hk_classes 0.8.1 on FreeBSD 6.2 and KDE 3.5.5, I'm having some problems. The iconv library installed doesn't support 'WCHAR_T' which is causing problems when any report is rendered in knoda. The installed iconv library version is 1.9.2. This library is directly referenced in the port requirements of hk_classes and knoda, yet it doesn't support the 'WCHAR_T' character set and I can't believe no one else hasn't had any issues like this. I'm at a dead end so far and I need to get knoda working properly. Is there anything (please, I'm begging) that anyone can suggest that I try. I'm at my wits end. Nearly desperate, Eric ericnk@esreco.net P.S. You wouldn't want me to be forced to switch to Microsoft Access would you? That may be my only recourse. Another round lost for the open source community. :-) From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 22:18:19 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5957916A401 for ; Mon, 19 Mar 2007 22:18:19 +0000 (UTC) (envelope-from michel@lpthe.jussieu.fr) Received: from shiva.jussieu.fr (shiva.jussieu.fr [134.157.0.129]) by mx1.freebsd.org (Postfix) with ESMTP id E172C13C46C for ; Mon, 19 Mar 2007 22:18:18 +0000 (UTC) (envelope-from michel@lpthe.jussieu.fr) Received: from parthe.lpthe.jussieu.fr (parthe.lpthe.jussieu.fr [134.157.10.1]) by shiva.jussieu.fr (8.13.8/jtpda-5.4) with ESMTP id l2JLpCnn096535 for ; Mon, 19 Mar 2007 22:51:12 +0100 (CET) X-Ids: 168 Received: by parthe.lpthe.jussieu.fr (Postfix, from userid 10096) id 98E89BF66C; Mon, 19 Mar 2007 22:49:54 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on parthe.lpthe.jussieu.fr X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.1.8 Received: from niobe.lpthe.jussieu.fr (niobe.lpthe.jussieu.fr [134.157.10.41]) by parthe.lpthe.jussieu.fr (Postfix) with ESMTP id 0BC6FBF62E for ; Mon, 19 Mar 2007 22:49:54 +0100 (CET) Received: by niobe.lpthe.jussieu.fr (Postfix, from userid 2005) id 94BC0136; Mon, 19 Mar 2007 22:51:10 +0100 (CET) Date: Mon, 19 Mar 2007 22:51:10 +0100 From: Michel Talon To: ports@freebsd.org Message-ID: <20070319215110.GA60576@lpthe.jussieu.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (shiva.jussieu.fr [134.157.0.168]); Mon, 19 Mar 2007 22:51:12 +0100 (CET) X-Virus-Scanned: ClamAV 0.88.7/2875/Mon Mar 19 20:51:01 2007 on shiva.jussieu.fr X-Virus-Status: Clean X-Miltered: at shiva.jussieu.fr with ID 45FF05D0.002 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! Cc: Subject: Re: Problems running pkgdb -fF 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, 19 Mar 2007 22:18:19 -0000 > "multimedia/totem now uses gstreamer by default" > sed: 1: "s|^\(@comment[": unbalanced brackets ([]) Perhaps there is a specific problem here, but i have observed corruption under FreeBSD-6.2. Several times on my laptop where various applications suddenly misbehave, rebooting cures that, but once firefox was corrupted and i had to reinstall it. Since it has several experimental drivers i can perhaps blame them. But once i have found completely corrupted +CONTENTS files on my desktop which has supported hardware. The corrupted entry was flagged by my check_pkg.py first time i used it on /var/db/pkg. Of course this is the sort of thing absolutely impossible to characterize. -- Michel TALON From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 22:39:40 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4AA5416A402; Mon, 19 Mar 2007 22:39:40 +0000 (UTC) (envelope-from fullermd@over-yonder.net) Received: from optimus.centralmiss.com (ns.centralmiss.com [206.156.254.79]) by mx1.freebsd.org (Postfix) with ESMTP id 21E4613C448; Mon, 19 Mar 2007 22:39:40 +0000 (UTC) (envelope-from fullermd@over-yonder.net) Received: from draco.over-yonder.net (adsl-072-148-013-213.sip.jan.bellsouth.net [72.148.13.213]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by optimus.centralmiss.com (Postfix) with ESMTP id 89F7D287B1; Mon, 19 Mar 2007 17:22:20 -0500 (CDT) Received: by draco.over-yonder.net (Postfix, from userid 100) id 00DF761C6B; Mon, 19 Mar 2007 17:22:19 -0500 (CDT) Date: Mon, 19 Mar 2007 17:22:19 -0500 From: "Matthew D. Fuller" To: Joe Marcus Clarke Message-ID: <20070319222219.GL96961@over-yonder.net> References: <1174330341.26866.32.camel@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1174330341.26866.32.camel@shumai.marcuscom.com> X-Editor: vi X-OS: FreeBSD User-Agent: Mutt/1.5.14-fullermd.3 (2007-02-12) Cc: ports@freebsd.org, sem@freebsd.org Subject: Re: Problems running pkgdb -fF 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, 19 Mar 2007 22:39:40 -0000 On Mon, Mar 19, 2007 at 02:52:21PM -0400 I heard the voice of Joe Marcus Clarke, and lo! it spake thus: > > sed: 1: "s|^\(@comment[": unbalanced brackets ([]) > Failed to rewrite /var/db/pkg/totem-gstreamer-2.16.5/+CONTENTS: Command failed [exit code 1]: "sed" "\"s|^\\\\(@comment[\"" "\"\"" "\"][\"" "\"\"" "\"]*ORIGIN:\\\\).*\\\$|\\\\1multimedia/totem|\"" "<" "/var/db/pkg/totem-gstreamer-2.16.5/+CONTENTS" ">" "/tmp/+CONTENTS.71426.0" FWIW, I saw this happen on one or two boxes a week or two ago. Couldn't make heads or tales of where it was coming from, but manually reinstalling the port in question made it go away, so I just mentally filed it away. -- Matthew Fuller (MF4839) | fullermd@over-yonder.net Systems/Network Administrator | http://www.over-yonder.net/~fullermd/ On the Internet, nobody can hear you scream. From owner-freebsd-ports@FreeBSD.ORG Mon Mar 19 23:04:07 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CEFC316A402 for ; Mon, 19 Mar 2007 23:04:07 +0000 (UTC) (envelope-from parv@pair.com) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.freebsd.org (Postfix) with ESMTP id 7BB0E13C4AE for ; Mon, 19 Mar 2007 23:04:07 +0000 (UTC) (envelope-from parv@pair.com) Received: from default.chvlva.adelphia.net ([24.126.17.68]) by mta11.adelphia.net (InterMail vM.6.01.05.02 201-2131-123-102-20050715) with ESMTP id <20070319230406.ULYH2195.mta11.adelphia.net@default.chvlva.adelphia.net>; Mon, 19 Mar 2007 19:04:06 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id 4CF37B7E8; Mon, 19 Mar 2007 19:04:04 -0400 (EDT) Date: Mon, 19 Mar 2007 19:04:04 -0400 From: Parv To: Joe Marcus Clarke Message-ID: <20070319230404.GA3166@holestein.holy.cow> Mail-Followup-To: Joe Marcus Clarke , ports@freebsd.org, sem@freebsd.org References: <1174330341.26866.32.camel@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1174330341.26866.32.camel@shumai.marcuscom.com> Cc: ports@freebsd.org, sem@freebsd.org Subject: Re: Problems running pkgdb -fF 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, 19 Mar 2007 23:04:07 -0000 in message <1174330341.26866.32.camel@shumai.marcuscom.com>, wrote Joe Marcus Clarke thusly... > > Running pkgdb -Ff today gives me the following error: > > Stale origin: 'multimedia/totem-gstreamer': perhaps moved or obsoleted. > -> The port 'multimedia/totem-gstreamer' was moved to 'multimedia/totem' on 2007-03-19 because: > "multimedia/totem now uses gstreamer by default" > sed: 1: "s|^\(@comment[": unbalanced brackets ([]) > Failed to rewrite /var/db/pkg/totem-gstreamer-2.16.5/+CONTENTS: Command failed [exit code 1]: "sed" "\"s|^\\\\(@comment[\"" "\"\"" "\"][\"" "\"\"" "\"]*ORIGIN:\\\\).*\\\$|\\\\1multimedia/totem|\"" "<" "/var/db/pkg/totem-gstreamer-2.16.5/+CONTENTS" ">" "/tmp/+CONTENTS.71426.0" > > This is with portupgrade 2.2.6_2,2 on both 6-STABLE i386 and > 7-CURRENT amd64. I don't think I did anything funky with the > totem MOVED entry. This seems to be a problem with pkgdb. Looks like sed command gets broken on unescaped|uncared-for otherwise important space character. The command is being made in modify_origin() in pkgtools.rb ... 792 if grep_q_file(/^@comment[ \t]+ORIGIN:/, contents_file) 793 command = shelljoin('sed', 794 "s|^\\(@comment[ \t][ \t]*ORIGIN:\\).*$|\\1#{origin}|") 795 else 796 command = "(cat; echo '@comment ORIGIN:#{origin}')" 797 end 798 799 filter_file(command, contents_file) ... which is being executed in filter_file() ... 838 xsystem("#{command} < #{file} > #{tmpfile}") Here is minimized case which causes above problem ... # for shelljoin() require "pkgmisc" origin = 'some/where' file = '/tmp/in-file' tmpfile = '/tmp/out-file' cmd = shelljoin('sed', "s|^\\(@comment[ \t][ \t]*ORIGIN:\\).*$|\\1#{origin}|") system("#{cmd} < #{file} > #{tmpfile}") Perhaps another version of shelljoin() is needed specifically tuned for sed. I myself would do the substitution in Ruby itself, or failing that in Perl or awk. - Parv -- From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 00:25:12 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D7FC916A404 for ; Tue, 20 Mar 2007 00:25:12 +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 8CFE413C46C for ; Tue, 20 Mar 2007 00:25:12 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 823 invoked by uid 399); 20 Mar 2007 00:25:12 -0000 Received: from localhost (HELO ?192.168.0.4?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 20 Mar 2007 00:25:12 -0000 X-Originating-IP: 127.0.0.1 Message-ID: <45FF29E4.4060305@FreeBSD.org> Date: Mon, 19 Mar 2007 17:25:08 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0b2 (Windows/20070116) MIME-Version: 1.0 To: pav@FreeBSD.org References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <20070319125101.4lb7lljt5w4cwog8@webmail.leidinger.net> <1174308178.15322.13.camel@pav.hide.vol.cz> In-Reply-To: <1174308178.15322.13.camel@pav.hide.vol.cz> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit Cc: Alexander Leidinger , freebsd ports Subject: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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, 20 Mar 2007 00:25:13 -0000 Pav Lucistnik wrote: > Alexander Leidinger píše v po 19. 03. 2007 v 12:51 +0100: >> Quoting Pav Lucistnik (from Sun, 18 Mar 2007 >> 16:38:50 +0000 (UTC)): >> >>> pav 2007-03-18 16:38:50 UTC >>> >>> FreeBSD doc repository >>> >>> Modified files: >>> en/projects/ideas ideas.xml >>> Log: >>> Add four new ports related entries: >>> 4) portupgrade in base thing >> Isn't portmaster something which would fit here already? I didn't >> looked at it, I just judge from what I did read in the lists. > > Possibly. But it still isn't either finished or in base. This thread started with the ideas page entry here: http://www.freebsd.org/projects/ideas/index.html#p-ports-upgrade In response to Pav's suggestion above, I haven't put portmaster in the base for a few reasons, the most important one of which is that my feeling is that the only ports related tool that should be in the base is pkg_add. I think that the rest of them should be ports themselves, which not only is cleaner architecturally, but also has a lot of advantages when it comes to things like adding new features to them. Another reason, for whatever it's worth, is that up till now no one has suggested that it go into the base (which is fine with me). As for it not being finished, is any software project ever really finished? :) I'm pretty close to the end of the list of features that I was ever interested in implementing, and I've added almost every feature that users have asked for (with the notable exception of installing packages). So I would classify the project as "mature," and if there is clamor for it to go into the base, I would be willing to do so. That said, I would have a great deal of concern over the idea of having something that implemented a lot of portupgrade's features in the base. I say this with all due respect to sem, and everyone else who's been involved in the development of portupgrade. I think it's a fine tool, and I am all for the idea of people developing and using tools that meet their interest and needs. I have never viewed portmaster as a competitor of portupgrade, and indeed I've said many times that it's not even on my radar to be working on a "portupgrade replacement." My concern is related to the idea of having such a tool in the base dramatically expanding the complexity of the ports infrastructure beyond what it is already. Personally I've noticed a lot of additional complexity that has been added since portupgrade first starting becoming popular, and my gut feeling is that a lot of things are done with the rationale "oh, they can just use portupgrade to fix things up after I'm done." If we want to re-architect the ports system so that it _requires_ some sort of database other than /var/db/pkg, fine. Let's have that discussion (which I realize would be the nightmare bikeshed from hell), but let's not back into it by adding a portupgrade-like tool to the base which becomes mandatory inch by inch. As for the requirements in the ideas page ... The required functionality is: * fixing @pkgdep records in +CONTENTS file * fixing +REQUIRED_BY records Portmaster already does these two, and that part of the code is very mature since it's one of the first features I wanted for myself when I started developing it. * storing old copies of shared libraries after shmajor number change in /usr/local/lib/compat/pkg Portmaster doesn't do this currently. I have mixed feelings about whether this is even a good idea or not. I'd be happy to elaborate on why if anyone cares. * upwards and downwards recursive modes If I understand you correctly, what portmaster does currently when building a port (a depth-first traversal of the dependency tree) would be considered downwardly recursive, and the -r function (ala portupgrade's) might be considered upwardly recursive, but I'm not 100% sure I'm right here. :) I think one meta-requirement that is implied on the web page but not stated is that the tool not rely on any features that don't already exist in the base. Since portmaster is written in /bin/sh, and doesn't rely on any databases to do its work, it meets that requirement. Now having said all that, I still want to reiterate my point that I feel the conversation we _should_ be having is moving all the ports/package management tools other than pkg_add into the ports tree, but if people are determined to put "a port management tool" into the base, then yes, I'd like portmaster to be considered for that role. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 00:44:14 2007 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 370E016A409 for ; Tue, 20 Mar 2007 00:44:14 +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 BF9B113C45B for ; Tue, 20 Mar 2007 00:44:13 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from [192.168.0.23] (r3b159.net.upc.cz [213.220.193.159]) (authenticated bits=0) by raven.customer.vol.cz (8.13.6/8.13.6) with ESMTP id l2K0i75r042898 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Tue, 20 Mar 2007 01:44:08 +0100 (CET) (envelope-from pav@FreeBSD.org) From: Pav Lucistnik To: Doug Barton In-Reply-To: <45FF29E4.4060305@FreeBSD.org> References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <20070319125101.4lb7lljt5w4cwog8@webmail.leidinger.net> <1174308178.15322.13.camel@pav.hide.vol.cz> <45FF29E4.4060305@FreeBSD.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-BrJqAdE8sZDeg4BCBcW6" Date: Tue, 20 Mar 2007 01:44:06 +0100 Message-Id: <1174351446.98081.23.camel@ikaros.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.0 FreeBSD GNOME Team Port X-Spam-Score: -2.175 () AWL,BAYES_00 X-Scanned-By: MIMEDefang 2.61 on 195.250.144.108 X-Milter: Spamilter (Reciever: raven.customer.vol.cz; Sender-ip: 213.220.193.159; Sender-helo: [192.168.0.23]; ) Cc: Alexander Leidinger , freebsd ports Subject: Re: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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: Tue, 20 Mar 2007 00:44:14 -0000 --=-BrJqAdE8sZDeg4BCBcW6 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Doug Barton p=ED=B9e v po 19. 03. 2007 v 17:25 -0700: > Pav Lucistnik wrote: > > Alexander Leidinger p=ED=B9e v po 19. 03. 2007 v 12:51 +0100: > >> Quoting Pav Lucistnik (from Sun, 18 Mar 2007 =20 > >> 16:38:50 +0000 (UTC)): > >> > >>> pav 2007-03-18 16:38:50 UTC > >>> > >>> FreeBSD doc repository > >>> > >>> Modified files: > >>> en/projects/ideas ideas.xml > >>> Log: > >>> Add four new ports related entries: > >>> 4) portupgrade in base thing > >> Isn't portmaster something which would fit here already? I didn't =20 > >> looked at it, I just judge from what I did read in the lists. > >=20 > > Possibly. But it still isn't either finished or in base. >=20 > This thread started with the ideas page entry here: > http://www.freebsd.org/projects/ideas/index.html#p-ports-upgrade > I haven't put portmaster in the=20 > base for a few reasons, the most important one of which is that my=20 > feeling is that the only ports related tool that should be in the base=20 > is pkg_add. I think that the rest of them should be ports themselves,=20 > which not only is cleaner architecturally, but also has a lot of=20 > advantages when it comes to things like adding new features to them.=20 My point of view is that the essential ports/package functionality should be contained in the base system in the moment the sysinstall or make installworld finishes it's job. I consider smooth upgrading of installed packages a part of essential functionality. If you're worried about the version embedded into a release being imposed on users for next two years, well, there's always possibility to pull a newer version of portmaster from port and install it on older systems automatically. It has been done with pkg_install suite in the past. > So I would classify the project as "mature,"=20 Great. I was tracking your development lately, so it's good to hear that. I should try portmaster again soonish. > As for the requirements in the ideas page ... >=20 > * storing old copies of shared libraries after shmajor number=20 > change in /usr/local/lib/compat/pkg >=20 > Portmaster doesn't do this currently. I have mixed feelings about=20 > whether this is even a good idea or not. I'd be happy to elaborate on=20 > why if anyone cares. I find this a massively desirable feature to have. Defaults to on, can be turned off. It essentially allows people to upgrade gettext to 0.16.1 and don't worry. An acompanying utility which would try to prune /usr/local/lib/compat/pkg, rebuilding binaries that link these old libs, and ultimately deleting the libs, would be nice. I have something locally, but it's a gross hack. > * upwards and downwards recursive modes >=20 > If I understand you correctly, what portmaster does currently when=20 > building a port (a depth-first traversal of the dependency tree) would=20 > be considered downwardly recursive, and the -r function (ala=20 > portupgrade's) might be considered upwardly recursive, but I'm not=20 > 100% sure I'm right here. :) You understood it 100%. > I think one meta-requirement that is implied on the web page but not=20 > stated is that the tool not rely on any features that don't already=20 > exist in the base. Since portmaster is written in /bin/sh, and doesn't=20 > rely on any databases to do its work, it meets that requirement. Yes, that's kinda understood that anything in base must be fully operational with only the resources available in base. --=20 Pav Lucistnik Canada is a country whose main exports are hockey players and cold fronts. Our main imports are baseball players and acid rain. -- Pierre Elliott Trudeau --=-BrJqAdE8sZDeg4BCBcW6 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.7 (FreeBSD) iD8DBQBF/y5SntdYP8FOsoIRAri5AKCAqdVSSZWXOaHLqV6roOXaXpDTWQCeLJ3f tjMABACmV8C43mA8sfJuOYw= =+oO8 -----END PGP SIGNATURE----- --=-BrJqAdE8sZDeg4BCBcW6-- From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 01:09:09 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C2BA916A403; Tue, 20 Mar 2007 01:09:09 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 8DB9213C46E; Tue, 20 Mar 2007 01:09:09 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id DBFDA738; Mon, 19 Mar 2007 20:09:08 -0500 (CDT) Date: Mon, 19 Mar 2007 20:09:08 -0500 To: ports@FreeBSD.org, stable@FreeBSD.org Message-ID: <20070320010908.GA4781@soaustin.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: bugmeister@FreeBSD.org Subject: [REMINDER] how to get the best use out of GNATS 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, 20 Mar 2007 01:09:09 -0000 Recently the bugbusting team has been seeing a few cases where PRs are being submitted without a clear understanding of how best to do so. Although there is a document that references this*, please let me reiterate a few points: - Please only send one PR for a particular problem. The mail queue and spam filtering take ~10 minutes to run (more if your address is greylisted) so you will not see an immediate email reply or update on the website. Please wait a few hours before assuming that something has gone wrong; if you think it has, please email bugmeister@ and we will look at it. - Your email address has to have a valid reverse lookup to be accepted. If the machine you are submitting from does not have this, please acquire and use a free email account such as foo@yahoo.com. - Your email address will be public (in the database). If you do not want this, please use a free email account. - If your email bounces, it is much less likely that someone is going to be able to contact you if they need futher information about your problem. - Please trim replies when following-up. The database already has a copy. - Please do not use HTML mail. The GNATS spam-filters are set up to assume that such mail is spam. They are almost always correct. - Do not use content-type/quoted-printable. This will merely scramble your patches into unusability. - Remember, your submissions are going into a database, so any email mangling is undesireable. - Submissions of more than 500k are quarantined as possible spam. If your patch (or traceback) are that large, please consider posting them somewhere on the web and just submitting a URL. - The category for all ports is 'ports', not 'www' if your port is 'www/foo', nor 'misc' if your port is 'misc/bar'. This affects the automated systems that assign and track PRs. - In fact, the 'misc' category is almost always wrong. Its only legitimate uses are for a few things such as build infrastructure and boot loader code. If your problem is with the base system, it is almost certainly either kern or bin (unless you think it is particular to a processor or motherboard, in which case it is i386/amd64/etc.). Thanks. Mark Linimon, for the bugbusting team *http://www.freebsd.org/doc/en_US.ISO8859-1/articles/problem-reports/article.html From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 11:56:06 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AC13416A405 for ; Tue, 20 Mar 2007 11:56:06 +0000 (UTC) (envelope-from samm@os2.kiev.ua) Received: from deepvision.tsua.net (deepvision.tsua.net [212.40.43.22]) by mx1.freebsd.org (Postfix) with ESMTP id 6D53413C483 for ; Tue, 20 Mar 2007 11:56:06 +0000 (UTC) (envelope-from samm@os2.kiev.ua) Received: from [82.207.45.219] by deepvision.tsua.net with esmtpa (Exim 4.66 (FreeBSD)) (envelope-from ) id 1HTcZu-000PZI-RV for freebsd-ports@freebsd.org; Tue, 20 Mar 2007 13:32:35 +0200 Message-ID: <45FFC646.1020206@os2.kiev.ua> Date: Tue, 20 Mar 2007 13:32:22 +0200 From: Alex Samorukov User-Agent: Thunderbird 1.5.0.4 (X11/20060610) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit Subject: mail/spamd - inactive maintainer 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, 20 Mar 2007 11:56:06 -0000 Please, reset maintainer of the mail/spamd. Version in the ports is buggy and outdated, and my PR`s are just ignored. See: http://www.freebsd.org/cgi/query-pr-summary.cgi?category=&severity=&priority=&class=&state=&sort=none&text=spamd&responsible=&multitext=&originator=&release= -- Best regards, Alex Samorukov, SAMM1-RIPE Zend Certified PHP Engineer From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 12:44:19 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8458B16A408 for ; Tue, 20 Mar 2007 12:44:19 +0000 (UTC) (envelope-from Hans.F.Nordhaug@hiMolde.no) Received: from sil.himolde.no (sil.hiMolde.no [158.38.83.3]) by mx1.freebsd.org (Postfix) with ESMTP id D7B1613C4D1 for ; Tue, 20 Mar 2007 12:44:16 +0000 (UTC) (envelope-from Hans.F.Nordhaug@hiMolde.no) Received: from malle.himolde.no ([158.38.68.22]) by sil.himolde.no with InterScan Message Security Suite; Tue, 20 Mar 2007 13:44:13 +0100 Received: from harr.himolde.no (harr.hiMolde.no [158.38.68.20])by malle.himolde.no (8.12.11.20060308/8.12.8) with ESMTP id l2KCiDVE027655for ; Tue, 20 Mar 2007 14:44:13 +0200 Received: from harr.himolde.no (localhost.localdomain [127.0.0.1])by harr.himolde.no (8.13.1/8.13.1) with ESMTP id l2KCiDxB023001for ; Tue, 20 Mar 2007 13:44:13 +0100 Received: (from nordhaug@localhost)by harr.himolde.no (8.13.1/8.13.1/Submit) id l2KCiDg4023000for freebsd-ports@freebsd.org; Tue, 20 Mar 2007 13:44:13 +0100 Date: Tue, 20 Mar 2007 13:44:13 +0100 From: "Hans F. Nordhaug" To: freebsd-ports@freebsd.org Message-ID: <20070320124413.GA22978@hiMolde.no> References: <45FFC646.1020206@os2.kiev.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <45FFC646.1020206@os2.kiev.ua> User-Agent: Mutt/1.4.1i X-imss-version: 2.046 X-imss-result: Passed X-imss-approveListMatch: *@*.no Subject: Re: mail/spamd - inactive maintainer 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, 20 Mar 2007 12:44:19 -0000 * Alex Samorukov [2007-03-20]: > Please, reset maintainer of the mail/spamd. > > Version in the ports is buggy and outdated, and my PR`s are just ignored. > > See: > http://www.freebsd.org/cgi/query-pr-summary.cgi?category=&severity=&priority=&class=&state=&sort=none&text=spamd&responsible=&multitext=&originator=&release= Yes, please get these spamd issues resolved - I'm really looking forward to see your patches being commited. In particular the conflict with SA is annoying. Regards Hans From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 14:04:29 2007 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B3AE816A40F; Tue, 20 Mar 2007 14:04:29 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8936613C458; Tue, 20 Mar 2007 14:04:29 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (delphij@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2KE4SQl095700; Tue, 20 Mar 2007 14:04:28 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2KE4Svv095696; Tue, 20 Mar 2007 14:04:28 GMT (envelope-from delphij) Date: Tue, 20 Mar 2007 14:04:28 GMT From: Xin LI Message-Id: <200703201404.l2KE4Svv095696@freefall.freebsd.org> To: delphij@FreeBSD.org, delphij@FreeBSD.org, freebsd-ports@FreeBSD.org Cc: Subject: Re: ports/108657: [PATCH] mail/spamd: core dump on spamd-setup with "-t" key 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, 20 Mar 2007 14:04:29 -0000 Synopsis: [PATCH] mail/spamd: core dump on spamd-setup with "-t" key Responsible-Changed-From-To: delphij->freebsd-ports Responsible-Changed-By: delphij Responsible-Changed-When: Tue Mar 20 14:03:55 UTC 2007 Responsible-Changed-Why: Return to pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=108657 From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 14:16:48 2007 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D6E7016A408; Tue, 20 Mar 2007 14:16:48 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id B018A13C4D1; Tue, 20 Mar 2007 14:16:48 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (delphij@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2KEGm1d096919; Tue, 20 Mar 2007 14:16:48 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2KEGmKL096915; Tue, 20 Mar 2007 14:16:48 GMT (envelope-from delphij) Date: Tue, 20 Mar 2007 14:16:48 GMT From: Xin LI Message-Id: <200703201416.l2KEGmKL096915@freefall.freebsd.org> To: delphij@FreeBSD.org, delphij@FreeBSD.org, freebsd-ports@FreeBSD.org Cc: Subject: Re: ports/105277: [UPDATE] mail/spamd - improvements and clean up 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, 20 Mar 2007 14:16:48 -0000 Synopsis: [UPDATE] mail/spamd - improvements and clean up Responsible-Changed-From-To: delphij->freebsd-ports Responsible-Changed-By: delphij Responsible-Changed-When: Tue Mar 20 14:16:31 UTC 2007 Responsible-Changed-Why: Return to pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=105277 From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 14:17:19 2007 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 55CA716A4E9; Tue, 20 Mar 2007 14:17:19 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2F2DD13C4E7; Tue, 20 Mar 2007 14:17:19 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (delphij@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2KEHJWi096977; Tue, 20 Mar 2007 14:17:19 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2KEHJaj096973; Tue, 20 Mar 2007 14:17:19 GMT (envelope-from delphij) Date: Tue, 20 Mar 2007 14:17:19 GMT From: Xin LI Message-Id: <200703201417.l2KEHJaj096973@freefall.freebsd.org> To: delphij@FreeBSD.org, delphij@FreeBSD.org, freebsd-ports@FreeBSD.org Cc: Subject: Re: ports/108663: [PATCH] mail/spamd: resolv conflict with sa-spamd and add pfspamd_setup_flags 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, 20 Mar 2007 14:17:19 -0000 Synopsis: [PATCH] mail/spamd: resolv conflict with sa-spamd and add pfspamd_setup_flags Responsible-Changed-From-To: delphij->freebsd-ports Responsible-Changed-By: delphij Responsible-Changed-When: Tue Mar 20 14:17:01 UTC 2007 Responsible-Changed-Why: Return to pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=108663 From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 14:17:42 2007 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ABBA316A405; Tue, 20 Mar 2007 14:17:42 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 8549D13C4D0; Tue, 20 Mar 2007 14:17:42 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (delphij@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2KEHgvf097022; Tue, 20 Mar 2007 14:17:42 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2KEHgW5097018; Tue, 20 Mar 2007 14:17:42 GMT (envelope-from delphij) Date: Tue, 20 Mar 2007 14:17:42 GMT From: Xin LI Message-Id: <200703201417.l2KEHgW5097018@freefall.freebsd.org> To: delphij@FreeBSD.org, delphij@FreeBSD.org, freebsd-ports@FreeBSD.org Cc: Subject: Re: ports/108679: [PATCH] mail/spamlogd fail without PF 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, 20 Mar 2007 14:17:42 -0000 Synopsis: [PATCH] mail/spamlogd fail without PF Responsible-Changed-From-To: delphij->freebsd-ports Responsible-Changed-By: delphij Responsible-Changed-When: Tue Mar 20 14:17:28 UTC 2007 Responsible-Changed-Why: Return to pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=108679 From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 14:20:20 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2E1EF16A407 for ; Tue, 20 Mar 2007 14:20:20 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.freebsd.org (Postfix) with ESMTP id CFA6A13C4C4 for ; Tue, 20 Mar 2007 14:20:19 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id 5E910EB47DA; Tue, 20 Mar 2007 21:51:54 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id FbCkpiiDsoyK; Tue, 20 Mar 2007 21:51:43 +0800 (CST) Received: from [192.168.1.32] (unknown [61.48.135.55]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id BC092EB477B; Tue, 20 Mar 2007 21:51:42 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:organization:user-agent:mime-version:to:cc: subject:references:in-reply-to:x-enigmail-version:content-type; b=DliTokVKRWtkb1lTrbW3lvxK3BzvtB/+KtAbWMaXxY7/ZHZ5LGgcxl5ncz/NqsysE G0cg6hhR5Uu/V2KZJN3Ew== Message-ID: <45FFE6EA.8040608@delphij.net> Date: Tue, 20 Mar 2007 21:51:38 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.10 (Macintosh/20070221) MIME-Version: 1.0 To: Alex Samorukov References: <45FFC646.1020206@os2.kiev.ua> In-Reply-To: <45FFC646.1020206@os2.kiev.ua> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enigC36224081E56C5544E2132AB" Cc: freebsd-ports@freebsd.org Subject: Re: mail/spamd - inactive maintainer 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, 20 Mar 2007 14:20:20 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigC36224081E56C5544E2132AB Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable Alex Samorukov wrote: > Please, reset maintainer of the mail/spamd. >=20 > Version in the ports is buggy and outdated, and my PR`s are just ignore= d. >=20 > See: > http://www.freebsd.org/cgi/query-pr-summary.cgi?category=3D&severity=3D= &priority=3D&class=3D&state=3D&sort=3Dnone&text=3Dspamd&responsible=3D&mu= ltitext=3D&originator=3D&release=3D I've dropped maintainership. Good job you guys blocking my e-mails just because I live in China and simply claim that I'm "inactive", and no, I no longer have any interest to take care for the port. My apologies to: Max. Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enigC36224081E56C5544E2132AB Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFF/+bqOfuToMruuMARCmZtAJ9tX2ssIr/KIUZ5S4B/OTA/vDLMuQCfXXG8 IT0S5BXdcgM4TK8+vs++2Lk= =HL2L -----END PGP SIGNATURE----- --------------enigC36224081E56C5544E2132AB-- From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 14:20:20 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 31D6F16A408 for ; Tue, 20 Mar 2007 14:20:20 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.freebsd.org (Postfix) with ESMTP id CFD9B13C4C7 for ; Tue, 20 Mar 2007 14:20:19 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id 22DD0EB2CAB for ; Tue, 20 Mar 2007 21:54:18 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id Hm8llGcvQMsr for ; Tue, 20 Mar 2007 21:54:11 +0800 (CST) Received: from [192.168.1.32] (unknown [61.48.135.55]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id 104DBEB0B3E for ; Tue, 20 Mar 2007 21:54:10 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:organization:user-agent:mime-version:to: subject:x-enigmail-version:content-type; b=W72cpM/V7SXZY/xFDOKvHfZoG2hULUT6HVRwV9TNMdiUN8PKpgyy6iZgiCE7jc6jy RYRcF9JNs6Ya4baW7euBA== Message-ID: <45FFE77F.6050707@delphij.net> Date: Tue, 20 Mar 2007 21:54:07 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.10 (Macintosh/20070221) MIME-Version: 1.0 To: freebsd-ports@freebsd.org X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig8127084F8977EA70A348DAC4" Subject: Looking for new mail/spamd maintainer 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, 20 Mar 2007 14:20:20 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig8127084F8977EA70A348DAC4 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi, I'd like to look for a new maintainer for mail/spamd. I have a tarball which consists checked out version (i.e. have CVS/ directories to make it easier for future updates) which may be useful for its new maintainer.= Please contact me off-list for this. Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enig8127084F8977EA70A348DAC4 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFF/+d/OfuToMruuMARCrMpAJ4hBBiK8TVKAqEp9a9OwZ5GhAey0gCcDI0S 1ypWtt/sejhu8o2eHWPdpuQ= =aNIk -----END PGP SIGNATURE----- --------------enig8127084F8977EA70A348DAC4-- From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 14:21:38 2007 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C7D7F16A402; Tue, 20 Mar 2007 14:21:38 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id A1B0B13C44B; Tue, 20 Mar 2007 14:21:38 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (delphij@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2KELcWK097861; Tue, 20 Mar 2007 14:21:38 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2KELcFC097854; Tue, 20 Mar 2007 14:21:38 GMT (envelope-from delphij) Date: Tue, 20 Mar 2007 14:21:38 GMT From: Xin LI Message-Id: <200703201421.l2KELcFC097854@freefall.freebsd.org> To: delphij@FreeBSD.org, delphij@FreeBSD.org, freebsd-ports@FreeBSD.org Cc: Subject: Re: ports/97579: [patch] ports mail/spamd to reflect the public hostname in helo dialog 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, 20 Mar 2007 14:21:38 -0000 Synopsis: [patch] ports mail/spamd to reflect the public hostname in helo dialog Responsible-Changed-From-To: delphij->freebsd-ports Responsible-Changed-By: delphij Responsible-Changed-When: Tue Mar 20 14:21:23 UTC 2007 Responsible-Changed-Why: Return to pool. http://www.freebsd.org/cgi/query-pr.cgi?pr=97579 From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 15:00:18 2007 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B26DD16A408 for ; Tue, 20 Mar 2007 15:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 4C68013C487 for ; Tue, 20 Mar 2007 15:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2KF0HKO003343 for ; Tue, 20 Mar 2007 15:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2KF0HjG003340; Tue, 20 Mar 2007 15:00:17 GMT (envelope-from gnats) Date: Tue, 20 Mar 2007 15:00:17 GMT Message-Id: <200703201500.l2KF0HjG003340@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org From: Alex Samorukov Cc: Subject: Re: ports/108663: [PATCH] mail/spamd: resolv conflict with sa-spamd and add pfspamd_setup_flags X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alex Samorukov List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Mar 2007 15:00:18 -0000 The following reply was made to PR ports/108663; it has been noted by GNATS. From: Alex Samorukov To: bug-followup@FreeBSD.org, samm@os2.kiev.ua Cc: Subject: Re: ports/108663: [PATCH] mail/spamd: resolv conflict with sa-spamd and add pfspamd_setup_flags Date: Tue, 20 Mar 2007 16:50:29 +0200 Please, commit this patch. Also, i want to take maintainership for this project. -- Best regards, Alex Samorukov, SAMM1-RIPE Zend Certified PHP Engineer From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 15:17:10 2007 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4019D16A40B; Tue, 20 Mar 2007 15:17:10 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 167A413C4BF; Tue, 20 Mar 2007 15:17:10 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from freefall.freebsd.org (delphij@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2KFH9vb005557; Tue, 20 Mar 2007 15:17:09 GMT (envelope-from delphij@freefall.freebsd.org) Received: (from delphij@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2KFH9Sk005553; Tue, 20 Mar 2007 15:17:09 GMT (envelope-from delphij) Date: Tue, 20 Mar 2007 15:17:09 GMT From: Xin LI Message-Id: <200703201517.l2KFH9Sk005553@freefall.freebsd.org> To: samm@os2.kiev.ua, delphij@FreeBSD.org, freebsd-ports@FreeBSD.org Cc: Subject: Re: ports/108663: [PATCH] mail/spamd: resolv conflict with sa-spamd and add pfspamd_setup_flags 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, 20 Mar 2007 15:17:10 -0000 Synopsis: [PATCH] mail/spamd: resolv conflict with sa-spamd and add pfspamd_setup_flags State-Changed-From-To: open->closed State-Changed-By: delphij State-Changed-When: Tue Mar 20 15:16:59 UTC 2007 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=108663 From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 15:20:14 2007 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68B9F16A40B for ; Tue, 20 Mar 2007 15:20:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 1F6CD13C487 for ; Tue, 20 Mar 2007 15:20:14 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2KFKDis005697 for ; Tue, 20 Mar 2007 15:20:13 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2KFKDXZ005696; Tue, 20 Mar 2007 15:20:13 GMT (envelope-from gnats) Date: Tue, 20 Mar 2007 15:20:13 GMT Message-Id: <200703201520.l2KFKDXZ005696@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/108663: commit references a PR X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Mar 2007 15:20:14 -0000 The following reply was made to PR ports/108663; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/108663: commit references a PR Date: Tue, 20 Mar 2007 15:16:50 +0000 (UTC) delphij 2007-03-20 15:16:44 UTC FreeBSD ports repository Modified files: mail/spamd Makefile mail/spamd/files pfspamd.sh.in Log: - Resolve conflict between sa-spamd and pf-spamd - Add pfspamd_setup_flags to give finer grained control - Give maintainership to submitter Submitted by: Alex Samorukov PR: ports/108663 Revision Changes Path 1.12 +2 -2 ports/mail/spamd/Makefile 1.2 +12 -2 ports/mail/spamd/files/pfspamd.sh.in _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 15:58:13 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A632416A401 for ; Tue, 20 Mar 2007 15:58:13 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.freebsd.org (Postfix) with ESMTP id 97EEB13C469 for ; Tue, 20 Mar 2007 15:58:13 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.8/8.13.8) with ESMTP id l2KFwDHl037517 for ; Tue, 20 Mar 2007 15:58:13 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.8/8.13.8/Submit) id l2KFwDiS037514 for ports@FreeBSD.org; Tue, 20 Mar 2007 15:58:13 GMT (envelope-from erwin) Date: Tue, 20 Mar 2007 15:58:13 GMT From: Erwin Lansing Message-Id: <200703201558.l2KFwDiS037514@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 5.x 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, 20 Mar 2007 15:58:13 -0000 INDEX build failed with errors: Generating INDEX-5 - please wait..pkg_info: not found pkg_info: not found Done. Warning: Duplicate INDEX entry: xotcl-1.5.3_3 Committers on the hook: ahze clement clsung delphij miwi mnag pav rafan tobez vanilla Most recent CVS update was: U LEGAL U databases/p5-DBIx-Perlish/Makefile U databases/p5-DBIx-Perlish/distinfo U devel/p5-Workflow/Makefile U devel/simian/Makefile U devel/simian/distinfo U emulators/xmame/Makefile U graphics/cairo/Makefile U graphics/cairo/distinfo U java/Makefile U java/netbeans5/Makefile U java/netbeans5/distinfo U java/netbeans5/files/patch-etc_netbeans.conf U java/netbeans5/files/pkg-deinstall.in U java/netbeans5/files/pkg-install.in U java/netbeans55/Makefile U java/netbeans55/distinfo U java/netbeans55/files/patch-etc_netbeans.conf U java/netbeans55/files/pkg-deinstall.in U java/netbeans55/files/pkg-install.in U lang/tcl84/Makefile U lang/tcl84-thread/Makefile U lang/xotcl/Makefile U mail/postfix-current/Makefile U mail/postfix-current/distinfo U mail/spamd/Makefile U misc/Makefile U misc/p5-Geography-NationalGrid/Makefile U misc/p5-Geography-NationalGrid/distinfo U misc/p5-Geography-NationalGrid/pkg-descr U misc/p5-Geography-NationalGrid/pkg-plist U misc/p5-Geography-NationalGrid-TW/Makefile U misc/p5-Geography-NationalGrid-TW/distinfo U misc/p5-Geography-NationalGrid-TW/pkg-descr U misc/p5-Geography-NationalGrid-TW/pkg-plist U net/openldap23-server/Makefile U net/openldap24-server/Makefile U net-p2p/i2p/Makefile U www/aolserver/Makefile U www/mod_bw/Makefile U www/mod_bw/distinfo U www/mod_log_sql2/Makefile U www/mod_log_sql2/distinfo U www/mod_log_sql2/pkg-plist U www/p5-HTML-SimpleLinkExtor/Makefile U www/p5-HTML-SimpleLinkExtor/distinfo U www/tdom/Makefile U x11-toolkits/tk84/Makefile U x11-toolkits/tk84/files/pkgIndex.tcl U x11-toolkits/tk84-thread/Makefile U x11-wm/enlightenment/Makefile From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 16:30:30 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 73FAF16A404 for ; Tue, 20 Mar 2007 16:30:30 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.227]) by mx1.freebsd.org (Postfix) with ESMTP id 3031A13C489 for ; Tue, 20 Mar 2007 16:30:30 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by wr-out-0506.google.com with SMTP id 36so1992322wra for ; Tue, 20 Mar 2007 09:30:29 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=VwkXkliKuglFaRnLA43GDrq3k2R+34D4hJGM+hfiaZ5GQs/FReSFUU6X7JBjEBbePg9tjytSmxKdd37syUptDYPyxxbYW/2VX/HCrhgPrOY4WUwY7zaTAnvOPz/6hQXy7FsowUQwNpob3hEXrce4vRA0TxuidzVzniwtrlz0vPc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=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; b=rTHID+wy3cFdWrLqp5BjUXCsMhsJI2pjYg0qacgtISTPbMvsZg/OL9AGXia5bOK0Fv00sAHMB5CQLRdU14DWFVXBmdRYXHi8XLFkj1IrySWOPFxil9tnfmnSZoT5WWr8+Yfb85xvIYgCLBmIK12AdSh1HaclHdu9PRHdSAv2Ke4= Received: by 10.100.94.3 with SMTP id r3mr5199405anb.1174408228969; Tue, 20 Mar 2007 09:30:28 -0700 (PDT) Received: by 10.114.201.2 with HTTP; Tue, 20 Mar 2007 09:30:28 -0700 (PDT) Message-ID: Date: Tue, 20 Mar 2007 19:30:28 +0300 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Joe Marcus Clarke" In-Reply-To: <1174330341.26866.32.camel@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1174330341.26866.32.camel@shumai.marcuscom.com> X-Google-Sender-Auth: 664189c203d4027a Cc: ports@freebsd.org, sem@freebsd.org Subject: Re: Problems running pkgdb -fF 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, 20 Mar 2007 16:30:30 -0000 On 3/19/07, Joe Marcus Clarke wrote: > Running pkgdb -Ff today gives me the following error: Just a "me too" here, and this problem appears during portupgrade runs, too. Also, portupgrade-devel has been almost unusable for me for some time now, on different machines. It's dependency harvesting is quite strange; "portupgrade -a" starts installing a lot of irrelevant packages. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 17:07:54 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EC00B16A403 for ; Tue, 20 Mar 2007 17:07:54 +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 AD19913C4CB for ; Tue, 20 Mar 2007 17:07:54 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from [87.240.16.199] (helo=[192.168.0.2]) by mail.ciam.ru with esmtpa (Exim 4.x) id 1HThoO-0000F5-Ix; Tue, 20 Mar 2007 20:07:52 +0300 Message-ID: <460014E7.7040901@FreeBSD.org> Date: Tue, 20 Mar 2007 20:07:51 +0300 From: Sergey Matveychuk User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Andrew Pantyukhin References: <1174330341.26866.32.camel@shumai.marcuscom.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: Problems running pkgdb -fF 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, 20 Mar 2007 17:07:55 -0000 Andrew Pantyukhin wrote: > On 3/19/07, Joe Marcus Clarke wrote: >> Running pkgdb -Ff today gives me the following error: > > Just a "me too" here, and this problem appears during > portupgrade runs, too. > > Also, portupgrade-devel has been almost unusable for > me for some time now, on different machines. It's > dependency harvesting is quite strange; "portupgrade -a" > starts installing a lot of irrelevant packages. Yes, it's a test release of portupgrade-devel. It waits when I get free time to finish the work. -- Dixi. Sem. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 17:07:56 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 29D6C16A409 for ; Tue, 20 Mar 2007 17:07:56 +0000 (UTC) (envelope-from tcheek@pixelfish.com) Received: from mail01.vmatrixmail.com (mail01.vmatrixmail.com [216.219.244.230]) by mx1.freebsd.org (Postfix) with ESMTP id D905013C4E3 for ; Tue, 20 Mar 2007 17:07:55 +0000 (UTC) (envelope-from tcheek@pixelfish.com) Received: (vmatrix@mail01.vmatrixmail.com) by vmatrixmail.com id S6129488AbXCTQln for ; Tue, 20 Mar 2007 08:41:43 -0800 To: ports@freebsd.org MIME-Version: 1.0 X-Mailer: Rich Media Mail V4. Vmatrix, (C) 2003 From: "Tammie Cheek" Sender: "Tammie Cheek" Message-Id: Date: Tue, 20 Mar 2007 08:41:43 -0800 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Online Video Leads The Trends In Marketing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: tcheek@pixelfish.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Mar 2007 17:07:56 -0000 Greetings!

Are you happy with your results from Social Linux Expo 2007? Did you have what it takes to make the difference between creating excitement and blending in with the competition, between lots of hot leads and a few hard sells ... between success and failure?

Did you have video?

Why video? Video vividly demonstrates the features and benefits of your products. Video captures the praises of your most enthusiastic customers. Video instills interest, reaction and trust. Video sells.

In just 45 days, PixelFish creates marketing videos that become an integral part of your marketing and sales efforts when it streams from your Web site, launches from multimedia email newsletters, plays from CD video brochures and loops from a DVD at your tradeshow booth.

We are PixelFish. We deliver “The Evolution of Video”. And we guarantee results. Click on the videos to the right to see samples of our work.

Contact us today for a free evaluation of your video marketing needs.


Tammie Cheek
PixelFish, Inc.
800.503.3020 x7110
tcheek@pixelfish.com
http://www.pixelfish.com
John's Incredible Pizza Co. Video
NHK Laboratories Video
Network Hardware Resale Video
------------------------------------------------ Unsubscribe to safely remove yourself from this email list, please send email to info@pixelfish.com. Powered by Pixelfish http://www.pixelfish.com From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 17:22:48 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BAD2816A400; Tue, 20 Mar 2007 17:22:48 +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 78BBC13C45A; Tue, 20 Mar 2007 17:22:48 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from [87.240.16.199] (helo=[192.168.0.2]) by mail.ciam.ru with esmtpa (Exim 4.x) id 1HTi2m-0000XB-Vw; Tue, 20 Mar 2007 20:22:45 +0300 Message-ID: <46001864.8050005@FreeBSD.org> Date: Tue, 20 Mar 2007 20:22:44 +0300 From: Sergey Matveychuk User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Andrew Pantyukhin References: <1174330341.26866.32.camel@shumai.marcuscom.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, fullermd@over-yonder.net, parv@pair.com Subject: Re: Problems running pkgdb -fF 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, 20 Mar 2007 17:22:48 -0000 Andrew Pantyukhin wrote: > On 3/19/07, Joe Marcus Clarke wrote: >> Running pkgdb -Ff today gives me the following error: > > Just a "me too" here, and this problem appears during > portupgrade runs, too. > Try the patch please. I could not find a box where I can reproduce the error, so it's not tested. Just a obvious quick fix. Index: pkgtools.rb =================================================================== RCS file: /cvsroot/portupgrade/pkgtools/lib/pkgtools.rb,v retrieving revision 1.16.2.4 diff -u -r1.16.2.4 pkgtools.rb --- pkgtools.rb 27 Feb 2007 11:34:59 -0000 1.16.2.4 +++ pkgtools.rb 20 Mar 2007 17:18:35 -0000 @@ -790,8 +790,7 @@ contents_file = $pkgdb.pkg_contents(pkgname) if grep_q_file(/^@comment[ \t]+ORIGIN:/, contents_file) - command = shelljoin('sed', - "s|^\\(@comment[ \t][ \t]*ORIGIN:\\).*$|\\1#{origin}|") + command = "sed s|^\\(@comment[ \t][ \t]*ORIGIN:\\).*$|\\1#{origin}|" else command = "(cat; echo '@comment ORIGIN:#{origin}')" end -- Dixi. Sem. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 17:34:06 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B9C2416A403 for ; Tue, 20 Mar 2007 17:34:06 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from dione.picobyte.net (81-86-230-94.dsl.pipex.com [81.86.230.94]) by mx1.freebsd.org (Postfix) with SMTP id 3F73113C45A for ; Tue, 20 Mar 2007 17:34:01 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from localhost.localdomain (elara.picobyte.net [192.168.254.242]) by dione.picobyte.net (Postfix) with ESMTP id 01A2CB8C3 for ; Tue, 20 Mar 2007 17:33:58 +0000 (GMT) Content-Disposition: inline Content-Type: text/plain MIME-Version: 1.0 Date: Tue, 20 Mar 2007 17:33:57 UT From: shaun@FreeBSD.org To: ports@FreeBSD.org X-Mailer: portscout/0.7.1 Message-Id: <20070320173358.01A2CB8C3@dione.picobyte.net> Content-Transfer-Encoding: quoted-printable Cc: Subject: FreeBSD ports you maintain which are out of date 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, 20 Mar 2007 17:34:06 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://beta.inerd.com/portscout/ports@freebsd.org.html Port | Current version | New v= ersion ------------------------------------------------+-----------------+------= ------ astro/xtide | 2.8.3 | 2.9.1 ------------------------------------------------+-----------------+------= ------ audio/q-audio | 1.2 | 2.4 ------------------------------------------------+-----------------+------= ------ biology/tRNAscan-SE | 1.21 | 1.23 ------------------------------------------------+-----------------+------= ------ cad/gmsh | 2.0.0 | 2.0.5 ------------------------------------------------+-----------------+------= ------ chinese/scim-tables | 0.5.4 | 0.5.7 ------------------------------------------------+-----------------+------= ------ databases/libdbi | 0.8.1 | 0.8.2 ------------------------------------------------+-----------------+------= ------ databases/namazu2 | 2.0.16 | 2.0.1= 7 ------------------------------------------------+-----------------+------= ------ databases/postgis-jdbc | 1.1.1 | 1.2.1 ------------------------------------------------+-----------------+------= ------ databases/sqsh | 2.1.3 | 2.1.4 ------------------------------------------------+-----------------+------= ------ devel/global | 5.4 | 5.4.1 ------------------------------------------------+-----------------+------= ------ devel/gwenhywfar | 1.13.2 | 2.5.4 ------------------------------------------------+-----------------+------= ------ devel/p5-Getopt-Mixed | 1.008 | 1.09 ------------------------------------------------+-----------------+------= ------ devel/premake | 2.4 | 3.3-r= c3 ------------------------------------------------+-----------------+------= ------ devel/stlport | 4.6.2 | 5.1.2 ------------------------------------------------+-----------------+------= ------ finance/aqbanking | 1.0.11 | 2.2.9 ------------------------------------------------+-----------------+------= ------ finance/ktoblzcheck | 1.12 | 1.13 ------------------------------------------------+-----------------+------= ------ finance/quantlib | 0.3.5 | 0.4.0 ------------------------------------------------+-----------------+------= ------ ftp/pavuk | 0.9.34 | 0.9.3= 5 ------------------------------------------------+-----------------+------= ------ games/crossfire-server | 1.9.1 | 1.10.= 0.maps ------------------------------------------------+-----------------+------= ------ games/robocode | 1.0.7 | 1.2.6= A ------------------------------------------------+-----------------+------= ------ games/teg | 0.11.1 | 0.11.= 2 ------------------------------------------------+-----------------+------= ------ graphics/aqsis | 1.0.1 | 1.2.0 ------------------------------------------------+-----------------+------= ------ graphics/enblend | 2.5 | 3.0 ------------------------------------------------+-----------------+------= ------ graphics/gdal | 1.3.1 | 1.4.0 ------------------------------------------------+-----------------+------= ------ graphics/gephex | 0.4.3b | 0.4.4 ------------------------------------------------+-----------------+------= ------ graphics/glew | 1.3.5 | 1.3.6 ------------------------------------------------+-----------------+------= ------ graphics/gnofract4d | 3.1 | 3.3 ------------------------------------------------+-----------------+------= ------ graphics/libgeotiff | 1.2.2 | 1.2.3 ------------------------------------------------+-----------------+------= ------ graphics/pixie | 1.6.3 | 2.0.2 ------------------------------------------------+-----------------+------= ------ graphics/q-graph | 1.5 | 1.7 ------------------------------------------------+-----------------+------= ------ irc/irssi-scripts | 20061009 | 20070= 201 ------------------------------------------------+-----------------+------= ------ japanese/linux-JM | 20050615 | 20070= 315 ------------------------------------------------+-----------------+------= ------ java/jakarta-regexp | 1.4 | 1.5 ------------------------------------------------+-----------------+------= ------ lang/tuareg-mode.el | 1.46.0 | 1.46.= 2 ------------------------------------------------+-----------------+------= ------ mail/bbmail | 0.8.3 | 0.9.2 ------------------------------------------------+-----------------+------= ------ mail/milter-greylist-devel | 2.0b1 | 3.1.7 ------------------------------------------------+-----------------+------= ------ mail/sqlgrey | 1.7.4 | 1.7.5 ------------------------------------------------+-----------------+------= ------ mail/sympa | 4.1.2 | 5.3b.= 1 ------------------------------------------------+-----------------+------= ------ mail/sympa-elixus | 20041024 | 5.3b.= 1 ------------------------------------------------+-----------------+------= ------ math/fxt | 2006.12.17 | 2007.= 03.19 ------------------------------------------------+-----------------+------= ------ misc/gretl | 1.6.0 | 1.6.1 ------------------------------------------------+-----------------+------= ------ multimedia/any2dvd | 0.32 | 0.34 ------------------------------------------------+-----------------+------= ------ net/dictd | 1.10.4 | 1.10.= 8 ------------------------------------------------+-----------------+------= ------ net/gq | 1.2.1 | 1.3.2 ------------------------------------------------+-----------------+------= ------ net/lam | 7.1.2 | 7.1.4= b2 ------------------------------------------------+-----------------+------= ------ net/zabbix-agent | 1.1.6 | 1.3.3 ------------------------------------------------+-----------------+------= ------ net-mgmt/nrpe | 1.9 | 2.8b1 ------------------------------------------------+-----------------+------= ------ net-mgmt/zabbix | 1.1.6 | 1.3.3 ------------------------------------------------+-----------------+------= ------ print/fontforge | 20060822 | 20070= 313 ------------------------------------------------+-----------------+------= ------ print/ft2demos | 2.2.1 | 2.3.2 ------------------------------------------------+-----------------+------= ------ print/ghostscript-afpl-nox11 | 8.54 | 8.56 ------------------------------------------------+-----------------+------= ------ print/ghostscript-gnu-nox11 | 7.07 | 8.56 ------------------------------------------------+-----------------+------= ------ print/ghostscript-gpl-nox11 | 8.15 | 8.56 ------------------------------------------------+-----------------+------= ------ security/blocksshd | 1.0 | 1.0.1 ------------------------------------------------+-----------------+------= ------ security/dropbear | 0.49 | 0.255 ------------------------------------------------+-----------------+------= ------ security/fakeroot | 1.5.8 | 1.6.4 ------------------------------------------------+-----------------+------= ------ security/gnome-ssh-askpass | 3.6p1 | 4.6p1 ------------------------------------------------+-----------------+------= ------ security/libmcrypt | 2.5.7 | 2.5.8 ------------------------------------------------+-----------------+------= ------ security/mcrypt | 2.6.4 | 2.6.5 ------------------------------------------------+-----------------+------= ------ security/nettle | 1.14 | 1.15 ------------------------------------------------+-----------------+------= ------ sysutils/heirloom | 060122 | 07022= 7 ------------------------------------------------+-----------------+------= ------ sysutils/memtest86 | 3.2 | 3.3 ------------------------------------------------+-----------------+------= ------ sysutils/psmisc | 21.9 | 22.3 ------------------------------------------------+-----------------+------= ------ textproc/dict | 1.10.4 | 1.10.= 8 ------------------------------------------------+-----------------+------= ------ textproc/filepp | 1.7.1 | 1.8.0 ------------------------------------------------+-----------------+------= ------ textproc/hy-aspell | 6-hy-0.0.3-0 | 6-hy-= 0.10.0-0 ------------------------------------------------+-----------------+------= ------ textproc/libuninameslist | 20050712 | 20060= 907 ------------------------------------------------+-----------------+------= ------ textproc/po4a | 0.23 | 0.29 ------------------------------------------------+-----------------+------= ------ textproc/scim | 1.4.4 | 1.4.5 ------------------------------------------------+-----------------+------= ------ textproc/scim-table-imengine | 0.5.6 | 0.5.7 ------------------------------------------------+-----------------+------= ------ textproc/skim | 1.4.4 | 1.4.5 ------------------------------------------------+-----------------+------= ------ textproc/txt2man | 1.5.3 | 1.5.4 ------------------------------------------------+-----------------+------= ------ www/phpadsnew | 2.0.9 | 2.0.9= -pr1 ------------------------------------------------+-----------------+------= ------ www/surfraw | 1.0.7 | 1.0.8 ------------------------------------------------+-----------------+------= ------ x11-fm/gprename | 2.0 | 2.1 ------------------------------------------------+-----------------+------= ------ x11-toolkits/qwt | 4.2.0 | 5.0.1 ------------------------------------------------+-----------------+------= ------ x11-wm/qlwm | 3.1 | 4.1 ------------------------------------------------+-----------------+------= ------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://beta.inerd.com/portscout-portconfig.txt If you need help, have any problems, find a bug in this software, or wish to stop (or start!) receiving portscout reminders, feel free to contact me at shaun@FreeBSD.org. Thanks. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 17:56:36 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 27CF516A402 for ; Tue, 20 Mar 2007 17:56:36 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.freebsd.org (Postfix) with ESMTP id 0188013C45B for ; Tue, 20 Mar 2007 17:56:36 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.8/8.13.8) with ESMTP id l2KHuZpm027481 for ; Tue, 20 Mar 2007 17:56:35 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.8/8.13.8/Submit) id l2KHuZmk027442 for ports@FreeBSD.org; Tue, 20 Mar 2007 17:56:35 GMT (envelope-from erwin) Date: Tue, 20 Mar 2007 17:56:35 GMT From: Erwin Lansing Message-Id: <200703201756.l2KHuZmk027442@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 5.x 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, 20 Mar 2007 17:56:36 -0000 INDEX build failed with errors: Generating INDEX-5 - please wait..pkg_info: not found pkg_info: not found Done. Warning: Duplicate INDEX entry: xotcl-1.5.3_3 Committers on the hook: ahze clement clsung delphij ijliao miwi mnag naddy pav rafan tobez vanilla Most recent CVS update was: U audio/vorbis-tools/Makefile U devel/p5-Proc-Queue/Makefile U devel/p5-Proc-Queue/distinfo U devel/p5-SVN-Mirror/Makefile U devel/p5-SVN-Mirror/distinfo U devel/rubygem-builder/Makefile U devel/rubygem-builder/distinfo U devel/rubygem-builder/pkg-plist U mail/spamd/Makefile U mail/spamd/files/pfspamd.sh.in U mail/squirrelmail-devel/Makefile U mail/squirrelmail-devel/files/patch-class-deliver-Deliver_SMTP.class.php U mail/squirrelmail-devel/files/patch-functions-imap_messages.php U multimedia/xmms/Makefile From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 18:06:07 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A0EF016A402 for ; Tue, 20 Mar 2007 18:06:07 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.228]) by mx1.freebsd.org (Postfix) with ESMTP id 5DAD213C468 for ; Tue, 20 Mar 2007 18:06:07 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by wr-out-0506.google.com with SMTP id 36so2045268wra for ; Tue, 20 Mar 2007 11:06:07 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=ACWGYv5Igg4UXSZgesivpiLT/QTuyGN38FpMEMXoBnaHndVitENOJGfg4kfw51/TksAS6CwwDv7vCozf65tRSO1amWIGs7J0efg9dwNMDkBhbblIuK+KqHeO5ZNilu1198khP1RfNtMuQ8fdn4p3JQF+PzlpnYbB9z1js8dk2js= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=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; b=nPKPNTmz21vecVybhDHblWkkfCdxfya0Yr3+/3IT3nt3jV38AYO7/zLTYYc5AKogZo0TzW+d6BsX5EJ4S/qowX0TRrIALiqoTRELe+8/GtKaLZnwqtxCPlklwFrLf/oY/yhG6oN8dM72CEKv7/19ZpjJa1467UQh2GHB/7FRJ8s= Received: by 10.90.63.16 with SMTP id l16mr1183643aga.1174413966885; Tue, 20 Mar 2007 11:06:06 -0700 (PDT) Received: by 10.114.201.2 with HTTP; Tue, 20 Mar 2007 11:06:06 -0700 (PDT) Message-ID: Date: Tue, 20 Mar 2007 21:06:06 +0300 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Sergey Matveychuk" In-Reply-To: <46001864.8050005@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1174330341.26866.32.camel@shumai.marcuscom.com> <46001864.8050005@FreeBSD.org> X-Google-Sender-Auth: 62c0c4d54f10fd22 Cc: ports@freebsd.org, fullermd@over-yonder.net, parv@pair.com Subject: Re: Problems running pkgdb -fF 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, 20 Mar 2007 18:06:07 -0000 On 3/20/07, Sergey Matveychuk wrote: > Andrew Pantyukhin wrote: > > On 3/19/07, Joe Marcus Clarke wrote: > >> Running pkgdb -Ff today gives me the following error: > > > > Just a "me too" here, and this problem appears during > > portupgrade runs, too. > > > > Try the patch please. I could not find a box where I can reproduce the > error, so it's not tested. Just a obvious quick fix. > > Index: pkgtools.rb > =================================================================== > RCS file: /cvsroot/portupgrade/pkgtools/lib/pkgtools.rb,v > retrieving revision 1.16.2.4 > diff -u -r1.16.2.4 pkgtools.rb > --- pkgtools.rb 27 Feb 2007 11:34:59 -0000 1.16.2.4 > +++ pkgtools.rb 20 Mar 2007 17:18:35 -0000 > @@ -790,8 +790,7 @@ > contents_file = $pkgdb.pkg_contents(pkgname) > > if grep_q_file(/^@comment[ \t]+ORIGIN:/, contents_file) > - command = shelljoin('sed', > - "s|^\\(@comment[ \t][ > \t]*ORIGIN:\\).*$|\\1#{origin}|") > + command = "sed s|^\\(@comment[ \t][ \t]*ORIGIN:\\).*$|\\1#{origin}|" > else > command = "(cat; echo '@comment ORIGIN:#{origin}')" > end > Stale origin: 'x11-wm/fluxbox-devel': perhaps moved or obsoleted. -> The port 'x11-wm/fluxbox-devel' was moved to 'x11-wm/fluxbox' on 2007-03-19 because: "Merged into x11-wm/fluxbox" 1x11-wm/fluxbox: not found ^(@comment[: not found sed: 1: "s": substitute pattern can not be delimited by newline or backslash Fixed. (-> x11-wm/fluxbox) At least the error is shorter now. I can make my /var/db/pkg available if you want. From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 18:26:24 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CF7016A409 for ; Tue, 20 Mar 2007 18:26:24 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from alnrmhc11.comcast.net (alnrmhc11.comcast.net [206.18.177.51]) by mx1.freebsd.org (Postfix) with ESMTP id 18B1613C4D9 for ; Tue, 20 Mar 2007 18:26:23 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from icarus.home.lan (failure[71.198.0.135]) by comcast.net (alnrmhc11) with ESMTP id <20070320182622b11006a4e5e>; Tue, 20 Mar 2007 18:26:23 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id AFD1D1FA03D; Tue, 20 Mar 2007 11:26:02 -0700 (PDT) Date: Tue, 20 Mar 2007 11:26:02 -0700 From: Jeremy Chadwick To: freebsd-ports@freebsd.org Message-ID: <20070320182602.GA71050@icarus.home.lan> Mail-Followup-To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) Subject: lang/php5 - duplicate script for target "main/internal_functions.lo" 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, 20 Mar 2007 18:26:24 -0000 Anyone make heads or tails of the warning? eos# make install ===> Installing for php5-5.2.1_3 ===> php5-5.2.1_3 depends on executable in : pkg-config - found ===> php5-5.2.1_3 depends on shared library: xml2.5 - found ===> Generating temporary packing list ===> Checking if lang/php5 already installed "Makefile", line 524: warning: duplicate script for target "main/internal_functions.lo" ignored Installing PHP CLI binary: /usr/local/bin/ Installing PHP CLI man page: /usr/local/man/man1/ {...snip...} eos# cat /var/db/ports/php5/options # This file is auto-generated by 'make config'. # No user-servicable parts inside! # Options for php5-5.2.1_3 _OPTIONS_READ=php5-5.2.1_3 WITH_CLI=true WITH_CGI=true WITHOUT_APACHE=true WITHOUT_DEBUG=true WITHOUT_SUHOSIN=true WITH_MULTIBYTE=true WITHOUT_IPV6=true WITHOUT_MAILHEAD=true WITH_REDIRECT=true WITH_DISCARD=true WITHOUT_FASTCGI=true WITH_PATHINFO=true -- | 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 Tue Mar 20 19:16:20 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6661216A400 for ; Tue, 20 Mar 2007 19:16:20 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from lab.alexdupre.com (lab.alexdupre.com [81.174.31.42]) by mx1.freebsd.org (Postfix) with ESMTP id F32DD13C448 for ; Tue, 20 Mar 2007 19:16:19 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: (qmail 58396 invoked from network); 20 Mar 2007 19:16:18 -0000 Received: from unknown (HELO ?192.168.178.2?) (192.168.178.2) by lab.alexdupre.com with SMTP; 20 Mar 2007 19:16:18 -0000 Message-ID: <46003302.1040908@FreeBSD.org> Date: Tue, 20 Mar 2007 20:16:18 +0100 From: Alex Dupre User-Agent: Thunderbird 1.5.0.10 (X11/20070310) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <20070320182602.GA71050@icarus.home.lan> In-Reply-To: <20070320182602.GA71050@icarus.home.lan> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: lang/php5 - duplicate script for target "main/internal_functions.lo" 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, 20 Mar 2007 19:16:20 -0000 Jeremy Chadwick wrote: > Anyone make heads or tails of the warning? Simply gnore it, or come up with a patch that eliminates it. -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 19:53:21 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4673E16A405 for ; Tue, 20 Mar 2007 19:53:21 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao101.cox.net (eastrmmtao101.cox.net [68.230.240.7]) by mx1.freebsd.org (Postfix) with ESMTP id 011DA13C4D3 for ; Tue, 20 Mar 2007 19:53:20 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao101.cox.net (InterMail vM.7.05.02.00 201-2174-114-20060621) with ESMTP id <20070320195319.DBAA2563.eastrmmtao101.cox.net@eastrmimpo02.cox.net>; Tue, 20 Mar 2007 15:53:19 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo02.cox.net with bizsmtp id d7tJ1W00g4iy4EG0000000; Tue, 20 Mar 2007 15:53:19 -0400 Date: Tue, 20 Mar 2007 14:55:09 -0500 To: "Kris Kennaway" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <20070320171622.GA12902@xor.obsecurity.org> Content-Transfer-Encoding: Quoted-Printable Message-ID: In-Reply-To: <20070320171622.GA12902@xor.obsecurity.org> User-Agent: Opera Mail/9.10 (Linux) Cc: freebsd-ports@freebsd.org Subject: Re: [ports-amd64@pointyhat.freebsd.org: linuxdcpp-0.0.1.20070206 failed on amd64 7] 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, 20 Mar 2007 19:53:21 -0000 On Tue, 20 Mar 2007 12:16:22 -0500, Kris Kennaway = = wrote: > Dear Maintainer, > > As you may know, in the near future FreeBSD 7.x will be switching from= > the gcc 3.4 compiler to gcc 4.x. Unfortunately your port fails to > build with the new compiler; see the log below. > > To ease the disruption to users and to avoid further work later on, > can you please work (with the upstream developers if necessary) on > fixing this error? > > In many cases it requires only simple code changes, and these may > already have been submitted to the developers by other projects > (thesedays many Linux distributions use gcc 4.1, so chances are they > have fixed the error already), or the patches may be found in their > package repositories. > > You should be able to reproduce it yourself simply by installing the > lang/gcc41 port and then setting the variables > > CC=3D/usr/local/bin/gcc41 > CXX=3D/usr/local/bin/g++41 > > in your environment (Note: some ports do not respect these variables > currently, but this is another bug that should be fixed). I can't reproduce it. Any idea why I can't? Thanks. # pkg_info | grep gcc gcc-4.1.3_20070312 GNU Compiler Collection 4.1 # make -DGCC4 =3D=3D=3D> Extracting for linuxdcpp-0.0.1.20070206 =3D> MD5 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. =3D> SHA256 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. [...] =3D=3D=3D> Building for linuxdcpp-0.0.1.20070206 scons: Reading SConscript files ... Checking for /usr/local/bin/g++41 >=3D 3.4...(cached) yes [...] scons: Building targets ... /usr/local/bin/g++41 -o build/client/AdcCommand.o -c -O2 = -fno-strict-aliasing -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOURCE= = -D_FILE_OFFSET_BITS=3D64 -DICONV_CONST=3Dconst -D_DATADIR=3D'"/usr/local= /share"' = client/AdcCommand.cpp /usr/local/bin/g++41 -o build/client/AdcHub.o -c -O2 -fno-strict-aliasin= g = -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOURCE -D_FILE_OFFSET_BITS=3D= 64 = -DICONV_CONST=3Dconst -D_DATADIR=3D'"/usr/local/share"' client/AdcHub.cp= p /usr/local/bin/g++41 -o build/client/ADLSearch.o -c -O2 = -fno-strict-aliasing -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOURCE= = -D_FILE_OFFSET_BITS=3D64 -DICONV_CONST=3Dconst -D_DATADIR=3D'"/usr/local= /share"' = client/ADLSearch.cpp [...goes on without failure...] Cheers, Mezz > Thanks, > Kris > > ----- Forwarded message from User Ports-amd64 = > ----- > > X-Original-To: kkenn@localhost > Delivered-To: kkenn@localhost.obsecurity.org > X-Original-To: kris@FreeBSD.org > Delivered-To: kris@FreeBSD.org > Date: Tue, 20 Mar 2007 14:48:40 GMT > From: User Ports-amd64 > To: kris@FreeBSD.org > Subject: linuxdcpp-0.0.1.20070206 failed on amd64 7 > X-UIDL: Mlf"!%Fc!!:#]"!L):"! > X-Bogosity: Ham, tests=3Dbogofilter, spamicity=3D0.000000, version=3D1= .1.5 > > building linuxdcpp-0.0.1.20070206 on hammer2.isc.gumbysoft.com > in directory /usr2/pkgbuild/7/chroot/79 > building for: 7.0-CURRENT amd64 > maintained by: mezz@FreeBSD.org > port directory: /usr/ports/net-p2p/linuxdcpp > build started at Tue Mar 20 14:47:37 UTC 2007 > FETCH_DEPENDS=3D > PATCH_DEPENDS=3D > EXTRACT_DEPENDS=3D > BUILD_DEPENDS=3Datk-1.12.4.tbz bitstream-vera-1.10_2.tbz cairo-1.2.6_1= .tbz = > expat-2.0.0_1.tbz fontconfig-2.3.2_7,1.tbz freetype2-2.2.1_1.tbz = > gettext-0.16.1.tbz glib-2.12.11.tbz gtk-2.10.11.tbz = > hicolor-icon-theme-0.9_2.tbz intltool-0.35.5_2.tbz jpeg-6b_4.tbz = > libXft-2.1.7_1.tbz libdrm-2.0.2.tbz libglade2-2.6.0_2.tbz = > libiconv-1.9.2_2.tbz libxml2-2.6.27.tbz p5-XML-Parser-2.34_2.tbz = > pango-1.14.10.tbz perl-5.8.8.tbz pkg-config-0.21.tbz png-1.2.14.tbz = > python24-2.4.4.tbz scons-0.96.94.tbz shared-mime-info-0.20.tbz = > tiff-3.8.2_1.tbz xmlcatmgr-2.2.tbz xorg-fonts-encodings-6.9.0_1.tbz = > xorg-fonts-truetype-6.9.0.tbz xorg-libraries-6.9.0_1.tbz > RUN_DEPENDS=3Datk-1.12.4.tbz bitstream-vera-1.10_2.tbz cairo-1.2.6_1.t= bz = > expat-2.0.0_1.tbz fontconfig-2.3.2_7,1.tbz freetype2-2.2.1_1.tbz = > gettext-0.16.1.tbz glib-2.12.11.tbz gtk-2.10.11.tbz = > hicolor-icon-theme-0.9_2.tbz jpeg-6b_4.tbz libXft-2.1.7_1.tbz = > libdrm-2.0.2.tbz libglade2-2.6.0_2.tbz libiconv-1.9.2_2.tbz = > libxml2-2.6.27.tbz pango-1.14.10.tbz perl-5.8.8.tbz pkg-config-0.21.tb= z = > png-1.2.14.tbz python24-2.4.4.tbz shared-mime-info-0.20.tbz = > tiff-3.8.2_1.tbz xmlcatmgr-2.2.tbz xorg-fonts-encodings-6.9.0_1.tbz = > xorg-fonts-truetype-6.9.0.tbz xorg-libraries-6.9.0_1.tbz > prefixes: LOCALBASE=3Dusr/local X11BASE=3Dusr/X11R6 > add_pkg > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= > =3D> linuxdcpp-0.0.1.20070206.tar.bz2 doesn't seem to exist in = > /tmp/distfiles/. > =3D> Attempting to fetch from = > ftp://freebsd.isc.org/pub/FreeBSD/ports/distfiles/. > linuxdcpp-0.0.1.20070206.tar.bz2 341 kB 2176 kBp= s > =3D> MD5 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. > =3D> SHA256 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= > add_pkg > =3D=3D=3D> Extracting for linuxdcpp-0.0.1.20070206 > =3D> MD5 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. > =3D> SHA256 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > add_pkg > =3D=3D=3D> Patching for linuxdcpp-0.0.1.20070206 > =3D=3D=3D> Applying FreeBSD patches for linuxdcpp-0.0.1.20070206 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > add_pkg atk-1.12.4.tbz bitstream-vera-1.10_2.tbz cairo-1.2.6_1.tbz = > expat-2.0.0_1.tbz fontconfig-2.3.2_7,1.tbz freetype2-2.2.1_1.tbz = > gettext-0.16.1.tbz glib-2.12.11.tbz gtk-2.10.11.tbz = > hicolor-icon-theme-0.9_2.tbz intltool-0.35.5_2.tbz jpeg-6b_4.tbz = > libXft-2.1.7_1.tbz libdrm-2.0.2.tbz libglade2-2.6.0_2.tbz = > libiconv-1.9.2_2.tbz libxml2-2.6.27.tbz p5-XML-Parser-2.34_2.tbz = > pango-1.14.10.tbz perl-5.8.8.tbz pkg-config-0.21.tbz png-1.2.14.tbz = > python24-2.4.4.tbz scons-0.96.94.tbz shared-mime-info-0.20.tbz = > tiff-3.8.2_1.tbz xmlcatmgr-2.2.tbz xorg-fonts-encodings-6.9.0_1.tbz = > xorg-fonts-truetype-6.9.0.tbz xorg-libraries-6.9.0_1.tbz > adding dependencies > pkg_add atk-1.12.4.tbz > Removing stale symlinks from /usr/bin... > Skipping /usr/bin/perl > Skipping /usr/bin/perl5 > Done. > Creating various symlinks in /usr/bin... > Symlinking /usr/local/bin/perl5.8.8 to /usr/bin/perl > Symlinking /usr/local/bin/perl5.8.8 to /usr/bin/perl5 > Done. > Cleaning up /etc/make.conf... Done. > Spamming /etc/make.conf... Done. > Cleaning up /etc/manpath.config... Done. > Spamming /etc/manpath.config... Done. > pkg_add bitstream-vera-1.10_2.tbz > Running fc-cache to build fontconfig cache... > fc-cache: "/usr/X11R6/lib/X11/fonts": caching, 0 fonts, 1 dirs > fc-cache: "/usr/X11R6/lib/X11/fonts/local": caching, 0 fonts, 0 dirs > fc-cache: "/root/.fonts": skipping, no such directory > fc-cache: succeeded > /usr/X11R6/bin/fc-cache: "lib/X11/fonts/bitstream-vera": caching, 10 = > fonts, 0 dirs > /usr/X11R6/bin/fc-cache: succeeded > > IMPORTANT - READ CAREFULLY: Please read the COPYRIGHT included with = > these fonts > before using. The copyright can be found at = > /usr/X11R6/lib/X11/fonts/bitstream-vera/COPYRIGHT.TXT. To > use these fonts, follow the instructions below. > > Make sure that the freetype module is loaded. If it is not, add the = > following > line to the "Modules" section of your X Windows configuration file: > > Load "freetype" > > Add the following line to the "Files" section of X Windows configurati= on = > file: > > FontPath "/usr/X11R6/lib/X11/fonts/bitstream-vera/" > > Note: your X Windows configuration file is typically /etc/X11/XF86Conf= ig > if you are using XFree86, and /etc/X11/xorg.conf if you are using X.Or= g. > > pkg_add cairo-1.2.6_1.tbz > pkg_add expat-2.0.0_1.tbz > skipping expat-2.0.0_1, already added > pkg_add fontconfig-2.3.2_7,1.tbz > skipping fontconfig-2.3.2_7,1, already added > pkg_add freetype2-2.2.1_1.tbz > skipping freetype2-2.2.1_1, already added > pkg_add gettext-0.16.1.tbz > skipping gettext-0.16.1, already added > pkg_add glib-2.12.11.tbz > skipping glib-2.12.11, already added > pkg_add gtk-2.10.11.tbz > fc-cache: "/usr/X11R6/lib/X11/fonts/TTF": caching, 12 fonts, 0 dirs > fc-cache: succeeded > Running fc-cache to build fontconfig cache... > fc-cache: "/usr/X11R6/lib/X11/fonts": caching, 0 fonts, 4 dirs > fc-cache: "/usr/X11R6/lib/X11/fonts/local": caching, 0 fonts, 0 dirs > fc-cache: "/usr/X11R6/lib/X11/fonts/bitstream-vera": caching, 10 fonts= , = > 0 dirs > fc-cache: "/usr/X11R6/lib/X11/fonts/encodings": caching, 0 fonts, 1 di= rs > fc-cache: "/usr/X11R6/lib/X11/fonts/encodings/large": caching, 0 fonts= , = > 0 dirs > fc-cache: "/usr/X11R6/lib/X11/fonts/TTF": caching, 12 fonts, 0 dirs > fc-cache: "/root/.fonts": skipping, no such directory > fc-cache: succeeded > pkg_add hicolor-icon-theme-0.9_2.tbz > skipping hicolor-icon-theme-0.9_2, already added > pkg_add intltool-0.35.5_2.tbz > pkg_add jpeg-6b_4.tbz > skipping jpeg-6b_4, already added > pkg_add libXft-2.1.7_1.tbz > skipping libXft-2.1.7_1, already added > pkg_add libdrm-2.0.2.tbz > skipping libdrm-2.0.2, already added > pkg_add libglade2-2.6.0_2.tbz > + Creating /usr/local/share/sgml/catalog > + Registering CATALOG catalog.ports (SGML) > + Creating /usr/local/share/sgml/catalog.ports > + Creating /usr/local/share/xml/catalog > + Registering nextCatalog catalog.ports (XML) > + Creating /usr/local/share/xml/catalog.ports > > The following catalogs are installed: > > 1) ${PREFIX}/share/sgml/catalog > > The top level catalog for SGML stuff. It is not changed > by any ports/packages except textproc/xmlcatmgr. > > 2) ${PREFIX}/share/sgml/catalog.ports > > This catalog is for handling SGML stuff installed under > ${PREFIX}/share/sgml. It is changed by ports/packages. > > 3) ${PREFIX}/share/xml/catalog > > The top level catalog for XML stuff. It is not changed > by any ports/packages except textproc/xmlcatmgr. > > 4) ${PREFIX}/share/xml/catalog.ports > > This catalog is for handling XML stuff installed under > ${PREFIX}/share/xml. It is changed by ports/packages. > > > =3D=3D=3D=3D > Note that some of the standard modules are provided as separate > ports since they require extra dependencies: > > bsddb databases/py-bsddb > gdbm databases/py-gdbm > tkinter x11-toolkits/py-tkinter > > Install them as needed. > =3D=3D=3D=3D > > pkg_add libiconv-1.9.2_2.tbz > skipping libiconv-1.9.2_2, already added > pkg_add libxml2-2.6.27.tbz > skipping libxml2-2.6.27, already added > pkg_add p5-XML-Parser-2.34_2.tbz > skipping p5-XML-Parser-2.34_2, already added > pkg_add pango-1.14.10.tbz > skipping pango-1.14.10, already added > pkg_add perl-5.8.8.tbz > skipping perl-5.8.8, already added > pkg_add pkg-config-0.21.tbz > skipping pkg-config-0.21, already added > pkg_add png-1.2.14.tbz > skipping png-1.2.14, already added > pkg_add python24-2.4.4.tbz > skipping python24-2.4.4, already added > pkg_add scons-0.96.94.tbz > pkg_add shared-mime-info-0.20.tbz > skipping shared-mime-info-0.20, already added > pkg_add tiff-3.8.2_1.tbz > skipping tiff-3.8.2_1, already added > pkg_add xmlcatmgr-2.2.tbz > skipping xmlcatmgr-2.2, already added > pkg_add xorg-fonts-encodings-6.9.0_1.tbz > skipping xorg-fonts-encodings-6.9.0_1, already added > pkg_add xorg-fonts-truetype-6.9.0.tbz > skipping xorg-fonts-truetype-6.9.0, already added > pkg_add xorg-libraries-6.9.0_1.tbz > skipping xorg-libraries-6.9.0_1, already added > =3D=3D=3D> linuxdcpp-0.0.1.20070206 depends on file: /usr/local/bin/= scons - = > found > =3D=3D=3D> linuxdcpp-0.0.1.20070206 depends on file: = > /usr/local/bin/intltool-extract - found > =3D=3D=3D> linuxdcpp-0.0.1.20070206 depends on executable in : pkg-c= onfig - = > found > =3D=3D=3D> linuxdcpp-0.0.1.20070206 depends on shared library: iconv= .3 - = > found > =3D=3D=3D> linuxdcpp-0.0.1.20070206 depends on shared library: atk-1= .0.0 - = > found > =3D=3D=3D> linuxdcpp-0.0.1.20070206 depends on shared library: glib-= 2.0.0 - = > found > =3D=3D=3D> linuxdcpp-0.0.1.20070206 depends on shared library: gtk-x= 11-2.0.0 = > - found > =3D=3D=3D> linuxdcpp-0.0.1.20070206 depends on shared library: glade= -2.0.0 - = > found > =3D=3D=3D> linuxdcpp-0.0.1.20070206 depends on shared library: xml2.= 5 - found > =3D=3D=3D> linuxdcpp-0.0.1.20070206 depends on shared library: pango= -1.0.0 - = > found > =3D=3D=3D> linuxdcpp-0.0.1.20070206 depends on shared library: X11.6= - found > =3D=3D=3D> Configuring for linuxdcpp-0.0.1.20070206 > =3D=3D=3D> Building for linuxdcpp-0.0.1.20070206 > scons: Reading SConscript files ... > Checking for c++ >=3D 3.4...(cached) yes > Checking for pkg-config... yes > Checking for gtk+-2.0 >=3D 2.6... yes > Checking for gthread-2.0 >=3D 2.4... yes > Checking for libglade-2.0 >=3D 2.4... yes > Checking for C header file time.h... yes > Checking for C header file signal.h... yes > Checking for C header file unistd.h... yes > Checking for C library z... yes > Checking for C library bz2... yes > Checking for C library ssl... yes > Checking iconv... yes > scons: done reading SConscript files. > scons: Building targets ... > c++ -o build/client/AdcCommand.o -c -O2 -fno-strict-aliasing -pipe -I.= = > -I/usr/local/include -I. -D_GNU_SOURCE -D_FILE_OFFSET_BITS=3D64 = > -DICONV_CONST=3Dconst -D_DATADIR=3D'"/usr/local/share"' client/AdcComm= and.cpp > In file included from client/AdcCommand.cpp:19: > client/stdinc.h:86:4: error: #error Unknown STL, hashes need to be = > configured > client/stdinc.h:128:20: error: hash_map: No such file or directory > client/stdinc.h:129:20: error: hash_set: No such file or directory > client/stdinc.h:132: error: 'stdext' is not a namespace-name > client/stdinc.h:132: error: expected namespace-name before ';' token > client/DCPlusPlus.h:89: error: expected initializer before '<' token > client/DCPlusPlus.h:90: error: 'StringMap' has not been declared > client/DCPlusPlus.h:90: error: expected initializer before = > 'StringMapIter' > client/DCPlusPlus.h:92: error: expected initializer before '<' token > client/DCPlusPlus.h:93: error: 'StringSet' has not been declared > client/DCPlusPlus.h:93: error: expected initializer before = > 'StringSetIter' > client/DCPlusPlus.h:103: error: expected initializer before '<' token > client/DCPlusPlus.h:104: error: 'WStringMap' has not been declared > client/DCPlusPlus.h:104: error: expected initializer before = > 'WStringMapIter' > client/DCPlusPlus.h:127: error: 'StringMap' does not name a type > client/DCPlusPlus.h:128: error: 'StringMapIter' does not name a type > client/Util.h:263: error: 'StringMap' has not been declared > client/User.h:134: error: 'StringMap' has not been declared > client/Client.h:121: error: ISO C++ forbids declaration of 'StringMap'= = > with no type > client/Client.h:121: error: expected ';' before '&' token > client/Client.h:128: error: expected `;' before 'void' > client/ClientManager.h:86: error: 'StringMap' has not been declared > client/ClientManager.h:101: error: ISO C++ forbids declaration of = > 'hash_map' with no type > client/ClientManager.h:101: error: expected ';' before '<' token > client/ClientManager.h:102: error: 'LegacyMap' has not been declared > client/ClientManager.h:102: error: ISO C++ forbids declaration of = > 'iterator' with no type > client/ClientManager.h:102: error: typedef name may not be a = > nested-name-specifier > client/ClientManager.h:102: error: expected ';' before 'LegacyIter' > client/ClientManager.h:104: error: ISO C++ forbids declaration of = > 'HASH_MAP_X' with no type > client/ClientManager.h:104: error: expected ';' before 'UserMap' > client/ClientManager.h:105: error: 'UserMap' has not been declared > client/ClientManager.h:105: error: ISO C++ forbids declaration of = > 'iterator' with no type > client/ClientManager.h:105: error: typedef name may not be a = > nested-name-specifier > client/ClientManager.h:105: error: expected ';' before 'UserIter' > client/ClientManager.h:107: error: ISO C++ forbids declaration of = > 'HASH_MULTIMAP_X' with no type > client/ClientManager.h:107: error: expected ';' before 'OnlineMap' > client/ClientManager.h:108: error: 'OnlineMap' has not been declared > client/ClientManager.h:108: error: ISO C++ forbids declaration of = > 'iterator' with no type > client/ClientManager.h:108: error: typedef name may not be a = > nested-name-specifier > client/ClientManager.h:108: error: expected ';' before 'OnlineIter' > client/ClientManager.h:109: error: 'OnlineMap' has not been declared > client/ClientManager.h:109: error: ISO C++ forbids declaration of = > 'const_iterator' with no type > client/ClientManager.h:109: error: typedef name may not be a = > nested-name-specifier > client/ClientManager.h:109: error: expected ';' before 'OnlineIterC' > client/ClientManager.h:110: error: 'OnlineIter' was not declared in th= is = > scope > client/ClientManager.h:110: error: 'OnlineIter' was not declared in th= is = > scope > client/ClientManager.h:110: error: template argument 1 is invalid > client/ClientManager.h:110: error: template argument 2 is invalid > client/ClientManager.h:111: error: 'OnlineIterC' was not declared in = > this scope > client/ClientManager.h:111: error: 'OnlineIterC' was not declared in = > this scope > client/ClientManager.h:111: error: template argument 1 is invalid > client/ClientManager.h:111: error: template argument 2 is invalid > client/ClientManager.h:116: error: 'UserMap' does not name a type > client/ClientManager.h:117: error: 'OnlineMap' does not name a type > client/ClientManager.h: In member function 'bool = > ClientManager::isOnline(const Pointer&) const': > client/ClientManager.h:69: error: 'onlineUsers' was not declared in th= is = > scope > scons: *** [build/client/AdcCommand.o] Error 1 > scons: building terminated because of errors. > *** Error code 2 > > Stop in /a/ports/net-p2p/linuxdcpp. > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > build of /usr/ports/net-p2p/linuxdcpp ended at Tue Mar 20 14:48:38 UTC= = > 2007 > > > ----- End forwarded message ----- -- = 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 Tue Mar 20 19:59:23 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A451C16A400 for ; Tue, 20 Mar 2007 19:59:23 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.freebsd.org (Postfix) with ESMTP id 94E1613C4CC for ; Tue, 20 Mar 2007 19:59:23 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.8/8.13.8) with ESMTP id l2KJxNqi070896 for ; Tue, 20 Mar 2007 19:59:23 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.8/8.13.8/Submit) id l2KJxNPQ070893 for ports@FreeBSD.org; Tue, 20 Mar 2007 19:59:23 GMT (envelope-from erwin) Date: Tue, 20 Mar 2007 19:59:23 GMT From: Erwin Lansing Message-Id: <200703201959.l2KJxNPQ070893@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 5.x 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, 20 Mar 2007 19:59:23 -0000 INDEX build failed with errors: Generating INDEX-5 - please wait..pkg_info: not found pkg_info: not found Done. Warning: Duplicate INDEX entry: xotcl-1.5.3_3 Committers on the hook: acm ahze clement clsung delphij ijliao lth lx miwi mnag naddy pav rafan tobez vanilla Most recent CVS update was: U lang/polyml/Makefile U ports-mgmt/portmanager/files/patch-libMGPM__src__MGPMrShowLeavesDelete.c U www/gallery2/Makefile U www/gallery2/distinfo U www/gallery2/pkg-message U www/gallery2/pkg-plist U www/mozilla/Makefile U www/p5-HTML-Table/Makefile U www/p5-HTML-Table/distinfo U www/p5-POE-Component-Server-SimpleHTTP/Makefile U www/p5-POE-Component-Server-SimpleHTTP/distinfo U www/webcalendar/Makefile U www/webcalendar/distinfo U x11-toolkits/irrlicht/Makefile U x11-toolkits/irrlicht/distinfo U x11-toolkits/irrlicht/pkg-plist U x11-toolkits/irrlicht/files/patch-source-Irrlicht_COSOperator.cpp U x11-toolkits/irrlicht/files/patch-source-Irrlicht_Makefile U x11-toolkits/tk84/pkg-plist.threads U x11-toolkits/tk84/files/pkgIndex.tcl.in From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 20:21:40 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CABC816A401 for ; Tue, 20 Mar 2007 20:21:40 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id B81B013C4CE for ; Tue, 20 Mar 2007 20:21:40 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 97BBE1A3C19; Tue, 20 Mar 2007 13:21:40 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D2B23515E6; Tue, 20 Mar 2007 16:21:39 -0400 (EDT) Date: Tue, 20 Mar 2007 16:21:39 -0400 From: Kris Kennaway To: Jeremy Messenger Message-ID: <20070320202139.GA16688@xor.obsecurity.org> References: <20070320171622.GA12902@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Cc: freebsd-ports@freebsd.org, Kris Kennaway Subject: Re: [ports-amd64@pointyhat.freebsd.org: linuxdcpp-0.0.1.20070206 failed on amd64 7] 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, 20 Mar 2007 20:21:40 -0000 On Tue, Mar 20, 2007 at 02:55:09PM -0500, Jeremy Messenger wrote: > On Tue, 20 Mar 2007 12:16:22 -0500, Kris Kennaway > wrote: > > >Dear Maintainer, > > > >As you may know, in the near future FreeBSD 7.x will be switching from > >the gcc 3.4 compiler to gcc 4.x. Unfortunately your port fails to > >build with the new compiler; see the log below. > > > >To ease the disruption to users and to avoid further work later on, > >can you please work (with the upstream developers if necessary) on > >fixing this error? > > > >In many cases it requires only simple code changes, and these may > >already have been submitted to the developers by other projects > >(thesedays many Linux distributions use gcc 4.1, so chances are they > >have fixed the error already), or the patches may be found in their > >package repositories. > > > >You should be able to reproduce it yourself simply by installing the > >lang/gcc41 port and then setting the variables > > > > CC=/usr/local/bin/gcc41 > > CXX=/usr/local/bin/g++41 > > > >in your environment (Note: some ports do not respect these variables > >currently, but this is another bug that should be fixed). > > I can't reproduce it. Any idea why I can't? Thanks. > > # pkg_info | grep gcc > gcc-4.1.3_20070312 GNU Compiler Collection 4.1 > # make -DGCC4 > ===> Extracting for linuxdcpp-0.0.1.20070206 > => MD5 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. > => SHA256 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. > [...] > ===> Building for linuxdcpp-0.0.1.20070206 > scons: Reading SConscript files ... > Checking for /usr/local/bin/g++41 >= 3.4...(cached) yes > [...] > scons: Building targets ... > /usr/local/bin/g++41 -o build/client/AdcCommand.o -c -O2 > -fno-strict-aliasing -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOURCE > -D_FILE_OFFSET_BITS=64 -DICONV_CONST=const -D_DATADIR='"/usr/local/share"' > client/AdcCommand.cpp > /usr/local/bin/g++41 -o build/client/AdcHub.o -c -O2 -fno-strict-aliasing > -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 > -DICONV_CONST=const -D_DATADIR='"/usr/local/share"' client/AdcHub.cpp > /usr/local/bin/g++41 -o build/client/ADLSearch.o -c -O2 > -fno-strict-aliasing -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOURCE > -D_FILE_OFFSET_BITS=64 -DICONV_CONST=const -D_DATADIR='"/usr/local/share"' > client/ADLSearch.cpp > [...goes on without failure...] Is this on amd64? Kris From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 20:46:01 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E542116A402 for ; Tue, 20 Mar 2007 20:46:01 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.freebsd.org (Postfix) with ESMTP id 783C313C45E for ; Tue, 20 Mar 2007 20:46:01 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: by ug-out-1314.google.com with SMTP id 71so8026ugh for ; Tue, 20 Mar 2007 13:46:01 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:x-enigmail-version:content-type:content-transfer-encoding; b=GczYnWpW9DYBw2b93EPF4JwkOwcWqfLPffSS/MdiInjSCnCP6KJ6WKBpwL8O8ur9d2ymR57aKe5xSZOYEZ0iTmBFiRHlrkdh+szFQazJ1Met9r50bA/w7ClnBVFZj25KLPJtKxa2l5121eGr28Oujp0Y+bF4yChfci/fx9k4fNo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:user-agent:mime-version:to:cc:subject:references:in-reply-to:x-enigmail-version:content-type:content-transfer-encoding; b=G/RQINu//5Nbq6bFvr+XPClyls9NI8AF4usrq3+xOdFbpmorQRT0yXW6hVHKCaKhQG7tC8hBtlKNceG+kII80BP+2H1d0OuwGPHJS1hC+SGyDe5kFGQvK679s8Z1HHfvW5yuVyRDbRh4kpOuPJ+OLWNWTdLlVYkBSIdY3hnto8M= Received: by 10.67.117.2 with SMTP id u2mr1808493ugm.1174422020419; Tue, 20 Mar 2007 13:20:20 -0700 (PDT) Received: from ?192.168.123.202? ( [195.241.221.201]) by mx.google.com with ESMTP id p32sm799439ugc.2007.03.20.13.20.19; Tue, 20 Mar 2007 13:20:20 -0700 (PDT) Message-ID: <46004202.5040603@gmail.com> Date: Tue, 20 Mar 2007 21:20:18 +0100 From: Rene Ladan User-Agent: Thunderbird 1.5.0.10 (X11/20070306) MIME-Version: 1.0 To: Doug Barton References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <20070319125101.4lb7lljt5w4cwog8@webmail.leidinger.net> <1174308178.15322.13.camel@pav.hide.vol.cz> <45FF29E4.4060305@FreeBSD.org> In-Reply-To: <45FF29E4.4060305@FreeBSD.org> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: Alexander Leidinger , pav@FreeBSD.org, freebsd ports Subject: Re: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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, 20 Mar 2007 20:46:02 -0000 Doug Barton schreef: [...] > I'm pretty close to the end of the list of features that I > was ever interested in implementing, and I've added almost every feature > that users have asked for (with the notable exception of installing > packages) [...] I'm thinking of one more option that would be nice: the possibility to resume `portmaster -r PORT` builds (like the gettext one) without having to rebuild or manually skip all already rebuilt ports (or semi-automatically pollute /var/db/pkg with +IGNOREME files using some primitive shell scripts I hacked together at 1 AM) An example: # portmaster -r gettext now all files in /var/db/pkg/gettext-*/ have fresh modification times T, and all /var/db//+CONTENTS files have time T. When portmaster has finished upgrading gettext, it starts with all dependent-on ports. If it has finished such a port, all files in /var/db// have the same modification time T2 (with T2 newer than T). The +CONTENTS file for ports which still need to be rebuilt is newer than the other files (e.g. +DESC), so if portmaster crashes and restarted, it could skip all ports P for which the following two conditions hold: (1) all modification times in /var/db/pkg/P/ are equal (i.e. T2), (2) those T2 times are newer than T (where T is the modification time of /var/db/gettext*/* before the mandatory rebuild of gettext itself). Only mentally tested > As for the requirements in the ideas page ... > [...] > > * storing old copies of shared libraries after shmajor number change > in /usr/local/lib/compat/pkg > > Portmaster doesn't do this currently. I have mixed feelings about > whether this is even a good idea or not. I'd be happy to elaborate on > why if anyone cares. > [...] Not having a /usr/local/lib/compat/pkg is cleaner IMO. > Doug > Rene -- GPG fingerprint = E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net) "It won't fit on the line." -- me, 2001 From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 20:47:46 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A9C516A403; Tue, 20 Mar 2007 20:47:46 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id D917613C4C3; Tue, 20 Mar 2007 20:47:43 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A5FBC6.dip.t-dialin.net [84.165.251.198]) by redbull.bpaserver.net (Postfix) with ESMTP id 83BF22E04C; Tue, 20 Mar 2007 21:47:38 +0100 (CET) Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) by outgoing.leidinger.net (Postfix) with ESMTP id B7E9D5B4817; Tue, 20 Mar 2007 21:47:35 +0100 (CET) Date: Tue, 20 Mar 2007 21:47:35 +0100 From: Alexander Leidinger To: Rene Ladan Message-ID: <20070320214735.0d55a1cb@Magellan.Leidinger.net> In-Reply-To: <46004202.5040603@gmail.com> References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <20070319125101.4lb7lljt5w4cwog8@webmail.leidinger.net> <1174308178.15322.13.camel@pav.hide.vol.cz> <45FF29E4.4060305@FreeBSD.org> <46004202.5040603@gmail.com> X-Mailer: Claws Mail 2.8.1 (GTK+ 2.10.9; i686-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.864, required 8, autolearn=not spam, BAYES_00 -15.00, DK_POLICY_SIGNSOME 0.00, FORGED_RCVD_HELO 0.14) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: pav@FreeBSD.org, Doug Barton , freebsd ports Subject: Re: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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, 20 Mar 2007 20:47:46 -0000 Quoting Rene Ladan (Tue, 20 Mar 2007 21:20:18 +0100): > Doug Barton schreef: > > As for the requirements in the ideas page ... > > > [...] > > > > * storing old copies of shared libraries after shmajor number change > > in /usr/local/lib/compat/pkg > > > > Portmaster doesn't do this currently. I have mixed feelings about > > whether this is even a good idea or not. I'd be happy to elaborate on > > why if anyone cares. > > > [...] > > Not having a /usr/local/lib/compat/pkg is cleaner IMO. It requires you to have all software up-to-date after a library version bump. This is not always desired. Bye, Alexander. -- The electrician didn't know what the yellow cable was so he yanked the ethernet out. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 21:07:45 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C240D16A402 for ; Tue, 20 Mar 2007 21:07:45 +0000 (UTC) (envelope-from r.c.ladan@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 1A99713C48C for ; Tue, 20 Mar 2007 21:07:44 +0000 (UTC) (envelope-from r.c.ladan@gmail.com) Received: by nf-out-0910.google.com with SMTP id k27so529216nfc for ; Tue, 20 Mar 2007 14:07:43 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:user-agent:mime-version:to:subject:x-enigmail-version:content-type; b=ur04WT04sEvRPbPqkhffhgYK50giDIbdSNvMN5pU1UBa8x6obgEryEFn7fz/8Lj/g5mNmA1uDfAEWi2NjUPhfRxv5/nolzh2YWTb4Ync3CCVH9MX/pxN7SRMGoRdQceIjJ3sGGAdTrtxDrNWIoDlBODvwDOfZx8FTucODBaMtaA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:user-agent:mime-version:to:subject:x-enigmail-version:content-type; b=BaxHdV7XGO0YeWzdvs4EVaOD8M2pxHkiDLA+06AR8sLv1Ymrd9lRgN6YuemSGJzIFg0Mp+J3gyvKCA//4hGTqu4p6rY6vZO7IvUCdVLgm89UPCV0aQ065wVjFc6fUmEEl+0ryufGejSnyjMVaoVphwc2AMUnIMdz9U5BJpIYwnE= Received: by 10.78.200.3 with SMTP id x3mr3377067huf.1174424863439; Tue, 20 Mar 2007 14:07:43 -0700 (PDT) Received: from ?192.168.123.202? ( [195.241.221.201]) by mx.google.com with ESMTP id m15sm3453630nfc.2007.03.20.14.07.35; Tue, 20 Mar 2007 14:07:42 -0700 (PDT) Message-ID: <46004D16.1030606@gmail.com> Date: Tue, 20 Mar 2007 22:07:34 +0100 From: Rene Ladan User-Agent: Thunderbird 1.5.0.10 (X11/20070306) MIME-Version: 1.0 To: ports@freebsd.org, List for discussing optimization of BOINC apps X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/mixed; boundary="------------070208060806000908080906" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: astro/boinc-setiathome-enhanced: configure.ac wrong? 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, 20 Mar 2007 21:07:45 -0000 This is a multi-part message in MIME format. --------------070208060806000908080906 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Hi, as the attachment boinc-setiathome-enhanced-5.13.log shows, the astro/boinc-setiathome-enhanced port fails to configure on the ia64 platform. As I only have an i386, on which the port builds fine, I can't pinpoint the error myself, but I'm thinking that the configure.ac or maybe one of the m4 files (all attached) are somehow wrong. I rebuild the configure script locally on my i386-CURRENT box using aclocal19 and autoconf259 because the boinc infrastructure on FreeBSD differs from that at Berkeley and to shortcut some checks. The error log suggests that it can't find the test executable which it uses to determine the default output name (a.out in i386). Maybe some auto* guru has an idea? Thanks, Rene -- GPG fingerprint = E738 5471 D185 7013 0EE0 4FC8 3C1D 6F83 12E1 84F6 (subkeys.pgp.net) "It won't fit on the line." -- me, 2001 --------------070208060806000908080906 Content-Type: text/plain; name="configure.ac" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="configure.ac" # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) AC_INIT(setiathome_enhanced, 5.13, ports@setiathome.ssl.berkeley.edu) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE(dist-zip) AC_CONFIG_SRCDIR([client/analyze.h]) # Make sure we use the same initial CFLAGS and CXXFLAGS unless otherwise told. if test -z "${CXXFLAGS}" then CXXFLAGS="${CFLAGS}" elif test -z "${CFLAGS}" then CFLAGS="${CXXFLAGS}" fi AC_ARG_ENABLE(dynamic-graphics, AS_HELP_STRING([--disable-dynamic-graphics], [disable building the client graphics in a shared library])) if test "x$enable_dynamic_graphics" != xno ; then enable_dynamic_graphics=yes fi AC_ARG_ENABLE(graphics, AC_HELP_STRING([--disable-graphics], [disable building the client graphics])) if test "x$enable_graphics" != xno ; then enable_graphics=yes else enable_dynamic_graphics=no enable_graphics=no fi AC_ARG_ENABLE(server, AC_HELP_STRING([--disable-server], [disable building the seti@home server components]), [], [enable_server=yes]) AC_ARG_ENABLE(client, AC_HELP_STRING([--disable-client], [disable building the client]), [], [enable_client=yes]) m4_divert_once([HELP_ENABLE], AC_HELP_STRING([], [Default: --enable-server --enable-client: builds both server and client])) if test "${enable_server}" = yes ; then if test "${enable_client}" = yes ; then configured_to_build='server & client' else configured_to_build='server only' fi else if test "${enable_client}" = yes ; then configured_to_build='client only' else AC_MSG_WARN([Youve disabled both the server and the client. Nothing useful will be built]) fi fi AC_MSG_NOTICE(["--- Configuring SETI_BOINC AC_PACKAGE_VERSION (${configured_to_build}) ---"]) AC_COPYRIGHT([ Copyright (C) 2004 Regents of the University of California SETI_BOINC is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. SETI_BOINC is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with SETI_BOINC; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Contributor(s): ]) AC_REVISION([$Revision: 1.60.2.25 $]) major_version=`echo AC_PACKAGE_VERSION | sed 's/\..*//'` minor_version=`echo AC_PACKAGE_VERSION | sed 's/.*\.//' | sed 's/^0//'` AC_SUBST([MAJOR_VERSION], [$major_version]) AC_SUBST([MINOR_VERSION], [$minor_version]) AC_DEFINE_UNQUOTED([VERSION_MAJOR],$major_version, [SETI@home major version number]) AC_DEFINE_UNQUOTED([VERSION_MINOR],$minor_version, [SETI@home minor version number]) AC_DEFINE_UNQUOTED([SAH_APP_NAME],["$PACKAGE_NAME"], [Define to the BOINC application name for setiathome]) SAH_TOP_DIR=`pwd` AC_SUBST([SAH_TOP_DIR]) AM_MAINTAINER_MODE # Checks for programs. PATH="/usr/xpg4/bin:${PATH}" AC_PROG_CXX AC_PROG_CXXCPP AC_PROG_AWK AC_PROG_LN_S AC_PATH_PROG(TR,[tr]) AC_PATH_PROGS(AR,[ar lib]) AC_PATH_PROG(GREP,[grep]) AC_PATH_PROG(AUTOCONF,[autoconf]) AC_PATH_PROG(AUTOHEADER,[autoheader]) AC_PATH_PROGS(INDENT,[astyle indent]) AC_PATH_PROGS(CP,[cp copy]) AC_PATH_PROGS(LN,[ln cp copy]) AC_PATH_PROG(SORT,[sort]) AC_PATH_PROG(UNIQ,[uniq]) AC_PATH_PROG(CAT,[cat type]) AC_PATH_PROG(MV,[mv]) AC_PATH_PROGS(RM,[rm Rm del erase delete]) AC_LIBTOOL_DLOPEN AM_PROG_LIBTOOL SAH_LINK_DLL AC_SUBST(PICFLAGS,${lt_prog_compiler_pic}) AC_SUBST(SED) SAH_OPTION_BITNESS dnl Determine the BOINC platform given the target arch-platform-os. BOINC_PLATFORM if test -n `echo $INDENT | grep astyle` then AC_SUBST([INDENT_FLAGS],["--c --indent-classes --indent-switches --brackets=attach --convert-tabs"]) else AC_SUBST([INDENT_FLAGS],["-kr"]) fi AC_PROG_MAKE_SET SAH_DLLEXT SAH_LIBEXT if test -n "$EXEEXT" then DOTEXEEXT=".$EXEEXT" fi AC_SUBST(DOTEXEEXT) AC_SYS_LARGEFILE ACX_PTHREAD([AC_DEFINE(HAVE_PTHREAD,1, [Have pthread])]) STATIC_LIB_LIST="stdc++ gcc gcc_eh gtk* gdk* gmodule gthread glib wx* tiff jpeg png Xi glut socket z fftw3f" case ${target} in *-linux*) STATIC_LIB_LIST="${STATIC_LIB_LIST} nsl ssl crypto" ;; *-solaris*) STATIC_LIB_LIST="${STATIC_LIB_LIST} X* ssl crypto" ;; esac # Checks for libraries. CHECK_SSL SAH_CHECK_LIB([crypto], [RSA_new], [BOINC_EXTRA_LIBS="${BOINC_EXTRA_LIBS} -L${SSLDIR}/lib ${sah_lib_last}"]) SAH_CHECK_LIB([ssl], [fopen], [BOINC_EXTRA_LIBS="${BOINC_EXTRA_LIBS} -L${SSLDIR}/lib ${sah_lib_last}"]) SAH_CHECK_LIB([cygipc],[shmget], AC_DEFINE([HAVE_LIBCYGIPC],[1],[Define to 1 if you have the cygipc library])) SAH_CHECK_LIB([aio], [aio_fork], AC_DEFINE([HAVE_LIBAIO],[1],[Define to 1 if you have the aio library])) SAH_CHECK_LIB([dl], [dlopen], AC_DEFINE([HAVE_LIBDL],[1],[Define to 1 if you have the dl library])) SAH_CHECK_LIB([elf], [elf_hash], AC_DEFINE([HAVE_LIBELF],[1],[Define to 1 if you have the elf library])) SAH_CHECK_LIB([m], [sin], AC_DEFINE([HAVE_LIBM],[1],[Define to 1 if you have the math library])) SAH_CHECK_LIB([fftw3f], [fftwf_plan_dft_1d], AC_DEFINE([HAVE_LIBFFTW3F],[1],[Define to 1 if you have the fftw3f library])) SAH_CHECK_LIB([nsl], [gethostbyname], AC_DEFINE([HAVE_LIBNSL],[1],[Define to 1 if you have the nsl library])) SAH_CHECK_LIB([rt], [sched_get_priority_min], AC_DEFINE([HAVE_LIBRT],[1],[Define to 1 if you have the rt library])) SAH_CHECK_LIB([socket], [bind], AC_DEFINE([HAVE_LIBSOCKET],[1],[Define to 1 if you have the socket library])) SAH_CHECK_LIB([z], [uncompress], AC_DEFINE([HAVE_LIBZ],[1],[Define to 1 if you have the z library])) SAH_CHECK_JPEGLIB SAH_CHECK_LIB([stdc++],[sscanf], AC_DEFINE([HAVE_LIBSTDC__],[1],[Define to 1 if you have the stdc++ library])) SAH_CHECK_LIB([gcc_eh],[_Unwind_Resume], AC_DEFINE([HAVE_LIBGCC_EH],[1],[Define to 1 if you have the gcc_eh library])) SAH_CHECK_LIB([gcc],[sscanf], AC_DEFINE([HAVE_LIBGCC],[1],[Define to 1 if you have the gcc library])) SAH_CHECK_LIB([pthread],[pthread_join], AC_DEFINE([HAVE_LIBPTHREAD],[1],[Define to 1 if you have the pthread library])) SAH_CHECK_LIB([c],[atexit], AC_DEFINE([HAVE_LIBC],[1],[Define to 1 if you have the c library])) SAH_CHECK_LDFLAG([-nodefaultlibs]) AC_LANG(C++) SAH_CHECK_SETILIB SAH_CHECK_HEALPIX SAH_OPTIMIZATIONS SAH_CHECK_IPP SAH_REQUIRES([boinc],[SAH_CHECK_BOINC],["${no_boinc}" = yes], [ ERROR: trying to build the seti_boinc client or server but BOINC was not found. You can get boinc at http://boinc.ssl.berkeley.edu/ ], [exit 1]) SAH_SERVER_REQUIRES([mysql],[SAH_CHECK_MYSQL],["${no_mysql}" = yes]) SAH_SERVER_REQUIRES([informix],[SAH_CHECK_INFORMIX],["${no_informix}" = yes]) SAH_SERVER_REQUIRES([s4 libraries],[SAH_FIND_S4PATH],["${no_s4}" = yes]) if test "$enable_graphics" = yes ; then SAH_GRX_LIBS AX_CHECK_GL AX_CHECK_GLU AX_CHECK_GLUT if test "$no_gl" = yes -o "$no_glu" = yes -o "$no_glut" = yes ; then have_glut=no enable_graphics=no enable_dynamic_graphics=no AC_MSG_WARN([ ================================================================================ WARNING: GL/GLU/GLUT not found. The GL, GLU, and GLUT libraries are required in order to build the graphical parts of the BOINC application API library. ==> only building non-graphical parts of the BOINC API Library for now. ================================================================================ ]) else AC_DEFINE([BOINC_APP_GRAPHICS],1,[Define to 1 to build a graphical application]) SAH_GRX_INCLUDES GRAPHICS_CFLAGS="${GRX_CFLAGS} ${GL_CFLAGS} ${GLU_CFLAGS} ${GLUT_CFLAGS}" SAH_STATICIZE_LDFLAGS(["${GL_LIBS} ${GLU_LIBS} ${GLUT_LIBS} ${GRX_LIBS} ${sah_cv_static_lib_jpeg_fopen}"],[GRAPHICS_LIBS]) case ${target} in powerpc-apple*) GRAPHICS_LIBS="${GRAPHICS_LIBS} -framework AppKit -framework CoreServices" ;; esac SAH_RAW_LDFLAGS(["${PTHREAD_CFLAGS} -L${BOINCDIR}/lib -lboinc_graphics_impl -lboinc ${GRAPHICS_LIBS}"],[GRAPHICS_LIBS_RAW]) have_glut=yes enable_graphics=yes fi fi AC_SUBST([GRAPHICS_CFLAGS]) AC_SUBST([GRAPHICS_LIBS]) AC_SUBST([GRAPHICS_LIBS_RAW]) AC_CACHE_SAVE # Checks for header files. AC_HEADER_STDC SAH_LARGEFILE_BREAKS_CXX SAH_HEADER_STDCXX AC_HEADER_SYS_WAIT AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h memory.h malloc.h stdlib.h string.h strings.h sys/ioctl.h sys/statvfs.h sys/time.h unistd.h dirent.h math.h ieeefp.h floatingpoint.h complex.h fftw3.h]) AC_CACHE_SAVE # Checks for typedefs, structures, and compiler characteristics. AC_HEADER_STDBOOL AC_C_CONST AC_C_INLINE AC_C_LONG_DOUBLE AC_TYPE_OFF_T AC_TYPE_SIZE_T AC_STRUCT_ST_BLOCKS AC_STRUCT_TM AC_CHECK_SIZEOF([long int]) AC_CHECK_SIZEOF([long double]) AC_CHECK_TYPES([long long,_int64,int64_t,bool,_int32,int32_t]) AC_CACHE_SAVE # Checks for library functions. AC_LANG(C) AC_FUNC_FORK AC_HEADER_MAJOR AC_FUNC_MALLOC AC_FUNC_REALLOC AC_FUNC_STAT AC_FUNC_STRFTIME AC_CHECK_FUNCS([ _aligned_malloc memalign atexit exit _exit floor getcwd memset munmap putenv sqrt strchr strstr atoll dlopen sincosf sincos sinf cosf atanf]) if test "${enable_dynamic_graphics}" = "yes"; then if test "${ac_cv_func_dlopen}" = "yes" -o "${ac_cv_lib_dl_dlopen}" = "yes" ; then enable_dynamic_graphics=yes AC_DEFINE([ENABLE_DLOPEN],[1],[Define to 1 if building graphics is a shared library]) else enable_dynamic_graphics=no fi fi SAH_CHECK_NAMESPACES AH_TEMPLATE([HAVE_STD_MIN],[Define to 1 if min is in namespace std::]) AH_TEMPLATE([HAVE_STD_MAX],[Define to 1 if max is in namespace std::]) AH_TEMPLATE([HAVE_STD_TRANSFORM],[Define to 1 if transform is in namespace std::]) SAH_FUNCS_IN_NAMESPACE([['min(0,0)'] ['max(0,0)'] ['transform((char *)0,(char *)0,(char *)0,(int(*)(int))malloc)']],std) AM_CONDITIONAL(USE_MY_IMAGELIBS, [false]) AM_CONDITIONAL(USE_MY_GLUT, [false]) AM_CONDITIONAL(USE_MY_LIBJPEG, [false]) AM_CONDITIONAL(ENABLE_SERVER, [test "${enable_server}" = yes]) AM_CONDITIONAL(ENABLE_CLIENT, [test "${enable_client}" = yes]) AM_CONDITIONAL(ENABLE_GUI, [test "${enable_graphics}" = yes]) AM_CONDITIONAL(ENABLE_DLOPEN, [test "${enable_dynamic_graphics}" = yes]) AM_CONDITIONAL(LINUX, [test -n "`echo ${target} | grep linux`"]) AC_CACHE_SAVE AH_TOP([ #ifndef _SAH_CONFIG_H_ #define _SAH_CONFIG_H_ #ifdef _WIN32 #include "win-config.h" #else ]) AH_BOTTOM([ /* Define USE_NAMESPACES if you may access more than one database from the * same program */ #endif /* * Use fftw if we have the library */ #if defined(HAVE_LIBFFTW3F) && defined(HAVE_FFTW3_H) #define USE_FFTWF #endif #if defined(USE_INFORMIX) && defined(USE_MYSQL) && defined(HAVE_NAMESPACES) #define USE_NAMESPACES #endif #include "std_fixes.h" #endif ]) AC_CONFIG_FILES([Makefile client/Makefile tools/Makefile db/Makefile db/tools/Makefile db/schema_to_class ]) AC_CONFIG_HEADERS([config.h]) AC_OUTPUT chmod +x db/schema_to_class --------------070208060806000908080906-- From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 21:56:42 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1001B16A400 for ; Tue, 20 Mar 2007 21:56:42 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.freebsd.org (Postfix) with ESMTP id DC47F13C46A for ; Tue, 20 Mar 2007 21:56:41 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.8/8.13.8) with ESMTP id l2KLufJq057025 for ; Tue, 20 Mar 2007 21:56:41 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.8/8.13.8/Submit) id l2KLufLv056989 for ports@FreeBSD.org; Tue, 20 Mar 2007 21:56:41 GMT (envelope-from erwin) Date: Tue, 20 Mar 2007 21:56:41 GMT From: Erwin Lansing Message-Id: <200703202156.l2KLufLv056989@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 5.x 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, 20 Mar 2007 21:56:42 -0000 INDEX build failed with errors: Generating INDEX-5 - please wait..pkg_info: not found pkg_info: not found Done. Warning: Duplicate INDEX entry: xotcl-1.5.3_3 Committers on the hook: acm ahze clement clsung delphij ijliao lth lx miwi mnag naddy pav rafan tmclaugh tobez vanilla will Most recent CVS update was: U deskutils/gnotime/Makefile U deskutils/gnotime/files/patch-configure U devel/p5-Time-HiRes/Makefile U devel/p5-Time-HiRes/distinfo U editors/e93/Makefile U editors/e93/files/patch-machdef.mk U editors/vigor/Makefile U games/xkobo/Makefile U games/xkobo/files/patch-af U multimedia/smpeg/Makefile U multimedia/smpeg/files/patch-MPEGaudio.h U net/citrix_ica/Makefile U net/citrix_ica/distinfo U net/citrix_ica/pkg-plist U net/citrix_ica/files/patch-linuxx86::hinst From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 22:47:33 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 348CE16A408 for ; Tue, 20 Mar 2007 22:47:33 +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 C3CE313C48A for ; Tue, 20 Mar 2007 22:47:32 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: (qmail 10323 invoked by uid 399); 20 Mar 2007 22:47:32 -0000 Received: from localhost (HELO ?192.168.0.4?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 20 Mar 2007 22:47:32 -0000 X-Originating-IP: 127.0.0.1 Message-ID: <4600647D.2040305@FreeBSD.org> Date: Tue, 20 Mar 2007 15:47:25 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0b2 (Windows/20070116) MIME-Version: 1.0 To: Alexander Leidinger References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <20070319125101.4lb7lljt5w4cwog8@webmail.leidinger.net> <1174308178.15322.13.camel@pav.hide.vol.cz> <45FF29E4.4060305@FreeBSD.org> <46004202.5040603@gmail.com> <20070320214735.0d55a1cb@Magellan.Leidinger.net> In-Reply-To: <20070320214735.0d55a1cb@Magellan.Leidinger.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: pav@FreeBSD.org, freebsd ports , Rene Ladan Subject: Re: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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, 20 Mar 2007 22:47:33 -0000 Alexander Leidinger wrote: > Quoting Rene Ladan (Tue, 20 Mar 2007 21:20:18 +0100): > >> Doug Barton schreef: > >>> As for the requirements in the ideas page ... >>> >> [...] >>> * storing old copies of shared libraries after shmajor number change >>> in /usr/local/lib/compat/pkg >>> >>> Portmaster doesn't do this currently. I have mixed feelings about >>> whether this is even a good idea or not. I'd be happy to elaborate on >>> why if anyone cares. >>> >> [...] >> >> Not having a /usr/local/lib/compat/pkg is cleaner IMO. > > It requires you to have all software up-to-date after a library version > bump. This is not always desired. Can you explain in more detail when and why that might be the case? What I'm trying to figure out is where the 80/20 line is here. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 22:56:26 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C728116A402; Tue, 20 Mar 2007 22:56:26 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id B315313C46C; Tue, 20 Mar 2007 22:56:26 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 73B1D1A3C1C; Tue, 20 Mar 2007 15:56:26 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C3012512EA; Tue, 20 Mar 2007 18:56:25 -0400 (EDT) Date: Tue, 20 Mar 2007 18:56:25 -0400 From: Kris Kennaway To: Doug Barton Message-ID: <20070320225625.GA19924@xor.obsecurity.org> References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <20070319125101.4lb7lljt5w4cwog8@webmail.leidinger.net> <1174308178.15322.13.camel@pav.hide.vol.cz> <45FF29E4.4060305@FreeBSD.org> <46004202.5040603@gmail.com> <20070320214735.0d55a1cb@Magellan.Leidinger.net> <4600647D.2040305@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4600647D.2040305@FreeBSD.org> User-Agent: Mutt/1.4.2.2i Cc: Alexander Leidinger , pav@FreeBSD.org, freebsd ports , Rene Ladan Subject: Re: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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, 20 Mar 2007 22:56:26 -0000 On Tue, Mar 20, 2007 at 03:47:25PM -0700, Doug Barton wrote: > Alexander Leidinger wrote: > >Quoting Rene Ladan (Tue, 20 Mar 2007 21:20:18 +0100): > > > >>Doug Barton schreef: > > > >>>As for the requirements in the ideas page ... > >>> > >>[...] > >>> * storing old copies of shared libraries after shmajor number change > >>>in /usr/local/lib/compat/pkg > >>> > >>>Portmaster doesn't do this currently. I have mixed feelings about > >>>whether this is even a good idea or not. I'd be happy to elaborate on > >>>why if anyone cares. > >>> > >>[...] > >> > >>Not having a /usr/local/lib/compat/pkg is cleaner IMO. > > > >It requires you to have all software up-to-date after a library version > >bump. This is not always desired. > > Can you explain in more detail when and why that might be the case? > What I'm trying to figure out is where the 80/20 line is here. See e.g. the recent UPDATING entry for gettext and consider what would happen if the user didn't jump through those hoops but only updated gettext alone. With portupgrade, the old library is preserved so all is fine. Kris From owner-freebsd-ports@FreeBSD.ORG Tue Mar 20 23:58:06 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 221FD16A402 for ; Tue, 20 Mar 2007 23:58:06 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.freebsd.org (Postfix) with ESMTP id F0F3413C4B0 for ; Tue, 20 Mar 2007 23:58:05 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.8/8.13.8) with ESMTP id l2KNw5Xv000964 for ; Tue, 20 Mar 2007 23:58:05 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.8/8.13.8/Submit) id l2KNw5OI000962 for ports@FreeBSD.org; Tue, 20 Mar 2007 23:58:05 GMT (envelope-from erwin) Date: Tue, 20 Mar 2007 23:58:05 GMT From: Erwin Lansing Message-Id: <200703202358.l2KNw5OI000962@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX now builds successfully on 5.x 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, 20 Mar 2007 23:58:06 -0000 From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 02:16:58 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F0F316A408 for ; Wed, 21 Mar 2007 02:16:58 +0000 (UTC) (envelope-from stickybit@gmx.net) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id C68A713C45B for ; Wed, 21 Mar 2007 02:16:57 +0000 (UTC) (envelope-from stickybit@gmx.net) Received: (qmail invoked by alias); 21 Mar 2007 01:50:15 -0000 Received: from port-212-202-34-58.dynamic.qsc.de (EHLO [192.168.100.111]) [212.202.34.58] by mail.gmx.net (mp032) with SMTP; 21 Mar 2007 02:50:15 +0100 X-Authenticated: #23197544 X-Provags-ID: V01U2FsdGVkX18ofD1jYmQoDEnBB433Xuz07tQbBTsF0jjNPSg4aA ShoHgI/raBIXkB Message-ID: <46008EB2.1010807@gmx.net> Date: Wed, 21 Mar 2007 02:47:30 +0100 From: Sticky Bit MIME-Version: 1.0 To: Doug Barton , freebsd-ports@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: Subject: Thank you for portmaster X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: stickybit@gmx.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Mar 2007 02:16:58 -0000 Hello, first let me thank you for developing such a nice tool! After so long time using portupgrade I gave portmaster a chance to convince me in daily usage. Now I am very happy with this decision and I begin to really like portmaster. One feature I would like to see implemented is a switch 'list only ports that have available updates'. I want to know all affected ports in summary before the builds so I am able to make decisions (i.e. 'portmaster -a' or just 'portmaster port', and think of the 'devel/gettext' update or other huge / long builds like gnome / gtk+ etc.). I am aware of the '-L' switch and the possibility to grep such ports. But this is a bit odd and not very likable. I want a similar output like 'portversion -vL=', i.e. port name along with old and new version numbering but only for ports with a different version available than installed (can also be an older version, think of a manually modified ports tree). Could you please add this small feature? Then I am actually able to do without portupgrade and its other tools. Thank you in advance! -- Kind regards, Sticky Bit *** True standards compliant plain text emails preferred. *** From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 03:47:21 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F7EF16A414 for ; Wed, 21 Mar 2007 03:47:21 +0000 (UTC) (envelope-from skreuzer@f2o.org) Received: from ms-smtp-01.rdc-nyc.rr.com (ms-smtp-01.rdc-nyc.rr.com [24.29.109.5]) by mx1.freebsd.org (Postfix) with ESMTP id 43B2913C4AD for ; Wed, 21 Mar 2007 03:47:21 +0000 (UTC) (envelope-from skreuzer@f2o.org) Received: from [192.168.1.102] (cpe-74-72-224-223.nyc.res.rr.com [74.72.224.223]) by ms-smtp-01.rdc-nyc.rr.com (8.13.6/8.13.6) with ESMTP id l2L38Ubr015590 for ; Tue, 20 Mar 2007 22:08:30 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v752.3) In-Reply-To: <20070320173358.01A2CB8C3@dione.picobyte.net> References: <20070320173358.01A2CB8C3@dione.picobyte.net> Message-Id: From: Steven Kreuzer Date: Tue, 20 Mar 2007 23:08:29 -0400 To: FreeBSD Ports X-Mailer: Apple Mail (2.752.3) X-Virus-Scanned: Symantec AntiVirus Scan Engine Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: FreeBSD ports you maintain which are out of date 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, 21 Mar 2007 03:47:21 -0000 On Mar 20, 2007, at 1:33 PM, shaun@freebsd.org wrote: > Dear port maintainer, > > The portscout new distfile checker has detected that one or more of > your > ports appears to be out of date. Please take the opportunity to check > each of the ports listed below, and if possible and appropriate, > submit/commit an update. If any ports have already been updated, > you can > safely ignore the entry. > > You will not be e-mailed again for any of the port/version > combinations > below. > > Full details can be found at the following URL: > http://beta.inerd.com/portscout/ports@freebsd.org.html > > > Port | Current version | > New version > ------------------------------------------------+----------------- > +------------ > devel/p5-Getopt-Mixed | 1.008 | > 1.09 > ------------------------------------------------+----------------- > +------------ > net-mgmt/nrpe | 1.9 | > 2.8b1 > ------------------------------------------------+----------------- > +------------ nrpe is listed as being out of date. However, for some reason, there are two versions of nrpe in ports: nrpe at v1.9, nrpe2 at v2.7 (2.7.1 is the latest stable version, so the nrpe2 port is out of date) Would it make sense to remove the port for nrpe which is currently unmaintained and rename nrpe2, which is maintained to just nrpe? Also, while p5-Getopt-Mixed is currently out of date, the author has listed the module as obsolete on the CPAN page (Its been replaced by Getopt::Long). I submitted a PR with a patch to update it 1.09 earlier today, but perhaps it should be considered for removal from the tree since it has no port maintainer, and the module is no longer maintained as well. I spoke privately with Anton Berezin (who is assigned to the PR) privately and we both agree that it would make sense to update it to 1.09, but at the same time, deprecate and mark it for deletion in the ports collection. Figured I would post this to the list to see if anyone has any strong feelings against it. The PR can be found at http://www.freebsd.org/cgi/query-pr.cgi?pr=110595 SK From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 03:52:46 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BBB5A16A402 for ; Wed, 21 Mar 2007 03:52:46 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout5.cac.washington.edu (mxout5.cac.washington.edu [140.142.32.135]) by mx1.freebsd.org (Postfix) with ESMTP id 9BDEC13C4BE for ; Wed, 21 Mar 2007 03:52:46 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.33.7] (may be forged)) by mxout5.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2L3qk8c017762 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 20 Mar 2007 20:52:46 -0700 X-Auth-Received: from [192.168.10.41] (c-67-187-172-183.hsd1.ca.comcast.net [67.187.172.183]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2L3qj0O023451 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Tue, 20 Mar 2007 20:52:45 -0700 Message-ID: <4600AC05.4000004@u.washington.edu> Date: Tue, 20 Mar 2007 20:52:37 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.10 (X11/20070316) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.0.289146, Antispam-Engine: 2.5.0.283055, Antispam-Data: 2007.3.20.204434 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Subject: A review of different port management tools : analysis for Google SoC project 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, 21 Mar 2007 03:52:46 -0000 Hi all, I know this may be more of a questions@ type of question, but I was wondering if some people could provide me with short history (beyond the last 3 months) and the tipping points of portmaster vs the portupgrade, portinstall, etc tools. I know portmaster is a bourne shell script and the portupgrade, portinstall, etc scripts are ruby based, so that's a given. I just want to know if there's a given solution that I could work with in improving the ports system and forge into a unified port/pkg management frontend (using bourne shell scripts and C), combined with the current package management tools in place (pkg_add, pkg_version, etc), as part of a Google Summer of Code proposal. Thank you very much for your help in trying to make a great OS even better. -Garrett From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 04:31:14 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 04C7816A402 for ; Wed, 21 Mar 2007 04:31:14 +0000 (UTC) (envelope-from spork@bway.net) Received: from xena.bway.net (xena.bway.net [216.220.96.26]) by mx1.freebsd.org (Postfix) with ESMTP id AF7AA13C457 for ; Wed, 21 Mar 2007 04:31:13 +0000 (UTC) (envelope-from spork@bway.net) Received: (qmail 29762 invoked by uid 0); 21 Mar 2007 04:04:32 -0000 Received: from unknown (HELO white.nat.fasttrackmonkey.com) (216.220.116.154) by smtp.bway.net with (DHE-RSA-AES256-SHA encrypted) SMTP; 21 Mar 2007 04:04:32 -0000 Date: Wed, 21 Mar 2007 00:04:23 -0400 (EDT) From: Charles Sprickman X-X-Sender: spork@white.nat.fasttrackmonkey.com To: ports@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Subject: Ports management in 4.11 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, 21 Mar 2007 04:31:14 -0000 Hi all, I understand 4.11 is dead, but I've still got about 20 odd boxes to take care of for the next few months until we can figure out what breaks in 6.x for us. I saw that it's recommended to use the "RELEASE_4_EOL" tag when updating the ports tree to make sure that we have a stable ports tree that should (mostly) build on 4.11. No problems there, we can deal with freezing everything at the date that tag came out... However, we do make extensive use of portupgrade and the version tagged there is known to be buggy. So I'd like to keep my current version of portupgrade (2.2.6_2.2) installed. Should this work? Running "pkgdb -F" to fix up deps gives me this: /usr/ports/INDEX:1765:Port info line must consist of 10 fields. /usr/ports/INDEX:1766:Port info line must consist of 10 fields. /usr/ports/INDEX:1767:Port info line must consist of 10 fields. /usr/ports/INDEX:1768:Port info line must consist of 10 fields. I'm guessing something here is not in sync or my cvsup "downgrade" to the EOL tag perhaps didn't remove everything. portupgrade also still thinks that tools that came from /usr/port/ports-mgmt still live in that directory rather than in /usr/ports/sysutils (as they do with the EOL tag): toolbox[/usr/ports]# pkgdb -F cd: can't cd to /usr/ports/ports-mgmt/portupgrade ---> Checking the package registry database Stale origin: 'ports-mgmt/pkg_install': perhaps moved or obsoleted. [/usr/ports/INDEX.db: unexpected file type or format -- Invalid argument] [Updating the portsdb in /usr/ports ... - 15969 port entries found /usr/ports/INDEX.db: unexpected file type or format -- Invalid argument: Cannot update the portsdb! (/usr/ports/INDEX.db)] database file error [Updating the portsdb in /usr/ports ... - 15969 port entries found .........1000.........2000.........3000.........4000.........5000.........6000.........7000.........8000.........9000.........10000.........11000.........12000.........13000.........14000.........15000......... ..... done] Skip this for now? [yes] What do I need to get in order to have this all work relatively smoothly until we can get everything upgraded to 6.x? Sadly(?), most of the port management tools have "just worked" for me, so I've never really gone looking under the hood that much. Any advice is appreciated... Thanks, Charles From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 05:05:24 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3021B16A402 for ; Wed, 21 Mar 2007 05:05:24 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.freebsd.org (Postfix) with ESMTP id A3B4B13C4BF for ; Wed, 21 Mar 2007 05:05:23 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.8/8.13.1) with ESMTP id l2L55lgR096769; Tue, 20 Mar 2007 21:05:47 -0800 (PST) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.8/8.13.1/Submit) id l2L55fj5096764; Tue, 20 Mar 2007 21:05:41 -0800 (PST) (envelope-from kline) Date: Tue, 20 Mar 2007 21:05:36 -0800 From: Gary Kline To: Garrett Cooper Message-ID: <20070321050535.GB68447@thought.org> References: <4600AC05.4000004@u.washington.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4600AC05.4000004@u.washington.edu> User-Agent: Mutt/1.4.2.2i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Cc: freebsd-ports@freebsd.org Subject: Re: A review of different port management tools : analysis for Google SoC project 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, 21 Mar 2007 05:05:24 -0000 On Tue, Mar 20, 2007 at 08:52:37PM -0700, Garrett Cooper wrote: > Hi all, > I know this may be more of a questions@ type of question, but I was > wondering if some people could provide me with short history (beyond the > last 3 months) and the tipping points of portmaster vs the portupgrade, > portinstall, etc tools. > I know portmaster is a bourne shell script and the portupgrade, > portinstall, etc scripts are ruby based, so that's a given. > I just want to know if there's a given solution that I could work > with in improving the ports system and forge into a unified port/pkg > management frontend (using bourne shell scripts and C), combined with > the current package management tools in place (pkg_add, pkg_version, > etc), as part of a Google Summer of Code proposal. To Garrett and my days-of-yore ports gang, and the maintenance and build guys, How about this idea for integrating into a new ports/package project: say for people with a fast I686 who wanted -O3 and -pipe and wanted his packages built remotely rather than his own computer. Would be be posssible to build a package, custom (according to one's /etc/make.conf) on FreeBSD's servers, then fetch the *tgz package back? Kernels, and worlds would reside on the remote server for only a few hours before being automatically cleansed. This would be super for everything from a i486-166MHz with 32Megs that was serving mail *only*, a slow to moderate i686, or even an AMD 2800. Building locally is sometimes the only way. But if users have slower servers and there are no current packages (i386), why not let the builds be queued? (Please 'cuse me if this is too wild, but I just had a full double espresso and am bubbling over with ideas.) gary > Thank you very much for your help in trying to make a great OS even > better. > -Garrett > _______________________________________________ > 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" -- Gary Kline kline@thought.org www.thought.org Public Service Unix From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 05:55:27 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3499F16A401 for ; Wed, 21 Mar 2007 05:55:27 +0000 (UTC) (envelope-from indigo23@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.freebsd.org (Postfix) with ESMTP id C0F1113C45E for ; Wed, 21 Mar 2007 05:55:26 +0000 (UTC) (envelope-from indigo23@gmail.com) Received: by ug-out-1314.google.com with SMTP id 71so171778ugh for ; Tue, 20 Mar 2007 22:55:25 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=VA0wSIlp/PzeB70EMGW894QvFmShI/ygLT0xXDBCB2hCZqTdCIlk1gq5JyUaHUx5x1qrNJXYgc8TCrP9yub3lkisz+vK6vCAwf8fDGvDVxT9x21ogJ1pIVLh39PPdeLTsCqGboac9uV9/F4oPrrBtks4PUgZMcYv96HhzH7yQw0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=pNxbzj4YRKMErt9UZexS9EfqqZXP/eptmBuaQ6eZsW1Tl3/tuWZPR5MgIgFlyhAueYycS89CfK8Y1wkwKNTFJ3F2FtcG2Z7ucUY0p6k/2Ji8RTMOJPrNuTtkC6Y++1z6v0CUmpJ8B4tfsds0SRc6Wcow/61++EKNSS9GZv56DBM= Received: by 10.115.106.7 with SMTP id i7mr45142wam.1174456524550; Tue, 20 Mar 2007 22:55:24 -0700 (PDT) Received: by 10.115.46.15 with HTTP; Tue, 20 Mar 2007 22:55:24 -0700 (PDT) Message-ID: <6f50eac40703202255s4f1e94d8w7bbf565cb9b0b702@mail.gmail.com> Date: Wed, 21 Mar 2007 01:55:24 -0400 From: "Indigo 23" To: freebsd-gnome@freebsd.org, freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Eye of Gnome error after upgrading to 2.18 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, 21 Mar 2007 05:55:27 -0000 After upgrading to Gnome 2.18 from 2.16 [in which I mostly used packages from marcuscom], I receive the following error when trying to open an image using Eye of Gnome 2.18 (eog-2.18.0.1): Couldn't load image 'gnome-failed.jpg'. Unable to load image-loading module: /usr/X11R6/lib/gtk-2.0/2.4.0/loaders/libpixbufloader-jpeg.so: Cannot open "/usr/X11R6/lib/gtk-2.0/2.4.0/loaders/libpixbufloader-jpeg.so" and in the Terminal I get the following: (eog:66783): Gtk-WARNING **: Unable to locate theme engine in module_path: "murrine", I recompiled the murrine/murrina themes after upgrading (just in case), and I am running 6.2. Anyone have any idea what's wrong and how it can be fixed? Thanks. From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 05:57:42 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6DA0D16A406 for ; Wed, 21 Mar 2007 05:57:42 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout3.cac.washington.edu (mxout3.cac.washington.edu [140.142.32.166]) by mx1.freebsd.org (Postfix) with ESMTP id 48CEF13C4DD for ; Wed, 21 Mar 2007 05:57:42 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.33.7] (may be forged)) by mxout3.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2L5vfL2025592 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 20 Mar 2007 22:57:41 -0700 X-Auth-Received: from [192.168.10.41] (c-67-187-172-183.hsd1.ca.comcast.net [67.187.172.183]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2L5vePZ029347 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Tue, 20 Mar 2007 22:57:41 -0700 Message-ID: <4600C951.3080708@u.washington.edu> Date: Tue, 20 Mar 2007 22:57:37 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.10 (X11/20070316) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <4600AC05.4000004@u.washington.edu> <20070321050535.GB68447@thought.org> In-Reply-To: <20070321050535.GB68447@thought.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.0.289146, Antispam-Engine: 2.5.0.283055, Antispam-Data: 2007.3.20.224934 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Subject: Re: A review of different port management tools : analysis for Google SoC project 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, 21 Mar 2007 05:57:42 -0000 Gary Kline wrote: > On Tue, Mar 20, 2007 at 08:52:37PM -0700, Garrett Cooper wrote: >> Hi all, >> I know this may be more of a questions@ type of question, but I was >> wondering if some people could provide me with short history (beyond the >> last 3 months) and the tipping points of portmaster vs the portupgrade, >> portinstall, etc tools. >> I know portmaster is a bourne shell script and the portupgrade, >> portinstall, etc scripts are ruby based, so that's a given. >> I just want to know if there's a given solution that I could work >> with in improving the ports system and forge into a unified port/pkg >> management frontend (using bourne shell scripts and C), combined with >> the current package management tools in place (pkg_add, pkg_version, >> etc), as part of a Google Summer of Code proposal. > > > > To Garrett and my days-of-yore ports gang, and the maintenance > and build guys, > > How about this idea for integrating into a new ports/package > project: say for people with a fast I686 who wanted -O3 and -pipe > and wanted his packages built remotely rather than his own > computer. Would be be posssible to build a package, custom > (according to one's /etc/make.conf) on FreeBSD's servers, then > fetch the *tgz package back? Kernels, and worlds would reside > on the remote server for only a few hours before being > automatically cleansed. This would be super for everything from > a i486-166MHz with 32Megs that was serving mail *only*, a slow > to moderate i686, or even an AMD 2800. Building locally is > sometimes the only way. But if users have slower servers and > there are no current packages (i386), why not let the builds be > queued? > > (Please 'cuse me if this is too wild, but I just had a full > double espresso and am bubbling over with ideas.) > > gary > > > > >> Thank you very much for your help in trying to make a great OS even >> better. >> -Garrett Eh, it's a wishful thought but unfortunately everyone has a large list of dependencies that will (most likely) differ from the rest of the bunch, from languages, to options, to library versions -- doing that wouldn't be unfeasible. However, if you want a faster method to compiling stuff, there's distcc. It's not exactly the best thing to use all the time, but if you work with port maintainers and stuff gets more standardized, distcc can be an effective way to building packages across multiple machines. Apart from that, there isn't much way to do anything... apart from setting up your own higher powered PC with a set of your desired options and build from within jails, and package as you go. A i386 can build different archs binaries (amd64, ppc, etc), in-so-much as it can find the right info (headers, libraries to link against, etc). That's a thought for your PCs project :). -Garrett From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 06:05:16 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C827516A405 for ; Wed, 21 Mar 2007 06:05:16 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout7.cac.washington.edu (mxout7.cac.washington.edu [140.142.32.178]) by mx1.freebsd.org (Postfix) with ESMTP id A608413C45E for ; Wed, 21 Mar 2007 06:05:16 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) by mxout7.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2L65ElL032545 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 20 Mar 2007 23:05:14 -0700 X-Auth-Received: from [192.168.10.41] (c-67-187-172-183.hsd1.ca.comcast.net [67.187.172.183]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2L65DHc031782 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 20 Mar 2007 23:05:14 -0700 Message-ID: <4600CB16.1010509@u.washington.edu> Date: Tue, 20 Mar 2007 23:05:10 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.10 (X11/20070316) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.0.289146, Antispam-Engine: 2.5.0.283055, Antispam-Data: 2007.3.20.225434 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='SUPERLONG_LINE 0.05, __CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Cc: Charles Sprickman Subject: Re: Ports management in 4.11 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, 21 Mar 2007 06:05:17 -0000 Charles Sprickman wrote: > Hi all, > > I understand 4.11 is dead, but I've still got about 20 odd boxes to take > care of for the next few months until we can figure out what breaks in > 6.x for us. > > I saw that it's recommended to use the "RELEASE_4_EOL" tag when updating > the ports tree to make sure that we have a stable ports tree that should > (mostly) build on 4.11. No problems there, we can deal with freezing > everything at the date that tag came out... > > However, we do make extensive use of portupgrade and the version tagged > there is known to be buggy. So I'd like to keep my current version of > portupgrade (2.2.6_2.2) installed. Should this work? > > Running "pkgdb -F" to fix up deps gives me this: > > /usr/ports/INDEX:1765:Port info line must consist of 10 fields. > /usr/ports/INDEX:1766:Port info line must consist of 10 fields. > /usr/ports/INDEX:1767:Port info line must consist of 10 fields. > /usr/ports/INDEX:1768:Port info line must consist of 10 fields. > > I'm guessing something here is not in sync or my cvsup "downgrade" to > the EOL tag perhaps didn't remove everything. > > portupgrade also still thinks that tools that came from > /usr/port/ports-mgmt still live in that directory rather than in > /usr/ports/sysutils (as they do with the EOL tag): > > toolbox[/usr/ports]# pkgdb -F > cd: can't cd to /usr/ports/ports-mgmt/portupgrade > ---> Checking the package registry database > Stale origin: 'ports-mgmt/pkg_install': perhaps moved or obsoleted. > [/usr/ports/INDEX.db: unexpected file type or format -- Invalid > argument] [Updating the portsdb in /usr/ports ... - > 15969 port entries found /usr/ports/INDEX.db: unexpected file type or > format -- Invalid argument: Cannot update the portsdb! > (/usr/ports/INDEX.db)] > database file error > [Updating the portsdb in /usr/ports ... - 15969 port > entries found > .........1000.........2000.........3000.........4000.........5000.........6000.........7000.........8000.........9000.........10000.........11000.........12000.........13000.........14000.........15000......... > ..... done] > Skip this for now? [yes] > > What do I need to get in order to have this all work relatively smoothly > until we can get everything upgraded to 6.x? > > Sadly(?), most of the port management tools have "just worked" for me, > so I've never really gone looking under the hood that much. > > Any advice is appreciated... > > Thanks, > > Charles Newer version of portupgrade / pkgdb should have fixed this IIRC. Look into the archives a few days and you'll find the thread. -Garrett From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 06:38:19 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8428D16A468 for ; Wed, 21 Mar 2007 06:38:19 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from lab.alexdupre.com (lab.alexdupre.com [81.174.31.42]) by mx1.freebsd.org (Postfix) with ESMTP id 1C3F813C43E for ; Wed, 21 Mar 2007 06:38:13 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: (qmail 76357 invoked from network); 21 Mar 2007 06:38:12 -0000 Received: from unknown (HELO ?192.168.178.2?) (192.168.178.2) by lab.alexdupre.com with SMTP; 21 Mar 2007 06:38:12 -0000 Message-ID: <4600D2D4.1030200@FreeBSD.org> Date: Wed, 21 Mar 2007 07:38:12 +0100 From: Alex Dupre User-Agent: Thunderbird 1.5.0.10 (X11/20070310) MIME-Version: 1.0 To: stickybit@gmx.net References: <46008EB2.1010807@gmx.net> In-Reply-To: <46008EB2.1010807@gmx.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Doug Barton , freebsd-ports@freebsd.org Subject: Re: Thank you for portmaster 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, 21 Mar 2007 06:38:19 -0000 Sticky Bit wrote: > One feature I would like to see implemented is a switch 'list only ports > that have available updates'. I want to know all affected ports in > summary before the builds so I am able to make decisions (i.e. > 'portmaster -a' or just 'portmaster port' pkg_version -Ivl'<' -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 06:53:23 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAD0B16A406 for ; Wed, 21 Mar 2007 06:53:23 +0000 (UTC) (envelope-from gnn@neville-neil.com) Received: from mrout2.yahoo.com (mrout2.yahoo.com [216.145.54.172]) by mx1.freebsd.org (Postfix) with ESMTP id CE34213C468 for ; Wed, 21 Mar 2007 06:53:21 +0000 (UTC) (envelope-from gnn@neville-neil.com) Received: from minion.local.neville-neil.com (proxy8.corp.yahoo.com [216.145.48.13]) by mrout2.yahoo.com (8.13.6/8.13.6/y.out) with ESMTP id l2L6qcEx001492; Tue, 20 Mar 2007 23:52:39 -0700 (PDT) Date: Wed, 21 Mar 2007 15:52:37 +0900 Message-ID: From: "George V. Neville-Neil" To: Li-Wen Hsu In-Reply-To: <20070317090428.GA46256@knight.lwhsu.ckefgisc.org> References: <200702211000.l1LA0qVZ039693@freefall.freebsd.org> <12749.192.216.27.32.1173205452.squirrel@webmail.freeshell.org> <42419.192.216.27.32.1173288103.squirrel@webmail.freeshell.org> <20070317090428.GA46256@knight.lwhsu.ckefgisc.org> User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.7 Emacs/22.0.95 (i386-apple-darwin8.8.2) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=BIG5 Content-Transfer-Encoding: base64 Cc: ports@FreeBSD.org, tmclaugh@sdf.lonestar.org, Li-Wen Hsu Subject: Re: FreeBSD ports: 1 unfetchable distfile: net/py-pypcap 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, 21 Mar 2007 06:53:24 -0000 QXQgU2F0LCAxNyBNYXIgMjAwNyAxNzowNDoyOCArMDgwMCwNCkxpLVdlbiBIc3Ugd3JvdGU6DQo+ IA0KPiBPbiClfCwgIDMgMDgsIDIwMDcgYXQgMTc6MDE6MTEgKzA5MDAsIGdubkBGcmVlQlNELm9y ZyB3cm90ZToNCj4gPiBBdCBXZWQsIDcgTWFyIDIwMDcgMTc6MjE6NDMgLTAwMDAgKFVUQyksDQo+ ID4gdG1jbGF1Z2hAc2RmLmxvbmVzdGFyLm9yZyB3cm90ZToNCj4gPiA+ID4NCj4gPiA+ID4gMSkg dXBkYXRlIHRoZSBQQ1MgcG9ydCB0byBncmFiIG15IHZlcnNpb24NCj4gPiA+IA0KPiA+ID4gSSB0 aGluayB0aGlzIGlzIHRoZSBpZGVhbCB3YXkgdG8gaGFuZGxlIHRoZSBzaXR1YXRpb24uICBPbmx5 IGNhdmVhdA0KPiA+ID4gb24geW91ciBlbmQgaXMgeW91ciBtb2RpZmllZCBweXBjYXAgc2hvdWxk bid0IGludGVyZmVyZSB3aXRoIHRoZQ0KPiA+ID4gcG9ydCBvZiBEb3VnJ3MgcHlwY2FwLiAgSXQg c2hvdWxkIGluc3RhbGwgd2l0aCBhIHNsaWdodGx5IGRpZmZlcmVudA0KPiA+ID4gbW9kdWxlIG5h bWUgc28gd2UgZG9uJ3QgbmVlZCB0byBzZXQgcG9ydCBjb25mbGljdHMgYW5kIHNvIHBvcnRzDQo+ ID4gPiByZWx5aW5nIG9uIG5ldC9weXBjYXAgZG9uJ3Qgc2VlIHlvdXIgZm9yayBpbnN0YWxsZWQg YW5kIGFzc3VtZQ0KPiA+ID4gbmV0L3B5LXB5cGNhcCBpcyBpbnN0YWxsZWQgd2hpY2ggbWF5IGxl YWQgdG8gcG90ZW50aWFsIGJyZWFrYWdlLg0KPiA+IA0KPiA+IE9LLCBjYW4geW91IHByb3Bvc2Ug YSBuYW1lIGFuZCBzZXQgaXQgYWxsIHVwPyAgVGhlIG51bWJlciBvZiB0aGVzZQ0KPiA+IGxpYnJh cmllcyB0aGF0IGV4aXN0IGlzIHByb2JsZW1hdGljLg0KPiANCj4gVGhlcmUgYXJlIHRvbyBtYW55 IHBvcnRzIHdpdGggc2ltaWxhciBuYW1lcywgSSBwcm9wb3NlIGBgcHktcHljYXAnJywNCj4gaXQn cyBub3RoaW5nIGJ1dCBhIG5ldyBuYW1lIHRvIG1ha2UgZGlmZmVyZW5jZSB3aXRoIG90aGVycy4N Cj4gDQo+IFRodXMgd2UgbmVlZCB0byBhZGQgYSBuZXcgcG9ydCwgcHktcHljYXAsIEkgbWFkZSBh IHNoYXI6DQo+IGh0dHA6Ly9mcmVlYnNkLmNzaWUubmN0dS5lZHUudHcvfmx3aHN1L3RtcC9weS1w eWNhcC5zaGFyDQo+IA0KPiBJIGhhdmUgY2hhbmdlZCBzb21lIGZpbGVzIGluIHB5LXB5cGNhcC0x LjEuMi50YXIuZ3osIGxpa2UgUEtHLUlORk8sDQo+IFJFQURNRSBhbmQgc2V0dXAucHksIGZvciBp bnN0YWxsaW5nIHdpdGggZGlmZmVyZW50IG1vZHVsZSwNCj4gJSVQWVRIT05fU0lURUxJQkRJUiUl L3B5Y2FwLnNvLiAgQW5kIHJlcGFjayBpdCBhcyBweS1weWNhcC0xLjAudGFyLmd6Lg0KPiANCj4g V2UgYWxzbyBuZWVkIHRvIGNoYW5nZSB0aGUgUlVOX0RFUEVORFMgaW4gbmV0L3BjcywgaW4gZWFy bGllciBkaXNjdXNzaW9uLA0KPiB3ZSB0aGluayByZW5hbWUgaXQgdG8gbmV0L3B5LXBjcyBpcyBi ZXR0ZXIsIHNvIHdlIG1pZ2h0IG5lZWQgYSByZXBvY29weS4NCj4gVGhpcyBzaGFyIGNvbnRhaW5z IHRoZSBuZXcgbmV0L3B5LXBjcywgYW5kIHVwZGF0ZXMgdGhlIHBjcyB0byAwLjQ6DQo+IGh0dHA6 Ly9mcmVlYnNkLmNzaWUubmN0dS5lZHUudHcvfmx3aHN1L3RtcC9weS1wY3Muc2hhcg0KPiANCj4g RHVlIHRvIHRoZSByZW5hbWluZyBvZiBwY3MsIHdlIGFsc28gbmVlZCB0byBjaGFuZ2UgUlVOX0RF UEVORFMgaW4gbmV0L3BkYiwNCj4gVGhpcyBwYXRjaCB1cGRhdGVzIHBkYjoNCj4gaHR0cDovL2Zy ZWVic2QuY3NpZS5uY3R1LmVkdS50dy9+bHdoc3UvdG1wL3BkYi5kaWZmDQo+IA0KPiBQbGVhc2Ug Y2hlY2sgdGhlc2Ugc2hhcnMgYW5kIHBhdGNoZXMsIHRoYW5rcy4NCg0KRmlyc3QgbGV0IG1lIGFw b2xvZ2l6ZSBmb3IgdGFraW5nIHNvIGxvbmcgdG8gdGVzdCB0aGlzLCBvdGhlciB3b3JrDQphbHdh eXMgZ2V0cyBpbiB0aGUgd2F5LiAgU2Vjb25kLCB0aGVzZSBhbGwgd29yayBiZWF1dGlmdWxseSBh bmQgSSBhbQ0KeWV0IGFnYWluIGluZGVidGVkIHRvIHlvdSBhbmQgdGhlIHBvcnRzIHRlYW0gZm9y IG1ha2luZyB0aGVzZSB0aGluZ3MNCndvcmsuDQoNCkxldCBtZSBrbm93IHdoZW4gdGhleSdyZSBp biB0aGUgdHJlZSBhcyBJIGhhdmUgYSBmZXcgcGVvcGxlIHdobyB3YW50DQp0byBzdGFydCB1c2lu ZyB0aGVtIGFzYXAuDQoNClRoYW5rcyBhZ2FpbiENCg0KR2VvcmdlDQo= From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 07:34:12 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6351D16A406; Wed, 21 Mar 2007 07:34:12 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from redbull.bpaserver.net (redbullneu.bpaserver.net [213.198.78.217]) by mx1.freebsd.org (Postfix) with ESMTP id E08CC13C4D3; Wed, 21 Mar 2007 07:34:11 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from outgoing.leidinger.net (p54A5FC86.dip.t-dialin.net [84.165.252.134]) by redbull.bpaserver.net (Postfix) with ESMTP id 38C4B2E04D; Wed, 21 Mar 2007 08:34:05 +0100 (CET) Received: from webmail.leidinger.net (webmail.Leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id 0BC5F5B4817; Wed, 21 Mar 2007 08:34:02 +0100 (CET) Received: (from www@localhost) by webmail.leidinger.net (8.13.8/8.13.8/Submit) id l2L7Y1EF020959; Wed, 21 Mar 2007 08:34:01 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Wed, 21 Mar 2007 08:34:01 +0100 Message-ID: <20070321083401.7x3vh4rb4wgs0wcw@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Wed, 21 Mar 2007 08:34:01 +0100 From: Alexander Leidinger To: Doug Barton References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <20070319125101.4lb7lljt5w4cwog8@webmail.leidinger.net> <1174308178.15322.13.camel@pav.hide.vol.cz> <45FF29E4.4060305@FreeBSD.org> <46004202.5040603@gmail.com> <20070320214735.0d55a1cb@Magellan.Leidinger.net> <4600647D.2040305@FreeBSD.org> In-Reply-To: <4600647D.2040305@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.3) / FreeBSD-7.0 X-BPAnet-MailScanner-Information: Please contact the ISP for more information X-BPAnet-MailScanner: Found to be clean X-BPAnet-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-14.864, required 8, autolearn=not spam, BAYES_00 -15.00, DK_POLICY_SIGNSOME 0.00, FORGED_RCVD_HELO 0.14) X-BPAnet-MailScanner-From: alexander@leidinger.net X-Spam-Status: No Cc: pav@FreeBSD.org, freebsd ports , Rene Ladan Subject: Re: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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, 21 Mar 2007 07:34:12 -0000 Quoting Doug Barton (from Tue, 20 Mar 2007 =20 15:47:25 -0700): > Alexander Leidinger wrote: >> Quoting Rene Ladan (Tue, 20 Mar 2007 21:20:18 +0100= ): >>> Not having a /usr/local/lib/compat/pkg is cleaner IMO. >> >> It requires you to have all software up-to-date after a library version >> bump. This is not always desired. > > Can you explain in more detail when and why that might be the case? > What I'm trying to figure out is where the 80/20 line is here. When you need a program which needs a newer lib than installed on a =20 production system, but you don't get a maintenance window to update =20 all other programs which use this lib, then not having the old lib =20 will hurt. When the reason for the library version bump also requires to change =20 some parts in the source of the programs which make use of the lib, =20 you have to update all programs at once. If some programs have bugs in =20 more recent versions which you can't accept in production and when you =20 need to install a program which needs the new lib version, you are =20 busted when you don't have the old lib around. In the same scenario as in the previous paragraph you also depend upon =20 the release cycle of all involved applications. So if not all programs =20 are available in a compatible version, you are busted too. For some libs having old libs is a nightmare (gettext comes to mind, =20 and every other lib which is used in a lot of other libs and =20 programs), but in general it is a good thing to have the possibility =20 to decide on your own if you want to update everything or only a =20 specific subset. Bye, Alexander. --=20 Q:=09How many college football players does it take to screw in a lightbulb? A:=09Only one, but he gets three credits for it. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 08:03:22 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2CE4E16A41B for ; Wed, 21 Mar 2007 08:03:22 +0000 (UTC) (envelope-from martin@matuska.org) Received: from mail.vx.sk (neo.vx.sk [88.198.35.14]) by mx1.freebsd.org (Postfix) with ESMTP id E608213C484 for ; Wed, 21 Mar 2007 08:03:21 +0000 (UTC) (envelope-from martin@matuska.org) Received: from localhost (localhost [127.0.0.1]) by mail.vx.sk (Postfix) with ESMTP id 83B233F48B for ; Wed, 21 Mar 2007 09:03:20 +0100 (CET) X-Virus-Scanned: amavisd-new at mail.vx.sk Received: from mail.vx.sk ([127.0.0.1]) by localhost (mail.vx.sk [127.0.0.1]) (amavisd-new, port 10024) with LMTP id UniaCCwE2hH2 for ; Wed, 21 Mar 2007 09:03:17 +0100 (CET) Received: from [137.208.224.187] (abt-wi-028.wu-wien.ac.at [137.208.224.187]) by mail.vx.sk (Postfix) with ESMTP id B87953F42E for ; Wed, 21 Mar 2007 09:03:17 +0100 (CET) Message-ID: <4600E6D3.4020209@matuska.org> Date: Wed, 21 Mar 2007 09:03:31 +0100 From: Martin Matuska User-Agent: Thunderbird 2.0b2 (Windows/20070116) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Testing and suggestions for new bsd.tcl.mk 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, 21 Mar 2007 08:03:22 -0000 Hi everybody, I am working on a new bsd.tcl.mk and I would like to ask for feedback, suggestions and bug reports. There is a new way how threads are handled, a new port called tcl-tk-wrapper may be used and the tcl and tk ports are already prepared for this change. The new file should be fully backwards compatible. What the different parts do is documented in comments. The current version can be viewed under: http://www.matuska.org/martin/cgi/viewvc.cgi/ports/Mk/bsd.tcl.mk?revision=HEAD&view=markup Patch against current ports CVS: http://www.matuska.org/martin/cgi/viewvc.cgi/ports/Mk/bsd.tcl.mk?r1=45&r2=HEAD&view=patch From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 08:31:27 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F319E16A469 for ; Wed, 21 Mar 2007 08:31:26 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.175]) by mx1.freebsd.org (Postfix) with ESMTP id 7BABB13C4E8 for ; Wed, 21 Mar 2007 08:31:26 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by ug-out-1314.google.com with SMTP id 71so214215ugh for ; Wed, 21 Mar 2007 01:31:25 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=cA+dDqj9Ht5FUsLHnQOmX95rOZUNWIBMBB4P/30r4C6bJwhEapFzOd7dbDqtvOp3bp21TYof7I8xcqjclBXcDzqSJjuD+WFRH/IEiNsKUqDh46qbL8cfGTNyFiisUBh6j1td9cHVcbfZnHYil/KfbP2Glclr2swlHbjZa7S/CBY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=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; b=WMNhCzeeQRky9fPHkkE8fez8RjqB4BXQUJCBBOrD5TqtXOGcHGCSBZJGBBwRkrHK7X84fi6B0Do1UqkDzKV3A1XoFLKjy5ncqkI09HGQJKD+anQGAKHf59A3NsCpGIRx/3g4AUnb59EoKlAIjyWFxZ7vLQcqOrUSHyiCgOEAeyo= Received: by 10.114.136.1 with SMTP id j1mr81183wad.1174465884372; Wed, 21 Mar 2007 01:31:24 -0700 (PDT) Received: by 10.114.201.2 with HTTP; Wed, 21 Mar 2007 01:31:24 -0700 (PDT) Message-ID: Date: Wed, 21 Mar 2007 11:31:24 +0300 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Alexander Leidinger" In-Reply-To: <20070321083401.7x3vh4rb4wgs0wcw@webmail.leidinger.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <20070319125101.4lb7lljt5w4cwog8@webmail.leidinger.net> <1174308178.15322.13.camel@pav.hide.vol.cz> <45FF29E4.4060305@FreeBSD.org> <46004202.5040603@gmail.com> <20070320214735.0d55a1cb@Magellan.Leidinger.net> <4600647D.2040305@FreeBSD.org> <20070321083401.7x3vh4rb4wgs0wcw@webmail.leidinger.net> X-Google-Sender-Auth: 3090e59d51488a1a Cc: Doug Barton , pav@freebsd.org, freebsd ports , Rene Ladan Subject: Re: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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, 21 Mar 2007 08:31:27 -0000 On 3/21/07, Alexander Leidinger wrote: > When you need a program which needs a newer lib than installed on a > production system, but you don't get a maintenance window to update > all other programs which use this lib, then not having the old lib > will hurt. > > When the reason for the library version bump also requires to change > some parts in the source of the programs which make use of the lib, > you have to update all programs at once. If some programs have bugs in > more recent versions which you can't accept in production and when you > need to install a program which needs the new lib version, you are > busted when you don't have the old lib around. But don't you smell an architectural flaw here (of the ports system) and don't you feel that working around it in a tool in the base system might only mess things up even more?.. From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 09:59:12 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 05F5316A6B9 for ; Wed, 21 Mar 2007 09:59:11 +0000 (UTC) (envelope-from alfredoj69@rogers.com) Received: from web88109.mail.re2.yahoo.com (web88109.mail.re2.yahoo.com [206.190.37.210]) by mx1.freebsd.org (Postfix) with SMTP id 89A0813C455 for ; Wed, 21 Mar 2007 09:59:11 +0000 (UTC) (envelope-from alfredoj69@rogers.com) Received: (qmail 22138 invoked by uid 60001); 21 Mar 2007 09:32:29 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=YxanrMpKzEzKIdmovPFeqBDERC6fRJq9dTaLgQ2EjsZgjn+RbqMzFDuMITWKkWgaB6SrU+71kUzWN6rWYCf2IoI/ZJxHFGPP344kxLnqMJTSaf5RG1O14AHiO8wcBk5jIVweRJfMCM1BRq90L3xTnGZBghR/4/pmwlt2/+YXroE=; X-YMail-OSG: OGIm6eUVM1mDHzuuEgMq41c7FHFKMVbG5PqqHkhLDRPXRygbO_wYiqTn6F3JNvWeEStr1E2f85z8biQ1Q.42ekl_XVQamMExu_64tIUqkViS3tApYZ7n3uWhnTqbJrs0C3KHvs8Ma77Z Received: from [74.100.192.207] by web88109.mail.re2.yahoo.com via HTTP; Wed, 21 Mar 2007 05:32:29 EDT Date: Wed, 21 Mar 2007 05:32:29 -0400 (EDT) From: Alfredo Perez To: ports@freebsd.org MIME-Version: 1.0 Message-ID: <411432.21711.qm@web88109.mail.re2.yahoo.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Openssh 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, 21 Mar 2007 09:59:12 -0000 Hi I noticed that Openssh port shows in the list of ports that need to be updated to the latest version (4.6), I dont have much experience updating a port but If nobody is working on that, I would really like to give it I try? Thanks Alfredo From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 10:02:35 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E460116A40F for ; Wed, 21 Mar 2007 10:02:35 +0000 (UTC) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id BDCE313C4C1 for ; Wed, 21 Mar 2007 10:02:35 +0000 (UTC) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l2LA2Z7d077184 for ; Wed, 21 Mar 2007 10:02:35 GMT (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l2LA2Zsl077183 for ports@freebsd.org; Wed, 21 Mar 2007 10:02:35 GMT (envelope-from fenner) Date: Wed, 21 Mar 2007 10:02:35 GMT From: Bill Fenner Message-Id: <200703211002.l2LA2Zsl077183@freefall.freebsd.org> To: ports@freebsd.org Cc: Subject: Unfetchable distfiles reminder 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, 21 Mar 2007 10:02:36 -0000 Dear porters, This is just a reminder to please periodically check the list of unfetchable distfiles at http://people.freebsd.org/~fenner/portsurvey/ . In particular, the list of ports with no MAINTAINER with distfile problems, which currently has 220 bad ports, is http://people.freebsd.org/~fenner/portsurvey/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. In addition, the list of all ports with any unfetchable distfile is http://people.freebsd.org/~fenner/portsurvey/bad.html if you don't mind coordinating your fixes with the port MAINTAINER. Thanks for your help! Bill "distfiles" Fenner From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 10:44:28 2007 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21AC416A46B; Wed, 21 Mar 2007 10:44:28 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from nat-application.b1.lan.prg.vol.cz (nat-application.b1.lan.prg.vol.cz [195.122.204.152]) by mx1.freebsd.org (Postfix) with ESMTP id 6992213C4C1; Wed, 21 Mar 2007 10:44:27 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from pav.hide.vol.cz (localhost [127.0.0.1]) by nat-application.b1.lan.prg.vol.cz (8.13.8/8.13.8) with ESMTP id l2LANdK2047198; Wed, 21 Mar 2007 11:23:39 +0100 (CET) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by pav.hide.vol.cz (8.13.8/8.13.8/Submit) id l2LANdnk047195; Wed, 21 Mar 2007 11:23:39 +0100 (CET) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: pav.hide.vol.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Andrew Pantyukhin In-Reply-To: References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <20070319125101.4lb7lljt5w4cwog8@webmail.leidinger.net> <1174308178.15322.13.camel@pav.hide.vol.cz> <45FF29E4.4060305@FreeBSD.org> <46004202.5040603@gmail.com> <20070320214735.0d55a1cb@Magellan.Leidinger.net> <4600647D.2040305@FreeBSD.org> <20070321083401.7x3vh4rb4wgs0wcw@webmail.leidinger.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-eszgB2CtG+M0FHBIR9lV" Date: Wed, 21 Mar 2007 11:23:39 +0100 Message-Id: <1174472619.32542.14.camel@pav.hide.vol.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.0 FreeBSD GNOME Team Port Cc: Alexander Leidinger , Doug Barton , freebsd ports , Rene Ladan Subject: Re: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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, 21 Mar 2007 10:44:28 -0000 --=-eszgB2CtG+M0FHBIR9lV Content-Type: text/plain; charset=ISO8859-2 Content-Transfer-Encoding: quoted-printable Andrew Pantyukhin p=ED=B9e v st 21. 03. 2007 v 11:31 +0300: > On 3/21/07, Alexander Leidinger wrote: > > When you need a program which needs a newer lib than installed on a > > production system, but you don't get a maintenance window to update > > all other programs which use this lib, then not having the old lib > > will hurt. > > > > When the reason for the library version bump also requires to change > > some parts in the source of the programs which make use of the lib, > > you have to update all programs at once. If some programs have bugs in > > more recent versions which you can't accept in production and when you > > need to install a program which needs the new lib version, you are > > busted when you don't have the old lib around. >=20 > But don't you smell an architectural flaw here (of the > ports system) and don't you feel that working around it > in a tool in the base system might only mess things up > even more?.. No I don't see a systematic flaw here. Or you suggest we reset all shmajors everywhere to zero? --=20 Pav Lucistnik The hottest spot in the solar system is neither Mercury, Venus, nor St. Louis in the summer. -- WUSTL Press Release --=-eszgB2CtG+M0FHBIR9lV 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.7 (FreeBSD) iD8DBQBGAQenntdYP8FOsoIRAhBVAKCXMY6opV652AD3sPJFlK43I+IHzACgiM4O aJ2QihibM1mI3KK1I2slanY= =vWzz -----END PGP SIGNATURE----- --=-eszgB2CtG+M0FHBIR9lV-- From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 10:56:01 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6AECD16A402 for ; Wed, 21 Mar 2007 10:56:01 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.freebsd.org (Postfix) with ESMTP id EB3AE13C484 for ; Wed, 21 Mar 2007 10:55:58 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by ug-out-1314.google.com with SMTP id 71so256862ugh for ; Wed, 21 Mar 2007 03:55:57 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=faJxYoec5v2S1mbIUrK16K2n0wx+RtPxXY5GKz+oywEUOoZ2DlBL+is6OxJeGMGAkL4z4QG8Y+V/i4Px9auLHUNh7TKmq318Y9yocxHstTP9042jLV1VDWN4XWciuaJmZMkmgkPh58wZpRBJuRbIMgRgzh7q2CyI3iqUKxyBT24= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=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; b=kllwkx0s/CmI2DdQMza19RayztH8gnUE1E6ImUnJ18xX/VojBQaR54CuhRpls6j7mL4UX4U9sG4Xls3HSWnXXd6Lf4oIHxlwLX8LsaQcMPiLCAyNzYD/5BatKc2yMH6BJqX2YyNZpn6aGfpFzgp07McrHMkmAKGGj1Bv4DtRVEI= Received: by 10.114.136.1 with SMTP id j1mr118181wad.1174474556594; Wed, 21 Mar 2007 03:55:56 -0700 (PDT) Received: by 10.114.201.2 with HTTP; Wed, 21 Mar 2007 03:55:56 -0700 (PDT) Message-ID: Date: Wed, 21 Mar 2007 13:55:56 +0300 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: pav@freebsd.org In-Reply-To: <1174472619.32542.14.camel@pav.hide.vol.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: base64 Content-Disposition: inline References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <20070319125101.4lb7lljt5w4cwog8@webmail.leidinger.net> <1174308178.15322.13.camel@pav.hide.vol.cz> <45FF29E4.4060305@FreeBSD.org> <46004202.5040603@gmail.com> <20070320214735.0d55a1cb@Magellan.Leidinger.net> <4600647D.2040305@FreeBSD.org> <20070321083401.7x3vh4rb4wgs0wcw@webmail.leidinger.net> <1174472619.32542.14.camel@pav.hide.vol.cz> X-Google-Sender-Auth: 1fe64e2df7a434f5 Cc: Alexander Leidinger , Doug Barton , freebsd ports , Rene Ladan Subject: Re: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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, 21 Mar 2007 10:56:01 -0000 T24gMy8yMS8wNywgUGF2IEx1Y2lzdG5payA8cGF2QGZyZWVic2Qub3JnPiB3cm90ZToKPiBBbmRy ZXcgUGFudHl1a2hpbiBww63FoWUgdiBzdCAyMS4gMDMuIDIwMDcgdiAxMTozMSArMDMwMDoKPiA+ IE9uIDMvMjEvMDcsIEFsZXhhbmRlciBMZWlkaW5nZXIgPEFsZXhhbmRlckBsZWlkaW5nZXIubmV0 PiB3cm90ZToKPiA+ID4gV2hlbiB5b3UgbmVlZCBhIHByb2dyYW0gd2hpY2ggbmVlZHMgYSBuZXdl ciBsaWIgdGhhbiBpbnN0YWxsZWQgb24gYQo+ID4gPiBwcm9kdWN0aW9uIHN5c3RlbSwgYnV0IHlv dSBkb24ndCBnZXQgYSBtYWludGVuYW5jZSB3aW5kb3cgdG8gdXBkYXRlCj4gPiA+IGFsbCBvdGhl ciBwcm9ncmFtcyB3aGljaCB1c2UgdGhpcyBsaWIsIHRoZW4gbm90IGhhdmluZyB0aGUgb2xkIGxp Ygo+ID4gPiB3aWxsIGh1cnQuCj4gPiA+Cj4gPiA+IFdoZW4gdGhlIHJlYXNvbiBmb3IgdGhlIGxp YnJhcnkgdmVyc2lvbiBidW1wIGFsc28gcmVxdWlyZXMgdG8gY2hhbmdlCj4gPiA+IHNvbWUgcGFy dHMgaW4gdGhlIHNvdXJjZSBvZiB0aGUgcHJvZ3JhbXMgd2hpY2ggbWFrZSB1c2Ugb2YgdGhlIGxp YiwKPiA+ID4geW91IGhhdmUgdG8gdXBkYXRlIGFsbCBwcm9ncmFtcyBhdCBvbmNlLiBJZiBzb21l IHByb2dyYW1zIGhhdmUgYnVncyBpbgo+ID4gPiBtb3JlIHJlY2VudCB2ZXJzaW9ucyB3aGljaCB5 b3UgY2FuJ3QgYWNjZXB0IGluIHByb2R1Y3Rpb24gYW5kIHdoZW4geW91Cj4gPiA+IG5lZWQgdG8g aW5zdGFsbCBhIHByb2dyYW0gd2hpY2ggbmVlZHMgdGhlIG5ldyBsaWIgdmVyc2lvbiwgeW91IGFy ZQo+ID4gPiBidXN0ZWQgd2hlbiB5b3UgZG9uJ3QgaGF2ZSB0aGUgb2xkIGxpYiBhcm91bmQuCj4g Pgo+ID4gQnV0IGRvbid0IHlvdSBzbWVsbCBhbiBhcmNoaXRlY3R1cmFsIGZsYXcgaGVyZSAob2Yg dGhlCj4gPiBwb3J0cyBzeXN0ZW0pIGFuZCBkb24ndCB5b3UgZmVlbCB0aGF0IHdvcmtpbmcgYXJv dW5kIGl0Cj4gPiBpbiBhIHRvb2wgaW4gdGhlIGJhc2Ugc3lzdGVtIG1pZ2h0IG9ubHkgbWVzcyB0 aGluZ3MgdXAKPiA+IGV2ZW4gbW9yZT8uLgo+Cj4gTm8gSSBkb24ndCBzZWUgYSBzeXN0ZW1hdGlj IGZsYXcgaGVyZS4gT3IgeW91IHN1Z2dlc3Qgd2UgcmVzZXQgYWxsCj4gc2htYWpvcnMgZXZlcnl3 aGVyZSB0byB6ZXJvPwoKSSB3b3VsZCBzdWdnZXN0IHRoYXQgbXVsdGlwbGUgdmVyc2lvbnMgb2Yg YW55IHBvcnQKc2hvdWxkIGJlIGFsbG93ZWQgdG8gYmUgaW5zdGFsbGVkIHNpbXVsdGFuZW91c2x5 IC0KYW5kIHdpdGhvdXQgdGhlIGJ1cmRlbiBvZiBpbnRyb2R1Y2luZyB2ZXJzaW9uZWQKcG9ydHMu CgpJIGRvIG5vdCB2b2x1bnRlZXIganVzdCB5ZXQgdG8gcHJvcG9zZSBhbiBvdXRsaW5lCm9mIGEg c29sdXRpb24gdG8gbWFrZSB0aGF0IHBvc3NpYmxlLCBidXQgd29ya2Fyb3VuZHMKaGF2ZSBhIHRl bmRlbmN5IHRvIGJlIHRvbGVyYXRlZCBpbiB0aGUgbG9uZyBydW4gb25jZQppbnRyb2R1Y2VkIGlu dG8gdGhlIGJhc2Ugc3lzdGVtLiBvYmpmb3JtYXQgdG9vbCBpcyBhCm5pY2UgZXhhbXBsZSBvZiBz dWNoIGEgd29ya2Fyb3VuZC4K From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 10:59:17 2007 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7057A16A40E; Wed, 21 Mar 2007 10:59:17 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from nat-application.b1.lan.prg.vol.cz (nat-application.b1.lan.prg.vol.cz [195.122.204.152]) by mx1.freebsd.org (Postfix) with ESMTP id 0D37213C4AE; Wed, 21 Mar 2007 10:59:16 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from pav.hide.vol.cz (localhost [127.0.0.1]) by nat-application.b1.lan.prg.vol.cz (8.13.8/8.13.8) with ESMTP id l2LAxFLm052239; Wed, 21 Mar 2007 11:59:15 +0100 (CET) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by pav.hide.vol.cz (8.13.8/8.13.8/Submit) id l2LAxFHn052238; Wed, 21 Mar 2007 11:59:15 +0100 (CET) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: pav.hide.vol.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Andrew Pantyukhin In-Reply-To: References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <20070319125101.4lb7lljt5w4cwog8@webmail.leidinger.net> <1174308178.15322.13.camel@pav.hide.vol.cz> <45FF29E4.4060305@FreeBSD.org> <46004202.5040603@gmail.com> <20070320214735.0d55a1cb@Magellan.Leidinger.net> <4600647D.2040305@FreeBSD.org> <20070321083401.7x3vh4rb4wgs0wcw@webmail.leidinger.net> <1174472619.32542.14.camel@pav.hide.vol.cz> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-iIzqDP9qfakquGDqlpyd" Date: Wed, 21 Mar 2007 11:59:15 +0100 Message-Id: <1174474755.32542.24.camel@pav.hide.vol.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.0 FreeBSD GNOME Team Port Cc: Alexander Leidinger , Doug Barton , freebsd ports , Rene Ladan Subject: Re: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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, 21 Mar 2007 10:59:17 -0000 --=-iIzqDP9qfakquGDqlpyd Content-Type: text/plain; charset=ISO8859-2 Content-Transfer-Encoding: quoted-printable Andrew Pantyukhin p=ED=B9e v st 21. 03. 2007 v 13:55 +0300: > On 3/21/07, Pav Lucistnik wrote: > > Andrew Pantyukhin p=ED=B9e v st 21. 03. 2007 v 11:31 +0300: > > > On 3/21/07, Alexander Leidinger wrote: > > > > When you need a program which needs a newer lib than installed on a > > > > production system, but you don't get a maintenance window to update > > > > all other programs which use this lib, then not having the old lib > > > > will hurt. > > > > > > > > When the reason for the library version bump also requires to chang= e > > > > some parts in the source of the programs which make use of the lib, > > > > you have to update all programs at once. If some programs have bugs= in > > > > more recent versions which you can't accept in production and when = you > > > > need to install a program which needs the new lib version, you are > > > > busted when you don't have the old lib around. > > > > > > But don't you smell an architectural flaw here (of the > > > ports system) and don't you feel that working around it > > > in a tool in the base system might only mess things up > > > even more?.. > > > > No I don't see a systematic flaw here. Or you suggest we reset all > > shmajors everywhere to zero? >=20 > I would suggest that multiple versions of any port > should be allowed to be installed simultaneously - > and without the burden of introducing versioned > ports. How would that work? I'm curious. > I do not volunteer just yet to propose an outline > of a solution to make that possible, but workarounds > have a tendency to be tolerated in the long run once > introduced into the base system. objformat tool is a > nice example of such a workaround. Let's say I prefer a working system now than neatly designed system in 2014. --=20 Pav Lucistnik ... the obese drugged penguin used by Linux. -- Scott Long --=-iIzqDP9qfakquGDqlpyd 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.7 (FreeBSD) iD8DBQBGARAAntdYP8FOsoIRArkdAJ44v2xWwJBt7qRnAD8Hrt2JpboM7ACfXeLE bdg0wlZSQIhMTsfMiE7nlug= =7xLZ -----END PGP SIGNATURE----- --=-iIzqDP9qfakquGDqlpyd-- From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 11:29:18 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C071D16A400 for ; Wed, 21 Mar 2007 11:29:18 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.246]) by mx1.freebsd.org (Postfix) with ESMTP id 7832013C46A for ; Wed, 21 Mar 2007 11:29:18 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by an-out-0708.google.com with SMTP id c24so231462ana for ; Wed, 21 Mar 2007 04:29:18 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=nWxn7S1Ecf2bbh5BxgjnjtUFJA0zpcVsvWVuxgLQkUDHhd/jOyVVWBzXJdBoPyP6iDijY/ImtvTNOUyrjGBaUYhdREFQK+GwJ1kKMJqnMhh8EGOqt/boBOLEe+R9WTCydglmP8lMuBjvD3o3h7LelVX5DhrYB8hNfduZ4x9fG+o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=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; b=RrpzX8hJhTRy5NaphLvrWDbeBQVz8cChQBXOxZPpfUT/vGwn5QeSrV3Iz1e4TNrixr6nxjeLRueFc00FVfJVfBVueKqtIwEiDSHR+G3DhqC1qTj4IokHtkuWGu08ALCATUw7PTZgOTQkepjkxiD1bwEH1Tq9QMTVpzkiqbKTAQs= Received: by 10.114.127.1 with SMTP id z1mr124870wac.1174476557174; Wed, 21 Mar 2007 04:29:17 -0700 (PDT) Received: by 10.114.201.2 with HTTP; Wed, 21 Mar 2007 04:29:17 -0700 (PDT) Message-ID: Date: Wed, 21 Mar 2007 14:29:17 +0300 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: pav@freebsd.org In-Reply-To: <1174474755.32542.24.camel@pav.hide.vol.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: base64 Content-Disposition: inline References: <200703181638.l2IGcoaj003204@repoman.freebsd.org> <45FF29E4.4060305@FreeBSD.org> <46004202.5040603@gmail.com> <20070320214735.0d55a1cb@Magellan.Leidinger.net> <4600647D.2040305@FreeBSD.org> <20070321083401.7x3vh4rb4wgs0wcw@webmail.leidinger.net> <1174472619.32542.14.camel@pav.hide.vol.cz> <1174474755.32542.24.camel@pav.hide.vol.cz> X-Google-Sender-Auth: e17e2080887dcd4b Cc: Alexander Leidinger , Doug Barton , freebsd ports , Rene Ladan Subject: Re: Ports management tools in the base (Was: Re: cvs commit: www/en/projects/ideas ideas.xml) 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, 21 Mar 2007 11:29:19 -0000 T24gMy8yMS8wNywgUGF2IEx1Y2lzdG5payA8cGF2QGZyZWVic2Qub3JnPiB3cm90ZToKPiBBbmRy ZXcgUGFudHl1a2hpbiBww63FoWUgdiBzdCAyMS4gMDMuIDIwMDcgdiAxMzo1NSArMDMwMDoKPiA+ IE9uIDMvMjEvMDcsIFBhdiBMdWNpc3RuaWsgPHBhdkBmcmVlYnNkLm9yZz4gd3JvdGU6Cj4gPiA+ IEFuZHJldyBQYW50eXVraGluIHDDrcWhZSB2IHN0IDIxLiAwMy4gMjAwNyB2IDExOjMxICswMzAw Ogo+ID4gPiA+IE9uIDMvMjEvMDcsIEFsZXhhbmRlciBMZWlkaW5nZXIgPEFsZXhhbmRlckBsZWlk aW5nZXIubmV0PiB3cm90ZToKPiA+ID4gPiA+IFdoZW4geW91IG5lZWQgYSBwcm9ncmFtIHdoaWNo IG5lZWRzIGEgbmV3ZXIgbGliIHRoYW4gaW5zdGFsbGVkIG9uIGEKPiA+ID4gPiA+IHByb2R1Y3Rp b24gc3lzdGVtLCBidXQgeW91IGRvbid0IGdldCBhIG1haW50ZW5hbmNlIHdpbmRvdyB0byB1cGRh dGUKPiA+ID4gPiA+IGFsbCBvdGhlciBwcm9ncmFtcyB3aGljaCB1c2UgdGhpcyBsaWIsIHRoZW4g bm90IGhhdmluZyB0aGUgb2xkIGxpYgo+ID4gPiA+ID4gd2lsbCBodXJ0Lgo+ID4gPiA+ID4KPiA+ ID4gPiA+IFdoZW4gdGhlIHJlYXNvbiBmb3IgdGhlIGxpYnJhcnkgdmVyc2lvbiBidW1wIGFsc28g cmVxdWlyZXMgdG8gY2hhbmdlCj4gPiA+ID4gPiBzb21lIHBhcnRzIGluIHRoZSBzb3VyY2Ugb2Yg dGhlIHByb2dyYW1zIHdoaWNoIG1ha2UgdXNlIG9mIHRoZSBsaWIsCj4gPiA+ID4gPiB5b3UgaGF2 ZSB0byB1cGRhdGUgYWxsIHByb2dyYW1zIGF0IG9uY2UuIElmIHNvbWUgcHJvZ3JhbXMgaGF2ZSBi dWdzIGluCj4gPiA+ID4gPiBtb3JlIHJlY2VudCB2ZXJzaW9ucyB3aGljaCB5b3UgY2FuJ3QgYWNj ZXB0IGluIHByb2R1Y3Rpb24gYW5kIHdoZW4geW91Cj4gPiA+ID4gPiBuZWVkIHRvIGluc3RhbGwg YSBwcm9ncmFtIHdoaWNoIG5lZWRzIHRoZSBuZXcgbGliIHZlcnNpb24sIHlvdSBhcmUKPiA+ID4g PiA+IGJ1c3RlZCB3aGVuIHlvdSBkb24ndCBoYXZlIHRoZSBvbGQgbGliIGFyb3VuZC4KPiA+ID4g Pgo+ID4gPiA+IEJ1dCBkb24ndCB5b3Ugc21lbGwgYW4gYXJjaGl0ZWN0dXJhbCBmbGF3IGhlcmUg KG9mIHRoZQo+ID4gPiA+IHBvcnRzIHN5c3RlbSkgYW5kIGRvbid0IHlvdSBmZWVsIHRoYXQgd29y a2luZyBhcm91bmQgaXQKPiA+ID4gPiBpbiBhIHRvb2wgaW4gdGhlIGJhc2Ugc3lzdGVtIG1pZ2h0 IG9ubHkgbWVzcyB0aGluZ3MgdXAKPiA+ID4gPiBldmVuIG1vcmU/Li4KPiA+ID4KPiA+ID4gTm8g SSBkb24ndCBzZWUgYSBzeXN0ZW1hdGljIGZsYXcgaGVyZS4gT3IgeW91IHN1Z2dlc3Qgd2UgcmVz ZXQgYWxsCj4gPiA+IHNobWFqb3JzIGV2ZXJ5d2hlcmUgdG8gemVybz8KPiA+Cj4gPiBJIHdvdWxk IHN1Z2dlc3QgdGhhdCBtdWx0aXBsZSB2ZXJzaW9ucyBvZiBhbnkgcG9ydAo+ID4gc2hvdWxkIGJl IGFsbG93ZWQgdG8gYmUgaW5zdGFsbGVkIHNpbXVsdGFuZW91c2x5IC0KPiA+IGFuZCB3aXRob3V0 IHRoZSBidXJkZW4gb2YgaW50cm9kdWNpbmcgdmVyc2lvbmVkCj4gPiBwb3J0cy4KPgo+IEhvdyB3 b3VsZCB0aGF0IHdvcms/IEknbSBjdXJpb3VzLgoKU2V2ZXJhbCBzeXN0ZW1zIGhhdmUgc3VjaCBh IGZlYXR1cmUuIFNFUFAgZm9yIG9uZS4KCj4gPiBJIGRvIG5vdCB2b2x1bnRlZXIganVzdCB5ZXQg dG8gcHJvcG9zZSBhbiBvdXRsaW5lCj4gPiBvZiBhIHNvbHV0aW9uIHRvIG1ha2UgdGhhdCBwb3Nz aWJsZSwgYnV0IHdvcmthcm91bmRzCj4gPiBoYXZlIGEgdGVuZGVuY3kgdG8gYmUgdG9sZXJhdGVk IGluIHRoZSBsb25nIHJ1biBvbmNlCj4gPiBpbnRyb2R1Y2VkIGludG8gdGhlIGJhc2Ugc3lzdGVt LiBvYmpmb3JtYXQgdG9vbCBpcyBhCj4gPiBuaWNlIGV4YW1wbGUgb2Ygc3VjaCBhIHdvcmthcm91 bmQuCj4KPiBMZXQncyBzYXkgSSBwcmVmZXIgYSB3b3JraW5nIHN5c3RlbSBub3cgdGhhbiBuZWF0 bHkgZGVzaWduZWQgc3lzdGVtIGluCj4gMjAxNC4KCldpbGwgeW91IGhhdmUgZmlndXJlZCBvdXQg aG93IHRvIHdvcmsgYXJvdW5kIHNpbWlsYXIKcHJvYmxlbXMgd2l0aCBhbGwgb3RoZXIgZGVwZW5k ZW5jeSBjYXNlcyBieSAyMDE0PwpUaGVyZSBhcmUgbGlicmFyaWVzIGluIGludGVycHJldGVkIGxh bmd1YWdlcywgc3RhdGljCmxpYnMsIGFuZCBqdXN0IG9sZCBwcm9ncmFtcyB0aGF0IHJlcXVpcmUg b2xkIHByb2dyYW1zCnRvIGZ1bmN0aW9uLgo= From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 11:48:31 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B0B116A47D for ; Wed, 21 Mar 2007 11:48:31 +0000 (UTC) (envelope-from heli@mikestammer.com) Received: from smtp106.sbc.mail.re2.yahoo.com (smtp106.sbc.mail.re2.yahoo.com [68.142.229.99]) by mx1.freebsd.org (Postfix) with SMTP id 23A8A13C46C for ; Wed, 21 Mar 2007 11:48:21 +0000 (UTC) (envelope-from heli@mikestammer.com) Received: (qmail 68021 invoked from network); 21 Mar 2007 11:48:19 -0000 Received: from unknown (HELO mail.mikestammer.com) (mikestammer@sbcglobal.net@68.249.177.115 with login) by smtp106.sbc.mail.re2.yahoo.com with SMTP; 21 Mar 2007 11:48:19 -0000 X-YMail-OSG: XEfyp5kVM1mntXgU1dBztO72TfOSOWOJHbVnTOnnSywdMYJUfT.J0HxKZVfRQAPAR22q6mfaeO7ItUt6l2sFpIqqTTavQeR1FG82830pyxDyAdkQv7G2iqnzN1wJcmrJvK5AUftJ1HaUcJw- Received: from localhost (localhost [127.0.0.1]) by mail.mikestammer.com (Postfix) with ESMTP id 37F01B84D; Wed, 21 Mar 2007 06:47:31 -0500 (CDT) X-Virus-Scanned: amavisd-new at mikestammer.com Received: from mail.mikestammer.com ([127.0.0.1]) by localhost (gondolin.middleearth.mikestammer.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xVFS4fin0Oi5; Wed, 21 Mar 2007 06:47:29 -0500 (CDT) Received: from [IPv6:::1] (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: eric) by mail.mikestammer.com (Postfix) with ESMTP id 8B964B80B; Wed, 21 Mar 2007 06:47:29 -0500 (CDT) Message-ID: <46011B80.9050402@mikestammer.com> Date: Wed, 21 Mar 2007 06:48:16 -0500 From: Eric User-Agent: Thunderbird 2.0b2 (Windows/20070116) MIME-Version: 1.0 To: Alfredo Perez References: <411432.21711.qm@web88109.mail.re2.yahoo.com> In-Reply-To: <411432.21711.qm@web88109.mail.re2.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: Openssh 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, 21 Mar 2007 11:48:31 -0000 Alfredo Perez wrote: > Hi > > I noticed that Openssh port shows in the list of ports that need to be updated > to the latest version (4.6), I dont have much experience updating a port but If nobody is working on that, I would really like to give it I try? > > Thanks > > Alfredo install portmaster from the ports tree and let it update it for you. its pretty easy From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 12:43:55 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D1AA16A418 for ; Wed, 21 Mar 2007 12:43:55 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from mail.potentialtech.com (internet.potentialtech.com [66.167.251.6]) by mx1.freebsd.org (Postfix) with ESMTP id 4F69B13C4C5 for ; Wed, 21 Mar 2007 12:43:55 +0000 (UTC) (envelope-from wmoran@potentialtech.com) Received: from vanquish.pgh.priv.collaborativefusion.com (pr40.pitbpa0.pub.collaborativefusion.com [206.210.89.202]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.potentialtech.com (Postfix) with ESMTP id D749EEBC62; Wed, 21 Mar 2007 08:43:53 -0400 (EDT) Date: Wed, 21 Mar 2007 08:43:53 -0400 From: Bill Moran To: Eric Message-Id: <20070321084353.4b01a959.wmoran@potentialtech.com> In-Reply-To: <46011B80.9050402@mikestammer.com> References: <411432.21711.qm@web88109.mail.re2.yahoo.com> <46011B80.9050402@mikestammer.com> X-Mailer: Sylpheed 2.3.1 (GTK+ 2.10.9; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Alfredo Perez Subject: Re: Openssh 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, 21 Mar 2007 12:43:55 -0000 In response to Eric : > Alfredo Perez wrote: > > Hi > > > > I noticed that Openssh port shows in the list of ports that need to be updated > > to the latest version (4.6), I dont have much experience updating a port but If nobody is working on that, I would really like to give it I try? > > > > Thanks > > > > Alfredo > > install portmaster from the ports tree and let it update it for you. > its pretty easy I think he's referring to generating a set of diffs and submitting a PR, as the OpenSSH in the ports tree is only 3.6.1 Alfredo: Start by reading The Porter's Handbook: http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/index.html Different ports require different levels of expertise to create -- I don't know what you're getting yourself in to with OpenSSH -- it could be easy or hard, but the place to start would be that handbook. If you hit specific problems, post the details of where you get stuck to the list and I'm sure others will help out. -- Bill Moran http://www.potentialtech.com From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 13:35:10 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BAA5F16A46C for ; Wed, 21 Mar 2007 13:35:10 +0000 (UTC) (envelope-from heli@mikestammer.com) Received: from smtp110.sbc.mail.re2.yahoo.com (smtp110.sbc.mail.re2.yahoo.com [68.142.229.95]) by mx1.freebsd.org (Postfix) with SMTP id 4E4D213C4EC for ; Wed, 21 Mar 2007 13:35:10 +0000 (UTC) (envelope-from heli@mikestammer.com) Received: (qmail 3654 invoked from network); 21 Mar 2007 13:35:09 -0000 Received: from unknown (HELO mail.mikestammer.com) (mikestammer@sbcglobal.net@68.249.177.115 with login) by smtp110.sbc.mail.re2.yahoo.com with SMTP; 21 Mar 2007 13:35:09 -0000 X-YMail-OSG: 9YHBtdoVM1mW7rJoMpsMUQNRKRoaO7I7h.CzuQjiqpL5EQlpAqbDbmZdVpzdq8ceRV0rv3wjeesP5L7TlK9chmCl19dkXYSQaW8Peq.bqY7R5.bovwT_IUL12xaMiq.BFYB5pcBt9SooCww- Received: from localhost (localhost [127.0.0.1]) by mail.mikestammer.com (Postfix) with ESMTP id 7D8CCB84D; Wed, 21 Mar 2007 08:34:21 -0500 (CDT) X-Virus-Scanned: amavisd-new at mikestammer.com Received: from mail.mikestammer.com ([127.0.0.1]) by localhost (gondolin.middleearth.mikestammer.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id wauqwz2lCiQU; Wed, 21 Mar 2007 08:34:17 -0500 (CDT) Received: from [IPv6:::1] (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: eric) by mail.mikestammer.com (Postfix) with ESMTP id 12E2FB80B; Wed, 21 Mar 2007 08:34:16 -0500 (CDT) Message-ID: <46013487.5030908@mikestammer.com> Date: Wed, 21 Mar 2007 08:35:03 -0500 From: Eric User-Agent: Thunderbird 2.0b2 (Windows/20070116) MIME-Version: 1.0 To: Bill Moran References: <411432.21711.qm@web88109.mail.re2.yahoo.com> <46011B80.9050402@mikestammer.com> <20070321084353.4b01a959.wmoran@potentialtech.com> In-Reply-To: <20070321084353.4b01a959.wmoran@potentialtech.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Alfredo Perez Subject: Re: Openssh 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, 21 Mar 2007 13:35:10 -0000 Bill Moran wrote: > In response to Eric : > >> Alfredo Perez wrote: >>> Hi >>> >>> I noticed that Openssh port shows in the list of ports that need to be updated >>> to the latest version (4.6), I dont have much experience updating a port but If nobody is working on that, I would really like to give it I try? >>> >>> Thanks >>> >>> Alfredo >> install portmaster from the ports tree and let it update it for you. >> its pretty easy > > I think he's referring to generating a set of diffs and submitting a PR, as > the OpenSSH in the ports tree is only 3.6.1 ah, i saw 4.6 and thought of openssh portable. sorry for the noise From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 15:03:55 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A734116A4CF for ; Wed, 21 Mar 2007 15:03:55 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id 3F1BA13C457 for ; Wed, 21 Mar 2007 15:03:54 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.61]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070321150355.ZPNC2045.dukecmmtao03.coxmail.com@dukecmmtao03> for ; Wed, 21 Mar 2007 11:03:55 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Wed, 21 Mar 2007 8:03:53 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070321150355.ZPNC2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: Subject: portupgrade query -- MOVEDError 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, 21 Mar 2007 15:03:55 -0000 [root@dns1 /usr/ports]# portupgrade -a /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:119:in `fill': MOVED file format error (PortsDB::MOVEDError) from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `each' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `fill' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `open' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `fill' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:107:in `initialize' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `new' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `setup' from /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:256:in `init_pkgtools_global' from /usr/local/sbin/portupgrade:519:in `main' from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' from /usr/local/sbin/portupgrade:220:in `new' from /usr/local/sbin/portupgrade:220:in `main' from /usr/local/sbin/portupgrade:2084 [root@dns1 /usr/ports]# From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 15:07:53 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F1CAD16A4D2 for ; Wed, 21 Mar 2007 15:07:53 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id B657713C46E for ; Wed, 21 Mar 2007 15:07:53 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.61]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070321150753.ZYIX2045.dukecmmtao03.coxmail.com@dukecmmtao03> for ; Wed, 21 Mar 2007 11:07:53 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Wed, 21 Mar 2007 8:07:52 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070321150753.ZYIX2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: Subject: Re: portupgrade query -- MOVEDError 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, 21 Mar 2007 15:07:54 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion > Sent: Wednesday, March 21, 2007 8:04 AM > To: ports@freebsd.org > Subject: portupgrade query -- MOVEDError > > [root@dns1 /usr/ports]# portupgrade -a > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:119:in `fill': > MOVED file format > error (PortsDB::MOVEDError) > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `each' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `fill' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `open' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `fill' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:107:in `initialize' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `new' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `setup' > from /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:256:in > `init_pkgtools_global' > from /usr/local/sbin/portupgrade:519:in `main' > from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' > from /usr/local/sbin/portupgrade:220:in `new' > from /usr/local/sbin/portupgrade:220:in `main' > from /usr/local/sbin/portupgrade:2084 > [root@dns1 /usr/ports]# > I omitted to say-- what is happening here?? david From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 15:22:24 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B71E616A4DD for ; Wed, 21 Mar 2007 15:22:24 +0000 (UTC) (envelope-from paul@takizo.com) Received: from sps.aims.com.my (sps.aims.com.my [203.223.128.170]) by mx1.freebsd.org (Postfix) with ESMTP id 7614613C4C1 for ; Wed, 21 Mar 2007 15:22:24 +0000 (UTC) (envelope-from paul@takizo.com) Received: from [192.168.1.102] (unknown [60.50.146.71]) by sps.aims.com.my (Spam Firewall) with ESMTP id 59003200009A; Wed, 21 Mar 2007 23:08:23 +0800 (MYT) Message-ID: <46014A59.3020107@takizo.com> Date: Wed, 21 Mar 2007 23:08:09 +0800 From: Paul Ooi Cong Jen User-Agent: Thunderbird 1.5.0.10 (Macintosh/20070221) MIME-Version: 1.0 To: Vizion References: <20070321150355.ZPNC2045.dukecmmtao03.coxmail.com@dukecmmtao03> In-Reply-To: <20070321150355.ZPNC2045.dukecmmtao03.coxmail.com@dukecmmtao03> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: portupgrade query -- MOVEDError 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, 21 Mar 2007 15:22:24 -0000 try to upgrade ur portupgrade /usr/port/port-mgmt/portupgrade Vizion wrote: > [root@dns1 /usr/ports]# portupgrade -a > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:119:in `fill': MOVED file format > error (PortsDB::MOVEDError) > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `each' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `fill' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `open' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `fill' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:107:in `initialize' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `new' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `setup' > from /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:256:in > `init_pkgtools_global' > from /usr/local/sbin/portupgrade:519:in `main' > from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' > from /usr/local/sbin/portupgrade:220:in `new' > from /usr/local/sbin/portupgrade:220:in `main' > from /usr/local/sbin/portupgrade:2084 > [root@dns1 /usr/ports]# > > > _______________________________________________ > 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 Wed Mar 21 15:39:19 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 98FCA16A401 for ; Wed, 21 Mar 2007 15:39:19 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id 2B29313C4EC for ; Wed, 21 Mar 2007 15:39:18 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.61]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070321153919.CLVJ2045.dukecmmtao03.coxmail.com@dukecmmtao03> for ; Wed, 21 Mar 2007 11:39:19 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Wed, 21 Mar 2007 8:39:17 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070321153919.CLVJ2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: Subject: Re: portupgrade query -- MOVEDError 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, 21 Mar 2007 15:39:19 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Paul > Ooi Cong Jen > Sent: Wednesday, March 21, 2007 8:08 AM > To: Vizion > Cc: ports@freebsd.org > Subject: Re: portupgrade query -- MOVEDError > > try to upgrade ur portupgrade /usr/port/port-mgmt/portupgrade > > Vizion wrote: > > [root@dns1 /usr/ports]# portupgrade -a > > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:119:in `fill': > MOVED file format > > error (PortsDB::MOVEDError) > > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `each' > > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `fill' > > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `open' > > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `fill' > > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:107:in `initialize' > > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `new' > > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `setup' > > from /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:256:in > > `init_pkgtools_global' > > from /usr/local/sbin/portupgrade:519:in `main' > > from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' > > from /usr/local/sbin/portupgrade:220:in `new' > > from /usr/local/sbin/portupgrade:220:in `main' > > from /usr/local/sbin/portupgrade:2084 > > [root@dns1 /usr/ports]# > > The error comes from the attempt by portupgrade -a to upgrade /usr/ports/ports-mgt/portgrade. Soame errot is given if you run portupgrade in the ports-mgmt/portsupgrade directory. david david From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 16:13:44 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B285A16A40E for ; Wed, 21 Mar 2007 16:13:44 +0000 (UTC) (envelope-from fcash@ocis.net) Received: from smtp.sd73.bc.ca (smtp.sd73.bc.ca [142.24.13.140]) by mx1.freebsd.org (Postfix) with ESMTP id 9366913C457 for ; Wed, 21 Mar 2007 16:13:44 +0000 (UTC) (envelope-from fcash@ocis.net) Received: from localhost (localhost [127.0.0.1]) by localhost.sd73.bc.ca (Postfix) with ESMTP id D20341A000EB6 for ; Wed, 21 Mar 2007 09:13:43 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at smtp.sd73.bc.ca Received: from smtp.sd73.bc.ca ([127.0.0.1]) by localhost (smtp.sd73.bc.ca [127.0.0.1]) (amavisd-new, port 10024) with LMTP id hrMl1BShMGIm for ; Wed, 21 Mar 2007 09:13:33 -0700 (PDT) Received: from coal (s10.sbo [192.168.0.10]) by smtp.sd73.bc.ca (Postfix) with ESMTP id B15FF1A000EB4 for ; Wed, 21 Mar 2007 09:13:33 -0700 (PDT) From: Freddie Cash To: ports@freebsd.org Date: Wed, 21 Mar 2007 09:13:32 -0700 User-Agent: KMail/1.9.5 References: <46008EB2.1010807@gmx.net> In-Reply-To: <46008EB2.1010807@gmx.net> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200703210913.32757.fcash@ocis.net> Cc: Subject: Re: Thank you for portmaster 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, 21 Mar 2007 16:13:44 -0000 On Tuesday 20 March 2007 06:47 pm, Sticky Bit wrote: > first let me thank you for developing such a nice tool! After so long > time using portupgrade I gave portmaster a chance to convince me in > daily usage. Now I am very happy with this decision and I begin to > really like portmaster. > > One feature I would like to see implemented is a switch 'list only > ports that have available updates'. I want to know all affected ports > in summary before the builds so I am able to make decisions (i.e. > 'portmaster -a' or just 'portmaster port', and think of the > 'devel/gettext' update or other huge / long builds like gnome / gtk+ > etc.). > > I am aware of the '-L' switch and the possibility to grep such ports. > But this is a bit odd and not very likable. I want a similar output > like 'portversion -vL=', i.e. port name along with old and new version > numbering but only for ports with a different version available than > installed (can also be an older version, think of a manually modified > ports tree). > > Could you please add this small feature? Then I am actually able to do > without portupgrade and its other tools. Use the right tool for the job: pkg_version. :) What you want is: pkg_version -vl '<' That will list all the installed apps that have updates available in the ports tree. Combine that with a little work using "pkg_info -rx appname" and "pkg_info -Rx appname" to see dependencies, and you can determine how to call portmaster. Read the man pages for pkg_info, pkg_add, pkg_version, and pkg_delete, to see all the things you can do with the ports/packages system. Those, combined with portmaster, make for an excellent little ports toolkit. -- Freddie Cash fcash@ocis.net From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 16:33:34 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8190816A415 for ; Wed, 21 Mar 2007 16:33:34 +0000 (UTC) (envelope-from paul@takizo.com) Received: from sps.aims.com.my (sps.aims.com.my [203.223.128.170]) by mx1.freebsd.org (Postfix) with ESMTP id 9DCF513C46A for ; Wed, 21 Mar 2007 16:33:33 +0000 (UTC) (envelope-from paul@takizo.com) Received: from [192.168.1.102] (unknown [60.50.146.71]) by sps.aims.com.my (Spam Firewall) with ESMTP id 99985200009A; Thu, 22 Mar 2007 00:33:29 +0800 (MYT) Message-ID: <46015E4E.50500@takizo.com> Date: Thu, 22 Mar 2007 00:33:18 +0800 From: Paul Ooi Cong Jen User-Agent: Thunderbird 1.5.0.10 (Macintosh/20070221) MIME-Version: 1.0 To: Vizion References: <20070321153919.CLVJ2045.dukecmmtao03.coxmail.com@dukecmmtao03> In-Reply-To: <20070321153919.CLVJ2045.dukecmmtao03.coxmail.com@dukecmmtao03> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@freebsd.org Subject: Re: portupgrade query -- MOVEDError 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, 21 Mar 2007 16:33:34 -0000 pkg_deinstall portupgrade and go to /usr/ports/port-mgmt/portupgrade make and make install I tried that and the error message gone. I think something to do with path setting. Vizion wrote: > > > >> -----Original Message----- >> From: owner-freebsd-ports@freebsd.org >> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Paul >> Ooi Cong Jen >> Sent: Wednesday, March 21, 2007 8:08 AM >> To: Vizion >> Cc: ports@freebsd.org >> Subject: Re: portupgrade query -- MOVEDError >> >> try to upgrade ur portupgrade /usr/port/port-mgmt/portupgrade >> >> Vizion wrote: >> >>> [root@dns1 /usr/ports]# portupgrade -a >>> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:119:in `fill': >>> >> MOVED file format >> >>> error (PortsDB::MOVEDError) >>> from >>> >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `each' >> >>> from >>> >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `fill' >> >>> from >>> >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `open' >> >>> from >>> >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `fill' >> >>> from >>> >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:107:in `initialize' >> >>> from >>> >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `new' >> >>> from >>> >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `setup' >> >>> from /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:256:in >>> `init_pkgtools_global' >>> from /usr/local/sbin/portupgrade:519:in `main' >>> from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' >>> from /usr/local/sbin/portupgrade:220:in `new' >>> from /usr/local/sbin/portupgrade:220:in `main' >>> from /usr/local/sbin/portupgrade:2084 >>> [root@dns1 /usr/ports]# >>> >>> > The error comes from the attempt by portupgrade -a to upgrade /usr/ports/ports-mgt/portgrade. > > Soame errot is given if you run portupgrade in the ports-mgmt/portsupgrade directory. > > david > > david > > _______________________________________________ > 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 Wed Mar 21 16:35:24 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F26D16A4CD for ; Wed, 21 Mar 2007 16:35:24 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id BAFAA13C459 for ; Wed, 21 Mar 2007 16:35:23 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: (qmail invoked by alias); 21 Mar 2007 16:08:42 -0000 Received: from nat-wh-1.rz.uni-karlsruhe.de (EHLO [192.168.1.12]) [129.13.72.169] by mail.gmx.net (mp036) with SMTP; 21 Mar 2007 17:08:42 +0100 X-Authenticated: #5465401 X-Provags-ID: V01U2FsdGVkX19fAoREcRlfXsWZq4X1Gc4lS2jZuw4dm1WZnDzgDB 7wZCRYIKZGGCwF Message-ID: <460158BD.1040307@gmx.de> Date: Wed, 21 Mar 2007 17:09:33 +0100 From: "[LoN]Kamikaze" User-Agent: Thunderbird 1.5.0.10 (X11/20070314) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <20070321153919.CLVJ2045.dukecmmtao03.coxmail.com@dukecmmtao03> In-Reply-To: <20070321153919.CLVJ2045.dukecmmtao03.coxmail.com@dukecmmtao03> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Subject: Re: portupgrade query -- MOVEDError 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, 21 Mar 2007 16:35:24 -0000 Vizion wrote: > The error comes from the attempt by portupgrade -a to upgrade /usr/ports/ports-mgt/portgrade. > > Soame errot is given if you run portupgrade in the ports-mgmt/portsupgrade directory. The error is caused by a syntax error in the file /usr/ports/MOVED Change the last line from: lang/xotcl-thread|2007-03-21|Not longer needed to: lang/xotcl-thread||2007-03-21|Not longer needed From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 16:40:19 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0484516A406 for ; Wed, 21 Mar 2007 16:40:19 +0000 (UTC) (envelope-from jbethke@hs-heilbronn.de) Received: from smtp.stud.hs-heilbronn.de (mailstud01.rz.hs-heilbronn.de [141.7.1.34]) by mx1.freebsd.org (Postfix) with ESMTP id BE93A13C46C for ; Wed, 21 Mar 2007 16:40:18 +0000 (UTC) (envelope-from jbethke@hs-heilbronn.de) Received: from [129.143.124.22] (helo=[192.168.5.101]) by smtp.stud.hs-heilbronn.de with esmtpa (Exim 4.42) id 1HU3XE-0006W2-BD for freebsd-ports@freebsd.org; Wed, 21 Mar 2007 17:19:36 +0100 Message-ID: <46015B18.3050500@hs-heilbronn.de> Date: Wed, 21 Mar 2007 17:19:36 +0100 From: Joachim Bethke User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Sender: Subject: Portupgrade failed 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, 21 Mar 2007 16:40:19 -0000 Hallo, error with portupgrade, what I have to do (I need help please) portsdb -u portsdb: MOVED file format error portupgrade -a /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:119:in `fill': MOVED file format error (PortsDB::MOVEDError) from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `each' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `fill' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `open' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `fill' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:107:in `initialize' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `new' from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `setup' from /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:256:in `init_pkgtools_global' from /usr/local/sbin/portupgrade:519:in `main' from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' from /usr/local/sbin/portupgrade:220:in `new' from /usr/local/sbin/portupgrade:220:in `main' from /usr/local/sbin/portupgrade:2084 Thanks Joachim From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 17:15:31 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EDE1E16A405 for ; Wed, 21 Mar 2007 17:15:31 +0000 (UTC) (envelope-from jacardenasm@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.freebsd.org (Postfix) with ESMTP id 7731A13C489 for ; Wed, 21 Mar 2007 17:15:31 +0000 (UTC) (envelope-from jacardenasm@gmail.com) Received: by ug-out-1314.google.com with SMTP id 71so394830ugh for ; Wed, 21 Mar 2007 10:15:30 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=hu8HnUWEL0hPXAstaB9l7ddev5qH7nilL9GTwm8w9kQwb0mEzMJOwrPoL/9qsy4U+BgYpH6o2ALiLaZqZKabsuxAN08hZzva947Vn+HobchTtOYyXbmNkywrpc9JEgrGh3L3oPPSyFtTW+zjf2zH9Q4E6j/gheInpQ1jHdZTDj0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=QAsqySYqt7uTXGDWq4J98/LWI20HQQq/Dj2h5WarPwPMtMGOpOCTyQ4eJ148JAmXNxVQZK3Wn2q9S5esj+kFe2UNUEKWjEvCR6vvTzjYxSEDCzGn4ojtTsXBkKlCq0rSak4lQ58Krhome//bhkM1yIExwYU5VpzqmgRb/jUWDeY= Received: by 10.114.53.1 with SMTP id b1mr233185waa.1174495852501; Wed, 21 Mar 2007 09:50:52 -0700 (PDT) Received: by 10.115.76.7 with HTTP; Wed, 21 Mar 2007 09:50:52 -0700 (PDT) Message-ID: <7c58fcfc0703210950p669fba76m8dc0d4975f64ffdc@mail.gmail.com> Date: Wed, 21 Mar 2007 11:50:52 -0500 From: "Jose Alonso Cardenas Marquez" To: "Joachim Bethke" In-Reply-To: <46015B18.3050500@hs-heilbronn.de> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <46015B18.3050500@hs-heilbronn.de> Cc: freebsd-ports@freebsd.org Subject: Re: Portupgrade failed 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, 21 Mar 2007 17:15:32 -0000 2007/3/21, Joachim Bethke : > Hallo, > > error with portupgrade, what I have to do (I need help please) > > portsdb -u > portsdb: MOVED file format error > > portupgrade -a > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:119:in `fill': MOVED file > format error (PortsDB::MOVEDError) > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `each' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `fill' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `open' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `fill' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:107:in > `initialize' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `new' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `setup' > from /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:256:in > `init_pkgtools_global' > from /usr/local/sbin/portupgrade:519:in `main' > from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' > from /usr/local/sbin/portupgrade:220:in `new' > from /usr/local/sbin/portupgrade:220:in `main' > from /usr/local/sbin/portupgrade:2084 > > Thanks > > Joachim > > > _______________________________________________ > 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" > Please update your MOVED file and try again, it was fixed some hour ago Greetings ACM From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 17:54:03 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5851816A408 for ; Wed, 21 Mar 2007 17:54:03 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id E332813C4B8 for ; Wed, 21 Mar 2007 17:54:02 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.62]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070321175402.NJDT2045.dukecmmtao03.coxmail.com@dukecmmtao03> for ; Wed, 21 Mar 2007 13:54:02 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Wed, 21 Mar 2007 10:54:02 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070321175402.NJDT2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: Subject: Re: portupgrade query -- MOVEDError 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, 21 Mar 2007 17:54:03 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of [LoN]Kamikaze > Sent: Wednesday, March 21, 2007 9:10 AM > To: freebsd-ports@freebsd.org > Subject: Re: portupgrade query -- MOVEDError > > Vizion wrote: > > The error comes from the attempt by portupgrade -a to > upgrade /usr/ports/ports-mgt/portgrade. > > > > Soame errot is given if you run portupgrade in the > ports-mgmt/portsupgrade directory. > > The error is caused by a syntax error in the file /usr/ports/MOVED > > Change the last line from: > lang/xotcl-thread|2007-03-21|Not longer needed > to: > lang/xotcl-thread||2007-03-21|Not longer needed > > > That fixed it -- thank you SDavid From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 17:59:18 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0F75216A417 for ; Wed, 21 Mar 2007 17:59:18 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id 97E7813C489 for ; Wed, 21 Mar 2007 17:59:17 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.62]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070321175917.NUEE2045.dukecmmtao03.coxmail.com@dukecmmtao03>; Wed, 21 Mar 2007 13:59:17 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Wed, 21 Mar 2007 10:59:16 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070321175917.NUEE2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: ports@freebsd.org Subject: Re: Portupgrade failed 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, 21 Mar 2007 17:59:18 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Joachim Bethke > Sent: Wednesday, March 21, 2007 9:20 AM > To: freebsd-ports@freebsd.org > Subject: Portupgrade failed > > Hallo, > > error with portupgrade, what I have to do (I need help please) > > portsdb -u > portsdb: MOVED file format error > > portupgrade -a > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:119:in `fill': > MOVED file > format error (PortsDB::MOVEDError) > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `each' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `fill' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `open' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `fill' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:107:in > `initialize' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `new' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `setup' > from /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:256:in > `init_pkgtools_global' > from /usr/local/sbin/portupgrade:519:in `main' > from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' > from /usr/local/sbin/portupgrade:220:in `new' > from /usr/local/sbin/portupgrade:220:in `main' > from /usr/local/sbin/portupgrade:2084 > > Thanks > > Joachim from similar thread: > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of [LoN]Kamikaze > Sent: Wednesday, March 21, 2007 9:10 AM > To: freebsd-ports@freebsd.org > Subject: Re: portupgrade query -- MOVEDError > > Vizion wrote: > > The error comes from the attempt by portupgrade -a to > upgrade /usr/ports/ports-mgt/portgrade. > > > > Soame errot is given if you run portupgrade in the > ports-mgmt/portsupgrade directory. > > The error is caused by a syntax error in the file /usr/ports/MOVED > > Change the last line from: > lang/xotcl-thread|2007-03-21|Not longer needed > to: > lang/xotcl-thread||2007-03-21|Not longer needed > > > That fixed it -- thank you SDavid From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 17:59:24 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 49B1616A406 for ; Wed, 21 Mar 2007 17:59:24 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id D59CE13C4C3 for ; Wed, 21 Mar 2007 17:59:23 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.62]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070321175923.NUKW2045.dukecmmtao03.coxmail.com@dukecmmtao03>; Wed, 21 Mar 2007 13:59:23 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Wed, 21 Mar 2007 10:59:23 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070321175923.NUKW2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: ports@freebsd.org Subject: Re: Portupgrade failed 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, 21 Mar 2007 17:59:24 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Joachim Bethke > Sent: Wednesday, March 21, 2007 9:20 AM > To: freebsd-ports@freebsd.org > Subject: Portupgrade failed > > Hallo, > > error with portupgrade, what I have to do (I need help please) > > portsdb -u > portsdb: MOVED file format error > > portupgrade -a > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:119:in `fill': > MOVED file > format error (PortsDB::MOVEDError) > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `each' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `fill' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `open' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `fill' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:107:in > `initialize' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `new' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `setup' > from /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:256:in > `init_pkgtools_global' > from /usr/local/sbin/portupgrade:519:in `main' > from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' > from /usr/local/sbin/portupgrade:220:in `new' > from /usr/local/sbin/portupgrade:220:in `main' > from /usr/local/sbin/portupgrade:2084 > > Thanks > > Joachim from similar thread: > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of [LoN]Kamikaze > Sent: Wednesday, March 21, 2007 9:10 AM > To: freebsd-ports@freebsd.org > Subject: Re: portupgrade query -- MOVEDError > > Vizion wrote: > > The error comes from the attempt by portupgrade -a to > upgrade /usr/ports/ports-mgt/portgrade. > > > > Soame errot is given if you run portupgrade in the > ports-mgmt/portsupgrade directory. > > The error is caused by a syntax error in the file /usr/ports/MOVED > > Change the last line from: > lang/xotcl-thread|2007-03-21|Not longer needed > to: > lang/xotcl-thread||2007-03-21|Not longer needed > > > That fixed it -- thank you SDavid From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 17:59:31 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 117BA16A412 for ; Wed, 21 Mar 2007 17:59:31 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id 9D8C613C4BC for ; Wed, 21 Mar 2007 17:59:30 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.62]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070321175930.NUTT2045.dukecmmtao03.coxmail.com@dukecmmtao03>; Wed, 21 Mar 2007 13:59:30 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Wed, 21 Mar 2007 10:59:29 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070321175930.NUTT2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: ports@freebsd.org Subject: Re: Portupgrade failed 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, 21 Mar 2007 17:59:31 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Joachim Bethke > Sent: Wednesday, March 21, 2007 9:20 AM > To: freebsd-ports@freebsd.org > Subject: Portupgrade failed > > Hallo, > > error with portupgrade, what I have to do (I need help please) > > portsdb -u > portsdb: MOVED file format error > > portupgrade -a > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:119:in `fill': > MOVED file > format error (PortsDB::MOVEDError) > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `each' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `fill' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `open' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `fill' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:107:in > `initialize' > from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `new' > from > /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `setup' > from /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:256:in > `init_pkgtools_global' > from /usr/local/sbin/portupgrade:519:in `main' > from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' > from /usr/local/sbin/portupgrade:220:in `new' > from /usr/local/sbin/portupgrade:220:in `main' > from /usr/local/sbin/portupgrade:2084 > > Thanks > > Joachim from similar thread: > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of [LoN]Kamikaze > Sent: Wednesday, March 21, 2007 9:10 AM > To: freebsd-ports@freebsd.org > Subject: Re: portupgrade query -- MOVEDError > > Vizion wrote: > > The error comes from the attempt by portupgrade -a to > upgrade /usr/ports/ports-mgt/portgrade. > > > > Soame errot is given if you run portupgrade in the > ports-mgmt/portsupgrade directory. > > The error is caused by a syntax error in the file /usr/ports/MOVED > > Change the last line from: > lang/xotcl-thread|2007-03-21|Not longer needed > to: > lang/xotcl-thread||2007-03-21|Not longer needed > > > That fixed it -- thank you SDavid From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 18:34:00 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 96E9016A400 for ; Wed, 21 Mar 2007 18:34:00 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id 2F1E213C448 for ; Wed, 21 Mar 2007 18:34:00 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.61]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070321183400.QPSY2045.dukecmmtao03.coxmail.com@dukecmmtao03> for ; Wed, 21 Mar 2007 14:34:00 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Wed, 21 Mar 2007 11:33:59 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070321183400.QPSY2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: Subject: mail/maildrop marked as 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: Wed, 21 Mar 2007 18:34:00 -0000 As title for information New today: portupgrade -a reports: FAM system mismatch: gamin is imstalled and desired FAM system is fam david From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 19:41:02 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EEE0316A46D for ; Wed, 21 Mar 2007 19:41:02 +0000 (UTC) (envelope-from jgm@berkeley.edu) Received: from smtp-out1.berkeley.edu (smtp-out1.Berkeley.EDU [128.32.61.106]) by mx1.freebsd.org (Postfix) with ESMTP id DE32213C484 for ; Wed, 21 Mar 2007 19:41:02 +0000 (UTC) (envelope-from jgm@berkeley.edu) Received: from protagoras.phil.berkeley.edu ([128.32.137.142]) by fe5.calmail with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.65) (auth plain:jgm@berkeley.edu) (envelope-from ) id 1HU6RV-0005N8-H0 for ports@freebsd.org; Wed, 21 Mar 2007 12:25:53 -0700 Received: by protagoras.phil.berkeley.edu (Postfix, from userid 1000) id D005E1E725B; Wed, 21 Mar 2007 11:25:51 -0700 (PDT) Date: Wed, 21 Mar 2007 11:25:51 -0700 From: John MacFarlane To: ports@freebsd.org Message-ID: <20070321182551.GA19746@protagoras.phil.berkeley.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-PGP-Key: http://philosophy.berkeley.edu/macfarlane/jgm.asc User-Agent: Mutt/1.5.12-2006-07-14 Cc: Subject: pandoc "not fetchable"? 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, 21 Mar 2007 19:41:03 -0000 According to the port survey, http://people.freebsd.org/~fenner/portsurvey/textproc.html#pandoc, the distfile for the port I maintain (textproc/pandoc) is not fetchable: http://pandoc.googlecode.com/files/pandoc-0.3.tar.gz: 404 Not Found (Last OK result NEVER [checked 12 times since Tue Feb 13 I can't understand why. The file is there on the server, I can fetch it from that URL using wget, and when I install the port, it fetches the file just fine from http://pandoc.googlecode.com. So why is portsurvey not finding it? I'm new at FreeBSD, so maybe there's something simple I'm missing. Any help would be appreciated. John From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 19:46:40 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 16E8416A46B; Wed, 21 Mar 2007 19:46:40 +0000 (UTC) (envelope-from eps@anna.ana.com) Received: from anna.ana.com (anna.ana.com [208.69.41.33]) by mx1.freebsd.org (Postfix) with ESMTP id D11A813C45A; Wed, 21 Mar 2007 19:46:39 +0000 (UTC) (envelope-from eps@anna.ana.com) Received: from anna.ana.com (localhost [127.0.0.1]) by anna.ana.com (8.13.8/8.13.8) with ESMTP id l2LJVjet013610; Wed, 21 Mar 2007 12:31:45 -0700 (PDT) Received: (from eps@localhost) by anna.ana.com (8.13.8/8.13.8/Submit) id l2LJVjJ9013609; Wed, 21 Mar 2007 12:31:45 -0700 (PDT) Date: Wed, 21 Mar 2007 12:31:45 -0700 (PDT) Message-Id: <200703211931.l2LJVjJ9013609@anna.ana.com> From: eps+pcmt0703@ana.com (Eric P. Scott) To: shaun@FreeBSD.org In-Reply-To: <20070320173358.01A2CB8C3@dione.picobyte.net> Cc: ports@FreeBSD.org Subject: Re: FreeBSD ports you maintain which are out of date 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, 21 Mar 2007 19:46:40 -0000 >Port | Current version | New version >print/ghostscript-afpl-nox11 | 8.54 | 8.56 I believe the "Current" version to be the latest and there is no 8.56. >print/ghostscript-gnu-nox11 | 7.07 | 8.56 I believe the "Current" version to be the latest and there is no 8.56. >print/ghostscript-gpl-nox11 | 8.15 | 8.56 That looks correct. What's going on here? http://sourceforge.net/project/showfiles.php?group_id=1897 >security/dropbear | 0.49 | 0.255 Huh? http://matt.ucc.asn.au/dropbear/dropbear.html -=EPS=- From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 19:49:37 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BED9E16A40B for ; Wed, 21 Mar 2007 19:49:37 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao106.cox.net (eastrmmtao106.cox.net [68.230.240.48]) by mx1.freebsd.org (Postfix) with ESMTP id 676E313C45B for ; Wed, 21 Mar 2007 19:49:37 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo01.cox.net ([68.1.16.119]) by eastrmmtao106.cox.net (InterMail vM.7.05.02.00 201-2174-114-20060621) with ESMTP id <20070321194938.KZRR2226.eastrmmtao106.cox.net@eastrmimpo01.cox.net>; Wed, 21 Mar 2007 15:49:38 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo01.cox.net with bizsmtp id dXpb1W00t4iy4EG0000000; Wed, 21 Mar 2007 15:49:36 -0400 Date: Wed, 21 Mar 2007 14:51:31 -0500 To: "Kris Kennaway" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <20070320171622.GA12902@xor.obsecurity.org> <20070320202139.GA16688@xor.obsecurity.org> Content-Transfer-Encoding: Quoted-Printable Message-ID: In-Reply-To: <20070320202139.GA16688@xor.obsecurity.org> User-Agent: Opera Mail/9.10 (Linux) Cc: freebsd-ports@freebsd.org Subject: Re: [ports-amd64@pointyhat.freebsd.org: linuxdcpp-0.0.1.20070206 failed on amd64 7] 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, 21 Mar 2007 19:49:37 -0000 On Tue, 20 Mar 2007 15:21:39 -0500, Kris Kennaway = = wrote: > On Tue, Mar 20, 2007 at 02:55:09PM -0500, Jeremy Messenger wrote: >> On Tue, 20 Mar 2007 12:16:22 -0500, Kris Kennaway >> wrote: >> >> >Dear Maintainer, >> > >> >As you may know, in the near future FreeBSD 7.x will be switching fr= om >> >the gcc 3.4 compiler to gcc 4.x. Unfortunately your port fails to >> >build with the new compiler; see the log below. >> > >> >To ease the disruption to users and to avoid further work later on, >> >can you please work (with the upstream developers if necessary) on >> >fixing this error? >> > >> >In many cases it requires only simple code changes, and these may >> >already have been submitted to the developers by other projects >> >(thesedays many Linux distributions use gcc 4.1, so chances are they= >> >have fixed the error already), or the patches may be found in their >> >package repositories. >> > >> >You should be able to reproduce it yourself simply by installing the= >> >lang/gcc41 port and then setting the variables >> > >> > CC=3D/usr/local/bin/gcc41 >> > CXX=3D/usr/local/bin/g++41 >> > >> >in your environment (Note: some ports do not respect these variables= >> >currently, but this is another bug that should be fixed). >> >> I can't reproduce it. Any idea why I can't? Thanks. >> >> # pkg_info | grep gcc >> gcc-4.1.3_20070312 GNU Compiler Collection 4.1 >> # make -DGCC4 >> =3D=3D=3D> Extracting for linuxdcpp-0.0.1.20070206 >> =3D> MD5 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. >> =3D> SHA256 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. >> [...] >> =3D=3D=3D> Building for linuxdcpp-0.0.1.20070206 >> scons: Reading SConscript files ... >> Checking for /usr/local/bin/g++41 >=3D 3.4...(cached) yes >> [...] >> scons: Building targets ... >> /usr/local/bin/g++41 -o build/client/AdcCommand.o -c -O2 >> -fno-strict-aliasing -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOU= RCE >> -D_FILE_OFFSET_BITS=3D64 -DICONV_CONST=3Dconst = >> -D_DATADIR=3D'"/usr/local/share"' >> client/AdcCommand.cpp >> /usr/local/bin/g++41 -o build/client/AdcHub.o -c -O2 = >> -fno-strict-aliasing >> -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOURCE = >> -D_FILE_OFFSET_BITS=3D64 >> -DICONV_CONST=3Dconst -D_DATADIR=3D'"/usr/local/share"' client/AdcHub= .cpp >> /usr/local/bin/g++41 -o build/client/ADLSearch.o -c -O2 >> -fno-strict-aliasing -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOU= RCE >> -D_FILE_OFFSET_BITS=3D64 -DICONV_CONST=3Dconst = >> -D_DATADIR=3D'"/usr/local/share"' >> client/ADLSearch.cpp >> [...goes on without failure...] > > Is this on amd64? No, it's 6.2-STABLE i386. I guess, I can mark it as broken on 7.x amd64.= Cheers, Mezz > Kris -- = 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 Wed Mar 21 20:05:55 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B339216A47E for ; Wed, 21 Mar 2007 20:05:55 +0000 (UTC) (envelope-from eps@anna.ana.com) Received: from anna.ana.com (anna.ana.com [208.69.41.33]) by mx1.freebsd.org (Postfix) with ESMTP id 866B813C46E for ; Wed, 21 Mar 2007 20:05:55 +0000 (UTC) (envelope-from eps@anna.ana.com) Received: from anna.ana.com (localhost [127.0.0.1]) by anna.ana.com (8.13.8/8.13.8) with ESMTP id l2LK4hFX015304 for ; Wed, 21 Mar 2007 13:04:44 -0700 (PDT) Received: (from eps@localhost) by anna.ana.com (8.13.8/8.13.8/Submit) id l2LK4hSc015303; Wed, 21 Mar 2007 13:04:43 -0700 (PDT) Date: Wed, 21 Mar 2007 13:04:43 -0700 (PDT) Message-Id: <200703212004.l2LK4hSc015303@anna.ana.com> From: eps+pcmt0703@ana.com (Eric P. Scott) To: ports@FreeBSD.org In-Reply-To: <20070321182551.GA19746@protagoras.phil.berkeley.edu> Cc: Subject: Re: pandoc "not fetchable"? 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, 21 Mar 2007 20:05:55 -0000 This happens with anything hosted at googlecode.com. E.g. net-im/naim has the same problem. -=EPS=- From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 20:13:51 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 211E816A411 for ; Wed, 21 Mar 2007 20:13:51 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from utahime.as.wakwak.ne.jp (utahime.as.wakwak.ne.jp [61.205.238.40]) by mx1.freebsd.org (Postfix) with ESMTP id DB93513C458 for ; Wed, 21 Mar 2007 20:13:50 +0000 (UTC) (envelope-from yasu@utahime.org) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by utahime.as.wakwak.ne.jp (Postfix) with ESMTP id DB94217048; Thu, 22 Mar 2007 05:13:49 +0900 (JST) Received: from eastasia.home.utahime.org (localhost.home.utahime.org [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id A363D20; Thu, 22 Mar 2007 05:13:49 +0900 (JST) Received: from localhost (angel.home.utahime.org [192.168.174.4]) by eastasia.home.utahime.org (Postfix) with ESMTP id 65C231E; Thu, 22 Mar 2007 05:13:49 +0900 (JST) Date: Thu, 22 Mar 2007 05:13:35 +0900 (JST) Message-Id: <20070322.051335.15241084.yasu@utahime.org> To: ports@freebsd.org From: KIMURA Yasuhiro In-Reply-To: <20070321183400.QPSY2045.dukecmmtao03.coxmail.com@dukecmmtao03> References: <20070321183400.QPSY2045.dukecmmtao03.coxmail.com@dukecmmtao03> X-Mailer: Mew version 5.2.50 on Emacs 21.4 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Cc: Subject: Re: mail/maildrop marked as 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: Wed, 21 Mar 2007 20:13:51 -0000 From: Vizion Subject: mail/maildrop marked as broken Date: Wed, 21 Mar 2007 11:33:59 -0700 > As title for information > New today: > portupgrade -a reports: > > FAM system mismatch: gamin is imstalled and desired FAM system is fam AFAIK Courier products work only with fam and not with gamin. But I not certain this is still the case now. Does anyone know if latest gamin is compatible with Courier products? --- KIMURA Yasuhiro From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 20:21:24 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 01C6B16A4E0 for ; Wed, 21 Mar 2007 20:21:24 +0000 (UTC) (envelope-from jbethke@hs-heilbronn.de) Received: from smtp.stud.hs-heilbronn.de (mailstud01.rz.hs-heilbronn.de [141.7.1.34]) by mx1.freebsd.org (Postfix) with ESMTP id B8E4313C4F8 for ; Wed, 21 Mar 2007 20:21:23 +0000 (UTC) (envelope-from jbethke@hs-heilbronn.de) Received: from [129.143.124.22] (helo=[192.168.5.101]) by smtp.stud.hs-heilbronn.de with esmtpa (Exim 4.42) id 1HU6bV-0004Eg-Go; Wed, 21 Mar 2007 20:36:13 +0100 Message-ID: <4601892D.1030607@hs-heilbronn.de> Date: Wed, 21 Mar 2007 20:36:13 +0100 From: Joachim Bethke User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Vizion References: <20070321175930.NUTT2045.dukecmmtao03.coxmail.com@dukecmmtao03> In-Reply-To: <20070321175930.NUTT2045.dukecmmtao03.coxmail.com@dukecmmtao03> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Sender: Cc: ports@freebsd.org Subject: Re: Portupgrade failed 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, 21 Mar 2007 20:21:24 -0000 Vizion schrieb: > > > >> -----Original Message----- >> From: owner-freebsd-ports@freebsd.org >> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Joachim Bethke >> Sent: Wednesday, March 21, 2007 9:20 AM >> To: freebsd-ports@freebsd.org >> Subject: Portupgrade failed >> >> Hallo, >> >> error with portupgrade, what I have to do (I need help please) >> >> portsdb -u >> portsdb: MOVED file format error >> >> portupgrade -a >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:119:in `fill': >> MOVED file >> format error (PortsDB::MOVEDError) >> from >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `each' >> from >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:113:in `fill' >> from >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `open' >> from >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:112:in `fill' >> from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:107:in >> `initialize' >> from /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `new' >> from >> /usr/local/lib/ruby/site_ruby/1.8/portsdb.rb:182:in `setup' >> from /usr/local/lib/ruby/site_ruby/1.8/pkgtools.rb:256:in >> `init_pkgtools_global' >> from /usr/local/sbin/portupgrade:519:in `main' >> from /usr/local/lib/ruby/1.8/optparse.rb:755:in `initialize' >> from /usr/local/sbin/portupgrade:220:in `new' >> from /usr/local/sbin/portupgrade:220:in `main' >> from /usr/local/sbin/portupgrade:2084 >> >> Thanks >> >> Joachim >> > from similar thread: > >> -----Original Message----- >> From: owner-freebsd-ports@freebsd.org >> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of [LoN]Kamikaze >> Sent: Wednesday, March 21, 2007 9:10 AM >> To: freebsd-ports@freebsd.org >> Subject: Re: portupgrade query -- MOVEDError >> >> Vizion wrote: >> >>> The error comes from the attempt by portupgrade -a to >>> >> upgrade /usr/ports/ports-mgt/portgrade. >> >>> Soame errot is given if you run portupgrade in the >>> >> ports-mgmt/portsupgrade directory. >> >> The error is caused by a syntax error in the file /usr/ports/MOVED >> >> Change the last line from: >> lang/xotcl-thread|2007-03-21|Not longer needed >> to: >> lang/xotcl-thread||2007-03-21|Not longer needed >> >> >> >> > That fixed it -- thank you > SDavid > > Hallo, thanks for the immediately help !!!!!!!!! The Problem was solved. Joachim > > From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 20:35:18 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1F59B16A484 for ; Wed, 21 Mar 2007 20:35:18 +0000 (UTC) (envelope-from stickybit@gmx.net) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 6B33513C455 for ; Wed, 21 Mar 2007 20:35:17 +0000 (UTC) (envelope-from stickybit@gmx.net) Received: (qmail invoked by alias); 21 Mar 2007 20:08:35 -0000 Received: from port-212-202-34-58.dynamic.qsc.de (EHLO [192.168.100.111]) [212.202.34.58] by mail.gmx.net (mp054) with SMTP; 21 Mar 2007 21:08:35 +0100 X-Authenticated: #23197544 X-Provags-ID: V01U2FsdGVkX1+l74MpvrWle1GJwEtlbT8EyykanpIrSh2c9pu2tr REcd68HlfctBiW Message-ID: <46019083.7060800@gmx.net> Date: Wed, 21 Mar 2007 21:07:31 +0100 From: Sticky Bit MIME-Version: 1.0 To: Freddie Cash References: <46008EB2.1010807@gmx.net> <200703210913.32757.fcash@ocis.net> In-Reply-To: <200703210913.32757.fcash@ocis.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: ports@freebsd.org Subject: Re: Thank you for portmaster X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: stickybit@gmx.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Mar 2007 20:35:18 -0000 > Read the man pages for pkg_info, pkg_add, pkg_version, and pkg_delete, to > see all the things you can do with the ports/packages system. Those, > combined with portmaster, make for an excellent little ports toolkit. I am using FreeBSD for several years. I really know these tools very well and I already know what I want. They are part of my daily usage. So no help needed. ;-) Maybe you did not understand my intention. It is not a matter of what can be done with other tools but what can be done with portmaster. It was only a feature suggestion to improve portmaster not a request for help. Hope that makes it clear ... -- Kind regards, Sticky Bit *** True standards compliant plain text emails preferred. *** From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 20:43:05 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 804C516A413 for ; Wed, 21 Mar 2007 20:43:05 +0000 (UTC) (envelope-from fcash@ocis.net) Received: from smtp.sd73.bc.ca (smtp.sd73.bc.ca [142.24.13.140]) by mx1.freebsd.org (Postfix) with ESMTP id 6345913C4BD for ; Wed, 21 Mar 2007 20:43:05 +0000 (UTC) (envelope-from fcash@ocis.net) Received: from localhost (localhost [127.0.0.1]) by localhost.sd73.bc.ca (Postfix) with ESMTP id D88A41A000B2F for ; Wed, 21 Mar 2007 13:43:04 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at smtp.sd73.bc.ca Received: from smtp.sd73.bc.ca ([127.0.0.1]) by localhost (smtp.sd73.bc.ca [127.0.0.1]) (amavisd-new, port 10024) with LMTP id gTWwlvQ9QiCZ for ; Wed, 21 Mar 2007 13:42:56 -0700 (PDT) Received: from coal (s10.sbo [192.168.0.10]) by smtp.sd73.bc.ca (Postfix) with ESMTP id AA8B21A000B3B for ; Wed, 21 Mar 2007 13:42:56 -0700 (PDT) From: Freddie Cash To: ports@freebsd.org Date: Wed, 21 Mar 2007 13:42:55 -0700 User-Agent: KMail/1.9.5 References: <46008EB2.1010807@gmx.net> <200703210913.32757.fcash@ocis.net> <46019083.7060800@gmx.net> In-Reply-To: <46019083.7060800@gmx.net> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200703211342.55442.fcash@ocis.net> Cc: Subject: Re: Thank you for portmaster 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, 21 Mar 2007 20:43:05 -0000 On Wednesday 21 March 2007 01:07 pm, Sticky Bit wrote: > > Read the man pages for pkg_info, pkg_add, pkg_version, and > > pkg_delete, to see all the things you can do with the ports/packages > > system. Those, combined with portmaster, make for an excellent > > little ports toolkit. > > I am using FreeBSD for several years. I really know these tools very > well and I already know what I want. They are part of my daily usage. > So no help needed. ;-) > > Maybe you did not understand my intention. It is not a matter of what > can be done with other tools but what can be done with portmaster. It > was only a feature suggestion to improve portmaster not a request for > help. Hope that makes it clear ... Ah, but the Unix way is to use a handful of small single-purpose tools, not create swiss-army-knife-style tools that each try to do everything. :) Hence, why you should use pkg_add to install packages, pkg_info to get information on installed packages, pkg_version to see which installed packages have updates available, and portmaster to update installed packages. :) Personally, I'd prefer to have -L removed from portmaster completely. Or, at least the "search for updates" part of it. :D -- Freddie Cash fcash@ocis.net From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 20:51:09 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D62A716A405 for ; Wed, 21 Mar 2007 20:51:09 +0000 (UTC) (envelope-from alfredoj69@rogers.com) Received: from web88111.mail.re2.yahoo.com (web88111.mail.re2.yahoo.com [206.190.37.232]) by mx1.freebsd.org (Postfix) with SMTP id 86BA013C459 for ; Wed, 21 Mar 2007 20:51:09 +0000 (UTC) (envelope-from alfredoj69@rogers.com) Received: (qmail 41855 invoked by uid 60001); 21 Mar 2007 20:51:08 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Message-ID:X-YMail-OSG:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=G+tlQXtim4Wv2DzVW2XNTQ27nTbvI6l8kku16kphIAjwiGr9ORdy+rsoSqxQ5HuFw7k7XqYLcrWwU/Ms9hC0JF1/Skbeh3vkgwP9eU26eR3Gv4W2LvGLPTPX0qL2s25MMvZ2OJ/lXMMw2iljrV9K3MetWYrOQaS+k8OuQeHygwQ= ; Message-ID: <20070321205108.41853.qmail@web88111.mail.re2.yahoo.com> X-YMail-OSG: 3HCC9pcVM1lCXr..hKjGa9HZwJEKohpPX4wOj5d2P4xRqGaETn2.flUtg6TygZEjRCNT6jxm_Ngr4Y7nkyRsP9TmEZDMGPH_xg4Xob_WwqvDlb_dQemRGIm_UHVPNHx4YWeDo4Zuxj49Xg0- Received: from [74.100.192.207] by web88111.mail.re2.yahoo.com via HTTP; Wed, 21 Mar 2007 16:51:08 EDT Date: Wed, 21 Mar 2007 16:51:08 -0400 (EDT) From: Alfredo Perez To: ports@freebsd.org In-Reply-To: <20070321084353.4b01a959.wmoran@potentialtech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Openssh 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, 21 Mar 2007 20:51:10 -0000 Yes Bill, you are right. With some help, I already update a port (imgseek) Do I need to be the maintainer of Openssh to submit a PR with a diff? Alfredo Bill Moran wrote: In response to Eric : > Alfredo Perez wrote: > > Hi > > > > I noticed that Openssh port shows in the list of ports that need to be updated > > to the latest version (4.6), I dont have much experience updating a port but If nobody is working on that, I would really like to give it I try? > > > > Thanks > > > > Alfredo > > install portmaster from the ports tree and let it update it for you. > its pretty easy I think he's referring to generating a set of diffs and submitting a PR, as the OpenSSH in the ports tree is only 3.6.1 Alfredo: Start by reading The Porter's Handbook: http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/index.html Different ports require different levels of expertise to create -- I don't know what you're getting yourself in to with OpenSSH -- it could be easy or hard, but the place to start would be that handbook. If you hit specific problems, post the details of where you get stuck to the list and I'm sure others will help out. -- Bill Moran http://www.potentialtech.com _______________________________________________ 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 Wed Mar 21 20:53:31 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5218E16A402 for ; Wed, 21 Mar 2007 20:53:31 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 34F1013C45A for ; Wed, 21 Mar 2007 20:53:31 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id E84B21A3C1C; Wed, 21 Mar 2007 13:53:30 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 48D8B51344; Wed, 21 Mar 2007 16:53:29 -0400 (EDT) Date: Wed, 21 Mar 2007 16:53:29 -0400 From: Kris Kennaway To: Jeremy Messenger Message-ID: <20070321205328.GA58453@xor.obsecurity.org> References: <20070320171622.GA12902@xor.obsecurity.org> <20070320202139.GA16688@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Cc: freebsd-ports@freebsd.org, Kris Kennaway Subject: Re: [ports-amd64@pointyhat.freebsd.org: linuxdcpp-0.0.1.20070206 failed on amd64 7] 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, 21 Mar 2007 20:53:31 -0000 On Wed, Mar 21, 2007 at 02:51:31PM -0500, Jeremy Messenger wrote: > On Tue, 20 Mar 2007 15:21:39 -0500, Kris Kennaway > wrote: > > >On Tue, Mar 20, 2007 at 02:55:09PM -0500, Jeremy Messenger wrote: > >>On Tue, 20 Mar 2007 12:16:22 -0500, Kris Kennaway > >>wrote: > >> > >>>Dear Maintainer, > >>> > >>>As you may know, in the near future FreeBSD 7.x will be switching from > >>>the gcc 3.4 compiler to gcc 4.x. Unfortunately your port fails to > >>>build with the new compiler; see the log below. > >>> > >>>To ease the disruption to users and to avoid further work later on, > >>>can you please work (with the upstream developers if necessary) on > >>>fixing this error? > >>> > >>>In many cases it requires only simple code changes, and these may > >>>already have been submitted to the developers by other projects > >>>(thesedays many Linux distributions use gcc 4.1, so chances are they > >>>have fixed the error already), or the patches may be found in their > >>>package repositories. > >>> > >>>You should be able to reproduce it yourself simply by installing the > >>>lang/gcc41 port and then setting the variables > >>> > >>> CC=/usr/local/bin/gcc41 > >>> CXX=/usr/local/bin/g++41 > >>> > >>>in your environment (Note: some ports do not respect these variables > >>>currently, but this is another bug that should be fixed). > >> > >>I can't reproduce it. Any idea why I can't? Thanks. > >> > >># pkg_info | grep gcc > >>gcc-4.1.3_20070312 GNU Compiler Collection 4.1 > >># make -DGCC4 > >>===> Extracting for linuxdcpp-0.0.1.20070206 > >>=> MD5 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. > >>=> SHA256 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. > >>[...] > >>===> Building for linuxdcpp-0.0.1.20070206 > >>scons: Reading SConscript files ... > >>Checking for /usr/local/bin/g++41 >= 3.4...(cached) yes > >>[...] > >>scons: Building targets ... > >>/usr/local/bin/g++41 -o build/client/AdcCommand.o -c -O2 > >>-fno-strict-aliasing -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOURCE > >>-D_FILE_OFFSET_BITS=64 -DICONV_CONST=const > >>-D_DATADIR='"/usr/local/share"' > >>client/AdcCommand.cpp > >>/usr/local/bin/g++41 -o build/client/AdcHub.o -c -O2 > >>-fno-strict-aliasing > >>-pipe -g -I. -I/usr/local/include -I. -D_GNU_SOURCE > >>-D_FILE_OFFSET_BITS=64 > >>-DICONV_CONST=const -D_DATADIR='"/usr/local/share"' client/AdcHub.cpp > >>/usr/local/bin/g++41 -o build/client/ADLSearch.o -c -O2 > >>-fno-strict-aliasing -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOURCE > >>-D_FILE_OFFSET_BITS=64 -DICONV_CONST=const > >>-D_DATADIR='"/usr/local/share"' > >>client/ADLSearch.cpp > >>[...goes on without failure...] > > > >Is this on amd64? > > No, it's 6.2-STABLE i386. I guess, I can mark it as broken on 7.x amd64. Well it's only broken with the non-imported compiler, so if you're going to go the "mark broken" route then please wait for the import. And also talk to the developers of course. Kris From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 21:00:30 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E12D616A405 for ; Wed, 21 Mar 2007 21:00:30 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from bsd.dino.sk (bsd.dino.sk [213.215.72.60]) by mx1.freebsd.org (Postfix) with ESMTP id 7B2DE13C459 for ; Wed, 21 Mar 2007 21:00:28 +0000 (UTC) (envelope-from freebsd-ports@dino.sk) Received: from lex.dino.sk (home.dino.sk [84.245.95.252]) (AUTH: PLAIN milan, TLS: TLSv1/SSLv3,256bits,AES256-SHA) by bsd.dino.sk with esmtp; Wed, 21 Mar 2007 21:53:54 +0100 id 00000069.46019B63.0000B0C5 From: Milan Obuch To: freebsd-ports@freebsd.org Date: Wed, 21 Mar 2007 21:48:30 +0100 User-Agent: KMail/1.9.5 References: <20070321183400.QPSY2045.dukecmmtao03.coxmail.com@dukecmmtao03> <20070322.051335.15241084.yasu@utahime.org> In-Reply-To: <20070322.051335.15241084.yasu@utahime.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200703212148.32337.freebsd-ports@dino.sk> Subject: Re: mail/maildrop marked as 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: Wed, 21 Mar 2007 21:00:31 -0000 On Wednesday 21 March 2007 21:13, KIMURA Yasuhiro wrote: > From: Vizion > Subject: mail/maildrop marked as broken > Date: Wed, 21 Mar 2007 11:33:59 -0700 > > > As title for information > > New today: > > portupgrade -a reports: > > > > FAM system mismatch: gamin is imstalled and desired FAM system is fam > > AFAIK Courier products work only with fam and not with gamin. But I > not certain this is still the case now. Does anyone know if latest > gamin is compatible with Courier products? > > --- > KIMURA Yasuhiro > This is part of installed packages on one from my servers: pkg_info apache-2.2.4 Version 2.2 of Apache web server with prefork MPM. arc-5.21o_1 Create & extract files from DOS .ARC files arj-3.10.22 Open-source ARJ autoconf-2.53_3 Automatically configure source code on many Un*x platforms autoconf-2.59_2 Automatically configure source code on many Un*x platforms automake-1.5_2,1 GNU Standards-compliant Makefile generator (1.5) automake-1.9.6 GNU Standards-compliant Makefile generator (1.9) clamav-0.90_3 Command line virus scanner written entirely in C clamcour-0.3.8 ClamAV courier filter courier-0.54.0 Courier SMTP IMAP POP3 HTTP mail server suite courier-authlib-base-0.59.1 Courier authentication library base courier-authlib-userdb-0.59.1 Userdb support for the Courier authentication library courier-pythonfilter-0.18 Framework for courier filter development in python curl-7.16.1 Non-interactive tool to get files from FTP, GOPHER, HTTP(S) docbook-1.3 Meta-port for the different versions of the DocBook DTD docbook-241_2 V2.4.1 of the DocBook DTD, designed for technical documenta docbook-3.0_2 V3.0 of the DocBook DTD, designed for technical documentati docbook-3.1_2 V3.1 of the DocBook DTD, designed for technical documentati docbook-4.0_2 V4.0 of the DocBook DTD, designed for technical documentati docbook-4.1_2 V4.1 of the DocBook DTD, designed for technical documentati docbook-xml-4.2_1 XML version of the DocBook DTD expat-2.0.0_1 XML 1.0 parser written in C gamin-0.1.7_2 A file and directory monitoring system And it works well. So yes, courier could be used with gamin. And if full courier suite works well, it could work partially, too. Regards, Milan -- No need to mail me directly. Just reply to mailing list, please. From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 21:43:48 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB05216A4FE; Wed, 21 Mar 2007 21:43:48 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao101.cox.net (eastrmmtao101.cox.net [68.230.240.7]) by mx1.freebsd.org (Postfix) with ESMTP id 4297113C4C3; Wed, 21 Mar 2007 21:43:47 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo01.cox.net ([68.1.16.119]) by eastrmmtao101.cox.net (InterMail vM.7.05.02.00 201-2174-114-20060621) with ESMTP id <20070321214348.INVP11352.eastrmmtao101.cox.net@eastrmimpo01.cox.net>; Wed, 21 Mar 2007 17:43:48 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo01.cox.net with bizsmtp id dZjm1W00M4iy4EG0000000; Wed, 21 Mar 2007 17:43:46 -0400 Date: Wed, 21 Mar 2007 16:45:42 -0500 To: "Indigo 23" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <6f50eac40703202255s4f1e94d8w7bbf565cb9b0b702@mail.gmail.com> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <6f50eac40703202255s4f1e94d8w7bbf565cb9b0b702@mail.gmail.com> User-Agent: Opera Mail/9.10 (Linux) Cc: freebsd-ports@freebsd.org, freebsd-gnome@freebsd.org Subject: Re: Eye of Gnome error after upgrading to 2.18 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, 21 Mar 2007 21:43:48 -0000 On Wed, 21 Mar 2007 00:55:24 -0500, Indigo 23 wrote: > After upgrading to Gnome 2.18 from 2.16 [in which I mostly used > packages from marcuscom], I receive the following error when trying to > open an image using Eye of Gnome 2.18 (eog-2.18.0.1): > > Couldn't load image 'gnome-failed.jpg'. > Unable to load image-loading module: > /usr/X11R6/lib/gtk-2.0/2.4.0/loaders/libpixbufloader-jpeg.so: Cannot > open "/usr/X11R6/lib/gtk-2.0/2.4.0/loaders/libpixbufloader-jpeg.so" > > and in the Terminal I get the following: > (eog:66783): Gtk-WARNING **: Unable to locate theme engine in > module_path: "murrine", > > I recompiled the murrine/murrina themes after upgrading (just in > case), and I am running 6.2. > > Anyone have any idea what's wrong and how it can be fixed? I am not sure, but it looks like you have not follow in /usr/ports/UPDATING (20061014) correct. Cheers, Mezz > Thanks. -- 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 Wed Mar 21 22:01:12 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5928E16A503; Wed, 21 Mar 2007 22:01:12 +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 C7FAD13C4D0; Wed, 21 Mar 2007 22:01:11 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo01.cox.net ([68.1.16.119]) by eastrmmtao104.cox.net (InterMail vM.7.05.02.00 201-2174-114-20060621) with ESMTP id <20070321220112.OJXV460.eastrmmtao104.cox.net@eastrmimpo01.cox.net>; Wed, 21 Mar 2007 18:01:12 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo01.cox.net with bizsmtp id da1A1W00Z4iy4EG0000000; Wed, 21 Mar 2007 18:01:10 -0400 Date: Wed, 21 Mar 2007 17:03:06 -0500 To: freebsd-ports@freebsd.org From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Message-ID: User-Agent: Opera Mail/9.10 (Linux) Cc: freebsd-gnome@freebsd.org Subject: lang/guile needs a good maintainership.. 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, 21 Mar 2007 22:01:12 -0000 Hello folks, We, FreeBSD GNOME Team, have no insteresting to bother with lang/guile to make any change or/and update it to 1.8.x (ports/108267). We are wondering if anyone is insteresting to take it over? It has to be active and good maintainer. To update it to 1.8.x, it might requires a lot of test. Thanks. Cheers, Mezz -- 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 Wed Mar 21 22:35:37 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10FEB16A416 for ; Wed, 21 Mar 2007 22:35:37 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id EC19413C4AE for ; Wed, 21 Mar 2007 22:35:36 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 938AC756; Wed, 21 Mar 2007 17:35:36 -0500 (CDT) Date: Wed, 21 Mar 2007 17:35:36 -0500 To: Alfredo Perez Message-ID: <20070321223536.GB9894@soaustin.net> References: <20070321084353.4b01a959.wmoran@potentialtech.com> <20070321205108.41853.qmail@web88111.mail.re2.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070321205108.41853.qmail@web88111.mail.re2.yahoo.com> User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: ports@freebsd.org Subject: Re: Openssh 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, 21 Mar 2007 22:35:37 -0000 On Wed, Mar 21, 2007 at 04:51:08PM -0400, Alfredo Perez wrote: > Do I need to be the maintainer of Openssh to submit a PR with a diff? No. We will forward your PR to the maintainer. mcl From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 23:11:52 2007 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0EE1316A46D for ; Wed, 21 Mar 2007 23:11:52 +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 7821C13C45A for ; Wed, 21 Mar 2007 23:11:51 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from [192.168.0.23] (r3b159.net.upc.cz [213.220.193.159]) (authenticated bits=0) by raven.customer.vol.cz (8.13.6/8.13.6) with ESMTP id l2LNBhuA066447 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 22 Mar 2007 00:11:45 +0100 (CET) (envelope-from pav@FreeBSD.org) From: Pav Lucistnik To: Gary Kline In-Reply-To: <20070321050535.GB68447@thought.org> References: <4600AC05.4000004@u.washington.edu> <20070321050535.GB68447@thought.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-9mRGSiS7hdgjJ1DYjExZ" Date: Thu, 22 Mar 2007 00:11:42 +0100 Message-Id: <1174518702.50979.2.camel@ikaros.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.0 FreeBSD GNOME Team Port X-Spam-Score: -2.191 () AWL,BAYES_00 X-Scanned-By: MIMEDefang 2.61 on 195.250.144.108 X-Milter: Spamilter (Reciever: raven.customer.vol.cz; Sender-ip: 213.220.193.159; Sender-helo: [192.168.0.23]; ) Cc: Garrett Cooper , freebsd-ports@FreeBSD.org Subject: Re: A review of different port management tools : analysis for Google SoC project 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, 21 Mar 2007 23:11:52 -0000 --=-9mRGSiS7hdgjJ1DYjExZ Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Gary Kline p=ED=B9e v =FAt 20. 03. 2007 v 21:05 -0800: > How about this idea for integrating into a new ports/package > project: say for people with a fast I686 who wanted -O3 and -pipe > and wanted his packages built remotely rather than his own > computer. Would be be posssible to build a package, custom > (according to one's /etc/make.conf) on FreeBSD's servers, then > fetch the *tgz package back? Kernels, and worlds would reside=20 > on the remote server for only a few hours before being > automatically cleansed. This would be super for everything from > a i486-166MHz with 32Megs that was serving mail *only*, a slow > to moderate i686, or even an AMD 2800. Building locally is=20 > sometimes the only way. But if users have slower servers and > there are no current packages (i386), why not let the builds be > queued? =20 Just so you know, existing "FreeBSD's servers", as you put it, are Pentium III blades clocked at 700 MHz. And we tend to keep them rather busy. --=20 Pav Lucistnik > Why do we need a film of "Lord of the Rings" when we have the book? Because watching a cg enhanced Legolas fire a flaming arrow into the heart of a warg is cool? - asdf@asdf.com in rec.games.roguelike.angband --=-9mRGSiS7hdgjJ1DYjExZ 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.7 (FreeBSD) iD8DBQBGAbupntdYP8FOsoIRApcsAJ9W0lfVSQkpAkSs/eCVeKiPoRZa5gCdGu2F neisBsOrdmXe74g5Hh3N8fI= =MO75 -----END PGP SIGNATURE----- --=-9mRGSiS7hdgjJ1DYjExZ-- From owner-freebsd-ports@FreeBSD.ORG Wed Mar 21 23:33:28 2007 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5911A16A401 for ; Wed, 21 Mar 2007 23:33:28 +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 EDFA713C465 for ; Wed, 21 Mar 2007 23:33:27 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from [192.168.0.23] (r3b159.net.upc.cz [213.220.193.159]) (authenticated bits=0) by raven.customer.vol.cz (8.13.6/8.13.6) with ESMTP id l2LNXLXd068816 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Thu, 22 Mar 2007 00:33:23 +0100 (CET) (envelope-from pav@FreeBSD.org) From: Pav Lucistnik To: Kris Kennaway In-Reply-To: <20070321205328.GA58453@xor.obsecurity.org> References: <20070320171622.GA12902@xor.obsecurity.org> <20070320202139.GA16688@xor.obsecurity.org> <20070321205328.GA58453@xor.obsecurity.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Oui7XsBYwoXHlwOXvNWk" Date: Thu, 22 Mar 2007 00:33:21 +0100 Message-Id: <1174520001.50979.4.camel@ikaros.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.0 FreeBSD GNOME Team Port X-Spam-Score: -2.195 () AWL,BAYES_00 X-Scanned-By: MIMEDefang 2.61 on 195.250.144.108 X-Milter: Spamilter (Reciever: raven.customer.vol.cz; Sender-ip: 213.220.193.159; Sender-helo: [192.168.0.23]; ) Cc: Jeremy Messenger , freebsd-ports@FreeBSD.org Subject: Re: [ports-amd64@pointyhat.freebsd.org: linuxdcpp-0.0.1.20070206 failed on amd64 7] 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, 21 Mar 2007 23:33:28 -0000 --=-Oui7XsBYwoXHlwOXvNWk Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Kris Kennaway p=ED=B9e v st 21. 03. 2007 v 16:53 -0400: > On Wed, Mar 21, 2007 at 02:51:31PM -0500, Jeremy Messenger wrote: > > On Tue, 20 Mar 2007 15:21:39 -0500, Kris Kennaway = =20 > > wrote: > >=20 > > >On Tue, Mar 20, 2007 at 02:55:09PM -0500, Jeremy Messenger wrote: > > >>On Tue, 20 Mar 2007 12:16:22 -0500, Kris Kennaway > > >>wrote: > > >> > > >>>Dear Maintainer, > > >>> > > >>>As you may know, in the near future FreeBSD 7.x will be switching fr= om > > >>>the gcc 3.4 compiler to gcc 4.x. Unfortunately your port fails to > > >>>build with the new compiler; see the log below. > > >>> > > >>>To ease the disruption to users and to avoid further work later on, > > >>>can you please work (with the upstream developers if necessary) on > > >>>fixing this error? > > >>> > > >>>In many cases it requires only simple code changes, and these may > > >>>already have been submitted to the developers by other projects > > >>>(thesedays many Linux distributions use gcc 4.1, so chances are they > > >>>have fixed the error already), or the patches may be found in their > > >>>package repositories. > > >>> > > >>>You should be able to reproduce it yourself simply by installing the > > >>>lang/gcc41 port and then setting the variables > > >>> > > >>> CC=3D/usr/local/bin/gcc41 > > >>> CXX=3D/usr/local/bin/g++41 > > >>> > > >>>in your environment (Note: some ports do not respect these variables > > >>>currently, but this is another bug that should be fixed). > > >> > > >>I can't reproduce it. Any idea why I can't? Thanks. > > >> > > >># pkg_info | grep gcc > > >>gcc-4.1.3_20070312 GNU Compiler Collection 4.1 > > >># make -DGCC4 > > >>=3D=3D=3D> Extracting for linuxdcpp-0.0.1.20070206 > > >>=3D> MD5 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. > > >>=3D> SHA256 Checksum OK for linuxdcpp-0.0.1.20070206.tar.bz2. > > >>[...] > > >>=3D=3D=3D> Building for linuxdcpp-0.0.1.20070206 > > >>scons: Reading SConscript files ... > > >>Checking for /usr/local/bin/g++41 >=3D 3.4...(cached) yes > > >>[...] > > >>scons: Building targets ... > > >>/usr/local/bin/g++41 -o build/client/AdcCommand.o -c -O2 > > >>-fno-strict-aliasing -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOU= RCE > > >>-D_FILE_OFFSET_BITS=3D64 -DICONV_CONST=3Dconst =20 > > >>-D_DATADIR=3D'"/usr/local/share"' > > >>client/AdcCommand.cpp > > >>/usr/local/bin/g++41 -o build/client/AdcHub.o -c -O2 =20 > > >>-fno-strict-aliasing > > >>-pipe -g -I. -I/usr/local/include -I. -D_GNU_SOURCE =20 > > >>-D_FILE_OFFSET_BITS=3D64 > > >>-DICONV_CONST=3Dconst -D_DATADIR=3D'"/usr/local/share"' client/AdcHub= .cpp > > >>/usr/local/bin/g++41 -o build/client/ADLSearch.o -c -O2 > > >>-fno-strict-aliasing -pipe -g -I. -I/usr/local/include -I. -D_GNU_SOU= RCE > > >>-D_FILE_OFFSET_BITS=3D64 -DICONV_CONST=3Dconst =20 > > >>-D_DATADIR=3D'"/usr/local/share"' > > >>client/ADLSearch.cpp > > >>[...goes on without failure...] > > > > > >Is this on amd64? > >=20 > > No, it's 6.2-STABLE i386. I guess, I can mark it as broken on 7.x amd64= . >=20 > Well it's only broken with the non-imported compiler, so if you're > going to go the "mark broken" route then please wait for the import. > And also talk to the developers of course. I just tried, and it build fine on amd64-6 with gcc41. --=20 Pav Lucistnik Knight: We shall say Ny! again to you if you do not appease us. Arthur: All right. What do you want? Knight: We want... a shruberry! --=-Oui7XsBYwoXHlwOXvNWk 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.7 (FreeBSD) iD8DBQBGAcC9ntdYP8FOsoIRAln0AKCnIxz8YsP3xbv70hjjr+BiapYFMQCfUYpR /ODlu0i/ODMyfHhiGA/atdM= =5xr+ -----END PGP SIGNATURE----- --=-Oui7XsBYwoXHlwOXvNWk-- From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 00:15:39 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 03E6216A403 for ; Thu, 22 Mar 2007 00:15:39 +0000 (UTC) (envelope-from alfredoj69@rogers.com) Received: from web88111.mail.re2.yahoo.com (web88111.mail.re2.yahoo.com [206.190.37.232]) by mx1.freebsd.org (Postfix) with SMTP id A622513C43E for ; Thu, 22 Mar 2007 00:15:38 +0000 (UTC) (envelope-from alfredoj69@rogers.com) Received: (qmail 54689 invoked by uid 60001); 22 Mar 2007 00:15:37 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=rogers.com; h=Message-ID:X-YMail-OSG:Received:Date:From:Subject:To:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=xAm8jr2WE7AC6+/9FrFWZ61wuhSnaRGMGmfeFwNfTbGvZrrbIEDhrScqdFWWA6P6h0cMlQoFYIvTC1McbkLCK91uxqqGWYjywxMjrnjcT+Pnb/Shoaa02qz2Y1aJ7x4Jl5xU8uifeA81N9WIlI+a5quPZuqPDtNFxx2xzw2Gc0M= ; Message-ID: <20070322001537.54687.qmail@web88111.mail.re2.yahoo.com> X-YMail-OSG: NtLBRh8VM1kH5bjCQMfuoYWEW.NyUCQWsv_APH8XGEb3vuahnb2gKkCW2M7kaGmYnYVaBHUnnwwfWZ4pfEY_gPs7rt6Wp2ug76PaxMcdRdmsxYAgEPYfdlSaZFZfHutbarTPwKWaeVOl.Q-- Received: from [74.100.192.207] by web88111.mail.re2.yahoo.com via HTTP; Wed, 21 Mar 2007 20:15:37 EDT Date: Wed, 21 Mar 2007 20:15:37 -0400 (EDT) From: Alfredo Perez To: freebsd-port-list In-Reply-To: <20070321223536.GB9894@soaustin.net> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: Openssh 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, 22 Mar 2007 00:15:39 -0000 That is the thing, the port does not have a maintainer Mark Linimon wrote: On Wed, Mar 21, 2007 at 04:51:08PM -0400, Alfredo Perez wrote: > Do I need to be the maintainer of Openssh to submit a PR with a diff? No. We will forward your PR to the maintainer. mcl _______________________________________________ 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 Thu Mar 22 03:54:34 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A2CBA16A46D for ; Thu, 22 Mar 2007 03:54:34 +0000 (UTC) (envelope-from indigo23@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.168]) by mx1.freebsd.org (Postfix) with ESMTP id 3636013C465 for ; Thu, 22 Mar 2007 03:54:34 +0000 (UTC) (envelope-from indigo23@gmail.com) Received: by ug-out-1314.google.com with SMTP id 71so568185ugh for ; Wed, 21 Mar 2007 20:54:33 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=PIbb+PKnvWA6vetwAvDNBclLDAL0cUq2+dihUtR+vihrEH1Yf+zuEgtwwG0l2jCDZLzfxKBeyPcfyZ1gO/ciBZRbHM9cVUgSMI2VM73sphoq7PN9oUtWOQkU+PKP3cEDJ0W3zGM3Q5SQMGhTfbU3zwxsZryjIRe4iRhDjFQnabE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=EGmRSkmuXio/jK8mSFii2CBHRVPRlrrzyyeYIRCxjxtVw3QlRREpl88hvHQ2pMDZuvEiUbe6+9DHwSPCSWnjNBVFo99xsQRqXgqNR+C1khoBUo8lJn88Xtbno1JVEn5VGQz4PnE9FUp+bnKWykl1T5ezC9FGMZERBpfoRG1+XnA= Received: by 10.114.60.19 with SMTP id i19mr431476waa.1174535671975; Wed, 21 Mar 2007 20:54:31 -0700 (PDT) Received: by 10.115.46.15 with HTTP; Wed, 21 Mar 2007 20:54:31 -0700 (PDT) Message-ID: <6f50eac40703212054m38766697m4efc9355b95dde2c@mail.gmail.com> Date: Wed, 21 Mar 2007 23:54:31 -0400 From: "Indigo 23" To: "Jeremy Messenger" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <6f50eac40703202255s4f1e94d8w7bbf565cb9b0b702@mail.gmail.com> Cc: freebsd-ports@freebsd.org, freebsd-gnome@freebsd.org Subject: Re: Eye of Gnome error after upgrading to 2.18 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, 22 Mar 2007 03:54:34 -0000 On 3/21/07, Jeremy Messenger wrote: > On Wed, 21 Mar 2007 00:55:24 -0500, Indigo 23 wrote: > > > After upgrading to Gnome 2.18 from 2.16 [in which I mostly used > > packages from marcuscom], I receive the following error when trying to > > open an image using Eye of Gnome 2.18 (eog-2.18.0.1): > > > > Couldn't load image 'gnome-failed.jpg'. > > Unable to load image-loading module: > > /usr/X11R6/lib/gtk-2.0/2.4.0/loaders/libpixbufloader-jpeg.so: Cannot > > open "/usr/X11R6/lib/gtk-2.0/2.4.0/loaders/libpixbufloader-jpeg.so" > > > > and in the Terminal I get the following: > > (eog:66783): Gtk-WARNING **: Unable to locate theme engine in > > module_path: "murrine", > > > > I recompiled the murrine/murrina themes after upgrading (just in > > case), and I am running 6.2. > > > > Anyone have any idea what's wrong and how it can be fixed? > > I am not sure, but it looks like you have not follow in > /usr/ports/UPDATING (20061014) correct. > > Cheers, > Mezz > I did follow what was in there, but there is still some package relying on that old path for some reason and I cannot figure out which one it is. Is there a way to determine which port is causing the problem (i.e. still looking for old gtk libraries)? For the time being, I have a little workaround implemented, but I'd rather fix the problem directly. Thanks. From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 07:25:57 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E224716A40A for ; Thu, 22 Mar 2007 07:25:57 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id 9431813C45D for ; Thu, 22 Mar 2007 07:25:57 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 14F20326; Thu, 22 Mar 2007 02:25:57 -0500 (CDT) Date: Thu, 22 Mar 2007 02:25:56 -0500 To: Alfredo Perez Message-ID: <20070322072556.GA28485@soaustin.net> References: <20070321223536.GB9894@soaustin.net> <20070322001537.54687.qmail@web88111.mail.re2.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070322001537.54687.qmail@web88111.mail.re2.yahoo.com> User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: freebsd-port-list Subject: Re: Openssh 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, 22 Mar 2007 07:25:58 -0000 On Wed, Mar 21, 2007 at 08:15:37PM -0400, Alfredo Perez wrote: > That is the thing, the port does not have a maintainer Well, it will stay in the queue until a ports committer takes an interest in it. mcl From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 07:58:48 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A7D4D16A46D for ; Thu, 22 Mar 2007 07:58:48 +0000 (UTC) (envelope-from paul@takizo.com) Received: from sps.aims.com.my (sps.aims.com.my [203.223.128.170]) by mx1.freebsd.org (Postfix) with ESMTP id 659EC13C489 for ; Thu, 22 Mar 2007 07:58:48 +0000 (UTC) (envelope-from paul@takizo.com) Received: from [203.223.134.81] (unknown [203.223.134.81]) by sps.aims.com.my (Spam Firewall) with ESMTP id DD788200009A for ; Thu, 22 Mar 2007 15:58:46 +0800 (MYT) Message-ID: <4602372A.6020903@takizo.com> Date: Thu, 22 Mar 2007 15:58:34 +0800 From: Paul Ooi Cong Jen User-Agent: Thunderbird 1.5.0.10 (Macintosh/20070221) MIME-Version: 1.0 To: freebsd-port-list References: <20070321223536.GB9894@soaustin.net> <20070322001537.54687.qmail@web88111.mail.re2.yahoo.com> <20070322072556.GA28485@soaustin.net> In-Reply-To: <20070322072556.GA28485@soaustin.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: gettext error 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, 22 Mar 2007 07:58:48 -0000 dear all, I am trying to install gettext and having this error. current I am not able to ssh into server because gettext is remove. test-lock.o: In function `test_lock': test-lock.o(.text+0x1e5): undefined reference to `pthread_create' test-lock.o(.text+0x20e): undefined reference to `pthread_create' test-lock.o(.text+0x23f): undefined reference to `pthread_join' test-lock.o(.text+0x269): undefined reference to `pthread_join' test-lock.o: In function `test_rwlock': test-lock.o(.text+0x3ea): undefined reference to `pthread_create' test-lock.o(.text+0x41e): undefined reference to `pthread_create' test-lock.o(.text+0x44f): undefined reference to `pthread_join' test-lock.o(.text+0x483): undefined reference to `pthread_join' test-lock.o: In function `test_recursive_lock': test-lock.o(.text+0x61d): undefined reference to `pthread_create' test-lock.o(.text+0x646): undefined reference to `pthread_create' test-lock.o(.text+0x677): undefined reference to `pthread_join' test-lock.o(.text+0x6a1): undefined reference to `pthread_join' test-lock.o: In function `test_once': test-lock.o(.text+0x8d9): undefined reference to `pthread_create' test-lock.o(.text+0xa53): undefined reference to `pthread_join' *** Error code 1 Stop in /usr/ports/devel/gettext/work/gettext-0.16.1/gettext-runtime/tests. *** Error code 1 Stop in /usr/ports/devel/gettext/work/gettext-0.16.1/gettext-runtime. *** Error code 1 Stop in /usr/ports/devel/gettext/work/gettext-0.16.1/gettext-runtime. *** Error code 1 Stop in /usr/ports/devel/gettext/work/gettext-0.16.1. *** Error code 1 Stop in /usr/ports/devel/gettext. From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 08:10:01 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A6EE316A468 for ; Thu, 22 Mar 2007 08:10:01 +0000 (UTC) (envelope-from grafan@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.freebsd.org (Postfix) with ESMTP id 0D2C513C4AD for ; Thu, 22 Mar 2007 08:10:00 +0000 (UTC) (envelope-from grafan@gmail.com) Received: by ug-out-1314.google.com with SMTP id 71so614404ugh for ; Thu, 22 Mar 2007 01:10:00 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=g8CVt0ZEsq6UzpAFcKMro5OfoMSLSojMvb6WABjkH5ZuX9SLtyzhra0PdfZsiZYSlnW74PbBbMrtH2/ZJFRv6K9PCqZcHfbailz4OC7WbrW/XuIj6BXFivZ3GupY1PtgcN2/ylpxinhkPAymC6Zl83PVE281DMuUfh8uO1OTdq8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ctpzqe7uPEnaA1AG/m4Dwv9BBpuKDXj99LFFHIeLUVLVQ1beYIwXtq2QfXr0iXXMEsf+wJT/AVIXSVxihYooJTC6CB7nYZQQGevTILOrYvQ95Gr3IEctsGm1+acja7lWDt7DR5J2kTaJnZuAa7MX2v77DnoWsWNFKgP8/fWpBic= Received: by 10.114.130.1 with SMTP id c1mr498698wad.1174550999162; Thu, 22 Mar 2007 01:09:59 -0700 (PDT) Received: by 10.140.23.15 with HTTP; Thu, 22 Mar 2007 01:09:59 -0700 (PDT) Message-ID: <6eb82e0703220109v54a4ebe9u4a186d274fe890c6@mail.gmail.com> Date: Thu, 22 Mar 2007 16:09:59 +0800 From: "Rong-en Fan" To: "Paul Ooi Cong Jen" In-Reply-To: <4602372A.6020903@takizo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20070321223536.GB9894@soaustin.net> <20070322001537.54687.qmail@web88111.mail.re2.yahoo.com> <20070322072556.GA28485@soaustin.net> <4602372A.6020903@takizo.com> Cc: freebsd-port-list Subject: Re: gettext error 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, 22 Mar 2007 08:10:01 -0000 On 3/22/07, Paul Ooi Cong Jen wrote: > dear all, > > I am trying to install gettext and having this error. current I am not > able to ssh into server because gettext is remove. > > test-lock.o: In function `test_lock': > test-lock.o(.text+0x1e5): undefined reference to `pthread_create' > test-lock.o(.text+0x20e): undefined reference to `pthread_create' > test-lock.o(.text+0x23f): undefined reference to `pthread_join' > test-lock.o(.text+0x269): undefined reference to `pthread_join' > test-lock.o: In function `test_rwlock': > test-lock.o(.text+0x3ea): undefined reference to `pthread_create' > test-lock.o(.text+0x41e): undefined reference to `pthread_create' > test-lock.o(.text+0x44f): undefined reference to `pthread_join' > test-lock.o(.text+0x483): undefined reference to `pthread_join' > test-lock.o: In function `test_recursive_lock': > test-lock.o(.text+0x61d): undefined reference to `pthread_create' > test-lock.o(.text+0x646): undefined reference to `pthread_create' > test-lock.o(.text+0x677): undefined reference to `pthread_join' > test-lock.o(.text+0x6a1): undefined reference to `pthread_join' > test-lock.o: In function `test_once': > test-lock.o(.text+0x8d9): undefined reference to `pthread_create' > test-lock.o(.text+0xa53): undefined reference to `pthread_join' are you running 4.x? Regards. Rong-En Fan From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 08:30:55 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAF8F16A40B for ; Thu, 22 Mar 2007 08:30:55 +0000 (UTC) (envelope-from tobez@tobez.org) Received: from heechee.tobez.org (heechee.tobez.org [194.255.56.42]) by mx1.freebsd.org (Postfix) with ESMTP id A090713C455 for ; Thu, 22 Mar 2007 08:30:55 +0000 (UTC) (envelope-from tobez@tobez.org) Received: by heechee.tobez.org (Postfix, from userid 1001) id 848F312545A; Thu, 22 Mar 2007 09:30:54 +0100 (CET) Date: Thu, 22 Mar 2007 09:30:54 +0100 From: Anton Berezin To: mezz@FreeBSD.org, ports@freebsd.org Message-ID: <20070322083054.GA16764@heechee.tobez.org> Mail-Followup-To: Anton Berezin , mezz@FreeBSD.org, ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i X-Powered-By: FreeBSD http://www.freebsd.org/ Cc: Subject: bad fluxbox 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: Thu, 22 Mar 2007 08:30:56 -0000 After the recent update: ===> Patching for fluxbox-1.0rc3 ===> Applying FreeBSD patches for fluxbox-1.0rc3 Ignoring previously applied (or reversed) patch. 1 out of 1 hunks ignored--saving rejects to src/FbTk/FbString.cc.rej => Patch patch-fix_iconvmenu_crash failed to apply cleanly. *** Error code 1 Stop in /usr/ports/x11-wm/fluxbox. -- We're going for 'working' here. 'clean' is for people with skills... -- Flemming Jacobsen From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 10:04:30 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 251ED16A514 for ; Thu, 22 Mar 2007 10:04:30 +0000 (UTC) (envelope-from paul@takizo.com) Received: from sps.aims.com.my (sps.aims.com.my [203.223.128.170]) by mx1.freebsd.org (Postfix) with ESMTP id CB55C13C4C9 for ; Thu, 22 Mar 2007 10:04:29 +0000 (UTC) (envelope-from paul@takizo.com) Received: from [203.223.134.81] (unknown [203.223.134.81]) by sps.aims.com.my (Spam Firewall) with ESMTP id D95DD20000A6; Thu, 22 Mar 2007 18:04:26 +0800 (MYT) Message-ID: <4602549F.6020405@takizo.com> Date: Thu, 22 Mar 2007 18:04:15 +0800 From: Paul Ooi Cong Jen User-Agent: Thunderbird 1.5.0.10 (Macintosh/20070221) MIME-Version: 1.0 To: Rong-en Fan References: <20070321223536.GB9894@soaustin.net> <20070322001537.54687.qmail@web88111.mail.re2.yahoo.com> <20070322072556.GA28485@soaustin.net> <4602372A.6020903@takizo.com> <6eb82e0703220109v54a4ebe9u4a186d274fe890c6@mail.gmail.com> In-Reply-To: <6eb82e0703220109v54a4ebe9u4a186d274fe890c6@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-port-list Subject: Re: gettext error 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, 22 Mar 2007 10:04:30 -0000 Rong-en Fan wrote: > On 3/22/07, Paul Ooi Cong Jen wrote: >> dear all, >> >> I am trying to install gettext and having this error. current I am not >> able to ssh into server because gettext is remove. >> >> test-lock.o: In function `test_lock': >> test-lock.o(.text+0x1e5): undefined reference to `pthread_create' >> test-lock.o(.text+0x20e): undefined reference to `pthread_create' >> test-lock.o(.text+0x23f): undefined reference to `pthread_join' >> test-lock.o(.text+0x269): undefined reference to `pthread_join' >> test-lock.o: In function `test_rwlock': >> test-lock.o(.text+0x3ea): undefined reference to `pthread_create' >> test-lock.o(.text+0x41e): undefined reference to `pthread_create' >> test-lock.o(.text+0x44f): undefined reference to `pthread_join' >> test-lock.o(.text+0x483): undefined reference to `pthread_join' >> test-lock.o: In function `test_recursive_lock': >> test-lock.o(.text+0x61d): undefined reference to `pthread_create' >> test-lock.o(.text+0x646): undefined reference to `pthread_create' >> test-lock.o(.text+0x677): undefined reference to `pthread_join' >> test-lock.o(.text+0x6a1): undefined reference to `pthread_join' >> test-lock.o: In function `test_once': >> test-lock.o(.text+0x8d9): undefined reference to `pthread_create' >> test-lock.o(.text+0xa53): undefined reference to `pthread_join' > > are you running 4.x? Sorry that I didn't mention am running FBSD4.11 > > Regards. > Rong-En Fan > _______________________________________________ > 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 Thu Mar 22 10:05:39 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4614416A47C for ; Thu, 22 Mar 2007 10:05:39 +0000 (UTC) (envelope-from krassi@bulinfo.net) Received: from mx.bulinfo.net (mx.bulinfo.net [193.194.156.1]) by mx1.freebsd.org (Postfix) with ESMTP id A2E5A13C483 for ; Thu, 22 Mar 2007 10:05:38 +0000 (UTC) (envelope-from krassi@bulinfo.net) Received: from localhost (localhost [127.0.0.1]) by mx.bulinfo.net (Postfix) with ESMTP id 2796D3777B; Thu, 22 Mar 2007 11:45:20 +0200 (EET) Received: from mx.bulinfo.net ([127.0.0.1]) by localhost (mx.bulinfo.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 75644-02; Thu, 22 Mar 2007 11:45:15 +0200 (EET) Received: from [192.168.2.188] (pythia.bulinfo.net [212.72.195.5]) by mx.bulinfo.net (Postfix) with ESMTP id 0C6703777C; Thu, 22 Mar 2007 11:45:15 +0200 (EET) Message-ID: <46025027.80805@bulinfo.net> Date: Thu, 22 Mar 2007 11:45:11 +0200 From: Krassimir Slavchev User-Agent: Thunderbird 1.5 (X11/20060201) MIME-Version: 1.0 To: freebsd-arm@freebsd.org, freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at mx.bulinfo.net Cc: Subject: Problems installing perl on arm? 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, 22 Mar 2007 10:05:39 -0000 I am using CURRENT on arm and can't install perl 5.8.8 from ports. The port is compiled on arm. ===> Installing for perl-5.8.8 ===> Generating temporary packing list ===> Checking if lang/perl5.8 already installed make install.perl install.man STRIPFLAGS= DESTDIR="" AutoSplitting perl library LD_LIBRARY_PATH=/usr/ports/lang/perl5.8/work/perl-5.8.8 ./miniperl -Ilib -e 'use AutoSplit; autosplit_lib_modules(@ARGV)' lib/*.pm LD_LIBRARY_PATH=/usr/ports/lang/perl5.8/work/perl-5.8.8 ./miniperl -Ilib -e 'use AutoSplit; autosplit_lib_modules(@ARGV)' lib/*/*.pm make lib/re.pm `lib/re.pm' is up to date. Making DynaLoader (static_pic) LD_LIBRARY_PATH=/usr/ports/lang/perl5.8/work/perl-5.8.8 cc -o perl -Wl,-E -Wl,-R/usr/local/lib/perl5/5.8.8/mach/CORE perlmain.o lib/auto/DynaLoader/DynaLoader.a libperl.so `cat ext.libs` -lm -lcrypt -lutil Making utilities Making x2p stuff Making B (dynamic) Making ByteLoader (dynamic) Making Cwd (dynamic) Making DB_File (dynamic) Making Data::Dumper (dynamic) Making Devel::DProf (dynamic) Making Devel::PPPort (dynamic) Making Devel::Peek (dynamic) Making Digest::MD5 (dynamic) Making Encode (dynamic) Making Fcntl (dynamic) Making File::Glob (dynamic) Making Filter::Util::Call (dynamic) Making I18N::Langinfo (dynamic) Making IO (dynamic) Making IPC::SysV (dynamic) Making List::Util (dynamic) Making MIME::Base64 (dynamic) Making NDBM_File (dynamic) Making Opcode (dynamic) Making POSIX (dynamic) Making PerlIO::encoding (dynamic) Making PerlIO::scalar (dynamic) Making PerlIO::via (dynamic) Making SDBM_File (dynamic) Making Socket (dynamic) Making Storable (dynamic) Making Sys::Hostname (dynamic) Making Sys::Syslog (dynamic) Making Time::HiRes (dynamic) Making Unicode::Normalize (dynamic) Making XS::APItest (dynamic) Making XS::Typemap (dynamic) Making attrs (dynamic) Making re (dynamic) Making threads (dynamic) Making threads::shared (dynamic) Making Errno (nonxs) *** Error code 1 (ignored) Everything is up to date. Type 'make test' to run test suite. if [ -n "" ]; then cd utils; make compile; cd ../x2p; make compile; cd ../pod; make compile; else :; fi LD_LIBRARY_PATH=/usr/ports/lang/perl5.8/work/perl-5.8.8 ./perl installperl --destdir= Can't load 'lib/auto/File/Glob/Glob.so' for module File::Glob: Service unavailable at lib/XSLoader.pm line 70. at lib/File/Glob.pm line 96 Compilation failed in require at installperl line 132. BEGIN failed--compilation aborted at installperl line 132. *** Error code 255 Stop in /tmp/perl5.8/work/perl-5.8.8. *** Error code 1 Stop in /tmp/perl5.8/work/perl-5.8.8. *** Error code 1 Stop in /tmp/perl5.8. centipad# cd .. centipad# ls .ICE-unix .XIM-unix file.dat .X11-unix .font-unix perl5.8 centipad# rm -r perl5.8 centipad# cd /usr/ports/lang/perl5.8/ centipad# ls Makefile distinfo pkg-descr pkg-plist Makefile.man files pkg-message work centipad# make package ===> Installing for perl-5.8.8 ===> Generating temporary packing list ===> Checking if lang/perl5.8 already installed make install.perl install.man STRIPFLAGS= DESTDIR="" AutoSplitting perl library LD_LIBRARY_PATH=/usr/ports/lang/perl5.8/work/perl-5.8.8 ./miniperl -Ilib -e 'use AutoSplit; autosplit_lib_modules(@ARGV)' lib/*.pm LD_LIBRARY_PATH=/usr/ports/lang/perl5.8/work/perl-5.8.8 ./miniperl -Ilib -e 'use AutoSplit; autosplit_lib_modules(@ARGV)' lib/*/*.pm make lib/re.pm `lib/re.pm' is up to date. Making DynaLoader (static_pic) LD_LIBRARY_PATH=/usr/ports/lang/perl5.8/work/perl-5.8.8 cc -o perl -Wl,-E -Wl,-R/usr/local/lib/perl5/5.8.8/mach/CORE perlmain.o lib/auto/DynaLoader/DynaLoader.a libperl.so `cat ext.libs` -lm -lcrypt -lutil Making utilities Making x2p stuff Making B (dynamic) Making ByteLoader (dynamic) Making Cwd (dynamic) Making DB_File (dynamic) Making Data::Dumper (dynamic) Making Devel::DProf (dynamic) Making Devel::PPPort (dynamic) Making Devel::Peek (dynamic) Making Digest::MD5 (dynamic) Making Encode (dynamic) Making Fcntl (dynamic) Making File::Glob (dynamic) Making Filter::Util::Call (dynamic) Making I18N::Langinfo (dynamic) Making IO (dynamic) Making IPC::SysV (dynamic) Making List::Util (dynamic) Making MIME::Base64 (dynamic) Making NDBM_File (dynamic) Making Opcode (dynamic) Making POSIX (dynamic) Making PerlIO::encoding (dynamic) Making PerlIO::scalar (dynamic) Making PerlIO::via (dynamic) Making SDBM_File (dynamic) Making Socket (dynamic) Making Storable (dynamic) Making Sys::Hostname (dynamic) Making Sys::Syslog (dynamic) Making Time::HiRes (dynamic) Making Unicode::Normalize (dynamic) Making XS::APItest (dynamic) Making XS::Typemap (dynamic) Making attrs (dynamic) Making re (dynamic) Making threads (dynamic) Making threads::shared (dynamic) Making Errno (nonxs) *** Error code 1 (ignored) Everything is up to date. Type 'make test' to run test suite. if [ -n "" ]; then cd utils; make compile; cd ../x2p; make compile; cd ../pod; make compile; else :; fi LD_LIBRARY_PATH=/usr/ports/lang/perl5.8/work/perl-5.8.8 ./perl installperl --destdir= Can't load 'lib/auto/File/Glob/Glob.so' for module File::Glob: Service unavailable at lib/XSLoader.pm line 70. at lib/File/Glob.pm line 96 Compilation failed in require at installperl line 132. BEGIN failed--compilation aborted at installperl line 132. *** Error code 255 Stop in /usr/ports/lang/perl5.8/work/perl-5.8.8. *** Error code 1 Stop in /usr/ports/lang/perl5.8/work/perl-5.8.8. *** Error code 1 Stop in /usr/ports/lang/perl5.8. From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 10:50:49 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A760116A484; Thu, 22 Mar 2007 10:50:49 +0000 (UTC) (envelope-from krassi@bulinfo.net) Received: from mx.bulinfo.net (mx.bulinfo.net [193.194.156.1]) by mx1.freebsd.org (Postfix) with ESMTP id 4FD6E13C45E; Thu, 22 Mar 2007 10:50:49 +0000 (UTC) (envelope-from krassi@bulinfo.net) Received: from localhost (localhost [127.0.0.1]) by mx.bulinfo.net (Postfix) with ESMTP id 3510237885; Thu, 22 Mar 2007 12:50:48 +0200 (EET) Received: from mx.bulinfo.net ([127.0.0.1]) by localhost (mx.bulinfo.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 80723-05; Thu, 22 Mar 2007 12:50:43 +0200 (EET) Received: from [192.168.2.188] (pythia.bulinfo.net [212.72.195.5]) by mx.bulinfo.net (Postfix) with ESMTP id 16C1837883; Thu, 22 Mar 2007 12:50:43 +0200 (EET) Message-ID: <46025F82.4020403@bulinfo.net> Date: Thu, 22 Mar 2007 12:50:42 +0200 From: Krassimir Slavchev User-Agent: Thunderbird 1.5 (X11/20060201) MIME-Version: 1.0 To: Anton Berezin , freebsd-arm@freebsd.org, freebsd-ports@freebsd.org References: <46025027.80805@bulinfo.net> <20070322104505.GC16764@heechee.tobez.org> In-Reply-To: <20070322104505.GC16764@heechee.tobez.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: amavisd-new at mx.bulinfo.net Cc: Subject: Re: Problems installing perl on arm? 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, 22 Mar 2007 10:50:49 -0000 I jush fixed the problem. It wasn't in perl. I don't know why but I found wrong links in /usr/lib: libc.so -> /usr/obj/......./libc.so.7 ... Thanks for the reply Anton Berezin wrote: > On Thu, Mar 22, 2007 at 11:45:11AM +0200, Krassimir Slavchev wrote: > >> I am using CURRENT on arm and can't install perl 5.8.8 from ports. The >> port is compiled on arm. >> > > Can I get a temporary access to the box in question to debug the problem? > I do not have any freebsd-arm boxes available. > > Cheers, > \Anton. > From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 10:51:14 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6332116A55F for ; Thu, 22 Mar 2007 10:51:14 +0000 (UTC) (envelope-from grafan@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.freebsd.org (Postfix) with ESMTP id C66BC13C45B for ; Thu, 22 Mar 2007 10:51:13 +0000 (UTC) (envelope-from grafan@gmail.com) Received: by ug-out-1314.google.com with SMTP id 71so646429ugh for ; Thu, 22 Mar 2007 03:51:13 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=DHEiZV0M8rnaLmjM0DWIwwC6wat4pjdyX0W/LMJLx9JYkgVwKFku1GVIo28kPD/sn4E0aIy8oyRK5aPk5PXJm7IpH/wGQ98XKNlcK0uF8jWQ7ucv7nHdCFfxGafWF26cAPQL1NWpBsAfNs0YSJhiknHHw3RYan3yhamPEN4ieTY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=CwQgEngoENkcxj4KL7lSfO+jQ2Li/PDxtGtRuE7JeXSimrY6BP9VcePV+D5nMcI3LLU2o3elv8aYxsIHvZFdC9rVWkljaykKbGSYt19XOavGJdH6IbWHaeRu/9hwOrHQrewypJGJw1PRLbGsnNwY5IwMLumBsjnury+/qVESSu0= Received: by 10.114.110.1 with SMTP id i1mr548571wac.1174560672058; Thu, 22 Mar 2007 03:51:12 -0700 (PDT) Received: by 10.140.23.15 with HTTP; Thu, 22 Mar 2007 03:51:12 -0700 (PDT) Message-ID: <6eb82e0703220351t72cd4d3bi3570b0fcebea0afe@mail.gmail.com> Date: Thu, 22 Mar 2007 18:51:12 +0800 From: "Rong-en Fan" To: "Paul Ooi Cong Jen" In-Reply-To: <4602549F.6020405@takizo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20070321223536.GB9894@soaustin.net> <20070322001537.54687.qmail@web88111.mail.re2.yahoo.com> <20070322072556.GA28485@soaustin.net> <4602372A.6020903@takizo.com> <6eb82e0703220109v54a4ebe9u4a186d274fe890c6@mail.gmail.com> <4602549F.6020405@takizo.com> Cc: freebsd-port-list Subject: Re: gettext error 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, 22 Mar 2007 10:51:14 -0000 On 3/22/07, Paul Ooi Cong Jen wrote: > > > Rong-en Fan wrote: > > On 3/22/07, Paul Ooi Cong Jen wrote: > >> dear all, > >> > >> I am trying to install gettext and having this error. current I am not > >> able to ssh into server because gettext is remove. > >> > >> test-lock.o: In function `test_lock': > >> test-lock.o(.text+0x1e5): undefined reference to `pthread_create' > >> test-lock.o(.text+0x20e): undefined reference to `pthread_create' > >> test-lock.o(.text+0x23f): undefined reference to `pthread_join' > >> test-lock.o(.text+0x269): undefined reference to `pthread_join' > >> test-lock.o: In function `test_rwlock': > >> test-lock.o(.text+0x3ea): undefined reference to `pthread_create' > >> test-lock.o(.text+0x41e): undefined reference to `pthread_create' > >> test-lock.o(.text+0x44f): undefined reference to `pthread_join' > >> test-lock.o(.text+0x483): undefined reference to `pthread_join' > >> test-lock.o: In function `test_recursive_lock': > >> test-lock.o(.text+0x61d): undefined reference to `pthread_create' > >> test-lock.o(.text+0x646): undefined reference to `pthread_create' > >> test-lock.o(.text+0x677): undefined reference to `pthread_join' > >> test-lock.o(.text+0x6a1): undefined reference to `pthread_join' > >> test-lock.o: In function `test_once': > >> test-lock.o(.text+0x8d9): undefined reference to `pthread_create' > >> test-lock.o(.text+0xa53): undefined reference to `pthread_join' > > > > are you running 4.x? > > Sorry that I didn't mention am running FBSD4.11 Sorry but 4.x is not supported anymore. You may change -lpthread to -pthread in Makefiles. Regards, Rong-En Fan From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 11:39:47 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2573E16A4CB for ; Thu, 22 Mar 2007 11:39:47 +0000 (UTC) (envelope-from mailist@mailing.setech.cl) Received: from Info.bip.cl (info.bip.cl [200.73.10.172]) by mx1.freebsd.org (Postfix) with ESMTP id 7940B13C4D0 for ; Thu, 22 Mar 2007 11:39:45 +0000 (UTC) (envelope-from mailist@mailing.setech.cl) Received: from pc-ac47c23ca4b0 ([200.73.10.182]) by Info.bip.cl (8.13.1/8.13.1) with ESMTP id l2LIfkZq023946 for ; Wed, 21 Mar 2007 14:41:50 -0400 Message-ID: <4142312-22007342224326758@pc-ac47c23ca4b0> Errors-to: mailing@setch.cl From: "mailing@setech.cl" To: ports@FreeBSD.org Date: Wed, 21 Mar 2007 22:43:26 -0400 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_27518152657221691324326789" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: =?windows-1252?q?Consultanos_antes_de_tomar_t=FA_decisi=F3n?= X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "mailing@setech.cl" List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Mar 2007 11:39:47 -0000 This is a multi-part message in MIME format. ------=_NextPart_27518152657221691324326789 Content-type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable =20 ------=_NextPart_27518152657221691324326789-- From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 14:07:49 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8BD4116A403 for ; Thu, 22 Mar 2007 14:07:49 +0000 (UTC) (envelope-from paul@takizo.com) Received: from sps.aims.com.my (sps.aims.com.my [203.223.128.170]) by mx1.freebsd.org (Postfix) with ESMTP id 13CA413C45A for ; Thu, 22 Mar 2007 14:07:48 +0000 (UTC) (envelope-from paul@takizo.com) Received: from [192.168.20.64] (unknown [202.76.234.2]) by sps.aims.com.my (Spam Firewall) with ESMTP id 40823200009A; Thu, 22 Mar 2007 22:07:44 +0800 (MYT) Message-ID: <46028DA2.4040700@takizo.com> Date: Thu, 22 Mar 2007 22:07:30 +0800 From: Paul Ooi Cong Jen User-Agent: Thunderbird 1.5.0.10 (Macintosh/20070221) MIME-Version: 1.0 To: Rong-en Fan References: <20070321223536.GB9894@soaustin.net> <20070322001537.54687.qmail@web88111.mail.re2.yahoo.com> <20070322072556.GA28485@soaustin.net> <4602372A.6020903@takizo.com> <6eb82e0703220109v54a4ebe9u4a186d274fe890c6@mail.gmail.com> <4602549F.6020405@takizo.com> <6eb82e0703220351t72cd4d3bi3570b0fcebea0afe@mail.gmail.com> In-Reply-To: <6eb82e0703220351t72cd4d3bi3570b0fcebea0afe@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-port-list Subject: Re: gettext error 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, 22 Mar 2007 14:07:49 -0000 Rong-en Fan wrote: > On 3/22/07, Paul Ooi Cong Jen wrote: >> >> >> Rong-en Fan wrote: >> > On 3/22/07, Paul Ooi Cong Jen wrote: >> >> dear all, >> >> >> >> I am trying to install gettext and having this error. current I am >> not >> >> able to ssh into server because gettext is remove. >> >> >> >> test-lock.o: In function `test_lock': >> >> test-lock.o(.text+0x1e5): undefined reference to `pthread_create' >> >> test-lock.o(.text+0x20e): undefined reference to `pthread_create' >> >> test-lock.o(.text+0x23f): undefined reference to `pthread_join' >> >> test-lock.o(.text+0x269): undefined reference to `pthread_join' >> >> test-lock.o: In function `test_rwlock': >> >> test-lock.o(.text+0x3ea): undefined reference to `pthread_create' >> >> test-lock.o(.text+0x41e): undefined reference to `pthread_create' >> >> test-lock.o(.text+0x44f): undefined reference to `pthread_join' >> >> test-lock.o(.text+0x483): undefined reference to `pthread_join' >> >> test-lock.o: In function `test_recursive_lock': >> >> test-lock.o(.text+0x61d): undefined reference to `pthread_create' >> >> test-lock.o(.text+0x646): undefined reference to `pthread_create' >> >> test-lock.o(.text+0x677): undefined reference to `pthread_join' >> >> test-lock.o(.text+0x6a1): undefined reference to `pthread_join' >> >> test-lock.o: In function `test_once': >> >> test-lock.o(.text+0x8d9): undefined reference to `pthread_create' >> >> test-lock.o(.text+0xa53): undefined reference to `pthread_join' >> > >> > are you running 4.x? >> >> Sorry that I didn't mention am running FBSD4.11 > > Sorry but 4.x is not supported anymore. You may change -lpthread to > -pthread > in Makefiles. Thanks, it works now. > > Regards, > Rong-En Fan > _______________________________________________ > 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 Thu Mar 22 16:37:03 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B1C5516A402 for ; Thu, 22 Mar 2007 16:37:03 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao102.cox.net (eastrmmtao102.cox.net [68.230.240.8]) by mx1.freebsd.org (Postfix) with ESMTP id 483C913C45D for ; Thu, 22 Mar 2007 16:37:03 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo01.cox.net ([68.1.16.119]) by eastrmmtao102.cox.net (InterMail vM.7.05.02.00 201-2174-114-20060621) with ESMTP id <20070322163701.HWFF2213.eastrmmtao102.cox.net@eastrmimpo01.cox.net>; Thu, 22 Mar 2007 12:37:01 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo01.cox.net with bizsmtp id dscz1W00n4iy4EG0000000; Thu, 22 Mar 2007 12:37:00 -0400 Date: Thu, 22 Mar 2007 11:38:59 -0500 To: "Anton Berezin" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <20070322083054.GA16764@heechee.tobez.org> Content-Transfer-Encoding: Quoted-Printable Message-ID: In-Reply-To: <20070322083054.GA16764@heechee.tobez.org> User-Agent: Opera Mail/9.10 (Linux) Cc: ports@freebsd.org Subject: Re: bad fluxbox 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: Thu, 22 Mar 2007 16:37:03 -0000 On Thu, 22 Mar 2007 03:30:54 -0500, Anton Berezin wrot= e: > After the recent update: > > =3D=3D=3D> Patching for fluxbox-1.0rc3 > =3D=3D=3D> Applying FreeBSD patches for fluxbox-1.0rc3 > Ignoring previously applied (or reversed) patch. > 1 out of 1 hunks ignored--saving rejects to src/FbTk/FbString.cc.rej > =3D> Patch patch-fix_iconvmenu_crash failed to apply cleanly. > *** Error code 1 > > Stop in /usr/ports/x11-wm/fluxbox. My fault, I forgot to run 'cvs rm' to remove this patch. You can remove = = fluxbox/files/patch-fix_iconvmenu_crash by manual if you can't wait for = = the CVSup mirror to catch up. Cheers, Mezz -- = 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 Thu Mar 22 17:35:14 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0A10716A409 for ; Thu, 22 Mar 2007 17:35:14 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.200.81]) by mx1.freebsd.org (Postfix) with ESMTP id B6E3D13C480 for ; Thu, 22 Mar 2007 17:35:13 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from icarus.home.lan (c-71-198-0-135.hsd1.ca.comcast.net[71.198.0.135]) by comcast.net (sccrmhc11) with ESMTP id <2007032217351201100agpffe>; Thu, 22 Mar 2007 17:35:12 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id BBBF41FA03D; Thu, 22 Mar 2007 10:35:11 -0700 (PDT) Date: Thu, 22 Mar 2007 10:35:11 -0700 From: Jeremy Chadwick To: Paul Ooi Cong Jen Message-ID: <20070322173511.GA21923@icarus.home.lan> Mail-Followup-To: Paul Ooi Cong Jen , Rong-en Fan , freebsd-port-list References: <20070321223536.GB9894@soaustin.net> <20070322001537.54687.qmail@web88111.mail.re2.yahoo.com> <20070322072556.GA28485@soaustin.net> <4602372A.6020903@takizo.com> <6eb82e0703220109v54a4ebe9u4a186d274fe890c6@mail.gmail.com> <4602549F.6020405@takizo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4602549F.6020405@takizo.com> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: freebsd-port-list , Rong-en Fan Subject: Re: gettext error 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, 22 Mar 2007 17:35:14 -0000 On Thu, Mar 22, 2007 at 06:04:15PM +0800, Paul Ooi Cong Jen wrote: > Sorry that I didn't mention am running FBSD4.11 You should update your ports supfile to use tag=RELENG_4_EOL (instead of tag=.), and work on upgrading those 4.11 boxes to 6.2. -- | 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 Thu Mar 22 17:49:41 2007 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AC5016A408; Thu, 22 Mar 2007 17:49:41 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (dsl231-043-140.sea1.dsl.speakeasy.net [216.231.43.140]) by mx1.freebsd.org (Postfix) with ESMTP id 0A70E13C4BA; Thu, 22 Mar 2007 17:49:36 +0000 (UTC) (envelope-from kline@tao.thought.org) Received: from tao.thought.org (localhost [127.0.0.1]) by tao.thought.org (8.13.8/8.13.1) with ESMTP id l2MHnNTG065444; Thu, 22 Mar 2007 09:49:32 -0800 (PST) (envelope-from kline@tao.thought.org) Received: (from kline@localhost) by tao.thought.org (8.13.8/8.13.1/Submit) id l2MHnA6V065439; Thu, 22 Mar 2007 09:49:10 -0800 (PST) (envelope-from kline) Date: Thu, 22 Mar 2007 09:48:57 -0800 From: Gary Kline To: Pav Lucistnik Message-ID: <20070322174857.GA65365@thought.org> References: <4600AC05.4000004@u.washington.edu> <20070321050535.GB68447@thought.org> <1174518702.50979.2.camel@ikaros.oook.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <1174518702.50979.2.camel@ikaros.oook.cz> User-Agent: Mutt/1.4.2.2i X-Organization: Thought Unlimited. Public service Unix since 1986. X-Of_Interest: Observing twenty years of service to the Unix community Cc: Gary Kline , Garrett Cooper , freebsd-ports@FreeBSD.org Subject: Re: A review of different port management tools : analysis for Google SoC project 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, 22 Mar 2007 17:49:41 -0000 On Thu, Mar 22, 2007 at 12:11:42AM +0100, Pav Lucistnik wrote: > Gary Kline pí?e v út 20. 03. 2007 v 21:05 -0800: > > > How about this idea for integrating into a new ports/package > > project: say for people with a fast I686 who wanted -O3 and -pipe > > and wanted his packages built remotely rather than his own > > computer. Would be be posssible to build a package, custom > > (according to one's /etc/make.conf) on FreeBSD's servers, then > > fetch the *tgz package back? Kernels, and worlds would reside > > on the remote server for only a few hours before being > > automatically cleansed. This would be super for everything from > > a i486-166MHz with 32Megs that was serving mail *only*, a slow > > to moderate i686, or even an AMD 2800. Building locally is > > sometimes the only way. But if users have slower servers and > > there are no current packages (i386), why not let the builds be > > queued? > > Just so you know, existing "FreeBSD's servers", as you put it, are > Pentium III blades clocked at 700 MHz. > > And we tend to keep them rather busy. 700MHz is my faster FBSD box; I've begun tuning all my boxen, but this one is still slow after 6 years. Maybe it's time to upgrade some of the P3's to P4's... ?? Ask the user community for donations, hmm? On -questions recently someone said that he didn't think it was a matter of compute power, but manpower. I think both are essential. > > -- > Pav Lucistnik > > > > Why do we need a film of "Lord of the Rings" when we have the book? > Because watching a cg enhanced Legolas fire a flaming arrow > into the heart of a warg is cool? > - asdf@asdf.com in rec.games.roguelike.angband -- Gary Kline kline@thought.org www.thought.org Public Service Unix From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 18:10:56 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3845216A401 for ; Thu, 22 Mar 2007 18:10:56 +0000 (UTC) (envelope-from repartodecorreo@gmail.com) Received: from webserver.accesocero.es (217-116-4-115.redes.acens.net [217.116.4.115]) by mx1.freebsd.org (Postfix) with ESMTP id F32A713C45B for ; Thu, 22 Mar 2007 18:10:55 +0000 (UTC) (envelope-from repartodecorreo@gmail.com) Received: from gestion.canaltour.com (217-116-4-114.redes.acens.net [217.116.4.114]) by webserver.accesocero.es (Postfix) with ESMTP id E8E55B8D138 for ; Thu, 22 Mar 2007 18:53:54 +0100 (CET) Date: Thu, 22 Mar 2007 18:49:01 +0100 To: "ports@FreeBSD.orgr" From: "Clubrural.com" Message-ID: X-Priority: 3 X-Mailer: PHPMailer [version 1.73] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="iso-8859-1" Cc: Subject: interchange of links 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, 22 Mar 2007 18:10:56 -0000 We have created a new Directory of Tourism to make interchange of links, if click interests haaz down to you http://www.clubrural.com/links/addurl.php Hemos creado un nuevo Directorio de Turismo si deseas puedes intercambiar links haciendo click mas abajo http://www.clubrural.com/links/addurl.php From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 19:23:53 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2FBBD16A403 for ; Thu, 22 Mar 2007 19:23:53 +0000 (UTC) (envelope-from phi@evilphi.com) Received: from mail.twinthornes.com (mail.twinthornes.com [65.75.198.147]) by mx1.freebsd.org (Postfix) with ESMTP id 0D04513C480 for ; Thu, 22 Mar 2007 19:23:52 +0000 (UTC) (envelope-from phi@evilphi.com) Received: from [10.9.70.4] (pool-72-90-124-58.ptldor.fios.verizon.net [72.90.124.58]) by mail.twinthornes.com (Postfix) with ESMTP id 5B01D272; Thu, 22 Mar 2007 11:56:52 -0700 (PDT) Message-ID: <4602D169.1010506@evilphi.com> Date: Thu, 22 Mar 2007 11:56:41 -0700 From: Darren Pilgrim User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: KIMURA Yasuhiro References: <20070321183400.QPSY2045.dukecmmtao03.coxmail.com@dukecmmtao03> <20070322.051335.15241084.yasu@utahime.org> In-Reply-To: <20070322.051335.15241084.yasu@utahime.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: mail/maildrop marked as 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: Thu, 22 Mar 2007 19:23:53 -0000 KIMURA Yasuhiro wrote: > From: Vizion > Subject: mail/maildrop marked as broken > Date: Wed, 21 Mar 2007 11:33:59 -0700 > >> As title for information >> New today: >> portupgrade -a reports: >> >> FAM system mismatch: gamin is imstalled and desired FAM system is fam > > AFAIK Courier products work only with fam and not with gamin. But I > not certain this is still the case now. Does anyone know if latest > gamin is compatible with Courier products? As of Monday (March 19), courier-imap crashes when compiled with gamin. -- Darren Pilgrim From owner-freebsd-ports@FreeBSD.ORG Thu Mar 22 22:25:59 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4C5D216A404 for ; Thu, 22 Mar 2007 22:25:59 +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 DC5C813C4BD for ; Thu, 22 Mar 2007 22:25:58 +0000 (UTC) (envelope-from danny@ricin.com) Received: from [213.51.146.188] (port=52527 helo=smtp3.tilbu1.nb.home.nl) by smtpq2.tilbu1.nb.home.nl with esmtp (Exim 4.30) id 1HUVjJ-0001k3-Qw for freebsd-ports@freebsd.org; Thu, 22 Mar 2007 23:25:57 +0100 Received: from cp464173-a.dbsch1.nb.home.nl ([84.27.214.242]:54414 helo=desktop.homenet) by smtp3.tilbu1.nb.home.nl with esmtp (Exim 4.30) id 1HUVjG-0006pa-Ip for freebsd-ports@freebsd.org; Thu, 22 Mar 2007 23:25:54 +0100 From: Danny Pansters To: freebsd-ports@freebsd.org Date: Thu, 22 Mar 2007 23:25:42 +0100 User-Agent: KMail/1.9.6 References: <1174330341.26866.32.camel@shumai.marcuscom.com> <46001864.8050005@FreeBSD.org> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200703222325.43113.danny@ricin.com> X-AtHome-MailScanner-Information: Please contact support@home.nl for more information X-AtHome-MailScanner: Found to be clean Subject: Re: Problems running pkgdb -fF 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, 22 Mar 2007 22:25:59 -0000 There should be single (or escaped double) quotes inside the "" for the sed argument. Seems to be caused by the combination of [ ] with \t. Observe: desktop# cat /COPYRIGHT | sed s/[ \t]// sed: 1: "s/[": unbalanced brackets ([]) But cat /COPYRIGHT | sed 's/[ \t]//' is OK. So "s|^\\(@comment[ \t][ \t]*ORIGIN:\\).*$|\\1#{origin}|" should be replaced by "'s|^\\(@comment[ \t][ \t]*ORIGIN:\\).*$|\\1#{origin}|'" Not tested as I'm not in sync with latest portstree and I don't know Ruby. Dan On Tuesday 20 March 2007 19:06:06 Andrew Pantyukhin wrote: > On 3/20/07, Sergey Matveychuk wrote: > > Andrew Pantyukhin wrote: > > > On 3/19/07, Joe Marcus Clarke wrote: > > >> Running pkgdb -Ff today gives me the following error: > > > > > > Just a "me too" here, and this problem appears during > > > portupgrade runs, too. > > > > Try the patch please. I could not find a box where I can reproduce the > > error, so it's not tested. Just a obvious quick fix. > > > > Index: pkgtools.rb > > =================================================================== > > RCS file: /cvsroot/portupgrade/pkgtools/lib/pkgtools.rb,v > > retrieving revision 1.16.2.4 > > diff -u -r1.16.2.4 pkgtools.rb > > --- pkgtools.rb 27 Feb 2007 11:34:59 -0000 1.16.2.4 > > +++ pkgtools.rb 20 Mar 2007 17:18:35 -0000 > > @@ -790,8 +790,7 @@ > > contents_file = $pkgdb.pkg_contents(pkgname) > > > > if grep_q_file(/^@comment[ \t]+ORIGIN:/, contents_file) > > - command = shelljoin('sed', > > - "s|^\\(@comment[ \t][ > > \t]*ORIGIN:\\).*$|\\1#{origin}|") > > + command = "sed s|^\\(@comment[ \t][ \t]*ORIGIN:\\).*$|\\1#{origin}|" > > else > > command = "(cat; echo '@comment ORIGIN:#{origin}')" > > end > > Stale origin: 'x11-wm/fluxbox-devel': perhaps moved or obsoleted. > -> The port 'x11-wm/fluxbox-devel' was moved to 'x11-wm/fluxbox' on > 2007-03-19 because: > "Merged into x11-wm/fluxbox" > 1x11-wm/fluxbox: not found > ^(@comment[: not found > sed: 1: "s": substitute pattern can not be delimited by newline or > backslash Fixed. (-> x11-wm/fluxbox) > > At least the error is shorter now. I can make my > /var/db/pkg available if you want. > _______________________________________________ > 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 Fri Mar 23 00:34:23 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C82E316A402 for ; Fri, 23 Mar 2007 00:34:23 +0000 (UTC) (envelope-from indigo23@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.231]) by mx1.freebsd.org (Postfix) with ESMTP id 8A97513C487 for ; Fri, 23 Mar 2007 00:34:23 +0000 (UTC) (envelope-from indigo23@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so945671wxc for ; Thu, 22 Mar 2007 17:34:21 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=XejuiEXByYRwqO8lu/2+rdccpoS/VO8eQnEl/iz0Cxd1+pyVIsxbxBXN/sw9e6xMnQNQTwbVi0hxx/1R6/YX0J5nfZ/n54pwD66w5Aq9mfCVv+tixg1/z17JrOBUJ7fe5GrxDWnQpRD6+0wg2X3A/0lxmID2yje8h+OJCK7kInw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Hug7fRoi5YvJyDeSO30tonUIlb8CArDiCbL8yxifqcOn24JxdpjGTGv0cBNNL3FRqBx+n+L90wuPGSy5eFR2IdMMh55YqzvpctCb3VAz8Iemx1TCciK3FKtyu9JZdSDOTWzrUzbvseJurTUQgvLDazUeaSbi0mOJxNlyoYFhSgc= Received: by 10.114.155.1 with SMTP id c1mr848579wae.1174610060768; Thu, 22 Mar 2007 17:34:20 -0700 (PDT) Received: by 10.115.46.15 with HTTP; Thu, 22 Mar 2007 17:34:20 -0700 (PDT) Message-ID: <6f50eac40703221734p7e652c02s3a899f4c580faf3d@mail.gmail.com> Date: Thu, 22 Mar 2007 20:34:20 -0400 From: "Indigo 23" To: freebsd-gnome@freebsd.org, freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Firefox/Evolution Packages 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, 23 Mar 2007 00:34:23 -0000 Is there any chance that Joe Marcus Clarke could post some updated packages for Firefox (2.0.0.3) and Evolution (after the update so that mail-notification compiles) here?: http://www.marcuscom.com/tb/packages/6-STABLE-FreeBSD/Latest/ Thanks. From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 02:20:03 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 21D6B16A403; Fri, 23 Mar 2007 02:20:03 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao101.cox.net (eastrmmtao101.cox.net [68.230.240.7]) by mx1.freebsd.org (Postfix) with ESMTP id 876F213C468; Fri, 23 Mar 2007 02:20:02 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao101.cox.net (InterMail vM.7.05.02.00 201-2174-114-20060621) with ESMTP id <20070323022001.GWAF11352.eastrmmtao101.cox.net@eastrmimpo02.cox.net>; Thu, 22 Mar 2007 22:20:01 -0400 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo02.cox.net with bizsmtp id e2L01W00Q4iy4EG0000000; Thu, 22 Mar 2007 22:20:01 -0400 Date: Thu, 22 Mar 2007 21:22:02 -0500 To: "Indigo 23" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <6f50eac40703202255s4f1e94d8w7bbf565cb9b0b702@mail.gmail.com> <6f50eac40703212054m38766697m4efc9355b95dde2c@mail.gmail.com> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <6f50eac40703212054m38766697m4efc9355b95dde2c@mail.gmail.com> User-Agent: Opera Mail/9.10 (Linux) Cc: freebsd-ports@freebsd.org, freebsd-gnome@freebsd.org Subject: Re: Eye of Gnome error after upgrading to 2.18 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, 23 Mar 2007 02:20:03 -0000 On Wed, 21 Mar 2007 22:54:31 -0500, Indigo 23 wrote: > On 3/21/07, Jeremy Messenger wrote: >> On Wed, 21 Mar 2007 00:55:24 -0500, Indigo 23 >> wrote: >> >> > After upgrading to Gnome 2.18 from 2.16 [in which I mostly used >> > packages from marcuscom], I receive the following error when trying to >> > open an image using Eye of Gnome 2.18 (eog-2.18.0.1): >> > >> > Couldn't load image 'gnome-failed.jpg'. >> > Unable to load image-loading module: >> > /usr/X11R6/lib/gtk-2.0/2.4.0/loaders/libpixbufloader-jpeg.so: Cannot >> > open "/usr/X11R6/lib/gtk-2.0/2.4.0/loaders/libpixbufloader-jpeg.so" >> > >> > and in the Terminal I get the following: >> > (eog:66783): Gtk-WARNING **: Unable to locate theme engine in >> > module_path: "murrine", >> > >> > I recompiled the murrine/murrina themes after upgrading (just in >> > case), and I am running 6.2. >> > >> > Anyone have any idea what's wrong and how it can be fixed? >> >> I am not sure, but it looks like you have not follow in >> /usr/ports/UPDATING (20061014) correct. >> >> Cheers, >> Mezz >> > > I did follow what was in there, but there is still some package > relying on that old path for some reason and I cannot figure out which > one it is. Is there a way to determine which port is causing the > problem (i.e. still looking for old gtk libraries)? For the time > being, I have a little workaround implemented, but I'd rather fix the > problem directly. Maybe the 'ldd -a /usr/local/bin/eog' might help you. If this problem hit on me, then I would remove /usr/local/lib/compat/pkg/* and do the rebuild everything that depend on gettext or pkg-config. Cheers, Mezz > Thanks. -- 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 Fri Mar 23 10:37:17 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 624EE16A401 for ; Fri, 23 Mar 2007 10:37:17 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id 047BD13C4B9 for ; Fri, 23 Mar 2007 10:37:16 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.60]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070323103715.UGHZ2045.dukecmmtao03.coxmail.com@dukecmmtao03> for ; Fri, 23 Mar 2007 06:37:15 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Fri, 23 Mar 2007 3:37:15 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070323103715.UGHZ2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: Subject: samba3 compile failure 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, 23 Mar 2007 10:37:17 -0000 Trying to compile samba... Is up with my kerberos? If so I do not know how to fix it :-( If not what?? Thanks in advance david Compiling lib/smbldap_util.c Compiling smbd/server.c Linking bin/smbd libsmb/clikrb5.o(.text+0x109c): In function `smb_krb5_get_keyinfo_from_ap_req': : undefined reference to `krb5_decode_ap_req' libsmb/clikrb5.o(.text+0x1423): In function `smb_krb5_principal_compare_any_realm': : undefined reference to `krb5_principal_compare_any_realm' libsmb/clikrb5.o(.text+0x1833): In function `smb_krb5_free_error': : undefined reference to `krb5_free_error_contents' libads/kerberos_keytab.o(.text+0x1b3): In function `smb_krb5_kt_add_entry': : undefined reference to `krb5_kt_compare' /usr/lib/libgssapi.so: undefined reference to `krb5_rd_cred2' /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_destroy' /usr/lib/libgssapi.so: undefined reference to `krb5_ret_address' /usr/lib/libgssapi.so: undefined reference to `krb5_ret_data' /usr/lib/libgssapi.so: undefined reference to `krb5_ret_keyblock' /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setremotesubkey' /usr/lib/libgssapi.so: undefined reference to `krb5_data_free' /usr/lib/libgssapi.so: undefined reference to `krb5_config_get_strings' /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setlocalsubkey' /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_generatelocalsubkey' /usr/lib/libgssapi.so: undefined reference to `krb5_sockaddr2address' /usr/lib/libgssapi.so: undefined reference to `krb5_cc_get_ops' /usr/lib/libgssapi.so: undefined reference to `krb5_get_default_principal' /usr/lib/libgssapi.so: undefined reference to `krb5_cc_copy_cache' /usr/lib/libasn1.so: undefined reference to `init_error_table' /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setkey' /usr/lib/libgssapi.so: undefined reference to `krb5_get_forwarded_creds' /usr/lib/libgssapi.so: undefined reference to `krb5_get_err_text' /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int32' /usr/lib/libgssapi.so: undefined reference to `krb5_h_addr2sockaddr' /usr/lib/libgssapi.so: undefined reference to `krb5_build_authenticator' /usr/lib/libgssapi.so: undefined reference to `krb5_build_ap_req' /usr/lib/libgssapi.so: undefined reference to `krb5_auth_getremoteseqnumber' /usr/lib/libgssapi.so: undefined reference to `krb5_data_zero' /usr/lib/libgssapi.so: undefined reference to `krb5_storage_free' /usr/lib/libgssapi.so: undefined reference to `krb5_config_free_strings' /usr/lib/libgssapi.so: undefined reference to `krb5_create_checksum' /usr/lib/libgssapi.so: undefined reference to `krb5_generate_random_block' /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_init' /usr/lib/libgssapi.so: undefined reference to `krb5_enctype_to_keytype' /usr/lib/libgssapi.so: undefined reference to `krb5_free_creds_contents' /usr/lib/libgssapi.so: undefined reference to `krb5_storage_from_mem' /usr/lib/libgssapi.so: undefined reference to `krb5_store_address' /usr/lib/libgssapi.so: undefined reference to `krb5_decrypt_ivec' /usr/lib/libasn1.so: undefined reference to `initialize_error_table_r' /usr/lib/libgssapi.so: undefined reference to `krb5_store_int16' /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int16' /usr/lib/libgssapi.so: undefined reference to `krb5_get_error_string' /usr/lib/libgssapi.so: undefined reference to `krb5_principal_match' /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setlocalseqnumber' /usr/lib/libgssapi.so: undefined reference to `krb5_storage_to_data' /usr/lib/libgssapi.so: undefined reference to `krb5_store_int32' /usr/lib/libgssapi.so: undefined reference to `krb5_encrypt_ivec' /usr/lib/libgssapi.so: undefined reference to `krb5_storage_emem' /usr/lib/libgssapi.so: undefined reference to `krb5_store_data' /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setremoteseqnumber' /usr/lib/libgssapi.so: undefined reference to `krb5_principal_get_realm' /usr/lib/libgssapi.so: undefined reference to `krb5_set_error_string' /usr/lib/libgssapi.so: undefined reference to `krb5_make_principal' /usr/lib/libgssapi.so: undefined reference to `krb5_store_keyblock' *** Error code 1 Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. *** Error code 1 Stop in /usr/ports/net/samba3. [root@dns1 /usr/ports/net/samba3]# From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 10:45:28 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1434316A402 for ; Fri, 23 Mar 2007 10:45:28 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id A847E13C44B for ; Fri, 23 Mar 2007 10:45:27 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: (qmail invoked by alias); 23 Mar 2007 10:45:26 -0000 Received: from nat-wh-1.rz.uni-karlsruhe.de (EHLO [192.168.1.12]) [129.13.72.169] by mail.gmx.net (mp016) with SMTP; 23 Mar 2007 11:45:26 +0100 X-Authenticated: #5465401 X-Provags-ID: V01U2FsdGVkX19ioEkE3dZisGux1QyND6PKTpQnaiDt2gt7NeWxfx hfUNhKnA5ajnbn Message-ID: <4603AFF7.9090605@gmx.de> Date: Fri, 23 Mar 2007 11:46:15 +0100 From: "[LoN]Kamikaze" User-Agent: Thunderbird 1.5.0.10 (X11/20070314) MIME-Version: 1.0 To: freebsd-ports@freebsd.org X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Subject: www/firefox - freezes when opening the print dialogue 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, 23 Mar 2007 10:45:28 -0000 Since that last update firefox freezes on all of my systems when I try to open the print dialogue. Does anyone else have the same problem? From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 12:49:33 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D03B416A408 for ; Fri, 23 Mar 2007 12:49:33 +0000 (UTC) (envelope-from marko@freebsd.org) Received: from pih-relay06.plus.net (pih-relay06.plus.net [212.159.14.133]) by mx1.freebsd.org (Postfix) with ESMTP id 6FE8313C45E for ; Fri, 23 Mar 2007 12:49:33 +0000 (UTC) (envelope-from marko@freebsd.org) Received: from [80.229.231.20] (helo=[10.10.1.4]) by pih-relay06.plus.net with esmtp (Exim) id 1HUjD1-0005bl-LL for freebsd-ports@freebsd.org; Fri, 23 Mar 2007 12:49:31 +0000 Message-ID: <4603CCDA.8090606@freebsd.org> Date: Fri, 23 Mar 2007 12:49:30 +0000 From: Mark Ovens User-Agent: Thunderbird 1.5.0.10 (X11/20070312) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: multimedia/ffmpeg missing BUILD_DEPENDS? 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, 23 Mar 2007 12:49:33 -0000 Trying to build multimedia/ffmpeg (0.4.9.p1_7) fails because pod2man is not found. ffmpeg-0.4.9.p1_6 is already installed so this must be in the latest change. Looking at the Makefile it appears that pod2man is only required if the docs are built, but even trying to build with -DNOPORTDOCS still fails. Also, I can't find which port includes pod2man - one of the p5-* I would guess? Regards, Mark texi2html -monolithic -number faq.texi texi2html -monolithic -number ffserver-doc.texi texi2html -monolithic -number ffplay-doc.texi texi2html -monolithic -number hooks.texi ./texi2pod.pl ffmpeg-doc.texi ffmpeg.pod pod2man --section=1 --center=" " --release=" " ffmpeg.pod > ffmpeg.1 pod2man: not found gmake[1]: *** [ffmpeg.1] Error 127 rm ffmpeg.pod gmake[1]: Leaving directory `/usr/ports/multimedia/ffmpeg/work/ffmpeg-0.4.9-pre1/doc' gmake: *** [documentation] Error 2 *** Error code 2 Stop in /usr/ports/multimedia/ffmpeg. From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 13:03:11 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 616CB16A400 for ; Fri, 23 Mar 2007 13:03:11 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from relay-er5.mbrd.ru (relay-er5.mbrd.ru [195.128.66.4]) by mx1.freebsd.org (Postfix) with ESMTP id 0CC8313C4B8 for ; Fri, 23 Mar 2007 13:03:10 +0000 (UTC) (envelope-from sem@FreeBSD.org) Received: from msd.mbrd.ru ([172.16.33.193]) by relay-er5.mbrd.ru with esmtpa (Exim 4.x) id 1HUjQC-000IjD-7G; Fri, 23 Mar 2007 16:03:08 +0300 Message-ID: <4603D00B.3080406@FreeBSD.org> Date: Fri, 23 Mar 2007 16:03:07 +0300 From: Sergey Matveychuk User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Danny Pansters References: <1174330341.26866.32.camel@shumai.marcuscom.com> <46001864.8050005@FreeBSD.org> <200703222325.43113.danny@ricin.com> In-Reply-To: <200703222325.43113.danny@ricin.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Problems running pkgdb -fF 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, 23 Mar 2007 13:03:11 -0000 Danny Pansters wrote: > There should be single (or escaped double) quotes inside the "" for the sed > argument. Seems to be caused by the combination of [ ] with \t. Observe: > > desktop# cat /COPYRIGHT | sed s/[ \t]// > sed: 1: "s/[": unbalanced brackets ([]) > > But cat /COPYRIGHT | sed 's/[ \t]//' is OK. > So "s|^\\(@comment[ \t][ \t]*ORIGIN:\\).*$|\\1#{origin}|" should be replaced > by "'s|^\\(@comment[ \t][ \t]*ORIGIN:\\).*$|\\1#{origin}|'" > > Not tested as I'm not in sync with latest portstree and I don't know Ruby. No. Renew the ports tree and update portupgrade. I've removed a patch caused the problem. -- Dixi. Sem. From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 14:42:39 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9F05016A403 for ; Fri, 23 Mar 2007 14:42:39 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id 41F9013C4B0 for ; Fri, 23 Mar 2007 14:42:39 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.62]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070323144239.KVBQ2045.dukecmmtao03.coxmail.com@dukecmmtao03> for ; Fri, 23 Mar 2007 10:42:39 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Fri, 23 Mar 2007 7:42:38 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070323144239.KVBQ2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: Subject: Re: samba3 compile failure 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, 23 Mar 2007 14:42:39 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion > Sent: Friday, March 23, 2007 3:37 AM > To: ports@freebsd.org > Subject: samba3 compile failure > > Trying to compile samba... > Is up with my kerberos? > If so I do not know how to fix it :-( > If not what?? > Thanks in advance > david > > Compiling lib/smbldap_util.c > Compiling smbd/server.c > Linking bin/smbd > libsmb/clikrb5.o(.text+0x109c): In function > `smb_krb5_get_keyinfo_from_ap_req': > : undefined reference to `krb5_decode_ap_req' > libsmb/clikrb5.o(.text+0x1423): In function > `smb_krb5_principal_compare_any_realm': > : undefined reference to `krb5_principal_compare_any_realm' > libsmb/clikrb5.o(.text+0x1833): In function `smb_krb5_free_error': > : undefined reference to `krb5_free_error_contents' > libads/kerberos_keytab.o(.text+0x1b3): In function > `smb_krb5_kt_add_entry': > : undefined reference to `krb5_kt_compare' > /usr/lib/libgssapi.so: undefined reference to `krb5_rd_cred2' > /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_destroy' > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_address' > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_data' > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_keyblock' > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_con_setremotesubkey' > /usr/lib/libgssapi.so: undefined reference to `krb5_data_free' > /usr/lib/libgssapi.so: undefined reference to > `krb5_config_get_strings' > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_con_setlocalsubkey' > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_con_generatelocalsubkey' > /usr/lib/libgssapi.so: undefined reference to `krb5_sockaddr2address' > /usr/lib/libgssapi.so: undefined reference to `krb5_cc_get_ops' > /usr/lib/libgssapi.so: undefined reference to > `krb5_get_default_principal' > /usr/lib/libgssapi.so: undefined reference to `krb5_cc_copy_cache' > /usr/lib/libasn1.so: undefined reference to `init_error_table' > /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setkey' > /usr/lib/libgssapi.so: undefined reference to > `krb5_get_forwarded_creds' > /usr/lib/libgssapi.so: undefined reference to `krb5_get_err_text' > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int32' > /usr/lib/libgssapi.so: undefined reference to `krb5_h_addr2sockaddr' > /usr/lib/libgssapi.so: undefined reference to > `krb5_build_authenticator' > /usr/lib/libgssapi.so: undefined reference to `krb5_build_ap_req' > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_getremoteseqnumber' > /usr/lib/libgssapi.so: undefined reference to `krb5_data_zero' > /usr/lib/libgssapi.so: undefined reference to `krb5_storage_free' > /usr/lib/libgssapi.so: undefined reference to > `krb5_config_free_strings' > /usr/lib/libgssapi.so: undefined reference to `krb5_create_checksum' > /usr/lib/libgssapi.so: undefined reference to > `krb5_generate_random_block' > /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_init' > /usr/lib/libgssapi.so: undefined reference to > `krb5_enctype_to_keytype' > /usr/lib/libgssapi.so: undefined reference to > `krb5_free_creds_contents' > /usr/lib/libgssapi.so: undefined reference to `krb5_storage_from_mem' > /usr/lib/libgssapi.so: undefined reference to `krb5_store_address' > /usr/lib/libgssapi.so: undefined reference to `krb5_decrypt_ivec' > /usr/lib/libasn1.so: undefined reference to `initialize_error_table_r' > /usr/lib/libgssapi.so: undefined reference to `krb5_store_int16' > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int16' > /usr/lib/libgssapi.so: undefined reference to `krb5_get_error_string' > /usr/lib/libgssapi.so: undefined reference to `krb5_principal_match' > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_con_setlocalseqnumber' > /usr/lib/libgssapi.so: undefined reference to `krb5_storage_to_data' > /usr/lib/libgssapi.so: undefined reference to `krb5_store_int32' > /usr/lib/libgssapi.so: undefined reference to `krb5_encrypt_ivec' > /usr/lib/libgssapi.so: undefined reference to `krb5_storage_emem' > /usr/lib/libgssapi.so: undefined reference to `krb5_store_data' > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_con_setremoteseqnumber' > /usr/lib/libgssapi.so: undefined reference to > `krb5_principal_get_realm' > /usr/lib/libgssapi.so: undefined reference to `krb5_set_error_string' > /usr/lib/libgssapi.so: undefined reference to `krb5_make_principal' > /usr/lib/libgssapi.so: undefined reference to `krb5_store_keyblock' > *** Error code 1 > > Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. > *** Error code 1 > > Stop in /usr/ports/net/samba3. > [root@dns1 /usr/ports/net/samba3]# > Just though I should mention that this freebsd 6.1 system has krb5-1.6 installed. Is this the version of kerberos that is installed by default with 6_1? David From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 14:57:34 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5C51A16A40E for ; Fri, 23 Mar 2007 14:57:34 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout7.cac.washington.edu (mxout7.cac.washington.edu [140.142.32.178]) by mx1.freebsd.org (Postfix) with ESMTP id 3E07B13C4F5 for ; Fri, 23 Mar 2007 14:57:34 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.33.7] (may be forged)) by mxout7.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2NEvXXb025502 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 23 Mar 2007 07:57:33 -0700 X-Auth-Received: from [192.168.10.41] (c-67-187-172-183.hsd1.ca.comcast.net [67.187.172.183]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2NEvWfm001423 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Fri, 23 Mar 2007 07:57:33 -0700 Message-ID: <4603EAD6.2040602@u.washington.edu> Date: Fri, 23 Mar 2007 07:57:26 -0700 From: Garrett Cooper User-Agent: Thunderbird 1.5.0.10 (X11/20070316) MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <20070323144239.KVBQ2045.dukecmmtao03.coxmail.com@dukecmmtao03> In-Reply-To: <20070323144239.KVBQ2045.dukecmmtao03.coxmail.com@dukecmmtao03> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-PMX-Version: 5.3.0.289146, Antispam-Engine: 2.5.0.283055, Antispam-Data: 2007.3.23.74933 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='__CT 0, __CTE 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0, __USER_AGENT 0' Subject: Re: samba3 compile failure 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, 23 Mar 2007 14:57:34 -0000 Vizion wrote: > > >> -----Original Message----- >> From: owner-freebsd-ports@freebsd.org >> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion >> Sent: Friday, March 23, 2007 3:37 AM >> To: ports@freebsd.org >> Subject: samba3 compile failure >> >> Trying to compile samba... >> Is up with my kerberos? >> If so I do not know how to fix it :-( >> If not what?? >> Thanks in advance >> david >> >> Compiling lib/smbldap_util.c >> Compiling smbd/server.c >> Linking bin/smbd >> libsmb/clikrb5.o(.text+0x109c): In function >> `smb_krb5_get_keyinfo_from_ap_req': >> : undefined reference to `krb5_decode_ap_req' >> libsmb/clikrb5.o(.text+0x1423): In function >> `smb_krb5_principal_compare_any_realm': >> : undefined reference to `krb5_principal_compare_any_realm' >> libsmb/clikrb5.o(.text+0x1833): In function `smb_krb5_free_error': >> : undefined reference to `krb5_free_error_contents' >> libads/kerberos_keytab.o(.text+0x1b3): In function >> `smb_krb5_kt_add_entry': >> : undefined reference to `krb5_kt_compare' >> /usr/lib/libgssapi.so: undefined reference to `krb5_rd_cred2' >> /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_destroy' >> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_address' >> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_data' >> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_keyblock' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_auth_con_setremotesubkey' >> /usr/lib/libgssapi.so: undefined reference to `krb5_data_free' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_config_get_strings' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_auth_con_setlocalsubkey' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_auth_con_generatelocalsubkey' >> /usr/lib/libgssapi.so: undefined reference to `krb5_sockaddr2address' >> /usr/lib/libgssapi.so: undefined reference to `krb5_cc_get_ops' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_get_default_principal' >> /usr/lib/libgssapi.so: undefined reference to `krb5_cc_copy_cache' >> /usr/lib/libasn1.so: undefined reference to `init_error_table' >> /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setkey' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_get_forwarded_creds' >> /usr/lib/libgssapi.so: undefined reference to `krb5_get_err_text' >> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int32' >> /usr/lib/libgssapi.so: undefined reference to `krb5_h_addr2sockaddr' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_build_authenticator' >> /usr/lib/libgssapi.so: undefined reference to `krb5_build_ap_req' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_auth_getremoteseqnumber' >> /usr/lib/libgssapi.so: undefined reference to `krb5_data_zero' >> /usr/lib/libgssapi.so: undefined reference to `krb5_storage_free' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_config_free_strings' >> /usr/lib/libgssapi.so: undefined reference to `krb5_create_checksum' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_generate_random_block' >> /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_init' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_enctype_to_keytype' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_free_creds_contents' >> /usr/lib/libgssapi.so: undefined reference to `krb5_storage_from_mem' >> /usr/lib/libgssapi.so: undefined reference to `krb5_store_address' >> /usr/lib/libgssapi.so: undefined reference to `krb5_decrypt_ivec' >> /usr/lib/libasn1.so: undefined reference to `initialize_error_table_r' >> /usr/lib/libgssapi.so: undefined reference to `krb5_store_int16' >> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int16' >> /usr/lib/libgssapi.so: undefined reference to `krb5_get_error_string' >> /usr/lib/libgssapi.so: undefined reference to `krb5_principal_match' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_auth_con_setlocalseqnumber' >> /usr/lib/libgssapi.so: undefined reference to `krb5_storage_to_data' >> /usr/lib/libgssapi.so: undefined reference to `krb5_store_int32' >> /usr/lib/libgssapi.so: undefined reference to `krb5_encrypt_ivec' >> /usr/lib/libgssapi.so: undefined reference to `krb5_storage_emem' >> /usr/lib/libgssapi.so: undefined reference to `krb5_store_data' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_auth_con_setremoteseqnumber' >> /usr/lib/libgssapi.so: undefined reference to >> `krb5_principal_get_realm' >> /usr/lib/libgssapi.so: undefined reference to `krb5_set_error_string' >> /usr/lib/libgssapi.so: undefined reference to `krb5_make_principal' >> /usr/lib/libgssapi.so: undefined reference to `krb5_store_keyblock' >> *** Error code 1 >> >> Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. >> *** Error code 1 >> >> Stop in /usr/ports/net/samba3. >> [root@dns1 /usr/ports/net/samba3]# >> > Just though I should mention that this freebsd 6.1 system has krb5-1.6 installed. Is this the version of kerberos that is installed by default with 6_1? > > David Survey says? [gcooper@sprsd ~]$ grep KERBEROS /etc/make.conf NO_KERBEROS=yes -Garrett From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 15:01:52 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 58F0316A404 for ; Fri, 23 Mar 2007 15:01:52 +0000 (UTC) (envelope-from alexandre.brooks@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.185]) by mx1.freebsd.org (Postfix) with ESMTP id E5F1313C4E9 for ; Fri, 23 Mar 2007 15:01:51 +0000 (UTC) (envelope-from alexandre.brooks@gmail.com) Received: by nf-out-0910.google.com with SMTP id k27so1886169nfc for ; Fri, 23 Mar 2007 08:01:51 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=qjsx6MqgVDqISwW6+NQe92NEsRWQe7C7GiP6grNR4GQrjk0FOUAruxi0Ng1IU9AOsRJ74q/ZdpiAbHv+Dm2hdiwdFnhc2BYurEm1xltCoEZTqcyUdUn85WnFQgOrgtL4AXmbVoWK0WtXeycMyTAPiPPKixbJ3MP8pMf1KT58o74= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=VSBqmF2BGyW2WZwehiG82D9zNpOSuLpV380Os8e2OkdHgQnZLEItybilKb7UJAXEMUJAUM3284yJhcD9tVSer1jziL5B9f8usgIzulH0abeRR/I7j9l9OQZJ92wqTCNopFAYzlrqe4/rgk5XeS/TqZKZWYt7gsi2IDT52YGUnkI= Received: by 10.82.148.7 with SMTP id v7mr6719361bud.1174660353894; Fri, 23 Mar 2007 07:32:33 -0700 (PDT) Received: by 10.82.136.19 with HTTP; Fri, 23 Mar 2007 07:32:33 -0700 (PDT) Message-ID: Date: Fri, 23 Mar 2007 15:32:33 +0100 From: "Alexandre Brooks" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: [www/p5-libapreq2] 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: Fri, 23 Mar 2007 15:01:52 -0000 Hi, I'm currently trying to install www/rt36 port, with apache22 and mod_perl2, but this requires me to build the perl5 interface to libapreq2 (www/p5-libapreq2). Only problem, it is broken. Any idea as to when it will be back, or if it has been totally abandonned ? Thanks. -- Alexandre Brooks From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 15:14:48 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6AAFF16A400 for ; Fri, 23 Mar 2007 15:14:48 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id 0488D13C4BE for ; Fri, 23 Mar 2007 15:14:47 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.62]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070323151446.OGKY2045.dukecmmtao03.coxmail.com@dukecmmtao03>; Fri, 23 Mar 2007 11:14:46 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Fri, 23 Mar 2007 8:14:47 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070323151446.OGKY2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: youshi10@u.washington.edu Subject: Re: samba3 compile failure 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, 23 Mar 2007 15:14:48 -0000 Vizion wrote: > I am trying to compile samba... > > Is the cause something up with my kerberos installation (see errors below)? > If so I do not know how to fix it :-( > > If not what and how can I fix it?? > > Is any more information needed to help identify the cause of the compile failure? > > Thanks in advance for any help you can give > david > -------------------------------------------------- > Compiling lib/smbldap_util.c > Compiling smbd/server.c > Linking bin/smbd > libsmb/clikrb5.o(.text+0x109c): In function > `smb_krb5_get_keyinfo_from_ap_req': > : undefined reference to `krb5_decode_ap_req' > libsmb/clikrb5.o(.text+0x1423): In function > `smb_krb5_principal_compare_any_realm': > : undefined reference to `krb5_principal_compare_any_realm' > libsmb/clikrb5.o(.text+0x1833): In function `smb_krb5_free_error': > : undefined reference to `krb5_free_error_contents' > libads/kerberos_keytab.o(.text+0x1b3): In function `smb_krb5_kt_add_entry': > : undefined reference to `krb5_kt_compare' > /usr/lib/libgssapi.so: undefined reference to `krb5_rd_cred2' > /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_destroy' > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_address' > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_data' > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_keyblock' > /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setremotesubkey' > /usr/lib/libgssapi.so: undefined reference to `krb5_data_free' > /usr/lib/libgssapi.so: undefined reference to `krb5_config_get_strings' > /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setlocalsubkey' > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_con_generatelocalsubkey' > /usr/lib/libgssapi.so: undefined reference to `krb5_sockaddr2address' > /usr/lib/libgssapi.so: undefined reference to `krb5_cc_get_ops' > /usr/lib/libgssapi.so: undefined reference to `krb5_get_default_principal' > /usr/lib/libgssapi.so: undefined reference to `krb5_cc_copy_cache' > /usr/lib/libasn1.so: undefined reference to `init_error_table' > /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setkey' > /usr/lib/libgssapi.so: undefined reference to `krb5_get_forwarded_creds' > /usr/lib/libgssapi.so: undefined reference to `krb5_get_err_text' > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int32' > /usr/lib/libgssapi.so: undefined reference to `krb5_h_addr2sockaddr' > /usr/lib/libgssapi.so: undefined reference to `krb5_build_authenticator' > /usr/lib/libgssapi.so: undefined reference to `krb5_build_ap_req' > /usr/lib/libgssapi.so: undefined reference to `krb5_auth_getremoteseqnumber' > /usr/lib/libgssapi.so: undefined reference to `krb5_data_zero' > /usr/lib/libgssapi.so: undefined reference to `krb5_storage_free' > /usr/lib/libgssapi.so: undefined reference to `krb5_config_free_strings' > /usr/lib/libgssapi.so: undefined reference to `krb5_create_checksum' > /usr/lib/libgssapi.so: undefined reference to `krb5_generate_random_block' > /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_init' > /usr/lib/libgssapi.so: undefined reference to `krb5_enctype_to_keytype' > /usr/lib/libgssapi.so: undefined reference to `krb5_free_creds_contents' > /usr/lib/libgssapi.so: undefined reference to `krb5_storage_from_mem' > /usr/lib/libgssapi.so: undefined reference to `krb5_store_address' > /usr/lib/libgssapi.so: undefined reference to `krb5_decrypt_ivec' > /usr/lib/libasn1.so: undefined reference to `initialize_error_table_r' > /usr/lib/libgssapi.so: undefined reference to `krb5_store_int16' > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int16' > /usr/lib/libgssapi.so: undefined reference to `krb5_get_error_string' > /usr/lib/libgssapi.so: undefined reference to `krb5_principal_match' > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_con_setlocalseqnumber' > /usr/lib/libgssapi.so: undefined reference to `krb5_storage_to_data' > /usr/lib/libgssapi.so: undefined reference to `krb5_store_int32' > /usr/lib/libgssapi.so: undefined reference to `krb5_encrypt_ivec' > /usr/lib/libgssapi.so: undefined reference to `krb5_storage_emem' > /usr/lib/libgssapi.so: undefined reference to `krb5_store_data' > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_con_setremoteseqnumber' > /usr/lib/libgssapi.so: undefined reference to `krb5_principal_get_realm' > /usr/lib/libgssapi.so: undefined reference to `krb5_set_error_string' > /usr/lib/libgssapi.so: undefined reference to `krb5_make_principal' > /usr/lib/libgssapi.so: undefined reference to `krb5_store_keyblock' > *** Error code 1 > > Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. > *** Error code 1 > > Stop in /usr/ports/net/samba3. > [root@dns1 /usr/ports/net/samba3]# According to that you're missing kerberos5 (part of the base system). So you can either install kerberos, or change the kerberos property with make config in the dependencies tree (security/libtasn1?) -Garrett _Thank you Garrett You are always do helpful and forthcoming - I want you to know how much I appreciate your thoughtfulness. Just before I received your email (which made me think I had been on the right track)..I did make install in /usr/src/kerberos5 AND after # cd /usr/ports/net/samba3 # make clean was reading your reply while awaiting the outcome of # make UNFORTUNATELY... I got the same error I would mention that pkg_info shows that krb5-1.6 is installed on the system(is this the MIT version?). Does this mean I now need to deinstall krb5-1.6? How can I then clean up all my ports to get the dependencies right? Sorry I am not very food at this.. still struggling with understanding exactly how to deal withese issues. Thanks again David From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 15:26:36 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3AC6916A401 for ; Fri, 23 Mar 2007 15:26:36 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id CF09513C45D for ; Fri, 23 Mar 2007 15:26:35 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.62]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070323152633.POIA2045.dukecmmtao03.coxmail.com@dukecmmtao03>; Fri, 23 Mar 2007 11:26:33 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Fri, 23 Mar 2007 8:26:34 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070323152633.POIA2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: youshi10@u.washington.edu Subject: Re: samba3 compile failure 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, 23 Mar 2007 15:26:36 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion > Sent: Friday, March 23, 2007 8:15 AM > To: ports@freebsd.org > Cc: youshi10@u.washington.edu > Subject: Re: samba3 compile failure > > Vizion wrote: > > I am trying to compile samba... > > > > Is the cause something up with my kerberos installation > (see errors below)? > > If so I do not know how to fix it :-( > > > > If not what and how can I fix it?? > > > > Is any more information needed to help identify the cause > of the compile failure? > > > > Thanks in advance for any help you can give > > david > > -------------------------------------------------- > > Compiling lib/smbldap_util.c > > Compiling smbd/server.c > > Linking bin/smbd > > libsmb/clikrb5.o(.text+0x109c): In function > > `smb_krb5_get_keyinfo_from_ap_req': > > : undefined reference to `krb5_decode_ap_req' > > libsmb/clikrb5.o(.text+0x1423): In function > > `smb_krb5_principal_compare_any_realm': > > : undefined reference to `krb5_principal_compare_any_realm' > > libsmb/clikrb5.o(.text+0x1833): In function `smb_krb5_free_error': > > : undefined reference to `krb5_free_error_contents' > > libads/kerberos_keytab.o(.text+0x1b3): In function > `smb_krb5_kt_add_entry': > > : undefined reference to `krb5_kt_compare' > > /usr/lib/libgssapi.so: undefined reference to `krb5_rd_cred2' > > /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_destroy' > > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_address' > > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_data' > > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_keyblock' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_con_setremotesubkey' > > /usr/lib/libgssapi.so: undefined reference to `krb5_data_free' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_config_get_strings' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_con_setlocalsubkey' > > /usr/lib/libgssapi.so: undefined reference to > > `krb5_auth_con_generatelocalsubkey' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_sockaddr2address' > > /usr/lib/libgssapi.so: undefined reference to `krb5_cc_get_ops' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_get_default_principal' > > /usr/lib/libgssapi.so: undefined reference to `krb5_cc_copy_cache' > > /usr/lib/libasn1.so: undefined reference to `init_error_table' > > /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setkey' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_get_forwarded_creds' > > /usr/lib/libgssapi.so: undefined reference to `krb5_get_err_text' > > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int32' > > /usr/lib/libgssapi.so: undefined reference to `krb5_h_addr2sockaddr' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_build_authenticator' > > /usr/lib/libgssapi.so: undefined reference to `krb5_build_ap_req' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_getremoteseqnumber' > > /usr/lib/libgssapi.so: undefined reference to `krb5_data_zero' > > /usr/lib/libgssapi.so: undefined reference to `krb5_storage_free' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_config_free_strings' > > /usr/lib/libgssapi.so: undefined reference to `krb5_create_checksum' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_generate_random_block' > > /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_init' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_enctype_to_keytype' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_free_creds_contents' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_storage_from_mem' > > /usr/lib/libgssapi.so: undefined reference to `krb5_store_address' > > /usr/lib/libgssapi.so: undefined reference to `krb5_decrypt_ivec' > > /usr/lib/libasn1.so: undefined reference to > `initialize_error_table_r' > > /usr/lib/libgssapi.so: undefined reference to `krb5_store_int16' > > /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int16' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_get_error_string' > > /usr/lib/libgssapi.so: undefined reference to `krb5_principal_match' > > /usr/lib/libgssapi.so: undefined reference to > > `krb5_auth_con_setlocalseqnumber' > > /usr/lib/libgssapi.so: undefined reference to `krb5_storage_to_data' > > /usr/lib/libgssapi.so: undefined reference to `krb5_store_int32' > > /usr/lib/libgssapi.so: undefined reference to `krb5_encrypt_ivec' > > /usr/lib/libgssapi.so: undefined reference to `krb5_storage_emem' > > /usr/lib/libgssapi.so: undefined reference to `krb5_store_data' > > /usr/lib/libgssapi.so: undefined reference to > > `krb5_auth_con_setremoteseqnumber' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_principal_get_realm' > > /usr/lib/libgssapi.so: undefined reference to > `krb5_set_error_string' > > /usr/lib/libgssapi.so: undefined reference to `krb5_make_principal' > > /usr/lib/libgssapi.so: undefined reference to `krb5_store_keyblock' > > *** Error code 1 > > > > Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. > > *** Error code 1 > > > > Stop in /usr/ports/net/samba3. > > [root@dns1 /usr/ports/net/samba3]# > > According to that you're missing kerberos5 (part of the base > system). So > you can either install kerberos, or change the kerberos property with > make config in the dependencies tree (security/libtasn1?) > > -Garrett > _Thank you Garrett > > You are always do helpful and forthcoming - I want you to > know how much I appreciate your thoughtfulness. > > Just before I received your email (which made me think I had > been on the right track)..I did make install in /usr/src/kerberos5 > AND after > # cd /usr/ports/net/samba3 > # make clean > > was reading your reply while awaiting the outcome of > # make > UNFORTUNATELY... > I got the same error > > I would mention that pkg_info shows that > krb5-1.6 is installed on the system(is this the MIT version?). > > Does this mean I now need to deinstall krb5-1.6? > > How can I then clean up all my ports to get the dependencies right? > > Sorry I am not very food at this.. still struggling with > understanding exactly how to deal withese issues. > > Thanks again > David > my /etc/make.conf has no entries for KERBEROS (in fact it only has entries for PERL_VER and PERL_VERSION !!! I guess I need to pay some attantion to using make.conf especially as I want to upgrade this system to 6.2 but am a little nervous of doing so because I am unsure whether I might make a mess of the upgrade!! From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 15:27:51 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10A0716A407 for ; Fri, 23 Mar 2007 15:27:51 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.freebsd.org (Postfix) with ESMTP id E8E8E13C45A for ; Fri, 23 Mar 2007 15:27:50 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 5DF6673E; Fri, 23 Mar 2007 10:27:50 -0500 (CDT) Date: Fri, 23 Mar 2007 10:27:50 -0500 To: Alexandre Brooks Message-ID: <20070323152750.GA744@soaustin.net> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: freebsd-ports@freebsd.org Subject: Re: [www/p5-libapreq2] 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: Fri, 23 Mar 2007 15:27:51 -0000 On Fri, Mar 23, 2007 at 03:32:33PM +0100, Alexandre Brooks wrote: > I'm currently trying to install www/rt36 port, with apache22 and > mod_perl2, but this requires me to build the perl5 interface to > libapreq2 (www/p5-libapreq2). Only problem, it is broken. You should mail the maintainer (skv@FreeBSD) and ask him. I do know it has shown up as broken on the package build machines. mcl From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 18:29:11 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB66716A402; Fri, 23 Mar 2007 18:29:11 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout7.cac.washington.edu (mxout7.cac.washington.edu [140.142.32.178]) by mx1.freebsd.org (Postfix) with ESMTP id AA2A913C480; Fri, 23 Mar 2007 18:29:11 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from hymn07.u.washington.edu (hymn07.u.washington.edu [140.142.8.53]) by mxout7.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2NITAjS006719 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 23 Mar 2007 11:29:11 -0700 Received: from localhost (localhost [127.0.0.1]) by hymn07.u.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2NITAf2015921; Fri, 23 Mar 2007 11:29:10 -0700 X-Auth-Received: from [192.55.52.4] by hymn07.u.washington.edu via HTTP; Fri, 23 Mar 2007 11:29:10 PDT Date: Fri, 23 Mar 2007 11:29:10 -0700 (PDT) From: youshi10@u.washington.edu To: freebsd-ports@freebsd.org In-Reply-To: <20070323152633.POIA2045.dukecmmtao03.coxmail.com@dukecmmtao03> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-PMX-Version: 5.3.0.289146, Antispam-Engine: 2.5.0.283055, Antispam-Data: 2007.3.23.111934 X-Uwash-Spam: Gauge=IIIIIII, Probability=7%, Report='SUPERLONG_LINE 0.05, NO_REAL_NAME 0, __CT 0, __CT_TEXT_PLAIN 0, __HAS_MSGID 0, __MIME_TEXT_ONLY 0, __MIME_VERSION 0, __SANE_MSGID 0' Cc: freebsd-questions@freebsd.org Subject: Re: samba3 compile failure 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, 23 Mar 2007 18:29:12 -0000 On Fri, 23 Mar 2007, Vizion wrote: > > >> -----Original Message----- >> From: owner-freebsd-ports@freebsd.org >> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion >> Sent: Friday, March 23, 2007 8:15 AM >> To: ports@freebsd.org >> Cc: youshi10@u.washington.edu >> Subject: Re: samba3 compile failure >> >> Vizion wrote: >>> I am trying to compile samba... >>> >>> Is the cause something up with my kerberos installation >> (see errors below)? >>> If so I do not know how to fix it :-( >>> >>> If not what and how can I fix it?? >>> >>> Is any more information needed to help identify the cause >> of the compile failure? >>> >>> Thanks in advance for any help you can give >>> david >>> -------------------------------------------------- >>> Compiling lib/smbldap_util.c >>> Compiling smbd/server.c >>> Linking bin/smbd >>> libsmb/clikrb5.o(.text+0x109c): In function >>> `smb_krb5_get_keyinfo_from_ap_req': >>> : undefined reference to `krb5_decode_ap_req' >>> libsmb/clikrb5.o(.text+0x1423): In function >>> `smb_krb5_principal_compare_any_realm': >>> : undefined reference to `krb5_principal_compare_any_realm' >>> libsmb/clikrb5.o(.text+0x1833): In function `smb_krb5_free_error': >>> : undefined reference to `krb5_free_error_contents' >>> libads/kerberos_keytab.o(.text+0x1b3): In function >> `smb_krb5_kt_add_entry': >>> : undefined reference to `krb5_kt_compare' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_rd_cred2' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_destroy' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_address' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_data' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_keyblock' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_auth_con_setremotesubkey' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_data_free' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_config_get_strings' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_auth_con_setlocalsubkey' >>> /usr/lib/libgssapi.so: undefined reference to >>> `krb5_auth_con_generatelocalsubkey' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_sockaddr2address' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_cc_get_ops' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_get_default_principal' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_cc_copy_cache' >>> /usr/lib/libasn1.so: undefined reference to `init_error_table' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_auth_con_setkey' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_get_forwarded_creds' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_get_err_text' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int32' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_h_addr2sockaddr' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_build_authenticator' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_build_ap_req' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_auth_getremoteseqnumber' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_data_zero' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_storage_free' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_config_free_strings' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_create_checksum' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_generate_random_block' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_init' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_enctype_to_keytype' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_free_creds_contents' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_storage_from_mem' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_address' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_decrypt_ivec' >>> /usr/lib/libasn1.so: undefined reference to >> `initialize_error_table_r' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_int16' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int16' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_get_error_string' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_principal_match' >>> /usr/lib/libgssapi.so: undefined reference to >>> `krb5_auth_con_setlocalseqnumber' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_storage_to_data' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_int32' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_encrypt_ivec' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_storage_emem' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_data' >>> /usr/lib/libgssapi.so: undefined reference to >>> `krb5_auth_con_setremoteseqnumber' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_principal_get_realm' >>> /usr/lib/libgssapi.so: undefined reference to >> `krb5_set_error_string' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_make_principal' >>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_keyblock' >>> *** Error code 1 >>> >>> Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. >>> *** Error code 1 >>> >>> Stop in /usr/ports/net/samba3. >>> [root@dns1 /usr/ports/net/samba3]# >> >> According to that you're missing kerberos5 (part of the base >> system). So >> you can either install kerberos, or change the kerberos property with >> make config in the dependencies tree (security/libtasn1?) >> >> -Garrett >> _Thank you Garrett >> >> You are always do helpful and forthcoming - I want you to >> know how much I appreciate your thoughtfulness. >> >> Just before I received your email (which made me think I had >> been on the right track)..I did make install in /usr/src/kerberos5 >> AND after >> # cd /usr/ports/net/samba3 >> # make clean >> >> was reading your reply while awaiting the outcome of >> # make >> UNFORTUNATELY... >> I got the same error >> >> I would mention that pkg_info shows that >> krb5-1.6 is installed on the system(is this the MIT version?). >> >> Does this mean I now need to deinstall krb5-1.6? >> >> How can I then clean up all my ports to get the dependencies right? >> >> Sorry I am not very food at this.. still struggling with >> understanding exactly how to deal withese issues. >> >> Thanks again >> David >> > my /etc/make.conf has no entries for KERBEROS (in fact it only has entries for PERL_VER and PERL_VERSION !!! > > I guess I need to pay some attantion to using make.conf especially as I want to upgrade this system to 6.2 but am a little nervous of doing so because I am unsure whether I might make a mess of the upgrade!! Vizion, I think it would be a good idea to consolidate all further correspondence over to ports@ instead of both ports@ and questions@. That way it's easier to track the email chain. Besides, cross-posting gets to be a mess sometimes :). Ok, in that sense maybe you should get in touch with the port maintainer because there could be an issue with some libraries not being found. I would have thought that the issue could be with security/libtasn1 not having the right stuff linked, but it also could be that kerberos (ports version) is causing this headache because of multiple versions being installed / linked against. More info would be helpful (LD flags, libraries and their locations, etc), as someone could probably provide on the list. If you do use a version of kerberos though, you should use either the base version or the ports version -- having both installed makes things into a mess (been there, done similar a while back). The same sort of goes for openssh, openssl, etc. There are a variety of different variables which control which packages / components get compiled into the main system (variables are available in man make.conf). This is a mess that I was going to look into fixing by adding this sort of dependency checking with ports / pkg management for my SoC project, but that may come a little later on (the most important deliverable is BDB hash table backend programming). Cheers and best of luck, -Garrett From owner-freebsd-ports@FreeBSD.ORG Fri Mar 23 22:51:19 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id ED5F316A400 for ; Fri, 23 Mar 2007 22:51:19 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id 8E3DF13C48A for ; Fri, 23 Mar 2007 22:51:19 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.60]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070323225118.YAP2045.dukecmmtao03.coxmail.com@dukecmmtao03> for ; Fri, 23 Mar 2007 18:51:18 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Fri, 23 Mar 2007 15:51:18 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070323225118.YAP2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: Subject: Re: samba3 compile failure 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, 23 Mar 2007 22:51:20 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of > youshi10@u.washington.edu > Sent: Friday, March 23, 2007 11:29 AM > To: freebsd-ports@freebsd.org > Cc: freebsd-questions@freebsd.org > Subject: Re: samba3 compile failure > > On Fri, 23 Mar 2007, Vizion wrote: > > > > > > >> -----Original Message----- > >> From: owner-freebsd-ports@freebsd.org > >> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion > >> Sent: Friday, March 23, 2007 8:15 AM > >> To: ports@freebsd.org > >> Cc: youshi10@u.washington.edu > >> Subject: Re: samba3 compile failure > >> > >> Vizion wrote: > >>> I am trying to compile samba... > >>> > >>> Is the cause something up with my kerberos installation > >> (see errors below)? > >>> If so I do not know how to fix it :-( > >>> > >>> If not what and how can I fix it?? > >>> > >>> Is any more information needed to help identify the cause > >> of the compile failure? > >>> > >>> Thanks in advance for any help you can give > >>> david > >>> -------------------------------------------------- > >>> Compiling lib/smbldap_util.c > >>> Compiling smbd/server.c > >>> Linking bin/smbd > >>> libsmb/clikrb5.o(.text+0x109c): In function > >>> `smb_krb5_get_keyinfo_from_ap_req': > >>> : undefined reference to `krb5_decode_ap_req' > >>> libsmb/clikrb5.o(.text+0x1423): In function > >>> `smb_krb5_principal_compare_any_realm': > >>> : undefined reference to `krb5_principal_compare_any_realm' > >>> libsmb/clikrb5.o(.text+0x1833): In function `smb_krb5_free_error': > >>> : undefined reference to `krb5_free_error_contents' > >>> libads/kerberos_keytab.o(.text+0x1b3): In function > >> `smb_krb5_kt_add_entry': > >>> : undefined reference to `krb5_kt_compare' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_rd_cred2' > >>> /usr/lib/libgssapi.so: undefined reference to > `krb5_crypto_destroy' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_address' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_data' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_keyblock' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_auth_con_setremotesubkey' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_data_free' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_config_get_strings' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_auth_con_setlocalsubkey' > >>> /usr/lib/libgssapi.so: undefined reference to > >>> `krb5_auth_con_generatelocalsubkey' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_sockaddr2address' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_cc_get_ops' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_get_default_principal' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_cc_copy_cache' > >>> /usr/lib/libasn1.so: undefined reference to `init_error_table' > >>> /usr/lib/libgssapi.so: undefined reference to > `krb5_auth_con_setkey' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_get_forwarded_creds' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_get_err_text' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int32' > >>> /usr/lib/libgssapi.so: undefined reference to > `krb5_h_addr2sockaddr' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_build_authenticator' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_build_ap_req' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_auth_getremoteseqnumber' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_data_zero' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_storage_free' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_config_free_strings' > >>> /usr/lib/libgssapi.so: undefined reference to > `krb5_create_checksum' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_generate_random_block' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_init' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_enctype_to_keytype' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_free_creds_contents' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_storage_from_mem' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_address' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_decrypt_ivec' > >>> /usr/lib/libasn1.so: undefined reference to > >> `initialize_error_table_r' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_int16' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int16' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_get_error_string' > >>> /usr/lib/libgssapi.so: undefined reference to > `krb5_principal_match' > >>> /usr/lib/libgssapi.so: undefined reference to > >>> `krb5_auth_con_setlocalseqnumber' > >>> /usr/lib/libgssapi.so: undefined reference to > `krb5_storage_to_data' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_int32' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_encrypt_ivec' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_storage_emem' > >>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_data' > >>> /usr/lib/libgssapi.so: undefined reference to > >>> `krb5_auth_con_setremoteseqnumber' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_principal_get_realm' > >>> /usr/lib/libgssapi.so: undefined reference to > >> `krb5_set_error_string' > >>> /usr/lib/libgssapi.so: undefined reference to > `krb5_make_principal' > >>> /usr/lib/libgssapi.so: undefined reference to > `krb5_store_keyblock' > >>> *** Error code 1 > >>> > >>> Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. > >>> *** Error code 1 > >>> > >>> Stop in /usr/ports/net/samba3. > >>> [root@dns1 /usr/ports/net/samba3]# > >> > >> According to that you're missing kerberos5 (part of the base > >> system). So > >> you can either install kerberos, or change the kerberos > property with > >> make config in the dependencies tree (security/libtasn1?) > >> > >> -Garrett > >> _Thank you Garrett > >> > >> You are always do helpful and forthcoming - I want you to > >> know how much I appreciate your thoughtfulness. > >> > >> Just before I received your email (which made me think I had > >> been on the right track)..I did make install in /usr/src/kerberos5 > >> AND after > >> # cd /usr/ports/net/samba3 > >> # make clean > >> > >> was reading your reply while awaiting the outcome of > >> # make > >> UNFORTUNATELY... > >> I got the same error > >> > >> I would mention that pkg_info shows that > >> krb5-1.6 is installed on the system(is this the MIT version?). > >> > >> Does this mean I now need to deinstall krb5-1.6? > >> > >> How can I then clean up all my ports to get the dependencies right? > >> > >> Sorry I am not very food at this.. still struggling with > >> understanding exactly how to deal withese issues. > >> > >> Thanks again > >> David > >> > > my /etc/make.conf has no entries for KERBEROS (in fact it > only has entries for PERL_VER and PERL_VERSION !!! > > > > I guess I need to pay some attantion to using make.conf > especially as I want to upgrade this system to 6.2 but am a > little nervous of doing so because I am unsure whether I > might make a mess of the upgrade!! > > Vizion, > > I think it would be a good idea to consolidate all > further correspondence over to ports@ instead of both ports@ > and questions@. That way it's easier to track the email > chain. Besides, cross-posting gets to be a mess sometimes :). > > Ok, in that sense maybe you should get in touch with > the port maintainer because there could be an issue with some > libraries not being found. I would have thought that the > issue could be with security/libtasn1 not having the right > stuff linked, but it also could be that kerberos (ports > version) is causing this headache because of multiple > versions being installed / linked against. More info would be > helpful (LD flags, libraries and their locations, etc), as > someone could probably provide on the list. > > If you do use a version of kerberos though, you should > use either the base version or the ports version -- having > both installed makes things into a mess (been there, done > similar a while back). The same sort of goes for openssh, > openssl, etc. There are a variety of different variables > which control which packages / components get compiled into > the main system (variables are available in man make.conf). > > This is a mess that I was going to look into fixing by > adding this sort of dependency checking with ports / pkg > management for my SoC project, but that may come a little > later on (the most important deliverable is BDB hash table > backend programming). > > Cheers and best of luck, > -Garrett Thanks re: LD flags, libraries and their locations, etc Can you tell me how to get this info Thanks From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 05:21:03 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 72FB516A401; Sat, 24 Mar 2007 05:21:03 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.freebsd.org (Postfix) with ESMTP id 143AD13C44B; Sat, 24 Mar 2007 05:21:02 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.8/8.13.8/NinthNine) with SMTP id l2O4hA0k034055; Sat, 24 Mar 2007 13:43:11 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sat, 24 Mar 2007 13:43:10 +0900 From: Norikatsu Shigemura To: ade@FreeBSD.org Message-Id: <20070324134310.5bdd5cc7.nork@FreeBSD.org> X-Mailer: Sylpheed 2.4.0beta5 (GTK+ 2.10.11; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sakura.ninth-nine.com [219.127.74.121]); Sat, 24 Mar 2007 13:43:11 +0900 (JST) Cc: ports@FreeBSD.org, Norikatsu Shigemura Subject: [ports/devel/gettext] not respect PTHREAD_LIBS issue 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, 24 Mar 2007 05:21:03 -0000 Hi ade. This port has a 'not respect PTHREAD_LIBS' issue. Can you please investigate and/or validate following patch? By the way, I'm validating ports which have this issue on no libpthread.* environment. So you won't get this error, and notice it. Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/gettext/Makefile,v retrieving revision 1.75 diff -u -r1.75 Makefile --- Makefile 17 Mar 2007 22:37:26 -0000 1.75 +++ Makefile 24 Mar 2007 04:29:38 -0000 @@ -62,7 +62,7 @@ post-patch: @${FIND} ${WRKSRC} -name configure -print | ${XARGS} \ - ${REINPLACE_CMD} -e 's|mkdir gmkdir|mkdir|' + ${REINPLACE_CMD} -e 's|mkdir gmkdir|mkdir|' -e 's/-lpthread/${PTHREAD_LIBS}/' .if defined (NOPORTDOCS) .for dir in runtime tools @${REINPLACE_CMD} -e 's|^SUBDIRS = doc|SUBDIRS =|' \ From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 08:40:05 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6563A16A400 for ; Sat, 24 Mar 2007 08:40:05 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from mxout1.cac.washington.edu (mxout1.cac.washington.edu [140.142.32.134]) by mx1.freebsd.org (Postfix) with ESMTP id 3AEBE13C4B8 for ; Sat, 24 Mar 2007 08:40:05 +0000 (UTC) (envelope-from youshi10@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.33.7] (may be forged)) by mxout1.cac.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2O8e20x017301 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sat, 24 Mar 2007 01:40:03 -0700 X-Auth-Received: from [192.168.10.42] (c-67-187-172-183.hsd1.ca.comcast.net [67.187.172.183]) (authenticated authid=youshi10) by smtp.washington.edu (8.13.7+UW06.06/8.13.7+UW07.03) with ESMTP id l2O8e0Sx013820 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NOT) for ; Sat, 24 Mar 2007 01:40:00 -0700 Mime-Version: 1.0 (Apple Message framework v752.2) References: X-Gpgmail-State: !signed Message-Id: From: Garrett Cooper Date: Sat, 24 Mar 2007 01:40:02 -0700 To: freebsd-ports@freebsd.org X-Mailer: Apple Mail (2.752.2) X-PMX-Version: 5.3.0.289146, Antispam-Engine: 2.5.0.283055, Antispam-Data: 2007.3.24.12435 X-Uwash-Spam: Gauge=IIIIIIII, Probability=8%, Report='HTML_70_90 0.1, HTML_NO_HTTP 0.1, __CP_URI_IN_BODY 0, __CT 0, __CTYPE_HAS_BOUNDARY 0, __CTYPE_MULTIPART 0, __CTYPE_MULTIPART_ALT 0, __HAS_MSGID 0, __HAS_X_MAILER 0, __MIME_HTML 0, __MIME_VERSION 0, __SANE_MSGID 0, __TAG_EXISTS_HTML 0' Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Fwd: samba3 compile failure 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, 24 Mar 2007 08:40:05 -0000 Begin forwarded message: > From: Garrett Cooper > Date: March 24, 2007 1:29:57 AM PDT > To: freebsd-questions@freebsd.org > Subject: Re: samba3 compile failure > > On Mar 23, 2007, at 3:51 PM, Vizion wrote: > >> >> >>> -----Original Message----- >>> From: owner-freebsd-ports@freebsd.org >>> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of >>> youshi10@u.washington.edu >>> Sent: Friday, March 23, 2007 11:29 AM >>> To: freebsd-ports@freebsd.org >>> Cc: freebsd-questions@freebsd.org >>> Subject: Re: samba3 compile failure >>> >>> On Fri, 23 Mar 2007, Vizion wrote: >>> >>>> >>>> >>>>> -----Original Message----- >>>>> From: owner-freebsd-ports@freebsd.org >>>>> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion >>>>> Sent: Friday, March 23, 2007 8:15 AM >>>>> To: ports@freebsd.org >>>>> Cc: youshi10@u.washington.edu >>>>> Subject: Re: samba3 compile failure >>>>> >>>>> Vizion wrote: >>>>>> I am trying to compile samba... >>>>>> >>>>>> Is the cause something up with my kerberos installation >>>>> (see errors below)? >>>>>> If so I do not know how to fix it :-( >>>>>> >>>>>> If not what and how can I fix it?? >>>>>> >>>>>> Is any more information needed to help identify the cause >>>>> of the compile failure? >>>>>> >>>>>> Thanks in advance for any help you can give >>>>>> david >>>>>> -------------------------------------------------- >>>>>> Compiling lib/smbldap_util.c >>>>>> Compiling smbd/server.c >>>>>> Linking bin/smbd >>>>>> libsmb/clikrb5.o(.text+0x109c): In function >>>>>> `smb_krb5_get_keyinfo_from_ap_req': >>>>>> : undefined reference to `krb5_decode_ap_req' >>>>>> libsmb/clikrb5.o(.text+0x1423): In function >>>>>> `smb_krb5_principal_compare_any_realm': >>>>>> : undefined reference to `krb5_principal_compare_any_realm' >>>>>> libsmb/clikrb5.o(.text+0x1833): In function >>>>>> `smb_krb5_free_error': >>>>>> : undefined reference to `krb5_free_error_contents' >>>>>> libads/kerberos_keytab.o(.text+0x1b3): In function >>>>> `smb_krb5_kt_add_entry': >>>>>> : undefined reference to `krb5_kt_compare' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_rd_cred2' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>> `krb5_crypto_destroy' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_address' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_data' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_keyblock' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_auth_con_setremotesubkey' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_data_free' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_config_get_strings' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_auth_con_setlocalsubkey' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>>> `krb5_auth_con_generatelocalsubkey' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_sockaddr2address' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_cc_get_ops' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_get_default_principal' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>>> `krb5_cc_copy_cache' >>>>>> /usr/lib/libasn1.so: undefined reference to `init_error_table' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>> `krb5_auth_con_setkey' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_get_forwarded_creds' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_get_err_text' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int32' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>> `krb5_h_addr2sockaddr' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_build_authenticator' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_build_ap_req' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_auth_getremoteseqnumber' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_data_zero' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_storage_free' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_config_free_strings' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>> `krb5_create_checksum' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_generate_random_block' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_crypto_init' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_enctype_to_keytype' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_free_creds_contents' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_storage_from_mem' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>>> `krb5_store_address' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_decrypt_ivec' >>>>>> /usr/lib/libasn1.so: undefined reference to >>>>> `initialize_error_table_r' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_int16' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_ret_int16' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_get_error_string' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>> `krb5_principal_match' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>>> `krb5_auth_con_setlocalseqnumber' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>> `krb5_storage_to_data' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_int32' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_encrypt_ivec' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_storage_emem' >>>>>> /usr/lib/libgssapi.so: undefined reference to `krb5_store_data' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>>> `krb5_auth_con_setremoteseqnumber' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_principal_get_realm' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>>>> `krb5_set_error_string' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>> `krb5_make_principal' >>>>>> /usr/lib/libgssapi.so: undefined reference to >>> `krb5_store_keyblock' >>>>>> *** Error code 1 >>>>>> >>>>>> Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. >>>>>> *** Error code 1 >>>>>> >>>>>> Stop in /usr/ports/net/samba3. >>>>>> [root@dns1 /usr/ports/net/samba3]# >>>>> >>>>> According to that you're missing kerberos5 (part of the base >>>>> system). So >>>>> you can either install kerberos, or change the kerberos >>> property with >>>>> make config in the dependencies tree (security/libtasn1?) >>>>> >>>>> -Garrett >>>>> _Thank you Garrett >>>>> >>>>> You are always do helpful and forthcoming - I want you to >>>>> know how much I appreciate your thoughtfulness. >>>>> >>>>> Just before I received your email (which made me think I had >>>>> been on the right track)..I did make install in /usr/src/ >>>>> kerberos5 >>>>> AND after >>>>> # cd /usr/ports/net/samba3 >>>>> # make clean >>>>> >>>>> was reading your reply while awaiting the outcome of >>>>> # make >>>>> UNFORTUNATELY... >>>>> I got the same error >>>>> >>>>> I would mention that pkg_info shows that >>>>> krb5-1.6 is installed on the system(is this the MIT version?). >>>>> >>>>> Does this mean I now need to deinstall krb5-1.6? >>>>> >>>>> How can I then clean up all my ports to get the dependencies >>>>> right? >>>>> >>>>> Sorry I am not very food at this.. still struggling with >>>>> understanding exactly how to deal withese issues. >>>>> >>>>> Thanks again >>>>> David >>>>> >>>> my /etc/make.conf has no entries for KERBEROS (in fact it >>> only has entries for PERL_VER and PERL_VERSION !!! >>>> >>>> I guess I need to pay some attantion to using make.conf >>> especially as I want to upgrade this system to 6.2 but am a >>> little nervous of doing so because I am unsure whether I >>> might make a mess of the upgrade!! >>> >>> Vizion, >>> >>> I think it would be a good idea to consolidate all >>> further correspondence over to ports@ instead of both ports@ >>> and questions@. That way it's easier to track the email >>> chain. Besides, cross-posting gets to be a mess sometimes :). >>> >>> Ok, in that sense maybe you should get in touch with >>> the port maintainer because there could be an issue with some >>> libraries not being found. I would have thought that the >>> issue could be with security/libtasn1 not having the right >>> stuff linked, but it also could be that kerberos (ports >>> version) is causing this headache because of multiple >>> versions being installed / linked against. More info would be >>> helpful (LD flags, libraries and their locations, etc), as >>> someone could probably provide on the list. >>> >>> If you do use a version of kerberos though, you should >>> use either the base version or the ports version -- having >>> both installed makes things into a mess (been there, done >>> similar a while back). The same sort of goes for openssh, >>> openssl, etc. There are a variety of different variables >>> which control which packages / components get compiled into >>> the main system (variables are available in man make.conf). >>> >>> This is a mess that I was going to look into fixing by >>> adding this sort of dependency checking with ports / pkg >>> management for my SoC project, but that may come a little >>> later on (the most important deliverable is BDB hash table >>> backend programming). >>> >>> Cheers and best of luck, >>> -Garrett >> >> Thanks >> re: LD flags, libraries and their locations, etc >> >> Can you tell me how to get this info >> >> Thanks > > Do you have the following libs: ${KRB5_HOME}/lib/libgssapi_krb5.a # > Is $KRB5_HOME pointing to /usr? > > If we could take a look at your config log too a bit (around the > kerberos section), that would be helpful (/usr/ports/net/samba/work/ > samba-{some_versions}/config.log?). > > Cheers, > -Garrett > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions- > unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 09:44:22 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0EC316A400 for ; Sat, 24 Mar 2007 09:44:22 +0000 (UTC) (envelope-from John.Marshall@riverwillow.com.au) Received: from mail2.riverwillow.net.au (ns2.riverwillow.net.au [203.58.93.41]) by mx1.freebsd.org (Postfix) with ESMTP id 1EAC013C44B for ; Sat, 24 Mar 2007 09:44:21 +0000 (UTC) (envelope-from John.Marshall@riverwillow.com.au) Received: from rwmail.mby.riverwillow.net.au (rwsrv06.rw2.riverwillow.net.au [172.25.25.16]) by mail2.riverwillow.net.au (8.14.0/8.14.0) with ESMTP id l2O9TBhp030581; Sat, 24 Mar 2007 20:29:11 +1100 (AEDT) Received: from [127.0.0.1] ([172.25.25.64] RDNS failed) by rwmail.mby.riverwillow.net.au over TLS secured channel with Microsoft SMTPSVC(6.0.3790.1830); Sat, 24 Mar 2007 20:29:10 +1100 Message-ID: <4604EF45.6030402@riverwillow.com.au> Date: Sat, 24 Mar 2007 20:28:37 +1100 From: John Marshall Organization: Riverwillow Pty Ltd User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: Vizion References: <20070323144239.KVBQ2045.dukecmmtao03.coxmail.com@dukecmmtao03> In-Reply-To: <20070323144239.KVBQ2045.dukecmmtao03.coxmail.com@dukecmmtao03> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 24 Mar 2007 09:29:10.0494 (UTC) FILETIME=[E0D757E0:01C76DF6] Cc: ports@freebsd.org Subject: Re: samba3 compile failure 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, 24 Mar 2007 09:44:22 -0000 Vizion wrote: > > >> -----Original Message----- >> From: owner-freebsd-ports@freebsd.org >> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion >> Sent: Friday, March 23, 2007 3:37 AM >> To: ports@freebsd.org >> Subject: samba3 compile failure >> >> Trying to compile samba... >> Is up with my kerberos? >> If so I do not know how to fix it :-( >> If not what?? >> Thanks in advance >> david >> ------< snip >------ >> `krb5_principal_get_realm' >> /usr/lib/libgssapi.so: undefined reference to `krb5_set_error_string' >> /usr/lib/libgssapi.so: undefined reference to `krb5_make_principal' >> /usr/lib/libgssapi.so: undefined reference to `krb5_store_keyblock' >> *** Error code 1 >> >> Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. >> *** Error code 1 >> >> Stop in /usr/ports/net/samba3. >> [root@dns1 /usr/ports/net/samba3]# >> > Just though I should mention that this freebsd 6.1 system has krb5-1.6 installed. Is this the version of kerberos that is installed by default with 6_1? > > David If you have installed the MIT Kerberos Port, you need to tell the Samba build where to find it... # cd /usr/ports/net/samba3 # make KRB5_HOME=/usr/local install clean -- Regards, John Marshall Systems & Networks Specialist Riverwillow Pty Ltd Tel: +61 2 9832 7544 Fax: +61 2 9832 1986 Mob: +61 407 435 204 From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 11:56:38 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9062E16A402 for ; Sat, 24 Mar 2007 11:56:38 +0000 (UTC) (envelope-from karel.miklav@siol.net) Received: from as1.siol.net (as1.siol.net [193.189.160.84]) by mx1.freebsd.org (Postfix) with ESMTP id D2DED13C48C for ; Sat, 24 Mar 2007 11:56:37 +0000 (UTC) (envelope-from karel.miklav@siol.net) Received: from edge2.siol.net ([10.10.10.211]) by mta2.siol.net with ESMTP id <20070324111732.UZNF6798.mta2.siol.net@edge2.siol.net> for ; Sat, 24 Mar 2007 12:17:32 +0100 Received: from [192.168.0.149] (really [86.61.37.221]) by edge2.siol.net with ESMTP id <20070324111731.YXIU4931.edge2.siol.net@[192.168.0.149]> for ; Sat, 24 Mar 2007 12:17:31 +0100 Message-ID: <460508C8.6010607@siol.net> Date: Sat, 24 Mar 2007 12:17:28 +0100 From: Karel Miklav User-Agent: Thunderbird 1.5.0.10 (X11/20070319) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Subject: How many distfile downloads 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, 24 Mar 2007 11:56:38 -0000 I'm thinking about putting a larger distfile on my server and I'd like to know how it will affect the bandwidth. How many downloads can be expected from automated processes? Is there any statistics for port popularity or something? Could somebody please give me a number of downloads for his distfiles? -- Regards, Karel Miklav From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 12:04:07 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F07BB16A40A for ; Sat, 24 Mar 2007 12:04:07 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.237]) by mx1.freebsd.org (Postfix) with ESMTP id ADEFD13C465 for ; Sat, 24 Mar 2007 12:04:07 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so1436594wxc for ; Sat, 24 Mar 2007 05:04:06 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=aExesoKMl30T22ygrZkklSx8eHr602tzMrH3TwzUImZusemxdod6S/XoUSn0Y7wegsDsAmZOouxVE8J5KI63DyLhIYMBfbBmtjBwzv7ZxUX+T8Le+itm1V666FyX8Q7jg62jsmm1kr06iIgzfjLw/agNAJbos9BMwxnpti1BaWQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=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; b=R0eJPUBy5YWtqwS8vGBn7I5R3AzbxD1SIrJChPiUlUSt1rqDnYi1+Nv91xnKWI6pAluh/i4rD5ovZ9wAvWeLuT0I7frhHYvPDvlN1mtvKf9SWfga5alcXUU6Uuk+IvAtV+t1voQQQGI9DNwca8MVvig42jok3+O1ATY2edgfWFQ= Received: by 10.115.78.1 with SMTP id f1mr1671818wal.1174737846381; Sat, 24 Mar 2007 05:04:06 -0700 (PDT) Received: by 10.114.201.2 with HTTP; Sat, 24 Mar 2007 05:04:06 -0700 (PDT) Message-ID: Date: Sat, 24 Mar 2007 15:04:06 +0300 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Karel Miklav" In-Reply-To: <460508C8.6010607@siol.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <460508C8.6010607@siol.net> X-Google-Sender-Auth: c6fbfa87409eed07 Cc: ports@freebsd.org Subject: Re: How many distfile downloads 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, 24 Mar 2007 12:04:08 -0000 On 3/24/07, Karel Miklav wrote: > I'm thinking about putting a larger distfile on my > server and I'd like to know how it will affect the > bandwidth. > > How many downloads can be expected from automated > processes? Is there any statistics for port > popularity or something? Could somebody please > give me a number of downloads for his distfiles? I'm thinking about setting up an automated on-demand mirroring for BSD ports. Until that happens, I can deal with some requests manually. Tell me more about your distfile, if you want to. As for stats, my hoster password-protects them, I'll try to publish them though. You can get anywhere from 0 downloads to 100-200 a day depending on many things. From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 12:49:07 2007 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 98A1F16A400 for ; Sat, 24 Mar 2007 12:49:07 +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 28C6413C458 for ; Sat, 24 Mar 2007 12:49:06 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from [192.168.0.23] (r3b159.net.upc.cz [213.220.193.159]) (authenticated bits=0) by raven.customer.vol.cz (8.13.6/8.13.6) with ESMTP id l2OCn0aP019788 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sat, 24 Mar 2007 13:49:03 +0100 (CET) (envelope-from pav@FreeBSD.org) From: Pav Lucistnik To: Karel Miklav In-Reply-To: <460508C8.6010607@siol.net> References: <460508C8.6010607@siol.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-cWpcV/VVsh0Wp5Q76ryd" Date: Sat, 24 Mar 2007 13:48:59 +0100 Message-Id: <1174740539.18819.4.camel@ikaros.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.10.0 FreeBSD GNOME Team Port X-Spam-Score: -2.202 () AWL,BAYES_00 X-Scanned-By: MIMEDefang 2.61 on 195.250.144.108 X-Milter: Spamilter (Reciever: raven.customer.vol.cz; Sender-ip: 213.220.193.159; Sender-helo: [192.168.0.23]; ) Cc: freebsd-ports@FreeBSD.org Subject: Re: How many distfile downloads 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: Sat, 24 Mar 2007 12:49:07 -0000 --=-cWpcV/VVsh0Wp5Q76ryd Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Karel Miklav p=ED=B9e v so 24. 03. 2007 v 12:17 +0100: > I'm thinking about putting a larger distfile on my > server and I'd like to know how it will affect the > bandwidth. >=20 > How many downloads can be expected from automated > processes?=20 My port seen over course of February 2007 - 2 hits from bill fenner's portsurvey and that's it. ;) The rest are actual people installing the port. This is hard to predict. > Is there any statistics for port popularity or something?=20 I'm afraid we don't have such statistics. But you can check number of people subscribed to updated on Freshports for your port. --=20 Pav Lucistnik It's the classic Microsoft security-bulletin formula: "The vulnerability is important (never dangerous); you have nothing to fear and no reason to regr= et trusting us; we have no intention of apologizing for it or even explaining = it adequately; now go get your patch, shut up, and be grateful nothing bad has happened. -- The Register --=-cWpcV/VVsh0Wp5Q76ryd 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.7 (FreeBSD) iD8DBQBGBR43ntdYP8FOsoIRAm6bAJ99FLIV2t3WYwtiTyG5yWHR6prfvQCdEYkW sJNC0OR+mG2dc5tCJtZjiCw= =fb33 -----END PGP SIGNATURE----- --=-cWpcV/VVsh0Wp5Q76ryd-- From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 12:52:13 2007 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C611216A401; Sat, 24 Mar 2007 12:52:13 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.freebsd.org (Postfix) with ESMTP id 6131C13C46E; Sat, 24 Mar 2007 12:52:13 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.8/8.13.8/NinthNine) with SMTP id l2OCqBRc045882; Sat, 24 Mar 2007 21:52:11 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sat, 24 Mar 2007 21:52:11 +0900 From: Norikatsu Shigemura To: dinoex@FreeBSD.org Message-Id: <20070324215211.635be1ca.nork@FreeBSD.org> X-Mailer: Sylpheed 2.4.0beta5 (GTK+ 2.10.11; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sakura.ninth-nine.com [219.127.74.121]); Sat, 24 Mar 2007 21:52:12 +0900 (JST) Cc: ports@FreeBSD.org, Norikatsu Shigemura Subject: [ports/graphics/graphviz] graphviz doesn't build-depend on tcl84 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, 24 Mar 2007 12:52:13 -0000 Hi dinoex. graphviz doesn't build-depend on tcl84. So I didn't make it. Sorry, I don't have any idea to fix this issue. So I just report to you. 1 root@nadesico# make : /usr/local/bin/tclsh8.4 ./gv_doc_writer.tcl "." /usr/local/bin/tclsh8.4: not found gmake[3]: *** [gv_perl.man] Error 127 gmake[3]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.12/tclpkg/gv' gmake[2]: *** [all-recursive] Error 1 gmake[2]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.12/tclpkg' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/graphics/graphviz/work/graphviz-2.12' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/graphics/graphviz. 2 root@nadesico# which tclsh8.4 tclsh8.4 not found 3 root@nadesico# make -VBUILD_DEPENDS swig1.3:/usr/ports/devel/swig13 /usr/local/bin/python:/usr/ports/lang/python24 /usr/local/bin/ruby18:/usr/ports/lang/ruby18 gmake:/usr/ports/devel/gmake bison:/usr/ports/devel/bison /usr/local/bin/perl5.8.8:/usr/ports/lang/perl5.8 /usr/local/bin/libtool:/usr/ports/devel/libtool15 /usr/local/bin/intltool-extract:/usr/ports/textproc/intltool pkg-config:/usr/ports/devel/pkg-config 4 root@nadesico# make -VRUN_DEPENDS wish8.4:/usr/ports/x11-toolkits/tk84 swig1.3:/usr/ports/devel/swig13 /usr/local/bin/ruby18:/usr/ports/lang/ruby18 /usr/local/bin/perl5.8.8:/usr/ports/lang/perl5.8 pkg-config:/usr/ports/devel/pkg-config From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 13:06:45 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3A4E116A401 for ; Sat, 24 Mar 2007 13:06:45 +0000 (UTC) (envelope-from gexlie@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.freebsd.org (Postfix) with ESMTP id C704F13C480 for ; Sat, 24 Mar 2007 13:06:44 +0000 (UTC) (envelope-from gexlie@gmail.com) Received: by nf-out-0910.google.com with SMTP id k27so2164125nfc for ; Sat, 24 Mar 2007 06:06:43 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=mq/3omfKI3dflYXWGSQ8pN4aLzkUdEIukI0apTgUC7+H2SxaNLBPPFwIUOHrILKHeW1PFD+sZ3976h2GQy1bvMxwFzUDafQPtXpdKxIRUE9P1IxGl+5cvv7NEoeCyvBe3Ckc5qMmZVV0o+vmXL6loMfDhl013ABnk4ZnXT4J4TQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=g7cXWrLJ9ymByJZ05ytML1YmN/ajCllP2LADHXNe74GtbVwFKUSQPSyNvvFNrm+ej0lAVLALxxsqz8T/PLTVaCcvAtniWTkXYqV/8Wrz5+Mww9NovEU7zO2uvMeberFxZbUG7iTNtdOV0vyGtYC7fcTdIv/tUy72Ha5/wFx8JO0= Received: by 10.82.167.5 with SMTP id p5mr9090697bue.1174740080246; Sat, 24 Mar 2007 05:41:20 -0700 (PDT) Received: by 10.82.126.3 with HTTP; Sat, 24 Mar 2007 05:41:20 -0700 (PDT) Message-ID: <53cc795f0703240541w6953db30m337b4beb66bc8cdf@mail.gmail.com> Date: Sat, 24 Mar 2007 15:41:20 +0300 From: sekes To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: irc/unreal 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, 24 Mar 2007 13:06:45 -0000 I'm trying to build irc/unreal on 6.2-RELEASE and failing: ===> Building for Unreal-3.2.6 Building src cc -I../include -I/usr/ports/irc/unreal/work/Unreal3.2/extras/regexp/include -pipe -I/usr/local/include -O2 -fno-strict-aliasing -pipe -funsigned-char -fno-strict-aliasing -export-dynamic -L/usr/local/lib -c timesynch.c cc -I../include -I/usr/ports/irc/unreal/work/Unreal3.2/extras/regexp/include -pipe -I/usr/local/include -O2 -fno-strict-aliasing -pipe -funsigned-char -fno-strict-aliasing -export-dynamic -L/usr/local/lib -c res.c res.c: In function `m_dns': res.c:718: error: storage size of 'inf' isn't known *** Error code 1 Stop in /usr/ports/irc/unreal/work/Unreal3.2/src. *** Error code 1 Stop in /usr/ports/irc/unreal/work/Unreal3.2. *** Error code 1 Stop in /usr/ports/irc/unreal. [xnet] /usr/ports/irc/unreal# Ideas? From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 15:02:41 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7023F16A401 for ; Sat, 24 Mar 2007 15:02:41 +0000 (UTC) (envelope-from karel@lovetemple.net) Received: from mta1.siol.net (mta1.siol.net [193.189.160.87]) by mx1.freebsd.org (Postfix) with ESMTP id 8129013C458 for ; Sat, 24 Mar 2007 15:02:40 +0000 (UTC) (envelope-from karel@lovetemple.net) Received: from edge2.siol.net ([10.10.10.211]) by mta1.siol.net with ESMTP id <20070324150239.EPRM23492.mta1.siol.net@edge2.siol.net>; Sat, 24 Mar 2007 16:02:39 +0100 Received: from [192.168.0.149] (really [86.61.37.221]) by edge2.siol.net with ESMTP id <20070324150239.PKB4931.edge2.siol.net@[192.168.0.149]>; Sat, 24 Mar 2007 16:02:39 +0100 Message-ID: <46053D8C.1060308@lovetemple.net> Date: Sat, 24 Mar 2007 16:02:36 +0100 From: Karel Miklav User-Agent: Thunderbird 1.5.0.10 (X11/20070319) MIME-Version: 1.0 To: ports@freebsd.org References: <460508C8.6010607@siol.net> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: How many distfile downloads 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, 24 Mar 2007 15:02:41 -0000 Andrew Pantyukhin wrote: > I'm thinking about setting up an automated on-demand > mirroring for BSD ports. Until that happens, I can > deal with some requests manually. Tell me more about > your distfile, if you want to. It's GCC 4.1 with GNAT Ada compiler used to bootstrap later versions of GNAT-GCC, 11 Mb in size. I have a server with 1 Gb/month of spare bandwidth, but no clue if that will suffice. I could find a sponsor, but I need some numbers first. Free mirrors are also welcome, if I'm catching your drift :) Really, what's your plan with this service and how it will work? From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 16:15:10 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8690016A402; Sat, 24 Mar 2007 16:15:10 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 30EDC13C448; Sat, 24 Mar 2007 16:15:09 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr08.lnh.mail.rcn.net ([207.172.157.28]) by smtp02.lnh.mail.rcn.net with ESMTP; 24 Mar 2007 12:15:10 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr08.lnh.mail.rcn.net (MOS 3.8.3-GA) with ESMTP id ILC72152; Sat, 24 Mar 2007 12:15:09 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 24 Mar 2007 12:14:50 -0500 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17925.20108.889791.123829@jerusalem.litteratus.org> Date: Sat, 24 Mar 2007 12:15:08 -0400 To: ports@freebsd.org X-Mailer: VM 7.17 under 21.5 (beta27) "fiddleheads" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr08.lnh.mail.rcn.net) Cc: barner@FreeBSD.org Subject: problem installing devel/boost 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, 24 Mar 2007 16:15:10 -0000 [I've written the listed maintianer for this port several times, and received no response.] devel/boost is a dependency for a port I want to install. "make" works fine; "make install" dies with the appended results. (Ports tree is updated nightly; OS is -CURRENT from March 13.) Can anyone tell me what's going wrong? It might be my fault - don't care, just want to get this working. Robert Huff ===> Installing for boost-1.33.1_2 ===> boost-1.33.1_2 depends on shared library: icuuc - found ===> Generating temporary packing list ===> Checking if devel/boost already installed /bin/mkdir -p /usr/local/bin install -o root -g wheel -m 555 /usr/ports/devel/boost/work/boost_1_33_1/tools/build/jam_src/bin.freebsd/bjam /usr/local/bin/ /bin/mkdir -p /usr/local/lib /usr/bin/find /usr/ports/devel/boost/work/boost_1_33_1/bin/boost/libs -type f -name "*.a" -exec install -o root -g wheel -m 444 \{\} /usr/local/lib \; /usr/bin/find /usr/ports/devel/boost/work/boost_1_33_1/bin/boost/libs -type f -name "*.so" -exec install -o root -g wheel -m 444 \{\} /usr/local/lib \; cd /usr/local/lib && /bin/mv -f "libboost_date_time.so" "libboost_date_time.so.3" && /bin/ln -fs "libboost_date_time.so.3" "libboost_date_time.so" cd /usr/local/lib && /bin/mv -f "libboost_filesystem.so" "libboost_filesystem.so.3" && /bin/ln -fs "libboost_filesystem.so.3" "libboost_filesystem.so" cd /usr/local/lib && /bin/mv -f "libboost_iostreams.so" "libboost_iostreams.so.3" && /bin/ln -fs "libboost_iostreams.so.3" "libboost_iostreams.so" cd /usr/local/lib && /bin/mv -f "libboost_prg_exec_monitor.so" "libboost_prg_exec_monitor.so.3" && /bin/ln -fs "libboost_prg_exec_monitor.so.3" "libboost_prg_exec_monitor.so" cd /usr/local/lib && /bin/mv -f "libboost_program_options.so" "libboost_program_options.so.3" && /bin/ln -fs "libboost_program_options.so.3" "libboost_program_options.so" cd /usr/local/lib && /bin/mv -f "libboost_regex.so" "libboost_regex.so.3" && /bin/ln -fs "libboost_regex.so.3" "libboost_regex.so" cd /usr/local/lib && /bin/mv -f "libboost_serialization.so" "libboost_serialization.so.3" && /bin/ln -fs "libboost_serialization.so.3" "libboost_serialization.so" cd /usr/local/lib && /bin/mv -f "libboost_signals.so" "libboost_signals.so.3" && /bin/ln -fs "libboost_signals.so.3" "libboost_signals.so" cd /usr/local/lib && /bin/mv -f "libboost_test_exec_monitor.so" "libboost_test_exec_monitor.so.3" && /bin/ln -fs "libboost_test_exec_monitor.so.3" "libboost_test_exec_monitor.so" cd /usr/local/lib && /bin/mv -f "libboost_unit_test_framework.so" "libboost_unit_test_framework.so.3" && /bin/ln -fs "libboost_unit_test_framework.so.3" "libboost_unit_test_framework.so" cd /usr/local/lib && /bin/mv -f "libboost_wserialization.so" "libboost_wserialization.so.3" && /bin/ln -fs "libboost_wserialization.so.3" "libboost_wserialization.so" cd /usr/local/lib && /bin/mv -f "libboost_thread.so" "libboost_thread.so.3" && /bin/ln -fs "libboost_thread.so.3" "libboost_thread.so" /bin/mkdir -p /usr/local/include cd /usr/ports/devel/boost/work/boost_1_33_1 && /usr/bin/find boost -type d -a \! -name "*.orig" -exec /bin/mkdir -p /usr/local/include/\{\} \; cd /usr/ports/devel/boost/work/boost_1_33_1 && /usr/bin/find boost -type f -a \! -name "*.orig" -exec install -o root -g wheel -m 444 \{\} /usr/local/include/\{\} \; /bin/rm -rf /usr/ports/devel/boost/work/boost_1_33_1/libs/python/pyste /bin/mkdir -p /usr/local/share/doc/boost /usr/bin/find /usr/ports/devel/boost/work/boost_1_33_1 -type f -exec /bin/chmod 0444 {} \; /usr/bin/find /usr/ports/devel/boost/work/boost_1_33_1 -type d -exec /bin/chmod 0755 {} \; /usr/bin/find /usr/ports/devel/boost/work/boost_1_33_1 -name ".cvsignore" -delete cd /usr/ports/devel/boost/work/boost_1_33_1 && /usr/bin/find . -name "*.htm" -o -name "*.html" -o -name "*.css" -o -name "*.jp*g" -o -name "*.png" -o -name "*.gif" | /usr/bin/tar cTf - - | /usr/bin/tar xUCf /usr/local/share/doc/boost - cd /usr/ports/devel/boost/work/boost_1_33_1/libs && /usr/bin/find . -name "example" -o -name "examples" -o -name "*example*.cpp" -o -name "*example*.c" -o -name "*example*.hpp" | /usr/bin/uniq | /usr/bin/grep -v "assign/test" | /usr/bin/grep -v "iterator/test" | /usr/bin/grep -v "range/test" | /usr/bin/tar cTf - - | /usr/bin/tar xUCf /usr/local/share/doc/boost/libs - ./preprocessor/doc/examples: Could not unlink: Operation not permitted: Operation not permitted ./numeric/interval/examples: Could not unlink: Operation not permitted: Operation not permitted ./spirit/example: Could not unlink: Operation not permitted: Operation not permitted ./spirit/example/techniques: Could not unlink: Operation not permitted: Operation not permitted ./spirit/example/intermediate: Could not unlink: Operation not permitted: Operation not permitted ./spirit/example/fundamental: Could not unlink: Operation not permitted: Operation not permitted ./spirit/example/fundamental/position_iterator: Could not unlink: Operation not permitted: Operation not permitted ./spirit/example/fundamental/more_calculators: Could not unlink: Operation not permitted: Operation not permitted ./spirit/example/fundamental/distinct: Could not unlink: Operation not permitted: Operation not permitted ./spirit/example/techniques/no_rules: Could not unlink: Operation not permitted: Operation not permitted ./spirit/phoenix/example: Could not unlink: Operation not permitted: Operation not permitted ./spirit/phoenix/example/fundamental: Could not unlink: Operation not permitted: Operation not permitted ./regex/example: Could not unlink: Operation not permitted: Operation not permitted ./regex/example/snippets: Could not unlink: Operation not permitted: Operation not permitted ./regex/example/timer: Could not unlink: Operation not permitted: Operation not permitted ./regex/example/grep: Could not unlink: Operation not permitted: Operation not permitted ./function/example: Could not unlink: Operation not permitted: Operation not permitted ./mpl/example: Could not unlink: Operation not permitted: Operation not permitted ./mpl/example/fsm: Could not unlink: Operation not permitted: Operation not permitted ./mpl/example/fsm/aux_: Could not unlink: Operation not permitted: Operation not permitted ./functional/hash/examples: Could not unlink: Operation not permitted: Operation not permitted ./signals/example: Could not unlink: Operation not permitted: Operation not permitted ./iterator/example: Could not unlink: Operation not permitted: Operation not permitted ./type_traits/examples: Could not unlink: Operation not permitted: Operation not permitted ./dynamic_bitset/example: Could not unlink: Operation not permitted: Operation not permitted ./format/example: Could not unlink: Operation not permitted: Operation not permitted ./serialization/example: Could not unlink: Operation not permitted: Operation not permitted ./smart_ptr/example: Could not unlink: Operation not permitted: Operation not permitted ./thread/example: Could not unlink: Operation not permitted: Operation not permitted ./algorithm/minmax/example: Could not unlink: Operation not permitted: Operation not permitted ./algorithm/string/example: Could not unlink: Operation not permitted: Operation not permitted ./multi_index/example: Could not unlink: Operation not permitted: Operation not permitted ./filesystem/example: Could not unlink: Operation not permitted: Operation not permitted ./date_time/example: Could not unlink: Operation not permitted: Operation not permitted ./date_time/example/local_time: Could not unlink: Operation not permitted: Operation not permitted ./date_time/example/gregorian: Could not unlink: Operation not permitted: Operation not permitted ./date_time/example/tutorial: Could not unlink: Operation not permitted: Operation not permitted ./date_time/example/posix_time: Could not unlink: Operation not permitted: Operation not permitted ./iostreams/example: Could not unlink: Operation not permitted: Operation not permitted ./test/example: Could not unlink: Operation not permitted: Operation not permitted ./test/example/cla: Could not unlink: Operation not permitted: Operation not permitted ./test/example/env: Could not unlink: Operation not permitted: Operation not permitted ./test/example/env/validation: Could not unlink: Operation not permitted: Operation not permitted ./test/example/cla/validation: Could not unlink: Operation not permitted: Operation not permitted ./test/doc/examples: Could not unlink: Operation not permitted: Operation not permitted ./program_options/example: Could not unlink: Operation not permitted: Operation not permitted ./multi_array/example: Could not unlink: Operation not permitted: Operation not permitted ./graph/example: Could not unlink: Operation not permitted: Operation not permitted ./graph/example/figs: Could not unlink: Operation not permitted: Operation not permitted *** Error code 1 Stop in /usr/ports/devel/boost. From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 16:23:07 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E225216A402 for ; Sat, 24 Mar 2007 16:23:07 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id 7B03513C459 for ; Sat, 24 Mar 2007 16:23:07 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.60]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070324162306.YKQS2045.dukecmmtao03.coxmail.com@dukecmmtao03>; Sat, 24 Mar 2007 12:23:06 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Sat, 24 Mar 2007 9:23:06 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070324162306.YKQS2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: ports@freebsd.org, youshi10@u.washington.edu Subject: Re: samba3 compile failure 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, 24 Mar 2007 16:23:08 -0000 Vizion wrote: > > >> -----Original Message----- >> From: owner-freebsd-ports@freebsd.org >> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion >> Sent: Friday, March 23, 2007 3:37 AM >> To: ports@freebsd.org >> Subject: samba3 compile failure >> >> Trying to compile samba... >> Is up with my kerberos? >> If so I do not know how to fix it :-( >> If not what?? >> Thanks in advance >> david >> ------< snip >------ >> `krb5_principal_get_realm' >> /usr/lib/libgssapi.so: undefined reference to `krb5_set_error_string' >> /usr/lib/libgssapi.so: undefined reference to `krb5_make_principal' >> /usr/lib/libgssapi.so: undefined reference to `krb5_store_keyblock' >> *** Error code 1 >> >> Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. >> *** Error code 1 >> >> Stop in /usr/ports/net/samba3. >> [root@dns1 /usr/ports/net/samba3]# >> > Just though I should mention that this freebsd 6.1 system has krb5-1.6 installed. Is this the version of kerberos that is installed by default with 6_1? > > David If you have installed the MIT Kerberos Port, you need to tell the Samba build where to find it... --- Thank you guys for giving so generously of your time and being so helpful. I have sent a compressed version of config.log to John and Garrett direct as I did not want to load everyone with the file. Hope that is OK. As recomended I tried: # cd /usr/ports/net/samba3 # make KRB5_HOME=/usr/local install clean But still got the same errors. It seems highly likely that my dependencies for kerberos are screwed up. Is there a sure fire way of checking up on them? My guess is that at some time I responded innapropriately to the pkgdb -F dialogue and screwed up the existing installation. pkg_info reports krb5-1.6 as installed. If practical O wonder if it might be best to: a. identify what version of kerberos are installed. b. deinstall them all. c. decide on a version to install. d. (i) build it and (ii) rebuild all dependencies to ensure they are all using the same version and (iii) make sure that all configuration files are correct. Is anyone willing to tell me whether the above is a sound plan AND, if it is tell me how to go about it. If not can anyone identify a sounf plan. I do need to get samba working and I have a host of applications on this system that do use kerberos in one form or another!! Channces are if I carry on as I am something is sure to break pretty damn soon. Thanks David David From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 16:52:19 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0EAF16A400 for ; Sat, 24 Mar 2007 16:52:19 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id 8869B13C45E for ; Sat, 24 Mar 2007 16:52:19 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.60]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070324165218.ZUBI2045.dukecmmtao03.coxmail.com@dukecmmtao03>; Sat, 24 Mar 2007 12:52:18 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Sat, 24 Mar 2007 9:52:18 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070324165218.ZUBI2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: youshi10@u.washington.edu, john.marshall@riverwillow.com.au Subject: Re: samba3 compile failure 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, 24 Mar 2007 16:52:20 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion > Sent: Saturday, March 24, 2007 9:23 AM > To: john.marshall@riverwillow.com.au > Cc: ports@freebsd.org; youshi10@u.washington.edu > Subject: Re: samba3 compile failure > > Vizion wrote: > > > > > >> -----Original Message----- > >> From: owner-freebsd-ports@freebsd.org > >> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion > >> Sent: Friday, March 23, 2007 3:37 AM > >> To: ports@freebsd.org > >> Subject: samba3 compile failure > >> > >> Trying to compile samba... > >> Is up with my kerberos? > >> If so I do not know how to fix it :-( > >> If not what?? > >> Thanks in advance > >> david > >> > ------< snip >------ > >> `krb5_principal_get_realm' > >> /usr/lib/libgssapi.so: undefined reference to > `krb5_set_error_string' > >> /usr/lib/libgssapi.so: undefined reference to `krb5_make_principal' > >> /usr/lib/libgssapi.so: undefined reference to `krb5_store_keyblock' > >> *** Error code 1 > >> > >> Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. > >> *** Error code 1 > >> > >> Stop in /usr/ports/net/samba3. > >> [root@dns1 /usr/ports/net/samba3]# > >> > > Just though I should mention that this freebsd 6.1 system > has krb5-1.6 installed. Is this the version of kerberos that > is installed by default with 6_1? > > > > David > > If you have installed the MIT Kerberos Port, you need to tell > the Samba > build where to find it... > --- > > Thank you guys for giving so generously of your time and > being so helpful. > > I have sent a compressed version of config.log to John and > Garrett direct as I did not want to load everyone with the > file. Hope that is OK. > As recomended I tried: > > # cd /usr/ports/net/samba3 > # make KRB5_HOME=/usr/local install clean > > But still got the same errors. > > It seems highly likely that my dependencies for kerberos are > screwed up. Is there a sure fire way of checking up on them? > My guess is that at some time I responded innapropriately to > the pkgdb -F dialogue and screwed up the existing installation. > > pkg_info reports krb5-1.6 as installed. > > If practical O wonder if it might be best to: > a. identify what version of kerberos are installed. > b. deinstall them all. > c. decide on a version to install. > d. (i) build it and > (ii) rebuild all dependencies to ensure they are all using > the same version and > (iii) make sure that all configuration files are correct. > > Is anyone willing to tell me whether the above is a sound > plan AND, if it is tell me how to go about it. If not can > anyone identify a sounf plan. I do need to get samba working > and I have a host of applications on this system that do use > kerberos in one form or another!! > > Channces are if I carry on as I am something is sure to break > pretty damn soon. > > Thanks > > David > I have been challenging myself by studying http://www.lpthe.jussieu.fr/~talon/freebsdports.html which is not easy going for me. In consequence I checked the contents of /var/db/pkg/krb5-1.6 and found that +REQUIRED_BY has no entries. I hope this info may be useful. David From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 18:24:38 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4ED0816A401 for ; Sat, 24 Mar 2007 18:24:38 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03.coxmail.com (dukecmmtao03.coxmail.com [68.99.120.70]) by mx1.freebsd.org (Postfix) with ESMTP id E3C1813C4BA for ; Sat, 24 Mar 2007 18:24:37 +0000 (UTC) (envelope-from vizion@vizion.occoxmail.com) Received: from dukecmmtao03 ([172.18.22.61]) by dukecmmtao03.coxmail.com (InterMail vM.6.01.06.01 201-2131-130-101-20060113) with SMTP id <20070324182437.EBEM2045.dukecmmtao03.coxmail.com@dukecmmtao03>; Sat, 24 Mar 2007 14:24:37 -0400 X-Mailer: Openwave WebEngine, version 2.8.16 (webedge20-101-1106-20040809) From: Vizion Organization: vizion Communications To: Date: Sat, 24 Mar 2007 11:24:36 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Message-Id: <20070324182437.EBEM2045.dukecmmtao03.coxmail.com@dukecmmtao03> Cc: youshi10@u.washington.edu, john.marshall@riverwillow.com.au Subject: Re: samba3 compile failure --SOLVED!! 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, 24 Mar 2007 18:24:38 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion > Sent: Saturday, March 24, 2007 9:52 AM > To: ports@freebsd.org > Cc: youshi10@u.washington.edu; john.marshall@riverwillow.com.au > Subject: Re: samba3 compile failure > > > > > -----Original Message----- > > From: owner-freebsd-ports@freebsd.org > > [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion > > Sent: Saturday, March 24, 2007 9:23 AM > > To: john.marshall@riverwillow.com.au > > Cc: ports@freebsd.org; youshi10@u.washington.edu > > Subject: Re: samba3 compile failure > > > > Vizion wrote: > > > > > > > > >> -----Original Message----- > > >> From: owner-freebsd-ports@freebsd.org > > >> [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Vizion > > >> Sent: Friday, March 23, 2007 3:37 AM > > >> To: ports@freebsd.org > > >> Subject: samba3 compile failure > > >> > > >> Trying to compile samba... > > >> Is up with my kerberos? > > >> If so I do not know how to fix it :-( > > >> If not what?? > > >> Thanks in advance > > >> david > > >> > > ------< snip >------ > > >> `krb5_principal_get_realm' > > >> /usr/lib/libgssapi.so: undefined reference to > > `krb5_set_error_string' > > >> /usr/lib/libgssapi.so: undefined reference to > `krb5_make_principal' > > >> /usr/lib/libgssapi.so: undefined reference to > `krb5_store_keyblock' > > >> *** Error code 1 > > >> > > >> Stop in /usr/ports/net/samba3/work/samba-3.0.24/source. > > >> *** Error code 1 > > >> > > >> Stop in /usr/ports/net/samba3. > > >> [root@dns1 /usr/ports/net/samba3]# > > >> > > > Just though I should mention that this freebsd 6.1 system > > has krb5-1.6 installed. Is this the version of kerberos that > > is installed by default with 6_1? > > > > > > David > > > > If you have installed the MIT Kerberos Port, you need to tell > > the Samba > > build where to find it... > > --- > > > > Thank you guys for giving so generously of your time and > > being so helpful. > > > > I have sent a compressed version of config.log to John and > > Garrett direct as I did not want to load everyone with the > > file. Hope that is OK. > > As recomended I tried: > > > > # cd /usr/ports/net/samba3 > > # make KRB5_HOME=/usr/local install clean > > > > But still got the same errors. > > > > It seems highly likely that my dependencies for kerberos are > > screwed up. Is there a sure fire way of checking up on them? > > My guess is that at some time I responded innapropriately to > > the pkgdb -F dialogue and screwed up the existing installation. > > > > pkg_info reports krb5-1.6 as installed. > > > > If practical O wonder if it might be best to: > > a. identify what version of kerberos are installed. > > b. deinstall them all. > > c. decide on a version to install. > > d. (i) build it and > > (ii) rebuild all dependencies to ensure they are all using > > the same version and > > (iii) make sure that all configuration files are correct. > > > > Is anyone willing to tell me whether the above is a sound > > plan AND, if it is tell me how to go about it. If not can > > anyone identify a sounf plan. I do need to get samba working > > and I have a host of applications on this system that do use > > kerberos in one form or another!! > > > > Channces are if I carry on as I am something is sure to break > > pretty damn soon. > > > > Thanks > > > > David > > > I have been challenging myself by studying > http://www.lpthe.jussieu.fr/~talon/freebsdports.html > which is not easy going for me. > > In consequence I checked the contents of /var/db/pkg/krb5-1.6 > and found that +REQUIRED_BY has no entries. > > I hope this info may be useful. > > David > > Well after thinking about blank +REQUIRED I thought a little more #cd /usr/ports/security/krb5 #make deinstall #make clean then # cd /usr/ports/net/samba3 # make clean # make config # make # make install And HEY PRESTO I have samba3 working.. All of which goes to show that its what you can get rid of that really matters!! Thanks again you guys you have been great David From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 18:26:54 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E1B716A404 for ; Sat, 24 Mar 2007 18:26:54 +0000 (UTC) (envelope-from victor.snezhko@gmail.com) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.241]) by mx1.freebsd.org (Postfix) with ESMTP id 5E01E13C46E for ; Sat, 24 Mar 2007 18:26:54 +0000 (UTC) (envelope-from victor.snezhko@gmail.com) Received: by an-out-0708.google.com with SMTP id c24so1622787ana for ; Sat, 24 Mar 2007 11:26:53 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=pLoM16Agc0rWxyqCKe9HDl5nast3IvLM4/+465aFqIBxv5oiGXcGtd5dM+5NY6uvKI89G60JgFFCYWeVEWhtOlZ7iJ3mwVxYcXC6Xa1D2DekBI496Ph5nhd+7vpQ75FyG+PTfQGsKmSfs9ma9FPDCJG7cD/PTKWEyCLnyqL3XXo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=MxskAIfK2UD4VTHaGQoToz/z+5Srt5gAaa1twAh2lAMsmXEECGObwN4wo63IOvXlcvj6qh/lhIXWYcBSUxBvcXg9Nrcup5vBesRGSpkGp1vgDIq+gtQbgdojDq/M8TtjU2s0Tq52TPeWMAQ65FHDsOOvcdWfg0IPuMAAnqUhS6I= Received: by 10.100.133.9 with SMTP id g9mr3664866and.1174759227996; Sat, 24 Mar 2007 11:00:27 -0700 (PDT) Received: by 10.100.124.12 with HTTP; Sat, 24 Mar 2007 11:00:27 -0700 (PDT) Message-ID: <4e7241860703241100p5e9ef3d8p24832cb99e62878d@mail.gmail.com> Date: Sun, 25 Mar 2007 00:00:27 +0600 From: "Victor Snezhko" To: "Robert Huff" In-Reply-To: <17925.20108.889791.123829@jerusalem.litteratus.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <17925.20108.889791.123829@jerusalem.litteratus.org> Cc: freebsd-ports@freebsd.org Subject: Re: problem installing devel/boost 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, 24 Mar 2007 18:26:54 -0000 2007/3/24, Robert Huff : > > [I've written the listed maintianer for this port several > times, and received no response.] > > devel/boost is a dependency for a port I want to install. > "make" works fine; "make install" dies with the appended results. > (Ports tree is updated nightly; OS is -CURRENT from March 13.) > > Can anyone tell me what's going wrong? It might be my fault - > don't care, just want to get this working. This looks like a libarchive error which was fixed recently. Updating it should help you. From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 18:37:57 2007 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 16BF116A405 for ; Sat, 24 Mar 2007 18:37:57 +0000 (UTC) (envelope-from kaspars.bankovskis@delfi.lv) Received: from smtp2.delfi.lv (smtp2.delfi.lv [195.2.96.244]) by mx1.freebsd.org (Postfix) with ESMTP id 2967A13C457 for ; Sat, 24 Mar 2007 18:37:54 +0000 (UTC) (envelope-from kaspars.bankovskis@delfi.lv) Received: from localhost ([62.85.29.74]) by smtp2.delfi.lv (8.13.6/8.13.3/8.8.0) with ESMTP id l2OIKeHr096449 for ; Sat, 24 Mar 2007 20:20:41 +0200 (EET) (envelope-from kaspars.bankovskis@delfi.lv) Date: Sat, 24 Mar 2007 20:21:08 +0200 From: Kaspars Bankovskis To: FreeBSD Ports mailing list Message-ID: <20070324182108.GA25574@kei.delfi.lv> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Cc: Subject: blender-devel build fails 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, 24 Mar 2007 18:37:57 -0000 hi, I wanted to build graphics/blender-devel for my system (6.2 generic, ports up-to-date), but somehow it fails, although the port is not marked 'broken'. following output appears: /usr/local/lib/python2.4/config/libpython2.4.a(posixmodule.o)(.text+0x31e2): In function `posix_tmpnam': : warning: warning: tmpnam() possibly used unsafely; consider using mkstemp() /usr/local/lib/python2.4/config/libpython2.4.a(posixmodule.o)(.text+0x3146): In function `posix_tempnam': : warning: warning: tempnam() possibly used unsafely; consider using mkstemp() /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x8d): In function `Imf::(anonymous namespace)::typeMap()': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0xc1): In function `Imf::(anonymous namespace)::typeMap()': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x119): In function `Imf::(anonymous namespace)::typeMap()': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x133): In function `Imf::(anonymous namespace)::typeMap()': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x17b): In function `Imf::(anonymous namespace)::typeMap()': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x1aa): In function `Imf::Attribute::newAttribute(char const*)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x334): In function `Imf::Attribute::newAttribute(char const*)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x347): In function `Imf::Attribute::newAttribute(char const*)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x3a9): In function `Imf::Attribute::knownType(char const*)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x3e3): In function `Imf::Attribute::knownType(char const*)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x411): In function `Imf::Attribute::unRegisterAttributeType(char const*)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x44f): In function `Imf::Attribute::unRegisterAttributeType(char const*)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x462): In function `Imf::Attribute::unRegisterAttributeType(char const*)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x48e): In function `Imf::Attribute::registerAttributeType(char const*, Imf::Attribute* (*)())': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x630): In function `Imf::Attribute::registerAttributeType(char const*, Imf::Attribute* (*)())': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x643): In function `Imf::Attribute::registerAttributeType(char const*, Imf::Attribute* (*)())': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfAttribute.o)(.text+0x64): In function `__tcf_0': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfHeader.o)(.text+0x38): In function `Imf::staticInitialize()': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfHeader.o)(.text+0x5f): In function `Imf::staticInitialize()': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfHeader.o)(.text+0x241): In function `Imf::staticInitialize()': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfHeader.o)(.text+0x280): In function `Imf::staticInitialize()': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfHeader.o)(.text+0xc): In function `__tcf_0': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x1f3): In function `Imf::InputFile::frameBuffer() const': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x206): In function `Imf::InputFile::frameBuffer() const': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x897): In function `Imf::InputFile::readPixels(int, int)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x8bc): In function `Imf::InputFile::readPixels(int, int)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x8f4): In function `Imf::InputFile::readPixels(int, int)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0xfdb): In function `Imf::InputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x102a): In function `Imf::InputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x10bb): In function `Imf::InputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x1106): In function `Imf::InputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x1197): In function `Imf::InputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x11e2): more undefined references to `IlmThread::Mutex::~Mutex()' follow /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x1230): In function `Imf::InputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x12c3): In function `Imf::InputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x1f28): In function `Imf::InputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x1fbb): In function `Imf::InputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x1fff): In function `Imf::InputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x20bc): In function `Imf::InputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.text+0x2299): In function `Imf::InputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfInputFile.o)(.gnu.linkonce.r._ZTIN3Imf9InputFile4DataE+0x8): undefined reference to `typeinfo for IlmThread::Mutex' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x81): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x89): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x9f): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0xc5): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0xcd): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0xe3): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x109): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x111): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x12f): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x17a): In function `Imf::OutputFile::frameBuffer() const': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x18d): In function `Imf::OutputFile::frameBuffer() const': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x1b2): In function `Imf::OutputFile::currentScanLine() const': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x1c5): In function `Imf::OutputFile::currentScanLine() const': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x1fb): In function `Imf::(anonymous namespace)::LineBuffer::~LineBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x252): In function `Imf::(anonymous namespace)::LineBuffer::~LineBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x303): In function `Imf::(anonymous namespace)::LineBuffer::~LineBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x35a): In function `Imf::(anonymous namespace)::LineBuffer::~LineBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x420): In function `Imf::(anonymous namespace)::LineBuffer::LineBuffer(Imf::Compressor*)': : undefined reference to `IlmThread::Semaphore::Semaphore(unsigned int)' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x4c4): In function `Imf::(anonymous namespace)::LineBuffer::LineBuffer(Imf::Compressor*)': : undefined reference to `IlmThread::Semaphore::Semaphore(unsigned int)' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x53f): In function `Imf::(anonymous namespace)::LineBufferTask::LineBufferTask(IlmThread::TaskGroup*, Imf::OutputFile::Data*, int, int, int)': : undefined reference to `IlmThread::Task::Task(IlmThread::TaskGroup*)' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x573): In function `Imf::(anonymous namespace)::LineBufferTask::LineBufferTask(IlmThread::TaskGroup*, Imf::OutputFile::Data*, int, int, int)': : undefined reference to `IlmThread::Semaphore::wait()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x60f): In function `Imf::(anonymous namespace)::LineBufferTask::LineBufferTask(IlmThread::TaskGroup*, Imf::OutputFile::Data*, int, int, int)': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x62f): In function `Imf::(anonymous namespace)::LineBufferTask::LineBufferTask(IlmThread::TaskGroup*, Imf::OutputFile::Data*, int, int, int)': : undefined reference to `IlmThread::Task::Task(IlmThread::TaskGroup*)' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x663): In function `Imf::(anonymous namespace)::LineBufferTask::LineBufferTask(IlmThread::TaskGroup*, Imf::OutputFile::Data*, int, int, int)': : undefined reference to `IlmThread::Semaphore::wait()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x6ff): In function `Imf::(anonymous namespace)::LineBufferTask::LineBufferTask(IlmThread::TaskGroup*, Imf::OutputFile::Data*, int, int, int)': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x11b4): In function `Imf::OutputFile::breakScanLine(int, int, int, char)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x13eb): In function `Imf::OutputFile::breakScanLine(int, int, int, char)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x13fe): In function `Imf::OutputFile::breakScanLine(int, int, int, char)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x146f): In function `Imf::OutputFile::updatePreviewImage(Imf::PreviewRgba const*)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x16c3): In function `Imf::OutputFile::updatePreviewImage(Imf::PreviewRgba const*)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x18cc): In function `Imf::OutputFile::updatePreviewImage(Imf::PreviewRgba const*)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x19b8): In function `Imf::OutputFile::copyPixels(Imf::InputFile&)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x1abf): In function `Imf::OutputFile::copyPixels(Imf::InputFile&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2035): In function `Imf::OutputFile::copyPixels(Imf::InputFile&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2070): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x20d0): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::TaskGroup::TaskGroup()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x21dc): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::Semaphore::wait()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x223e): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2395): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::ThreadPool::addGlobalTask(IlmThread::Task*)' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2403): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::ThreadPool::addGlobalTask(IlmThread::Task*)' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x243d): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2638): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::TaskGroup::~TaskGroup()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x26d5): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::ThreadPool::addGlobalTask(IlmThread::Task*)' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2770): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x277b): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::TaskGroup::~TaskGroup()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x27a3): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::TaskGroup::~TaskGroup()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2823): In function `Imf::OutputFile::writePixels(int)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2978): In function `Imf::OutputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2a95): In function `Imf::OutputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2bb0): In function `Imf::OutputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2cc5): In function `Imf::OutputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2de0): In function `Imf::OutputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2ef5): more undefined references to `IlmThread::Mutex::~Mutex()' follow /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2f38): In function `Imf::OutputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x2ff3): In function `Imf::OutputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x34ef): In function `Imf::OutputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x3569): In function `Imf::OutputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x36f7): In function `Imf::OutputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x37bd): In function `Imf::OutputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.text+0x394b): In function `Imf::OutputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.gnu.linkonce.r._ZTIN3Imf10OutputFile4DataE+0x8): undefined reference to `typeinfo for IlmThread::Mutex' /usr/local/lib/libIlmImf.a(ImfOutputFile.o)(.gnu.linkonce.r._ZTIN3Imf46_GLOBAL__N_ImfOutputFile.cpp_BB1BCFDB_227E2F4914LineBufferTaskE+0x8): undefined reference to `typeinfo for IlmThread::Task' /usr/local/lib/libIlmImf.a(ImfThreading.o)(.text+0x7): In function `Imf::globalThreadCount()': : undefined reference to `IlmThread::ThreadPool::globalThreadPool()' /usr/local/lib/libIlmImf.a(ImfThreading.o)(.text+0xf): In function `Imf::globalThreadCount()': : undefined reference to `IlmThread::ThreadPool::numThreads() const' /usr/local/lib/libIlmImf.a(ImfThreading.o)(.text+0x23): In function `Imf::setGlobalThreadCount(int)': : undefined reference to `IlmThread::ThreadPool::globalThreadPool()' /usr/local/lib/libIlmImf.a(ImfThreading.o)(.text+0x2b): In function `Imf::setGlobalThreadCount(int)': : undefined reference to `IlmThread::ThreadPool::setNumThreads(int)' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0xa7): In function `Imf::(anonymous namespace)::LineBufferTask::LineBufferTask(IlmThread::TaskGroup*, Imf::ScanLineInputFile::Data*, Imf::(anonymous namespace)::LineBuffer*, int, int)': : undefined reference to `IlmThread::Task::Task(IlmThread::TaskGroup*)' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0xe3): In function `Imf::(anonymous namespace)::LineBufferTask::LineBufferTask(IlmThread::TaskGroup*, Imf::ScanLineInputFile::Data*, Imf::(anonymous namespace)::LineBuffer*, int, int)': : undefined reference to `IlmThread::Task::Task(IlmThread::TaskGroup*)' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x129): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x131): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x147): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x16d): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x175): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x18b): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1b1): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1b9): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1d7): In function `Imf::(anonymous namespace)::LineBufferTask::~LineBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x232): In function `Imf::ScanLineInputFile::frameBuffer() const': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x245): In function `Imf::ScanLineInputFile::frameBuffer() const': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x28b): In function `Imf::(anonymous namespace)::LineBuffer::~LineBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x2d2): In function `Imf::(anonymous namespace)::LineBuffer::~LineBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x353): In function `Imf::(anonymous namespace)::LineBuffer::~LineBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x39a): In function `Imf::(anonymous namespace)::LineBuffer::~LineBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x43e): In function `Imf::(anonymous namespace)::LineBuffer::LineBuffer(Imf::Compressor*)': : undefined reference to `IlmThread::Semaphore::Semaphore(unsigned int)' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x4ea): In function `Imf::(anonymous namespace)::LineBuffer::LineBuffer(Imf::Compressor*)': : undefined reference to `IlmThread::Semaphore::Semaphore(unsigned int)' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0xc06): In function `Imf::ScanLineInputFile::rawPixelData(int, char const*&, int&)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0xc75): In function `Imf::ScanLineInputFile::rawPixelData(int, char const*&, int&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0xec2): In function `Imf::ScanLineInputFile::rawPixelData(int, char const*&, int&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0xf7a): In function `Imf::(anonymous namespace)::newLineBufferTask(IlmThread::TaskGroup*, Imf::ScanLineInputFile::Data*, int, int, int)': : undefined reference to `IlmThread::Semaphore::wait()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1028): In function `Imf::(anonymous namespace)::newLineBufferTask(IlmThread::TaskGroup*, Imf::ScanLineInputFile::Data*, int, int, int)': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1079): In function `Imf::ScanLineInputFile::readPixels(int, int)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1172): In function `Imf::ScanLineInputFile::readPixels(int, int)': : undefined reference to `IlmThread::TaskGroup::TaskGroup()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x11a8): In function `Imf::ScanLineInputFile::readPixels(int, int)': : undefined reference to `IlmThread::ThreadPool::addGlobalTask(IlmThread::Task*)' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x11cd): In function `Imf::ScanLineInputFile::readPixels(int, int)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1403): In function `Imf::ScanLineInputFile::readPixels(int, int)': : undefined reference to `IlmThread::TaskGroup::~TaskGroup()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x143c): In function `Imf::ScanLineInputFile::readPixels(int, int)': : undefined reference to `IlmThread::TaskGroup::~TaskGroup()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x149d): In function `Imf::ScanLineInputFile::readPixels(int, int)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1a94): In function `Imf::ScanLineInputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1b95): In function `Imf::ScanLineInputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1c90): In function `Imf::ScanLineInputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1d89): In function `Imf::ScanLineInputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1e84): In function `Imf::ScanLineInputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1f7d): more undefined references to `IlmThread::Mutex::~Mutex()' follow /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x1fc0): In function `Imf::ScanLineInputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x206b): In function `Imf::ScanLineInputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x2517): In function `Imf::ScanLineInputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x2536): In function `Imf::ScanLineInputFile::Data::Data(Imf::IStream*, int)': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x26a3): In function `Imf::ScanLineInputFile::Data::Data(Imf::IStream*, int)': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x2762): In function `Imf::ScanLineInputFile::Data::Data(Imf::IStream*, int)': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.text+0x28cf): In function `Imf::ScanLineInputFile::Data::Data(Imf::IStream*, int)': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.gnu.linkonce.r._ZTIN3Imf17ScanLineInputFile4DataE+0x8): undefined reference to `typeinfo for IlmThread::Mutex' /usr/local/lib/libIlmImf.a(ImfScanLineInputFile.o)(.gnu.linkonce.r._ZTIN3Imf53_GLOBAL__N_ImfScanLineInputFile.cpp_BB1BCFDB_5E398BE114LineBufferTaskE+0x8): undefined reference to `typeinfo for IlmThread::Task' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0xa7): In function `Imf::(anonymous namespace)::TileBufferTask::TileBufferTask(IlmThread::TaskGroup*, Imf::TiledInputFile::Data*, Imf::(anonymous namespace)::TileBuffer*)': : undefined reference to `IlmThread::Task::Task(IlmThread::TaskGroup*)' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0xd7): In function `Imf::(anonymous namespace)::TileBufferTask::TileBufferTask(IlmThread::TaskGroup*, Imf::TiledInputFile::Data*, Imf::(anonymous namespace)::TileBuffer*)': : undefined reference to `IlmThread::Task::Task(IlmThread::TaskGroup*)' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x111): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x119): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x12f): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x155): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x15d): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x173): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x199): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x1a1): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x1bf): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x21a): In function `Imf::TiledInputFile::frameBuffer() const': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x22d): In function `Imf::TiledInputFile::frameBuffer() const': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x447): In function `Imf::(anonymous namespace)::TileBuffer::~TileBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x48e): In function `Imf::(anonymous namespace)::TileBuffer::~TileBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x50f): In function `Imf::(anonymous namespace)::TileBuffer::~TileBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x556): In function `Imf::(anonymous namespace)::TileBuffer::~TileBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x608): In function `Imf::(anonymous namespace)::TileBuffer::TileBuffer(Imf::Compressor*)': : undefined reference to `IlmThread::Semaphore::Semaphore(unsigned int)' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x6c0): In function `Imf::(anonymous namespace)::TileBuffer::TileBuffer(Imf::Compressor*)': : undefined reference to `IlmThread::Semaphore::Semaphore(unsigned int)' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x1a65): In function `Imf::TiledInputFile::rawTileData(int&, int&, int&, int&, char const*&, int&)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x1afb): In function `Imf::TiledInputFile::rawTileData(int&, int&, int&, int&, char const*&, int&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x1b15): In function `Imf::TiledInputFile::rawTileData(int&, int&, int&, int&, char const*&, int&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x22e2): In function `Imf::(anonymous namespace)::newTileBufferTask(IlmThread::TaskGroup*, Imf::TiledInputFile::Data*, int, int, int, int, int)': : undefined reference to `IlmThread::Semaphore::wait()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x2355): In function `Imf::(anonymous namespace)::newTileBufferTask(IlmThread::TaskGroup*, Imf::TiledInputFile::Data*, int, int, int, int, int)': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x23bd): In function `Imf::TiledInputFile::readTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x2447): In function `Imf::TiledInputFile::readTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::TaskGroup::TaskGroup()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x24c4): In function `Imf::TiledInputFile::readTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::ThreadPool::addGlobalTask(IlmThread::Task*)' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x24ec): In function `Imf::TiledInputFile::readTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::TaskGroup::~TaskGroup()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x2500): In function `Imf::TiledInputFile::readTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x2760): In function `Imf::TiledInputFile::readTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::TaskGroup::~TaskGroup()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x28f3): In function `Imf::TiledInputFile::readTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x2e20): In function `Imf::TiledInputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x2ecb): In function `Imf::TiledInputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x341d): In function `Imf::TiledInputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x356d): In function `Imf::TiledInputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x36ce): In function `Imf::TiledInputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x3849): In function `Imf::TiledInputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x399e): In function `Imf::TiledInputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x3b19): In function `Imf::TiledInputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x3c6e): more undefined references to `IlmThread::Mutex::~Mutex()' follow /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x3cbc): In function `Imf::TiledInputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x3e2e): In function `Imf::TiledInputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x3f4c): In function `Imf::TiledInputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.text+0x40be): In function `Imf::TiledInputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.gnu.linkonce.r._ZTIN3Imf14TiledInputFile4DataE+0x8): undefined reference to `typeinfo for IlmThread::Mutex' /usr/local/lib/libIlmImf.a(ImfTiledInputFile.o)(.gnu.linkonce.r._ZTIN3Imf50_GLOBAL__N_ImfTiledInputFile.cpp_BB1BCFDB_A86A697F14TileBufferTaskE+0x8): undefined reference to `typeinfo for IlmThread::Task' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x195): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x19d): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x1b3): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x1d9): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x1e1): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x1f7): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x21d): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x225): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x243): In function `Imf::(anonymous namespace)::TileBufferTask::~TileBufferTask()': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x466): In function `Imf::TiledOutputFile::frameBuffer() const': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x479): In function `Imf::TiledOutputFile::frameBuffer() const': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x6bf): In function `Imf::(anonymous namespace)::TileBuffer::~TileBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x716): In function `Imf::(anonymous namespace)::TileBuffer::~TileBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x7c7): In function `Imf::(anonymous namespace)::TileBuffer::~TileBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x81e): In function `Imf::(anonymous namespace)::TileBuffer::~TileBuffer()': : undefined reference to `IlmThread::Semaphore::~Semaphore()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x8ff): In function `Imf::(anonymous namespace)::TileBuffer::TileBuffer(Imf::Compressor*)': : undefined reference to `IlmThread::Semaphore::Semaphore(unsigned int)' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x9bf): In function `Imf::(anonymous namespace)::TileBuffer::TileBuffer(Imf::Compressor*)': : undefined reference to `IlmThread::Semaphore::Semaphore(unsigned int)' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0xa3f): In function `Imf::(anonymous namespace)::TileBufferTask::TileBufferTask(IlmThread::TaskGroup*, Imf::TiledOutputFile::Data*, int, int, int, int, int)': : undefined reference to `IlmThread::Task::Task(IlmThread::TaskGroup*)' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0xa73): In function `Imf::(anonymous namespace)::TileBufferTask::TileBufferTask(IlmThread::TaskGroup*, Imf::TiledOutputFile::Data*, int, int, int, int, int)': : undefined reference to `IlmThread::Semaphore::wait()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0xab7): In function `Imf::(anonymous namespace)::TileBufferTask::TileBufferTask(IlmThread::TaskGroup*, Imf::TiledOutputFile::Data*, int, int, int, int, int)': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0xadb): In function `Imf::(anonymous namespace)::TileBufferTask::TileBufferTask(IlmThread::TaskGroup*, Imf::TiledOutputFile::Data*, int, int, int, int, int)': : undefined reference to `IlmThread::Task::Task(IlmThread::TaskGroup*)' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0xb0f): In function `Imf::(anonymous namespace)::TileBufferTask::TileBufferTask(IlmThread::TaskGroup*, Imf::TiledOutputFile::Data*, int, int, int, int, int)': : undefined reference to `IlmThread::Semaphore::wait()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0xb53): In function `Imf::(anonymous namespace)::TileBufferTask::TileBufferTask(IlmThread::TaskGroup*, Imf::TiledOutputFile::Data*, int, int, int, int, int)': : undefined reference to `IlmThread::Task::~Task()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0xb93): In function `Imf::TiledOutputFile::breakTile(int, int, int, int, int, int, char)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0xdcb): In function `Imf::TiledOutputFile::breakTile(int, int, int, int, int, int, char)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0xead): In function `Imf::TiledOutputFile::breakTile(int, int, int, int, int, int, char)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0xf4f): In function `Imf::TiledOutputFile::updatePreviewImage(Imf::PreviewRgba const*)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x11a3): In function `Imf::TiledOutputFile::updatePreviewImage(Imf::PreviewRgba const*)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x13ac): In function `Imf::TiledOutputFile::updatePreviewImage(Imf::PreviewRgba const*)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x2600): In function `Imf::TiledOutputFile::copyPixels(Imf::TiledInputFile&)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x2703): In function `Imf::TiledOutputFile::copyPixels(Imf::TiledInputFile&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x2ed8): In function `Imf::TiledOutputFile::copyPixels(Imf::TiledInputFile&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x3a6f): In function `Imf::TiledOutputFile::writeTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x3bb5): In function `Imf::TiledOutputFile::writeTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::TaskGroup::TaskGroup()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x3c3b): In function `Imf::TiledOutputFile::writeTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::Semaphore::wait()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x3c6d): In function `Imf::TiledOutputFile::writeTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::Semaphore::post()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x3d01): In function `Imf::TiledOutputFile::writeTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x3ea0): In function `Imf::TiledOutputFile::writeTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::ThreadPool::addGlobalTask(IlmThread::Task*)' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x3fa1): In function `Imf::TiledOutputFile::writeTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::TaskGroup::~TaskGroup()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x3fb5): In function `Imf::TiledOutputFile::writeTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::TaskGroup::~TaskGroup()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x404d): In function `Imf::TiledOutputFile::writeTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x40a0): In function `Imf::TiledOutputFile::writeTiles(int, int, int, int, int, int)': : undefined reference to `IlmThread::ThreadPool::addGlobalTask(IlmThread::Task*)' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x41f8): In function `Imf::TiledOutputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::lock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x42a7): In function `Imf::TiledOutputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x4718): In function `Imf::TiledOutputFile::setFrameBuffer(Imf::FrameBuffer const&)': : undefined reference to `IlmThread::Mutex::unlock() const' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x4a0a): In function `Imf::TiledOutputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x4b08): In function `Imf::TiledOutputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x4da6): In function `Imf::TiledOutputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x4ea4): In function `Imf::TiledOutputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x513a): In function `Imf::TiledOutputFile::Data::~Data()': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x5238): more undefined references to `IlmThread::Mutex::~Mutex()' follow /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x5264): In function `Imf::TiledOutputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x5436): In function `Imf::TiledOutputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x557c): In function `Imf::TiledOutputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.text+0x574e): In function `Imf::TiledOutputFile::Data::Data(bool, int)': : undefined reference to `IlmThread::Mutex::~Mutex()' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.gnu.linkonce.r._ZTIN3Imf15TiledOutputFile4DataE+0x8): undefined reference to `typeinfo for IlmThread::Mutex' /usr/local/lib/libIlmImf.a(ImfTiledOutputFile.o)(.gnu.linkonce.r._ZTIN3Imf51_GLOBAL__N_ImfTiledOutputFile.cpp_BB1BCFDB_7514B21C14TileBufferTaskE+0x8): undefined reference to `typeinfo for IlmThread::Task' gmake[1]: *** [/usr/ports/graphics/blender-devel/work/blender-2.43/obj/freebsd/bin/blender] Error 1 gmake: *** [all] Error 1 *** Error code 2 Stop in /usr/ports/graphics/blender-devel. any ideas? From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 20:22:12 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 24C1B16A400 for ; Sat, 24 Mar 2007 20:22:12 +0000 (UTC) (envelope-from marcin@studio4plus.com) Received: from pe78.opole.sdi.tpnet.pl (pe78.opole.sdi.tpnet.pl [217.96.240.78]) by mx1.freebsd.org (Postfix) with ESMTP id B0BAF13C4C5 for ; Sat, 24 Mar 2007 20:22:11 +0000 (UTC) (envelope-from marcin@studio4plus.com) Received: from [84.10.174.185] (helo=[192.168.0.101]) by pe78.opole.sdi.tpnet.pl with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1HVC6U-0000OR-BX for freebsd-ports@freebsd.org; Sat, 24 Mar 2007 20:40:49 +0100 Message-ID: <460580F9.80602@studio4plus.com> Date: Sat, 24 Mar 2007 20:50:17 +0100 From: Marcin Simonides User-Agent: Thunderbird 1.5.0.10 (X11/20070314) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Subject: New port - please review 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, 24 Mar 2007 20:22:12 -0000 I've made a port for gnome-subtitles, a subtitle editor with video preview (http://gnome-subtitles.sourceforge.net/). Since this is my first port I'd like to ask you to review and test it before I submit it. The file may be downloaded here: http://marcin.studio4plus.com/files/gnome-subtitles-port.tgz Just untar it in /usr/ports, multimedia/gnome-subtitles will be created. It requires (quoting the website): Mono >= 1.1 (mono to run, gmcs to build) Gtk-Sharp >= 2.8 Glade-Sharp >= 2.8 Gnome-Sharp >= 2.8 Gtk+ >= 2.8 and optionally mplayer. I hope that adding only the highest-level dependencies (eg. no gtk, since it is required by gtk-sharp) is enough. It works fine on my system (6.2-stable) but package registration takes a very long time. Is it normal (there is a lot of gnome dependencies to register, I think) or is something wrong? Thanks in advance! -- Marcin Simonides From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 20:28:52 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C0E8616A403 for ; Sat, 24 Mar 2007 20:28:52 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 8585D13C4AE for ; Sat, 24 Mar 2007 20:28:52 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr02.lnh.mail.rcn.net ([207.172.157.22]) by smtp02.lnh.mail.rcn.net with ESMTP; 24 Mar 2007 16:28:52 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr02.lnh.mail.rcn.net (MOS 3.8.3-GA) with ESMTP id NBX65602; Sat, 24 Mar 2007 16:28:51 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 24 Mar 2007 16:28:33 -0500 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17925.35331.202999.946235@jerusalem.litteratus.org> Date: Sat, 24 Mar 2007 16:28:51 -0400 To: freebsd-ports@freebsd.org In-Reply-To: <4e7241860703241100p5e9ef3d8p24832cb99e62878d@mail.gmail.com> References: <17925.20108.889791.123829@jerusalem.litteratus.org> <4e7241860703241100p5e9ef3d8p24832cb99e62878d@mail.gmail.com> X-Mailer: VM 7.17 under 21.5 (beta27) "fiddleheads" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr02.lnh.mail.rcn.net) Subject: Re: problem installing devel/boost 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, 24 Mar 2007 20:28:52 -0000 Victor Snezhko writes: > This looks like a libarchive error which was fixed recently. Updating > it should help you. Didn't work. Robert Huff From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 22:21:51 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2088416A404 for ; Sat, 24 Mar 2007 22:21:51 +0000 (UTC) (envelope-from pneumann@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.227]) by mx1.freebsd.org (Postfix) with ESMTP id D3C3A13C484 for ; Sat, 24 Mar 2007 22:21:50 +0000 (UTC) (envelope-from pneumann@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so1540371wxc for ; Sat, 24 Mar 2007 15:21:50 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:subject:from:to:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=dMWeTU4SnJhZq0TBlnsdrWrJx4ZwuGn+bdM/QJvEx0R7KWI2u6gFm9SNAS9AxFA+Gbujux3h8ljKA/+GG7TgWq2CgvdIPfwEDD332UXT8XJYdlwEgjvJSvGe5ibBU+YOpP3LRuJ6Pgu8w78ea5ykPvCOZWwCcu3h/zuG9n5SKuk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:subject:from:to:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=nMmyF92Y7HMjpeORAY3jPA8QkRBGEsMDbNIXTBxiVhdFmoWf6py0FIJ+Ixg404bYG853Sa8gvM2MnBHTf6fH0bhwTUjr3/nmmjRg8jzcwaO6zDkvG77A3GEehog4dI7CyytKtFETjiCI7ZIyvnsk7jdJnwEWloQPgQOVeIqFKj0= Received: by 10.70.122.11 with SMTP id u11mr8239858wxc.1174773358360; Sat, 24 Mar 2007 14:55:58 -0700 (PDT) Received: from ?10.0.0.130? ( [201.215.221.113]) by mx.google.com with ESMTP id g5sm6585370wra.2007.03.24.14.55.56; Sat, 24 Mar 2007 14:55:57 -0700 (PDT) From: KillFill To: Marcin Simonides , freebsd-ports@freebsd.org In-Reply-To: <460580F9.80602@studio4plus.com> References: <460580F9.80602@studio4plus.com> Content-Type: text/plain; charset=UTF-8 Date: Sat, 24 Mar 2007 18:49:00 -0400 Message-Id: <1174776540.881.10.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.8.2.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 8bit Cc: Subject: Re: New port - please review 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, 24 Mar 2007 22:21:51 -0000 Hello Marcin! actually the BSD# ports repo, already got gnome-subtitles! take a look: http://forgecvs1.novell.com/viewcvs/bsd-sharp/FreeBSD-ports/multimedia/gnome-subtitles/ Soon, it will be merge into FreeBSD port possible with monodevelop too. Boths, looks very much the same. thanks!! El sáb, 24-03-2007 a las 20:50 +0100, Marcin Simonides escribió: > I've made a port for gnome-subtitles, a subtitle editor with video > preview (http://gnome-subtitles.sourceforge.net/). > > Since this is my first port I'd like to ask you to review and test it > before I submit it. > > The file may be downloaded here: > http://marcin.studio4plus.com/files/gnome-subtitles-port.tgz > Just untar it in /usr/ports, multimedia/gnome-subtitles will be created. > > It requires (quoting the website): > > Mono >= 1.1 (mono to run, gmcs to build) > Gtk-Sharp >= 2.8 > Glade-Sharp >= 2.8 > Gnome-Sharp >= 2.8 > Gtk+ >= 2.8 > > and optionally mplayer. I hope that adding only the highest-level > dependencies (eg. no gtk, since it is required by gtk-sharp) is enough. > > It works fine on my system (6.2-stable) but package registration takes a > very long time. Is it normal (there is a lot of gnome dependencies to > register, I think) or is something wrong? > > Thanks in advance! -- KillFill From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 22:44:41 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C147816A401 for ; Sat, 24 Mar 2007 22:44:41 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.228]) by mx1.freebsd.org (Postfix) with ESMTP id 7ED2F13C455 for ; Sat, 24 Mar 2007 22:44:41 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so1543701wxc for ; Sat, 24 Mar 2007 15:44:41 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; 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; b=liMgUbeLNIseePYu0b0sxNrU7yJ/d7dzECsOagPhU3U0o1AN+ZMrLGYZJ5exdsdJrNxhjzGZigdXcC7c67Khy4VJUQfC2qMx0b7U0hOEFjdRI1m7lj+huqnjYFmsyGCWGFPr/SfDuyNXcykD4Ow1dcMi8ZXxd2gFo8mXV0yO8og= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=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; b=COHA+1kvSdqIR+KDUUQIAdn8oAIypWf0fqL5OVS9t41vUjryaK23jYzIOaCDfxI/4EzB2/MgXsgpViRF/cudldsgjXFXeh9WlK8UxDPJrwMf8XOcOdY5nK6rEUYv9CBIMxCAKxw2Kftjw63FDoVApsJtklM5Rpr7pJzfU6HAJxg= Received: by 10.114.13.1 with SMTP id 1mr1862690wam.1174776280331; Sat, 24 Mar 2007 15:44:40 -0700 (PDT) Received: by 10.114.201.2 with HTTP; Sat, 24 Mar 2007 15:44:40 -0700 (PDT) Message-ID: Date: Sun, 25 Mar 2007 01:44:40 +0300 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: KillFill In-Reply-To: <1174776540.881.10.camel@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <460580F9.80602@studio4plus.com> <1174776540.881.10.camel@localhost> X-Google-Sender-Auth: 304a407707cceb7b Cc: freebsd-ports@freebsd.org, Marcin Simonides Subject: Re: New port - please review 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, 24 Mar 2007 22:44:41 -0000 On 3/25/07, KillFill wrote: > > Hello Marcin! > > actually the BSD# ports repo, already got gnome-subtitles! "already" as in "2 hours after Marcin's mail"? It happens all the time - two people working on the same thing independently. I'm sure you both did a great job porting gnome-subtitles. Just be sure to mention each other when it gets committed. Cheers! From owner-freebsd-ports@FreeBSD.ORG Sat Mar 24 22:55:51 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AE91616A401 for ; Sat, 24 Mar 2007 22:55:51 +0000 (UTC) (envelope-from pneumann@gmail.com) Received: from ik-out-1112.google.com (ik-out-1112.google.com [66.249.90.178]) by mx1.freebsd.org (Postfix) with ESMTP id 4404713C455 for ; Sat, 24 Mar 2007 22:55:50 +0000 (UTC) (envelope-from pneumann@gmail.com) Received: by ik-out-1112.google.com with SMTP id c21so1593627ika for ; Sat, 24 Mar 2007 15:55:49 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:subject:from:to:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=U+DCZ3VJcH399TpkTtFACeFA+Pw6RxqOpx29MBJz6pyhUTyPshh2bnld/RRKny0JcYkVQT9TIfF4DXh28dDPpL68ac6J0+E96wbbpUdC90OOPj+TZ4U/ljP2uCgksGy/oCbunJ8h6XStejgL9ikLrFw9zkPrCMkCYDOqgNYMm2Q= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:subject:from:to:in-reply-to:references:content-type:date:message-id:mime-version:x-mailer:content-transfer-encoding; b=WzpCWnbbKNQ8ilVV21jOgFs5bL9RQhjC+JewlJq1yghZYsMMJ5k82k+KfMgz3nRXE2IUqHhzhrPM9Fobip6aQRoABFXkSV0MaNpUQCt7GulqKKycr1CcJNebBy0tA3Dzf1KlljnunGHs9Mm4ZEGoQUPw8vawz/lrOiqvdXiKGqs= Received: by 10.70.69.11 with SMTP id r11mr8284517wxa.1174776949231; Sat, 24 Mar 2007 15:55:49 -0700 (PDT) Received: from ?10.0.0.130? ( [201.215.221.113]) by mx.google.com with ESMTP id h35sm8570613wxd.2007.03.24.15.55.47; Sat, 24 Mar 2007 15:55:48 -0700 (PDT) From: KillFill To: Andrew Pantyukhin , freebsd-ports@freebsd.org In-Reply-To: References: <460580F9.80602@studio4plus.com> <1174776540.881.10.camel@localhost> Content-Type: text/plain; charset=UTF-8 Date: Sat, 24 Mar 2007 19:48:51 -0400 Message-Id: <1174780131.881.14.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.8.2.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 8bit Cc: Subject: Re: New port - please review 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, 24 Mar 2007 22:55:51 -0000 El dom, 25-03-2007 a las 01:44 +0300, Andrew Pantyukhin escribió: > On 3/25/07, KillFill wrote: > > > > Hello Marcin! > > > > actually the BSD# ports repo, already got gnome-subtitles! > > "already" as in "2 hours after Marcin's mail"? > > It happens all the time - two people working on the > same thing independently. I'm sure you both did a > great job porting gnome-subtitles. Just be sure to > mention each other when it gets committed. > > Cheers! hehe.. yes, actually the port was in deskutils, but after seen what Marcin did, i think its better under multimedia, as there are similar ports there already. ^_^ -- KillFill