From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 00:16:58 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7014C16A4CE for ; Sun, 22 Aug 2004 00:16:58 +0000 (GMT) Received: from mxout3.cac.washington.edu (mxout3.cac.washington.edu [140.142.32.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EE5543D3F for ; Sun, 22 Aug 2004 00:16:58 +0000 (GMT) (envelope-from dsyphers@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) ESMTP id i7M0GvCD025038 for ; Sat, 21 Aug 2004 17:16:57 -0700 Received: from [192.168.1.104] (c-24-18-235-11.client.comcast.net [24.18.235.11]) (authenticated bits=0)i7M0GvDw016290 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NOT) for ; Sat, 21 Aug 2004 17:16:57 -0700 From: David Syphers To: freebsd-ports@freebsd.org Date: Sat, 21 Aug 2004 17:17:00 -0700 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408211717.00316.dsyphers@u.washington.edu> Subject: newbie porter questions X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 00:16:58 -0000 Hi, I'm trying to make my first port, and I have a few questions that I don't see answers to in the Porter's Handbook. First, I have a script that does the installation. I call it with a do-install in the Makefile, '@(cd ${SCRIPTDIR} && ./mod_install)'. portlint is complaining that I'm using absolute pathnames. Unfortunately, it's right. How do I avoid that? The variables $LOCALBASE, etc. aren't defined in my script. When I've looked at other ports that use scripts, these variables just seem to show up magically (they don't define them, but they can use them). How do I use these variables? Second, the program I'm installing claims it needs its own user. I'm trying to figure out if that's really true, but if it is, how should I go about installing a user from a port? The only port I could think of off the top of my head that did that is apache, but they have a benefit of having a standard user with a reserved userid, 80. Is there some way of figuring out which is the next available userid, or should I give up and ask people to run adduser themselves? This is a real user, that needs to be able to log in. Lastly, I've modified the install scripts that come with the program so that they're no longer interactive. However, they become interactive if there's a failure - rather than just fail, they try to get useful input from the user so they can continue. In this case, should I define IS_INTERACTIVE? If I do, but want to enable package builds, what's the right way of doing: .if (!defined(PACKAGE_BUILDING)) IS_INTERACTIVE= yes .endif The code is wrong, of course, but I don't know what the right way is. I assume it's obvious to humans what I'm trying to do, if not computers... Oh yeah, one last thing. The program's install manual keeps asking me to do 'cat /[path]/[file] | zcat | tar -xpf - '. Is there any reason that's preferable to 'tar -xzpf - /[path]/[file]' ? And what does the '-' by itself do? I couldn't seem to find an answer in tar's manpage. Thanks for the help, -David P.S. Please cc: me. -- +++ Divide By Cucumber Error. Please Reinstall Universe And Reboot. +++ From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 00:51:31 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAB5616A4CE for ; Sun, 22 Aug 2004 00:51:31 +0000 (GMT) Received: from smtp.rdsnet.ro (smtp.rdsnet.ro [62.231.74.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id E332743D41 for ; Sun, 22 Aug 2004 00:51:30 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 26805 invoked by uid 89); 22 Aug 2004 00:51:29 -0000 Received: from unknown (HELO it.buh.tecnik93.com) (81.196.204.98) by 0 with SMTP; 22 Aug 2004 00:51:29 -0000 Received: from it.buh.tecnik93.com (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with SMTP id 09B1E10A; Sun, 22 Aug 2004 03:51:27 +0300 (EEST) Date: Sun, 22 Aug 2004 03:51:25 +0300 From: Ion-Mihai Tetcu To: David Syphers Message-Id: <20040822035125.25ed2cc8@it.buh.tecnik93.com> In-Reply-To: <200408211717.00316.dsyphers@u.washington.edu> References: <200408211717.00316.dsyphers@u.washington.edu> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: newbie porter questions X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 00:51:31 -0000 On Sat, 21 Aug 2004 17:17:00 -0700 David Syphers wrote: > Hi, > > I'm trying to make my first port, and I have a few questions that I > don't see answers to in the Porter's Handbook. > > First, I have a script that does the installation. I call it with a > do-install in the Makefile, '@(cd ${SCRIPTDIR} && ./mod_install)'. Is this really necessarily ? > portlint is complaining that I'm using absolute pathnames. > Unfortunately, it's right. How do I avoid that? The variables > $LOCALBASE, etc. aren't defined in my script. When I've looked at > other ports that use scripts, these variables just seem to show up > magically (they don't define them, but they can use them). How do I > use these variables? In makefile pass them as ./my_install foo bat and access them as $1, $2 etc. in the script > Second, the program I'm installing claims it needs its own user. I'm > trying to figure out if that's really true, but if it is, how should I > go about installing a user from a port? Take a look at security/clamav and man pw. > The only port I could think of off the top of my head that did that > is apache, but they have a benefit of having a standard user with a > reserved userid, 80. Is there some way of figuring out which is the > next available userid, or should I give up and ask people to run > adduser themselves? There is a list of reserved uids in Porter Handbook; when submitting your port you should also add a diff to that. > This is a real user, that needs to be able to log in. If so your port must either be interactive or you create the account and disable it by default and tell the user to change its password and enable it. > Lastly, I've modified the install scripts that come with the program > so that they're no longer interactive. However, they become > interactive if there's a failure - rather than just fail, they try to > get useful input from the user so they can continue. In this case, > should I define IS_INTERACTIVE? If I do, but want to enable package > builds, what's the right way of doing: > > .if (!defined(PACKAGE_BUILDING)) > IS_INTERACTIVE= yes > .endif > > The code is wrong, of course, but I don't know what the right way is. > I assume it's obvious to humans what I'm trying to do, if not > computers... Should work without parenthesis. On the other hand it shouldn't fail :) > Oh yeah, one last thing. The program's install manual keeps asking me > to do 'cat /[path]/[file] | zcat | tar -xpf - '. Is there any reason > that's preferable to 'tar -xzpf - /[path]/[file]' ? I don't see any. On some platform tar doesn't know all it knows on FreeBSD, perhaps that's the reason. > And what does the '-' by itself do? I couldn't seem to find an answer > in tar's manpage. It is there. The last `f' means the file to read from and `-' is standard input. What port is it ? -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 00:57:19 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4308F16A4CE for ; Sun, 22 Aug 2004 00:57:19 +0000 (GMT) Received: from mxout5.cac.washington.edu (mxout5.cac.washington.edu [140.142.32.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13AA443D1F for ; Sun, 22 Aug 2004 00:57:19 +0000 (GMT) (envelope-from dsyphers@u.washington.edu) Received: from smtp.washington.edu (smtp.washington.edu [140.142.32.139]) ESMTP id i7M0vI4w020827; Sat, 21 Aug 2004 17:57:18 -0700 Received: from [192.168.1.104] (c-24-18-235-11.client.comcast.net [24.18.235.11]) (authenticated bits=0)i7M0vIKZ017273 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NOT); Sat, 21 Aug 2004 17:57:18 -0700 From: David Syphers To: Ion-Mihai Tetcu Date: Sat, 21 Aug 2004 17:57:25 -0700 User-Agent: KMail/1.6.2 References: <200408211717.00316.dsyphers@u.washington.edu> <20040822035125.25ed2cc8@it.buh.tecnik93.com> In-Reply-To: <20040822035125.25ed2cc8@it.buh.tecnik93.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408211757.25650.dsyphers@u.washington.edu> cc: freebsd-ports@freebsd.org Subject: Re: newbie porter questions X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 00:57:19 -0000 On Saturday 21 August 2004 05:51 pm, Ion-Mihai Tetcu wrote: > On Sat, 21 Aug 2004 17:17:00 -0700 > > First, I have a script that does the installation. I call it with a > > do-install in the Makefile, '@(cd ${SCRIPTDIR} && ./mod_install)'. > > Is this really necessarily ? I'm not sure... I decided to use the original install script and just modify it, but now that I have a better idea of what's going on, I may just not use it at all. > > Lastly, I've modified the install scripts that come with the program > > so that they're no longer interactive. However, they become > > interactive if there's a failure - rather than just fail, they try to > > get useful input from the user so they can continue. In this case, > > should I define IS_INTERACTIVE? If I do, but want to enable package > > builds, what's the right way of doing: > > > > .if (!defined(PACKAGE_BUILDING)) > > IS_INTERACTIVE= yes > > .endif > > > > The code is wrong, of course, but I don't know what the right way is. > > I assume it's obvious to humans what I'm trying to do, if not > > computers... > > Should work without parenthesis. On the other hand it shouldn't fail :) Fails with: "Makefile", line 19: Unassociated shell command "IS_INTERACTIVE= yes" make: fatal errors encountered -- cannot continue > What port is it ? Two, actually: IRAF (http://iraf.noao.edu) and X11IRAF. Thanks for the help. -David -- +++ Divide By Cucumber Error. Please Reinstall Universe And Reboot. +++ From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 01:15:03 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40FF116A4CE for ; Sun, 22 Aug 2004 01:15:03 +0000 (GMT) Received: from smtp.rdsnet.ro (smtp.rdsnet.ro [62.231.74.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59B8243D1F for ; Sun, 22 Aug 2004 01:15:02 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 30137 invoked by uid 89); 22 Aug 2004 01:15:01 -0000 Received: from unknown (HELO it.buh.tecnik93.com) (81.196.204.98) by 0 with SMTP; 22 Aug 2004 01:15:01 -0000 Received: from it.buh.tecnik93.com (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with SMTP id 3C0E010A; Sun, 22 Aug 2004 04:14:59 +0300 (EEST) Date: Sun, 22 Aug 2004 04:14:58 +0300 From: Ion-Mihai Tetcu To: David Syphers Message-Id: <20040822041458.40694dc3@it.buh.tecnik93.com> In-Reply-To: <200408211757.25650.dsyphers@u.washington.edu> References: <200408211717.00316.dsyphers@u.washington.edu> <20040822035125.25ed2cc8@it.buh.tecnik93.com> <200408211757.25650.dsyphers@u.washington.edu> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: newbie porter questions X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 01:15:03 -0000 On Sat, 21 Aug 2004 17:57:25 -0700 David Syphers wrote: > On Saturday 21 August 2004 05:51 pm, Ion-Mihai Tetcu wrote: > > On Sat, 21 Aug 2004 17:17:00 -0700 > > > First, I have a script that does the installation. I call it with > > > a do-install in the Makefile, '@(cd ${SCRIPTDIR} && > > > ./mod_install)'. > > > > Is this really necessarily ? > > I'm not sure... I decided to use the original install script and just > modify it, but now that I have a better idea of what's going on, I may > just not use it at all. It's better. The time you spend understanding the way the bsd.*.mk works will server you in the future _and_ there are 95% you have to rewrite a large portions of the script to make it obey everything it should. > > > Lastly, I've modified the install scripts that come with the > > > program so that they're no longer interactive. However, they > > > become interactive if there's a failure - rather than just fail, > > > they try to get useful input from the user so they can continue. > > > In this case, should I define IS_INTERACTIVE? If I do, but want to > > > enable package builds, what's the right way of doing: > > > > > > .if (!defined(PACKAGE_BUILDING)) > > > IS_INTERACTIVE= yes > > > .endif > > > > > > The code is wrong, of course, but I don't know what the right way > > > is. I assume it's obvious to humans what I'm trying to do, if not > > > computers... > > > > Should work without parenthesis. On the other hand it shouldn't fail > > :) > > Fails with: > "Makefile", line 19: Unassociated shell command "IS_INTERACTIVE= > yes" > make: fatal errors encountered -- cannot continue You do use a tab on that line and not spaces, right ? -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 08:00:08 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC0BB16A4CE; Sun, 22 Aug 2004 08:00:08 +0000 (GMT) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id E148543D49; Sun, 22 Aug 2004 08:00:07 +0000 (GMT) (envelope-from andreas@klemm.apsfilter.org) Received: from srv1.cosmo-project.de (localhost [IPv6:::1]) i7M805aI089102 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sun, 22 Aug 2004 10:00:06 +0200 (CEST) (envelope-from andreas@klemm.apsfilter.org) Received: (from uucp@localhost)i7M805JF089101; Sun, 22 Aug 2004 10:00:05 +0200 (CEST) (envelope-from andreas@klemm.apsfilter.org) Received: from titan.klemm.apsfilter.org (localhost.klemm.apsfilter.org [127.0.0.1])i7M7vCYO068207; Sun, 22 Aug 2004 09:57:12 +0200 (CEST) (envelope-from andreas@titan.klemm.apsfilter.org) Received: (from andreas@localhost)i7M7vCVH068206; Sun, 22 Aug 2004 09:57:12 +0200 (CEST) (envelope-from andreas) Date: Sun, 22 Aug 2004 09:57:12 +0200 From: Andreas Klemm To: ale@FreeBSD.org Message-ID: <20040822075712.GA68063@titan.klemm.apsfilter.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Operating-System: FreeBSD 5.2.1-RELEASE-p9 X-Disclaimer: A free society is one where it is safe to be unpopular User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org Subject: PR 69273: mysql server changes, rc-ng & FreeBSD 4.x ? -> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 08:00:09 -0000 Hi, I just noticed, that I didn't get a response from maintainer (ale). http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/69273 2 things Oliver (eik@) mentioned: - one script is not prefix clean, o.k. needs to be fixed - problems with rc-ng style start/stop scripts with FreeBSD 4.x I noticed quite a few ports now using these rc-ng style scripts. Does that mean they all don't run well on 4.x anymore ? I'm not sure, but do I remember right that people worked on compatibility scripts for 4.x (maybe a port), that installs the framework for the rc-ng scripts for 4.x ? Andreas /// -- http://www.64bits.de http://www.apsfilter.org http://people.FreeBSD.org/~andreas From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 08:05:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E22816A4CE; Sun, 22 Aug 2004 08:05:07 +0000 (GMT) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9B1443D41; Sun, 22 Aug 2004 08:05:06 +0000 (GMT) (envelope-from andreas@klemm.apsfilter.org) Received: from srv1.cosmo-project.de (localhost [IPv6:::1]) i7M855aI089205 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sun, 22 Aug 2004 10:05:06 +0200 (CEST) (envelope-from andreas@klemm.apsfilter.org) Received: (from uucp@localhost)i7M855Kw089204; Sun, 22 Aug 2004 10:05:05 +0200 (CEST) (envelope-from andreas@klemm.apsfilter.org) Received: from titan.klemm.apsfilter.org (localhost.klemm.apsfilter.org [127.0.0.1])i7M817YO068341; Sun, 22 Aug 2004 10:01:11 +0200 (CEST) (envelope-from andreas@titan.klemm.apsfilter.org) Received: (from andreas@localhost)i7M817mQ068340; Sun, 22 Aug 2004 10:01:07 +0200 (CEST) (envelope-from andreas) Date: Sun, 22 Aug 2004 10:01:07 +0200 From: Andreas Klemm To: ale@FreeBSD.org Message-ID: <20040822080107.GB68063@titan.klemm.apsfilter.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Operating-System: FreeBSD 5.2.1-RELEASE-p9 X-Disclaimer: A free society is one where it is safe to be unpopular User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org Subject: PR 69309: mysqlxx-server, automatic database backup script X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 08:05:07 -0000 Hi Alex, what about including this periodic script into mysql server ports ? It runs just fine for me. Its nearly the same as Palle wrote for postgresql. I think its really useful to add this to the mysql port to backup all mysql databases automatically. http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/69309 If you don't have the time, please tell, then I would all this to the mysql server ports. Best regards Andreas /// -- http://www.64bits.de http://www.apsfilter.org http://people.FreeBSD.org/~andreas From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 11:05:17 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1709116A4CE for ; Sun, 22 Aug 2004 11:05:17 +0000 (GMT) Received: from gatekeeper.isp.net.au (gatekeeper.isp.net.au [203.31.238.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CCD943D3F for ; Sun, 22 Aug 2004 11:05:16 +0000 (GMT) (envelope-from freebsd@mark.net.au) Received: from localhost (localhost.viper.net.au [127.0.0.1]) by gatekeeper.isp.net.au (Postfix) with ESMTP id 6D5C23E2D3D for ; Sun, 22 Aug 2004 21:05:11 +1000 (EST) Received: from gatekeeper.isp.net.au ([127.0.0.1]) by localhost (gatekeeper.isp.net.au [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06677-04 for ; Sun, 22 Aug 2004 21:05:10 +1000 (EST) Received: from juana.isp.net.au (juana.isp.net.au [203.31.238.30]) by gatekeeper.isp.net.au (Postfix) with ESMTP id 1B0A63E2C4D for ; Sun, 22 Aug 2004 21:05:10 +1000 (EST) Date: Sun, 22 Aug 2004 21:05:10 +1000 (EST) From: Mark Russell X-X-Sender: mark@juana.isp.net.au To: ports@freebsd.org Message-ID: <20040822210254.F822@juana.isp.net.au> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at isp.net.au Subject: ignoring FETCH_DEPENDS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 11:05:17 -0000 Hi I have a box that I mirror distfiles, however there are 2 ports in the tree that use FETCH_DEPENDS and this causes issues, is there a way when doing a make fetch I can ignore this and have it not install anything? -- Failure is not an option. It comes bundled with your Microsoft product. From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 12:51:01 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 441A216A4CE for ; Sun, 22 Aug 2004 12:51:01 +0000 (GMT) Received: from mail.druber.com (dsl-216-129-135-2.lightband.com [216.129.135.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8459043D31 for ; Sun, 22 Aug 2004 12:51:00 +0000 (GMT) (envelope-from dswartz@druber.com) Received: from localhost (localhost.druber.com [127.0.0.1]) by sphinx.druber.com (Postfix) with ESMTP id BDB8C2080; Sun, 22 Aug 2004 08:51:02 -0400 (EDT) Received: from sphinx.druber.com ([127.0.0.1]) by localhost (sphinx.druber.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 13442-03; Sun, 22 Aug 2004 08:51:02 -0400 (EDT) Received: from manticore.druber.com (unknown [10.0.0.22]) by sphinx.druber.com (Postfix) with ESMTP id 3A149207E; Sun, 22 Aug 2004 08:51:02 -0400 (EDT) Message-Id: <6.1.2.0.2.20040822084834.01b2ade0@10.0.0.2> X-Sender: dswartz@10.0.0.2 (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 6.1.2.0 Date: Sun, 22 Aug 2004 08:50:58 -0400 To: vivek@khera.org From: Dan Swartzendruber Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by amavisd-new at druber.com cc: ports@FreeBSD.org Subject: postfix 2.0 vs 2.1? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 12:51:01 -0000 Pardon me if this is obvious, but I am extremely confused. I've just recently installed FreeBSD 5.2.1 and found mail/postfix as postfix-2.0.16 as well as mail/postfix-current as postfix 2.0.14. Yet, the ports info on freshports.org seems to indicate that mail/postfix should be 2.1.4! I've downloaded the tarball, but I'm not sure what's wrong with the port info on my system, nor how to fix it. Can you lend a clue? From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 13:33:27 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E512116A4CE for ; Sun, 22 Aug 2004 13:33:27 +0000 (GMT) Received: from smtps-out1.xs4all.nl (smtps-out1.xs4all.nl [194.109.24.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 472B343D41 for ; Sun, 22 Aug 2004 13:33:27 +0000 (GMT) (envelope-from mhellwig@xs4all.nl) Received: from [10.0.0.151] (xinagnet.xs4all.nl [80.126.243.229]) (authenticated bits=0)i7MDX3mW013123; Sun, 22 Aug 2004 15:33:04 +0200 (CEST) Message-ID: <4128A09A.4050004@xs4all.nl> Date: Sun, 22 Aug 2004 15:33:14 +0200 From: "Martin P. Hellwig" User-Agent: Mozilla/5.0 (X11; U; DragonFly i386; en-US; rv:1.7.1) Gecko/20040726 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Dan Swartzendruber References: <6.1.2.0.2.20040822084834.01b2ade0@10.0.0.2> In-Reply-To: <6.1.2.0.2.20040822084834.01b2ade0@10.0.0.2> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: vivek@khera.org Subject: Re: postfix 2.0 vs 2.1? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 13:33:28 -0000 Dan Swartzendruber wrote: > > Pardon me if this is obvious, but I am extremely confused. I've just > recently installed FreeBSD 5.2.1 and found mail/postfix as > postfix-2.0.16 as well as mail/postfix-current as postfix 2.0.14. > Yet, the ports info on freshports.org seems to indicate that > mail/postfix should be 2.1.4! I've downloaded the tarball, but I'm > not sure what's wrong with the port info on my system, nor how to fix > it. Can you lend a clue? Did you do a cvup on your ports? (see handbook http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.hml) -- mph From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 13:33:43 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D594016A4CE for ; Sun, 22 Aug 2004 13:33:43 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.191]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AB9643D31 for ; Sun, 22 Aug 2004 13:33:43 +0000 (GMT) (envelope-from sw@gegenunendlich.de) Received: from [212.227.126.207] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1BysTe-0006KY-00 for ports@freebsd.org; Sun, 22 Aug 2004 15:33:42 +0200 Received: from [80.142.205.146] (helo=kyuzo.dunkelkammer.void) (TLSv1:EDH-RSA-DES-CBC3-SHA:168) (Exim 3.35 #1) id 1BysTe-0001hH-00 for ports@freebsd.org; Sun, 22 Aug 2004 15:33:42 +0200 Received: by kyuzo.dunkelkammer.void (Postfix, from userid 1002) id B96293C87; Sun, 22 Aug 2004 15:33:40 +0200 (CEST) Date: Sun, 22 Aug 2004 15:33:40 +0200 From: Stefan Walter To: ports@freebsd.org Message-ID: <20040822133340.GA39857@kyuzo.dunkelkammer.void> Mail-Followup-To: ports@freebsd.org References: <6.1.2.0.2.20040822084834.01b2ade0@10.0.0.2> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline In-Reply-To: <6.1.2.0.2.20040822084834.01b2ade0@10.0.0.2> X-PGP-key: http://www.gegenunendlich.de/swalter-rsa.asc X-PGP-fp: 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 Organization: Infinity Approximation Task Force X-PGP-key: http://www.gegenunendlich.de/swalter-rsa.asc X-PGP-fingerprint: 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 User-Agent: Mutt/1.5.6i X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:bea306e5fe0930b42d4355ca01786db1 Subject: Re: postfix 2.0 vs 2.1? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 13:33:43 -0000 --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Dan Swartzendruber in gmane.os.freebsd.devel.ports: > Pardon me if this is obvious, but I am extremely confused. I've just=20 > recently installed FreeBSD 5.2.1 and found mail/postfix as postfix-2.0.16= =20 > as well as mail/postfix-current as postfix 2.0.14. Yet, the ports info o= n=20 > freshports.org seems to indicate that mail/postfix should be 2.1.4! I've= =20 > downloaded the tarball, but I'm not sure what's wrong with the port info = on=20 > my system, nor how to fix it. Can you lend a clue? You probably haven't updated your ports collection, yet, and so are using the ports tree that came with 5.2.1. Have a look at [1] to learn how to get your ports up to date. Stefan [1]: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.= html --=20 No reading beyond this point --pf9I7BMVVzbSWLtt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iQGVAwUBQSigtFaRERsSueCzAQLHiAv/WHsmeUZ9UpRgJ8HgZQL2ZcYKgMLm8wf9 2fi1ojGe1aJrbnLF335sGHrwsAQzZ5hx7oUkESXDhCFlIF3d5g4lKZpZSRIE1E5f ub+pqA1x7cOsMxqlX6qTbW6ul7H9oMV7/Ub1crhSxd3r6gzIWd4vvpyiMvk9Y15f g+/pvWWrb3rpMAlM6U6kHH88BVHqln4AfUzh0OcaJIX6UtJlO1y8f7ye6UdPDGLf Dot2Gctiw3+AlaLYG+dWuWDfakNxAXklsYtx4USDDrwLq+TPs0dSKPXrnm0cp/xj J6Qpe4LUQhtU7iuOvFPjyUu+ccV4cjQIoMmpy6rCe/bdc29NqJwFx1KMYBfpIdAq DZjnUw2TTojQ7YPpkyE3FaucuuHSo5UdkasxRhPTRGQfA0CywN2UzaSgXdW/wyuQ wWi5sSbsrnuuyczSFJXRU2WLIj7hrZZCs7d8VKgM2Qp+bKrWyafnN5A9N2l3Gsd0 Dgu40tFKwGowIewRK+UIPz5ZLQZjUCuJ =Ho4S -----END PGP SIGNATURE----- --pf9I7BMVVzbSWLtt-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 13:37:33 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19F6F16A4CE for ; Sun, 22 Aug 2004 13:37:33 +0000 (GMT) Received: from mail.druber.com (dsl-216-129-135-2.lightband.com [216.129.135.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA3D043D3F for ; Sun, 22 Aug 2004 13:37:32 +0000 (GMT) (envelope-from dswartz@druber.com) Received: from localhost (localhost.druber.com [127.0.0.1]) by sphinx.druber.com (Postfix) with ESMTP id BA2AF20FB; Sun, 22 Aug 2004 09:37:35 -0400 (EDT) Received: from sphinx.druber.com ([127.0.0.1]) by localhost (sphinx.druber.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 13629-05-3; Sun, 22 Aug 2004 09:37:35 -0400 (EDT) Received: from manticore.druber.com (unknown [10.0.0.22]) by sphinx.druber.com (Postfix) with ESMTP id 44BA420F7; Sun, 22 Aug 2004 09:37:35 -0400 (EDT) Message-Id: <6.1.2.0.2.20040822093657.01b6b2e0@10.0.0.2> X-Sender: dswartz@10.0.0.2 (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 6.1.2.0 Date: Sun, 22 Aug 2004 09:37:28 -0400 To: vivek@khera.org From: Dan Swartzendruber Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by amavisd-new at druber.com cc: ports@FreeBSD.org Subject: postfix 2.0 vs 2.1? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 13:37:33 -0000 please disregard. i did figure it out. i needed to use cvsup to upgrade the info in the /usr/ports tree itself, at which point everything was fine... From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 14:33:18 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C321316A4CE for ; Sun, 22 Aug 2004 14:33:18 +0000 (GMT) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [80.86.187.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEB0843D48 for ; Sun, 22 Aug 2004 14:33:17 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: (qmail 15894 invoked from network); 22 Aug 2004 14:33:00 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (80.86.187.43) by avocado.salatschuessel.net with SMTP; 22 Aug 2004 14:33:00 -0000 Date: Sun, 22 Aug 2004 16:33:14 +0200 From: Oliver Lehmann To: kuriyama@FreeBSD.org Message-Id: <20040822163314.280ec987.oliver@FreeBSD.org> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: textproc/openjade doesn't compile X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 14:33:18 -0000 Hi, openjade will fail compiling with: gmake[2]: *** No rule to make target `/usr/local/lib/libosp.la', needed by `openjade'. Stop. gmake[2]: Leaving directory `/usr/obj/usr/ports/textproc/openjade/work/openjade-1.3.2/jade' gmake[1]: *** [jade] Error 2 gmake[1]: Leaving directory `/usr/obj/usr/ports/textproc/openjade/work/openjade-1.3.2' gmake: *** [all] Error 2 *** Error code 2 it looks like the OpenSP doesn't instal the .la file any longer (I don't know why it is treated as bad installing the '.la' files). jade/Makefile.lt shows: -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 14:34:54 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAA4316A4CE for ; Sun, 22 Aug 2004 14:34:54 +0000 (GMT) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [80.86.187.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7C7543D48 for ; Sun, 22 Aug 2004 14:34:53 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: (qmail 15975 invoked from network); 22 Aug 2004 14:34:37 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (80.86.187.43) by avocado.salatschuessel.net with SMTP; 22 Aug 2004 14:34:37 -0000 Date: Sun, 22 Aug 2004 16:34:51 +0200 From: Oliver Lehmann To: kuriyama@FreeBSD.org Message-Id: <20040822163451.0b35ac49.oliver@FreeBSD.org> In-Reply-To: <20040822163314.280ec987.oliver@FreeBSD.org> References: <20040822163314.280ec987.oliver@FreeBSD.org> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: textproc/openjade doesn't compile X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 14:34:54 -0000 Oliver Lehmann wrote: > it looks like the OpenSP doesn't instal the .la file any longer (I don't > know why it is treated as bad installing the '.la' files). > jade/Makefile.lt shows: LT_LIBS=../style/libostyle.la ../spgrove/libospgrove.la ../grove/libogrove.la /usr/local/lib/libosp.la changing .la to .so make openjade compile -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 14:37:13 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2E1216A4CE for ; Sun, 22 Aug 2004 14:37:13 +0000 (GMT) Received: from ylpvm01.prodigy.net (ylpvm01-ext.prodigy.net [207.115.57.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ED6643D4C for ; Sun, 22 Aug 2004 14:37:13 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i7MEb9CY018463; Sun, 22 Aug 2004 10:37:09 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C3F96511B9; Sun, 22 Aug 2004 07:37:08 -0700 (PDT) Date: Sun, 22 Aug 2004 07:37:08 -0700 From: Kris Kennaway To: Mark Russell Message-ID: <20040822143708.GA29683@xor.obsecurity.org> References: <20040822210254.F822@juana.isp.net.au> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="CE+1k2dSO48ffgeK" Content-Disposition: inline In-Reply-To: <20040822210254.F822@juana.isp.net.au> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org Subject: Re: ignoring FETCH_DEPENDS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 14:37:13 -0000 --CE+1k2dSO48ffgeK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 22, 2004 at 09:05:10PM +1000, Mark Russell wrote: > Hi > I have a box that I mirror distfiles, however there are 2 ports in the=20 > tree that use FETCH_DEPENDS and this causes issues, is there a way when= =20 > doing a make fetch I can ignore this and have it not install anything? How are you going to fetch the port without installing the dependency it needs to fetch with? Kris --CE+1k2dSO48ffgeK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBKK+UWry0BWjoQKURApoRAKCodUQm7I6Y3woE+WRrVHsaQvMKMwCgkZFb 5anJw/RB8UY6bVNuu/63c5s= =PQVN -----END PGP SIGNATURE----- --CE+1k2dSO48ffgeK-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 14:48:15 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 532DA16A4CE for ; Sun, 22 Aug 2004 14:48:15 +0000 (GMT) Received: from gatekeeper.isp.net.au (gatekeeper.isp.net.au [203.31.238.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A87C43D2D for ; Sun, 22 Aug 2004 14:48:14 +0000 (GMT) (envelope-from freebsd@mark.net.au) Received: from localhost (localhost.viper.net.au [127.0.0.1]) by gatekeeper.isp.net.au (Postfix) with ESMTP id 72FF53E2D44; Mon, 23 Aug 2004 00:48:10 +1000 (EST) Received: from gatekeeper.isp.net.au ([127.0.0.1]) by localhost (gatekeeper.isp.net.au [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 38297-09; Mon, 23 Aug 2004 00:48:09 +1000 (EST) Received: from juana.isp.net.au (juana.isp.net.au [203.31.238.30]) by gatekeeper.isp.net.au (Postfix) with ESMTP id 27A8D3E2CED; Mon, 23 Aug 2004 00:48:09 +1000 (EST) Date: Mon, 23 Aug 2004 00:48:09 +1000 (EST) From: Mark Russell X-X-Sender: mark@juana.isp.net.au To: Kris Kennaway In-Reply-To: <20040822143708.GA29683@xor.obsecurity.org> Message-ID: <20040823004314.E822@juana.isp.net.au> References: <20040822210254.F822@juana.isp.net.au> <20040822143708.GA29683@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at isp.net.au cc: ports@freebsd.org Subject: Re: ignoring FETCH_DEPENDS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 14:48:15 -0000 On Sun, 22 Aug 2004, Kris Kennaway wrote: > On Sun, Aug 22, 2004 at 09:05:10PM +1000, Mark Russell wrote: >> Hi >> I have a box that I mirror distfiles, however there are 2 ports in the >> tree that use FETCH_DEPENDS and this causes issues, is there a way when >> doing a make fetch I can ignore this and have it not install anything? > > How are you going to fetch the port without installing the dependency > it needs to fetch with? The distfiles of the 2 ports concerned fetch fine without the FETCH_DEPENDS, the case of net/p5-Net-SSH-Perl it wants to install its BUILD_DEPENDS before it fetches, I've yet to work out why. The other port concerned misc/linux-opengroupware installs postgres, apache, bash and gmake as FETCH_DEPENDS, neither of the 2 cases need to install anything to fetch the distfile. -- Security Level: Paranoid, Maximum, Medium, Low, RedHat, Windows. From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 14:51:28 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64BE416A4E0 for ; Sun, 22 Aug 2004 14:51:28 +0000 (GMT) Received: from ylpvm15.prodigy.net (ylpvm15-ext.prodigy.net [207.115.57.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E33643D2F for ; Sun, 22 Aug 2004 14:51:28 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i7MEpUEU014355; Sun, 22 Aug 2004 10:51:31 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 9F98C511B9; Sun, 22 Aug 2004 07:51:25 -0700 (PDT) Date: Sun, 22 Aug 2004 07:51:25 -0700 From: Kris Kennaway To: Mark Russell Message-ID: <20040822145125.GA29925@xor.obsecurity.org> References: <20040822210254.F822@juana.isp.net.au> <20040822143708.GA29683@xor.obsecurity.org> <20040823004314.E822@juana.isp.net.au> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="IJpNTDwzlM2Ie8A6" Content-Disposition: inline In-Reply-To: <20040823004314.E822@juana.isp.net.au> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: ignoring FETCH_DEPENDS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 14:51:28 -0000 --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 23, 2004 at 12:48:09AM +1000, Mark Russell wrote: > On Sun, 22 Aug 2004, Kris Kennaway wrote: >=20 > >On Sun, Aug 22, 2004 at 09:05:10PM +1000, Mark Russell wrote: > >>Hi > >>I have a box that I mirror distfiles, however there are 2 ports in the > >>tree that use FETCH_DEPENDS and this causes issues, is there a way when > >>doing a make fetch I can ignore this and have it not install anything? > > > >How are you going to fetch the port without installing the dependency > >it needs to fetch with? >=20 > The distfiles of the 2 ports concerned fetch fine without the=20 > FETCH_DEPENDS, the case of net/p5-Net-SSH-Perl it wants to install its=20 > BUILD_DEPENDS before it fetches, I've yet to work out why. The other port= =20 > concerned misc/linux-opengroupware installs postgres, apache, bash and=20 > gmake as FETCH_DEPENDS, neither of the 2 cases need to install anything t= o=20 > fetch the distfile. OK, so they're bugs in the ports. Kris --IJpNTDwzlM2Ie8A6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBKLLtWry0BWjoQKURArwkAJ9xSko3MRSqrkhDUDpaF0oE0fyWAwCeNdwD C84HUk1cVzYriB2i2T56CfY= =ji0v -----END PGP SIGNATURE----- --IJpNTDwzlM2Ie8A6-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 15:14:53 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0027E16A4CE for ; Sun, 22 Aug 2004 15:14:52 +0000 (GMT) Received: from host3.beine-computer.de (host3.beine-computer.de [80.243.45.234]) by mx1.FreeBSD.org (Postfix) with SMTP id BF9C543D3F for ; Sun, 22 Aug 2004 15:14:51 +0000 (GMT) (envelope-from tux@pinguru.net) Received: (qmail 27147 invoked by uid 0); 22 Aug 2004 15:14:49 -0000 Received: from unknown (HELO ?192.168.0.242?) (80.136.168.177) by host3.beine-computer.de with SMTP; 22 Aug 2004 15:14:49 -0000 Message-ID: <4128B864.9000500@pinguru.net> Date: Sun, 22 Aug 2004 17:14:44 +0200 From: Gerrit Beine User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040811 X-Accept-Language: en-us, en MIME-Version: 1.0 To: paul@nerdlabs.com Content-Type: multipart/mixed; boundary="------------000205000109000705080606" cc: ports@FreeBSD.org Subject: FreeBSD Port: nrpe-1.9 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 15:14:53 -0000 This is a multi-part message in MIME format. --------------000205000109000705080606 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Update to version 2.0. It supports SSL now. Maybe, because it is incompatible with nrpe 1.x, it would be better to fork a port from nrpe. What do you mean about? So long... Gerrit -- Wer *BSD nachmacht oder fälscht, oder nachgemachtes oder gefälschtes in Umlauf bringt oder vertreibt wird mit Windows nicht unter XP bestraft. mail tux@pinguru.net icq 123851585 web http://arme-und-beine.de --------------000205000109000705080606 Content-Type: text/plain; name="nrpe2.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="nrpe2.diff" --- Makefile Sun May 30 11:11:35 2004 +++ Makefile Sun Aug 22 17:10:30 2004 @@ -6,7 +6,7 @@ # PORTNAME= nrpe -PORTVERSION= 1.9 +PORTVERSION= 2.0 PORTREVISION= 0 CATEGORIES= net-mgmt MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} @@ -19,14 +19,25 @@ GNU_CONFIGURE= yes USE_PERL5= yes +USE_OPENSSL= yes CONFIGURE_ARGS= --libexecdir=${PREFIX}/libexec/nagios --sysconfdir=${PREFIX}/etc \ --sbindir=${PREFIX}/sbin --bindir=${PREFIX}/sbin +.if !defined(NOPORTDOCS) +PORTDOCS=README README.SSL SECURITY +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/nrpe ${PREFIX}/sbin/nrpe ${INSTALL_PROGRAM} ${WRKSRC}/src/check_nrpe ${PREFIX}/libexec/nagios/check_nrpe ${INSTALL_DATA} ${WRKSRC}/nrpe.cfg ${PREFIX}/etc/nrpe.cfg-sample ${INSTALL_SCRIPT} ${WRKSRC}/init-script.freebsd ${PREFIX}/etc/rc.d/nrpe.sh +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR} + @for file in ${PORTDOCS}; do \ + ${CP} ${WRKSRC}/$${file} ${DOCSDIR}; \ + done +.endif .include --- distinfo Wed Mar 31 05:10:30 2004 +++ distinfo Sun Aug 22 16:58:46 2004 @@ -1,2 +1,2 @@ -MD5 (nrpe-1.9.tar.gz) = b4a5e00963f1aaa754ae877b9f921565 -SIZE (nrpe-1.9.tar.gz) = 41513 +MD5 (nrpe-2.0.tar.gz) = 70ef9502a3b7e49fa520dbceabfa04d0 +SIZE (nrpe-2.0.tar.gz) = 52157 --------------000205000109000705080606-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 17:52:05 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C971D16A4CE for ; Sun, 22 Aug 2004 17:52:05 +0000 (GMT) Received: from mail.broadpark.no (mail.broadpark.no [217.13.4.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B61C43D2F for ; Sun, 22 Aug 2004 17:52:05 +0000 (GMT) (envelope-from chasm@chasm.nu) Received: from khonsu (chasm.nu [80.203.235.133]) by mail.broadpark.no (Postfix) with ESMTP id 6E359461B; Sun, 22 Aug 2004 19:52:40 +0200 (MEST) From: "christian astrup bakke // chasm" To: Date: Sun, 22 Aug 2004 19:52:12 +0200 Organization: c a b consulting MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Thread-Index: AcSIcMDIaxjiDJJbRSmN1pKFQzKeqQ== Message-Id: <20040822175240.6E359461B@mail.broadpark.no> cc: ports@FreeBSD.org Subject: samba 3.0.5 removed from mirrors? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: chasm@chasm.nu List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 17:52:05 -0000 hi! it seems like the current version of samba3 in the ports, 3.0.5, has been removed from all the mirrors available. atleast that is what my 'make install clean' tells me. it might possibly be because 3.0.6 (released 19/08/04) has replaced it. hopefully the maintainer will update the current samba3 version in ports. thanks in advance! -- with regards, christian astrup bakke // chasm pgp key id: 0xF0FB7BB7 pgp fp: 9EB1 AA42 1142 2A7C CD24 65CA 584E 537C F0FB 7BB7 (scanned with norton antivirus 2004) From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 18:22:20 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EA3716A4CE for ; Sun, 22 Aug 2004 18:22:20 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9B0443D46 for ; Sun, 22 Aug 2004 18:22:18 +0000 (GMT) (envelope-from sw@gegenunendlich.de) Received: from [212.227.126.160] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1Bywyv-0001UG-00; Sun, 22 Aug 2004 20:22:17 +0200 Received: from [80.142.205.146] (helo=kyuzo.dunkelkammer.void) (TLSv1:EDH-RSA-DES-CBC3-SHA:168) (Exim 3.35 #1) id 1Bywyu-0000Jh-00; Sun, 22 Aug 2004 20:22:17 +0200 Received: by kyuzo.dunkelkammer.void (Postfix, from userid 1002) id 245234082; Sun, 22 Aug 2004 20:22:15 +0200 (CEST) Date: Sun, 22 Aug 2004 20:22:15 +0200 From: Stefan Walter To: Mark Russell , ports@freebsd.org Message-ID: <20040822182215.GA20724@kyuzo.dunkelkammer.void> Mail-Followup-To: Mark Russell , ports@freebsd.org References: <20040822210254.F822@juana.isp.net.au> <20040822143708.GA29683@xor.obsecurity.org> <20040823004314.E822@juana.isp.net.au> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Fba/0zbH8Xs+Fj9o" Content-Disposition: inline In-Reply-To: <20040823004314.E822@juana.isp.net.au> X-PGP-key: http://www.gegenunendlich.de/swalter-rsa.asc X-PGP-fp: 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 Organization: Infinity Approximation Task Force X-PGP-key: http://www.gegenunendlich.de/swalter-rsa.asc X-PGP-fingerprint: 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 User-Agent: Mutt/1.5.6i X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:bea306e5fe0930b42d4355ca01786db1 Subject: Re: ignoring FETCH_DEPENDS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 18:22:20 -0000 --Fba/0zbH8Xs+Fj9o Content-Type: multipart/mixed; boundary="wac7ysb48OaltWcw" Content-Disposition: inline --wac7ysb48OaltWcw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Mark Russell in gmane.os.freebsd.devel.ports: > The distfiles of the 2 ports concerned fetch fine without the=20 > FETCH_DEPENDS, the case of net/p5-Net-SSH-Perl it wants to install its=20 > BUILD_DEPENDS before it fetches, I've yet to work out why. The other port= =20 It's a bug in the Makefile, it shouldn't have those FETCH_DEPENDS. Could you try the attached patch? It - removes the FETCH_DEPENDS. - removes an unused variable. - corrects a dependency on devel/p5-IO which is not necessary for recent Perl versions. The CVS logs say there were also problems with the package build on bento. I was able to build a package without any problems, so I removed NO_PACKAGE, too. Maybe that one's fixed now, too. I haven't checked if the port already has dependencies for all the algorithms/Perl modules you can choose in the interactive configure script. I also guess that the plist is broken if you choose not to install the SSH1 or SSH2 protocol module (the default is to install both), but I haven't looked at that, yet. I'll have a look at the rest tomorrow and then send a PR, unless someone is faster or there is a problem with the patch. Stefan --=20 No reading beyond this point --wac7ysb48OaltWcw Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="p5-Net-SSH-Perl.patch" Content-Transfer-Encoding: quoted-printable diff -urN p5-Net-SSH-Perl.old/Makefile p5-Net-SSH-Perl/Makefile --- p5-Net-SSH-Perl.old/Makefile Sun Aug 22 18:47:13 2004 +++ p5-Net-SSH-Perl/Makefile Sun Aug 22 19:35:51 2004 @@ -15,28 +15,30 @@ MAINTAINER=3D jesper@FreeBSD.org COMMENT=3D Perl5 module implements both the SSH1 and SSH2 protocols =20 -NO_PACKAGE=3D "Runaway package build" +PERL_CONFIGURE=3D yes =20 -PERL_BASE=3D ${SITE_PERL} -BUILD_DEPENDS=3D ${PERL_BASE}/Crypt/DSA.pm:${PORTSDIR}/security/p5-Crypt-D= SA \ - ${PERL_BASE}/Crypt/DH.pm:${PORTSDIR}/security/p5-Crypt-DH \ - ${PERL_BASE}/${PERL_ARCH}/Math/Pari.pm:${PORTSDIR}/math/p5-Math-Pari \ - ${PERL_BASE}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-= Base64 \ - ${PERL_BASE}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-M= D5 \ - ${PERL_BASE}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-= SHA1 \ - ${PERL_BASE}/Digest/HMAC_SHA1.pm:${PORTSDIR}/security/p5-Digest-HMAC \ - ${PERL_BASE}/Digest/HMAC_MD5.pm:${PORTSDIR}/security/p5-Digest-HMAC \ - ${PERL_BASE}/Convert/PEM.pm:${PORTSDIR}/converters/p5-Convert-PEM \ - ${PERL_BASE}/Digest/BubbleBabble.pm:${PORTSDIR}/security/p5-Digest-Bubbl= eBabble \ - ${PERL_BASE}/Crypt/RSA.pm:${PORTSDIR}/security/p5-Crypt-RSA \ - ${PERL_BASE}/${PERL_ARCH}/IO/Socket.pm:${PORTSDIR}/devel/p5-IO \ - ${PERL_BASE}/${PERL_ARCH}/String/CRC32.pm:${PORTSDIR}/devel/p5-String-CR= C32 \ - ${PERL_BASE}/${PERL_ARCH}/Math/GMP.pm:${PORTSDIR}/math/p5-Math-GMP \ - ${PERL_BASE}/${PERL_ARCH}/Crypt/IDEA.pm:${PORTSDIR}/security/p5-Crypt-ID= EA -RUN_DEPENDS=3D ${BUILD_DEPENDS} -FETCH_DEPENDS=3D ${BUILD_DEPENDS} +.include =20 -PERL_CONFIGURE=3D yes +BUILD_DEPENDS=3D ${SITE_PERL}/Crypt/DSA.pm:${PORTSDIR}/security/p5-Crypt-D= SA \ + ${SITE_PERL}/Crypt/DH.pm:${PORTSDIR}/security/p5-Crypt-DH \ + ${SITE_PERL}/${PERL_ARCH}/Math/Pari.pm:${PORTSDIR}/math/p5-Math-Pari \ + ${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-= Base64 \ + ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-M= D5 \ + ${SITE_PERL}/${PERL_ARCH}/Digest/SHA1.pm:${PORTSDIR}/security/p5-Digest-= SHA1 \ + ${SITE_PERL}/Digest/HMAC_SHA1.pm:${PORTSDIR}/security/p5-Digest-HMAC \ + ${SITE_PERL}/Digest/HMAC_MD5.pm:${PORTSDIR}/security/p5-Digest-HMAC \ + ${SITE_PERL}/Convert/PEM.pm:${PORTSDIR}/converters/p5-Convert-PEM \ + ${SITE_PERL}/Digest/BubbleBabble.pm:${PORTSDIR}/security/p5-Digest-Bubbl= eBabble \ + ${SITE_PERL}/Crypt/RSA.pm:${PORTSDIR}/security/p5-Crypt-RSA \ + ${SITE_PERL}/${PERL_ARCH}/String/CRC32.pm:${PORTSDIR}/devel/p5-String-CR= C32 \ + ${SITE_PERL}/${PERL_ARCH}/Math/GMP.pm:${PORTSDIR}/math/p5-Math-GMP \ + ${SITE_PERL}/${PERL_ARCH}/Crypt/IDEA.pm:${PORTSDIR}/security/p5-Crypt-ID= EA + +.if ${PERL_LEVEL} <=3D 500600 +BUILD_DEPENDS+=3D ${SITE_PERL}/${PERL_ARCH}/IO/Socket.pm:${PORTSDIR}/devel= /p5-IO +.endif + +RUN_DEPENDS=3D ${BUILD_DEPENDS} =20 MAN3=3D Net::SSH::Perl::Constants.3 \ Net::SSH::Perl::Util.3 \ @@ -74,4 +76,4 @@ Net::SSH::Perl::Cipher::DES3.3 \ Net::SSH::Perl::Channel.3 =20 -.include +.include --wac7ysb48OaltWcw-- --Fba/0zbH8Xs+Fj9o Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iQGVAwUBQSjkVlaRERsSueCzAQLDagv/fXctOJ7k0E6ZjNoy3YtySJr4IPes4k3S j/VFdUyP2FOO1hJgsuem++6ORfn2rMTjiHZpPFd1zLXUZZeQ7uAavNSbls3rQ/v9 TkOWhjfouKmC9Jk2csbCl9z9aA6G7D6KBEM9bCYEuI34NhjfHP6ADTkEZ6foln+h dY2JLsK8NUddV7Z9kWFgB3TcuKadaQk1sIHVw2TSGiJ1lzuCFJAFykfaNNtUNUoG 4QuExTEiirTtu3/eQf7lH7SCv+E5TGv9yS8Q20eeJB4cT+MOfBx5bzbGZqcZKjF7 TNOhHl+Ei2EhIEqW7JYNvjE7fZIOo1XsQB+rzWBDQDeYNB5MOTm/1+mg0U/112gb z7Fbx4JdoKI85X9vOX4pISxJ9g5/735qGmf5wSaigkGrAtD2ctIgde25CtinGTL7 vy6NE9Pzg9HDnI/5RQ9zRxWH6v+AFjzfLZ8iEQjp7IB/XS3jZ3j6VuKYhgdZ2DxU m4Ie2rpzsgZrClAT6P37fdkjJxHNhCTU =Fr1V -----END PGP SIGNATURE----- --Fba/0zbH8Xs+Fj9o-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 19:29:37 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32F7416A4CE; Sun, 22 Aug 2004 19:29:37 +0000 (GMT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id B161A43D53; Sun, 22 Aug 2004 19:29:36 +0000 (GMT) (envelope-from nectar@celabo.org) Received: from localhost (localhost [127.0.0.1]) by gw.celabo.org (Postfix) with ESMTP id 2F41E54861; Sun, 22 Aug 2004 14:29:36 -0500 (CDT) Received: from gw.celabo.org ([127.0.0.1]) by localhost (hellblazer.celabo.org [127.0.0.1]) (amavisd-new, port 10024) with SMTP id 15276-08; Sun, 22 Aug 2004 14:29:24 -0500 (CDT) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "madman.celabo.org", Issuer "celabo.org CA" (not verified)) by gw.celabo.org (Postfix) with ESMTP id CE3F65485D; Sun, 22 Aug 2004 14:29:24 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id 74DF96D468; Sun, 22 Aug 2004 14:29:15 -0500 (CDT) Date: Sun, 22 Aug 2004 14:29:15 -0500 From: "Jacques A. Vidrine" To: Dan Langille Message-ID: <20040822192915.GA17478@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Dan Langille , ports@freebsd.org, freebsd-vuxml@freebsd.org References: <41279E59.13631.76AD2AB9@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41279E59.13631.76AD2AB9@localhost> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: ports@freebsd.org cc: freebsd-vuxml@freebsd.org Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 19:29:37 -0000 [Added freebsd-vuxml@] On Sat, Aug 21, 2004 at 07:11:21PM -0400, Dan Langille wrote: > Hi folks, > > I'm in the early stage of incorporating VuXML information into > FreshPorts. Alright! That'll be cool. > I have a preliminary database table design which appears > below. If you think I've missed any essential information out of > this design, please let me know. > > First: has anyone already worked on creating database tables for the > VuXML data? I have an old prototype application which uses SQLite. FWIW, here is the schema I used then. (the formatting is a little funny because this was embedded in some other code) CREATE TABLE vuxml ( vid VARCHAR PRIMARY KEY UNIQUE , topic VARCHAR , description VARCHAR , discovery DATE , entry DATE , modified DATE -- computed max(entry, modified) for convenience in -- other expressions , last DATE ); CREATE TABLE refs ( vid VARCHAR , type VARCHAR , text VARCHAR ); CREATE TABLE affected ( vid VARCHAR , type VARCHAR ); CREATE TABLE names ( affected INTEGER , name VARCHAR ); CREATE TABLE ranges ( affected INTEGER , lowop VARCHAR , low VARCHAR , glow0 INTEGER , glow1 INTEGER , glow2 INTEGER , glow3 INTEGER , highop VARCHAR , high VARCHAR , ghigh0 INTEGER , ghigh1 INTEGER , ghigh2 INTEGER , ghigh3 INTEGER ); The `ranges' table perhaps looks erm interesting. In this case, I encoded each package version number into four 32-bit integers. This allowed one to lookup an affected package completely in SQL. However, the encoding I used may now be incorrect in some ways, since pkg_install et al were recently changed to treat version numbers differently. Also, SQLite could not really optimize the complex SQL statement that resulted. So I think it is interesting for further study, but I doubt I'd do it that way again unless I had a very particular need to use pure SQL or the database was huge. > create table vuxml > ( > id serial not null, > -- internal FreshPorts ID > vid text not null, > -- the vuln vid. e.g. c4b025bb-f05d-11d8-9837-000c41e2cdad > topic text not null, > description text not null, > date_discovery date , > date_entry date , > date_modified date , > status date not null, > primary key (id) > ); > > create table vuxml_port_xref > ( > id serial not null, > vuxml_id integer not null, > port_id integer not null, > primary key (id) > ); > > create table vuxml_port_xref_range > ( > id serial not null, > vuxml_port_xref_id text , > range_operator_start text , > range_operator_end text , > range_version_start text , > range_version_end text , > primary key (id) > ); > > If you consider the output from: vxquery -t vuxml ~/VuXML/vuln.xml > tnftpd, the entry in vuxml_port_xref_range for tnftpd might be: > > (1, 'lt', 20040810, NULL, NULL) Seem reasonable. For what its worth, storing the range operators as `>', `=>', etc lets you get something human readable as the output of a SELECT, e.g. SELECT range_version_start, range_operator_start, port_name, range_operator_end, range_version_end FROM ... WHERE ...; ('20040810', '<', 'tnftpd', '', '') I found that handy for manual inspection of the database. You may notice from my example that I used separate `name', `ranges', and `affected' tables. I found this easier when filling the database, since the / elements are kind of a cross-product operator. For example, when processing something like mutt ja-mutt 1.41.4.2 I first created an `affected' entry to contain the other references. Then, as I hit each `name' I just associated it with the `affected' entry, and as I hit each `range' I did the same. (Otherwise one needs to construct a few lists, and then make all entries once the end tag is seen.) I think this is also easier to modify if we get new children of , e.g. the and tags that are currently in the VuXML pre-1.2 DTD. Have fun, and please let me know if I can assist! Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 19:32:09 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2026D16A4CE for ; Sun, 22 Aug 2004 19:32:09 +0000 (GMT) Received: from ylpvm01.prodigy.net (ylpvm01-ext.prodigy.net [207.115.57.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBFC943D55 for ; Sun, 22 Aug 2004 19:32:08 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i7MJW7CY016095; Sun, 22 Aug 2004 15:32:07 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C548E511B9; Sun, 22 Aug 2004 12:32:06 -0700 (PDT) Date: Sun, 22 Aug 2004 12:32:06 -0700 From: Kris Kennaway To: Mark Russell , ports@freebsd.org Message-ID: <20040822193206.GA45774@xor.obsecurity.org> References: <20040822210254.F822@juana.isp.net.au> <20040822143708.GA29683@xor.obsecurity.org> <20040823004314.E822@juana.isp.net.au> <20040822182215.GA20724@kyuzo.dunkelkammer.void> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zYM0uCDKw75PZbzx" Content-Disposition: inline In-Reply-To: <20040822182215.GA20724@kyuzo.dunkelkammer.void> User-Agent: Mutt/1.4.2.1i Subject: Re: ignoring FETCH_DEPENDS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 19:32:09 -0000 --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 22, 2004 at 08:22:15PM +0200, Stefan Walter wrote: > Mark Russell in gmane.os.freebsd.devel.ports: >=20 > > The distfiles of the 2 ports concerned fetch fine without the=20 > > FETCH_DEPENDS, the case of net/p5-Net-SSH-Perl it wants to install its= =20 > > BUILD_DEPENDS before it fetches, I've yet to work out why. The other po= rt=20 >=20 > It's a bug in the Makefile, it shouldn't have those FETCH_DEPENDS. Could > you try the attached patch? It >=20 > - removes the FETCH_DEPENDS. > - removes an unused variable. > - corrects a dependency on devel/p5-IO which is not necessary for recent > Perl versions. >=20 > The CVS logs say there were also problems with the package build on > bento. I was able to build a package without any problems, so I removed > NO_PACKAGE, too. Maybe that one's fixed now, too. Unlikely, the port hasn't been updated since then. The problem is that it goes into an infinite loop prompting for input if built without a controlling tty. Kris --zYM0uCDKw75PZbzx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBKPS2Wry0BWjoQKURAsKeAKCs21o9Jed+wem5aej/++aV5qBvVQCeJHfO G9t7DafW+0uxxMcNNvsnQuo= =+pG2 -----END PGP SIGNATURE----- --zYM0uCDKw75PZbzx-- From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 20:53:26 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 535E916A4CE; Sun, 22 Aug 2004 20:53:26 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 194A943D49; Sun, 22 Aug 2004 20:53:26 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-8.local ([172.16.0.8] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1ByzL9-000MJT-T1; Sun, 22 Aug 2004 22:53:25 +0200 Date: Sun, 22 Aug 2004 22:53:26 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: "Jacques A. Vidrine" From: Oliver Eikemeier In-Reply-To: <20040822192915.GA17478@madman.celabo.org> Message-Id: <50BEFF1D-F47D-11D8-8CAA-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: freebsd-vuxml@freebsd.org cc: ports@freebsd.org cc: Dan Langille Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 20:53:26 -0000 Jacques A. Vidrine wrote: > The `ranges' table perhaps looks erm interesting. In this case, > I encoded each package version number into four 32-bit integers. > This allowed one to lookup an affected package completely in SQL. > However, the encoding I used may now be incorrect in some ways, since > pkg_install et al were recently changed to treat version numbers > differently. I can just donate some code that converts version numbers into arbitrary precision floting point numbers between zero and one. An alternate (and maybe easier to handle) form are hex strings which can simply compared with strcmp. >> description text not null, FWIIW, I would prefer to have a null description that is replaced by some dummy text when rendering. >> date_discovery date , That same here: don't assume a valid date (or map non-existing dates to 1970-1-1). The reason is that I want to have a form of `quick' entries, which are not fully reviewed. > I think this is also easier to > modify if we get new children of , e.g. the and > tags that are currently in the VuXML pre-1.2 DTD. Ehm, is the DTD somewhere available form review? And how about the csh-style braces / tags suggested in ? -Oliver From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 21:33:25 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A0D516A4D0; Sun, 22 Aug 2004 21:33:25 +0000 (GMT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id D701143D46; Sun, 22 Aug 2004 21:33:24 +0000 (GMT) (envelope-from nectar@celabo.org) Received: from localhost (localhost [127.0.0.1]) by gw.celabo.org (Postfix) with ESMTP id 554ED5487E; Sun, 22 Aug 2004 16:33:24 -0500 (CDT) Received: from gw.celabo.org ([127.0.0.1]) by localhost (hellblazer.celabo.org [127.0.0.1]) (amavisd-new, port 10024) with SMTP id 16323-02; Sun, 22 Aug 2004 16:33:13 -0500 (CDT) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "madman.celabo.org", Issuer "celabo.org CA" (not verified)) by gw.celabo.org (Postfix) with ESMTP id 7402A54861; Sun, 22 Aug 2004 16:33:13 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id 306236D46E; Sun, 22 Aug 2004 16:33:04 -0500 (CDT) Date: Sun, 22 Aug 2004 16:33:04 -0500 From: "Jacques A. Vidrine" To: Oliver Eikemeier Message-ID: <20040822213304.GF17478@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Oliver Eikemeier , Dan Langille , freebsd-vuxml@freebsd.org, ports@freebsd.org References: <20040822192915.GA17478@madman.celabo.org> <50BEFF1D-F47D-11D8-8CAA-00039312D914@fillmore-labs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <50BEFF1D-F47D-11D8-8CAA-00039312D914@fillmore-labs.com> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: freebsd-vuxml@freebsd.org cc: ports@freebsd.org cc: Dan Langille Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 21:33:25 -0000 On Sun, Aug 22, 2004 at 10:53:26PM +0200, Oliver Eikemeier wrote: > Jacques A. Vidrine wrote: > > >The `ranges' table perhaps looks erm interesting. In this case, > >I encoded each package version number into four 32-bit integers. > >This allowed one to lookup an affected package completely in SQL. > >However, the encoding I used may now be incorrect in some ways, since > >pkg_install et al were recently changed to treat version numbers > >differently. > > I can just donate some code that converts version numbers into arbitrary > precision floting point numbers between zero and one. Sure, that's great if it covers all cases! Floating point is limited to something like 64 bits, and I found version numbers that required almost 96 bits in the encoding I used (which I believe to be pretty tight). > An alternate (and > maybe easier to handle) form are hex strings which can simply compared > with strcmp. Definitely easier to handle (assuming everything is padded correctly). I found using integer comparisons was quite a bit faster, but this could be a micro-optimization. Heck, I'm not convinced that the whole exercise of encoding version strings is not a micro-optimization :-) but it is fun and interesting. > >> description text not null, > > FWIIW, I would prefer to have a null description that is replaced by > some dummy text when rendering. > > >> date_discovery date , > > That same here: don't assume a valid date (or map non-existing dates to > 1970-1-1). The reason is that I want to have a form of `quick' entries, > which are not fully reviewed. The current version of VuXML does not allow these to be null, and I it is probably good to reflect those constraints in the database. > >I think this is also easier to > >modify if we get new children of , e.g. the and > > tags that are currently in the VuXML pre-1.2 DTD. > > Ehm, is the DTD somewhere available form review? And how about the > csh-style braces / tags suggested in > > ? http://www.vuxml.org/dtd/vuxml-1/vuxml-pre12.dtd http://www.vuxml.org/dtd/vuxml-1/vuxml-model-pre12.mod The is directly from the previous thread here, while was recently added due to a conversation from last week that I thought was here ... but I don't see it in the archives, so I'm clearly mistaken about that. Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 22:09:23 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BD6E16A4CE; Sun, 22 Aug 2004 22:09:23 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5647E43D39; Sun, 22 Aug 2004 22:09:23 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-8.local ([172.16.0.8] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bz0Wd-000GJU-Ee; Mon, 23 Aug 2004 00:09:22 +0200 Date: Mon, 23 Aug 2004 00:09:22 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: "Jacques A. Vidrine" From: Oliver Eikemeier In-Reply-To: <20040822213304.GF17478@madman.celabo.org> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: freebsd-vuxml@freebsd.org cc: ports@freebsd.org cc: Dan Langille Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 22:09:23 -0000 Jacques A. Vidrine wrote: > On Sun, Aug 22, 2004 at 10:53:26PM +0200, Oliver Eikemeier wrote: >> Jacques A. Vidrine wrote: >> >>> The `ranges' table perhaps looks erm interesting. In this case, >>> I encoded each package version number into four 32-bit integers. >>> This allowed one to lookup an affected package completely in SQL. >>> However, the encoding I used may now be incorrect in some ways, since >>> pkg_install et al were recently changed to treat version numbers >>> differently. >> >> I can just donate some code that converts version numbers into >> arbitrary >> precision floting point numbers between zero and one. > > Sure, that's great if it covers all cases! Floating point is limited > to something like 64 bits, and I found version numbers that required > almost 96 bits in the encoding I used (which I believe to be pretty > tight). > >> An alternate (and >> maybe easier to handle) form are hex strings which can simply compared >> with strcmp. > > Definitely easier to handle (assuming everything is padded correctly). > I found using integer comparisons was quite a bit faster, but this > could be a micro-optimization. Heck, I'm not convinced that the whole > exercise of encoding version strings is not a micro-optimization :-) > but it is fun and interesting. Ok, I check if my prototypes still work. I'm not sure about the value of encoding version string (especially since you have to reencode everything again in case we make some additions), but if you have applications for it I won't be in the way. >>>> description text not null, >> >> FWIIW, I would prefer to have a null description that is replaced by >> some dummy text when rendering. >> >>>> date_discovery date , >> >> That same here: don't assume a valid date (or map non-existing dates to >> 1970-1-1). The reason is that I want to have a form of `quick' entries, >> which are not fully reviewed. > > The current version of VuXML does not allow these to be null, and I it > is probably good to reflect those constraints in the database. Which means you possibly have to change the database description when upgrading. >>> I think this is also easier to >>> modify if we get new children of , e.g. the and >>> tags that are currently in the VuXML pre-1.2 DTD. >> >> Ehm, is the DTD somewhere available form review? And how about the >> csh-style braces / tags suggested in >> >> ? > > http://www.vuxml.org/dtd/vuxml-1/vuxml-pre12.dtd > http://www.vuxml.org/dtd/vuxml-1/vuxml-model-pre12.mod > > The is directly from the previous thread here, while > was recently added due to a conversation from last week > that I thought was here ... but I don't see it in the archives, so I'm > clearly mistaken about that. should be stuff like i386? I'm not sure that there are many applications for that. Usually the description is sufficient for those purposes. Or did you have something different in mind? -Olver From owner-freebsd-ports@FreeBSD.ORG Sun Aug 22 22:17:09 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 484B916A4CE for ; Sun, 22 Aug 2004 22:17:09 +0000 (GMT) Received: from ajax.achean.com (ajax.achean.com [212.87.82.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96C7743D58 for ; Sun, 22 Aug 2004 22:17:08 +0000 (GMT) (envelope-from jon.mercer@achean.com) Received: from odysseus.office.achean.com (dsl-217-155-191-92.zen.co.uk [217.155.191.92]) by ajax.achean.com (8.12.11/8.12.11) with ESMTP id i7MMHG5W011152 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 22 Aug 2004 23:17:17 +0100 (BST) (envelope-from jon.mercer@achean.com) Received: from [127.0.0.1] (localhost [127.0.0.1])i7MMGplR024414 for ; Sun, 22 Aug 2004 23:16:52 +0100 (BST) (envelope-from jon.mercer@achean.com) From: Jon Mercer To: freebsd-ports@freebsd.org Content-Type: text/plain Organization: Achean Limited Message-Id: <1093213011.73647.49.camel@odysseus.office.achean.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sun, 22 Aug 2004 23:16:51 +0100 Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.64-achean_mailfilter_v1.00 X-Spam-Checker-Version: SpamAssassin 2.64-achean_mailfilter_v1.00 (2004-01-11) on ajax.achean.com X-Virus-Scanned: clamd / ClamAV version devel-20040711, clamav-milter version 0.74a on ajax.achean.com X-Virus-Status: Clean Subject: Apache2 on 4.10 coredumps X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Aug 2004 22:17:09 -0000 I'm sure someone knows more about this than I do. Having cvsupped ports and rebuilt Apache2 (2.0.50_2) there seems to be an issue whereby httpd core dumps after forking from the initial process. ktrace suggests that the initial process reads the config files and loads all the modules fine and exits after forking from an initial process and produces a core file in / (is that the right behaviour?) Has anyone else come across a similar issue? Apache is built with a list on modules and without IPv6 to match the kernel build. Am happy to provide any info required by someone wishing to look into this. Not being a developer this one has me a bit stumped. Best regards, Jon -- +----------------------------------------------------------------+ | ___ ___ | | / | | / | | / /| | / / | | / / | | _____ / / ____ ____ ___ | | / /__| | / ___ \ / /__ / __ \ / _ | | /__ | | / ____ | / / /_/ / ___ \ / /_/ / / / | | / ___ \ | | / / | | / / __ / / \ \ | ___/__ / / / / / / \ \ | | / / | | | |__/ / / / / / | \__/ / | |_| | / / / / | | /__\ /___\ \_____/ /__| /__| \_____/ \__/|_| /__| /__| | | | | www.achean.com | | ============== | | Jon Mercer jon.mercer@achean.com | +----------------------------------------------------------------+ From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 00:17:10 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4569916A4CE; Mon, 23 Aug 2004 00:17:10 +0000 (GMT) Received: from digger1.defence.gov.au (digger1.defence.gov.au [203.5.217.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4656443D2D; Mon, 23 Aug 2004 00:17:09 +0000 (GMT) (envelope-from wilkinsa@squirm.dsto.defence.gov.au) Received: from ednmsw503.dsto.defence.gov.au (ednmsw503.dsto.defence.gov.au [131.185.2.150]) by digger1.defence.gov.au with ESMTP id i7N0GNfl028699; Mon, 23 Aug 2004 09:46:23 +0930 (CST) Received: from muttley.dsto.defence.gov.au (unverified) by ednmsw503.dsto.defence.gov.au (Content Technologies SMTPRS 4.3.10) with ESMTP id ; Mon, 23 Aug 2004 09:47:01 +0930 Received: from ednex501.dsto.defence.gov.au (ednex501.dsto.defence.gov.au [131.185.2.81]) by muttley.dsto.defence.gov.au (8.11.3/8.11.3) with ESMTP id i7N0CBw17878; Mon, 23 Aug 2004 09:42:12 +0930 (CST) Received: from squirm.dsto.defence.gov.au ([131.185.40.211]) by ednex501.dsto.defence.gov.au with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13) id QXSX76B9; Mon, 23 Aug 2004 09:41:56 +0930 Received: from squirm.dsto.defence.gov.au (localhost [127.0.0.1]) by squirm.dsto.defence.gov.au (8.12.11/8.12.11) with ESMTP id i7N0CBYv016005 ; Mon, 23 Aug 2004 09:42:11 +0930 (CST) (envelope-from wilkinsa@squirm.dsto.defence.gov.au) Received: (from wilkinsa@localhost) by squirm.dsto.defence.gov.au (8.12.11/8.12.11/Submit) id i7N0CBsh016004; Mon, 23 Aug 2004 09:42:11 +0930 (CST) (envelope-from wilkinsa) Date: Mon, 23 Aug 2004 09:42:11 +0930 From: "Wilkinson, Alex" To: jedgar@freebsd.org Message-ID: <20040823001211.GA63334@squirm.dsto.defence.gov.au> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline X-Message-Flag: "Beware of Outlook! It Bites You Eventually" User-Agent: Mutt/1.5.6i cc: ports@freebsd.org Subject: /usr/ports/sysutils/roottail [Program exiting due to signal: 11] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 00:17:10 -0000 FreeBSD 4.10-STABLE #3: Sat Jul 31 19:23:16 CST 2004 # /usr/X11R6/bin/root-tail /var/log/messages,yellow [works fine] # /usr/X11R6/bin/root-tail -g 220x4+2+0 /var/log/messages,yellow Program exiting due to signal: 11 - aW From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 00:50:22 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C14C16A4CE; Mon, 23 Aug 2004 00:50:22 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4572343D49; Mon, 23 Aug 2004 00:50:22 +0000 (GMT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 2B4EA3D3D; Sun, 22 Aug 2004 20:50:21 -0400 (EDT) From: "Dan Langille" To: "Jacques A. Vidrine" Date: Sun, 22 Aug 2004 20:50:21 -0400 MIME-Version: 1.0 Message-ID: <4129070D.28233.7C2E4023@localhost> Priority: normal In-reply-to: <20040822192915.GA17478@madman.celabo.org> References: <41279E59.13631.76AD2AB9@localhost> X-mailer: Pegasus Mail for Windows (v4.12a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: ports@freebsd.org cc: freebsd-vuxml@freebsd.org Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 00:50:22 -0000 On 22 Aug 2004 at 14:29, Jacques A. Vidrine wrote: > [Added freebsd-vuxml@] > > On Sat, Aug 21, 2004 at 07:11:21PM -0400, Dan Langille wrote: > > Hi folks, > > > > I'm in the early stage of incorporating VuXML information into > > FreshPorts. > > Alright! That'll be cool. A thought which came to me overnight: does anyone have suggestions as to how existing FreshPorts pages should be modified to include VuXML messages? Please feel free to take an existing FreshPorts page, do a file-save-as, and alter the HTML to suit. Then give us the URL where we can find your version. My idea: Take http://www.freshports.org/sysutils/bacula/ as an example. I think adding a special icon to the left hand colum under Commit History. Alternatives welcome. I've not had time to read the replies to my original message yet. -- Dan Langille : http://www.langille.org/ From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 01:27:35 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C500C16A4CE for ; Mon, 23 Aug 2004 01:27:35 +0000 (GMT) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [210.226.20.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BDEE43D1D for ; Mon, 23 Aug 2004 01:27:35 +0000 (GMT) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by black.imgsrc.co.jp (Postfix) with ESMTP id 3AC3450BE4; Mon, 23 Aug 2004 10:27:34 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [IPv6:2001:218:422:2::9999]) by black.imgsrc.co.jp (Postfix) with ESMTP id 3919450BF0; Mon, 23 Aug 2004 10:27:32 +0900 (JST) Date: Mon, 23 Aug 2004 10:27:32 +0900 Message-ID: <7mr7py8wzf.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Rolandas Naujikas In-Reply-To: <20040817090228.GA1718@rolnas> References: <20040817090228.GA1718@rolnas> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=ISO-2022-JP X-Virus-Scanned: by amavisd 0.1 cc: ports@freebsd.org Subject: Re: port textproc/openjade doesn't build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 01:27:36 -0000 At Tue, 17 Aug 2004 12:02:28 +0300, Rolandas Naujikas wrote: > Building on clean system with required packages installed$B"h(B > Example from build log: Sato-san seemed to fix this problem. Retry after cvsup. Thank you for your report! -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 02:08:16 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA18916A4CE for ; Mon, 23 Aug 2004 02:08:16 +0000 (GMT) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id A32EA43D48 for ; Mon, 23 Aug 2004 02:08:16 +0000 (GMT) (envelope-from fbsd-ports@trini0.org) Received: from hivemind.trini0.org (trini0.org[65.34.205.195]) by comcast.net (rwcrmhc13) with ESMTP id <2004082302081601500p6s74e>; Mon, 23 Aug 2004 02:08:16 +0000 Received: from [192.168.0.3] (gladiator.trini0.org [192.168.0.3]) by hivemind.trini0.org (Postfix) with ESMTP id 6F44C2A for ; Sun, 22 Aug 2004 22:08:15 -0400 (EDT) Message-ID: <41295197.5050307@trini0.org> Date: Sun, 22 Aug 2004 22:08:23 -0400 From: Gerard Samuel User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040812) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Quanta 3.2.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 02:08:16 -0000 Anyone having any problems with Quanta 3.2.3? Im currently running FreeBSD 5.2.1-RELEASE-p9, KDE 3.2.3. This was a fresh install from the ground up of the OS, and programs 1.5 weeks ago. From what Im noticing, Quanta will dead lock up and crash when Im editing Smarty (http://smarty.php.net) template files. Im not sure what it is about the file that would trigger such a response. Just checking with the list to see if anyone else is experiencing similar behaviour. Thanks From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 02:51:32 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CA7816A4CE; Mon, 23 Aug 2004 02:51:32 +0000 (GMT) Received: from access.inet.co.th (access.inet.co.th [203.151.127.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id 236EB43D1D; Mon, 23 Aug 2004 02:51:31 +0000 (GMT) (envelope-from pirat@access.inet.co.th) Received: from _HOSTNAME_ (TruPPP0D156.inet.co.th [203.151.127.156]) by access.inet.co.th (8.12.9p2/8.12.9) with SMTP id i7N2pObE084771; Mon, 23 Aug 2004 09:51:25 +0700 (ICT) (envelope-from pirat@access.inet.co.th) Received: by _HOSTNAME_ (sSMTP sendmail emulation); Mon, 23 Aug 2004 09:59:52 +0700 From: "User &" Date: Mon, 23 Aug 2004 09:59:52 +0700 To: Kris Kennaway , "Daniel O'Connor" Message-ID: <20040823025952.GA14519@thai-aec.org> Mail-Followup-To: pirat , Kris Kennaway , Daniel O'Connor , freebsd-stable@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG References: <20040822035742.GA13803@thai-aec.org> <200408231014.25298.doconnor@gsoft.com.au> <20040822035742.GA13803@thai-aec.org> <20040822152625.GA32816@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=tis-620 Content-Disposition: inline In-Reply-To: <200408231014.25298.doconnor@gsoft.com.au> <20040822152625.GA32816@xor.obsecurity.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD firak.thai-aec.org 4.10-RELEASE FreeBSD 4.10-RELEASE www-home-page: http://www.thai-aec.org www-FreeBSD-page: http://www.thai.net/makham cc: freebsd-stable@FreeBSD.ORG cc: freebsd-questions@FreeBSD.ORG cc: freebsd-ports@FreeBSD.ORG Subject: Re: make package-recursive X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 02:51:32 -0000 On Sunday, 22 August 2004 at 8:26:25 -0700, Kris Kennaway wrote: > Date: Sun, 22 Aug 2004 08:26:25 -0700 > From: Kris Kennaway > To: User & > Cc: freebsd-stable@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG > Subject: Re: make package-recursive > > On Sun, Aug 22, 2004 at 10:57:42AM +0700, User & wrote: > > hi sirs, > > > > sorry for asking, but i need to know to aviod unnecessary making > > packages that have been made during 'make package-recursive' > > > > many thanks for any helps and hints. > > Please explain in more detail what you mean. > > Kris On Monday, 23 August 2004 at 10:14:25 +0930, Daniel O'Connor wrote: > From: "Daniel O'Connor" > To: freebsd-stable@freebsd.org > Subject: Re: make package-recursive > Date: Mon, 23 Aug 2004 10:14:25 +0930 > Cc: "User &" , freebsd-questions@freebsd.org > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Sun, 22 Aug 2004 13:27, User & wrote: > > sorry for asking, but i need to know to aviod unnecessary making > > packages that have been made during 'make package-recursive' > > What unnecessary packages? > make package-recurse makes all the packages a given port is dependent on. > > What should it do instead? > apologize for my bad english and post to the wrong list. my experiences are that i make expat2, perl5.8 from port and have made them packages into /usr/ports/package. now that i going on to make xorg from /usr/ports/x11 and also make package-recursive afterwards. the next step is that i am making gnome2 once again from ports. my point is that those xorgs' team such as xorg-clients xorg-libraries should not be made package once again, since they have already been made, when i make package-recursive at gnome2. one example is teTeX cd /usr/ports/prints/teTeX make install make package-recursive now am going to make docproj cd /usr/ports/texproc/docproj make JADETEX=yes -DWITH_OPENSSL_BASE install make JADETEX=yes -DWITH_OPENSSL_BASE package-recursive this time, i see teTeX, xorg-libraries also are having made package once again there should some way to tell make that if ports have been made package, the next time that ports should not have been made again in the make package-recursive from some other ports. the machine that i see this funny thing is inspiron# uname -a FreeBSD inspiron.thai-aec.org 5.2.1-RELEASE FreeBSD 5.2.1-RELEASE #0: Mon Feb 23 20:45:55 GMT 2004 root@wv1u.btc.adaptec.com:/usr/obj/usr/src/sys/GENERIC i 386 inspiron# one more time, i apologize for my broken english and thanks to all replies. -- with best regards, psr http://www.thai-aec.org http://www.thai.net/makham From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 02:53:13 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4403916A4CE for ; Mon, 23 Aug 2004 02:53:13 +0000 (GMT) Received: from smtp03.mrf.mail.rcn.net (smtp03.mrf.mail.rcn.net [207.172.4.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F16343D1D for ; Mon, 23 Aug 2004 02:53:13 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from 209-6-197-67.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.197.67] helo=jerusalem.litteratus.org.litteratus.org) by smtp03.mrf.mail.rcn.net with esmtp (Exim 3.35 #7) id 1Bz4xL-0002r9-00 for ports@freebsd.org; Sun, 22 Aug 2004 22:53:12 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16681.23565.672106.172385@jerusalem.litteratus.org> Date: Sun, 22 Aug 2004 22:53:01 -0400 To: ports@freebsd.org X-Mailer: VM 7.17 under 21.5 (beta16) "celeriac" XEmacs Lucid Subject: fetch problem from multimedia/linux-realplayer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 02:53:13 -0000 I'm trying to install multimedia/linux-realplayer, which starts with: ** Port marked as IGNORE: multimedia/linux-realplayer: may not be automatically fetched due to licensing restrictions. You MUST manually fetch the Linux RPM version after reading and agreeing to the license at: http://forms.real.com/real/player/unix/unix.html - once rp8_linux20_libc6_i386_cs2_rpm rv9_libc6_i386_cs2.tgz:update has been downloaded, move it to /usr/ ports/distfiles and then restart this build. So I go to that URL, which re-directs me to: http://www.real.com/linux/ From there, [Download RPM package] offers "RealPlayer10Gold.rpm" - not what I'm looking for. Am I just being dense, or are the instructions insufficient? Robert Huff From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 04:27:25 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A25B016A4CE for ; Mon, 23 Aug 2004 04:27:25 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 716C543D48 for ; Mon, 23 Aug 2004 04:27:25 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i7N4ROmg068949 for ; Sun, 22 Aug 2004 21:27:25 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i7N4ROUQ068948 for ports@freebsd.org; Sun, 22 Aug 2004 21:27:24 -0700 (PDT) (envelope-from obrien) Date: Sun, 22 Aug 2004 21:27:24 -0700 From: "David O'Brien" To: ports@freebsd.org Message-ID: <20040823042724.GA64310@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 6.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Subject: Why does gettext depend on textproc/expat2 ?? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@freebsd.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 04:27:25 -0000 The define "HAVE_LIBEXPAT" is the knob gettext uses to specify that 'expat' is available. The problem is only gettext-tools/src/x-glade.c refers to "HAVE_LIBEXPAT"; but x-glade.c never makes it into any of the libs that I can find. -- -- David (obrien@FreeBSD.org) From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 04:37:02 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C15A16A4CE; Mon, 23 Aug 2004 04:37:02 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4395E43D49; Mon, 23 Aug 2004 04:37:01 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.151] (port=58987 helo=inbox.ru) by mx2.mail.ru with esmtp id 1Bz6Zm-000Mbm-00; Mon, 23 Aug 2004 08:36:59 +0400 Date: Mon, 23 Aug 2004 08:36:00 +0400 From: Roman Bogorodskiy To: ports@freebsd.org Message-ID: <20040823043600.GA40156@lame.novel.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TB36FDmn/VVEgNH/" Content-Disposition: inline X-GPG: http://phptags.sourceforge.net/key User-Agent: Mutt/1.5.6i X-Spam: Not detected cc: clsung@FreeBSD.org Subject: net/centericq core dumps X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 04:37:02 -0000 --TB36FDmn/VVEgNH/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, I'm running 5.3-BETA1 cvsup'ed last time on 22th of August. I have some problems with net/centericq: it compiles and starts fine but after connecting to the ICQ server it goes core dump with a such message: centericq in free(): error: junk pointer, too high to make sense=20 Any ideas how to fix this problem? -Roman Bogorodskiy --TB36FDmn/VVEgNH/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iQCVAwUBQSl0MIB0WzgdqspGAQIgPQQAkgi5OYe1ScY05YNvltgFZ+RzViHURYYd HBt0DjcN4z1D+3yswPkYllLAuFEMxIDjI6YaTNAMccPP6E57fwG6FD4OFnmisE0k k0rf1UzjI9BPKokQBCF9MaNMQokg6UIX27LL5iHsWYWAyeaWgb/QGxP47Dl4cuKK AFSZ7lVOFAo= =8muh -----END PGP SIGNATURE----- --TB36FDmn/VVEgNH/-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 04:38:02 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C00CF16A4CE for ; Mon, 23 Aug 2004 04:38:02 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7308F43D48 for ; Mon, 23 Aug 2004 04:38:02 +0000 (GMT) (envelope-from eta@lclark.edu) Received: from [192.168.0.103] (c-24-21-18-195.client.comcast.net[24.21.18.195]) by comcast.net (sccrmhc13) with SMTP id <2004082304380101600jnokle>; Mon, 23 Aug 2004 04:38:01 +0000 From: Eric Anholt To: ports@FreeBSD.org Content-Type: text/plain Message-Id: <1093235880.891.42.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sun, 22 Aug 2004 21:38:00 -0700 Content-Transfer-Encoding: 7bit Subject: X11 manindex creation X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 04:38:02 -0000 Does anyone out there ever use the HTML manpages, and specifically the HTML manpage index, generated by imake-using ports? It would be nice to remove this complication from imake-using ports' build process if nobody actually uses it. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 05:29:10 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B30D16A4CE for ; Mon, 23 Aug 2004 05:29:10 +0000 (GMT) Received: from mwinf0903.wanadoo.fr (smtp9.wanadoo.fr [193.252.22.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CA3243D2D for ; Mon, 23 Aug 2004 05:29:10 +0000 (GMT) (envelope-from geraud.continsouzas@wanadoo.fr) Received: from me-wanadoo.net (localhost [127.0.0.1]) by mwinf0903.wanadoo.fr (SMTP Server) with SMTP id 44AE118000A7; Mon, 23 Aug 2004 07:29:09 +0200 (CEST) Received: from [80.15.174.8] (ANeuilly-106-1-3-8.w80-15.abo.wanadoo.fr [80.15.174.8]) by mwinf0903.wanadoo.fr (SMTP Server) with ESMTP id C08D618000A4; Mon, 23 Aug 2004 07:29:08 +0200 (CEST) From: Geraud CONTINSOUZAS To: Robert Huff In-Reply-To: <16681.23565.672106.172385@jerusalem.litteratus.org> References: <16681.23565.672106.172385@jerusalem.litteratus.org> Content-Type: text/plain Message-Id: <1093239047.374.10.camel@amedee.gejtoo.dyndns.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Mon, 23 Aug 2004 07:30:48 +0200 Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: fetch problem from multimedia/linux-realplayer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 05:29:10 -0000 Hi, On Mon, 2004-08-23 at 04:53, Robert Huff wrote: > I'm trying to install multimedia/linux-realplayer, which starts > with: > > ** Port marked as IGNORE: multimedia/linux-realplayer: > may not be automatically fetched due to licensing > restrictions. You MUST manually fetch the Linux RPM version after > reading and agreeing to the license at: > http://forms.real.com/real/player/unix/unix.html - once > rp8_linux20_libc6_i386_cs2_rpm rv9_libc6_i386_cs2.tgz:update has > been downloaded, move it to /usr/ ports/distfiles and then restart > this build. > > So I go to that URL, which re-directs me to: > > http://www.real.com/linux/ > > From there, [Download RPM package] offers > "RealPlayer10Gold.rpm" - not what I'm looking for. Am I just being > dense, or are the instructions insufficient? > > Seems that Real removed this file. I got stuck with the same problem a couple of days ago. I tried to get the file from googlification but only found some customized 404 pages or some old version version of the file (prior to the 2004.07.28 distinfo update). Finally, I had to beg a friend to look into his distfiles dir to get me the right version. Anyway, my mplayer still segfaults at start on my -CURRENT, but that's another story. Regards, G. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 07:22:47 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BCDA16A4CE for ; Mon, 23 Aug 2004 07:22:47 +0000 (GMT) Received: from atlas.informatik.rwth-aachen.de (atlas.informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id F07C143D1D for ; Mon, 23 Aug 2004 07:22:45 +0000 (GMT) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from i2.informatik.rwth-aachen.de (menelaos.informatik.RWTH-Aachen.DE [137.226.194.73]) with ESMTP id i7N7MikL010647; Mon, 23 Aug 2004 09:22:44 +0200 Received: (from stolz@localhost)i7N7Midh033202; Mon, 23 Aug 2004 09:22:44 +0200 (CEST) (envelope-from stolz) Date: Mon, 23 Aug 2004 09:22:44 +0200 From: Volker Stolz To: Ross Smith Message-ID: <20040823072244.GA33198@i2.informatik.rwth-aachen.de> References: <6545DF1E-F396-11D8-AA13-000A9588A0D8@med.nyu.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <6545DF1E-F396-11D8-AA13-000A9588A0D8@med.nyu.edu> X-PGP-Key: finger vs@foldr.org X-PGP-Id: 0x3FD1B6B5 User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org Subject: Re: HELP!!! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 07:22:47 -0000 In local.freebsd-ports, you wrote: > I need the sources for package "Sources for ports/emulators/vmsbackup" > > However, the URL ftp://ftp.cs.uni-sb.de/pub/utils/vmsbackup.tgz > refuses access to the file. The file is cached on the FreeBSD-mirrors at /pub/FreeBSD/ports/distfiles, eg. here: ftp://ftp8.de.freebsd.org/pub/FreeBSD/ports/distfiles/vmsbackup.tgz -- http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME L-Attriwutgrammatik From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 07:25:19 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4B9416A4CE for ; Mon, 23 Aug 2004 07:25:19 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id A157543D31 for ; Mon, 23 Aug 2004 07:25:19 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.41 (FreeBSD)) id 1Bz9CW-0004AT-Ci; Mon, 23 Aug 2004 09:25:08 +0200 Date: Mon, 23 Aug 2004 09:25:08 +0200 From: Kirill Ponomarew To: Eric Anholt Message-ID: <20040823072508.GD14637@voodoo.oberon.net> References: <1093235880.891.42.camel@leguin> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0/kgSOzhNoDC5T3a" Content-Disposition: inline In-Reply-To: <1093235880.891.42.camel@leguin> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: ports@FreeBSD.org Subject: Re: X11 manindex creation X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 07:25:20 -0000 --0/kgSOzhNoDC5T3a Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, On Sun, Aug 22, 2004 at 09:38:00PM -0700, Eric Anholt wrote: > Does anyone out there ever use the HTML manpages, and specifically the > HTML manpage index, generated by imake-using ports? It would be nice to > remove this complication from imake-using ports' build process if nobody > actually uses it. I don't think many people use it, removing it would be a nice solution. -Kirill --0/kgSOzhNoDC5T3a Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBKZvUQC1G6a60JuURAkAdAKCOVXDvzPICZ17IxO+3aXtRx1TlNQCg64A0 3nP5Ctfa7ynd0ZTLIJRgY6g= =ys+Y -----END PGP SIGNATURE----- --0/kgSOzhNoDC5T3a-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 08:46:48 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 501B016A4CF for ; Mon, 23 Aug 2004 08:46:48 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0F2243D53 for ; Mon, 23 Aug 2004 08:46:47 +0000 (GMT) (envelope-from sw@gegenunendlich.de) Received: from [212.227.126.207] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1BzATX-0005ox-00 for ports@freebsd.org; Mon, 23 Aug 2004 10:46:47 +0200 Received: from [80.142.208.20] (helo=kyuzo.dunkelkammer.void) (TLSv1:EDH-RSA-DES-CBC3-SHA:168) (Exim 3.35 #1) id 1BzATW-00081p-00 for ports@freebsd.org; Mon, 23 Aug 2004 10:46:47 +0200 Received: by kyuzo.dunkelkammer.void (Postfix, from userid 1002) id C9B4340AA; Mon, 23 Aug 2004 10:46:45 +0200 (CEST) Date: Mon, 23 Aug 2004 10:46:45 +0200 From: Stefan Walter To: ports@freebsd.org Message-ID: <20040823084645.GA96598@kyuzo.dunkelkammer.void> Mail-Followup-To: ports@freebsd.org References: <20040822210254.F822@juana.isp.net.au> <20040822143708.GA29683@xor.obsecurity.org> <20040823004314.E822@juana.isp.net.au> <20040822182215.GA20724@kyuzo.dunkelkammer.void> <20040822193206.GA45774@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="liOOAslEiF7prFVr" Content-Disposition: inline In-Reply-To: <20040822193206.GA45774@xor.obsecurity.org> X-PGP-key: http://www.gegenunendlich.de/swalter-rsa.asc X-PGP-fp: 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 Organization: Infinity Approximation Task Force X-PGP-key: http://www.gegenunendlich.de/swalter-rsa.asc X-PGP-fingerprint: 85D8 6A49 22C7 6CD9 B011 5D6A 5691 111B 12B9 E0B3 User-Agent: Mutt/1.5.6i X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:bea306e5fe0930b42d4355ca01786db1 Subject: Re: ignoring FETCH_DEPENDS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 08:46:48 -0000 --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Kris Kennaway in gmane.os.freebsd.devel.ports: >> The CVS logs say there were also problems with the package build on >> bento. I was able to build a package without any problems, so I removed >> NO_PACKAGE, too. Maybe that one's fixed now, too. > > Unlikely, the port hasn't been updated since then. The problem is > that it goes into an infinite loop prompting for input if built > without a controlling tty. I just sent a PR [1] with a patch. I didn't have any problems with a build scheduled via at(1); but the PR includes a patch for the configure script which suppresses interaction and just selects all algorithms, anyway, so that shouldn't be a problem any more. I removed NO_PACKAGE; I think it's worth a try. Stefan [1]: http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/70847 --=20 No reading beyond this point --liOOAslEiF7prFVr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iQGVAwUBQSmu9VaRERsSueCzAQI4zgv/TNOxre95avvWf0aH0tmCXa5FHv7wHUSk sOAToCdIJN80ETyA+3eARqdKWzeXuxh8oqA9eS8YetnzaLw+QrZM+jkclWlWEiOx yH8pLVGJiD22s7SFZ1WPxPHcy6V6N4UOG/cCcBm9HqQkf9A7n4s69M+hXwA8XEB8 7HQxSSdYdc9kDeNFJGMQ5ib2N8lfiJPGcczHQrwDb+5oUFZMhThgz8mgsmRHI8i8 wD45WHtPwd3xlbiUTwKSTzv2N89hf3fSODMWekQ5AvyLr2V3xjBGOfUrbnx4As0h 3VGGR70b3QeLJdch3VRKEKJZF58sy0mG7+6jlM+vCsiUUmQueKJ0q7qgLtRZlLVj GfyklJUAzhw6WH5ps5c8N3oT3jpYWhQkw5p+idEEGwusIE6FXcIMPIRUMM+s5cD3 S/MoD8jfq0HxoJ72RJ1HTzT2bBX9hZ6u5NL0KGCJn3LH9aojgh81m1mSaAFRNEZw jcDxcHLXGjYebzSJv789EfN/44bYMqoe =mOVU -----END PGP SIGNATURE----- --liOOAslEiF7prFVr-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 08:49:01 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FE9416A4CE for ; Mon, 23 Aug 2004 08:49:01 +0000 (GMT) Received: from hotmail.com (bay18-f4.bay18.hotmail.com [65.54.187.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0379D43D53 for ; Mon, 23 Aug 2004 08:49:01 +0000 (GMT) (envelope-from weaseal@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 23 Aug 2004 01:49:00 -0700 Received: from 68.50.16.152 by by18fd.bay18.hotmail.msn.com with HTTP; Mon, 23 Aug 2004 08:49:00 GMT X-Originating-IP: [68.50.16.152] X-Originating-Email: [weaseal@hotmail.com] X-Sender: weaseal@hotmail.com From: "Walter Venable" To: krion@voodoo.oberon.net, eta@lclark.edu Date: Mon, 23 Aug 2004 04:49:00 -0400 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 23 Aug 2004 08:49:00.0805 (UTC) FILETIME=[0903BB50:01C488EE] cc: ports@FreeBSD.org Subject: Re: X11 manindex creation X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 08:49:01 -0000 >Hi, > >On Sun, Aug 22, 2004 at 09:38:00PM -0700, Eric Anholt wrote: > > Does anyone out there ever use the HTML manpages, and specifically the > > HTML manpage index, generated by imake-using ports? It would be nice to > > remove this complication from imake-using ports' build process if nobody > > actually uses it. > >I don't think many people use it, removing it would be a nice >solution. I concur...Seems like a waste of cycles to me. _________________________________________________________________ Don’t just search. Find. Check out the new MSN Search! http://search.msn.click-url.com/go/onm00200636ave/direct/01/ From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 11:01:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D76516A4E8 for ; Mon, 23 Aug 2004 11:01:07 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD17343D1F for ; Mon, 23 Aug 2004 11:00:53 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i7NB0rC6028708 for ; Mon, 23 Aug 2004 11:00:53 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NB0qgC028702 for freebsd-ports@freebsd.org; Mon, 23 Aug 2004 11:00:52 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 23 Aug 2004 11:00:52 GMT Message-Id: <200408231100.i7NB0qgC028702@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 11:01:08 -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. 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 S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [2004/06/08] ports/67721 ports-bugs FreeBSD-current + Samba 3.0.4 + FAT32. Fi a [2004/08/02] ports/69899 ports-bugs gq coredumps. 2 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/02/22] ports/25272 ports-bugs Using lang/eperl as cgi/nph binary execut o [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d s [2002/12/18] ports/46338 ports-bugs security/cyrus-sasl 1.5.27_7 mysql_verify s [2003/05/11] ports/52079 ports-bugs vmware3 hangs when nmdm(4) is used as COM s [2003/06/17] ports/53414 ports-bugs port security/amavis-perl open filedescri s [2003/12/29] ports/60700 ports-bugs squid cannot be built with transparent-ip f [2004/02/05] ports/62377 ports-bugs strace hangs when running programs from c f [2004/03/15] ports/64284 ports-bugs [PATCH] Fix audio/id3lib compilation with o [2004/03/28] ports/64838 ports-bugs new port: chinese/msttf o [2004/04/19] ports/65793 ports-bugs SEGV in isakmpd, esp when associating wit f [2004/04/20] ports/65824 ports-bugs sysutils/LPRng and sysutils/LPRngTool - a a [2004/06/09] ports/67735 ports-bugs biology/ncbi-toolkit does not build bl2se s [2004/07/02] ports/68610 ports-bugs lcms upgrade from 1.12,1 -> 1.13,1 fails: o [2004/07/14] ports/69065 ports-bugs Some security fixes (Backported the fix f f [2004/07/19] ports/69258 ports-bugs audio/teamspeak_server port does not open o [2004/07/22] ports/69404 ports-bugs mono compiler (mcs) crashes with assertio o [2004/07/29] ports/69771 ports-bugs I can not compile xsp server to serve asp f [2004/08/05] ports/70021 ports-bugs [PATCH] mail/spamass-milter: Reliability f [2004/08/06] ports/70090 ports-bugs lang/gcc32 and lang/gcc33: unable to fetc o [2004/08/07] ports/70108 ports-bugs www/squid starts with 'squid_enable="NO"' a [2004/08/09] ports/70218 ports-bugs ports lang/mono install hangs o [2004/08/10] ports/70243 ports-bugs New port: audio/tta (simple lossless audi f [2004/08/10] ports/70258 ports-bugs Update port: p5-Module-Signature to 0.41 f [2004/08/11] ports/70301 ports-bugs Update sysutils/cfengine2 to 2.1.9 f [2004/08/11] ports/70319 ports-bugs Further E-Mail Fix o [2004/08/20] ports/70699 ports-bugs Typo in ports/devel/libedit, possible buf o [2004/08/22] ports/70806 ports-bugs oinkmaster use tar options incompatible t 27 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [2001/01/13] ports/24299 ports-bugs New port sysutils/tpconfig: configure the s [2001/10/02] ports/30993 ports-bugs xxgdb cannot open source file s [2002/04/17] ports/37186 ports-bugs Dbview contains an error, because of whic s [2002/06/18] ports/39476 ports-bugs profxp will run but when you fxp a file i s [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp s [2002/11/29] ports/45843 ports-bugs sysutils/3dm - needs to detect and create s [2002/12/02] ports/45911 ports-bugs GEOM-related problem sysutils/diskcheckd s [2003/02/12] ports/48217 ports-bugs New Port: www/mod_frontpage13 and www/mod o [2003/02/18] ports/48426 ports-bugs [PATCH] digger-vgl does not support conso o [2003/04/08] bin/50724 ports-bugs [PATCH] make /usr/sbin/pkg_fetch save ful o [2003/05/30] ports/52793 ports-bugs Samba 2.2.8a printing woes s [2003/08/08] ports/55371 ports-bugs xfig dumps core (unaligned access), if US o [2003/08/23] ports/55896 ports-bugs [NEW PORT] www/mozplugger s [2003/08/28] ports/56091 ports-bugs hp220 driver for print/ghostscript-gnu do s [2003/09/27] ports/57289 ports-bugs teamspeak-server port is broken in 3 ways o [2003/11/17] ports/59371 ports-bugs new port: net/smb4k, KDE SMB network brow o [2003/11/30] ports/59861 ports-bugs New port: net/mu-conference, jabber-mu-co o [2003/12/12] ports/60185 ports-bugs [New Port] www/w3-emacs21 WWW browser bas o [2003/12/21] ports/60472 ports-bugs [New Port] devel/doxymacs Doxymacs is Dox o [2004/01/15] ports/61384 ports-bugs NEW PORT: textproc/htmlize.el (turn emacs s [2004/01/17] ports/61471 ports-bugs Suggested mini-patch to ports/graphics/sa o [2004/02/02] ports/62256 ports-bugs New port: chinese/mozilla-sclp o [2004/02/09] ports/62557 ports-bugs [patch] WITH_POSTGRES -> WITH_POSTGRESQL o [2004/02/09] ports/62585 ports-bugs New port: net/mu-conference (Multi-User C o [2004/02/11] ports/62704 ports-bugs update for lang/moscow_ml (port fixes + n o [2004/02/14] ports/62840 ports-bugs New Port: dns/bind9-sdb-ldap, bind9 patch o [2004/02/17] ports/62960 ports-bugs new port: sysutils/mapchan, utility "mapc o [2004/02/21] ports/63176 ports-bugs [patch] WITH_PGSQL -> WITH_POSTGRESQL acr f [2004/02/23] ports/63279 ports-bugs New port:math/webwork used to create prob s [2004/02/25] ports/63354 ports-bugs security/bcwipe does not act successfully f [2004/02/25] ports/63357 ports-bugs [patch] www/linux-mozillafirefox port cre o [2004/02/29] ports/63543 ports-bugs New port: chinese/phpbb-zh_TW o [2004/03/03] ports/63715 ports-bugs Maintainer update: astro/seti-applet (2.1 o [2004/03/06] ports/63823 ports-bugs New port net/xbone-gui o [2004/03/06] ports/63856 ports-bugs update ports/www/p5-Apache-AuthCookie to o [2004/03/08] ports/63936 ports-bugs New port: security/aimsniff A perl script o [2004/03/09] ports/63979 ports-bugs new port: devel/linux-libunicode -- A uni o [2004/03/12] ports/64148 ports-bugs [NEW PORT] palm/synce-kde: SynCE KDE Util o [2004/03/13] ports/64202 ports-bugs New Port: x11/kde_api_reference_32, the k s [2004/03/15] ports/64307 ports-bugs [NEW PORT] databases/linux-unixODBC: RPM f [2004/03/22] ports/64586 ports-bugs new port: devel/preps-devel-gui stable re o [2004/03/25] ports/64686 ports-bugs [NEW PORTS] x11-toolkits/qtc-qtsharp qtsh o [2004/03/25] ports/64687 ports-bugs [New Port] games/dotgnu-mahjongg/ -- QT# o [2004/03/29] ports/64898 ports-bugs new port: misc/heyu2 for X10 control o [2004/03/30] ports/64915 ports-bugs [NEW PORT] vietnamese/x-unikey f [2004/03/31] ports/65009 ports-bugs Maintainer update: lang/gforth (build fix o [2004/04/05] ports/65207 ports-bugs [NEW PORT FIX]vietnamese/xvnkb build fix o [2004/04/07] ports/65279 ports-bugs [NEW PORT] www/kazehakase: Kazehakase is o [2004/04/08] ports/65310 ports-bugs security/SAVI-Perl: Submission of new por f [2004/04/08] ports/65318 ports-bugs New port: games/noegnud* an ASCII/2D/3D U o [2004/04/10] ports/65396 ports-bugs New port: java/rxtx: Native interface to o [2004/04/26] ports/66005 ports-bugs New port: mail/p5-SpamAssassin-devel - po o [2004/04/27] ports/66031 ports-bugs [NEW PORT] science/mcstas - neutron ray-t o [2004/04/28] ports/66042 ports-bugs new port: www/suexec13 (standalone suexec o [2004/05/04] ports/66246 ports-bugs new ports: textproc/docbook-utils, textpr o [2004/05/04] ports/66266 ports-bugs ports/net/yptransitd: support FreeBSD NIS o [2004/05/05] ports/66282 ports-bugs [NEW PORT] mail/p5-Mail-Vispan: PERL scri o [2004/05/11] ports/66506 ports-bugs [NEW PORT] www/p5-Apache-GopherHandler: G o [2004/05/18] ports/66799 ports-bugs [new port] cantus_3: GNOME2 tool for tagg s [2004/05/20] ports/66921 ports-bugs [NEW PORT] x11-wm/skippy-xd: A full-scree o [2004/05/20] ports/66927 ports-bugs [PATCH] mail/dcc-dccd has several problem o [2004/05/23] ports/67095 ports-bugs New port: www/p5-PLP: A Perl embedder som o [2004/06/04] ports/67572 ports-bugs New port: mnogosearch-devel: Full feature o [2004/06/05] ports/67599 ports-bugs [NEW PORT] math/geonext: Interactive (dyn s [2004/06/11] ports/67815 ports-bugs ImageMagick no longer recognizes FlashPix f [2004/06/11] ports/67826 ports-bugs p5-Text-FormatTable - patch f [2004/06/11] ports/67839 ports-bugs www/mod_jk2-apache2 2.0.2: uri /*.jsp mat o [2004/06/12] ports/67852 ports-bugs New port: irc/riece IRC client for Emacs o [2004/06/12] ports/67853 ports-bugs New port: mail/c-sig Signature insertion o [2004/06/17] ports/68045 ports-bugs New port: sysutils/daedalus Flexible Moni o [2004/06/17] ports/68050 ports-bugs New port: www/dpsearch : Open source sear o [2004/06/20] ports/68141 ports-bugs new port net/linux-overnet-core: Serverle s [2004/06/20] ports/68145 ports-bugs Update port: multimedia/linux-realplayer o [2004/06/20] ports/68146 ports-bugs New port: x11-themes/linux-gtk-bluecurve- o [2004/06/22] ports/68196 ports-bugs [New Port]: linux-zsnes - Linux binary ve o [2004/06/22] ports/68205 ports-bugs New Port: mail/ismail PHP-based webmail c f [2004/06/22] ports/68215 ports-bugs NEW PORT: multimedia/freevo, an open-sour o [2004/06/23] ports/68249 ports-bugs New port: mail/p5-MIME-Lite-HTML: Provide o [2004/06/24] ports/68269 ports-bugs [NEW PORT] www/p5-W3C-LogValidator: A com f [2004/06/25] ports/68331 ports-bugs [NEW PORT] graphics/jumpgis-postgis: JUMP f [2004/06/25] ports/68341 ports-bugs xsysinfo memory leak o [2004/06/27] ports/68414 ports-bugs New Port: security/foremost - Forensic an o [2004/07/01] ports/68572 ports-bugs New port: databases/cyrus-smlacapd cyrus o [2004/07/03] ports/68624 ports-bugs [NEW PORT] graphics/curator: Static Image o [2004/07/03] ports/68646 ports-bugs [New Port] polish/linux-mozillapl - Mozil o [2004/07/04] ports/68661 ports-bugs New port: security/ipfilterDshield, a dsh o [2004/07/04] ports/68662 ports-bugs New port: security/ppars (Proactive Probi f [2004/07/07] ports/68770 ports-bugs [PATCH] mail/qmail-scanner: Add an option o [2004/07/07] ports/68774 ports-bugs [NEW PORT] RubyGems - package management o [2004/07/08] ports/68820 ports-bugs New port:chinese/gaim Add plugin openQ(QQ f [2004/07/08] ports/68828 ports-bugs [PATCH] sysutils/ucspi-tcp: Apply ucspi-r o [2004/07/09] ports/68837 ports-bugs [New Port] polish/sap en-pl pl-en diction f [2004/07/09] ports/68847 ports-bugs Port Upgrade: net/gyach Update to new ver o [2004/07/09] ports/68872 ports-bugs audio/libmikmod update to 3.2.0-beta2 ; a o [2004/07/11] ports/68919 ports-bugs [New Port] misc/gkx86info2 - GKrellM2 plu f [2004/07/11] ports/68924 ports-bugs Update security/clamav-devel to 20040710 o [2004/07/11] ports/68934 ports-bugs New port: security/amavis-stats A simple o [2004/07/13] ports/68979 ports-bugs [new port] math/qalculate - best GUI calc o [2004/07/13] ports/68993 ports-bugs New port www/p5-Apache-ParseFormData o [2004/07/14] ports/69041 ports-bugs Please portlint [emulators/vmware3] o [2004/07/14] ports/69053 ports-bugs New port: audio/coverhunter, a program fe f [2004/07/15] ports/69128 ports-bugs [work-around] mail/postfix configure glit o [2004/07/16] ports/69160 ports-bugs New port: dns/rbllookup mail/rbllookup f [2004/07/17] ports/69212 ports-bugs ports/palm/coldsync doesn't work with Pal f [2004/07/18] ports/69219 ports-bugs update rwhoisd to version 1.5.9; install s [2004/07/19] ports/69299 ports-bugs [PATCH] missing dependency for www/linux- a [2004/07/20] ports/69322 ports-bugs ghostscript-afpl (8.14_5.1) fails if I tr o [2004/07/22] ports/69422 ports-bugs New port: the Equeue OCaml library o [2004/07/24] ports/69524 ports-bugs New port: chinese/BBMan o [2004/07/25] ports/69556 ports-bugs New port: security/secure_delete Secure d f [2004/07/25] ports/69557 ports-bugs Separation of mailman scripts and mailing o [2004/07/25] ports/69586 ports-bugs New port: chinese/PCManX o [2004/07/26] ports/69636 ports-bugs [new port] biology/blast f [2004/07/26] ports/69638 ports-bugs Add MASTER_SITE_GNA to bsd.sites.mk o [2004/07/30] ports/69781 ports-bugs [NEW PORT] japanese/ja-gjiten: Japanese d f [2004/07/30] ports/69795 ports-bugs [PATCH] textproc/p5-XML-Simple: fix pkg-p o [2004/07/30] ports/69829 ports-bugs [NEW PORT] graphics/jpeg-mmx: IJG's jpeg o [2004/07/30] ports/69832 ports-bugs [PATCH] multimedia/transcode: [add jpeg-m s [2004/07/31] ports/69836 ports-bugs [MAINTAINER] graphics/lphoto: [Add option o [2004/07/31] ports/69837 ports-bugs New Port: x11-wm/afterstep2 f [2004/07/31] ports/69848 ports-bugs lang/mono functions properly on 5.x if ${ f [2004/07/31] ports/69849 ports-bugs [update] py-opengl o [2004/08/02] ports/69906 ports-bugs rc.d functionality for net/vtun o [2004/08/02] ports/69912 ports-bugs New Port dns/mDNSResponder a re-port of A o [2004/08/03] ports/69943 ports-bugs New port: security/spike-proxy o [2004/08/04] ports/69995 ports-bugs A (new) port of the add-css-links XSL sty o [2004/08/04] ports/69996 ports-bugs A (new) port of the print-n-times XSL sty o [2004/08/04] ports/69998 ports-bugs A (new) port of the resume-extensions XSL f [2004/08/04] ports/70006 ports-bugs games/quake2forge fails to build on 5.2.1 o [2004/08/04] ports/70010 ports-bugs sysutils/dtc: DTC v0.14.0-R1 o [2004/08/05] ports/70017 ports-bugs New port: japanized strings(1) command (j o [2004/08/05] ports/70025 ports-bugs IPv6 CATEGORY not documented correctly f [2004/08/05] ports/70033 ports-bugs tcllib-1.6_1 installation hangs while ins o [2004/08/05] ports/70050 ports-bugs [New Port] databases/mysqlcppapi -- A bra o [2004/08/05] ports/70052 ports-bugs New Port: mail/getmail4 o [2004/08/06] ports/70060 ports-bugs A (new) port of the Mirror Project Random o [2004/08/06] ports/70061 ports-bugs [ new port ] x11-clocks/osdclock: small c o [2004/08/06] ports/70062 ports-bugs A new port of the Bloom::Filter Perl libr f [2004/08/06] ports/70064 ports-bugs [MAINTAINER] databases/py-sqlobject: Inst f [2004/08/07] ports/70113 ports-bugs [PATCH] mail/dspam: Makefile fix o [2004/08/07] ports/70128 ports-bugs New port: mail/p5-Mail-Field-Received f [2004/08/07] ports/70135 ports-bugs [patch] Update securiy/clamav-devel to 20 o [2004/08/08] ports/70161 ports-bugs [NEW PORT] mail/spamass-rules_du_jour: Au o [2004/08/08] ports/70176 ports-bugs [NEW PORT] graphics/devil - DevIL Image L o [2004/08/09] ports/70210 ports-bugs new port: databases/p5-DBM-Deep version 0 o [2004/08/09] ports/70214 ports-bugs [PATCH] graphics/metapixel: Install docum o [2004/08/09] ports/70225 ports-bugs building transcode port failed o [2004/08/10] ports/70271 ports-bugs [new port] biology/finchtv a DNA sequence f [2004/08/12] ports/70359 ports-bugs [maintainer update] Update port: security o [2004/08/12] ports/70374 ports-bugs New port: textproc/redland-bindings - Lan s [2004/08/13] ports/70387 ports-bugs PORT UPDATE: x11-themes/gtk-qt-engine o [2004/08/13] ports/70424 ports-bugs update port: security/samba-vscan o [2004/08/13] ports/70430 ports-bugs New port: devel/monodoc o [2004/08/13] ports/70431 ports-bugs New port: www/gecko-sharp: C# gtkmozembed o [2004/08/13] ports/70432 ports-bugs New port: gtksourceview-sharp: C# binding f [2004/08/13] ports/70433 ports-bugs new plugin port for childsplay o [2004/08/13] ports/70435 ports-bugs Update port: japanese/gauche-kakasi to 0. o [2004/08/14] ports/70446 ports-bugs [New Port] games/ctetris is a beautiful t o [2004/08/16] ports/70516 ports-bugs New port: sysutils/graft: symlink manager f [2004/08/16] ports/70528 ports-bugs No libffi on amd64, either with native co o [2004/08/17] ports/70577 ports-bugs [NEW PORT] games/linux-hohlin: Remake of f [2004/08/17] ports/70586 ports-bugs Update: net/glflow 0.0.4 -> 0.0.5 f [2004/08/17] ports/70591 ports-bugs [UPDATE] www/clearsilver to 0.9.10 f [2004/08/17] ports/70597 ports-bugs Update port jmp to 0.43 and fix pkg-plist f [2004/08/18] ports/70603 ports-bugs [patch] update net/freeradius to 1.0.0 o [2004/08/19] ports/70648 ports-bugs [new port] deskutils/etask: Emacs support o [2004/08/19] ports/70657 ports-bugs New port: devel/p5-Test-Tester o [2004/08/20] ports/70681 ports-bugs [PATCH] devel/p5-File-Remove: update PLIS o [2004/08/20] ports/70682 ports-bugs [NEW PORT] devel/p5-Gtk2-GladeXML: Gtk2-P o [2004/08/20] ports/70683 ports-bugs [NEW PORT] x11-toolkits/p5-Gtk2-PodViewer o [2004/08/21] ports/70775 ports-bugs New port: devel/simpletest o [2004/08/21] ports/70779 ports-bugs Update port: devel/zendstudio o [2004/08/21] ports/70799 ports-bugs New port: graphics/pear-Image_Color o [2004/08/21] ports/70801 ports-bugs [NEW PORT] mail/crm114-devel: An Markov b o [2004/08/22] ports/70807 ports-bugs [Update] net/straw: Update straw to 0.25. o [2004/08/22] ports/70808 ports-bugs Update port: x11/x3270 to version 3.3.2p1 o [2004/08/22] ports/70811 ports-bugs graphics/blender-devel update to 2.34 o [2004/08/22] ports/70816 ports-bugs New port: science/x11iraf o [2004/08/22] ports/70817 ports-bugs update patch for audio/musicpd to 0.11.4 o [2004/08/22] ports/70819 ports-bugs UPDATE - www/bricolage - Minor brig_upgra o [2004/08/22] ports/70820 ports-bugs [New port] wnews: a command-line RSS clie o [2004/08/22] ports/70825 ports-bugs [Maintainer Update] multimedia/beep-media o [2004/08/22] ports/70827 ports-bugs new port games/wanderer: Steve Shipway's o [2004/08/22] ports/70828 ports-bugs New port: misc/gkrellmlaunch2: GKrellM2 p o [2004/08/22] ports/70830 ports-bugs [MAINTAINER] devel/svk: update to 0.19 o [2004/08/22] ports/70833 ports-bugs Update port: mail/imapfilter o [2004/08/23] ports/70845 ports-bugs [NEW PORT] devel/tkshape - A Tk library t o [2004/08/23] ports/70846 ports-bugs [NEW PORT] textproc/tkxmlive - Tcl/Tk XML o [2004/08/23] ports/70847 ports-bugs [PATCH] net/p5-Net-SSH-Perl: fix dependen o [2004/08/23] ports/70848 ports-bugs [maintainer-fix] misc/sword: add missing o [2004/08/23] ports/70849 ports-bugs [PATCH] devel/libol: update to 0.3.14 o [2004/08/23] ports/70850 ports-bugs [PATCH] sysutils/syslog-ng: update to 1.6 f [2004/08/23] ports/70851 ports-bugs misc/linux-opengroupware: change FETCH_DE 193 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 11:49:56 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 467A016A4CE for ; Mon, 23 Aug 2004 11:49:56 +0000 (GMT) Received: from smtp.rdsnet.ro (smtp.rdsnet.ro [62.231.74.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id 633E943D3F for ; Mon, 23 Aug 2004 11:49:55 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 14088 invoked by uid 89); 23 Aug 2004 11:49:54 -0000 Received: from unknown (HELO it.buh.tecnik93.com) (81.196.204.98) by 0 with SMTP; 23 Aug 2004 11:49:54 -0000 Received: from it.buh.tecnik93.com (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with SMTP id C19EC397; Mon, 23 Aug 2004 14:49:53 +0300 (EEST) Date: Mon, 23 Aug 2004 14:49:53 +0300 From: Ion-Mihai Tetcu To: "Edward Sanford Sutton, III" Message-Id: <20040823144953.51515f37@it.buh.tecnik93.com> In-Reply-To: <412938C5.4070308@aol.com> References: <412938C5.4070308@aol.com> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: dspam on freebsd questions and comments X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 11:49:56 -0000 On Sun, 22 Aug 2004 17:22:29 -0700 "Edward Sanford Sutton, III" wrote: > I'm running freebsd-5.2.1-release-i386 and configured dspam to be > called from procmail and use mysql for the database. > > I don't remember the specific configuration options I selected and do > not know how to recall the configuration screen make called up the > first time or where the files are that it wrote. make showconfig - show what you've chosen make rmconfig - deleted that configuration make config - you know by now ;) The OPTIONS are saved in /var/db/ports/_port_name_/options > That was about three weeks ago that it (dspam 3.0.0) was built. I had > trouble in that after passing a message through it, the message was > always left unmodified. That has left me without knowing of a way to > submit errors, but the following procmail statement allowed for > passing the message through dspam like should have worked (which is > resulting in database changes, but the message stays unmodified) and > that is followed by a test as to what dspam reports the message to be > since the entire message remains unmodified: > > :0fw > | /usr/local/bin/dspam --user $LOGNAME --mode=teft > --feature=chained,noise --stdout --deliver=innocent,spam > :0: > * ? /usr/local/bin/dspam --user $LOGNAME --mode=teft > --feature=chained,noise --stdout --deliver=innocent,spam --classify | > grep Spam > $HOME/Spam > > After feeding in corpuses of spam and nonspam that i saved up, its not > perfect, but quite accurate based on the content that it had to learn > from. > I haven't heard of the problem where it doesn't modify the message > and this has been the best solution that I've been able to come up > with. My last idea is to try moving to the port dspam-devel so I > thought I would see if you had any advice. There are no differences regarding your problem the -devel fixes. Please report the part of the email regarding your problem on dspam list adding the output of dspam --version and /var/db/ports/dspam/options and I'll try to help you there. > In response to the ports directory freeze, here are a few things I > saw that might be worth looking at in the ports files: > > CGI has a typo in ports/mail/dspam-devel/pkg-message as GCI. Thanks. > ports/mail/dspam/README.html says thet portname is dspam-2.7.1 > with dom@wirespeed.org.uk as the maintainer's meail address. Not my fault :) # cd /usr/ports/mail/dspam/ && make readme > dspam-devel/ does not have README.html and pkg-install Not my fault: # cd /usr/ports/mail/dspam/ && make readme If you have time do this in /usr/ports or use sysutils/portindex The pkg-install is not needed and will disappear in dspam port too. -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 12:19:31 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9A3816A4CE for ; Mon, 23 Aug 2004 12:19:31 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF15443D2D for ; Mon, 23 Aug 2004 12:19:25 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id i7NCTgxJ020266 for ; Mon, 23 Aug 2004 09:29:42 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id i7NCIu2v065990 for ; Mon, 23 Aug 2004 09:18:56 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id i7NCIuZ0065989 for ports@FreeBSD.ORG; Mon, 23 Aug 2004 09:18:56 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Mon, 23 Aug 2004 09:18:56 -0300 From: Fernan Aguero To: FreeBSD Ports Message-ID: <20040823121856.GA65942@iib.unsam.edu.ar> Mail-Followup-To: FreeBSD Ports Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: portupgrade question X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 12:19:31 -0000 Hi! I'm updating textproc/expat2 in one of our machines, and I'm following the procedure recommended in UPDATING: portupgrade -fr textproc/expat2 However, in the middle of the process, we had to shutdown the machine. It had already processed (i.e. built and installed) 44 ports. Since there are a lot of things that depend on expat this takes a while. Also, since I'm using '-f' this means that if something happens and I need to start again, all of the affected ports will be compiled and installed again ... Now my question: is it possible to somehow restart from where it started? (I have the list of the 44 ports that are already done) Thanks in advance, Fernan -- Fernan Aguero - fernan at iib.unsam.edu.ar Phone: +54 11 4580-7255/7 ext 310, Fax: +54 11 4752-9639 Check http://genoma.unsam.edu.ar/~fernan for more info. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 12:29:45 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27A6D16A4CE for ; Mon, 23 Aug 2004 12:29:45 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08EE643D48 for ; Mon, 23 Aug 2004 12:29:45 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i7NCTfhX064488 for ; Mon, 23 Aug 2004 12:29:44 GMT (envelope-from davidxu@freebsd.org) Message-ID: <4129E43D.7060901@freebsd.org> Date: Mon, 23 Aug 2004 20:34:05 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.7.1) Gecko/20040730 X-Accept-Language: en-us, en MIME-Version: 1.0 To: FreeBSD Ports References: <20040823121856.GA65942@iib.unsam.edu.ar> In-Reply-To: <20040823121856.GA65942@iib.unsam.edu.ar> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: gnome-terminal sucks X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 12:29:45 -0000 After I maximized gnome-terminal window, whenever I drag terminal window's scrollbar down to scroll forward contents, there is always some garbage left on screen: http://people.freebsd.org/~davidxu/screenshot.png The bug is there from version to version, this really sucks! David Xu From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 13:03:09 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51F5816A4CE; Mon, 23 Aug 2004 13:03:09 +0000 (GMT) Received: from creme-brulee.marcuscom.com (rrcs-midsouth-24-172-16-118.biz.rr.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CB7543D1D; Mon, 23 Aug 2004 13:03:08 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) i7ND1uiX003503; Mon, 23 Aug 2004 09:01:56 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: David Xu In-Reply-To: <4129E43D.7060901@freebsd.org> References: <20040823121856.GA65942@iib.unsam.edu.ar> <4129E43D.7060901@freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-XezKM+z9/1nidCRBJsWx" Organization: MarcusCom, Inc. Message-Id: <1093266183.44764.10.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 23 Aug 2004 09:03:03 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on creme-brulee.marcuscom.com cc: FreeBSD Ports Subject: Re: gnome-terminal sucks X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 13:03:09 -0000 --=-XezKM+z9/1nidCRBJsWx Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2004-08-23 at 08:34, David Xu wrote: > After I maximized gnome-terminal window, whenever I drag terminal > window's scrollbar down to scroll forward contents, there is always > some garbage left on screen: > http://people.freebsd.org/~davidxu/screenshot.png > The bug is there from version to version, this really sucks! Wow, that does really suck. I don't see it here even with your zh_CN.GB2312 locale. What font are you using? I tested Bitstream Mono and Courier, and both work okay. http://www.marcuscom.com/downloads/gnome-terminal.png Joe >=20 > David Xu >=20 > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-XezKM+z9/1nidCRBJsWx Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBKesHb2iPiv4Uz4cRAk12AJwIJw780Va6HNEJYTGbc+2Afh8XRACfcIA3 ub+lloTaHP+ysQ2A9+7M6Jw= =8lUx -----END PGP SIGNATURE----- --=-XezKM+z9/1nidCRBJsWx-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 13:12:26 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD07616A4D1; Mon, 23 Aug 2004 13:12:26 +0000 (GMT) Received: from creme-brulee.marcuscom.com (rrcs-midsouth-24-172-16-118.biz.rr.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53EC443D1D; Mon, 23 Aug 2004 13:12:26 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) i7NDBEKh003566; Mon, 23 Aug 2004 09:11:14 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: David Xu In-Reply-To: <1093266183.44764.10.camel@shumai.marcuscom.com> References: <20040823121856.GA65942@iib.unsam.edu.ar> <4129E43D.7060901@freebsd.org> <1093266183.44764.10.camel@shumai.marcuscom.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-qryJLzeO8RmL/OQkB3ig" Organization: MarcusCom, Inc. Message-Id: <1093266741.44764.12.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 23 Aug 2004 09:12:22 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on creme-brulee.marcuscom.com cc: FreeBSD Ports Subject: Re: gnome-terminal sucks X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 13:12:26 -0000 --=-qryJLzeO8RmL/OQkB3ig Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2004-08-23 at 09:03, Joe Marcus Clarke wrote: > On Mon, 2004-08-23 at 08:34, David Xu wrote: > > After I maximized gnome-terminal window, whenever I drag terminal > > window's scrollbar down to scroll forward contents, there is always > > some garbage left on screen: > > http://people.freebsd.org/~davidxu/screenshot.png > > The bug is there from version to version, this really sucks! >=20 > Wow, that does really suck. I don't see it here even with your > zh_CN.GB2312 locale. What font are you using? I tested Bitstream Mono > and Courier, and both work okay. >=20 > http://www.marcuscom.com/downloads/gnome-terminal.png David, this looks like it might be http://bugzilla.gnome.org/show_bug.cgi?id=3D146925. There is a vte patch pointer in that bug. Can you apply that to vte, and let me know if it solves your problem? Thanks. Joe >=20 > Joe >=20 > >=20 > > David Xu > >=20 > > _______________________________________________ > > freebsd-ports@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org= " --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-qryJLzeO8RmL/OQkB3ig Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBKe01b2iPiv4Uz4cRAoTnAJ9KlRpo5QhvZDKXcm0nYBUfyOZoQgCcCPww WB2chSCkW3r5u3sZmpz/dB4= =KcXv -----END PGP SIGNATURE----- --=-qryJLzeO8RmL/OQkB3ig-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 13:23:57 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFE6916A4CE for ; Mon, 23 Aug 2004 13:23:57 +0000 (GMT) Received: from mail.emu.edu.tr (mail.emu.edu.tr [193.140.41.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DA5043D1F for ; Mon, 23 Aug 2004 13:23:57 +0000 (GMT) (envelope-from ilker.ozupak@mail.emu.edu.tr) Received: from eniac.emu.edu.tr ([213.208.49.139]) by mail.emu.edu.tr with Microsoft SMTPSVC(5.0.2195.5329); Mon, 23 Aug 2004 16:23:55 +0300 From: Ilker OZUPAK To: FreeBSD Ports Date: Mon, 23 Aug 2004 16:21:55 +0300 User-Agent: KMail/1.6.2 References: <20040823121856.GA65942@iib.unsam.edu.ar> In-Reply-To: <20040823121856.GA65942@iib.unsam.edu.ar> MIME-Version: 1.0 Content-Disposition: inline Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Message-Id: <200408231623.58020.ilker.ozupak@emu.edu.tr> X-OriginalArrivalTime: 23 Aug 2004 13:23:55.0235 (UTC) FILETIME=[70760330:01C48914] Subject: Re: portupgrade question X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: ilker.ozupak@emu.edu.tr List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 13:23:58 -0000 =2D----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 hello On Monday 23 August 2004 15:18, Fernan Aguero wrote: > Hi! > > I'm updating textproc/expat2 in one of our machines, and I'm > following the procedure recommended in UPDATING: > > portupgrade -fr textproc/expat2 portupgrade -fr textproc/expat2 -x '>=3DXXX'=20 or =20 o replace XXX with the first built ports name if you are sure of the port which is built first oo replace XXX with date '2004-8-23' if you did the first upgrade today first one would exclude anything that installed after given port. if you are not sure of the first build then i dont recomend using this. second one should build install any other dependency that was not installed on given date or later (this SHOULD exclude all 44 dependencies t= hat=20 were isntalled) see portupgrade(1) examples for some more examples > > However, in the middle of the process, we had to shutdown > the machine. It had already processed (i.e. built and > installed) 44 ports. > > Since there are a lot of things that depend on expat this > takes a while. Also, since I'm using '-f' this means that if > something happens and I need to start again, all of the > affected ports will be compiled and installed again ... > > Now my question: is it possible to somehow restart from > where it started? (I have the list of the 44 ports that are > already done) > > Thanks in advance, > > Fernan =2D --=20 IO =2D -- gpg public key @ http://cmpe.emu.edu.tr/ilker/ilker.asc pub =A01024D/A4F41BD0 2003-07-16 Ilker Ozupak Primary key fingerprint: E509 17B6 C8E2 ADB7 32A7 =A04746 BF14 814A A4F4 1B= D0 =2D----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBKe9/vxSBSqT0G9ARAta/AJ4zIRHkxuCiqyfJL78wMlmHjvJrQgCaAqy3 4M9dw0v/H5H35ZZWCp0fxQc=3D =3DZHb0 =2D----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 13:39:30 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0089A16A4CE for ; Mon, 23 Aug 2004 13:39:30 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8135343D41 for ; Mon, 23 Aug 2004 13:39:24 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id i7NDnKxJ021710; Mon, 23 Aug 2004 10:49:20 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id i7NDcX4Q066341; Mon, 23 Aug 2004 10:38:34 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id i7NDcXdC066340; Mon, 23 Aug 2004 10:38:33 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Mon, 23 Aug 2004 10:38:33 -0300 From: Fernan Aguero To: Ilker OZUPAK Message-ID: <20040823133833.GD65942@iib.unsam.edu.ar> Mail-Followup-To: Ilker OZUPAK , FreeBSD Ports References: <20040823121856.GA65942@iib.unsam.edu.ar> <200408231623.58020.ilker.ozupak@emu.edu.tr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408231623.58020.ilker.ozupak@emu.edu.tr> User-Agent: Mutt/1.4.1i cc: FreeBSD Ports Subject: Re: portupgrade question X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 13:39:30 -0000 +----[ Ilker OZUPAK (23.Aug.2004 10:27): | | hello Hi! and thanks for your quick reply! | On Monday 23 August 2004 15:18, Fernan Aguero wrote: | > Hi! | > | > I'm updating textproc/expat2 in one of our machines, and I'm | > following the procedure recommended in UPDATING: | > | > portupgrade -fr textproc/expat2 | | portupgrade -fr textproc/expat2 -x '>=XXX' | or | | o replace XXX with the first built ports name | if you are sure of the port which is built first | oo replace XXX with date | '2004-8-23' if you did the first upgrade today [rest of message snipped] | +----] actually I thought of using -x first, but did not like the idea of adding -x category/port 44 times in the command line call to portupgrade. Using the date is exactly what I need. Thanks! Fernan -- Fernan Aguero - fernan at iib.unsam.edu.ar Phone: +54 11 4580-7255/7 ext 310, Fax: +54 11 4752-9639 Check http://genoma.unsam.edu.ar/~fernan for more info. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 14:09:40 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F11F016A4CE for ; Mon, 23 Aug 2004 14:09:40 +0000 (GMT) Received: from ion.wax.nu (ion.wax.nu [217.8.136.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id C901B43D3F for ; Mon, 23 Aug 2004 14:09:39 +0000 (GMT) (envelope-from anders@rethink.no) Received: from glorfindel (glorfindel.wax.nu [192.168.0.106]) by ion.wax.nu (Postfix) with SMTP id 3C2C522FF4 for ; Mon, 23 Aug 2004 16:01:24 +0200 (CEST) Message-ID: <013401c4891a$fb634b00$6a00a8c0@glorfindel> From: "Anders Hanssen" To: Date: Mon, 23 Aug 2004 16:10:40 +0200 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0131_01C4892B.BBFF8260" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Subject: [patch] devel/sdl12 inconsistency between actual version and file/directory naming X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 14:09:41 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0131_01C4892B.BBFF8260 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi ports! When installing devel/sdl12 I get a lot of files installed with names such as sdl11-config, /usr/local/include/SDL11/ and so on. Here's a patch to remedy this inconsistency. I've also included a text file with some lines i deleted from my ports/Tools/scripts/plist-generated pkg-plist to make that file look more like the existing one (lots of share/doc/sdl/*). I don't know if all those lines should have been left alone or deleted. I've never patched a port before, and don't know all it's inner workings, so please take a close look at the patch before you apply it. Regards, Anders Hanssen BTW: PORTREVISION is bumped. ------=_NextPart_000_0131_01C4892B.BBFF8260 Content-Type: application/octet-stream; name="sdl12.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="sdl12.diff" Index: Makefile=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /home/ncvs/ports/devel/sdl12/Makefile,v=0A= retrieving revision 1.80=0A= diff -u -r1.80 Makefile=0A= --- Makefile 5 Aug 2004 08:20:14 -0000 1.80=0A= +++ Makefile 23 Aug 2004 14:00:48 -0000=0A= @@ -7,7 +7,7 @@=0A= =0A= PORTNAME=3D sdl=0A= PORTVERSION=3D 1.2.7=0A= -PORTREVISION=3D 2=0A= +PORTREVISION=3D 3=0A= PORTEPOCH=3D 1=0A= CATEGORIES=3D devel=0A= MASTER_SITES=3D http://www.libsdl.org/release/=0A= @@ -103,7 +103,7 @@=0A= .endif=0A= =0A= post-patch:=0A= - @${REINPLACE_CMD} 's|sdl-config|sdl11-config|g' \=0A= + @${REINPLACE_CMD} 's|sdl-config|sdl12-config|g' \=0A= ${WRKSRC}/test/configure=0A= @${RM} ${WRKSRC}/test/configure.bak=0A= =0A= @@ -112,8 +112,8 @@=0A= =0A= post-configure:=0A= @cd ${WRKSRC} && \=0A= - ${CP} sdl-config sdl11-config && \=0A= - ${CP} sdl.m4 sdl11.m4=0A= + ${CP} sdl-config sdl12-config && \=0A= + ${CP} sdl.m4 sdl12.m4=0A= @${REINPLACE_CMD} = 's|^deplibs_check_method=3D.*|deplibs_check_method=3Dpass_all|' \=0A= ${WRKSRC}/libtool=0A= =0A= Index: pkg-plist=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /home/ncvs/ports/devel/sdl12/pkg-plist,v=0A= retrieving revision 1.26=0A= diff -u -r1.26 pkg-plist=0A= --- pkg-plist 30 May 2004 19:33:12 -0000 1.26=0A= +++ pkg-plist 23 Aug 2004 14:00:48 -0000=0A= @@ -1,40 +1,40 @@=0A= -bin/sdl11-config=0A= -include/SDL11/SDL.h=0A= -include/SDL11/SDL_active.h=0A= -include/SDL11/SDL_audio.h=0A= -include/SDL11/SDL_byteorder.h=0A= -include/SDL11/SDL_cdrom.h=0A= -include/SDL11/SDL_copying.h=0A= -include/SDL11/SDL_cpuinfo.h=0A= -include/SDL11/SDL_endian.h=0A= -include/SDL11/SDL_error.h=0A= -include/SDL11/SDL_events.h=0A= -include/SDL11/SDL_getenv.h=0A= -include/SDL11/SDL_joystick.h=0A= -include/SDL11/SDL_keyboard.h=0A= -include/SDL11/SDL_keysym.h=0A= -include/SDL11/SDL_loadso.h=0A= -include/SDL11/SDL_main.h=0A= -include/SDL11/SDL_mouse.h=0A= -include/SDL11/SDL_mutex.h=0A= -include/SDL11/SDL_name.h=0A= -include/SDL11/SDL_opengl.h=0A= -include/SDL11/SDL_quit.h=0A= -include/SDL11/SDL_rwops.h=0A= -include/SDL11/SDL_syswm.h=0A= -include/SDL11/SDL_thread.h=0A= -include/SDL11/SDL_timer.h=0A= -include/SDL11/SDL_types.h=0A= -include/SDL11/SDL_version.h=0A= -include/SDL11/SDL_video.h=0A= -include/SDL11/begin_code.h=0A= -include/SDL11/close_code.h=0A= -lib/libSDL-1.1.a=0A= -lib/libSDL-1.1.la=0A= -lib/libSDL-1.1.so=0A= -lib/libSDL-1.1.so.7=0A= -lib/libSDLmain-1.1.a=0A= -share/aclocal/sdl11.m4=0A= +bin/sdl12-config=0A= +include/SDL12/SDL.h=0A= +include/SDL12/SDL_active.h=0A= +include/SDL12/SDL_audio.h=0A= +include/SDL12/SDL_byteorder.h=0A= +include/SDL12/SDL_cdrom.h=0A= +include/SDL12/SDL_copying.h=0A= +include/SDL12/SDL_cpuinfo.h=0A= +include/SDL12/SDL_endian.h=0A= +include/SDL12/SDL_error.h=0A= +include/SDL12/SDL_events.h=0A= +include/SDL12/SDL_getenv.h=0A= +include/SDL12/SDL_joystick.h=0A= +include/SDL12/SDL_keyboard.h=0A= +include/SDL12/SDL_keysym.h=0A= +include/SDL12/SDL_loadso.h=0A= +include/SDL12/SDL_main.h=0A= +include/SDL12/SDL_mouse.h=0A= +include/SDL12/SDL_mutex.h=0A= +include/SDL12/SDL_name.h=0A= +include/SDL12/SDL_opengl.h=0A= +include/SDL12/SDL_quit.h=0A= +include/SDL12/SDL_rwops.h=0A= +include/SDL12/SDL_syswm.h=0A= +include/SDL12/SDL_thread.h=0A= +include/SDL12/SDL_timer.h=0A= +include/SDL12/SDL_types.h=0A= +include/SDL12/SDL_version.h=0A= +include/SDL12/SDL_video.h=0A= +include/SDL12/begin_code.h=0A= +include/SDL12/close_code.h=0A= +lib/libSDL-1.2.a=0A= +lib/libSDL-1.2.la=0A= +lib/libSDL-1.2.so=0A= +lib/libSDL-1.2.so.7=0A= +lib/libSDLmain-1.2.a=0A= +share/aclocal/sdl12.m4=0A= %%EXAMPLESDIR%%/COPYING=0A= %%EXAMPLESDIR%%/Makefile.am=0A= %%EXAMPLESDIR%%/Makefile.in=0A= @@ -84,4 +84,4 @@=0A= %%EXAMPLESDIR%%/threadwin.c=0A= %%EXAMPLESDIR%%/torturethread.c=0A= @dirrm %%EXAMPLESDIR%%=0A= -@unexec rmdir %D/include/SDL11 2>/dev/null || true=0A= +@unexec rmdir %D/include/SDL12 2>/dev/null || true=0A= Index: files/patch-ac=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /home/ncvs/ports/devel/sdl12/files/patch-ac,v=0A= retrieving revision 1.31=0A= diff -u -r1.31 patch-ac=0A= --- files/patch-ac 17 Mar 2004 13:57:07 -0000 1.31=0A= +++ files/patch-ac 23 Aug 2004 14:00:48 -0000=0A= @@ -5,7 +5,7 @@=0A= =0A= SDL_CFLAGS=3D""=0A= -SDL_LIBS=3D"-lSDL"=0A= -+SDL_LIBS=3D"-lSDL-1.1"=0A= ++SDL_LIBS=3D"-lSDL-1.2"=0A= =0A= =0A= case "$target" in=0A= Index: files/patch-ag=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /home/ncvs/ports/devel/sdl12/files/patch-ag,v=0A= retrieving revision 1.2=0A= diff -u -r1.2 patch-ag=0A= --- files/patch-ag 16 Mar 2004 04:06:48 -0000 1.2=0A= +++ files/patch-ag 23 Aug 2004 14:00:48 -0000=0A= @@ -5,7 +5,7 @@=0A= =0A= # The SDL library target=0A= -lib_LTLIBRARIES =3D libSDL.la=0A= -+lib_LTLIBRARIES =3D libSDL-1.1.la=0A= ++lib_LTLIBRARIES =3D libSDL-1.2.la=0A= libSDL_la_SOURCES =3D $(GENERAL_SRCS)=0A= libSDL_la_LDFLAGS =3D \=0A= -no-undefined \=0A= @@ -20,7 +20,7 @@=0A= rm -f "$${dir}/so_locations"; \=0A= done=0A= -libSDL.la: $(libSDL_la_OBJECTS) $(libSDL_la_DEPENDENCIES) =0A= -+libSDL-1.1.la: $(libSDL_la_OBJECTS) $(libSDL_la_DEPENDENCIES) =0A= ++libSDL-1.2.la: $(libSDL_la_OBJECTS) $(libSDL_la_DEPENDENCIES) =0A= $(LINK) -rpath $(libdir) $(libSDL_la_LDFLAGS) $(libSDL_la_OBJECTS) = $(libSDL_la_LIBADD) $(LIBS)=0A= =0A= mostlyclean-compile:=0A= Index: files/patch-ah=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /home/ncvs/ports/devel/sdl12/files/patch-ah,v=0A= retrieving revision 1.3=0A= diff -u -r1.3 patch-ah=0A= --- files/patch-ah 16 Mar 2004 04:06:48 -0000 1.3=0A= +++ files/patch-ah 23 Aug 2004 14:00:48 -0000=0A= @@ -5,7 +5,7 @@=0A= =0A= # Build a separate library containing the main() entry point.=0A= -lib_LIBRARIES =3D libSDLmain.a=0A= -+lib_LIBRARIES =3D libSDLmain-1.1.a=0A= ++lib_LIBRARIES =3D libSDLmain-1.2.a=0A= = @TARGET_MACOSX_FALSE@@TARGET_QTOPIA_FALSE@@TARGET_WIN32_FALSE@MAINLIB_ARC= H_SRCS =3D dummy/SDL_dummy_main.c=0A= = @TARGET_MACOSX_FALSE@@TARGET_QTOPIA_TRUE@@TARGET_WIN32_FALSE@MAINLIB_ARCH= _SRCS =3D qtopia/SDL_qtopia_main.cc=0A= @TARGET_MACOSX_TRUE@@TARGET_WIN32_FALSE@MAINLIB_ARCH_SRCS =3D = macosx/SDLMain.m macosx/SDLMain.h=0A= @@ -17,10 +17,10 @@=0A= - -rm -f libSDLmain.a=0A= - $(libSDLmain_a_AR) libSDLmain.a $(libSDLmain_a_OBJECTS) = $(libSDLmain_a_LIBADD)=0A= - $(RANLIB) libSDLmain.a=0A= -+libSDLmain-1.1.a: $(libSDLmain_a_OBJECTS) $(libSDLmain_a_DEPENDENCIES) =0A= -+ -rm -f libSDLmain-1.1.a=0A= -+ $(libSDLmain_a_AR) libSDLmain-1.1.a $(libSDLmain_a_OBJECTS) = $(libSDLmain_a_LIBADD)=0A= -+ $(RANLIB) libSDLmain-1.1.a=0A= ++libSDLmain-1.2.a: $(libSDLmain_a_OBJECTS) $(libSDLmain_a_DEPENDENCIES) =0A= ++ -rm -f libSDLmain-1.2.a=0A= ++ $(libSDLmain_a_AR) libSDLmain-1.2.a $(libSDLmain_a_OBJECTS) = $(libSDLmain_a_LIBADD)=0A= ++ $(RANLIB) libSDLmain-1.2.a=0A= =0A= clean-noinstLTLIBRARIES:=0A= -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)=0A= Index: files/patch-ai=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /home/ncvs/ports/devel/sdl12/files/patch-ai,v=0A= retrieving revision 1.2=0A= diff -u -r1.2 patch-ai=0A= --- files/patch-ai 16 Mar 2004 04:06:48 -0000 1.2=0A= +++ files/patch-ai 23 Aug 2004 14:00:48 -0000=0A= @@ -5,7 +5,7 @@=0A= =0A= # The directory where the include files will be installed=0A= -libSDLincludedir =3D $(includedir)/SDL=0A= -+libSDLincludedir =3D $(includedir)/SDL11=0A= ++libSDLincludedir =3D $(includedir)/SDL12=0A= =0A= # Which header files to install=0A= libSDLinclude_HEADERS =3D \=0A= Index: files/patch-aj=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /home/ncvs/ports/devel/sdl12/files/patch-aj,v=0A= retrieving revision 1.3=0A= diff -u -r1.3 patch-aj=0A= --- files/patch-aj 16 Mar 2004 04:06:48 -0000 1.3=0A= +++ files/patch-aj 23 Aug 2004 14:00:49 -0000=0A= @@ -27,7 +27,7 @@=0A= =0A= # SDL runtime configuration script=0A= -bin_SCRIPTS =3D sdl-config=0A= -+bin_SCRIPTS =3D sdl11-config=0A= ++bin_SCRIPTS =3D sdl12-config=0A= =0A= # All the rest of the distributed files=0A= EXTRA_DIST =3D \=0A= @@ -36,7 +36,7 @@=0A= WhatsNew \=0A= docs.html \=0A= - sdl.m4 \=0A= -+ sdl11.m4 \=0A= ++ sdl12.m4 \=0A= SDL.spec \=0A= autogen.sh \=0A= strip_fPIC.sh=0A= @@ -45,7 +45,7 @@=0A= # M4 macro file for inclusion with autoconf=0A= m4datadir =3D $(datadir)/aclocal=0A= -m4data_DATA =3D sdl.m4=0A= -+m4data_DATA =3D sdl11.m4=0A= ++m4data_DATA =3D sdl12.m4=0A= =0A= # Create a CVS snapshot that people can run update -d on=0A= CVSROOT =3D :pserver:guest@libsdl.org:/home/sdlweb/libsdl.org/cvs=0A= @@ -54,7 +54,7 @@=0A= $(ACLOCAL_M4): $(am__aclocal_m4_deps)=0A= cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)=0A= -sdl-config: $(top_builddir)/config.status $(srcdir)/sdl-config.in=0A= -+sdl11-config: $(top_builddir)/config.status $(srcdir)/sdl-config.in=0A= ++sdl12-config: $(top_builddir)/config.status $(srcdir)/sdl-config.in=0A= cd $(top_builddir) && $(SHELL) ./config.status $@=0A= SDL.spec: $(top_builddir)/config.status $(srcdir)/SDL.spec.in=0A= cd $(top_builddir) && $(SHELL) ./config.status $@=0A= Index: files/patch-ak=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /home/ncvs/ports/devel/sdl12/files/patch-ak,v=0A= retrieving revision 1.6=0A= diff -u -r1.6 patch-ak=0A= --- files/patch-ak 3 Jan 2003 08:53:56 -0000 1.6=0A= +++ files/patch-ak 23 Aug 2004 14:00:49 -0000=0A= @@ -8,7 +8,7 @@=0A= =0A= usage=3D"\=0A= -Usage: sdl-config [--prefix[=3DDIR]] [--exec-prefix[=3DDIR]] = [--version] [--cflags] [--libs] [--static-libs]"=0A= -+Usage: sdl11-config [--prefix[=3DDIR]] [--exec-prefix[=3DDIR]] = [--version] [--cflags] [--libs] [--static-libs]"=0A= ++Usage: sdl12-config [--prefix[=3DDIR]] [--exec-prefix[=3DDIR]] = [--version] [--cflags] [--libs] [--static-libs]"=0A= =0A= if test $# -eq 0; then=0A= echo "${usage}" 1>&2=0A= @@ -17,7 +17,7 @@=0A= ;;=0A= --cflags)=0A= - echo -I@includedir@/SDL @SDL_CFLAGS@=0A= -+ echo -I@includedir@/SDL11 -I@includedir@ @SDL_CFLAGS@=0A= ++ echo -I@includedir@/SDL12 -I@includedir@ @SDL_CFLAGS@=0A= =0A= # The portable way of including SDL is #include "SDL.h"=0A= #if test @includedir@ !=3D /usr/include ; then=0A= ------=_NextPart_000_0131_01C4892B.BBFF8260 Content-Type: text/plain; name="removed_lines_from_pkg-plist.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="removed_lines_from_pkg-plist.txt" share/doc/sdl/BUGS share/doc/sdl/COPYING share/doc/sdl/CREDITS share/doc/sdl/README share/doc/sdl/README-SDL.txt share/doc/sdl/WhatsNew share/doc/sdl/docs.html share/doc/sdl/docs/html/Makefile share/doc/sdl/docs/html/Makefile.am share/doc/sdl/docs/html/Makefile.in share/doc/sdl/docs/html/audio.html share/doc/sdl/docs/html/cdrom.html share/doc/sdl/docs/html/event.html share/doc/sdl/docs/html/eventfunctions.html share/doc/sdl/docs/html/eventstructures.html share/doc/sdl/docs/html/general.html share/doc/sdl/docs/html/guide.html share/doc/sdl/docs/html/guideaboutsdldoc.html share/doc/sdl/docs/html/guideaudioexamples.html share/doc/sdl/docs/html/guidebasicsinit.html share/doc/sdl/docs/html/guidecdromexamples.html share/doc/sdl/docs/html/guidecredits.html share/doc/sdl/docs/html/guideeventexamples.html share/doc/sdl/docs/html/guideexamples.html share/doc/sdl/docs/html/guideinput.html share/doc/sdl/docs/html/guideinputkeyboard.html share/doc/sdl/docs/html/guidepreface.html share/doc/sdl/docs/html/guidethebasics.html share/doc/sdl/docs/html/guidetimeexamples.html share/doc/sdl/docs/html/guidevideo.html share/doc/sdl/docs/html/guidevideoopengl.html share/doc/sdl/docs/html/index.html share/doc/sdl/docs/html/joystick.html share/doc/sdl/docs/html/reference.html share/doc/sdl/docs/html/sdlactiveevent.html share/doc/sdl/docs/html/sdladdtimer.html share/doc/sdl/docs/html/sdlaudiocvt.html share/doc/sdl/docs/html/sdlaudiospec.html share/doc/sdl/docs/html/sdlblitsurface.html share/doc/sdl/docs/html/sdlbuildaudiocvt.html share/doc/sdl/docs/html/sdlcd.html share/doc/sdl/docs/html/sdlcdclose.html share/doc/sdl/docs/html/sdlcdeject.html share/doc/sdl/docs/html/sdlcdname.html share/doc/sdl/docs/html/sdlcdnumdrives.html share/doc/sdl/docs/html/sdlcdopen.html share/doc/sdl/docs/html/sdlcdpause.html share/doc/sdl/docs/html/sdlcdplay.html share/doc/sdl/docs/html/sdlcdplaytracks.html share/doc/sdl/docs/html/sdlcdresume.html share/doc/sdl/docs/html/sdlcdstatus.html share/doc/sdl/docs/html/sdlcdstop.html share/doc/sdl/docs/html/sdlcdtrack.html share/doc/sdl/docs/html/sdlcloseaudio.html share/doc/sdl/docs/html/sdlcolor.html share/doc/sdl/docs/html/sdlcondbroadcast.html share/doc/sdl/docs/html/sdlcondsignal.html share/doc/sdl/docs/html/sdlcondwait.html share/doc/sdl/docs/html/sdlcondwaittimeout.html share/doc/sdl/docs/html/sdlconvertaudio.html share/doc/sdl/docs/html/sdlconvertsurface.html share/doc/sdl/docs/html/sdlcreatecond.html share/doc/sdl/docs/html/sdlcreatecursor.html share/doc/sdl/docs/html/sdlcreatemutex.html share/doc/sdl/docs/html/sdlcreatergbsurface.html share/doc/sdl/docs/html/sdlcreatergbsurfacefrom.html share/doc/sdl/docs/html/sdlcreatesemaphore.html share/doc/sdl/docs/html/sdlcreatethread.html share/doc/sdl/docs/html/sdlcreateyuvoverlay.html share/doc/sdl/docs/html/sdldelay.html share/doc/sdl/docs/html/sdldestroycond.html share/doc/sdl/docs/html/sdldestroymutex.html share/doc/sdl/docs/html/sdldestroysemaphore.html share/doc/sdl/docs/html/sdldisplayformat.html share/doc/sdl/docs/html/sdldisplayformatalpha.html share/doc/sdl/docs/html/sdldisplayyuvoverlay.html share/doc/sdl/docs/html/sdlenablekeyrepeat.html share/doc/sdl/docs/html/sdlenableunicode.html share/doc/sdl/docs/html/sdlenvvars.html share/doc/sdl/docs/html/sdlevent.html share/doc/sdl/docs/html/sdleventstate.html share/doc/sdl/docs/html/sdlexposeevent.html share/doc/sdl/docs/html/sdlfillrect.html share/doc/sdl/docs/html/sdlflip.html share/doc/sdl/docs/html/sdlfreecursor.html share/doc/sdl/docs/html/sdlfreesurface.html share/doc/sdl/docs/html/sdlfreewav.html share/doc/sdl/docs/html/sdlfreeyuvoverlay.html share/doc/sdl/docs/html/sdlgetappstate.html share/doc/sdl/docs/html/sdlgetaudiostatus.html share/doc/sdl/docs/html/sdlgetcliprect.html share/doc/sdl/docs/html/sdlgetcursor.html share/doc/sdl/docs/html/sdlgeterror.html share/doc/sdl/docs/html/sdlgeteventfilter.html share/doc/sdl/docs/html/sdlgetgammaramp.html share/doc/sdl/docs/html/sdlgetkeyname.html share/doc/sdl/docs/html/sdlgetkeystate.html share/doc/sdl/docs/html/sdlgetmodstate.html share/doc/sdl/docs/html/sdlgetmousestate.html share/doc/sdl/docs/html/sdlgetrelativemousestate.html share/doc/sdl/docs/html/sdlgetrgb.html share/doc/sdl/docs/html/sdlgetrgba.html share/doc/sdl/docs/html/sdlgetthreadid.html share/doc/sdl/docs/html/sdlgetticks.html share/doc/sdl/docs/html/sdlgetvideoinfo.html share/doc/sdl/docs/html/sdlgetvideosurface.html share/doc/sdl/docs/html/sdlglattr.html share/doc/sdl/docs/html/sdlglgetattribute.html share/doc/sdl/docs/html/sdlglgetprocaddress.html share/doc/sdl/docs/html/sdlglloadlibrary.html share/doc/sdl/docs/html/sdlglsetattribute.html share/doc/sdl/docs/html/sdlglswapbuffers.html share/doc/sdl/docs/html/sdlinit.html share/doc/sdl/docs/html/sdlinitsubsystem.html share/doc/sdl/docs/html/sdljoyaxisevent.html share/doc/sdl/docs/html/sdljoyballevent.html share/doc/sdl/docs/html/sdljoybuttonevent.html share/doc/sdl/docs/html/sdljoyhatevent.html share/doc/sdl/docs/html/sdljoystickclose.html share/doc/sdl/docs/html/sdljoystickeventstate.html share/doc/sdl/docs/html/sdljoystickgetaxis.html share/doc/sdl/docs/html/sdljoystickgetball.html share/doc/sdl/docs/html/sdljoystickgetbutton.html share/doc/sdl/docs/html/sdljoystickgethat.html share/doc/sdl/docs/html/sdljoystickindex.html share/doc/sdl/docs/html/sdljoystickname.html share/doc/sdl/docs/html/sdljoysticknumaxes.html share/doc/sdl/docs/html/sdljoysticknumballs.html share/doc/sdl/docs/html/sdljoysticknumbuttons.html share/doc/sdl/docs/html/sdljoysticknumhats.html share/doc/sdl/docs/html/sdljoystickopen.html share/doc/sdl/docs/html/sdljoystickopened.html share/doc/sdl/docs/html/sdljoystickupdate.html share/doc/sdl/docs/html/sdlkey.html share/doc/sdl/docs/html/sdlkeyboardevent.html share/doc/sdl/docs/html/sdlkeysym.html share/doc/sdl/docs/html/sdlkillthread.html share/doc/sdl/docs/html/sdllistmodes.html share/doc/sdl/docs/html/sdlloadbmp.html share/doc/sdl/docs/html/sdlloadwav.html share/doc/sdl/docs/html/sdllockaudio.html share/doc/sdl/docs/html/sdllocksurface.html share/doc/sdl/docs/html/sdllockyuvoverlay.html share/doc/sdl/docs/html/sdlmaprgb.html share/doc/sdl/docs/html/sdlmaprgba.html share/doc/sdl/docs/html/sdlmixaudio.html share/doc/sdl/docs/html/sdlmousebuttonevent.html share/doc/sdl/docs/html/sdlmousemotionevent.html share/doc/sdl/docs/html/sdlmutexp.html share/doc/sdl/docs/html/sdlmutexv.html share/doc/sdl/docs/html/sdlnumjoysticks.html share/doc/sdl/docs/html/sdlopenaudio.html share/doc/sdl/docs/html/sdloverlay.html share/doc/sdl/docs/html/sdlpalette.html share/doc/sdl/docs/html/sdlpauseaudio.html share/doc/sdl/docs/html/sdlpeepevents.html share/doc/sdl/docs/html/sdlpixelformat.html share/doc/sdl/docs/html/sdlpollevent.html share/doc/sdl/docs/html/sdlpumpevents.html share/doc/sdl/docs/html/sdlpushevent.html share/doc/sdl/docs/html/sdlquit.html share/doc/sdl/docs/html/sdlquitevent.html share/doc/sdl/docs/html/sdlquitsubsystem.html share/doc/sdl/docs/html/sdlrect.html share/doc/sdl/docs/html/sdlremovetimer.html share/doc/sdl/docs/html/sdlresizeevent.html share/doc/sdl/docs/html/sdlsavebmp.html share/doc/sdl/docs/html/sdlsempost.html share/doc/sdl/docs/html/sdlsemtrywait.html share/doc/sdl/docs/html/sdlsemvalue.html share/doc/sdl/docs/html/sdlsemwait.html share/doc/sdl/docs/html/sdlsemwaittimeout.html share/doc/sdl/docs/html/sdlsetalpha.html share/doc/sdl/docs/html/sdlsetcliprect.html share/doc/sdl/docs/html/sdlsetcolorkey.html share/doc/sdl/docs/html/sdlsetcolors.html share/doc/sdl/docs/html/sdlsetcursor.html share/doc/sdl/docs/html/sdlseteventfilter.html share/doc/sdl/docs/html/sdlsetgamma.html share/doc/sdl/docs/html/sdlsetgammaramp.html share/doc/sdl/docs/html/sdlsetmodstate.html share/doc/sdl/docs/html/sdlsetpalette.html share/doc/sdl/docs/html/sdlsettimer.html share/doc/sdl/docs/html/sdlsetvideomode.html share/doc/sdl/docs/html/sdlshowcursor.html share/doc/sdl/docs/html/sdlsurface.html share/doc/sdl/docs/html/sdlsyswmevent.html share/doc/sdl/docs/html/sdlthreadid.html share/doc/sdl/docs/html/sdlunlockaudio.html share/doc/sdl/docs/html/sdlunlocksurface.html share/doc/sdl/docs/html/sdlunlockyuvoverlay.html share/doc/sdl/docs/html/sdlupdaterect.html share/doc/sdl/docs/html/sdlupdaterects.html share/doc/sdl/docs/html/sdluserevent.html share/doc/sdl/docs/html/sdlvideodrivername.html share/doc/sdl/docs/html/sdlvideoinfo.html share/doc/sdl/docs/html/sdlvideomodeok.html share/doc/sdl/docs/html/sdlwaitevent.html share/doc/sdl/docs/html/sdlwaitthread.html share/doc/sdl/docs/html/sdlwarpmouse.html share/doc/sdl/docs/html/sdlwasinit.html share/doc/sdl/docs/html/sdlwmgetcaption.html share/doc/sdl/docs/html/sdlwmgrabinput.html share/doc/sdl/docs/html/sdlwmiconifywindow.html share/doc/sdl/docs/html/sdlwmsetcaption.html share/doc/sdl/docs/html/sdlwmseticon.html share/doc/sdl/docs/html/sdlwmtogglefullscreen.html share/doc/sdl/docs/html/thread.html share/doc/sdl/docs/html/time.html share/doc/sdl/docs/html/video.html share/doc/sdl/docs/html/wm.html share/doc/sdl/docs/index.html @dirrm share/nls/en_US.US-ASCII @dirrm share/nls/POSIX @dirrm share/doc/sdl/docs/html @dirrm share/doc/sdl/docs @dirrm share/doc/sdl @dirrm include/SDL12 @dirrm etc/gconf/gconf.xml.defaults @dirrm etc/gconf ------=_NextPart_000_0131_01C4892B.BBFF8260-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 14:15:28 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C75516A4D9 for ; Mon, 23 Aug 2004 14:15:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EEDC43D31; Mon, 23 Aug 2004 14:15:25 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) i7NEFMQC081823; Mon, 23 Aug 2004 14:15:24 GMT (envelope-from davidxu@freebsd.org) Message-ID: <4129FD02.8060605@freebsd.org> Date: Mon, 23 Aug 2004 22:19:46 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.7.1) Gecko/20040730 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Marcus Clarke References: <20040823121856.GA65942@iib.unsam.edu.ar> <4129E43D.7060901@freebsd.org> <1093266183.44764.10.camel@shumai.marcuscom.com> In-Reply-To: <1093266183.44764.10.camel@shumai.marcuscom.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD Ports Subject: Re: gnome-terminal sucks X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 14:15:28 -0000 Joe Marcus Clarke wrote: >On Mon, 2004-08-23 at 08:34, David Xu wrote: > > >>After I maximized gnome-terminal window, whenever I drag terminal >>window's scrollbar down to scroll forward contents, there is always >>some garbage left on screen: >>http://people.freebsd.org/~davidxu/screenshot.png >>The bug is there from version to version, this really sucks! >> >> > >Wow, that does really suck. I don't see it here even with your >zh_CN.GB2312 locale. What font are you using? I tested Bitstream Mono >and Courier, and both work okay. > > > I am using a truetype font file which can display fonts in zh_CN.GB2312. >http://www.marcuscom.com/downloads/gnome-terminal.png > >Joe > > > >>David Xu >> >>_______________________________________________ >>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 Mon Aug 23 14:17:00 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FB7116A4D0 for ; Mon, 23 Aug 2004 14:17:00 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6551B43D45; Mon, 23 Aug 2004 14:17:00 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) i7NEGvls081842; Mon, 23 Aug 2004 14:16:59 GMT (envelope-from davidxu@freebsd.org) Message-ID: <4129FD61.8030907@freebsd.org> Date: Mon, 23 Aug 2004 22:21:21 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.7.1) Gecko/20040730 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Marcus Clarke References: <20040823121856.GA65942@iib.unsam.edu.ar> <4129E43D.7060901@freebsd.org> <1093266183.44764.10.camel@shumai.marcuscom.com> <1093266741.44764.12.camel@shumai.marcuscom.com> In-Reply-To: <1093266741.44764.12.camel@shumai.marcuscom.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD Ports Subject: Re: gnome-terminal sucks X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 14:17:00 -0000 Joe Marcus Clarke wrote: >On Mon, 2004-08-23 at 09:03, Joe Marcus Clarke wrote: > > >>On Mon, 2004-08-23 at 08:34, David Xu wrote: >> >> >>>After I maximized gnome-terminal window, whenever I drag terminal >>>window's scrollbar down to scroll forward contents, there is always >>>some garbage left on screen: >>>http://people.freebsd.org/~davidxu/screenshot.png >>>The bug is there from version to version, this really sucks! >>> >>> >>Wow, that does really suck. I don't see it here even with your >>zh_CN.GB2312 locale. What font are you using? I tested Bitstream Mono >>and Courier, and both work okay. >> >>http://www.marcuscom.com/downloads/gnome-terminal.png >> >> > >David, this looks like it might be >http://bugzilla.gnome.org/show_bug.cgi?id=146925. There is a vte patch >pointer in that bug. Can you apply that to vte, and let me know if it >solves your problem? Thanks. > > > Wow, the patch works for me! I pasted it here: diff -ur vte-0.11.11.orig/src/vte.c vte-0.11.11/src/vte.c --- vte-0.11.11.orig/src/vte.c 2004-05-02 03:43:01.000000000 -0300 +++ vte-0.11.11/src/vte.c 2004-07-09 21:21:01.000000000 -0300 @@ -13793,7 +13793,7 @@ row = MAX(0, (area->y - VTE_PAD_WIDTH) / height); row_stop = MIN(howmany((area->y - VTE_PAD_WIDTH) + area->height, height), - terminal->row_count - 1); + terminal->row_count); col = MAX(0, (area->x - VTE_PAD_WIDTH) / width); col_stop = MIN(howmany((area->x - VTE_PAD_WIDTH) + area->width, width), Thanks, David Xu From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 14:22:48 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C17C16A4CE; Mon, 23 Aug 2004 14:22:48 +0000 (GMT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 424DA43D1F; Mon, 23 Aug 2004 14:22:48 +0000 (GMT) (envelope-from nectar@celabo.org) Received: from localhost (localhost [127.0.0.1]) by gw.celabo.org (Postfix) with ESMTP id AED9E5486E; Mon, 23 Aug 2004 09:22:47 -0500 (CDT) Received: from gw.celabo.org ([127.0.0.1]) by localhost (hellblazer.celabo.org [127.0.0.1]) (amavisd-new, port 10024) with SMTP id 23035-03; Mon, 23 Aug 2004 09:22:37 -0500 (CDT) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "madman.celabo.org", Issuer "celabo.org CA" (not verified)) by gw.celabo.org (Postfix) with ESMTP id 1501A5487F; Mon, 23 Aug 2004 09:22:37 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id C346E6D468; Mon, 23 Aug 2004 09:22:27 -0500 (CDT) Date: Mon, 23 Aug 2004 09:22:27 -0500 From: "Jacques A. Vidrine" To: Oliver Eikemeier Message-ID: <20040823142227.GO27355@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Oliver Eikemeier , Dan Langille , freebsd-vuxml@freebsd.org, ports@freebsd.org References: <20040822213304.GF17478@madman.celabo.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: freebsd-vuxml@freebsd.org cc: ports@freebsd.org cc: Dan Langille Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 14:22:48 -0000 On Mon, Aug 23, 2004 at 12:09:22AM +0200, Oliver Eikemeier wrote: > >The current version of VuXML does not allow these to be null, and I it > >is probably good to reflect those constraints in the database. > > Which means you possibly have to change the database description when > upgrading. I guess you have some point. You must like Tcl :-) No required elements will be dropped in any VuXML 1.x, but if/when there is a VuXML 2.0 there will likely be some changes to be made in applications (duh). > should be stuff like i386? I'm not sure that there are > many applications for that. Usually the description is sufficient for > those purposes. Or did you have something different in mind? Yeah, stuff like `i386'. I don't see it (or ) as useful for the FreeBSD Project today, either: these are for use by other projects. In the case of , I'm not yet sure that it will make it through pre-1.2. I'm still working with the project to understand their needs. Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 14:26:20 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9501416A4CE; Mon, 23 Aug 2004 14:26:20 +0000 (GMT) Received: from creme-brulee.marcuscom.com (rrcs-midsouth-24-172-16-118.biz.rr.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2247E43D53; Mon, 23 Aug 2004 14:26:20 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) i7NEP7W1004131; Mon, 23 Aug 2004 10:25:07 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: David Xu In-Reply-To: <4129FD61.8030907@freebsd.org> References: <20040823121856.GA65942@iib.unsam.edu.ar> <4129E43D.7060901@freebsd.org> <1093266183.44764.10.camel@shumai.marcuscom.com> <1093266741.44764.12.camel@shumai.marcuscom.com> <4129FD61.8030907@freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-w3w09Gz64I5GLdtudi+G" Organization: MarcusCom, Inc. Message-Id: <1093271193.744.7.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 23 Aug 2004 10:26:33 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on creme-brulee.marcuscom.com cc: FreeBSD Ports Subject: Re: gnome-terminal sucks X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 14:26:20 -0000 --=-w3w09Gz64I5GLdtudi+G Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2004-08-23 at 10:21, David Xu wrote: > Joe Marcus Clarke wrote: >=20 > >On Mon, 2004-08-23 at 09:03, Joe Marcus Clarke wrote: > > =20 > > > >>On Mon, 2004-08-23 at 08:34, David Xu wrote: > >> =20 > >> > >>>After I maximized gnome-terminal window, whenever I drag terminal > >>>window's scrollbar down to scroll forward contents, there is always > >>>some garbage left on screen: > >>>http://people.freebsd.org/~davidxu/screenshot.png > >>>The bug is there from version to version, this really sucks! > >>> =20 > >>> > >>Wow, that does really suck. I don't see it here even with your > >>zh_CN.GB2312 locale. What font are you using? I tested Bitstream Mono > >>and Courier, and both work okay. > >> > >>http://www.marcuscom.com/downloads/gnome-terminal.png > >> =20 > >> > > > >David, this looks like it might be > >http://bugzilla.gnome.org/show_bug.cgi?id=3D146925. There is a vte patc= h > >pointer in that bug. Can you apply that to vte, and let me know if it > >solves your problem? Thanks. > > > > =20 > > > Wow, the patch works for me! I pasted it here: This patch didn't work for you: http://bugzilla.gnome.org/attachment.cgi?id=3D30677&action=3Dview Joe >=20 > diff -ur vte-0.11.11.orig/src/vte.c vte-0.11.11/src/vte.c > --- vte-0.11.11.orig/src/vte.c 2004-05-02 03:43:01.000000000 -0300 > +++ vte-0.11.11/src/vte.c 2004-07-09 21:21:01.000000000 -0300 > @@ -13793,7 +13793,7 @@ > row =3D MAX(0, (area->y - VTE_PAD_WIDTH) / height); > row_stop =3D MIN(howmany((area->y - VTE_PAD_WIDTH) + area->height, > height), > - terminal->row_count - 1); > + terminal->row_count); > col =3D MAX(0, (area->x - VTE_PAD_WIDTH) / width); > col_stop =3D MIN(howmany((area->x - VTE_PAD_WIDTH) + area->width, > width), >=20 >=20 > Thanks, > David Xu >=20 --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-w3w09Gz64I5GLdtudi+G Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBKf6Zb2iPiv4Uz4cRAkttAKCKsf/OIvh/A3NgrPgy854b2z5XAQCeNnq/ aEK318e58zdnrZCcwDT+fFg= =FVlK -----END PGP SIGNATURE----- --=-w3w09Gz64I5GLdtudi+G-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 14:29:31 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC86216A4CE; Mon, 23 Aug 2004 14:29:31 +0000 (GMT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FEF643D53; Mon, 23 Aug 2004 14:29:31 +0000 (GMT) (envelope-from nectar@celabo.org) Received: from localhost (localhost [127.0.0.1]) by gw.celabo.org (Postfix) with ESMTP id 0CB2154861; Mon, 23 Aug 2004 09:29:31 -0500 (CDT) Received: from gw.celabo.org ([127.0.0.1]) by localhost (hellblazer.celabo.org [127.0.0.1]) (amavisd-new, port 10024) with SMTP id 23035-07; Mon, 23 Aug 2004 09:29:20 -0500 (CDT) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "madman.celabo.org", Issuer "celabo.org CA" (not verified)) by gw.celabo.org (Postfix) with ESMTP id 62A945486E; Mon, 23 Aug 2004 09:29:20 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id 147936D468; Mon, 23 Aug 2004 09:29:11 -0500 (CDT) Date: Mon, 23 Aug 2004 09:29:10 -0500 From: "Jacques A. Vidrine" To: Dan Langille Message-ID: <20040823142910.GP27355@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Dan Langille , ports@freebsd.org, freebsd-vuxml@freebsd.org References: <41279E59.13631.76AD2AB9@localhost> <4129070D.28233.7C2E4023@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4129070D.28233.7C2E4023@localhost> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: ports@freebsd.org cc: freebsd-vuxml@freebsd.org Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 14:29:31 -0000 On Sun, Aug 22, 2004 at 08:50:21PM -0400, Dan Langille wrote: > A thought which came to me overnight: does anyone have suggestions as > to how existing FreshPorts pages should be modified to include VuXML > messages? Please feel free to take an existing FreshPorts page, do a > file-save-as, and alter the HTML to suit. Then give us the URL where > we can find your version. > > My idea: Take http://www.freshports.org/sysutils/bacula/ as an > example. I think adding a special icon to the left hand colum under > Commit History. Alternatives welcome. First something off-topic: Dan, how do you generate the package names that are seen in that left-hand column? I've often thought it would be handy to see the "history" of package names, and that seems to be exactly what you have there. Personally, I think a special icon with a link to vuxml.freebsd.org/.html (or internally rendered page) and an ALT="" would be just swell! It might also be handy to have a bright warning in the top, main section if the HEAD is currently affected... similar to how you handle FORBIDDEN, BROKEN, IGNORE, etc ports. Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 14:31:38 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87BFA16A4CE for ; Mon, 23 Aug 2004 14:31:38 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D5C343D1D; Mon, 23 Aug 2004 14:31:38 +0000 (GMT) (envelope-from davidxu@freebsd.org) Received: from [127.0.0.1] (davidxu@localhost [127.0.0.1]) i7NEVZu0083885; Mon, 23 Aug 2004 14:31:37 GMT (envelope-from davidxu@freebsd.org) Message-ID: <412A00D0.1060301@freebsd.org> Date: Mon, 23 Aug 2004 22:36:00 +0800 From: David Xu User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.7.1) Gecko/20040730 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Marcus Clarke References: <20040823121856.GA65942@iib.unsam.edu.ar> <4129E43D.7060901@freebsd.org> <1093266183.44764.10.camel@shumai.marcuscom.com> <1093266741.44764.12.camel@shumai.marcuscom.com> <4129FD61.8030907@freebsd.org> <1093271193.744.7.camel@gyros> In-Reply-To: <1093271193.744.7.camel@gyros> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD Ports Subject: Re: gnome-terminal sucks X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 14:31:38 -0000 Joe Marcus Clarke wrote: >>>David, this looks like it might be >>>http://bugzilla.gnome.org/show_bug.cgi?id=146925. There is a vte patch >>>pointer in that bug. Can you apply that to vte, and let me know if it >>>solves your problem? Thanks. >>> >>> >>> >>> >>> >>Wow, the patch works for me! I pasted it here: >> >> > >This patch didn't work for you: > >http://bugzilla.gnome.org/attachment.cgi?id=30677&action=view > > > I will try this patch, but previous patch also works fine here. ;-) From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 14:54:03 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7AFB16A4CE; Mon, 23 Aug 2004 14:54:03 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E97743D39; Mon, 23 Aug 2004 14:54:03 +0000 (GMT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 61CF93D3D; Mon, 23 Aug 2004 10:54:01 -0400 (EDT) From: "Dan Langille" To: "Jacques A. Vidrine" Date: Mon, 23 Aug 2004 10:54:01 -0400 MIME-Version: 1.0 Message-ID: <4129CCC9.11697.7F32B4B4@localhost> Priority: normal In-reply-to: <20040823142910.GP27355@madman.celabo.org> References: <4129070D.28233.7C2E4023@localhost> X-mailer: Pegasus Mail for Windows (v4.12a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: ports@freebsd.org cc: freebsd-vuxml@freebsd.org Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 14:54:03 -0000 On 23 Aug 2004 at 9:29, Jacques A. Vidrine wrote: > On Sun, Aug 22, 2004 at 08:50:21PM -0400, Dan Langille wrote: > > A thought which came to me overnight: does anyone have suggestions as > > to how existing FreshPorts pages should be modified to include VuXML > > messages? Please feel free to take an existing FreshPorts page, do a > > file-save-as, and alter the HTML to suit. Then give us the URL where > > we can find your version. > > > > My idea: Take http://www.freshports.org/sysutils/bacula/ as an > > example. I think adding a special icon to the left hand colum under > > Commit History. Alternatives welcome. > > First something off-topic: Dan, how do you generate the package names > that are seen in that left-hand column? I've often thought it would > be handy to see the "history" of package names, and that seems to be > exactly what you have there. The package names? I think you are referring to PORTVERSION and PORTREVISION. For example, 1.34.6 is PORTVERSION, and 2 is the PORTREVISION. This information is generated from the following: make -V PORTREVISION -V PORTVERSION Is that what you are referring to? > Personally, I think a special icon with a link to > vuxml.freebsd.org/.html (or internally rendered page) and an > ALT="" would be just swell! It might also be handy to have > a bright warning in the top, main section if the HEAD is currently > affected... similar to how you handle FORBIDDEN, BROKEN, IGNORE, etc > ports. I welcome example icons! I was thinking to link people to the internal FreshPorts pages, and from there to the official vuxml.freebsd.org pages if they want additional information. -- Dan Langille : http://www.langille.org/ From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 15:12:04 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51C7616A4CE for ; Mon, 23 Aug 2004 15:12:04 +0000 (GMT) Received: from ion.wax.nu (ion.wax.nu [217.8.136.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 151B743D58 for ; Mon, 23 Aug 2004 15:12:04 +0000 (GMT) (envelope-from anders@rethink.no) Received: from glorfindel (glorfindel.wax.nu [192.168.0.106]) by ion.wax.nu (Postfix) with SMTP id B0D0622FF4 for ; Mon, 23 Aug 2004 17:03:48 +0200 (CEST) Message-ID: <016d01c48923$b3609b10$6a00a8c0@glorfindel> From: "Anders Hanssen" To: Date: Mon, 23 Aug 2004 17:13:04 +0200 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_016A_01C48934.73E022B0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 Subject: Re: [patch] devel/sdl12 inconsistency between actual version and file/directory naming X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 15:12:04 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_016A_01C48934.73E022B0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi again! Seems like ports/Mk/bsd.sdl.mk needed a little adjustment too. Here's the patch. -- Anders ----- Original Message ----- From: "Anders Hanssen" To: Sent: Monday, August 23, 2004 4:10 PM Subject: [patch] devel/sdl12 inconsistency between actual version and file/directory naming > Hi ports! > > When installing devel/sdl12 I get a lot of files installed with names such > as sdl11-config, /usr/local/include/SDL11/ and so on. Here's a patch to > remedy this inconsistency. > > I've also included a text file with some lines i deleted from my > ports/Tools/scripts/plist-generated pkg-plist to make that file look more > like the existing one (lots of share/doc/sdl/*). I don't know if all those > lines should have been left alone or deleted. > > I've never patched a port before, and don't know all it's inner workings, so > please take a close look at the patch before you apply it. > > Regards, > Anders Hanssen > > BTW: PORTREVISION is bumped. > ------=_NextPart_000_016A_01C48934.73E022B0 Content-Type: application/octet-stream; name="bsd.sdl.mk.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="bsd.sdl.mk.diff" Index: bsd.sdl.mk=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /home/ncvs/ports/Mk/bsd.sdl.mk,v=0A= retrieving revision 1.5=0A= diff -u -r1.5 bsd.sdl.mk=0A= --- bsd.sdl.mk 19 May 2004 21:14:18 -0000 1.5=0A= +++ bsd.sdl.mk 23 Aug 2004 15:08:22 -0000=0A= @@ -80,7 +80,7 @@=0A= =0A= _VERSION_sdl=3D 7=0A= _SUBDIR_sdl=3D devel=0A= -_LIB_sdl=3D SDL-1.1=0A= +_LIB_sdl=3D SDL-1.2=0A= _PORTDIR_sdl=3D sdl12=0A= =0A= _VERSION_sound=3D 1=0A= @@ -175,7 +175,7 @@=0A= # "Normal" dependencies and variables=0A= #=0A= BUILD_DEPENDS+=3D = ${SDL_CONFIG}:${PORTSDIR}/${_SUBDIR_sdl}/${_PORTDIR_sdl}=0A= -SDL_CONFIG?=3D ${LOCALBASE}/bin/sdl11-config=0A= +SDL_CONFIG?=3D ${LOCALBASE}/bin/sdl12-config=0A= CONFIGURE_ENV+=3D SDL_CONFIG=3D${SDL_CONFIG}=0A= MAKE_ENV+=3D SDL_CONFIG=3D${SDL_CONFIG}=0A= =0A= ------=_NextPart_000_016A_01C48934.73E022B0-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 15:13:10 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C76D816A4CE; Mon, 23 Aug 2004 15:13:10 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77CE143D53; Mon, 23 Aug 2004 15:13:10 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-10.local ([172.16.0.10]) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BzGVQ-000Hla-Im; Mon, 23 Aug 2004 17:13:09 +0200 Date: Mon, 23 Aug 2004 17:13:14 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: "Jacques A. Vidrine" From: Oliver Eikemeier In-Reply-To: <20040823142227.GO27355@madman.celabo.org> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: freebsd-vuxml@freebsd.org cc: ports@freebsd.org cc: Dan Langille Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 15:13:10 -0000 Jacques A. Vidrinew wrote: > On Mon, Aug 23, 2004 at 12:09:22AM +0200, Oliver Eikemeier wrote: [...] >> should be stuff like i386? I'm not sure that there are >> many applications for that. Usually the description is sufficient for >> those purposes. Or did you have something different in mind? > > Yeah, stuff like `i386'. I don't see it (or ) as useful > for the FreeBSD Project today, either: these are for use by other > projects. In the case of , I'm not yet sure that it > will make it through pre-1.2. I'm still working with the project to > understand their needs. FWIIW, I would find a tag that enables the sharing of entries across operating systems far more useful. -Oliver From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 17:59:06 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CB3616A4CE; Mon, 23 Aug 2004 17:59:06 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2093D43D1D; Mon, 23 Aug 2004 17:59:06 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-10.local ([172.16.0.10]) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BzJ5z-000Eo5-8c; Mon, 23 Aug 2004 19:59:05 +0200 Date: Mon, 23 Aug 2004 19:59:08 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: "Dan Langille" From: Oliver Eikemeier In-Reply-To: <4129CCC9.11697.7F32B4B4@localhost> Message-Id: <218B20FB-F52E-11D8-8CAA-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: "Jacques A. Vidrine" cc: freebsd-vuxml@freebsd.org cc: ports@freebsd.org Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 17:59:06 -0000 Dan Langille wrote: >> Personally, I think a special icon with a link to >> vuxml.freebsd.org/.html (or internally rendered page) and an >> ALT="" would be just swell! It might also be handy to have >> a bright warning in the top, main section if the HEAD is currently >> affected... similar to how you handle FORBIDDEN, BROKEN, IGNORE, etc >> ports. > > I welcome example icons! > > I was thinking to link people to the internal FreshPorts pages, and > from there to the official vuxml.freebsd.org pages if they want > additional information. When you want to render your own pages: portaudit-db does this. -Oliver From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 19:56:15 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 191AC16A4CE for ; Mon, 23 Aug 2004 19:56:15 +0000 (GMT) Received: from hotmail.com (bay10-f21.bay10.hotmail.com [64.4.37.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06DD743D46 for ; Mon, 23 Aug 2004 19:56:15 +0000 (GMT) (envelope-from crollins666@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 23 Aug 2004 12:56:14 -0700 Received: from 216.19.22.118 by by10fd.bay10.hotmail.msn.com with HTTP; Mon, 23 Aug 2004 19:56:14 GMT X-Originating-IP: [216.19.22.118] X-Originating-Email: [crollins666@hotmail.com] X-Sender: crollins666@hotmail.com From: "clayton rollins" To: roberthuff@rcn.com Date: Mon, 23 Aug 2004 19:56:14 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 23 Aug 2004 19:56:14.0859 (UTC) FILETIME=[3F2B95B0:01C4894B] cc: ports@freebsd.org Subject: Re: fetch problem from multimedia/linux-realplayer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 19:56:15 -0000 On Aug. 23, 2004, Geraud CONTINSOUZAS wrote > >Hi, > >On Mon, 2004-08-23 at 04:53, Robert Huff wrote: > > I'm trying to install multimedia/linux-realplayer, which starts > > with: > > > > ** Port marked as IGNORE: multimedia/linux-realplayer: > > may not be automatically fetched due to licensing > > restrictions. You MUST manually fetch the Linux RPM version after > > reading and agreeing to the license at: > > http://forms.real.com/real/player/unix/unix.html - once > > rp8_linux20_libc6_i386_cs2_rpm rv9_libc6_i386_cs2.tgz:update has > > been downloaded, move it to /usr/ ports/distfiles and then restart > > this build. > > > > So I go to that URL, which re-directs me to: > > > > http://www.real.com/linux/ > > > > From there, [Download RPM package] offers > > "RealPlayer10Gold.rpm" - not what I'm looking for. Am I just being > > dense, or are the instructions insufficient? > > > > > >Seems that Real removed this file. I got stuck with the same problem a >couple of days ago. I tried to get the file from googlification but only >found some customized 404 pages or some old version version of the file >(prior to the 2004.07.28 distinfo update). Finally, I had to beg a >friend to look into his distfiles dir to get me the right version. > >Anyway, my mplayer still segfaults at start on my -CURRENT, but that's >another story. > >Regards, > >G. > Found the files yesterday on: http://forms.real.com/real/player/blackjack.html (Note: the file,rp8_linux20_libc6_i386_cs2_rpm, is not directly linked to, instead linking to rp8_linux20_libc6_i386_cs1_rpm. Copy the link text and request the file rp8_linux20_libc6_i386_cs2_rpm directly. (It was on the server I used yesterday, though no link to it.) The codecs .tgz is found on the main page.) You'll also run into a failed md5 for the codecs package. My googling on it seems to indicate that the md5 is valid. You could edit distinfo to reflect this, or not, depending on how paranoid you like to be. :) On a side note, you could try to use the port proposed here: http://lists.freebsd.org/pipermail/freebsd-ports/2004-August/015401.html (Helix is an open source realplayer...) Best regards, Clayton _________________________________________________________________ Check out Election 2004 for up-to-date election news, plus voter tools and more! http://special.msn.com/msn/election2004.armx From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 20:10:48 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E30E16A4CE for ; Mon, 23 Aug 2004 20:10:48 +0000 (GMT) Received: from hotmail.com (bay10-f46.bay10.hotmail.com [64.4.37.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51C7043D41 for ; Mon, 23 Aug 2004 20:10:48 +0000 (GMT) (envelope-from crollins666@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 23 Aug 2004 13:10:48 -0700 Received: from 216.19.22.118 by by10fd.bay10.hotmail.msn.com with HTTP; Mon, 23 Aug 2004 20:10:48 GMT X-Originating-IP: [216.19.22.118] X-Originating-Email: [crollins666@hotmail.com] X-Sender: crollins666@hotmail.com From: "clayton rollins" To: ports@freebsd.org Date: Mon, 23 Aug 2004 20:10:48 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 23 Aug 2004 20:10:48.0253 (UTC) FILETIME=[47C0EED0:01C4894D] Subject: Re: Work in progress: Helix Player. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:10:48 -0000 On Aug. 24, 2004, Thierry Thomas (Kabbale Eros) wrote: > >Hello, > >Helix Player is an open source project from RealNetworks; RealPlayer is >built on top of the Helix Player (see > ). > >It would be nice to have it in the FreeBSD ports tree, and some months >ago I ported their beta versions. Now, I have upgraded it to version 1.0 >final. > >However, it's not yet ready to be committed: it builds, but some more >work is required, and I won't have time enough to finalize it. > >If some testers / reviewers / hackers want to check it, it is available >from . > >Regards, >-- >Th. Thomas. First off, thanks for spotting this software and getting it this far. However, why did you enforce gcc 3.3? I just built it on my 4.x machine with gcc 2.95.4... Is this to restrict later gcc's, or just some gcc's? Using the system compiler where possible might be nice; all of my software was compiled with it, and mozilla gives direct warnings about the plugin being compiled with a different gcc. Best regards, Clayton _________________________________________________________________ Express yourself instantly with MSN Messenger! Download today - it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/ From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 20:28:09 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B32016A4CE for ; Mon, 23 Aug 2004 20:28:09 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 426CD43D5C for ; Mon, 23 Aug 2004 20:28:09 +0000 (GMT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 20F263D3D; Mon, 23 Aug 2004 16:28:08 -0400 (EDT) From: "Dan Langille" To: ports@freebsd.org Date: Mon, 23 Aug 2004 16:28:08 -0400 MIME-Version: 1.0 Message-ID: <412A1B18.4785.80649D9F@localhost> Priority: normal X-mailer: Pegasus Mail for Windows (v4.12a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: Dan Langille Subject: LATEST_LINK unique or not? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:28:09 -0000 Is LATEST_LINK supposed to be unique? It's not. There's about 201 ports which have duplicate values. See http://beta.freshports.org/tmp/latest_link_duplicates.txt -- Dan Langille : http://www.langille.org/ From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 20:33:21 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34C7716A4CE for ; Mon, 23 Aug 2004 20:33:21 +0000 (GMT) Received: from smtp01.mrf.mail.rcn.net (smtp01.mrf.mail.rcn.net [207.172.4.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D35C43D48 for ; Mon, 23 Aug 2004 20:33:21 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from 209-6-197-67.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.197.67] helo=jerusalem.litteratus.org.litteratus.org) by smtp01.mrf.mail.rcn.net with esmtp (Exim 3.35 #7) id 1BzLVH-0006kk-00 for ports@freebsd.org; Mon, 23 Aug 2004 16:33:20 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16682.21644.827560.184919@jerusalem.litteratus.org> Date: Mon, 23 Aug 2004 16:33:16 -0400 To: ports@freebsd.org In-Reply-To: References: X-Mailer: VM 7.17 under 21.5 (beta16) "celeriac" XEmacs Lucid Subject: Re: fetch problem from multimedia/linux-realplayer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:33:21 -0000 clayton rollins writes: > On a side note, you could try to use the port proposed here: > http://lists.freebsd.org/pipermail/freebsd-ports/2004-August/015401.html > (Helix is an open source realplayer...) Tried this; the build dies (build log is appended). Is there anyone who has compiled this successfully in the last week? Robert Huff ===> Vulnerability check disabled, database not found ===> Extracting for helixplayer-1.0 >> Checksum OK for helixplayer1.0-gold-source.tar.bz2. ===> Patching for helixplayer-1.0 ===> Applying FreeBSD patches for helixplayer-1.0 ===> helixplayer-1.0 depends on file: /usr/local/bin/python - found ===> helixplayer-1.0 depends on executable: pkg-config - found ===> helixplayer-1.0 depends on file: /usr/local/bin/intltool-extract - found ===> helixplayer-1.0 depends on shared library: theora.0 - found ===> helixplayer-1.0 depends on shared library: esd.2 - found ===> helixplayer-1.0 depends on shared library: glib-2.0.400 - found ===> helixplayer-1.0 depends on shared library: atk-1.0.600 - found ===> helixplayer-1.0 depends on shared library: pango-1.0.399 - found ===> helixplayer-1.0 depends on shared library: gtk-x11-2.0.400 - found ===> Configuring for helixplayer-1.0 ===> Building for helixplayer-1.0 BUILD_ROOT="`pwd`/build" PATH="$PATH:$BUILD_ROOT/bin" BUILDRC="`pwd`/buildrc" python build/bin/build -m bingo-gold-free -P helix-client-all-defines-free player_all /usr/local/lib/python2.3/xmllib.py:9: DeprecationWarning: The xmllib module is obsolete. Use xml.sax instead. warnings.warn("The xmllib module is obsolete. Use xml.sax instead.", DeprecationWarning) --- Build System Error ------------------------------------ Unknown platform, update sysinfo.py for platform="freebsd6". ----------------------------------------------------------- *** Error code 1 Stop in /usr/ports/multimedia/helixplayer/multimedia/helixplayer/work/hxplay-1.0.0.298. *** Error code 1 Stop in /usr/ports/multimedia/helixplayer/multimedia/helixplayer. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 20:41:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B23A16A4CE for ; Mon, 23 Aug 2004 20:41:07 +0000 (GMT) Received: from out01.grupos.com.br (out01.grupos.com.br [200.203.183.77]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EA5F43D78 for ; Mon, 23 Aug 2004 20:41:07 +0000 (GMT) (envelope-from antonio@php.net) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by out01.grupos.com.br (Postfix) with ESMTP id 1D12A1A864B for ; Mon, 23 Aug 2004 17:41:03 -0300 (BRT) Received: from corp.grupos.com.br (localhost [127.0.0.1]) by corp.grupos.com.br (Postfix) with SMTP id 7F16020A6F for ; Mon, 23 Aug 2004 17:41:02 -0300 (BRT) Received: from [150.162.166.53] (unknown [150.162.166.53]) by corp.grupos.com.br (Postfix) with ESMTP id 61E9620A89 for ; Mon, 23 Aug 2004 17:41:02 -0300 (BRT) Message-ID: <412A565F.9060909@php.net> Date: Mon, 23 Aug 2004 17:41:03 -0300 From: =?ISO-8859-1?Q?Ant=F4nio_Carlos_Ven=E2ncio_J=FAnior?= User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040816) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Subject: Maintainership over www/pear-HTTP_Upload X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: antonio@php.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:41:07 -0000 Friends, I'm a lead developer of this PEAR package (http://pear.php.net/package/HTTP_Upload) and a FreeBSD user since 1998 (desktop/server) and I would like to ask your permission to maintain its FreeBSD package. ;) -- Cya Antônio echo antonio php net | sed 's/ /@/;s/ /./g' FreeBSD/OpenBSD | PHP/MySQL/Python | PGP Key ID 0x5BBEB073 "Can't buy what I want because its FREE!" - Pearl Jam From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 20:45:45 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64E4A16A4CE for ; Mon, 23 Aug 2004 20:45:45 +0000 (GMT) Received: from goofy.cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with SMTP id C4D6743D7D for ; Mon, 23 Aug 2004 20:45:43 +0000 (GMT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 98632 invoked by uid 89); 23 Aug 2004 22:45:42 +0200 Received: from sheepkiller@cultdeadsheep.org by goofy.cultdeadsheep.org by uid 89 with qmail-scanner-1.22 (clamdscan: 0.74. spamassassin: 2.63. Clear:RC:1(192.168.0.8):. Processed in 0.105972 secs); 23 Aug 2004 20:45:42 -0000 X-Qmail-Scanner-Mail-From: sheepkiller@cultdeadsheep.org via goofy.cultdeadsheep.org X-Qmail-Scanner: 1.22 (Clear:RC:1(192.168.0.8):. Processed in 0.105972 secs) Received: from unknown (HELO persephone.cultdeadsheep.org) (192.168.0.8) by goofy.cultdeadsheep.org with SMTP; 23 Aug 2004 22:45:41 +0200 Received: (qmail 4457 invoked from network); 23 Aug 2004 22:44:07 +0200 Received: from unknown (HELO satan.cultdeadsheep.org) (192.168.0.4) by persephone.cultdeadsheep.org with SMTP; 23 Aug 2004 22:44:07 +0200 Date: Mon, 23 Aug 2004 22:45:18 +0200 From: Clement Laforet To: antonio@php.net Message-Id: <20040823224518.4f0bc243.sheepkiller@cultdeadsheep.org> In-Reply-To: <412A565F.9060909@php.net> References: <412A565F.9060909@php.net> Organization: tH3 cUlt 0f tH3 d3@d sH33p X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd6.0) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha1"; boundary="Signature=_Mon__23_Aug_2004_22_45_19_+0200_0eIne/Uow9/rtyer" cc: ports@FreeBSD.org Subject: Re: Maintainership over www/pear-HTTP_Upload X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:45:45 -0000 --Signature=_Mon__23_Aug_2004_22_45_19_+0200_0eIne/Uow9/rtyer Content-Type: text/plain; charset=ISO-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, 23 Aug 2004 17:41:03 -0300 Ant=F4nio Carlos Ven=E2ncio J=FAnior wrote: Hi Antonio, > I'm a lead developer of this PEAR package=20 > (http://pear.php.net/package/HTTP_Upload) and a FreeBSD user since > 1998 (desktop/server) and I would like to ask your permission to > maintain its FreeBSD package. ;) this port is currently unmaintained, feel free to send a PR(*), to grab maintainership. I think thierry won't complain ;-) clem (*) See http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/= =20 for more details. --Signature=_Mon__23_Aug_2004_22_45_19_+0200_0eIne/Uow9/rtyer Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBKldfsRhfjwcjuh0RAtA0AJ9K4g5SGVxrdITvbSzWMXOh/QhbGACeOORJ Mvx019dSyMDbcxE5ZJVdux4= =jcET -----END PGP SIGNATURE----- --Signature=_Mon__23_Aug_2004_22_45_19_+0200_0eIne/Uow9/rtyer-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 20:53:13 2004 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C8E516A4CE; Mon, 23 Aug 2004 20:53:13 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CBC043D55; Mon, 23 Aug 2004 20:53:13 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NKrDYB042062; Mon, 23 Aug 2004 20:53:13 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NKrD3T042058; Mon, 23 Aug 2004 20:53:13 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 20:53:13 GMT From: Tilman Linneweh Message-Id: <200408232053.i7NKrD3T042058@freefall.freebsd.org> To: progen@free.fr, arved@FreeBSD.org, freebsd-i386@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/59298: Can't render anything with Blender / RADEON 7500 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 20:53:13 -0000 Synopsis: Can't render anything with Blender / RADEON 7500 State-Changed-From-To: open->feedback State-Changed-By: arved State-Changed-When: Mon Aug 23 20:52:22 GMT 2004 State-Changed-Why: This looks like a bug in blender, did you report it to the developers? Responsible-Changed-From-To: freebsd-i386->freebsd-ports Responsible-Changed-By: arved Responsible-Changed-When: Mon Aug 23 20:52:22 GMT 2004 Responsible-Changed-Why: ports issue. http://www.freebsd.org/cgi/query-pr.cgi?pr=59298 From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 21:00:50 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C3C816A4D1 for ; Mon, 23 Aug 2004 21:00:50 +0000 (GMT) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16EDE43D5C for ; Mon, 23 Aug 2004 21:00:50 +0000 (GMT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.12.11/8.12.11) id i7NL0nFF050102 for freebsd-ports@freebsd.org; Mon, 23 Aug 2004 16:00:49 -0500 (CDT) (envelope-from dan) Message-Id: <200408232100.i7NL0nFF050102@dan.emsphone.com> Resent-From: dan@dan.emsphone.com Resent-Date: Mon, 23 Aug 2004 16:00:49 -0500 Resent-Message-ID: <20040823210049.GA44074@dan.emsphone.com> Resent-To: freebsd-ports@freebsd.org Date: Fri, 20 Aug 2004 17:44:17 -0500 From: Dan Nelson User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8a3) Gecko/20040809 X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: gmane.os.freebsd.devel.ports References: <200408200558.i7K5w5hH097377@quark.rcs.purdue.edu> In-Reply-To: <200408200558.i7K5w5hH097377@quark.rcs.purdue.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Keywords: X-UID: 308 Subject: Re: FreeBSD ports which are currently scheduled for deletion X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:00:50 -0000 linimon@FreeBSD.org wrote: > portname: x11-fm/xdiskusage > description: Show where disk space is taken up > maintainer: trevor@FreeBSD.org > status: IGNORE > deprecated because: only works with 'du' output, e.g. du | xdiskusage - > expiration date: 2004-08-20 > build errors: none. > overview: http://portsmon.firepipe.net/portoverview.py?category=x11-fm&portname=xdiskusage This port was broken due to either a pthread or fltk bug which has long since been fixed; I've had no problems since March (possibly earlier). -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 21:02:04 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28DF416A4CE for ; Mon, 23 Aug 2004 21:02:04 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EF9C43D2D for ; Mon, 23 Aug 2004 21:02:03 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id E0C68762C; Mon, 23 Aug 2004 23:02:10 +0200 (CEST) Date: Mon, 23 Aug 2004 23:02:10 +0200 From: Thierry Thomas To: Clement Laforet Message-ID: <20040823210210.GF68970@graf.pompo.net> Mail-Followup-To: Clement Laforet , antonio@php.net, ports@FreeBSD.org References: <412A565F.9060909@php.net> <20040823224518.4f0bc243.sheepkiller@cultdeadsheep.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2JFBq9zoW8cOFH7v" Content-Disposition: inline In-Reply-To: <20040823224518.4f0bc243.sheepkiller@cultdeadsheep.org> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: antonio@php.net cc: ports@FreeBSD.org Subject: Re: Maintainership over www/pear-HTTP_Upload X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:02:04 -0000 --2JFBq9zoW8cOFH7v Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Le Lun 23 ao=FB 04 =E0 22:45:18 +0200, Clement Laforet =E9crivait=A0: > this port is currently unmaintained, feel free to send a PR(*), to grab > maintainership. I think thierry won't complain ;-) Approved :-) --=20 Th. Thomas. --2JFBq9zoW8cOFH7v Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBKltSc95pjMcUBaIRApleAKDqstVhoAZ+QMraqpxkaf5O2/+9EwCg4Cg1 29mmVbyeNciT03tNHmtmsj0= =6Wny -----END PGP SIGNATURE----- --2JFBq9zoW8cOFH7v-- From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 21:02:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0C9116A4CE for ; Mon, 23 Aug 2004 21:02:29 +0000 (GMT) Received: from hotmail.com (bay10-f49.bay10.hotmail.com [64.4.37.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DFA343D46 for ; Mon, 23 Aug 2004 21:02:29 +0000 (GMT) (envelope-from crollins666@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 23 Aug 2004 14:02:29 -0700 Received: from 216.19.22.118 by by10fd.bay10.hotmail.msn.com with HTTP; Mon, 23 Aug 2004 21:02:29 GMT X-Originating-IP: [216.19.22.118] X-Originating-Email: [crollins666@hotmail.com] X-Sender: crollins666@hotmail.com From: "clayton rollins" To: roberthuff@rcn.com, ports@freebsd.org Date: Mon, 23 Aug 2004 21:02:29 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 23 Aug 2004 21:02:29.0531 (UTC) FILETIME=[804266B0:01C48954] Subject: Re: fetch problem from multimedia/linux-realplayer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:02:29 -0000 On aug, 23, 2004. Robert Huff wrote: > >clayton rollins writes: > > > On a side note, you could try to use the port proposed here: > > >http://lists.freebsd.org/pipermail/freebsd-ports/2004-August/015401.html > > (Helix is an open source realplayer...) > > Tried this; the build dies (build log is appended). > Is there anyone who has compiled this successfully in the last >week? > > > Robert Huff > > > >===> Vulnerability check disabled, database not found >===> Extracting for helixplayer-1.0 > >> Checksum OK for helixplayer1.0-gold-source.tar.bz2. >===> Patching for helixplayer-1.0 >===> Applying FreeBSD patches for helixplayer-1.0 >===> helixplayer-1.0 depends on file: /usr/local/bin/python - found >===> helixplayer-1.0 depends on executable: pkg-config - found >===> helixplayer-1.0 depends on file: /usr/local/bin/intltool-extract - >found >===> helixplayer-1.0 depends on shared library: theora.0 - found >===> helixplayer-1.0 depends on shared library: esd.2 - found >===> helixplayer-1.0 depends on shared library: glib-2.0.400 - found >===> helixplayer-1.0 depends on shared library: atk-1.0.600 - found >===> helixplayer-1.0 depends on shared library: pango-1.0.399 - found >===> helixplayer-1.0 depends on shared library: gtk-x11-2.0.400 - found >===> Configuring for helixplayer-1.0 >===> Building for helixplayer-1.0 >BUILD_ROOT="`pwd`/build" PATH="$PATH:$BUILD_ROOT/bin" >BUILDRC="`pwd`/buildrc" python build/bin/build -m bingo-gold-free -P >helix-client-all-defines-free player_all >/usr/local/lib/python2.3/xmllib.py:9: DeprecationWarning: The xmllib module >is obsolete. Use xml.sax instead. > warnings.warn("The xmllib module is obsolete. Use xml.sax instead.", >DeprecationWarning) > >--- Build System Error ------------------------------------ >Unknown platform, update sysinfo.py for platform="freebsd6". >----------------------------------------------------------- > >*** Error code 1 > >Stop in >/usr/ports/multimedia/helixplayer/multimedia/helixplayer/work/hxplay-1.0.0.298. >*** Error code 1 > >Stop in /usr/ports/multimedia/helixplayer/multimedia/helixplayer. > Looks like a python problem, which I'm totally clueless about; fwiw, compiles fine here (on STABLE) with: pkg_info | grep -i py py23-expat-2.3.3_2 Python interface to the Expat XML parser py23-gtk-2.2.0_2 A set of Python bindings for GTK py23-numeric-23.1 The Numeric Extension to Python py23-tkinter-2.3.4_1 Python bindings to the Tk widget set python-2.3.4 An interpreted object-oriented programming language Regards, Clayton _________________________________________________________________ Is your PC infected? Get a FREE online computer virus scan from McAfee® Security. http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963 From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 21:06:26 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1E2516A4CE for ; Mon, 23 Aug 2004 21:06:25 +0000 (GMT) Received: from hotmail.com (bay10-dav15.bay10.hotmail.com [64.4.37.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF6D943D54 for ; Mon, 23 Aug 2004 21:06:25 +0000 (GMT) (envelope-from siczora@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 23 Aug 2004 14:06:25 -0700 Received: from 67.40.204.47 by bay10-dav15.bay10.hotmail.com with DAV; Mon, 23 Aug 2004 21:06:21 +0000 X-Originating-IP: [67.40.204.47] X-Originating-Email: [siczora@hotmail.com] X-Sender: siczora@hotmail.com From: "John Norman Durlop" To: Date: Mon, 23 Aug 2004 14:06:20 -0700 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.6353 Thread-Index: AcSJVQmW5voF48ZeS9aDXmJ0aN9Y4Q== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.181 Message-ID: X-OriginalArrivalTime: 23 Aug 2004 21:06:25.0870 (UTC) FILETIME=[0D20DEE0:01C48955] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: ports@FreeBSD.org Subject: net/samba3 port sorely outdated! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:06:26 -0000 Hi, When are you planning to update the net/samba3 port to version 3.0.6, "maintainer"? With the current ports tree it is impossible to even build samba since the sources cannot be fetched. Please advise when you take the time to update the port or know of a workaround. Thanks, John From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 21:07:00 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C57EC16A50A for ; Mon, 23 Aug 2004 21:07:00 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id F35FC43D5C for ; Mon, 23 Aug 2004 21:06:59 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id D2CA4762C; Mon, 23 Aug 2004 23:07:07 +0200 (CEST) Date: Mon, 23 Aug 2004 23:07:07 +0200 From: Thierry Thomas To: clayton rollins Message-ID: <20040823210707.GG68970@graf.pompo.net> Mail-Followup-To: clayton rollins , ports@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: ports@freebsd.org Subject: Re: Work in progress: Helix Player. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:07:01 -0000 Le Lun 23 aoû 04 à 22:10:48 +0200, clayton rollins écrivait : > > However, why did you enforce gcc 3.3? I just built it on my 4.x machine > with gcc 2.95.4... Is this to restrict later gcc's, or just some gcc's? > > Using the system compiler where possible might be nice; all of my > software was compiled with it, and mozilla gives direct warnings > about the plugin being compiled with a different gcc. Agreed, but it failed on my -STABLE machine and gcc-2.95: c++ --permissive -O -pipe -march=pentiumpro -fsigned-char -D_THREAD_SAFE -O0 -g -DDEBUG -D_DEBUG -I../../../../common/runtime/pub -I/usr/X11R6/include -I/usr/local/include -I../../../../common/include -I../../../../common/util/pub -I../../../../common/container/pub -I../../../../common/dbgtool/pub -I../../../../common/system/pub -I../../../../datatype/common/util/pub -I../../../../datatype/image/common/pub -I../../../../datatype/image/jpg/import/jpeg-6b -I./pub -I. -include dbg/datatype_image_jpg_common_ribodefs.h -fPIC -DPIC -o dbg/obj/ijglwrap.o -c ijglwrap.cpp In file included from ijglwrap.cpp:73: pub/ijglwrap.h:82: syntax error before `;' ijglwrap.cpp: In method `HX_RESULT CIJGLibraryWrapper::Initialize(long unsigned int)': ijglwrap.cpp:192: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp: In method `void CIJGLibraryWrapper::Terminate()': ijglwrap.cpp:209: syntax error before `=' ijglwrap.cpp:210: `itr' undeclared (first use this function) ijglwrap.cpp:210: (Each undeclared identifier is reported only once ijglwrap.cpp:210: for each function it appears in.) ijglwrap.cpp:210: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp:218: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp: In method `void CIJGLibraryWrapper::AppendBuffer(IHXBuffer *)': ijglwrap.cpp:239: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp: In method `void CIJGLibraryWrapper::GetLastPacketBuffer(IHXBuffer **)': ijglwrap.cpp:359: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp:361: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp: In method `UINT32 CIJGLibraryWrapper::GetMemorySum()': ijglwrap.cpp:529: syntax error before `=' ijglwrap.cpp:530: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp: In function `static boolean CIJGLibraryWrapper::FillInputBuffer(jpeg_decompress_struct *)': ijglwrap.cpp:559: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp:567: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp:597: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp:600: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp:615: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' ijglwrap.cpp: In function `static void CIJGLibraryWrapper::SkipInputData(jpeg_decompress_struct *, long int)': ijglwrap.cpp:642: `struct CIJGLibraryWrapper::BufferListSrcMgr' has no member named `m_cBufferList' *** Error code 1 Stop in /usr/ports/multimedia/helixplayer/work/hxplay-1.0.0.298/datatype/image/jpg/common. Of course, this could surely be fixed, but I have not yet tried... Regards, -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 21:11:18 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C70916A4D7 for ; Mon, 23 Aug 2004 21:11:18 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id C034143D5F for ; Mon, 23 Aug 2004 21:11:17 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id 979AC762C; Mon, 23 Aug 2004 23:11:25 +0200 (CEST) Date: Mon, 23 Aug 2004 23:11:25 +0200 From: Thierry Thomas To: Robert Huff Message-ID: <20040823211125.GH68970@graf.pompo.net> Mail-Followup-To: Robert Huff , ports@freebsd.org References: <16682.21644.827560.184919@jerusalem.litteratus.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <16682.21644.827560.184919@jerusalem.litteratus.org> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: ports@freebsd.org Subject: Re: fetch problem from multimedia/linux-realplayer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:11:18 -0000 Le Lun 23 aoû 04 à 22:33:16 +0200, Robert Huff écrivait : > --- Build System Error ------------------------------------ > Unknown platform, update sysinfo.py for platform="freebsd6". > ----------------------------------------------------------- > > *** Error code 1 > > Stop in /usr/ports/multimedia/helixplayer/multimedia/helixplayer/work/hxplay-1.0.0.298. > *** Error code 1 It's not yet ready for FreeBSD-6. We should duplicate build/umakecf/freebsd-5.0-i586.cf into build/umakecf/freebsd-6.0-i586.cf Regards, -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 21:18:23 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C161216A4CE for ; Mon, 23 Aug 2004 21:18:23 +0000 (GMT) Received: from lakermmtao06.cox.net (lakermmtao06.cox.net [68.230.240.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BE4543D1D for ; Mon, 23 Aug 2004 21:18:23 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz ([68.103.32.140]) by lakermmtao06.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with ESMTP id <20040823211821.IIXS4710.lakermmtao06.cox.net@mezz>; Mon, 23 Aug 2004 17:18:21 -0400 Date: Mon, 23 Aug 2004 16:18:06 -0500 To: "Robert Huff" References: <16682.21644.827560.184919@jerusalem.litteratus.org> From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <16682.21644.827560.184919@jerusalem.litteratus.org> User-Agent: Opera M2/7.54 (Linux, build 751) cc: ports@freebsd.org Subject: Re: fetch problem from multimedia/linux-realplayer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:18:23 -0000 On Mon, 23 Aug 2004 16:33:16 -0400, Robert Huff wrote: > > clayton rollins writes: > >> On a side note, you could try to use the port proposed here: >> http://lists.freebsd.org/pipermail/freebsd-ports/2004-August/015401.html >> (Helix is an open source realplayer...) > > Tried this; the build dies (build log is appended). > Is there anyone who has compiled this successfully in the last > week? You have 6.0-CURRENT, right? If yes, then when did you install Perl, Python, Ruby and etc? If you installed those when you have 5.x-CURRENT or BETA, then you might have to reinstall them include modules too. For example: 5.x-CURRENT or BETA will has: /usr/local/lib/ruby/site_ruby/1.8/i386-freebsd5 6.0-CURRENT will has: /usr/local/lib/ruby/site_ruby/1.8/i386-freebsd6 This is just a wild guess of mine, because I am not sure if it will hurt those for the different directory i386-freebsd5 VS i386-freebsd6. Cheers, Mezz > Robert Huff > > > > ===> Vulnerability check disabled, database not found > ===> Extracting for helixplayer-1.0 >>> Checksum OK for helixplayer1.0-gold-source.tar.bz2. > ===> Patching for helixplayer-1.0 > ===> Applying FreeBSD patches for helixplayer-1.0 > ===> helixplayer-1.0 depends on file: /usr/local/bin/python - found > ===> helixplayer-1.0 depends on executable: pkg-config - found > ===> helixplayer-1.0 depends on file: /usr/local/bin/intltool-extract > - found > ===> helixplayer-1.0 depends on shared library: theora.0 - found > ===> helixplayer-1.0 depends on shared library: esd.2 - found > ===> helixplayer-1.0 depends on shared library: glib-2.0.400 - found > ===> helixplayer-1.0 depends on shared library: atk-1.0.600 - found > ===> helixplayer-1.0 depends on shared library: pango-1.0.399 - found > ===> helixplayer-1.0 depends on shared library: gtk-x11-2.0.400 - found > ===> Configuring for helixplayer-1.0 > ===> Building for helixplayer-1.0 > BUILD_ROOT="`pwd`/build" PATH="$PATH:$BUILD_ROOT/bin" > BUILDRC="`pwd`/buildrc" python build/bin/build -m bingo-gold-free -P > helix-client-all-defines-free player_all > /usr/local/lib/python2.3/xmllib.py:9: DeprecationWarning: The xmllib > module is obsolete. Use xml.sax instead. > warnings.warn("The xmllib module is obsolete. Use xml.sax instead.", > DeprecationWarning) > > --- Build System Error ------------------------------------ > Unknown platform, update sysinfo.py for platform="freebsd6". > ----------------------------------------------------------- > > *** Error code 1 > > Stop in > /usr/ports/multimedia/helixplayer/multimedia/helixplayer/work/hxplay-1.0.0.298. > *** Error code 1 > > Stop in /usr/ports/multimedia/helixplayer/multimedia/helixplayer. -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 21:19:16 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F38016A4CE for ; Mon, 23 Aug 2004 21:19:16 +0000 (GMT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F62943D45 for ; Mon, 23 Aug 2004 21:19:16 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id C6757148D0; Mon, 23 Aug 2004 16:19:15 -0500 (CDT) Date: Mon, 23 Aug 2004 16:19:15 -0500 (CDT) From: Mark Linimon X-X-Sender: linimon@pancho To: John Norman Durlop In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org cc: timur@gnu.org Subject: Re: net/samba3 port sorely outdated! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:19:16 -0000 > When are you planning to update the net/samba3 port to version 3.0.6, > "maintainer"? While we have a number of problems with maintainers not maintaining their ports properly, this isn't the right approach to fixing the problem. Remember that all ports maintainers are volunteers -- the few people that get paid to work on FreeBSD full- or part-time are working in the source tree, not the ports tree. The better way to solve this problem is to send a PR with a patch to update the port with the latest version that builds on -current. If the maintainer does not respond after two weeks, it's fair game for someone else to commit the PR. If the maintainer does not update a port for more than a few months, maintainership can be assigned to someone else. mcl From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 21:20:33 2004 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AF2A16A4CE; Mon, 23 Aug 2004 21:20:33 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BD1A43D5F; Mon, 23 Aug 2004 21:20:33 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from freefall.freebsd.org (arved@localhost [127.0.0.1]) i7NLKWvx047156; Mon, 23 Aug 2004 21:20:32 GMT (envelope-from arved@freefall.freebsd.org) Received: (from arved@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7NLKW8J047152; Mon, 23 Aug 2004 21:20:32 GMT (envelope-from arved) Date: Mon, 23 Aug 2004 21:20:32 GMT From: Tilman Linneweh Message-Id: <200408232120.i7NLKW8J047152@freefall.freebsd.org> To: arved@FreeBSD.org, freebsd-ports@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/59298: Can't render anything with Blender / RADEON 7500 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:20:33 -0000 Synopsis: Can't render anything with Blender / RADEON 7500 Responsible-Changed-From-To: freebsd-ports->freebsd-ports-bugs Responsible-Changed-By: arved Responsible-Changed-When: Mon Aug 23 21:19:44 GMT 2004 Responsible-Changed-Why: fix responsible http://www.freebsd.org/cgi/query-pr.cgi?pr=59298 From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 21:21:38 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C75C16A4CE for ; Mon, 23 Aug 2004 21:21:38 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2E5543D58 for ; Mon, 23 Aug 2004 21:21:37 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id 5C586762C; Mon, 23 Aug 2004 23:21:45 +0200 (CEST) Date: Mon, 23 Aug 2004 23:21:45 +0200 From: Thierry Thomas To: Robert Huff , ports@freebsd.org Message-ID: <20040823212145.GJ68970@graf.pompo.net> Mail-Followup-To: Robert Huff , ports@freebsd.org References: <16682.21644.827560.184919@jerusalem.litteratus.org> <20040823211125.GH68970@graf.pompo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20040823211125.GH68970@graf.pompo.net> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 Subject: Re: fetch problem from multimedia/linux-realplayer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 21:21:38 -0000 Le Lun 23 aoû 04 à 23:11:25 +0200, Thierry Thomas écrivait : > It's not yet ready for FreeBSD-6. We should duplicate > build/umakecf/freebsd-5.0-i586.cf into build/umakecf/freebsd-6.0-i586.cf ...and of course add an entry in build/lib/sysinfo.py as stated by the error message! Regards, -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 22:03:05 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D37F16A4CE for ; Mon, 23 Aug 2004 22:03:05 +0000 (GMT) Received: from out01.grupos.com.br (out01.grupos.com.br [200.203.183.77]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA56243D66 for ; Mon, 23 Aug 2004 22:03:04 +0000 (GMT) (envelope-from antonio@php.net) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by out01.grupos.com.br (Postfix) with ESMTP id 631B61A8533 for ; Mon, 23 Aug 2004 19:02:58 -0300 (BRT) Received: from corp.grupos.com.br (localhost [127.0.0.1]) by corp.grupos.com.br (Postfix) with SMTP id D16C420A85 for ; Mon, 23 Aug 2004 19:02:57 -0300 (BRT) Received: from [150.162.166.53] (unknown [150.162.166.53]) by corp.grupos.com.br (Postfix) with ESMTP id 3E16820A6F; Mon, 23 Aug 2004 19:02:57 -0300 (BRT) Message-ID: <412A6992.9010500@php.net> Date: Mon, 23 Aug 2004 19:02:58 -0300 From: =?ISO-8859-1?Q?Ant=F4nio_Carlos_Ven=E2ncio_J=FAnior?= User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040816) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Thierry Thomas References: <412A565F.9060909@php.net> <20040823224518.4f0bc243.sheepkiller@cultdeadsheep.org> <20040823210210.GF68970@graf.pompo.net> In-Reply-To: <20040823210210.GF68970@graf.pompo.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit cc: ports@FreeBSD.org cc: Clement Laforet Subject: Re: Maintainership over www/pear-HTTP_Upload X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: antonio@php.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 22:03:05 -0000 Thierry, submited. There are another pear-* ports unmaintained?! ;) Thierry Thomas wrote: > Le Lun 23 aoû 04 à 22:45:18 +0200, Clement Laforet > écrivait : > >>this port is currently unmaintained, feel free to send a PR(*), to grab >>maintainership. I think thierry won't complain ;-) > > > Approved :-) -- Cya Antônio echo antonio php net | sed 's/ /@/;s/ /./g' FreeBSD/OpenBSD | PHP/MySQL/Python | PGP Key ID 0x5BBEB073 "Can't buy what I want because its FREE!" - Pearl Jam From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 22:15:31 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6F3216A4CE for ; Mon, 23 Aug 2004 22:15:31 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6414643D5C for ; Mon, 23 Aug 2004 22:15:31 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id 42FCC762C; Tue, 24 Aug 2004 00:15:38 +0200 (CEST) Date: Tue, 24 Aug 2004 00:15:38 +0200 From: Thierry Thomas To: =?iso-8859-1?Q?Ant=F4nio_Carlos_Ven=E2ncio_J=FAnior?= Message-ID: <20040823221538.GK68970@graf.pompo.net> Mail-Followup-To: =?iso-8859-1?Q?Ant=F4nio_Carlos_Ven=E2ncio_J=FAnior?= , ports@FreeBSD.org, Clement Laforet References: <412A565F.9060909@php.net> <20040823224518.4f0bc243.sheepkiller@cultdeadsheep.org> <20040823210210.GF68970@graf.pompo.net> <412A6992.9010500@php.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <412A6992.9010500@php.net> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: ports@FreeBSD.org cc: Clement Laforet Subject: Re: Maintainership over www/pear-HTTP_Upload X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 22:15:31 -0000 Le Mar 24 aoû 04 à 0:02:58 +0200, Antônio Carlos Venâncio Júnior écrivait : > Thierry, > > submited. There are another pear-* ports unmaintained?! ;) Hmm... Most of them ;-) find /usr/ports -type d -name "pear-*" -exec grep -H ^MAINTAINER {}/Makefile \; -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 22:35:31 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B067D16A4CF for ; Mon, 23 Aug 2004 22:35:31 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65A3943D1F for ; Mon, 23 Aug 2004 22:35:31 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by mproxy.gmail.com with SMTP id 77so77143rnl for ; Mon, 23 Aug 2004 15:35:24 -0700 (PDT) Received: by 10.38.83.11 with SMTP id g11mr250729rnb; Mon, 23 Aug 2004 15:35:24 -0700 (PDT) Received: by 10.38.75.25 with HTTP; Mon, 23 Aug 2004 15:35:24 -0700 (PDT) Message-ID: <790a9fff040823153512cec7ff@mail.gmail.com> Date: Mon, 23 Aug 2004 17:35:24 -0500 From: Scot Hetzel To: hartzell@kestrel.alerce.com In-Reply-To: <16679.55653.369559.875648@rosebud.alerce.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <16679.55653.369559.875648@rosebud.alerce.com> cc: freebsd-ports@freebsd.org Subject: Re: question about specifying amavisd-new option in pkgtools.conf? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Scot Hetzel List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 22:35:31 -0000 On Sat, 21 Aug 2004 16:23:17 -0700, George Hartzell > The Makefile looks for a couple of files and if it can't find them, it > does this: > > AMAVIS_NOMILTER="@comment " > > I've tried a variety of quotes and spaces in my pkgtools.conf MAKEARGS > section, and can't get anything to work. Most of the (like this one) > end up loosing the space and the install tools don't know what to do > with @comment concatenated onto the beginning of a filename: > > 'security/amavisd-new' => 'AMAVIS_NOMILTER=@comment', > You need to define the variable so that there is a space after comment: 'security/amavisd-new' => 'AMAVIS_NOMILTER="@comment "', From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 22:37:09 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 924ED16A4CE for ; Mon, 23 Aug 2004 22:37:09 +0000 (GMT) Received: from 194-185-53-242.f5.ngi.it (194-185-53-242.f5.ngi.it [194.185.53.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 911E243D3F for ; Mon, 23 Aug 2004 22:37:08 +0000 (GMT) (envelope-from mark@remotelab.org) Received: from vaio.lab (localhost. [127.0.0.1])i7NMb0PH098538; Tue, 24 Aug 2004 00:37:00 +0200 (CEST) (envelope-from mark@remotelab.org) Received: from vaio.lab (localhost.lab [127.0.0.1]) by vaio.lab (8.12.11/8.12.11) with ESMTP id i7NMafOg003209; Tue, 24 Aug 2004 00:36:41 +0200 (CEST) (envelope-from mark@vaio.lab) Received: (from mark@localhost) by vaio.lab (8.12.11/8.12.11/Submit) id i7NMafUs003208; Tue, 24 Aug 2004 00:36:41 +0200 (CEST) (envelope-from mark) Date: Tue, 24 Aug 2004 00:36:41 +0200 From: Marco Trentini To: michael johnson Message-ID: <20040823223641.GP716@vaio.lab> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Operating-System: FreeBSD vaio.lab 5.2-CURRENT i386 User-Agent: Mutt/1.5.6i cc: ports@freebsd.org cc: danfe@regency.nsu.ru Subject: Re: nvidia-driver question X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 22:37:09 -0000 On Tue, Aug 17, 2004 at 07:26:53PM -0400, michael johnson wrote: > Hi, > I have a question about x11/nvidia-driver, what are the > advantages/disadvantages of using WITHOUT_LINUX? In the past I did some benchmarks about this question and the results have been essentially the same with or without linux compatibility. Of course without linux compatibility you can't benefit nvidia-driver with ludic linux-applications. -- Marco Trentini mark@remotelab.org http://www.remotelab.org/ From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 22:37:55 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E57C16A4CE for ; Mon, 23 Aug 2004 22:37:55 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19D0D43D1D for ; Mon, 23 Aug 2004 22:37:55 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-10.local ([172.16.0.10]) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BzNRo-0005ug-9S; Tue, 24 Aug 2004 00:37:54 +0200 Date: Tue, 24 Aug 2004 00:37:57 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: "Dan Langille" From: Oliver Eikemeier In-Reply-To: <412A1B18.4785.80649D9F@localhost> Message-Id: <14C14956-F555-11D8-8CAA-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: ports@freebsd.org Subject: Re: LATEST_LINK unique or not? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 22:37:55 -0000 Dan Langille wrote: > Is LATEST_LINK supposed to be unique? It's not. There's about 201 > ports which have duplicate values. It is, expect when NO_LATEST_LINK is set (in which case no latest link exists). Did you filtr out these cases? Everything else is bug, Kris did some survey AFAIK. -Oliver From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 22:48:30 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8A9616A4CE for ; Mon, 23 Aug 2004 22:48:30 +0000 (GMT) Received: from smtp03.mrf.mail.rcn.net (smtp03.mrf.mail.rcn.net [207.172.4.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 994E543D2D for ; Mon, 23 Aug 2004 22:48:30 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from 209-6-197-67.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.197.67] helo=jerusalem.litteratus.org.litteratus.org) by smtp03.mrf.mail.rcn.net with esmtp (Exim 3.35 #7) id 1BzNc5-0003Td-00 for ports@FreeBSD.org; Mon, 23 Aug 2004 18:48:29 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16682.29757.186804.406874@jerusalem.litteratus.org> Date: Mon, 23 Aug 2004 18:48:29 -0400 To: ports@FreeBSD.org In-Reply-To: <20040823211125.GH68970@graf.pompo.net> References: <16682.21644.827560.184919@jerusalem.litteratus.org> <20040823211125.GH68970@graf.pompo.net> X-Mailer: VM 7.17 under 21.5 (beta16) "celeriac" XEmacs Lucid Subject: Re: fetch problem from multimedia/linux-realplayer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 22:48:30 -0000 Thierry Thomas writes: > It's not yet ready for FreeBSD-6. We should duplicate > build/umakecf/freebsd-5.0-i586.cf into > build/umakecf/freebsd-6.0-i586.cf Well sure ... but who is "we"? Robert "_not_ the maintainer :-)" Huff From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 23:00:08 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 128AC16A4CE for ; Mon, 23 Aug 2004 23:00:08 +0000 (GMT) Received: from smtp01.mrf.mail.rcn.net (smtp01.mrf.mail.rcn.net [207.172.4.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBA6E43D46 for ; Mon, 23 Aug 2004 23:00:07 +0000 (GMT) (envelope-from roberthuff@rcn.com) Received: from 209-6-197-67.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.197.67] helo=jerusalem.litteratus.org.litteratus.org) by smtp01.mrf.mail.rcn.net with esmtp (Exim 3.35 #7) id 1BzNnK-0006RT-00 for ports@freebsd.org; Mon, 23 Aug 2004 19:00:06 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16682.30454.513861.805741@jerusalem.litteratus.org> Date: Mon, 23 Aug 2004 19:00:06 -0400 To: ports@freebsd.org In-Reply-To: References: <16682.21644.827560.184919@jerusalem.litteratus.org> X-Mailer: VM 7.17 under 21.5 (beta16) "celeriac" XEmacs Lucid Subject: Re: fetch problem from multimedia/linux-realplayer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 23:00:08 -0000 Jeremy Messenger writes: > You have 6.0-CURRENT, right? From uname: FreeBSD 6.0-CURRENT #1: Fri Aug 20 15:02:58 EDT 2004 > If yes, then when did you install Perl, > Python, Ruby and etc? huff@> dir /var/db/pkg | grep -i ruby drwxr-xr-x 2 root wheel 512 May 4 19:21 ruby-1.6.8.2004.04.16_1 drwxr-xr-x 2 root wheel 512 Aug 22 14:44 ruby-1.8.1.2004.05.02_1 drwxr-xr-x 2 root wheel 512 May 4 19:21 ruby16-shim-ruby18-1.8.1.p3 drwxr-xr-x 2 root wheel 512 Jul 15 23:57 ruby18-bdb1-0.2.2 huff@> dir /var/db/pkg | grep -i py drwxrwxr-x 2 root wheel 512 Aug 22 10:52 py-game-1.6_2 drwxr-xr-x 2 root wheel 512 Aug 22 10:52 py23-expat-2.3.4_3 drwxr-xr-x 2 root wheel 512 Aug 22 11:21 py23-gtk-2.2.0_3 drwxr-xr-x 2 root wheel 512 Aug 22 10:52 py23-imaging-1.1.4 drwxr-xr-x 2 root wheel 512 Aug 22 10:52 py23-numeric-23.1 drwxr-xr-x 2 root wheel 512 Aug 22 10:52 py23-opengl-2.0.1.07_1 drwxr-xr-x 2 root wheel 512 Aug 22 10:52 py23-qt-3.12 drwxr-xr-x 2 root wheel 512 Aug 22 10:52 py23-sip-4.0.1 drwxr-xr-x 2 root wheel 512 Aug 22 10:52 py23-tkinter-2.3.4_1 drwxr-xr-x 2 root wheel 512 Aug 22 10:52 py23-wxPython-2.4.2.4_2 drwxr-xr-x 2 root wheel 512 Aug 22 11:18 python-2.3.4_2 huff@jerusalem> dir /var/db/pkg | grep -i perl drwxr-xr-x 2 root wheel 512 Aug 23 16:49 perl-5.6.1_15 > If you installed those when you have 5.x-CURRENT or > BETA, then you might have to reinstall them include modules too. For > example: > > 5.x-CURRENT or BETA will has: > /usr/local/lib/ruby/site_ruby/1.8/i386-freebsd5 > 6.0-CURRENT will has: /usr/local/lib/ruby/site_ruby/1.8/i386-freebsd6 huff@> dir /usr/local/lib/ruby/site_ruby/1.8/ total 94 drwxr-xr-x 3 root wheel 512 Jul 15 23:57 . drwxr-xr-x 4 root wheel 512 Feb 27 11:40 .. drwxr-xr-x 2 root wheel 512 Mar 4 16:44 i386-freebsd5 So you're saying I need to re-install ruby (i.e. ruby-1.8.1.2004.05.02_1) to pick up the changes? Because: huff@>> /usr/local/sbin/portversion | grep ruby [Updating the pkgdb in /var/db/pkg ... - 411 packages found (-1 +2) (...).. done] ruby = ruby = ruby16-shim-ruby18 = ruby18-bdb1 = Robert Huff From owner-freebsd-ports@FreeBSD.ORG Mon Aug 23 23:42:19 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B835F16A4CE for ; Mon, 23 Aug 2004 23:42:19 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91D5D43D58 for ; Mon, 23 Aug 2004 23:42:19 +0000 (GMT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 792313D3D; Mon, 23 Aug 2004 19:42:15 -0400 (EDT) From: "Dan Langille" To: Oliver Eikemeier Date: Mon, 23 Aug 2004 19:00:32 -0400 MIME-Version: 1.0 Message-ID: <412A3ED0.12730.80F02992@localhost> Priority: normal In-reply-to: <14C14956-F555-11D8-8CAA-00039312D914@fillmore-labs.com> References: <412A1B18.4785.80649D9F@localhost> X-mailer: Pegasus Mail for Windows (v4.12a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: ports@freebsd.org Subject: Re: LATEST_LINK unique or not? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2004 23:42:19 -0000 On 24 Aug 2004 at 0:37, Oliver Eikemeier wrote: > Dan Langille wrote: > > > Is LATEST_LINK supposed to be unique? It's not. There's about 201 > > ports which have duplicate values. > > It is, expect when NO_LATEST_LINK is set (in which case no latest link > exists). Did you filtr out these cases? Everything else is bug, Kris did > some survey AFAIK. I obtained my list from the output of "make -V LATEST_LINK" and paid no attention to NO_LATEST_LINK. Are you saying LATEST_LINK must be ignored if NO_LATEST_LINK is set? Why is this not done programatically? i.e. output an empty string. -- Dan Langille : http://www.langille.org/ From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 02:06:14 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53E4416A4CE for ; Tue, 24 Aug 2004 02:06:14 +0000 (GMT) Received: from xevious.kicks-ass.net (dsl093-025-119.hou1.dsl.speakeasy.net [66.93.25.119]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE49F43D49 for ; Tue, 24 Aug 2004 02:06:13 +0000 (GMT) (envelope-from skquinn@xevious.kicks-ass.net) Received: from xevious.kicks-ass.net (skquinn@localhost [127.0.0.1]) by xevious.kicks-ass.net (8.12.11/8.12.6) with ESMTP id i7O26AbC033435 for ; Mon, 23 Aug 2004 21:06:10 -0500 (CDT) (envelope-from skquinn@xevious.kicks-ass.net) Received: by xevious.kicks-ass.net (8.12.11/8.12.6/Submit) id i7O269rB033434 for ports@freebsd.org; Mon, 23 Aug 2004 21:06:09 -0500 (CDT) From: "Shawn K. Quinn" To: ports@freebsd.org Date: Mon, 23 Aug 2004 21:06:08 -0500 User-Agent: KMail/1.6.2 MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200408232106.08925.skquinn@xevious.kicks-ass.net> Subject: libtheora in graphics, not multimedia? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 02:06:14 -0000 Maybe this only makes sense to me, but I just now noticed libtheora is categorized under graphics. To me, it makes more sense for video codecs like this to be under multimedia. Or is theer something I'm missing? -- Shawn K. Quinn From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 02:22:38 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62B9D16A4CE for ; Tue, 24 Aug 2004 02:22:38 +0000 (GMT) Received: from mta10.adelphia.net (mta10.adelphia.net [68.168.78.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E97643D6A for ; Tue, 24 Aug 2004 02:22:35 +0000 (GMT) (envelope-from parv@chvlva.adelphia.net) Received: from default.chvlva.adelphia.net ([69.160.71.53]) by mta10.adelphia.netESMTP <20040824022234.RWXD9204.mta10.adelphia.net@default.chvlva.adelphia.net>; Mon, 23 Aug 2004 22:22:34 -0400 Received: by default.chvlva.adelphia.net (Postfix, from userid 1000) id 4F597574E; Mon, 23 Aug 2004 22:24:30 -0400 (EDT) Date: Mon, 23 Aug 2004 22:24:30 -0400 From: Parv To: Eric Anholt Message-ID: <20040824022430.GA3238@moo.holy.cow> Mail-Followup-To: Eric Anholt , ports@FreeBSD.org References: <1093235880.891.42.camel@leguin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1093235880.891.42.camel@leguin> cc: ports@FreeBSD.org Subject: Re: X11 manindex creation X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 02:22:38 -0000 in message <1093235880.891.42.camel@leguin>, wrote Eric Anholt thusly... > > Does anyone out there ever use the HTML manpages, and specifically > the HTML manpage index, generated by imake-using ports? Remove it especially when the above message informed me about HTML man page generation for the first time. - Parv -- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 02:30:58 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1113E16A4CE for ; Tue, 24 Aug 2004 02:30:58 +0000 (GMT) Received: from creme-brulee.marcuscom.com (rrcs-midsouth-24-172-16-118.biz.rr.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DC0A43D2D for ; Tue, 24 Aug 2004 02:30:57 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) i7O0Wtg3009188; Mon, 23 Aug 2004 20:32:55 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Dan Langille In-Reply-To: <412A3ED0.12730.80F02992@localhost> References: <412A1B18.4785.80649D9F@localhost> <412A3ED0.12730.80F02992@localhost> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-aqQkh3bstIOK2l40kfsu" Organization: MarcusCom, Inc. Message-Id: <1093307645.83778.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Mon, 23 Aug 2004 20:34:05 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on creme-brulee.marcuscom.com cc: ports@freebsd.org cc: Oliver Eikemeier Subject: Re: LATEST_LINK unique or not? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 02:30:58 -0000 --=-aqQkh3bstIOK2l40kfsu Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2004-08-23 at 19:00, Dan Langille wrote: > On 24 Aug 2004 at 0:37, Oliver Eikemeier wrote: >=20 > > Dan Langille wrote: > >=20 > > > Is LATEST_LINK supposed to be unique? It's not. There's about 201 > > > ports which have duplicate values. > >=20 > > It is, expect when NO_LATEST_LINK is set (in which case no latest link=20 > > exists). Did you filtr out these cases? Everything else is bug, Kris di= d=20 > > some survey AFAIK. >=20 > I obtained my list from the output of "make -V LATEST_LINK" and paid=20 > no attention to NO_LATEST_LINK. >=20 > Are you saying LATEST_LINK must be ignored if NO_LATEST_LINK is set? =20 Yes. > Why is this not done programatically? i.e. output an empty string. No reason that I can see. It could be made to output en empty value if NO_LATEST_LINK is set. Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-aqQkh3bstIOK2l40kfsu Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBKoz9b2iPiv4Uz4cRAqBmAJ9sSAO2uPEuv8vsyFULXEa5ZdR/dwCfa455 AY7YYUUZuLAPz7Ud8IPpdqM= =v8Qv -----END PGP SIGNATURE----- --=-aqQkh3bstIOK2l40kfsu-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 02:33:23 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04A6716A4CE for ; Tue, 24 Aug 2004 02:33:23 +0000 (GMT) Received: from mailout2.barnet.com.au (mailout2.barnet.com.au [218.185.88.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AA9343D53 for ; Tue, 24 Aug 2004 02:33:22 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mailout2.barnet.com.au (Postfix, from userid 27) id BD2F27074B3; Tue, 24 Aug 2004 12:33:20 +1000 (EST) X-Viruscan-Id: <412AA8F00001110EC28F2E@BarNet> Received: from mail2-auth.barnet.com.au (localhost.barnet.com.au [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 6E3627074B1; Tue, 24 Aug 2004 12:33:20 +1000 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id C1DE77074AE; Tue, 24 Aug 2004 12:33:19 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 8A57B61AF; Tue, 24 Aug 2004 12:33:18 +1000 (EST) Date: Tue, 24 Aug 2004 12:33:18 +1000 From: Edwin Groothuis To: John Norman Durlop Message-ID: <20040824023318.GA22578@k7.mavetju> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org cc: timur@gnu.org Subject: Re: net/samba3 port sorely outdated! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 02:33:23 -0000 On Mon, Aug 23, 2004 at 02:06:20PM -0700, John Norman Durlop wrote: > When are you planning to update the net/samba3 port to version 3.0.6, > "maintainer"? With the current ports tree it is impossible to even build > samba since the sources cannot be fetched. Please advise when you take the > time to update the port or know of a workaround. 19 August 2004 - Samba 3.0.6 Available for Download Five days. Four days since it is not yet tuesday in your place. If it is such an issue for you, please help us with the following: See if you can fetch and build Samba 3.0.6 properly on your system. What changes are needed to the Makefile and the patches. Does it all work properly, or are there things which break. Please make patches for them too, so you can share your work with others. Make sure that the list of files installed is correct. Check your patches on the latest releases of FreeBSD 4.x and 5.x. If the patches are problems with Samba, give feedback to the Samba development team. Make sure all slave-ports still work too. And as the last step, diff your version of the port against the original port and send-pr it, so the maintainer can check your version against his version, see his experienced problems against your experienced problems and commit a version which works properly. Feel free to stamp with your feet on the ground and shout "it's not fair" if you don't like the above approach, but it's the same things the maintainer has to do before he can update the port. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 02:40:30 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91E4C16A4CE for ; Tue, 24 Aug 2004 02:40:30 +0000 (GMT) Received: from mailout2.barnet.com.au (mailout2.barnet.com.au [218.185.88.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A0A443D41 for ; Tue, 24 Aug 2004 02:40:30 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mailout2.barnet.com.au (Postfix, from userid 27) id B938B7074B1; Tue, 24 Aug 2004 12:40:29 +1000 (EST) X-Viruscan-Id: <412AAA9D00011F1D6D6EBF@BarNet> Received: from mail2-auth.barnet.com.au (localhost.barnet.com.au [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 72A967074AE; Tue, 24 Aug 2004 12:40:29 +1000 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id E175B7074A2; Tue, 24 Aug 2004 12:40:28 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id B733461B6; Tue, 24 Aug 2004 12:40:27 +1000 (EST) Date: Tue, 24 Aug 2004 12:40:27 +1000 From: Edwin Groothuis To: Anders Hanssen Message-ID: <20040824024027.GB22578@k7.mavetju> References: <013401c4891a$fb634b00$6a00a8c0@glorfindel> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <013401c4891a$fb634b00$6a00a8c0@glorfindel> User-Agent: Mutt/1.5.6i cc: ports@freebsd.org Subject: Re: [patch] devel/sdl12 inconsistency between actual version and file/directory naming X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 02:40:30 -0000 On Mon, Aug 23, 2004 at 04:10:40PM +0200, Anders Hanssen wrote: > When installing devel/sdl12 I get a lot of files installed with names such > as sdl11-config, /usr/local/include/SDL11/ and so on. Here's a patch to > remedy this inconsistency. This requires a version bump over all ports which use this library. I suggest to let this part rest until there is a new version of the SDL library from www.libsdl.org. In the mean time, can you send-pr these patches so I can keep track of it? Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 05:36:09 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C71A516A4CE for ; Tue, 24 Aug 2004 05:36:09 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4875143D1D for ; Tue, 24 Aug 2004 05:36:09 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id 97214763D; Tue, 24 Aug 2004 07:36:12 +0200 (CEST) Date: Tue, 24 Aug 2004 07:36:12 +0200 From: Thierry Thomas To: ports@FreeBSD.org Message-ID: <20040824053612.GB93625@graf.pompo.net> Mail-Followup-To: ports@FreeBSD.org References: <16682.21644.827560.184919@jerusalem.litteratus.org> <20040823211125.GH68970@graf.pompo.net> <16682.29757.186804.406874@jerusalem.litteratus.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <16682.29757.186804.406874@jerusalem.litteratus.org> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 Subject: Re: fetch problem from multimedia/linux-realplayer X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 05:36:09 -0000 Le Mar 24 aoû 04 à 0:48:29 +0200, Robert Huff écrivait : > > It's not yet ready for FreeBSD-6. We should duplicate > > build/umakecf/freebsd-5.0-i586.cf into > > build/umakecf/freebsd-6.0-i586.cf > > Well sure ... but who is "we"? Who needs it! > Robert "_not_ the maintainer :-)" Huff Not yet a port, no maintainer... -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 05:38:25 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1494E16A4CE for ; Tue, 24 Aug 2004 05:38:25 +0000 (GMT) Received: from mailhost.frm2.tum.de (mailhost.frm2.tum.de [129.187.179.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFC0243D5D for ; Tue, 24 Aug 2004 05:38:17 +0000 (GMT) (envelope-from Joerg.Pulz@frm2.tum.de) Received: from localhost (mailhost.frm2.tum.de [129.187.179.12]) i7O5cEH4073286; Tue, 24 Aug 2004 07:38:14 +0200 (CEST) (envelope-from jpulz@frm2.tum.de) Received: from hades.admin.frm2 (hades.admin.frm2 [172.25.1.10]) by mailhost.frm2.tum.de (8.12.10/8.12.10) with ESMTP id i7O5cD9w073280 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 24 Aug 2004 07:38:13 +0200 (CEST) (envelope-from jpulz@frm2.tum.de) Received: from hades.admin.frm2 (localhost [127.0.0.1]) by hades.admin.frm2 (8.12.10/8.12.10) with ESMTP id i7O5c8W3077865; Tue, 24 Aug 2004 07:38:08 +0200 (CEST) (envelope-from jpulz@frm2.tum.de) Received: (from jpulz@localhost) by hades.admin.frm2 (8.12.10/8.12.10/Submit) id i7O5c74x077864; Tue, 24 Aug 2004 07:38:07 +0200 (CEST) (envelope-from jpulz) Date: Tue, 24 Aug 2004 07:38:05 +0200 (CEST) From: Joerg Pulz To: Mark Linimon In-Reply-To: Message-ID: <20040824073030.C71976@hades.admin.frm2> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: at mailhost.frm2.tum.de cc: ports@freebsd.org cc: John Norman Durlop cc: timur@gnu.org Subject: Re: net/samba3 port sorely outdated! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 05:38:25 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Mon, 23 Aug 2004, Mark Linimon wrote: >> When are you planning to update the net/samba3 port to version 3.0.6, >> "maintainer"? > > While we have a number of problems with maintainers not maintaining > their ports properly, this isn't the right approach to fixing the > problem. Remember that all ports maintainers are volunteers -- the > few people that get paid to work on FreeBSD full- or part-time are > working in the source tree, not the ports tree. > > The better way to solve this problem is to send a PR with a patch > to update the port with the latest version that builds on -current. > If the maintainer does not respond after two weeks, it's fair game > for someone else to commit the PR. If the maintainer does not update > a port for more than a few months, maintainership can be assigned to > someone else. Hi, there already was an open PR in gnats where i've contributed some stuff to. unfortunately this one was closed due to problems by the original PR submitter. see the Follow-Ups for details. i think someone should reopen it and get the patches in, as i couldn't find any problems with samba-3.0.6 in any way. this is the original closing statement: - --- > State-Changed-From-To: open->closed > State-Changed-By: pav > State-Changed-When: Fri Aug 20 21:40:30 GMT 2004 > State-Changed-Why: > Closed on submitter request. > > Please, folks, coordinate with maintainer. He's usually pretty > helpfull and replies fast. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=70687 - --- if it is necessary to file a new PR about this, i can do this at any time. regards Joerg - -- The beginning is the most important part of the work. -Plato -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBKtQ/SPOsGF+KA+MRAihBAJwOUkqt1tTw2OOhMT05zfj3eyP1iwCeMYvq z0jD7MgDi1o1peU3PX+iT/A= =GnWM -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 05:52:49 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 608A216A4CE for ; Tue, 24 Aug 2004 05:52:49 +0000 (GMT) Received: from ylpvm15.prodigy.net (ylpvm15-ext.prodigy.net [207.115.57.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19F5C43D45 for ; Tue, 24 Aug 2004 05:52:49 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i7O5qiEU001705; Tue, 24 Aug 2004 01:52:44 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 30314512EE; Mon, 23 Aug 2004 22:52:38 -0700 (PDT) Date: Mon, 23 Aug 2004 22:52:38 -0700 From: Kris Kennaway To: Dan Langille Message-ID: <20040824055238.GA52583@xor.obsecurity.org> References: <412A1B18.4785.80649D9F@localhost> <412A3ED0.12730.80F02992@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="T4sUOijqQbZv57TR" Content-Disposition: inline In-Reply-To: <412A3ED0.12730.80F02992@localhost> User-Agent: Mutt/1.4.2.1i cc: ports@freebsd.org cc: Oliver Eikemeier Subject: Re: LATEST_LINK unique or not? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 05:52:49 -0000 --T4sUOijqQbZv57TR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 23, 2004 at 07:00:32PM -0400, Dan Langille wrote: > On 24 Aug 2004 at 0:37, Oliver Eikemeier wrote: >=20 > > Dan Langille wrote: > >=20 > > > Is LATEST_LINK supposed to be unique? It's not. There's about 201 > > > ports which have duplicate values. > >=20 > > It is, expect when NO_LATEST_LINK is set (in which case no latest link= =20 > > exists). Did you filtr out these cases? Everything else is bug, Kris di= d=20 > > some survey AFAIK. >=20 > I obtained my list from the output of "make -V LATEST_LINK" and paid=20 > no attention to NO_LATEST_LINK. >=20 > Are you saying LATEST_LINK must be ignored if NO_LATEST_LINK is set? =20 > Why is this not done programatically? i.e. output an empty string. The only reason is because LATEST_LINK was originally used only within bsd.port.mk in situations where NO_LATEST_LINK is tested. Perhaps you're using it for something else now that might justify changing the behaviour. Kris --T4sUOijqQbZv57TR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBKtelWry0BWjoQKURAs3pAJoD/QzSOnjywfKze3fjUQtNH/zN3wCfXqmb DQNdWCokWhX4IkOkOHHsg80= =jPa4 -----END PGP SIGNATURE----- --T4sUOijqQbZv57TR-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 06:17:01 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BD0316A4CE for ; Tue, 24 Aug 2004 06:17:01 +0000 (GMT) Received: from smtp3.server.rpi.edu (smtp3.server.rpi.edu [128.113.2.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03C8A43D49 for ; Tue, 24 Aug 2004 06:16:59 +0000 (GMT) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.netel.rpi.edu [128.113.24.47]) by smtp3.server.rpi.edu (8.13.0/8.13.0) with ESMTP id i7O6GvPG023420; Tue, 24 Aug 2004 02:16:58 -0400 Mime-Version: 1.0 X-Sender: drosih@mail.rpi.edu Message-Id: In-Reply-To: <20040824073030.C71976@hades.admin.frm2> References: <20040824073030.C71976@hades.admin.frm2> Date: Tue, 24 Aug 2004 02:16:57 -0400 To: Joerg Pulz , Mark Linimon From: Garance A Drosihn Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-Scanned-By: CanIt (www . canit . ca) cc: ports@freebsd.org Subject: Re: net/samba3 port sorely outdated! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 06:17:01 -0000 At 7:38 AM +0200 8/24/04, Joerg Pulz wrote: > >there already was an open PR in gnats where I've contributed some >stuff to. Unfortunately this one was closed due to problems by >the original PR submitter. See the Follow-Ups for details. >I think someone should reopen it and get the patches in, as I >couldn't find any problems with samba-3.0.6 in any way. > >This is the original closing statement: >- --- >>State-Changed-From-To: open->closed >>State-Changed-By: pav >>State-Changed-When: Fri Aug 20 21:40:30 GMT 2004 >>State-Changed-Why: Closed on submitter request. >> Please, folks, coordinate with maintainer. He's usually >> pretty helpfull and replies fast. >>http://www.freebsd.org/cgi/query-pr.cgi?pr=70687 >- --- The close request says "coordinate with the maintainer". But /usr/ports/net/samba says: MAINTAINER= ports@FreeBSD.org Does the PR refer to: # Reworked/updated and portsified by anders@FreeBSD.org, 2003-11-08 ? -- Garance Alistair Drosehn = gad@gilead.netel.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 07:22:06 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5431416A4CE for ; Tue, 24 Aug 2004 07:22:06 +0000 (GMT) Received: from pit.databus.com (p70-227.acedsl.com [66.114.70.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD12643D31 for ; Tue, 24 Aug 2004 07:22:05 +0000 (GMT) (envelope-from barney@pit.databus.com) Received: from pit.databus.com (localhost [127.0.0.1]) by pit.databus.com (8.13.1/8.13.1) with ESMTP id i7O7M5hH017108 for ; Tue, 24 Aug 2004 03:22:05 -0400 (EDT) (envelope-from barney@pit.databus.com) Received: (from barney@localhost) by pit.databus.com (8.13.1/8.13.1/Submit) id i7O7M5fm017107 for ports@freebsd.org; Tue, 24 Aug 2004 03:22:05 -0400 (EDT) (envelope-from barney) Date: Tue, 24 Aug 2004 03:22:05 -0400 From: Barney Wolff To: ports@freebsd.org Message-ID: <20040824072205.GA54071@pit.databus.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.6i X-Scanned-By: MIMEDefang 2.44 Subject: make index fails X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 07:22:06 -0000 The french/mozilla-flp includes /usr/ports/www/mozex/Makefile.xpi, which has a dangerous technique for finding the name of the mozilla port - it picks the first directory under /usr/X11R6/lib that contains a mozilla-bin. But a poor user (such as myself :) may have put a backup copy of mozilla there, when having trouble updating it, under an arbitrary name. In my case, I had mozilla-gtk2 there dating from back when that was one of the mozilla portnames. But since /usr/ports/www/mozilla-gtk2 no longer exists, make index fails. mozex & french/mozilla-flp might also fail, but I didn't try them. (rm -rf /usr/X11R6/lib/mozilla-gtk2 allowed make index to complete.) Is there a reason INDEX and INDEX-5 are no longer updated ~ once a month? I don't recall hearing about it on -current or -stable, and don't subscribe to -ports. Will there be an INDEX-6? Thanks, Barney From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 07:22:48 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E40E16A4CF for ; Tue, 24 Aug 2004 07:22:48 +0000 (GMT) Received: from host1-111.pool80117.interbusiness.it (host1-111.pool80117.interbusiness.it [80.117.111.1]) by mx1.FreeBSD.org (Postfix) with SMTP id AE08843D46 for ; Tue, 24 Aug 2004 07:22:46 +0000 (GMT) (envelope-from sergio@softshark.org) Received: (qmail 47789 invoked by uid 0); 24 Aug 2004 07:19:35 -0000 Date: 24 Aug 2004 07:19:35 -0000 Message-ID: <20040824071935.47788.qmail@host1-111.pool80117.interbusiness.it> To: FreeBSD-gnats-submit@freebsd.org From: Sergio Mangialardi X-send-pr-version: 3.113 X-GNATS-Notify: cc: ports@FreeBSD.org Subject: [PATCH] devel/ddd: update to 3.3.9, take maintainership X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 07:22:48 -0000 >Submitter-Id: current-users >Originator: Sergio Mangialardi >Organization: >Confidential: no >Synopsis: [PATCH] devel/ddd: update to 3.3.9, take maintainership >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Environment: System: FreeBSD ainu.softshark.home 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #10: Sun Jul 4 01:51:04 CEST >Description: Update devel/ddd to 3.3.9 version I ask your permission to mantain this port. Removed file(s): - files/extra-patch-configure-gcc33 - files/patch-ddd::Ddd.in Port maintainer (ports@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- ddd-3.3.9.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/ddd.old/Makefile /usr/ports/devel/ddd/Makefile --- /usr/ports/devel/ddd.old/Makefile Tue Aug 17 15:45:08 2004 +++ /usr/ports/devel/ddd/Makefile Tue Aug 24 09:16:50 2004 @@ -7,12 +7,12 @@ # PORTNAME= ddd -PORTVERSION= 3.3.8 +PORTVERSION= 3.3.9 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} -MASTER_SITE_SUBDIR= ddd +MASTER_SITE_SUBDIR= ${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sergio@softshark.org COMMENT= Data Display Debugger -- a common graphical front-end for GDB/DBX/XDB LIB_DEPENDS= iberty.1:${PORTSDIR}/devel/freelibiberty @@ -26,7 +26,7 @@ CFLAGS+= -Wno-deprecated CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -CONFIGURE_ENV= CPPFLAGS='-I${LOCALBASE}/include/freelibiberty ${CPPFLAGS} -fpermissive' \ +CONFIGURE_ENV= CPPFLAGS='-I${LOCALBASE}/include/freelibiberty ${CPPFLAGS}' \ LDFLAGS='${LDFLAGS}' CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --with-motif-libraries="${LIBXMDIR}" \ @@ -39,6 +39,7 @@ doc/html/ddd.html doc/ddd-paper.ps \ doc/ddd-themes.ps doc/ddd.ps \ doc/ddd-themes.pdf doc/ddd.pdf +INFO= ddd ddd-themes .if defined(MOTIFLIB) .if defined(MOTIF_STATIC) @@ -51,18 +52,6 @@ .endif .include - -# DDD builds with either GCC 3.1, GCC 3.2 or GCC 3.3 -# Use 3.1 or 3.2 if it is available with base system -# Otherwise, default to 3.3 -.if ${OSVERSION} >= 500035 && ${OSVERSION} <= 500038 -USE_GCC=3.1 -.elif ${OSVERSION} > 500038 && ${OSVERSION} < 501103 -USE_GCC=3.2 -.else -USE_GCC=3.3 -EXTRA_PATCHES+= ${FILESDIR}/extra-patch-configure-gcc33 -.endif pre-patch: @${RM} -fv ${WRKSRC}/ddd/ddd.info* diff -ruN --exclude=CVS /usr/ports/devel/ddd.old/distinfo /usr/ports/devel/ddd/distinfo --- /usr/ports/devel/ddd.old/distinfo Sun Aug 22 06:02:22 2004 +++ /usr/ports/devel/ddd/distinfo Tue Aug 24 08:36:33 2004 @@ -1,2 +1,2 @@ -MD5 (ddd-3.3.8.tar.gz) = 60c5bfbfe1564926edda629ffcf01e52 -SIZE (ddd-3.3.8.tar.gz) = 8606382 +MD5 (ddd-3.3.9.tar.gz) = acfca53c62507795f4ceb355cb34e2a2 +SIZE (ddd-3.3.9.tar.gz) = 8238347 diff -ruN --exclude=CVS /usr/ports/devel/ddd.old/files/extra-patch-configure-gcc33 /usr/ports/devel/ddd/files/extra-patch-configure-gcc33 --- /usr/ports/devel/ddd.old/files/extra-patch-configure-gcc33 Fri Jun 25 06:09:16 2004 +++ /usr/ports/devel/ddd/files/extra-patch-configure-gcc33 Thu Jan 1 01:00:00 1970 @@ -1,10 +0,0 @@ ---- configure.orig Fri Apr 9 15:32:46 2004 -+++ configure Fri Apr 9 15:33:05 2004 -@@ -4871,6 +4871,7 @@ - #line $LINENO "configure" - #include "confdefs.h" - #include -+#include - #ifdef F77_DUMMY_MAIN - # ifdef __cplusplus - extern "C" diff -ruN --exclude=CVS /usr/ports/devel/ddd.old/files/patch-configure /usr/ports/devel/ddd/files/patch-configure --- /usr/ports/devel/ddd.old/files/patch-configure Mon Mar 29 07:34:39 2004 +++ /usr/ports/devel/ddd/files/patch-configure Tue Aug 24 08:36:33 2004 @@ -1,20 +1,20 @@ ---- configure.orig Wed Oct 22 15:29:40 2003 -+++ configure Fri Feb 27 13:33:02 2004 -@@ -3811,7 +3811,7 @@ - RANLIB="$ac_cv_prog_RANLIB" - fi +--- configure.orig Thu Aug 19 19:58:54 2004 ++++ configure Thu Aug 19 20:08:09 2004 +@@ -3009,7 +3009,7 @@ + + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' -for ac_prog in 'bison -y' byacc +for ac_prog in byacc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -@@ -23156,7 +23156,7 @@ +@@ -35756,7 +35756,7 @@ _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | -- egrep "${ice_re_word}ioctl *\(" >/dev/null 2>&1; then -+ egrep "${ice_re_word}\(?ioctl\)? *\(" >/dev/null 2>&1; then +- $EGREP "${ice_re_word}ioctl *$ice_re_params\(\(" >/dev/null 2>&1; then ++ $EGREP "${ice_re_word}\(?ioctl\?) *$ice_re_params\(\(" >/dev/null 2>&1; then ice_cv_have_ioctl_decl=yes fi rm -f conftest* diff -ruN --exclude=CVS /usr/ports/devel/ddd.old/files/patch-ddd::Ddd.in /usr/ports/devel/ddd/files/patch-ddd::Ddd.in --- /usr/ports/devel/ddd.old/files/patch-ddd::Ddd.in Mon Mar 29 07:34:39 2004 +++ /usr/ports/devel/ddd/files/patch-ddd::Ddd.in Thu Jan 1 01:00:00 1970 @@ -1,12 +0,0 @@ ---- ddd/Ddd.in.orig Wed Oct 22 15:25:51 2003 -+++ ddd/Ddd.in Fri Feb 27 13:33:02 2004 -@@ -284,7 +284,8 @@ - - - ! Paper size, in format WIDTH x HEIGHT. (Default: A4). --@Ddd@*paperSize: 210mm x 297mm -+!@Ddd@*paperSize: 210mm x 297mm -+@Ddd@*paperSize: 8.5" x 11" - - - diff -ruN --exclude=CVS /usr/ports/devel/ddd.old/files/patch-ddd::LiterateA.C /usr/ports/devel/ddd/files/patch-ddd::LiterateA.C --- /usr/ports/devel/ddd.old/files/patch-ddd::LiterateA.C Mon Mar 29 07:34:39 2004 +++ /usr/ports/devel/ddd/files/patch-ddd::LiterateA.C Tue Aug 24 08:36:33 2004 @@ -1,6 +1,6 @@ ---- ddd/LiterateA.C.orig Sat May 24 11:27:03 2003 -+++ ddd/LiterateA.C Fri Feb 27 13:33:02 2004 -@@ -220,8 +220,12 @@ +--- ddd/LiterateA.C.orig Thu Aug 19 20:16:55 2004 ++++ ddd/LiterateA.C Thu Aug 19 20:23:49 2004 +@@ -216,8 +216,12 @@ int flags = fcntl(fileno(fp), F_GETFL, 0); if (flags == -1) _raiseIOWarning("cannot get file descriptor status flags"); @@ -8,14 +8,14 @@ - _raiseIOWarning("cannot set file to non-blocking mode"); + if (fcntl(fileno(fp), F_SETFL, flags | O_NONBLOCK) == -1) { +#if defined(__FreeBSD__) -+ if(errno != EAGAIN) ++ if(errno != EAGAIN) +#endif + _raiseIOWarning("cannot set file to non-blocking mode"); + } #endif // Read stuff -@@ -255,8 +259,12 @@ +@@ -251,8 +255,12 @@ #if HAVE_FCNTL && defined(F_SETFL) // Reset file state @@ -23,7 +23,7 @@ - _raiseIOWarning("cannot restore file mode"); + if (fcntl(fileno(fp), F_SETFL, flags) == -1) { +#if defined(__FreeBSD__) -+ if(errno != EAGAIN) ++ if(errno != EAGAIN) +#endif + _raiseIOWarning("cannot restore file mode"); + } diff -ruN --exclude=CVS /usr/ports/devel/ddd.old/files/patch-ddd::Makefile.in /usr/ports/devel/ddd/files/patch-ddd::Makefile.in --- /usr/ports/devel/ddd.old/files/patch-ddd::Makefile.in Mon Mar 29 07:34:39 2004 +++ /usr/ports/devel/ddd/files/patch-ddd::Makefile.in Tue Aug 24 08:36:33 2004 @@ -1,11 +1,11 @@ ---- ddd/Makefile.in.orig Wed Oct 22 15:29:49 2003 -+++ ddd/Makefile.in Fri Feb 27 13:33:02 2004 -@@ -2170,7 +2170,7 @@ - && $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) \ - `echo $< | sed 's,.*/,,'` - +--- ddd/Makefile.in.orig Thu Aug 19 20:39:55 2004 ++++ ddd/Makefile.in Thu Aug 19 20:40:10 2004 +@@ -469,7 +469,7 @@ + LPR = @LPR@ + LTLIBOBJS = @LTLIBOBJS@ + M4 = @M4@ -MAKEINFO = @MAKEINFO@ +MAKEINFO = @MAKEINFO@ --no-split - TEXI2DVI = texi2dvi - - uninstall-info-am: + MINIMAL_TOC = @MINIMAL_TOC@ + NICKNAME = @NICKNAME@ + OBJEXT = @OBJEXT@ diff -ruN --exclude=CVS /usr/ports/devel/ddd.old/files/patch-ddd::TTYAgent.C /usr/ports/devel/ddd/files/patch-ddd::TTYAgent.C --- /usr/ports/devel/ddd.old/files/patch-ddd::TTYAgent.C Mon Mar 29 07:34:39 2004 +++ /usr/ports/devel/ddd/files/patch-ddd::TTYAgent.C Tue Aug 24 08:36:33 2004 @@ -1,6 +1,6 @@ ---- ddd/TTYAgent.C.orig Sat May 24 11:27:05 2003 -+++ ddd/TTYAgent.C Fri Feb 27 13:33:02 2004 -@@ -719,8 +719,19 @@ +--- ddd/TTYAgent.C.orig Thu Aug 19 20:41:45 2004 ++++ ddd/TTYAgent.C Thu Aug 19 20:45:56 2004 +@@ -715,8 +715,19 @@ } else { @@ -8,14 +8,14 @@ if (fcntl(master, F_SETFL, flags | O_NONBLOCK) == -1) _raiseIOWarning("cannot set file to non-blocking mode"); +#else -+ do { -+ if(fcntl(master, F_SETFL, flags | O_NONBLOCK) != -1) -+ break; -+ else if(errno == EAGAIN) -+ sleep(1); -+ else -+ _raiseIOWarning("cannot set file to non-blocking mode"); -+ } while(errno == EAGAIN); ++ do { ++ if(fcntl(master, F_SETFL, flags | O_NONBLOCK) != -1) ++ break; ++ else if(errno == EAGAIN) ++ sleep(1); ++ else ++ _raiseIOWarning("cannot set file to non-blocking mode"); ++ } while(errno == EAGAIN); +#endif } #endif diff -ruN --exclude=CVS /usr/ports/devel/ddd.old/files/patch-libiberty::strerror.c /usr/ports/devel/ddd/files/patch-libiberty::strerror.c --- /usr/ports/devel/ddd.old/files/patch-libiberty::strerror.c Mon Mar 29 07:34:39 2004 +++ /usr/ports/devel/ddd/files/patch-libiberty::strerror.c Tue Aug 24 08:36:33 2004 @@ -1,5 +1,5 @@ ---- libiberty/strerror.c.orig Wed Oct 22 14:46:55 2003 -+++ libiberty/strerror.c Fri Feb 27 13:53:29 2004 +--- libiberty/strerror.c.orig Thu Aug 19 20:54:24 2004 ++++ libiberty/strerror.c Thu Aug 19 20:55:15 2004 @@ -460,6 +460,7 @@ same name, it differs from other implementations in that it is dynamically initialized rather than statically initialized. */ @@ -7,12 +7,12 @@ +#ifndef __FreeBSD__ #ifndef HAVE_SYS_ERRLIST - static int sys_nerr; -@@ -470,6 +471,7 @@ + #define sys_nerr sys_nerr__ +@@ -472,6 +473,7 @@ extern int sys_nerr; extern char *sys_errlist[]; +#endif #endif - + /* diff -ruN --exclude=CVS /usr/ports/devel/ddd.old/files/patch-libiberty::strsignal.c /usr/ports/devel/ddd/files/patch-libiberty::strsignal.c --- /usr/ports/devel/ddd.old/files/patch-libiberty::strsignal.c Mon Mar 29 07:34:39 2004 +++ /usr/ports/devel/ddd/files/patch-libiberty::strsignal.c Tue Aug 24 08:36:33 2004 @@ -1,5 +1,5 @@ ---- libiberty/strsignal.c.orig Wed Oct 22 14:46:55 2003 -+++ libiberty/strsignal.c Fri Feb 27 13:33:02 2004 +--- libiberty/strsignal.c.orig Thu Aug 19 20:58:24 2004 ++++ libiberty/strsignal.c Thu Aug 19 20:59:24 2004 @@ -241,6 +241,7 @@ same name, it differs from other implementations in that it is dynamically initialized rather than statically initialized. */ @@ -8,11 +8,12 @@ #ifndef HAVE_SYS_SIGLIST static int sys_nsig; -@@ -257,6 +258,7 @@ - #endif +@@ -258,7 +259,7 @@ extern const char * const sys_siglist[]; -+#endif #endif +- ++#endif + /* diff -ruN --exclude=CVS /usr/ports/devel/ddd.old/pkg-plist /usr/ports/devel/ddd/pkg-plist --- /usr/ports/devel/ddd.old/pkg-plist Mon Mar 29 07:34:39 2004 +++ /usr/ports/devel/ddd/pkg-plist Tue Aug 24 08:36:33 2004 @@ -1,15 +1,10 @@ bin/ddd -info/ddd.info -@exec install-info %D/info/ddd.info %D/info/dir -@unexec install-info --delete %D/info/ddd.info %D/info/dir -info/ddd-themes.info -@exec install-info %D/info/ddd-themes.info %D/info/dir -@unexec install-info --delete %D/info/ddd-themes.info %D/info/dir share/ddd-%%VERSION%%/COPYING share/ddd-%%VERSION%%/NEWS share/ddd-%%VERSION%%/ddd/Ddd share/ddd-%%VERSION%%/themes/green.vsl share/ddd-%%VERSION%%/themes/red.vsl +share/ddd-%%VERSION%%/themes/rednil.vsl share/ddd-%%VERSION%%/themes/smalltitles.vsl share/ddd-%%VERSION%%/themes/smallvalues.vsl share/ddd-%%VERSION%%/themes/suppress.vsl --- ddd-3.3.9.patch ends here --- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 07:43:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A10616A4CE for ; Tue, 24 Aug 2004 07:43:29 +0000 (GMT) Received: from host1-111.pool80117.interbusiness.it (host1-111.pool80117.interbusiness.it [80.117.111.1]) by mx1.FreeBSD.org (Postfix) with SMTP id E7E3A43D39 for ; Tue, 24 Aug 2004 07:43:27 +0000 (GMT) (envelope-from sergio@softshark.org) Received: (qmail 49028 invoked by uid 0); 24 Aug 2004 07:40:17 -0000 Date: 24 Aug 2004 07:40:17 -0000 Message-ID: <20040824074017.49027.qmail@host1-111.pool80117.interbusiness.it> To: FreeBSD-gnats-submit@freebsd.org From: Sergio Mangialardi X-send-pr-version: 3.113 X-GNATS-Notify: cc: ports@FreeBSD.org Subject: [PATCH] devel/py23-mx-experimental: update to 0.8.0, take maintainership X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 07:43:29 -0000 >Submitter-Id: current-users >Originator: Sergio Mangialardi >Organization: >Confidential: no >Synopsis: [PATCH] devel/py23-mx-experimental: update to 0.8.0, take maintainership >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 5.2.1-RELEASE-p9 i386 >Environment: System: FreeBSD ainu.softshark.home 5.2.1-RELEASE-p9 FreeBSD 5.2.1-RELEASE-p9 #10: Sun Jul 4 01:51:04 CEST >Description: Update idevel/py23-mx-experimental to 0.8.0 version. I ask your permission to mantain this port. Port maintainer (ports@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- py23-mx-experimental-0.8.0.patch begins here --- diff -ruN --exclude=CVS /usr/ports/devel/py-mx-experimental.old/Makefile /usr/ports/devel/py-mx-experimental/Makefile --- /usr/ports/devel/py-mx-experimental.old/Makefile Thu Feb 20 18:07:04 2003 +++ /usr/ports/devel/py-mx-experimental/Makefile Tue Aug 24 09:37:48 2004 @@ -7,17 +7,16 @@ # PORTNAME= mx-experimental -PORTVERSION= 0.6.0 -PORTREVISION= 2 +PORTVERSION= 0.8.0 CATEGORIES= devel python -MASTER_SITES= http://www.lemburg.com/files/python/ +MASTER_SITES= http://www.egenix.com/files/python/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= egenix-${PORTNAME}-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sergio@softshark.org COMMENT= The eGenix mx Extensions - EXPERIMENTAL Package -BUILD_DEPENDS= ${PREFIX}/include/gmp.h:${PORTSDIR}/math/libgmp4 +BUILD_DEPENDS= ${LOCALBASE}/include/gmp.h:${PORTSDIR}/math/libgmp4 RUN_DEPENDS= ${PYTHON_SITELIBDIR}/mx/BeeBase/BeeBase.py:${PORTSDIR}/lang/py-mx-base USE_REINPLACE= yes diff -ruN --exclude=CVS /usr/ports/devel/py-mx-experimental.old/distinfo /usr/ports/devel/py-mx-experimental/distinfo --- /usr/ports/devel/py-mx-experimental.old/distinfo Thu Jan 29 08:23:24 2004 +++ /usr/ports/devel/py-mx-experimental/distinfo Tue Aug 24 09:31:32 2004 @@ -1,2 +1,2 @@ -MD5 (egenix-mx-experimental-0.6.0.tar.gz) = 6e4f65d2b05af5b93d6a6b32c42834cb -SIZE (egenix-mx-experimental-0.6.0.tar.gz) = 631307 +MD5 (egenix-mx-experimental-0.8.0.tar.gz) = 89aa8e639f301530bd25bd895259c9c7 +SIZE (egenix-mx-experimental-0.8.0.tar.gz) = 638962 diff -ruN --exclude=CVS /usr/ports/devel/py-mx-experimental.old/files/patch-mx::Number::mxNumber::mxNumber.h /usr/ports/devel/py-mx-experimental/files/patch-mx::Number::mxNumber::mxNumber.h --- /usr/ports/devel/py-mx-experimental.old/files/patch-mx::Number::mxNumber::mxNumber.h Mon Nov 26 05:52:03 2001 +++ /usr/ports/devel/py-mx-experimental/files/patch-mx::Number::mxNumber::mxNumber.h Tue Aug 24 09:31:32 2004 @@ -1,6 +1,6 @@ ---- mx/Number/mxNumber/mxNumber.h.orig Mon Nov 26 12:46:34 2001 -+++ mx/Number/mxNumber/mxNumber.h Mon Nov 26 12:46:43 2001 -@@ -30,7 +30,7 @@ +--- mx/Number/mxNumber/mxNumber.h.orig Sat Aug 21 20:32:58 2004 ++++ mx/Number/mxNumber/mxNumber.h Sat Aug 21 20:33:16 2004 +@@ -29,7 +29,7 @@ #endif /* Include the GNU MP header file */ diff -ruN --exclude=CVS /usr/ports/devel/py-mx-experimental.old/files/patch-mxEXPERIMENTAL.py /usr/ports/devel/py-mx-experimental/files/patch-mxEXPERIMENTAL.py --- /usr/ports/devel/py-mx-experimental.old/files/patch-mxEXPERIMENTAL.py Mon Nov 26 05:52:03 2001 +++ /usr/ports/devel/py-mx-experimental/files/patch-mxEXPERIMENTAL.py Tue Aug 24 09:31:32 2004 @@ -1,15 +1,15 @@ ---- mxEXPERIMENTAL.py.orig Mon Nov 26 12:44:48 2001 -+++ mxEXPERIMENTAL.py Mon Nov 26 12:45:52 2001 -@@ -140,7 +140,7 @@ +--- mxEXPERIMENTAL.py.orig Sat Aug 21 20:34:49 2004 ++++ mxEXPERIMENTAL.py Sat Aug 21 20:38:15 2004 +@@ -133,7 +133,7 @@ mx_Extension('mx.Number.mxNumber.mxNumber', ['mx/Number/mxNumber/mxNumber.c'], -- include_dirs=['mx/Number/mxNumber']), -+ include_dirs=['mx/Number/mxNumber', 'LIBGMPH']), - - ] - else: -@@ -160,7 +160,6 @@ +- include_dirs=['mx/Number/mxNumber'], ++ include_dirs=['mx/Number/mxNumber', 'LIBGMPH'], + libraries=['gmp'], + optional_libraries=[('mpfr', ['gmp.h', 'mpfr.h']), + ]), +@@ -156,7 +156,6 @@ 'mx/Number/README', 'mx/Number/mxNumber/mxNumber.h', 'mx/Number/mxNumber/mxh.h', diff -ruN --exclude=CVS /usr/ports/devel/py-mx-experimental.old/pkg-descr /usr/ports/devel/py-mx-experimental/pkg-descr --- /usr/ports/devel/py-mx-experimental.old/pkg-descr Sat Nov 3 18:25:21 2001 +++ /usr/ports/devel/py-mx-experimental/pkg-descr Tue Aug 24 09:31:32 2004 @@ -1,4 +1,8 @@ -eGenix.com mx Extensions - EXPERIMENTAL Package +eGenix.com mx Extensions for Python - EXPERIMENTAL Package + +The mx Extension Series(TM) is a collection of software packages which aims at +providing professional quality add-ons for the Open Source Language Python +(see http://www.python.org). It consists of the following packages: @@ -6,3 +10,5 @@ mxTidy - Interface to HTML Tidy (HTML/XML cleanup tool) mxURL - A URL Datatype mxUID - A UID Datatype + +WWW: http://www.egenix.com/ diff -ruN --exclude=CVS /usr/ports/devel/py-mx-experimental.old/pkg-plist /usr/ports/devel/py-mx-experimental/pkg-plist --- /usr/ports/devel/py-mx-experimental.old/pkg-plist Sat Nov 3 18:25:21 2001 +++ /usr/ports/devel/py-mx-experimental/pkg-plist Tue Aug 24 09:31:32 2004 @@ -1,15 +1,6 @@ -lib/%%PYTHON_VERSION%%/site-packages/mx/Number/Doc/mxNumber.html -lib/%%PYTHON_VERSION%%/site-packages/mx/Number/Doc/mxLicense.html -lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/test.py -lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/__init__.py -lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/mxNumber.so -lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/test.pyc -lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/__init__.pyc -lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/test.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/__init__.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/mxNumber.h -lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/mxh.h lib/%%PYTHON_VERSION%%/site-packages/mx/Number/COPYRIGHT +lib/%%PYTHON_VERSION%%/site-packages/mx/Number/Doc/mxLicense.html +lib/%%PYTHON_VERSION%%/site-packages/mx/Number/Doc/mxNumber.html lib/%%PYTHON_VERSION%%/site-packages/mx/Number/LICENSE lib/%%PYTHON_VERSION%%/site-packages/mx/Number/LazyModule.py lib/%%PYTHON_VERSION%%/site-packages/mx/Number/LazyModule.pyc @@ -21,25 +12,21 @@ lib/%%PYTHON_VERSION%%/site-packages/mx/Number/__init__.py lib/%%PYTHON_VERSION%%/site-packages/mx/Number/__init__.pyc lib/%%PYTHON_VERSION%%/site-packages/mx/Number/__init__.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Doc/mxTidy.html -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Doc/mxLicense.html +lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/__init__.py +lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/__init__.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/__init__.pyo +lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/mxNumber.h +lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/mxNumber.so +lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/mxh.h +lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/test.py +lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/test.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber/test.pyo lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Doc/Overview.html +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Doc/mxLicense.html +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Doc/mxTidy.html lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Doc/pending.html lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Doc/release-notes.html lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Doc/tidy.gif -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/testWalter.py -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/test.py -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/__init__.py -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/mxTidy.so -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/testWalter.pyc -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/test.pyc -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/__init__.pyc -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/testWalter.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/test.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/__init__.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/mxTidy.h -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/mxh.h -lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/input.html lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/README lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Tidy.py lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Tidy.pyc @@ -47,18 +34,45 @@ lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/__init__.py lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/__init__.pyc lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/__init__.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/URL/Doc/mxURL.html -lib/%%PYTHON_VERSION%%/site-packages/mx/URL/Doc/mxLicense.html -lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/test.py -lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/__init__.py -lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/mxURL.so -lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/test.pyc -lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/__init__.pyc -lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/test.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/__init__.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/mxURL.h -lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/mxh.h +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/__init__.py +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/__init__.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/__init__.pyo +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/input.html +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/mxTidy.h +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/mxTidy.so +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/mxh.h +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/test.py +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/test.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/test.pyo +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/testMateusz.py +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/testMateusz.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/testMateusz.pyo +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/testWalter.py +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/testWalter.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy/testWalter.pyo +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/COPYRIGHT +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/Doc/mxLicense.html +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/Doc/mxUID.html +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/LICENSE +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/README +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/UID.py +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/UID.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/UID.pyo +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/__init__.py +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/__init__.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/__init__.pyo +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/__init__.py +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/__init__.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/__init__.pyo +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/mxUID.h +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/mxUID.so +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/mxh.h +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/test.py +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/test.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/test.pyo lib/%%PYTHON_VERSION%%/site-packages/mx/URL/COPYRIGHT +lib/%%PYTHON_VERSION%%/site-packages/mx/URL/Doc/mxLicense.html +lib/%%PYTHON_VERSION%%/site-packages/mx/URL/Doc/mxURL.html lib/%%PYTHON_VERSION%%/site-packages/mx/URL/LICENSE lib/%%PYTHON_VERSION%%/site-packages/mx/URL/LazyModule.py lib/%%PYTHON_VERSION%%/site-packages/mx/URL/LazyModule.pyc @@ -73,36 +87,27 @@ lib/%%PYTHON_VERSION%%/site-packages/mx/URL/__init__.py lib/%%PYTHON_VERSION%%/site-packages/mx/URL/__init__.pyc lib/%%PYTHON_VERSION%%/site-packages/mx/URL/__init__.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/Doc/mxUID.html -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/Doc/mxLicense.html -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/test.py -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/__init__.py -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/mxUID.so -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/test.pyc -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/__init__.pyc -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/test.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/__init__.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/mxUID.h -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID/mxh.h -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/COPYRIGHT -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/LICENSE -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/README -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/UID.py -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/UID.pyc -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/UID.pyo -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/__init__.py -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/__init__.pyc -lib/%%PYTHON_VERSION%%/site-packages/mx/UID/__init__.pyo -@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber -@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Number/Doc -@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Number -@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy -@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Doc -@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy +lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/__init__.py +lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/__init__.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/__init__.pyo +lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/mxURL.h +lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/mxURL.so +lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/mxh.h +lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/test.py +lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/test.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL/test.pyo +lib/%%PYTHON_VERSION%%/site-packages/mx/__init__.py +lib/%%PYTHON_VERSION%%/site-packages/mx/__init__.pyc +lib/%%PYTHON_VERSION%%/site-packages/mx/__init__.pyo @dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/URL/mxURL @dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/URL/Doc @dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/URL @dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/UID/mxUID @dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/UID/Doc @dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/UID -@unexec rmdir %D/lib/%%PYTHON_VERSION%%/site-packages/mx 2>/dev/null || true +@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/mxTidy +@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy/Doc +@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Tidy +@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Number/mxNumber +@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Number/Doc +@dirrm lib/%%PYTHON_VERSION%%/site-packages/mx/Number --- py23-mx-experimental-0.8.0.patch ends here --- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 08:07:30 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ADEC16A4CF for ; Tue, 24 Aug 2004 08:07:30 +0000 (GMT) Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDEAF43D1F for ; Tue, 24 Aug 2004 08:07:29 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BzWL2-0007i2-00 for ; Tue, 24 Aug 2004 10:07:28 +0200 Received: from 79.62-97-240.bkkb.no ([62.97.240.79]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 24 Aug 2004 10:07:28 +0200 Received: from jakob by 79.62-97-240.bkkb.no with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 24 Aug 2004 10:07:28 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: Jakob Breivik Grimstveit Date: Tue, 24 Aug 2004 10:07:24 +0200 Organization: BitWise Computing Lines: 49 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 8bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 79.62-97-240.bkkb.no User-Agent: Pan/0.14.2.91 (As She Crawled Across the Table) X-Face: .4qx3fwC]Zs6i@H)n4+U7@:QPR,\(Q'z[`J-C"'v:; *cy8[}d]:x,*Z6I?e8m%a~O?f1',N \1g'^='~; B3WO"RqF(tt]5<1)z%.%hqWnyM|NG}|e[zDmf=j(F*p|Tq^C#{<_FvV|P/tB4aG81S )#iIlo]%Gm<)uLyN Subject: vim-6.3.15 error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: jakob@grimstveit.no List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 08:07:30 -0000 I have had problems compiling vim-6.3.15 for quite a while now: cc -lXt -L/usr/X11R6/lib -L/usr/local/lib -o vim objects/buffer.o objects/charset.o objects/diff.o objects/digraph.o objects/edit.o objects/eval.o objects/ex_cmds.o objects/ex_cmds2.o objects/ex_docmd.o objects/ex_eval.o objects/ex_getln.o objects/fileio.o objects/fold.o objects/getchar.o objects/if_cscope.o objects/if_xcmdsrv.o objects/main.o objects/mark.o objects/memfile.o objects/memline.o objects/menu.o objects/message.o objects/misc1.o objects/misc2.o objects/move.o objects/mbyte.o objects/normal.o objects/ops.o objects/option.o objects/os_unix.o objects/pathdef.o objects/quickfix.o objects/regexp.o objects/screen.o objects/search.o objects/syntax.o objects/tag.o objects/term.o objects/ui.o objects/undo.o objects/window.o objects/gui.o objects/gui_gtk.o objects/gui_gtk_x11.o objects/pty.o objects/gui_gtk_f.o objects/gui_beval.o objects/netbeans.o objects/version.o -Wl,--export-dynamic -L/usr/local/lib -L/usr/X11R6/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -lXrandr -lXi -lXinerama -lXcursor -latk-1.0 -lgdk_pixbuf-2.0 -lm -lpangoxft-1.0 -lXft -lfreetype -lz -lXrender -lXext -lfontconfig -lpangox-1.0 -lX11 -lpango-1.0 -lgobject-2.0 -lgmodule-2.0 -lglib-2.0 -liconv -lSM -lICE -lXpm -lXt -lX11 -lXdmcp -lSM -lICE -ltermlib -liconv objects/os_unix.o: In function `get_stack_limit': objects/os_unix.o(.text+0x3d2): undefined reference to `pthread_attr_init' objects/os_unix.o(.text+0x3e6): undefined reference to `pthread_attr_get_np' objects/os_unix.o(.text+0x3fc): undefined reference to `pthread_attr_getstacksize' objects/os_unix.o(.text+0x40f): undefined reference to `pthread_attr_destroy' *** Error code 1 Stop in /usr/ports/editors/vim/work/vim63/src. *** Error code 1 Stop in /usr/ports/editors/vim/work/vim63/src. *** Error code 1 Stop in /usr/ports/editors/vim. I have just recently cvsupped my ports tree, but this did not fix it. Running 5.2.1-RELEASE-p8 Hope this helps to resolve the issue. -- Jakob Breivik Grimstveit, http://www.grimstveit.no/jakob, +47 48298152 Bruk newsergalleriet: http://www.grimstveit.no/newsergalleriet Treng du noko på CD?: http://www.grimstveit.no/jakob/burncd_no From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 08:20:01 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 562C916A4CE for ; Tue, 24 Aug 2004 08:20:01 +0000 (GMT) Received: from pfepb.post.tele.dk (pfepb.post.tele.dk [195.41.46.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4DEB43D48 for ; Tue, 24 Aug 2004 08:20:00 +0000 (GMT) (envelope-from xi@borderworlds.dk) Received: from ferengi.borderworlds.dk (ferengi.borderworlds.dk [80.166.152.7]) by pfepb.post.tele.dk (Postfix) with ESMTP id EF3C05EE03B for ; Tue, 24 Aug 2004 10:19:58 +0200 (CEST) Received: from borg.borderworlds.dk (localhost [127.0.0.1]) by ferengi.borderworlds.dk (Postfix) with ESMTP id 8D6AAB826 for ; Tue, 24 Aug 2004 10:19:57 +0200 (CEST) Received: by borg.borderworlds.dk (Postfix, from userid 1001) id 4994AB87B; Tue, 24 Aug 2004 10:19:57 +0200 (CEST) Sender: xi@borderworlds.dk To: ports@freebsd.org From: Christian Laursen Date: 24 Aug 2004 10:19:57 +0200 Message-ID: <86vff9q76a.fsf@borg.borderworlds.dk> Lines: 21 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Problem with OPTIONS, USE_PHP and bsd.port.pre.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 08:20:01 -0000 I'm trying to add two knobs to the mail/mlmmj port that I maintain. It is almost working, but I have one problem left which I can't figure out. The Makefile is here: http://borderworlds.dk/~xi/Makefile The problem is this: - USE_PHP has to come before the inclusion of bsd.port.pre.mk - WITH_PHP_WEBINTERFACE is not defined until after the inclusion of bsd.port.pre.mk Is there some way to solve this without hardcoding the php dependency which I really would like to avoid. The perl dependencies work fine and gets registered properly. Thanks in advance. -- Christian Laursen From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 11:14:53 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34F9A16A4D2 for ; Tue, 24 Aug 2004 11:14:53 +0000 (GMT) Received: from flock1.newmail.ru (morda.newmail.ru [212.48.140.150]) by mx1.FreeBSD.org (Postfix) with SMTP id 1592A43D45 for ; Tue, 24 Aug 2004 11:14:52 +0000 (GMT) (envelope-from rigkov@hotmail.ru) Received: (qmail 6511 invoked from network); 24 Aug 2004 11:03:51 -0000 Received: from unknown (HELO localhost) (rigkov@hotmail.ru@212.12.9.210) by smtpd.newmail.ru with SMTP; 24 Aug 2004 11:03:51 -0000 X-AntiVirus: Checked by Dr.Web [version: 4.31a, engine: 4.31b, virus records: 52901, updated: 1.08.2004] Date: Tue, 24 Aug 2004 15:14:47 +0400 From: Evgeniy Rigkov X-Mailer: The Bat! (v2.10.03) Business X-Priority: 3 (Normal) Message-ID: <471805841.20040824151447@hotmail.ru> To: Mikhail Teterin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: libmng-1.0.7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Evgeniy Rigkov List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 11:14:53 -0000 Hi Mikhail. Please, update this port for libmng-1.0.8. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 11:17:59 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E2F416A4D1 for ; Tue, 24 Aug 2004 11:17:59 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40C4A43D58 for ; Tue, 24 Aug 2004 11:17:59 +0000 (GMT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 87D993D3D; Tue, 24 Aug 2004 07:17:58 -0400 (EDT) From: "Dan Langille" To: Kris Kennaway Date: Tue, 24 Aug 2004 07:17:58 -0400 MIME-Version: 1.0 Message-ID: <412AEBA6.17012.839357E2@localhost> Priority: normal In-reply-to: <20040824055238.GA52583@xor.obsecurity.org> References: <412A3ED0.12730.80F02992@localhost> X-mailer: Pegasus Mail for Windows (v4.12a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: ports@freebsd.org cc: Oliver Eikemeier Subject: Re: LATEST_LINK unique or not? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 11:17:59 -0000 On 23 Aug 2004 at 22:52, Kris Kennaway wrote: > On Mon, Aug 23, 2004 at 07:00:32PM -0400, Dan Langille wrote: > > On 24 Aug 2004 at 0:37, Oliver Eikemeier wrote: > > > > > Dan Langille wrote: > > > > > > > Is LATEST_LINK supposed to be unique? It's not. There's about 201 > > > > ports which have duplicate values. > > > > > > It is, expect when NO_LATEST_LINK is set (in which case no latest link > > > exists). Did you filtr out these cases? Everything else is bug, Kris did > > > some survey AFAIK. > > > > I obtained my list from the output of "make -V LATEST_LINK" and paid > > no attention to NO_LATEST_LINK. > > > > Are you saying LATEST_LINK must be ignored if NO_LATEST_LINK is set? > > Why is this not done programatically? i.e. output an empty string. > > The only reason is because LATEST_LINK was originally used only within > bsd.port.mk in situations where NO_LATEST_LINK is tested. Perhaps > you're using it for something else now that might justify changing the > behaviour. I added the LATEST_LINK value to FreshPorts because I was told it was the name of the package. This information is now used to provide this information: To add the package: pkg_add -r bacula LATEST_LINK may also be used by other websites that wish to link to FreshPorts but have only the package name. This differs from the conventional category/port path used by FreshPorts. For example, http://beta.freshports.org/?package=bacula will redirect you to http://beta.freshports.org/sysutils/bacula/ It would be good if LATEST_LINK was empty if it was not meant to be used. However, I don't want to break existing usage if we do that. A quick check of the first two pairs of duplicates listed at http://beta.freshports.org/tmp/latest_link_duplicates.txt: [dan@polo:/usr/ports/x11-wm/afterstep] $ make -V LATEST_LINK -V NO_LATEST_LINK afterstep yes [dan@polo:/usr/ports/x11-wm/afterstep] $ cd ../afterstep-stable/ [dan@polo:/usr/ports/x11-wm/afterstep-stable] $ make -V LATEST_LINK - V NO_LATEST_LINK afterstep [dan@polo:/usr/ports/x11-wm/afterstep-stable] $ [dan@polo:/usr/ports/shells/bash1] $ make -V LATEST_LINK -V NO_LATEST_LINK bash yes [dan@polo:/usr/ports/shells/bash1] $ cd ../bash2 [dan@polo:/usr/ports/shells/bash2] $ make -V LATEST_LINK -V NO_LATEST_LINK bash [dan@polo:/usr/ports/shells/bash2] $ -- Dan Langille : http://www.langille.org/ From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 11:35:36 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8330216A4CE for ; Tue, 24 Aug 2004 11:35:36 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 307C043D1F for ; Tue, 24 Aug 2004 11:35:36 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-11.local ([172.16.0.11] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BzZaP-000IjP-JL; Tue, 24 Aug 2004 13:35:35 +0200 Date: Tue, 24 Aug 2004 13:35:39 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Dan Langille From: Oliver Eikemeier In-Reply-To: <412AEBA6.17012.839357E2@localhost> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: LATEST_LINK unique or not? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 11:35:36 -0000 Dan Langille wrote: > On 23 Aug 2004 at 22:52, Kris Kennaway wrote: > >> On Mon, Aug 23, 2004 at 07:00:32PM -0400, Dan Langille wrote: >>> On 24 Aug 2004 at 0:37, Oliver Eikemeier wrote: >>> >>>> Dan Langille wrote: >>>> >>>>> Is LATEST_LINK supposed to be unique? It's not. There's about 201 >>>>> ports which have duplicate values. >>>> >>>> It is, expect when NO_LATEST_LINK is set (in which case no latest >>>> link >>>> exists). Did you filtr out these cases? Everything else is bug, Kris >>>> did >>>> some survey AFAIK. >>> >>> I obtained my list from the output of "make -V LATEST_LINK" and paid >>> no attention to NO_LATEST_LINK. >>> >>> Are you saying LATEST_LINK must be ignored if NO_LATEST_LINK is set? >>> Why is this not done programatically? i.e. output an empty string. >> >> The only reason is because LATEST_LINK was originally used only within >> bsd.port.mk in situations where NO_LATEST_LINK is tested. Perhaps >> you're using it for something else now that might justify changing the >> behaviour. FWIIW, the real `fix' would be to require uniqueness of LATEST_LINK, even when NO_LATEST_LINK is set. I think we have more than one use for a unique package name without version number. Should I just make a patch for the tree? > I added the LATEST_LINK value to FreshPorts because I was told it was > the name of the package. This information is now used to provide > this information: To add the package: pkg_add -r bacula This is correct, but there may be situations when a package does not exist (NO_PACKAGE) or you have to specify the exact url (NO_LATEST_LINK). > LATEST_LINK may also be used by other websites that wish to link to > FreshPorts but have only the package name. This differs from the > conventional category/port path used by FreshPorts. For example, > http://beta.freshports.org/?package=bacula will redirect you to > http://beta.freshports.org/sysutils/bacula/ > > It would be good if LATEST_LINK was empty if it was not meant to be > used. However, I don't want to break existing usage if we do that. As said above: I think a global unique LATEST_LINK is beneficial, and since we already have something like this in CVSROOT-ports/modules, it shouldn't be too difficult. -Oliver From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 11:39:52 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C61D616A4CE for ; Tue, 24 Aug 2004 11:39:52 +0000 (GMT) Received: from smradoch.ath.cx (r2g224.chello.upc.cz [62.245.70.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17B9B43D46 for ; Tue, 24 Aug 2004 11:39:50 +0000 (GMT) (envelope-from neuhauser@chello.cz) Received: by isis.wad.cz (Postfix, from userid 1001) id 3EB7A1F87BED; Tue, 24 Aug 2004 09:17:58 +0200 (CEST) Date: Tue, 24 Aug 2004 09:17:58 +0200 From: Roman Neuhauser To: ports@FreeBSD.org Message-ID: <20040824071758.GA561@isis.wad.cz> Mail-Followup-To: ports@FreeBSD.org References: <412A565F.9060909@php.net> <20040823224518.4f0bc243.sheepkiller@cultdeadsheep.org> <20040823210210.GF68970@graf.pompo.net> <412A6992.9010500@php.net> <20040823221538.GK68970@graf.pompo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20040823221538.GK68970@graf.pompo.net> User-Agent: Mutt/1.5.6i Subject: Re: Maintainership over www/pear-HTTP_Upload X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 11:39:52 -0000 # thierry@FreeBSD.org / 2004-08-24 00:15:38 +0200: > Le Mar 24 ao? 04 ? 0:02:58 +0200, Antônio Carlos Venâncio Júnior > écrivait : > > There are another pear-* ports unmaintained?! ;) > > Hmm... Most of them ;-) > > find /usr/ports -type d -name "pear-*" -exec grep -H ^MAINTAINER {}/Makefile \; hey, this should've been make search name=^pear- maint=ports@freebsd.org display=path :) -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 12:35:55 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BFBA16A4CE for ; Tue, 24 Aug 2004 12:35:55 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD98C43D5A for ; Tue, 24 Aug 2004 12:35:54 +0000 (GMT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 843253D3D; Tue, 24 Aug 2004 08:35:50 -0400 (EDT) From: "Dan Langille" To: Oliver Eikemeier Date: Tue, 24 Aug 2004 08:35:50 -0400 MIME-Version: 1.0 Message-ID: <412AFDE6.28048.83DAA30C@localhost> Priority: normal In-reply-to: References: <412AEBA6.17012.839357E2@localhost> X-mailer: Pegasus Mail for Windows (v4.12a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: LATEST_LINK unique or not? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 12:35:55 -0000 On 24 Aug 2004 at 13:35, Oliver Eikemeier wrote: > Dan Langille wrote: > > > On 23 Aug 2004 at 22:52, Kris Kennaway wrote: > > > >> On Mon, Aug 23, 2004 at 07:00:32PM -0400, Dan Langille wrote: > >>> On 24 Aug 2004 at 0:37, Oliver Eikemeier wrote: > >>> > >>>> Dan Langille wrote: > >>>> > >>>>> Is LATEST_LINK supposed to be unique? It's not. There's about 201 > >>>>> ports which have duplicate values. > >>>> > >>>> It is, expect when NO_LATEST_LINK is set (in which case no latest > >>>> link > >>>> exists). Did you filtr out these cases? Everything else is bug, Kris > >>>> did > >>>> some survey AFAIK. > >>> > >>> I obtained my list from the output of "make -V LATEST_LINK" and paid > >>> no attention to NO_LATEST_LINK. > >>> > >>> Are you saying LATEST_LINK must be ignored if NO_LATEST_LINK is set? > >>> Why is this not done programatically? i.e. output an empty string. > >> > >> The only reason is because LATEST_LINK was originally used only within > >> bsd.port.mk in situations where NO_LATEST_LINK is tested. Perhaps > >> you're using it for something else now that might justify changing the > >> behaviour. > > FWIIW, the real `fix' would be to require uniqueness of LATEST_LINK, > even when NO_LATEST_LINK is set. I think we have more than one use for a > unique package name without version number. Should I just make a patch > for the tree? > > > I added the LATEST_LINK value to FreshPorts because I was told it was > > the name of the package. This information is now used to provide > > this information: To add the package: pkg_add -r bacula > > This is correct, but there may be situations when a package does not > exist (NO_PACKAGE) or you have to specify the exact url (NO_LATEST_LINK). FreshPorts is recording neither NO_PACKAGE nor NO_LATEST_LINK. I think it should. At present, the FreshPorts information supplied in the "To add the package:" field is sometimes incorrect. These additional bits will correct that. > > LATEST_LINK may also be used by other websites that wish to link to > > FreshPorts but have only the package name. This differs from the > > conventional category/port path used by FreshPorts. For example, > > http://beta.freshports.org/?package=bacula will redirect you to > > http://beta.freshports.org/sysutils/bacula/ > > > > It would be good if LATEST_LINK was empty if it was not meant to be > > used. However, I don't want to break existing usage if we do that. > > As said above: I think a global unique LATEST_LINK is beneficial, and > since we already have something like this in CVSROOT-ports/modules, it > shouldn't be too difficult. I'm assuming that whatever solution is taken, make -V will still be the method for obtaining this information. -- Dan Langille : http://www.langille.org/ From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 12:42:46 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24EBF16A4D8 for ; Tue, 24 Aug 2004 12:42:46 +0000 (GMT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.uni-dortmund.de [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id B68DC43D41 for ; Tue, 24 Aug 2004 12:42:45 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id CC83E1675EE; Tue, 24 Aug 2004 14:42:44 +0200 (CEST) Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i7OCghtk091920 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Tue, 24 Aug 2004 14:42:43 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-ports@freebsd.org Date: Tue, 24 Aug 2004 14:42:42 +0200 User-Agent: KMail/1.6.2 References: <20040824073030.C71976@hades.admin.frm2> In-Reply-To: MIME-Version: 1.0 Message-Id: <200408241442.43090.michaelnottebrock@gmx.net> Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_DfzKB366jA+F5FZ"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new cc: Mark Linimon cc: Garance A Drosihn cc: Joerg Pulz Subject: Re: net/samba3 port sorely outdated! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 12:42:46 -0000 --Boundary-02=_DfzKB366jA+F5FZ Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Tuesday 24 August 2004 08:16, Garance A Drosihn wrote: > The close request says "coordinate with the maintainer". > But /usr/ports/net/samba says: > MAINTAINER=3D ports@FreeBSD.org net/samba !=3D net/samba3 =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_DfzKB366jA+F5FZ Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBKzfDXhc68WspdLARAnRZAKCHRBkbUygbdjwg8WpD7wsFAHuqpgCfVLd0 7Q8QYrlkWlHReWZkHGxJbNM= =onMO -----END PGP SIGNATURE----- --Boundary-02=_DfzKB366jA+F5FZ-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 13:31:31 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24AFE16A4CF for ; Tue, 24 Aug 2004 13:31:31 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF9CA43D54 for ; Tue, 24 Aug 2004 13:31:30 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by mproxy.gmail.com with SMTP id 77so93337rnl for ; Tue, 24 Aug 2004 06:31:23 -0700 (PDT) Received: by 10.38.83.11 with SMTP id g11mr487153rnb; Tue, 24 Aug 2004 06:31:23 -0700 (PDT) Received: by 10.38.75.25 with HTTP; Tue, 24 Aug 2004 06:31:23 -0700 (PDT) Message-ID: <790a9fff0408240631ad94bd8@mail.gmail.com> Date: Tue, 24 Aug 2004 08:31:23 -0500 From: Scot Hetzel To: Andreas Klemm In-Reply-To: <20040822075712.GA68063@titan.klemm.apsfilter.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <20040822075712.GA68063@titan.klemm.apsfilter.org> cc: ports@freebsd.org cc: ale@freebsd.org Subject: Re: PR 69273: mysql server changes, rc-ng & FreeBSD 4.x ? -> X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Scot Hetzel List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 13:31:31 -0000 On Sun, 22 Aug 2004 09:57:12 +0200, Andreas Klemm wrote: > Hi, > > I just noticed, that I didn't get a response from maintainer (ale). > > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/69273 > > 2 things Oliver (eik@) mentioned: > - one script is not prefix clean, o.k. needs to be fixed > - problems with rc-ng style start/stop scripts with FreeBSD 4.x > > I noticed quite a few ports now using these rc-ng style scripts. > Does that mean they all don't run well on 4.x anymore ? > > I'm not sure, but do I remember right that people worked on > compatibility scripts for 4.x (maybe a port), that installs > the framework for the rc-ng scripts for 4.x ? > The rc-ng style scripts will work on 4.x, but the port needs to set USE_RC_SUBR in the Makefile. This will then pull in a dependancy on the rc_subr port for FreeBSD 4.x and below. Then the port needs to substitue ${RC_SUBR} for %%RC_SUBR%% in the startup script. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 13:54:39 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1DE216A4D2 for ; Tue, 24 Aug 2004 13:54:39 +0000 (GMT) Received: from ion.wax.nu (ion.wax.nu [217.8.136.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADABC43D5E for ; Tue, 24 Aug 2004 13:54:39 +0000 (GMT) (envelope-from anders@rethink.no) Received: from glorfindel (glorfindel.wax.nu [192.168.0.106]) by ion.wax.nu (Postfix) with SMTP id 8A2D722FF4; Tue, 24 Aug 2004 15:46:19 +0200 (CEST) Message-ID: <018101c489e2$0d527b20$6a00a8c0@glorfindel> From: "Anders Hanssen" To: "Edwin Groothuis" References: <013401c4891a$fb634b00$6a00a8c0@glorfindel> <20040824024027.GB22578@k7.mavetju> Date: Tue, 24 Aug 2004 15:55:41 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 cc: ports@freebsd.org Subject: Re: [patch] devel/sdl12 inconsistency between actual version and file/directory naming X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 13:54:40 -0000 Hi! From: "Edwin Groothuis" > In the mean time, can you send-pr these patches so I can keep > track of it? Done: ports/70900 -- Anders From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 14:16:51 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B69616A4CF; Tue, 24 Aug 2004 14:16:51 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 397B243D46; Tue, 24 Aug 2004 14:16:31 +0000 (GMT) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id i7OERqSV030780; Tue, 24 Aug 2004 11:27:53 -0300 (ART) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id i7OEFvKQ006019; Tue, 24 Aug 2004 11:15:57 -0300 (ART) (envelope-from fernan@pi.iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id i7OEFuNo006018; Tue, 24 Aug 2004 11:15:56 -0300 (ART) (envelope-from fernan) Date: Tue, 24 Aug 2004 11:15:56 -0300 (ART) Message-Id: <200408241415.i7OEFuNo006018@pi.iib.unsam.edu.ar> To: FreeBSD-gnats-submit@freebsd.org From: Fernan Aguero X-send-pr-version: 3.113 X-GNATS-Notify: cc: ports@freebsd.org Subject: x11-toolkits/tk84 is broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Fernan Aguero List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 14:16:51 -0000 >Submitter-Id: current-users >Originator: Fernan Aguero >Organization: IIB-UNSAM >Confidential: no >Synopsis: x11-toolkits/tk84 is broken >Severity: serious >Priority: medium >Category: ports >Class: change-request >Release: FreeBSD 4.10-RELEASE i386 >Environment: FreeBSD pi.iib.unsam.edu.ar 4.10-RELEASE FreeBSD 4.10-RELEASE #0: Wed May 26 12:56:43 ART 2004 fernan@pi.iib.unsam.edu.ar:/usr/obj/usr/src/sys/PI i386 >Description: x11-toolkits/tk84 is broken. AFAICS the same error is produced in FreeBSD-4.10 (see attached output) and in FreeBSD-5.2: http://lists.freebsd.org/pipermail/freebsd-ports/2004-July/013950.html The problem has already been noticed by other people. See link above and also: http://lists.freebsd.org/pipermail/freebsd-questions/2004-May/045978.html However, I've found no PR about this issue. The port is currently unmaintained, so I'm sending the PR so that committers and skilled porters see it. >How-To-Repeat: >Fix: --- tk84.out begins here --- Script started on Tue Aug 24 11:07:03 2004 pi# make clean && make ; exit ===> Cleaning for libiconv-1.9.2_1 ===> Cleaning for gettext-0.13.1_1 ===> Cleaning for gmake-3.80_2 ===> Cleaning for imake-4.4.0 ===> Cleaning for libtool-1.3.5_2 ===> Cleaning for libtool-1.5.8 ===> Cleaning for pkgconfig-0.15.0_1 ===> Cleaning for perl-5.6.1_15 ===> Cleaning for tcl-8.4.6_1,1 ===> Cleaning for freetype2-2.1.7_3 ===> Cleaning for expat-1.95.8 ===> Cleaning for fontconfig-2.2.3,1 ===> Cleaning for XFree86-libraries-4.4.0 ===> Cleaning for tk-8.4.6,1 ===> Vulnerability check disabled, database not found ===> Extracting for tk-8.4.6,1 >> Checksum OK for tk8.4.6-src.tar.gz. ===> Patching for tk-8.4.6,1 ===> Applying FreeBSD patches for tk-8.4.6,1 ===> tk-8.4.6,1 depends on file: /nonexistent - not found ===> Verifying extract for /nonexistent in /usr/ports/lang/tcl84 ===> Vulnerability check disabled, database not found ===> Extracting for tcl-8.4.6_1,1 >> Checksum OK for tcl8.4.6-src.tar.gz. ===> Returning to build of tk-8.4.6,1 ===> tk-8.4.6,1 depends on shared library: tcl84.1 - found ===> tk-8.4.6,1 depends on shared library: X11.6 - found ===> Configuring for tk-8.4.6,1 creating cache ./config.cache checking for Tcl configuration... found /usr/local/lib/tcl8.4/tclConfig.sh checking for existence of /usr/local/lib/tcl8.4/tclConfig.sh... loading checking whether to use symlinks for manpages... no checking compression for manpages... no checking for gcc... cc checking whether the C compiler (cc -O -pipe ) works... yes checking whether the C compiler (cc -O -pipe ) is a cross-compiler... no checking whether we are using GNU C... yes checking whether cc accepts -g... yes checking how to run the C preprocessor... cc -E checking for unistd.h... ^Anyes checking for limits.h... yes checking for building with threads... no (default) checking if the compiler understands -pipe... yes checking for required early compiler flags... none checking for 64-bit integer type... long long checking for struct dirent64... no checking for struct stat64... no checking for off64_t... no checking how to build libraries... shared checking for ranlib... ranlib checking if 64bit support is requested... no checking if 64bit Sparc VIS support is requested... no checking system version (for dynamic loading)... FreeBSD-4.10-RELEASE-p2 checking for dlopen in -ldl... no checking for ar... ar checking for build with symbols... no checking for sin... no checking for main in -lieee... no checking stdlib.h... yes checking fd_set and sys/select... yes checking for ANSI C header files... yes checking for mode_t... yes checking for pid_t... yes checking for size_t... yes checking for uid_t in sys/types.h... yes checking for sys/time.h... yes checking whether time.h and sys/time.h may both be included... yes checking pw_gecos in struct pwd... yes checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for main in -lXbsd... no checking for connect... yes checking for gethostbyname... yes checking for sin... (cached) no checking for main in -lieee... (cached) no checking whether char is unsigned... no checking for strtod... yes checking for Solaris2.4/Tru64 strtod bugs... ok updating cache ./config.cache creating ./config.status creating Makefile creating tkConfig.sh /usr/bin/sed -i.bak -e 's=/usr/ports=${WRKDIRPREFIX}/usr/ports=' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/tkConfig.sh ===> Building for tk-8.4.6,1 cc -pipe -c -O -pipe -Wall -Wconversion -Wno-implicit-int -fPIC -I/usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix -I/usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic -I/usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../bitmaps -I/usr/ports/lang/tcl84/work/tcl8.4.4/generic -I/usr/X11R6/include -DHAVE_UNISTD_H=1 -DHAVE_LIMITS_H=1 -DTCL_WIDE_INT_TYPE=long\ long -DSTDC_HEADERS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_PW_GECOS=1 -DTCL_NO_DEPRECATED -DUSE_TCL_STUBS /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:21, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:70: tcl.h: No such file or directory /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:72: #error Tk 8.4 must be compiled with tcl.h from Tcl 8.4 In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:24: tcl.h: No such file or directory In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:27, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkPort.h:23: tcl.h: No such file or directory In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkPort.h:34, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:27, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/../unix/tkUnixPort.h:60: tcl.h: No such file or directory In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkPort.h:34, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:27, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/../unix/tkUnixPort.h:224: tclInt.h: No such file or directory In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:21, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:140: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:204: syntax error before `ClientData' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:231: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:234: syntax error before `*' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:234: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:236: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:238: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:243: syntax error before `Tk_CustomOptionSetProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:283: syntax error before `Tcl_Obj' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:337: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:340: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:345: syntax error before `Tk_OptionParseProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:369: syntax error before `Tk_Uid' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:572: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:574: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:575: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:580: syntax error before `Tk_ClassWorldChangedProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:618: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:620: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:627: syntax error before `Tk_GeomRequestProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:687: syntax error before `Tk_Uid' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:783: syntax error before `Tk_Uid' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:794: syntax error before `ClientData' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:799: syntax error before `ClientData' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:804: syntax error before `ClientData' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:921: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:924: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:946: syntax error before `Tk_Uid' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1012: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1015: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1018: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1022: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1024: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1027: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1029: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1031: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1033: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1036: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1038: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1041: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1043: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1046: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1048: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1058: syntax error before `Tk_ItemCreateProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1063: syntax error before `Tk_ItemConfigureProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1074: syntax error before `Tk_ItemPointProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1193: syntax error before `VOID' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1220: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1224: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1226: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1229: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1231: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1232: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1235: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1250: syntax error before `Tk_ImageCreateProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1342: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1345: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1348: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1352: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1355: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1357: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1370: syntax error before `Tk_ImageFileMatchProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1395: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1397: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1425: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1428: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1432: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1434: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1455: syntax error before `Tk_GetElementSizeProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1525: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1525: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1534: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1551: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1553: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1555: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1557: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1559: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1561: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1562: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1564: syntax error before `_ANSI_ARGS_' In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk.h:1576, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:21, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:35: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:37: syntax error before `XColor' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:37: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:39: syntax error before `GC' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:42: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:47: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:52: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:56: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:61: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:65: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:69: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:73: syntax error before `Tk_CanvasTextInfo' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:73: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:76: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:80: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:83: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:86: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:90: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:93: syntax error before `double' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:95: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:98: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:103: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:103: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:108: syntax error before `Tk_Window' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:110: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:114: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:118: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:122: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:125: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:129: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:132: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:137: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:142: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:147: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:151: syntax error before `Tk_TextLayout' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:156: syntax error before `Tk_Window' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:159: syntax error before `unsigned' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:159: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:164: syntax error before `Tk_BindingTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:167: syntax error before `Tk_ErrorHandler' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:172: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:176: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:179: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:182: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:184: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:187: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:192: syntax error before `Tk_Window' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:196: syntax error before `Tk_Window' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:201: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:205: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:208: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:212: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:216: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:219: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:222: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:226: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:229: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:232: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:235: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:237: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:237: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:239: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:242: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:247: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:252: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:257: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:260: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:265: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:270: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:275: syntax error before `Tk_PhotoHandle' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:278: syntax error before `Font' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:280: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:282: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:285: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:287: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:290: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:293: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:295: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:297: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:299: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:303: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:306: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:309: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:311: syntax error before `GC' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:314: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:317: syntax error before `Tk_3DBorder' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:320: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:324: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:327: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:327: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:330: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:330: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:334: syntax error before `Pixmap' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:337: syntax error before `Pixmap' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:341: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:344: syntax error before `XColor' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:344: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:347: syntax error before `XColor' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:347: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:350: syntax error before `Colormap' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:353: syntax error before `Tk_Cursor' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:356: syntax error before `Tk_Cursor' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:362: syntax error before `Tk_Font' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:365: syntax error before `Tk_Font' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:368: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:371: syntax error before `GC' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:375: syntax error before `Tk_Image' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:384: syntax error before `Tk_ItemType' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:384: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:386: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:389: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:392: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:397: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:401: syntax error before `Pixmap' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:404: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:407: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:410: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:414: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:418: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:424: syntax error before `Visual' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:424: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:428: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:432: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:435: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:437: syntax error before `Tk_Window' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:440: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:444: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:446: syntax error before `Atom' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:449: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:453: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:457: syntax error before `Tk_Window' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:459: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:461: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:464: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:466: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:470: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:473: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:476: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:479: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:479: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:482: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:482: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:484: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:484: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:487: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:487: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:489: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:489: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:491: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:491: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:494: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:494: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:496: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:496: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:499: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:499: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:501: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:501: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:504: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:504: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:506: syntax error before `Tk_Window' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:509: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:513: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:518: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:523: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:529: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:532: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:534: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:537: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:540: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:543: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:546: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:549: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:552: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:555: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:560: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:563: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:570: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:572: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:572: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:575: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:578: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:581: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:585: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:588: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:591: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:594: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:597: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:600: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:603: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:606: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:610: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:614: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:617: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:619: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:622: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:625: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:627: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:632: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:637: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:639: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:642: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:644: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:646: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:649: syntax error before `Pixmap' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:653: syntax error before `Tk_3DBorder' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:657: syntax error before `XColor' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:657: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:661: syntax error before `Tk_Cursor' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:665: syntax error before `Tk_Font' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:668: syntax error before `Tk_OptionTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:672: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:675: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:678: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:681: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:684: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:687: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:690: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:693: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:696: syntax error before `Tk_3DBorder' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:699: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:702: syntax error before `Pixmap' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:705: syntax error before `XColor' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:705: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:708: syntax error before `Tk_Cursor' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:719: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:723: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:727: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:731: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:734: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:738: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:742: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:746: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:749: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:755: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:758: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:761: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:767: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:770: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:772: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:775: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:779: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:782: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:785: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:788: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:791: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:795: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:798: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:801: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:806: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:809: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:812: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:817: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:821: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:825: syntax error before `double' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:828: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:833: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:836: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:839: syntax error before `Tk_Window' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:843: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:847: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:850: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:853: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:856: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:860: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:866: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:869: syntax error before `Tk_StyleEngine' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:872: syntax error before `Tk_StyleEngine' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:874: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:878: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:880: syntax error before `Tk_Style' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:883: syntax error before `Tk_Style' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:886: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:888: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:888: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:890: syntax error before `Tk_Style' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:893: syntax error before `Tk_Style' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:895: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:897: syntax error before `Tk_StyledElement' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:900: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:905: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:911: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:915: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:931: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:932: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:933: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:934: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:935: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:936: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:937: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:938: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:939: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:940: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:941: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:942: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:943: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:944: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:945: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:946: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:947: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:948: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:949: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:950: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:951: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:952: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:953: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:954: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:955: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:956: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:957: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:958: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:959: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:960: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:961: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:962: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:963: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:964: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:965: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:966: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:967: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:968: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:969: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:970: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:971: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:972: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:973: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:974: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:975: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:976: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:977: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:978: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:979: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:980: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:981: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:982: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:983: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:984: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:985: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:987: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:988: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:989: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:990: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:991: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:992: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:993: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:994: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:995: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:996: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:997: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:998: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:999: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1000: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1001: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1002: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1003: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1004: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1005: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1006: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1007: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1008: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1009: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1010: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1011: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1012: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1013: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1016: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1017: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1018: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1019: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1020: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1021: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1022: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1023: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1024: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1025: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1026: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1027: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1028: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1030: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1031: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1032: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1033: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1035: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1036: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1037: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1038: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1039: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1040: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1041: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1043: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1044: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1045: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1046: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1047: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1048: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1049: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1050: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1051: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1052: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1053: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1054: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1055: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1056: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1057: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1058: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1059: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1060: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1072: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1073: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1074: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1075: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1076: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1077: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1078: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1079: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1080: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1081: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1082: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1083: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1084: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1085: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1086: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1087: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1088: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1090: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1092: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1093: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1094: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1095: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1096: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1097: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1098: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1099: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1100: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1101: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1102: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1103: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1104: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1105: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1106: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1107: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1108: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1109: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1110: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1111: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1112: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1113: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1114: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1115: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1116: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1117: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1118: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1119: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1120: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1121: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1122: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1123: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1124: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1125: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1126: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1127: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1128: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1129: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1130: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1131: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1132: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1133: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1134: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1137: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1138: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1139: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1140: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1141: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1142: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1143: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1144: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1145: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1146: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1147: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1148: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1151: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1152: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1153: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1154: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1155: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1156: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1157: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1158: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1159: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1160: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1161: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1162: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1163: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1164: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1165: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1166: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1167: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1168: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1169: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1170: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1171: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1172: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1173: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1174: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1175: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1176: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1177: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1178: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1179: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1180: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1181: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1182: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1183: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1184: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1185: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1186: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1188: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1189: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1190: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1191: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1192: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1193: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1194: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkDecls.h:1195: syntax error before `_ANSI_ARGS_' In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:45: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:48: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:72: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:129: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:138: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:172: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:198: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:210: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:274: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:284: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:294: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:337: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:363: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:373: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:435: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:441: syntax error before `Tcl_TimerToken' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:484: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:555: syntax error before `Tk_ErrorProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:576: syntax error before `Tk_EventProc' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:601: syntax error before `Tcl_Interp' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:633: syntax error before `Tcl_HashTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:648: syntax error before `CONST' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:716: syntax error before `Tk_Uid' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:757: syntax error before `ClientData' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:787: syntax error before `ClientData' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:814: syntax error before `ClientData' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:907: syntax error before `tkBorderObjType' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:907: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:908: syntax error before `tkBitmapObjType' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:908: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:909: syntax error before `tkColorObjType' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:909: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:910: syntax error before `tkCursorObjType' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:910: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:911: syntax error before `tkFontObjType' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:911: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:912: syntax error before `tkOptionObjType' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:912: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:913: syntax error before `tkStateKeyObjType' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:913: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:923: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:928: syntax error before `tkPredefBitmapTable' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:928: warning: data definition has no type or storage class In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:931, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:38: syntax error before `TkWindow' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:38: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:41: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:44: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:48: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:50: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:53: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:55: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:57: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:60: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:63: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:68: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:71: syntax error before `unsigned' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:71: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:79: syntax error before `TkCursor' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:79: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:84: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:88: syntax error before `Tk_Window' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:91: syntax error before `Time' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:93: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:95: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:97: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:101: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:103: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:108: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:113: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:113: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:116: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:118: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:121: syntax error before `TkWindow' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:121: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:124: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:126: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:128: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:130: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:132: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:132: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:137: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:141: syntax error before `TkCursor' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:141: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:144: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:144: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:147: syntax error before `TkDisplay' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:147: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:149: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:153: syntax error before `TkWindow' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:153: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:155: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:158: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:162: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:165: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:168: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:170: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:172: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:175: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:180: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:182: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:182: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:184: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:187: syntax error before `double' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:190: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:195: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:199: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:201: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:203: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:206: syntax error before `double' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:209: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:212: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:214: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:217: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:220: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:223: syntax error before `TkWindow' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:223: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:225: syntax error before `TkWindow' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:225: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:227: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:229: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:233: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:235: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:238: syntax error before `Window' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:241: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:244: syntax error before `TkDisplay' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:244: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:247: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:250: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:253: syntax error before `double' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:256: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:259: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:262: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:265: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:268: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:271: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:274: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:281: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:285: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:287: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:290: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:292: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:295: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:299: syntax error before `KeySym' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:301: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:305: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:308: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:310: syntax error before `TkWindow' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:310: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:312: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:314: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:316: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:319: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:322: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:325: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:327: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:347: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:353: syntax error before `TkDisplay' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:353: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:355: syntax error before `TkMainInfo' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:355: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:357: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:361: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:361: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:364: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:370: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:514: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:518: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:521: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:524: syntax error before `KeySym' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:527: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:529: syntax error before `TkRegion' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:532: syntax error before `TkWindow' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:532: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:535: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:537: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:539: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:556: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:558: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:560: syntax error before `Tk_Window' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:563: syntax error before `Tk_OptionSpec' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:563: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:570: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:571: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:572: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:573: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:574: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:575: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:576: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:577: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:578: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:579: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:580: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:581: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:582: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:583: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:584: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:585: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:586: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:587: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:588: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:589: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:590: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:591: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:592: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:593: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:594: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:595: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:596: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:597: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:598: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:599: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:600: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:601: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:602: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:604: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:605: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:606: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:607: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:608: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:609: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:610: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:611: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:612: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:613: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:614: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:615: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:616: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:617: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:618: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:619: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:620: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:621: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:622: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:623: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:624: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:625: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:626: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:627: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:628: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:629: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:630: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:631: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:632: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:633: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:634: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:635: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:636: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:637: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:638: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:639: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:640: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:641: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:642: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:643: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:644: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:645: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:646: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:647: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:648: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:649: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:650: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:651: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:652: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:653: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:655: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:656: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:657: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:658: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:659: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:660: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:661: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:662: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:663: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:664: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:665: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:666: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:667: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:674: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:676: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:677: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:678: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:679: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:680: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:682: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:815: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:816: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:817: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:818: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:819: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:820: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:821: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:822: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:823: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:824: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:837: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:838: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkIntDecls.h:839: syntax error before `_ANSI_ARGS_' In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:18, from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:943: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:946: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:949: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:952: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:955: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:958: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:962: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:965: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:968: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:971: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:974: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:977: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:980: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:983: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:985: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:988: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:991: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:994: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:998: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1002: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1005: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1008: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1011: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1014: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1017: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1020: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1023: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1026: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1029: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1032: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1036: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1039: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1042: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1045: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1049: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1052: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1055: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1057: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1060: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1062: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1065: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1068: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1070: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1073: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1076: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1079: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1082: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1085: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1089: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1092: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1094: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1096: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1097: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1100: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1102: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1105: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1109: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1109: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1113: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1116: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1120: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1120: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1124: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1128: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1128: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1132: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1136: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1136: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1140: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1144: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1147: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1147: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1150: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1154: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1154: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1158: syntax error before `int' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1162: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1162: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tkInt.h:1170: syntax error before `int' In file included from /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:16: /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:74: syntax error before `Tcl_HashEntry' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:94: syntax error before `TkBorder' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:94: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:95: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.h:97: syntax error before `void' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:23: syntax error before `char' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:31: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:32: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:34: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:35: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:37: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:38: syntax error before `_ANSI_ARGS_' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:50: warning: initialization makes integer from pointer without a cast /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:51: `FreeBorderObjProc' undeclared here (not in a function) /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:51: warning: excess elements in scalar initializer /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:51: warning: (near initialization for `tkBorderObjType') /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:52: `DupBorderObjProc' undeclared here (not in a function) /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:52: warning: excess elements in scalar initializer /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:52: warning: (near initialization for `tkBorderObjType') /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:53: warning: excess elements in scalar initializer /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:53: warning: (near initialization for `tkBorderObjType') /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:55: warning: excess elements in scalar initializer /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:55: warning: (near initialization for `tkBorderObjType') /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:55: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:83: syntax error before `Tcl_Interp' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:85: syntax error before `*' /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:85: warning: data definition has no type or storage class /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix/../generic/tk3d.c:87: syntax error before `{' *** Error code 1 Stop in /usr/ports/x11-toolkits/tk84/work/tk8.4.6/unix. *** Error code 1 Stop in /usr/ports/x11-toolkits/tk84. exit Script done on Tue Aug 24 11:08:29 2004 --- tk84.out ends here --- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 14:54:55 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AB9916A4CE for ; Tue, 24 Aug 2004 14:54:55 +0000 (GMT) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [80.86.187.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 144B843D53 for ; Tue, 24 Aug 2004 14:54:54 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: (qmail 15402 invoked from network); 24 Aug 2004 14:54:35 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (80.86.187.43) by avocado.salatschuessel.net with SMTP; 24 Aug 2004 14:54:35 -0000 Date: Tue, 24 Aug 2004 16:54:27 +0200 From: Oliver Lehmann To: thierry@FreeBSD.org Message-Id: <20040824165427.23c058f6.lehmann@ans-netz.de> In-Reply-To: References: X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Tue__24_Aug_2004_16_54_27_+0200_1JoZN5RZJmeTSdFu" cc: ports@freebsd.org Subject: Re: Work in progress: Helix Player. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 14:54:55 -0000 This is a multi-part message in MIME format. --Multipart=_Tue__24_Aug_2004_16_54_27_+0200_1JoZN5RZJmeTSdFu Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi Thierry, > On Aug. 24, 2004, > Thierry Thomas (Kabbale Eros) wrote: > > > >However, it's not yet ready to be committed: it builds, but some more > >work is required, and I won't have time enough to finalize it. > > > >If some testers / reviewers / hackers want to check it, it is available > >from . I need the attached patch to build it on 4.10 (world 2004-06-04) otherwise I get a "Build complete, 3 of 105 modules failed". (Problem is: getopt.h out of /usr/local/include gets included in my case- which has a conflicting definition for getopt() as unistd has - and unistd.h was included from somewhere before.) With that patch... everything compiles fine on 4.10 (But nothing tested else yet) If that's a problem on 5.3, maybe there should be a _FreeBSD >= case around. I'll tr it in some days on my 5-testbox when my OO.org builds are finished... -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ --Multipart=_Tue__24_Aug_2004_16_54_27_+0200_1JoZN5RZJmeTSdFu Content-Type: application/octet-stream; name="patch-common::runtime::pub::hlxclib::getopt.h" Content-Disposition: attachment; filename="patch-common::runtime::pub::hlxclib::getopt.h" Content-Transfer-Encoding: base64 LS0tIGNvbW1vbi9ydW50aW1lL3B1Yi9obHhjbGliL2dldG9wdC5oLm9yaWcJVHVlIEF1ZyAyNCAw NzoyMDo0NyAyMDA0CisrKyBjb21tb24vcnVudGltZS9wdWIvaGx4Y2xpYi9nZXRvcHQuaAlUdWUg QXVnIDI0IDA3OjIxOjEyIDIwMDQKQEAgLTUyLDYgKzUyLDggQEAKIAogI2lmIGRlZmluZWQoX1NP TEFSSVMpCiAjaW5jbHVkZSA8c3RkbGliLmg+CisjZWxpZiBkZWZpbmVkKF9GUkVFQlNEKQorI2lu Y2x1ZGUgPHVuaXN0ZC5oPgogI2Vsc2UKICNpbmNsdWRlIDxnZXRvcHQuaD4KICNlbmRpZgo= --Multipart=_Tue__24_Aug_2004_16_54_27_+0200_1JoZN5RZJmeTSdFu-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 17:23:56 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3DCE16A4CE for ; Tue, 24 Aug 2004 17:23:56 +0000 (GMT) Received: from amsfep20-int.chello.nl (amsfep12-int.chello.nl [213.46.243.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B28143D2F for ; Tue, 24 Aug 2004 17:23:53 +0000 (GMT) (envelope-from kwm@rainbow-runner.nl) Received: from prisma.rainbow-runner.nl ([84.119.207.55]) by amsfep20-int.chello.nlESMTP <20040824172352.UNOG8513.amsfep20-int.chello.nl@prisma.rainbow-runner.nl>; Tue, 24 Aug 2004 19:23:52 +0200 Received: by prisma.rainbow-runner.nl (Postfix, from userid 2006) id 3A7AB211B; Tue, 24 Aug 2004 19:21:50 +0200 (CEST) Received: from [192.168.1.5] (unknown [192.168.1.5]) by prisma.rainbow-runner.nl (Postfix) with ESMTP id 6D8192120; Tue, 24 Aug 2004 19:21:47 +0200 (CEST) From: Koop Mast To: "Shawn K. Quinn" In-Reply-To: <200408232106.08925.skquinn@xevious.kicks-ass.net> References: <200408232106.08925.skquinn@xevious.kicks-ass.net> Content-Type: text/plain Date: Tue, 24 Aug 2004 19:23:46 +0200 Message-Id: <1093368226.587.16.camel@heater.rainbow-runner.nl> Mime-Version: 1.0 X-Mailer: Evolution 1.5.93FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on prisma.rainbow-runner.nl X-Spam-Level: X-Spam-Status: No, hits=-4.5 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.64 cc: ports@freebsd.org Subject: Re: libtheora in graphics, not multimedia? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 17:23:56 -0000 On Mon, 2004-08-23 at 21:06 -0500, Shawn K. Quinn wrote: > Maybe this only makes sense to me, but I just now noticed libtheora is > categorized under graphics. To me, it makes more sense for video codecs > like this to be under multimedia. Or is theer something I'm missing? > This is a question that I would send to the maintainer (me in this case). I'm aware of this. After I found the dirac codec in multimedia/, I got the idea to ask for a repro-copy of libtheora to multimedia. Koop From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 17:40:48 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B3B416A4E3 for ; Tue, 24 Aug 2004 17:40:48 +0000 (GMT) Received: from pd4mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10AEC43D5D for ; Tue, 24 Aug 2004 17:40:48 +0000 (GMT) (envelope-from simuran@shaw.ca) Received: from pd2mr5so.prod.shaw.ca (pd2mr5so-qfe3.prod.shaw.ca [10.0.141.8]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.18 (built Jul 28 2003)) with ESMTP id <0I2Y00CM9ORE6P@l-daemon> for ports@freebsd.org; Tue, 24 Aug 2004 11:33:14 -0600 (MDT) Received: from pn2ml1so.prod.shaw.ca ([10.0.121.145]) by pd2mr5so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0I2Y00DOPORETJ30@pd2mr5so.prod.shaw.ca> for ports@freebsd.org; Tue, 24 Aug 2004 11:33:14 -0600 (MDT) Received: from [10.0.0.3] (S01060000b4975b41.cg.shawcable.net [68.144.95.26]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.18 (built Jul 28 2003)) with ESMTP id <0I2Y00J57ORDE5@l-daemon> for ports@freebsd.org; Tue, 24 Aug 2004 11:33:14 -0600 (MDT) Date: Tue, 24 Aug 2004 11:33:12 -0600 From: Alex Rodioukov In-reply-to: <790a9fff04081813051d14a5bb@mail.gmail.com> To: Scot Hetzel Message-id: <412B7BD8.8030508@shaw.ca> MIME-version: 1.0 Content-type: multipart/mixed; boundary=------------070207070103000306080407 X-Accept-Language: en-us, en User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) References: <43F8B995-F14A-11D8-80DC-000A95A89CC8@syspres.com> <790a9fff04081813051d14a5bb@mail.gmail.com> cc: ports@freebsd.org cc: "rtjohan@syspres.com" Subject: Re: FreeBSD Port: py23-psycopg-1.1.14 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 17:40:48 -0000 This is a multi-part message in MIME format. --------------070207070103000306080407 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit initd.org should be back on-line now. Please see attached a message from Federico. Regards, Alex --------------070207070103000306080407 Content-Type: message/rfc822; name="Attached Message" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Attached Message" Return-path: Received: from shawmail.cg.shawcable.net [24.71.223.43] by localhost with POP3 (fetchmail-6.2.5) for mail-shaw@localhost (single-drop); Tue, 24 Aug 2004 03:28:38 -0600 (MDT) Received: from pd7mr2no.prod.shaw.ca (pd7mr2no-qfe3.prod.shaw.ca [10.0.144.129]) by l-daemon (iPlanet Messaging Server 5.2 HotFix 1.18 (built Jul 28 2003)) with ESMTP id <0I2Y003RJ2AGSM@l-daemon> for simuran@shaw.ca; Tue, 24 Aug 2004 03:27:52 -0600 (MDT) Received: from pd6mi3no.prod.shaw.ca ([10.0.149.176])(built Mar 15 2004)) with ESMTP id <0I2Y00KYL2AFB1N0@pd7mr2no.prod.shaw.ca> for simuran@shaw.ca (ORCPT simuran@shaw.ca); Tue, 24 Aug 2004 03:27:52 -0600 (MDT) Received: from lamu.initd.org (dana.initd.org [81.208.30.141]) by l-daemon (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0I2Y00A2M2AFFA00@l-daemon> for simuran@shaw.ca; Tue, 24 Aug 2004 03:27:51 -0600 (MDT) Received: from lamu.initd.org (localhost [127.0.0.1]) by lamu.initd.org (Postfix) with ESMTP id A64EF1F5306; Tue, 24 Aug 2004 11:26:30 +0200 (CEST) Received: by lamu.initd.org (Postfix, from userid 1000) id 8F2171F52EC; Tue, 24 Aug 2004 11:26:22 +0200 (CEST) Date: Tue, 24 Aug 2004 11:26:22 +0200 From: Federico Di Gregorio Subject: [Psycopg-announce] Re: [Psycopg] Re: ANNOUNCE: psycopg 1.1.15 In-reply-to: Sender: psycopg-announce-bounces@lists.initd.org To: Paul Smith Cc: psycopg-announce@lists.initd.org, psycopg@lists.initd.org Errors-to: psycopg-announce-bounces@lists.initd.org Reply-to: psycopg@lists.initd.org Message-id: <20040824092622.GA29363@initd.org> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii Content-disposition: inline Precedence: list X-BeenThere: psycopg-announce@lists.initd.org Delivered-to: psycopg-announce@lists.initd.org User-Agent: Mutt/1.3.28i X-Original-To: psycopg-announce@lists.initd.org References: <1091139297.3187.22.camel@localhost> X-Mailman-Version: 2.1.4 List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: List-Help: List-Id: "psycopg announces." Original-recipient: rfc822;simuran@shaw.ca X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on bismark.io.sys X-Spam-Status: No, hits=-4.3 required=5.0 tests=BAYES_00,FAKE_HELO_SHAW_CA autolearn=no version=2.64 X-Spam-Level: Scavenging the mail folder uncovered Paul Smith's letter: > The site appears to be down (certainly for the last 36 hours that I've > been trying to get this). Anyone know if it's coming back?! big crash and the hosting site was not accessible the two middle weeks of august. also, i was on holiday without network connection (not that that would have changed the situation.) everything should be back from yesterday. ciao, federico -- Federico Di Gregorio Debian GNU/Linux Developer & Italian Press Contact fog@debian.org Those who do not study Lisp are doomed to reimplement it. Poorly. -- from Karl M. Hegbloom .signature _______________________________________________ Psycopg-announce mailing list Psycopg-announce@lists.initd.org http://lists.initd.org/mailman/listinfo/psycopg-announce --------------070207070103000306080407-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 18:15:07 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF96616A4D0 for ; Tue, 24 Aug 2004 18:15:07 +0000 (GMT) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [80.86.187.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCE4F43D3F for ; Tue, 24 Aug 2004 18:15:06 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: (qmail 19597 invoked from network); 24 Aug 2004 18:14:50 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (80.86.187.43) by avocado.salatschuessel.net with SMTP; 24 Aug 2004 18:14:50 -0000 Date: Tue, 24 Aug 2004 20:15:04 +0200 From: Oliver Lehmann To: thierry@FreeBSD.org Message-Id: <20040824201504.2349426f.lehmann@ans-netz.de> In-Reply-To: <20040824165427.23c058f6.lehmann@ans-netz.de> References: <20040824165427.23c058f6.lehmann@ans-netz.de> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: Work in progress: Helix Player. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 18:15:07 -0000 Oliver Lehmann wrote: > Hi Thierry, > > > On Aug. 24, 2004, > > Thierry Thomas (Kabbale Eros) wrote: > > > > > >However, it's not yet ready to be committed: it builds, but some more > > >work is required, and I won't have time enough to finalize it. > > > > > >If some testers / reviewers / hackers want to check it, it is > > >available from > > >. > > I need the attached patch to build it on 4.10 (world 2004-06-04) > otherwise I get a "Build complete, 3 of 105 modules failed". (Problem > is: getopt.h With that patch it builds fine - even with gcc 2.95.4 on my 4.10 box - so i think use_gcc isn't required? [...] $Id: umake.py,v 1.43 2004/07/07 22:17:43 hubbe Exp $ C Compiler: cc Using builtin specs. gcc version 2.95.4 20020320 [FreeBSD] C++ Compiler: c++ Using builtin specs. gcc version 2.95.4 20020320 [FreeBSD] [...] MD5 (debug/wbmprendlib.a).............8ae271fb07dff6aa0a0b0fb7cccd402c MD5 (debug/xmllib.a)..................871e436f18666fab90b96a90e571ad2d MD5 (debug/zlib.a)....................eb4526fe37cf1232e12fd2f8a72df648 Build complete, 0 of 105 modules failed. -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 18:56:23 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1CFC16A4CE for ; Tue, 24 Aug 2004 18:56:23 +0000 (GMT) Received: from sccmmhc92.asp.att.net (sccmmhc92.asp.att.net [204.127.203.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id A516443D31 for ; Tue, 24 Aug 2004 18:56:23 +0000 (GMT) (envelope-from stephen@math.missouri.edu) Received: from [10.0.0.3] (12-216-240-169.client.mchsi.com[12.216.240.169]) by sccmmhc92.asp.att.net (sccmmhc92) with ESMTP id <20040824185622m920082adse>; Tue, 24 Aug 2004 18:56:22 +0000 Message-ID: <412B8F55.1060500@math.missouri.edu> Date: Tue, 24 Aug 2004 13:56:21 -0500 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040818 X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org, Lars.Koeller@Uni-Bielefeld.DE Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: single precision fftw wanted X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 18:56:24 -0000 Dear Lars and ports, I am interested in creating a port for gromacs (http://www.gromacs.org) and it requires fftw built using single precision. The super-easy way is to create a port sfftw which is a copy of fftw with a line like CONFIGURE_ARGS+= --enable-float --enable-type-prefix added in. Or I could add some kind of option to fftw. Anyway, since Lars is the maintainer of fftw I would like to coordinate with him about it. And I am copying this to ports as well just in case anyone else has suggestions. Best, Stephen From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 19:31:06 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CE7116A4CE for ; Tue, 24 Aug 2004 19:31:06 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id D337B43D1D for ; Tue, 24 Aug 2004 19:31:05 +0000 (GMT) (envelope-from rbgarga@gmail.com) Received: by mproxy.gmail.com with SMTP id 77so108218rnl for ; Tue, 24 Aug 2004 12:30:56 -0700 (PDT) Received: by 10.38.15.69 with SMTP id 69mr1039866rno; Tue, 24 Aug 2004 12:30:56 -0700 (PDT) Received: by 10.38.209.54 with HTTP; Tue, 24 Aug 2004 12:30:56 -0700 (PDT) Message-ID: <747dc8f30408241230699c883b@mail.gmail.com> Date: Tue, 24 Aug 2004 16:30:56 -0300 From: Renato Botelho To: ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: qmail + spamcontrol port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Renato Botelho List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 19:31:06 -0000 Hi All, Spamcontrol is a collect of patches mainteined by Erwin Hoffman, you can find it on the project site http://www.fehcom.de/qmail/spamcontrol.html I=B4m a qmail user and use spamcontrol on all my boxes running qmail, and I think the installation and update proccess is so hard, it could be simplified creating a new qmail=B4s slave port, mail/qmail-spamcontrol. I want to create and maintain it, so, I don=B4t want to make this work before know your opinions about it. If you approve my idea, I=B4ll start the work right now. Thanks a lot --=20 Renato Botelho ICQ: 54596223 AIM: RBGargaBR From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 19:35:18 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3437116A4D0 for ; Tue, 24 Aug 2004 19:35:18 +0000 (GMT) Received: from daphne.michaelchaney.com (mail.michaelchaney.com [207.65.84.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id C584243D1D for ; Tue, 24 Aug 2004 19:35:17 +0000 (GMT) (envelope-from bandix@home.funnyvalentine.net) Received: from adsl-065-007-237-012.sip.bna.bellsouth.net (home.funnyvalentine.net) [65.7.237.12] by daphne.michaelchaney.com with esmtp (Exim 4.20 #1 (FreeBSD)) id 1Bzh40-000Jsl-KA; Tue, 24 Aug 2004 14:34:36 -0500 Received: from home.funnyvalentine.net (p6wlanxpv64ed0fi@dallben [127.0.0.1]) i7OJYZrH087725; Tue, 24 Aug 2004 14:34:35 -0500 (CDT) (envelope-from bandix@home.funnyvalentine.net) Received: (from bandix@localhost) by home.funnyvalentine.net (8.12.10/8.12.10/Submit) id i7OJYY88087724; Tue, 24 Aug 2004 14:34:34 -0500 (CDT) (envelope-from bandix) Date: Tue, 24 Aug 2004 14:34:34 -0500 From: "Brandon D. Valentine" To: Oliver Eikemeier Message-ID: <20040824193434.GC86834@brandon.dvalentine.com> References: <412AEBA6.17012.839357E2@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i X-MailScanner-Information: Please see http://www.michaelchaney.com/mail/spam.php for more information X-MailScanner: Found to be clean X-MailScanner-SpamCheck: not spam, SpamAssassin (score=-4.9, required 3.5, autolearn=not spam, BAYES_00 -4.90) X-MailScanner-From: bandix@home.funnyvalentine.net cc: ports@freebsd.org cc: Dan Langille cc: Kris Kennaway Subject: Re: LATEST_LINK unique or not? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 19:35:18 -0000 On Tue, Aug 24, 2004 at 01:35:39PM +0200, Oliver Eikemeier wrote: > FWIIW, the real `fix' would be to require uniqueness of LATEST_LINK, > even when NO_LATEST_LINK is set. I think we have more than one use for a > unique package name without version number. Should I just make a patch > for the tree? > > As said above: I think a global unique LATEST_LINK is beneficial, and > since we already have something like this in CVSROOT-ports/modules, it > shouldn't be too difficult. I think this is a great idea and appreciated Kris's crackdown on it several months ago, even setting LATEST_LINK for my ports that don't actually build packages, thus never using LATEST_LINK, with the anticipation that LATEST_LINK is becoming a defacto unique identifier. So let me cheer you on here if you're suggesting that portmgr officially require all ports to have a globally unique name. I've always been a little uncomfortable with the name LATEST_LINK for the globally unique identifier of a package though. There is a UNIQUENAME in ports right now, used currently to define OPTIONSFILE, but nowhere else. LATEST_LINK is currently only used to define UNIQUENAME and then in targets which deal directly with the creation of actual package Latest links. I understand why these two variables interrelate in this way given how long LATEST_LINK has been around and how briefly UNIQUENAME has been around. If portmgr is going to formally encourage unique package identifiers though, I'd like to ask that they also consider reversing this relationship. In other words, for ports which don't set UNIQUENAME, but do set LATEST_LINK, i.e. every port currently in the tree, set UNIQUENAME to LATEST_LINK. Going forward discourage porters from using LATEST_LINK in favor of UNIQUENAME, and for ports which define UNIQUENAME but not LATEST_LINK, set LATEST_LINK to UNIQUENAME. This way, if in the future if you want to change the usage of LATEST_LINK or the architecture of the package repository the mechanisms used to create the PKGLATESTREPOSITORY are independent of the unique identifier of the port, which should almost never change. It might even be desirable at some point to do an s/LATEST_LINK/UNIQUENAME/ on the ports Makefiles. Aesthetic concern I know, and LATEST_LINK certainly works, but you might make the purpose behind setting this variable more obvious to porters if it was called UNIQUENAME and you would detangle the PKGLATESTREPOSITORY magic from the UNIQUENAME, which really shouldn't be tied up in it. Brandon D. Valentine -- brandon@dvalentine.com http://www.geekpunk.net Pseudo-Random Googlism: beer is a labor of love for little snoqualmie brewery From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 19:47:06 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64CE616A4D1 for ; Tue, 24 Aug 2004 19:47:06 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id D961943D46 for ; Tue, 24 Aug 2004 19:47:05 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id 97BBD763D; Tue, 24 Aug 2004 21:47:02 +0200 (CEST) Date: Tue, 24 Aug 2004 21:47:02 +0200 From: Thierry Thomas To: Oliver Lehmann Message-ID: <20040824194702.GF3504@graf.pompo.net> Mail-Followup-To: Oliver Lehmann , ports@freebsd.org References: <20040824165427.23c058f6.lehmann@ans-netz.de> <20040824201504.2349426f.lehmann@ans-netz.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20040824201504.2349426f.lehmann@ans-netz.de> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: ports@freebsd.org Subject: Re: Work in progress: Helix Player. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 19:47:06 -0000 Le Mar 24 aoû 04 à 20:15:04 +0200, Oliver Lehmann écrivait : > C++ Compiler: c++ > Using builtin specs. > gcc version 2.95.4 20020320 [FreeBSD] > [...] > MD5 (debug/wbmprendlib.a).............8ae271fb07dff6aa0a0b0fb7cccd402c > MD5 (debug/xmllib.a)..................871e436f18666fab90b96a90e571ad2d > MD5 (debug/zlib.a)....................eb4526fe37cf1232e12fd2f8a72df648 > > Build complete, 0 of 105 modules failed. Thanks Oliver, but on my 4.10-STABLE it still fails if I remove USE_GCC= 3.3. It chokes on datatype/image/jpg/common/pub/ijglwrap.h at line #82 struct BufferListSrcMgr { struct jpeg_source_mgr m_cPubSrcMgr; // IJGL source manager GList m_cBufferList; // List of IHXBuffers ^--- GList is a class defined in datatype/image/common/pub/glist.h and it chokes at this point. With gcc-3.3 everything is OK. -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 19:47:20 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1B5A16A4CE for ; Tue, 24 Aug 2004 19:47:20 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAA7243D58 for ; Tue, 24 Aug 2004 19:47:20 +0000 (GMT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 164F33D3D; Tue, 24 Aug 2004 15:47:20 -0400 (EDT) From: "Dan Langille" To: "Brandon D. Valentine" Date: Tue, 24 Aug 2004 15:47:20 -0400 MIME-Version: 1.0 Message-ID: <412B6308.495.E10342@localhost> Priority: normal In-reply-to: <20040824193434.GC86834@brandon.dvalentine.com> References: X-mailer: Pegasus Mail for Windows (v4.12a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: LATEST_LINK unique or not? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 19:47:21 -0000 On 24 Aug 2004 at 14:34, Brandon D. Valentine wrote: > On Tue, Aug 24, 2004 at 01:35:39PM +0200, Oliver Eikemeier wrote: > > FWIIW, the real `fix' would be to require uniqueness of LATEST_LINK, > > even when NO_LATEST_LINK is set. I think we have more than one use for a > > unique package name without version number. Should I just make a patch > > for the tree? > > > > As said above: I think a global unique LATEST_LINK is beneficial, and > > since we already have something like this in CVSROOT-ports/modules, it > > shouldn't be too difficult. > > I think this is a great idea and appreciated Kris's crackdown on it > several months ago, even setting LATEST_LINK for my ports that don't > actually build packages, thus never using LATEST_LINK, with the > anticipation that LATEST_LINK is becoming a defacto unique identifier. > So let me cheer you on here if you're suggesting that portmgr officially > require all ports to have a globally unique name. FWIW, FreshPorts can easily add a LATEST_LINK unique test to its existing suite of sanity checks. For that matter, if anyone wants any particular test added to the suite, just define it, and it will be added. -- Dan Langille : http://www.langille.org/ From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 20:13:36 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 632E716A4CE for ; Tue, 24 Aug 2004 20:13:36 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B7F843D48 for ; Tue, 24 Aug 2004 20:13:36 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id 011DE763D; Tue, 24 Aug 2004 22:13:32 +0200 (CEST) Date: Tue, 24 Aug 2004 22:13:32 +0200 From: Thierry Thomas To: ports@FreeBSD.org Message-ID: <20040824201332.GH3504@graf.pompo.net> Mail-Followup-To: ports@FreeBSD.org References: <412A565F.9060909@php.net> <20040823224518.4f0bc243.sheepkiller@cultdeadsheep.org> <20040823210210.GF68970@graf.pompo.net> <412A6992.9010500@php.net> <20040823221538.GK68970@graf.pompo.net> <20040824071758.GA561@isis.wad.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20040824071758.GA561@isis.wad.cz> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 Subject: Re: Maintainership over www/pear-HTTP_Upload X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 20:13:36 -0000 Le Mar 24 aoû 04 à 9:17:58 +0200, Roman Neuhauser écrivait : > > find /usr/ports -type d -name "pear-*" -exec grep -H ^MAINTAINER {}/Makefile \; > > hey, this should've been > > make search name=^pear- maint=ports@freebsd.org display=path Of course, Roman, but you don't get the same results ;-) -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 20:31:20 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 893E016A4CE; Tue, 24 Aug 2004 20:31:20 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AD1143D1F; Tue, 24 Aug 2004 20:31:10 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id i7OKgXSV042809; Tue, 24 Aug 2004 17:42:33 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id i7OKUTQr017104; Tue, 24 Aug 2004 17:30:29 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id i7OKUTlf017103; Tue, 24 Aug 2004 17:30:29 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Tue, 24 Aug 2004 17:30:28 -0300 From: Fernan Aguero To: FreeBSD Ports Message-ID: <20040824203028.GB3787@iib.unsam.edu.ar> Mail-Followup-To: FreeBSD Ports , gnome@freebsd.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline User-Agent: Mutt/1.4.1i cc: gnome@FreeBSD.ORG Subject: shared-mime-info fails to build due to missing giconv.h X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 20:31:20 -0000 --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Attached is the output generated when trying to buid this port. It seems that this problem has appeared in the past. From reading what I've found in Google it seems that there were some 'iconv hacks' that were removed and that were in somehow related to this giconv issue. However, this doesn't tell me what I need to do to solve the problem. Here: http://www.hubbo.com/archives/000934.html it's been solved by adding symlinks from giconv.h and libgiconv to their iconv equivalents. However, I don't quite like the solution. Thanks for any suggestion, Fernan PS: I'm CCing the maintainer (gnome@) PS: I don't know if this info is appropriate but ... cvsup is from last friday, glib20 (2.4.6) is up to date, iconv is up to date (2.0_3) and libiconv is at 1.7_2 (port has 1.9.2_1) -- Fernan Aguero - fernan at iib.unsam.edu.ar Phone: +54 11 4580-7255/7 ext 310, Fax: +54 11 4752-9639 Check http://genoma.unsam.edu.ar/~fernan for more info. --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="shared-mime-info.out" Script started on Tue Aug 24 17:12:29 2004 root@rho# make clean && m; exit ===> Vulnerability check disabled ===> Extracting for shared-mime-info-0.14_4 >> Checksum OK for shared-mime-info-0.14.tar.gz. ===> Patching for shared-mime-info-0.14_4 ===> Applying FreeBSD patches for shared-mime-info-0.14_4 ===> shared-mime-info-0.14_4 depends on executable: pkg-config - found ===> shared-mime-info-0.14_4 depends on file: /usr/local/bin/intltool-extract - found ===> shared-mime-info-0.14_4 depends on shared library: glib-2.0.400 - found ===> shared-mime-info-0.14_4 depends on shared library: xml2.5 - found ===> Configuring for shared-mime-info-0.14_4 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking for perl... /usr/bin/perl checking for style of include used by make... GNU checking for gcc... cc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ANSI C... none needed checking dependency style of cc... gcc checking how to run the C preprocessor... cc -E checking for egrep... grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... no checking for unistd.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for LC_MESSAGES... yes checking libintl.h usability... no checking libintl.h presence... no checking for libintl.h... no checking that pkg-config runs... yes checking that libxml-2.0 (version >= 2.4.0) is installed... yes checking that glib-2.0 (version >= 2.0.0) is installed... yes checking for gcc... (cached) cc checking whether we are using the GNU C compiler... (cached) yes checking whether cc accepts -g... (cached) yes checking for cc option to accept ANSI C... (cached) none needed checking dependency style of cc... (cached) gcc checking for an ANSI C-conforming const... yes configure: creating ./config.status config.status: creating Makefile config.status: creating shared-mime-info.pc config.status: creating po/Makefile.in config.status: creating config.h config.status: executing default-1 commands config.status: executing depfiles commands config.status: executing default-2 commands ===> Building for shared-mime-info-0.14_4 make all-recursive Making all in po source='update-mime-database.c' object='update-mime-database.o' libtool=no depfile='.deps/update-mime-database.Po' tmpdepfile='.deps/update-mime-database.TPo' depmode=gcc /bin/sh ./depcomp cc -DHAVE_CONFIG_H -I. -I. -I. -O -pipe -Wall -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings `pkg-config --cflags libxml-2.0 glib-2.0` -c `test -f 'update-mime-database.c' || echo './'`update-mime-database.c In file included from /usr/local/include/libxml2/libxml/parser.h:15, from update-mime-database.c:14: /usr/local/include/libxml2/libxml/encoding.h:30: giconv.h: No such file or directory In file included from /usr/local/include/libxml2/libxml/parser.h:15, from update-mime-database.c:14: /usr/local/include/libxml2/libxml/encoding.h:137: syntax error before `iconv_t' *** Error code 1 Stop in /usr/ports/misc/shared-mime-info/work/shared-mime-info-0.14. *** Error code 1 Stop in /usr/ports/misc/shared-mime-info/work/shared-mime-info-0.14. *** Error code 1 Stop in /usr/ports/misc/shared-mime-info/work/shared-mime-info-0.14. *** Error code 1 Stop in /usr/ports/misc/shared-mime-info. exit Script done on Tue Aug 24 17:12:54 2004 --2oS5YaxWCcQjTEyO-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 21:07:13 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 118E716A4D0; Tue, 24 Aug 2004 21:07:13 +0000 (GMT) Received: from creme-brulee.marcuscom.com (rrcs-midsouth-24-172-16-118.biz.rr.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64C4743D49; Tue, 24 Aug 2004 21:07:12 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from [10.2.1.26] (vpn-client-26.marcuscom.com [10.2.1.26]) i7OL5pp8017704; Tue, 24 Aug 2004 17:05:51 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Fernan Aguero In-Reply-To: <20040824203028.GB3787@iib.unsam.edu.ar> References: <20040824203028.GB3787@iib.unsam.edu.ar> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-DF1pFihvjkUC19JCmnIo" Organization: MarcusCom, Inc. Message-Id: <1093381550.28194.40.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 24 Aug 2004 17:07:26 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on creme-brulee.marcuscom.com cc: FreeBSD Ports cc: FreeBSD GNOME Users Subject: Re: shared-mime-info fails to build due to missing giconv.h X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 21:07:13 -0000 --=-DF1pFihvjkUC19JCmnIo Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2004-08-24 at 16:30, Fernan Aguero wrote: > Attached is the output generated when trying to buid this > port.=20 >=20 > It seems that this problem has appeared in the past. From > reading what I've found in Google it seems that there were > some 'iconv hacks' that were removed and that were in > somehow related to this giconv issue. However, this doesn't > tell me what I need to do to solve the problem. >=20 > Here: http://www.hubbo.com/archives/000934.html > it's been solved by adding symlinks from giconv.h and > libgiconv to their iconv equivalents. However, I don't quite > like the solution.=20 >=20 > Thanks for any suggestion, >=20 > Fernan >=20 > PS: I'm CCing the maintainer (gnome@) >=20 > PS: I don't know if this info is appropriate but ... cvsup > is from last friday, glib20 (2.4.6) is up to date, iconv is > up to date (2.0_3) and libiconv is at 1.7_2 (port has 1.9.2_1) I don't know how you got a giconv.h in your libxml2 encoding.h file.=20 You should probably rebuild your libxml2 port. That line should never exist. encoding.h should include iconv.h. Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-DF1pFihvjkUC19JCmnIo Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBK62ub2iPiv4Uz4cRAsBYAKCEFr0agwiY+IKtgaqc82Sl+VoUbgCaAoCG UZHmwMcJiDWy9kGU6Pf4lAo= =Kg6q -----END PGP SIGNATURE----- --=-DF1pFihvjkUC19JCmnIo-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 21:24:17 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 601C516A4CE; Tue, 24 Aug 2004 21:24:17 +0000 (GMT) Received: from kartoffel.salatschuessel.net (p5084B8A3.dip.t-dialin.net [80.132.184.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BE4543D2D; Tue, 24 Aug 2004 21:24:16 +0000 (GMT) (envelope-from lehmann@ans-netz.de) Received: from kartoffel.salatschuessel.net (localhost [127.0.0.1]) i7OLODDj006360; Tue, 24 Aug 2004 23:24:14 +0200 (CEST) (envelope-from lehmann@ans-netz.de) Date: Tue, 24 Aug 2004 23:24:13 +0200 From: Oliver Lehmann To: Thierry Thomas Message-Id: <20040824232413.584c0eb7.lehmann@ans-netz.de> In-Reply-To: <20040824194702.GF3504@graf.pompo.net> References: <20040824165427.23c058f6.lehmann@ans-netz.de> <20040824201504.2349426f.lehmann@ans-netz.de> <20040824194702.GF3504@graf.pompo.net> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: Work in progress: Helix Player. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 21:24:17 -0000 Hi Thierry, Thierry Thomas wrote: > Thanks Oliver, but on my 4.10-STABLE it still fails if I remove USE_GCC= > 3.3. It chokes on datatype/image/jpg/common/pub/ijglwrap.h at line #82 > > struct BufferListSrcMgr > { > struct jpeg_source_mgr m_cPubSrcMgr; // IJGL source manager > GList m_cBufferList; // List of IHXBuffers > ^--- > > GList is a class defined in datatype/image/common/pub/glist.h and it > chokes at this point. With gcc-3.3 everything is OK. What's exactly the error? Maybe during my or during your compile cc includes an other (glib20...) header file? because it's defined in there too /usr/local/include/glib-2.0/glib/glist.h >From what date is your stable version? -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 21:37:37 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49FEB16A4D6 for ; Tue, 24 Aug 2004 21:37:37 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDA6A43D41 for ; Tue, 24 Aug 2004 21:37:36 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id 7616F763D; Tue, 24 Aug 2004 23:37:32 +0200 (CEST) Date: Tue, 24 Aug 2004 23:37:32 +0200 From: Thierry Thomas To: Oliver Lehmann Message-ID: <20040824213732.GK3504@graf.pompo.net> Mail-Followup-To: Oliver Lehmann , ports@FreeBSD.org References: <20040824165427.23c058f6.lehmann@ans-netz.de> <20040824201504.2349426f.lehmann@ans-netz.de> <20040824194702.GF3504@graf.pompo.net> <20040824232413.584c0eb7.lehmann@ans-netz.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20040824232413.584c0eb7.lehmann@ans-netz.de> X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: ports@FreeBSD.org Subject: Re: Work in progress: Helix Player. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 21:37:37 -0000 Le Mar 24 aoû 04 à 23:24:13 +0200, Oliver Lehmann écrivait : > What's exactly the error? Maybe during my or during your compile cc > includes an other (glib20...) header file? because it's defined in there > too /usr/local/include/glib-2.0/glib/glist.h > >From what date is your stable version? Hmmm... You're right, it's a bit old. I shall upgrade it and try again. Regards, -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 21:38:56 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF28016A4CE; Tue, 24 Aug 2004 21:38:56 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59E1243D45; Tue, 24 Aug 2004 21:38:56 +0000 (GMT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 9B9F53D3D; Tue, 24 Aug 2004 17:38:55 -0400 (EDT) From: "Dan Langille" To: "Jacques A. Vidrine" Date: Tue, 24 Aug 2004 17:38:49 -0400 MIME-Version: 1.0 Message-ID: <412B7D29.31547.1472F80@localhost> Priority: normal In-reply-to: <20040822192915.GA17478@madman.celabo.org> References: <41279E59.13631.76AD2AB9@localhost> X-mailer: Pegasus Mail for Windows (v4.12a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: ports@freebsd.org cc: freebsd-vuxml@freebsd.org Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 21:38:57 -0000 On 22 Aug 2004 at 14:29, Jacques A. Vidrine wrote: > [Added freebsd-vuxml@] > > On Sat, Aug 21, 2004 at 07:11:21PM -0400, Dan Langille wrote: > > Hi folks, > > > > I'm in the early stage of incorporating VuXML information into > > FreshPorts. > > Alright! That'll be cool. > > > I have a preliminary database table design which appears > > below. If you think I've missed any essential information out of > > this design, please let me know. > > > > First: has anyone already worked on creating database tables for the > > VuXML data? > > I have an old prototype application which uses SQLite. FWIW, here is > the schema I used then. (the formatting is a little funny because this > was embedded in some other code) > > CREATE TABLE vuxml ( > vid VARCHAR PRIMARY KEY UNIQUE > , topic VARCHAR > , description VARCHAR > , discovery DATE > , entry DATE > , modified DATE > -- computed max(entry, modified) for convenience in > -- other expressions > , last DATE > ); This is pretty much identical to what I have. > > CREATE TABLE refs ( > vid VARCHAR > , type VARCHAR > , text VARCHAR > ); Ahh, yes, that repeating group. I'm not storing that. I should be > CREATE TABLE affected ( > vid VARCHAR > , type VARCHAR > ); What is this type field? I didn't follow what the affected table contains. > CREATE TABLE names ( > affected INTEGER > , name VARCHAR > ); >From your example below, the names table would have entries for mutt and ja-mutt. I think I'll do that as well. See the end of my message for how I plan to relate VuXML entries to specific ports. > CREATE TABLE ranges ( > affected INTEGER > , lowop VARCHAR > , low VARCHAR > , glow0 INTEGER > , glow1 INTEGER > , glow2 INTEGER > , glow3 INTEGER > , highop VARCHAR > , high VARCHAR > , ghigh0 INTEGER > , ghigh1 INTEGER > , ghigh2 INTEGER > , ghigh3 INTEGER > ); > > The `ranges' table perhaps looks erm interesting. In this case, > I encoded each package version number into four 32-bit integers. > This allowed one to lookup an affected package completely in SQL. > However, the encoding I used may now be incorrect in some ways, since > pkg_install et al were recently changed to treat version numbers > differently. FreshPorts stores PORTVERSION and PORTREVISION as separate text fields. I take it that the ranges equations should compare only PORTVERSION and ignore PORTREVISION. > Also, SQLite could not really optimize the complex SQL > statement that resulted. So I think it is interesting for further > study, but I doubt I'd do it that way again unless I had a very > particular need to use pure SQL or the database was huge. SQLite is a great little database. I like what I've seen of it (mostly via my work on Bacula). I'll be using PostgreSQL for this. > > > create table vuxml > > ( > > id serial not null, > > -- internal FreshPorts ID > > vid text not null, > > -- the vuln vid. e.g. c4b025bb-f05d-11d8-9837-000c41e2cdad > > topic text not null, > > description text not null, > > date_discovery date , > > date_entry date , > > date_modified date , > > status date not null, > > primary key (id) > > ); > > > > create table vuxml_port_xref > > ( > > id serial not null, > > vuxml_id integer not null, > > port_id integer not null, > > primary key (id) > > ); > > > > create table vuxml_port_xref_range > > ( > > id serial not null, > > vuxml_port_xref_id text , > > range_operator_start text , > > range_operator_end text , > > range_version_start text , > > range_version_end text , > > primary key (id) > > ); > > > > If you consider the output from: vxquery -t vuxml ~/VuXML/vuln.xml > > tnftpd, the entry in vuxml_port_xref_range for tnftpd might be: > > > > (1, 'lt', 20040810, NULL, NULL) > > Seem reasonable. For what its worth, storing the range operators as > `>', `=>', etc lets you get something human readable as the output of a > SELECT, e.g. > > SELECT range_version_start, range_operator_start, port_name, > range_operator_end, range_version_end FROM ... WHERE ...; > > ('20040810', '<', 'tnftpd', '', '') > > I found that handy for manual inspection of the database. Whatever I store, need to be able to run queries upon it. I was thinking of keeping the existing values as that might be easier with perl. Not sure yetp. > You may notice from my example that I used separate `name', `ranges', > and `affected' tables. I found this easier when filling the database, > since the / elements are kind of a cross-product > operator. For example, when processing something like > > > mutt > ja-mutt > 1.41.4.2 > This is what I do with my vuxml_port_xref table. That table relates a vid to a port. > I first created an `affected' entry to contain the other references. > Then, as I hit each `name' I just associated it with the `affected' > entry, and as I hit each `range' I did the same. (Otherwise one > needs to construct a few lists, and then make all entries once > the end tag is seen.) I think this is also easier to > modify if we get new children of , e.g. the and > tags that are currently in the VuXML pre-1.2 DTD. My plan is to populate empty the vuxml_* tables each time there is a commit to the data file. This keeps the vuxml system totally separate from FreshPorts. Each row under Commit History (e.g. http://beta.freshports.org/sysutils/bacula/) relates to a row from the commit_log_ports table. That looks something like this: create table commit_log_ports ( commit_log_id integer not null, port_id integer not null, needs_refresh smallint not null, port_version text , port_revision text , primary key (commit_log_id, port_id) ); I'll probably create another table commit_log_ports_vuxml: create table commit_log_ports ( commit_log_id integer not null, port_id integer not null, vuxml_id integer not null , primary key (commit_log_id, port_id) ); Looking at the current data, there's about 140 affected ports, but I haven't broken that with respect to ranges, which is what the above will do. I'll either do that, or add the vuxml_id column to the commit_log_ports table, but I'd rather keep it separate. Time will tell. -- Dan Langille : http://www.langille.org/ From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 21:54:33 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A45F16A4F3 for ; Tue, 24 Aug 2004 21:54:33 +0000 (GMT) Received: from mail99.megamailservers.com (mail99.megamailservers.com [216.251.36.99]) by mx1.FreeBSD.org (Postfix) with ESMTP id B686C43D3F for ; Tue, 24 Aug 2004 21:54:32 +0000 (GMT) (envelope-from gyalch@nwrg.com) X-POP-User: canderson.nwrg.com Received: from northwesgalen ([208.187.37.88])i7OLsFnK007538 for ; Tue, 24 Aug 2004 17:54:31 -0400 From: "Galen Yalch" To: Date: Tue, 24 Aug 2004 15:54:03 -0600 Message-ID: <010701c48a24$e5c3b2c0$9b01a8c0@nwrg.local> MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 In-Reply-To: <200408242130.i7OLUVWw014871@smtp.washington.edu> Importance: Normal X-MMX: 0 X-MMC: 227 X-MMR: 1 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Patch creation question X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 21:54:33 -0000 I am trying to apply the autocreate INBOX patch to the cyrus imap port and can't figure out how to create the patch file. I ahve downloaded the .diff file but I can't find out how to create a patch file from this. Any help would be great. Thanks. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 21:55:27 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6568716A4D0 for ; Tue, 24 Aug 2004 21:55:27 +0000 (GMT) Received: from mail95.megamailservers.com (mail95.megamailservers.com [216.251.36.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14AB943D31 for ; Tue, 24 Aug 2004 21:55:27 +0000 (GMT) (envelope-from gyalch@nwrg.com) X-POP-User: canderson.nwrg.com Received: from northwesgalen ([208.187.37.88])i7OLt0Ke011806 for ; Tue, 24 Aug 2004 17:55:15 -0400 From: "Galen Yalch" To: Date: Tue, 24 Aug 2004 15:54:48 -0600 Message-ID: <010c01c48a25$00a4a630$9b01a8c0@nwrg.local> MIME-Version: 1.0 X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.6626 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 In-Reply-To: <200408242130.i7OLUVWw014871@smtp.washington.edu> Importance: Normal X-MMX: 0 X-MMC: 227 X-MMR: 1 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Patch creation question X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 21:55:27 -0000 I am trying to apply the autocreate INBOX patch to the cyrus imap port and can't figure out how to create the patch file. I ahve downloaded the .diff file but I can't find out how to create a patch file from this. Any help would be great. Thanks. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 22:16:08 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4127116A4CE for ; Tue, 24 Aug 2004 22:16:08 +0000 (GMT) Received: from out01.grupos.com.br (out01.grupos.com.br [200.203.183.77]) by mx1.FreeBSD.org (Postfix) with ESMTP id F116143D48 for ; Tue, 24 Aug 2004 22:16:07 +0000 (GMT) (envelope-from antonio@php.net) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by out01.grupos.com.br (Postfix) with ESMTP id 283031A862A for ; Tue, 24 Aug 2004 19:16:06 -0300 (BRT) Received: from corp.grupos.com.br (localhost [127.0.0.1]) by corp.grupos.com.br (Postfix) with SMTP id D606D20A79 for ; Tue, 24 Aug 2004 19:16:04 -0300 (BRT) Received: from [150.162.166.53] (unknown [150.162.166.53]) by corp.grupos.com.br (Postfix) with ESMTP id 6195C20A24; Tue, 24 Aug 2004 19:16:04 -0300 (BRT) Message-ID: <412BBE24.1030206@php.net> Date: Tue, 24 Aug 2004 19:16:04 -0300 From: =?ISO-8859-1?Q?Ant=F4nio_Carlos_Ven=E2ncio_J=FAnior?= User-Agent: Mozilla Thunderbird 0.7.3 (X11/20040816) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Thierry Thomas References: <412A565F.9060909@php.net> <20040823224518.4f0bc243.sheepkiller@cultdeadsheep.org> <20040823210210.GF68970@graf.pompo.net> <412A6992.9010500@php.net> <20040823221538.GK68970@graf.pompo.net> In-Reply-To: <20040823221538.GK68970@graf.pompo.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit cc: ports@FreeBSD.org Subject: Re: Maintainership over www/pear-HTTP_Upload X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: antonio@php.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 22:16:08 -0000 Thierry, Thierry Thomas wrote: > Le Mar 24 aoû 04 à 0:02:58 +0200, Antônio Carlos Venâncio Júnior > écrivait : > >>Thierry, >> >> submited. There are another pear-* ports unmaintained?! ;) > > > Hmm... Most of them ;-) > > find /usr/ports -type d -name "pear-*" -exec grep -H ^MAINTAINER {}/Makefile \; yep. I will try to add/maintain first the packages that developers ask me too and to the "more important" ones. I've added another PR: ---------- http://www.freebsd.org/cgi/query-pr.cgi?pr=misc/70921 ---------- Can you take a look at it? I've checked the wrong category. hehe -- Cya Antônio echo antonio php net | sed 's/ /@/;s/ /./g' FreeBSD/OpenBSD | PHP/MySQL/Python | PGP Key ID 0x5BBEB073 "Can't buy what I want because its FREE!" - Pearl Jam From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 22:31:19 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59F9716A4E2 for ; Tue, 24 Aug 2004 22:31:19 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B2AD43D41 for ; Tue, 24 Aug 2004 22:31:19 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by mproxy.gmail.com with SMTP id 77so114985rnl for ; Tue, 24 Aug 2004 15:31:12 -0700 (PDT) Received: by 10.38.83.11 with SMTP id g11mr700421rnb; Tue, 24 Aug 2004 15:31:12 -0700 (PDT) Received: by 10.38.75.25 with HTTP; Tue, 24 Aug 2004 15:31:12 -0700 (PDT) Message-ID: <790a9fff0408241531402eca3d@mail.gmail.com> Date: Tue, 24 Aug 2004 17:31:12 -0500 From: Scot Hetzel To: Galen Yalch In-Reply-To: <010c01c48a25$00a4a630$9b01a8c0@nwrg.local> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <010c01c48a25$00a4a630$9b01a8c0@nwrg.local> cc: freebsd-ports@freebsd.org Subject: Re: Patch creation question X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Scot Hetzel List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 22:31:19 -0000 On Tue, 24 Aug 2004 15:54:48 -0600, Galen Yalch wrote: > I am trying to apply the autocreate INBOX patch to the cyrus imap port and > can't figure out how to create the patch file. I ahve downloaded the .diff > file but I can't find out how to create a patch file from this. Any help > would be great. Thanks. > The .diff file is the patch file. To apply the patch manually, you need to use the patch program as follows: cd patch [-p 1] < patch_file.diff I you want to have the port patch the sources, then you need to edit the ports Makefile and do the following: 1. Add the location of the patch to PATCH_SITES 2. The name of the patch file to PATCHFILES 3. Add approiate CONFIGURE_ARGS, if needed 4. Run "make makesum" to regenerate distinfo. 5. Run "make patch -DPATCH_DEBUG" - needed to ensure that all the patch files apply correctly - if a patch file fails, you'll need to fix the patch file, and re-run step 5. 6. Run "make configure" 7. Run "env PREFIX=/usr/local2; make build" 8. Run "env PREFIX=/usr/local2; make install" 9. Run "env PREFIX=/usr/local2; make deinstall", to ensure no files are left over - if there are left over files, fix pkg-plist. NOTE: if any of the steps fails, you'll need to fix, and then "make clean" and start over with step 5. From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 22:34:03 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C36F416A4CE for ; Tue, 24 Aug 2004 22:34:03 +0000 (GMT) Received: from chello080110061116.502.15.vie.surfer.at (chello080110061116.502.15.vie.surfer.at [80.110.61.116]) by mx1.FreeBSD.org (Postfix) with SMTP id 5F84B43D48 for ; Tue, 24 Aug 2004 22:34:02 +0000 (GMT) (envelope-from 4711@chello.at) Received: (qmail 3321 invoked from network); 24 Aug 2004 22:34:01 -0000 Received: from matrix010.matrix.net (192.168.123.10) by ns.matrix.net with SMTP; 24 Aug 2004 22:34:01 -0000 From: Christian Hiris <4711@chello.at> To: freebsd-ports@freebsd.org Date: Wed, 25 Aug 2004 00:34:01 +0200 User-Agent: KMail/1.6.2 References: <010701c48a24$e5c3b2c0$9b01a8c0@nwrg.local> In-Reply-To: <010701c48a24$e5c3b2c0$9b01a8c0@nwrg.local> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_ZJ8KBBISiPyh5F0"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408250034.01183.4711@chello.at> cc: Galen Yalch Subject: Re: Patch creation question X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 22:34:03 -0000 --Boundary-02=_ZJ8KBBISiPyh5F0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Tuesday 24 August 2004 23:54, Galen Yalch wrote: > I am trying to apply the autocreate INBOX patch to the cyrus imap port and > can't figure out how to create the patch file. I ahve downloaded the .di= ff > file but I can't find out how to create a patch file from this. Any help > would be great. Thanks. Normally the .diff file _is_ the patch file. Try "man 1 patch" and=20 "man 1 diff". =20 If you want to patch a ported application via the ports system a good start= ing=20 point is the Porter's Handbook: http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/slow-patc= h.html Cheers, ch =2D-=20 Christian Hiris <4711@chello.at> | OpenPGP KeyID 0x941B6B0B=20 OpenPGP-Key at hkp://wwwkeys.eu.pgp.net and http://pgp.mit.edu --Boundary-02=_ZJ8KBBISiPyh5F0 Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBK8JZcyi/EZQbawsRAvdmAJ9n7PitHZxuHn1hhcr61bMP9jSl3ACeKnaX 3e5sIp3RAMH6rWq7xOyG8R4= =iuFu -----END PGP SIGNATURE----- --Boundary-02=_ZJ8KBBISiPyh5F0-- From owner-freebsd-ports@FreeBSD.ORG Tue Aug 24 22:35:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCF5016A4CE; Tue, 24 Aug 2004 22:35:29 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A2F943D53; Tue, 24 Aug 2004 22:35:29 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bzjt0-000KFA-2X; Wed, 25 Aug 2004 00:35:28 +0200 Date: Wed, 25 Aug 2004 00:35:35 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: "Dan Langille" From: Oliver Eikemeier In-Reply-To: <412B7D29.31547.1472F80@localhost> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: "Jacques A. Vidrine" cc: freebsd-vuxml@freebsd.org cc: ports@freebsd.org Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2004 22:35:30 -0000 Dan Langille wrote: > FreshPorts stores PORTVERSION and PORTREVISION as separate text > fields. I take it that the ranges equations should compare only > PORTVERSION and ignore PORTREVISION. Please not. pkg_version -t is the reference here, when you get different results something is wrong (and ignoring PORTREVISION will get you different results). Also keep in mind that PORTEPOCH is an essential component. -Oliver From owner-freebsd-ports@FreeBSD.ORG Wed Aug 25 00:48:21 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55F5416A4CE for ; Wed, 25 Aug 2004 00:48:21 +0000 (GMT) Received: from mail.rty.ca (mail.rty.ca [64.56.132.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F16E43D2F for ; Wed, 25 Aug 2004 00:48:21 +0000 (GMT) (envelope-from brenden@rty.ca) Received: by mail.rty.ca (Postfix, from userid 1017) id 4E92B23EEC7; Tue, 24 Aug 2004 18:48:06 -0600 (MDT) Received: from [192.168.1.102] (s0106000f6636f470.cg.shawcable.net [68.144.226.150]) by mail.rty.ca (Postfix) with ESMTP id B03F023EB2C for ; Tue, 24 Aug 2004 18:48:04 -0600 (MDT) From: Brenden Matthews To: freebsd-ports@freebsd.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-ZuodNRiMeb7LDVGF8vuB" Message-Id: <1093395191.19824.3.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 24 Aug 2004 18:53:11 -0600 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on mail.rty.ca X-Spam-Status: No, hits=-99.9 required=5.0 tests=RCVD_IN_SORBS_DUL, USER_IN_WHITELIST autolearn=ham version=2.64 Subject: No pear, PHP4 not using include_path option X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Aug 2004 00:48:21 -0000 --=-ZuodNRiMeb7LDVGF8vuB Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I've specified include_path =3D ".:/usr/local/share/pear" in /usr/local/etc/php.ini, I've restarted apache a million times, re-installed all the ports and so on, and whatever I do I can't get pear to work (and I need pear). php -i | grep include_path returns the following: include_path =3D> . =3D> . Could someone please help. I really need to get this sorta out. Thanks in advance, Brenden --=-ZuodNRiMeb7LDVGF8vuB Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) iD8DBQBBK+L2lDpGvCkDHCoRAu+9AJ4zIeC8hFCIwfBtQ8RbpXap0ftNTQCcCCgE KaoovYnZMdHxBVBeRQSP2N4= =qwm9 -----END PGP SIGNATURE----- --=-ZuodNRiMeb7LDVGF8vuB-- From owner-freebsd-ports@FreeBSD.ORG Wed Aug 25 00:53:29 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87A3516A4CE; Wed, 25 Aug 2004 00:53:29 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EC9643D1D; Wed, 25 Aug 2004 00:53:29 +0000 (GMT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id C5FB73D3E; Tue, 24 Aug 2004 20:53:28 -0400 (EDT) From: "Dan Langille" To: Oliver Eikemeier Date: Tue, 24 Aug 2004 20:53:28 -0400 MIME-Version: 1.0 Message-ID: <412BAAC8.10821.1F94E6D@localhost> Priority: normal In-reply-to: References: <412B7D29.31547.1472F80@localhost> X-mailer: Pegasus Mail for Windows (v4.12a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: "Jacques A. Vidrine" cc: freebsd-vuxml@FreeBSD.org cc: ports@FreeBSD.org Subject: Re: database tables for VuXML X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Aug 2004 00:53:29 -0000 On 25 Aug 2004 at 0:35, Oliver Eikemeier wrote: > Dan Langille wrote: > > > FreshPorts stores PORTVERSION and PORTREVISION as separate text > > fields. I take it that the ranges equations should compare only > > PORTVERSION and ignore PORTREVISION. > > Please not. pkg_version -t is the reference here, when you get different > results something is wrong I'm confused. FreshPorts obtains information primarily via "make - V". pkg_version works on installed ports only. FreshPorts is not gong to install a port to find out what version we have. Are we talking about the same thing? > (and ignoring PORTREVISION will get you different results). > Also keep in mind that PORTEPOCH is an essential component. That's news to me. Thanks. I see it is used to create PKGNAME. Looking at range data of vuxml, I see now that PORTEPOCH is used. OK. Thanks for the heads up. -- Dan Langille : http://www.langille.org/ From owner-freebsd-ports@FreeBSD.ORG Wed Aug 25 01:17:55 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1164016A4CE for ; Wed, 25 Aug 2004 01:17:55 +0000 (GMT) Received: from perth-gateway.bluestonetin.com.au (203-59-135-107.perm.iinet.net.au [203.59.135.107]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DB8A43D1D for ; Wed, 25 Aug 2004 01:17:54 +0000 (GMT) (envelope-from david@okeby.com) Received: from [192.168.10.72] (unknown [192.168.10.72])5FF152F8F9; Wed, 25 Aug 2004 09:19:28 +0800 (WST) Mime-Version: 1.0 (Apple Message framework v619) To: timur@gnu.org Message-Id: <9629A724-F634-11D8-AEB1-000D932B7932@okeby.com> Content-Type: multipart/signed; micalg=sha1; boundary=Apple-Mail-22--874644389; protocol="application/pkcs7-signature" From: David Okeby Date: Wed, 25 Aug 2004 09:17:52 +0800 X-Mailer: Apple Mail (2.619) X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: ports@FreeBSD.org Subject: FreeBSD Port: samba-3.0.5,1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Aug 2004 01:17:55 -0000 --Apple-Mail-22--874644389 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed When is samba going to be moved to 3.0.6 in the ports tree? The 3.0.5 tarball has been taken off many of the mirror servers already. Thanks Dave -- david@okeby.com --Apple-Mail-22--874644389-- From owner-freebsd-ports@FreeBSD.ORG Wed Aug 25 02:46:10 2004 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08B4116A4CE for ; Wed, 25 Aug 2004 02:46:10 +0000 (GMT) Received: from smtp02.mrf.mail.rcn.net (smtp02.mrf.mail.rcn.net [207.172.4.61]) by mx1.FreeBSD.org (Postfix) with ESMTP id A127343D45 for ; Wed, 25 Aug 2004 02:46:09 +0000 (GMT) (envelope-from ports@mgle.com) Received: from 207-172-134-70.c3-0.wth-ubr2.sbo-wth.ma.cable.rcn.com ([207.172.134.70] helo=[127.0.0.1]) by smtp02.mrf.mail.rcn.net with esmtp (Exim 3.35 #7) id 1Bznnc-00017C-00 for ports@freebsd.org; Tue, 24 Aug 2004 22:46:08 -0400 Message-ID: <412BFC86.3030907@mgle.com> Date: Tue, 24 Aug 2004 22:42:14 -0400 From: Jon Busby User-Agent: Mozilla Thunderbird 0.7.1 (Windows/20040626) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Problem with gphoto 2.1.4 port on 4.10-RELEASE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Aug 2004 02:46:10 -0000 Hi everybody, I've been having trouble getting gphoto 2.1.4, built from ports, to work with a Canon PowerShot S300 on FreeBSD 4.10-RELEASE. ports@ is listed as the maintainer, so I assume this is the right place to ask... gphoto won't detect the camera at all when running as a normal user, even with permissions set to 777 on the device (ugen0). Running as root, gphoto will detect it, but will not capture images from it. When attempting to capture, the camera will wake up and extend the lens, but gphoto will freeze indefinitely before the shutter is released. After about five minutes, I give gphoto a Control-C. The debug output and dmesg are below. I also have this problem on a different board with the same VIA USB chipset, and also with a Canon PowerShot S230 (the only other camera I have available to test with). Does anyone have any idea what's going on? By the way, this Just Works on gphoto 2.1.4 on Knoppix 3.4 on the same hardware :). # Debug output: # env LANG=C gphoto2 --debug --camera "Canon PowerShot S300" --port "usb:" --capture-image 0.000081 main(2): ALWAYS INCLUDE THE FOLLOWING LINES WHEN SENDING DEBUG MESSAGES TO THE MAILING LIST: 0.001057 main(2): gphoto2 2.1.4 0.001573 main(2): gphoto2 has been compiled with the following options: 0.002097 main(2): + cc (C compiler used) 0.002575 main(2): + popt (for handling command-line parameters) 0.003085 main(2): + exif (for displaying EXIF information) 0.003573 main(2): + no cdk (for accessing configuration options) 0.004098 main(2): + aa (for displaying live previews) 0.004585 main(2): + jpeg (for displaying live previews in JPEG format) 0.005103 main(2): + no readline (for easy navigation in the shell) 0.005616 main(2): libgphoto2 2.1.4 0.006141 main(2): libgphoto2 has been compiled with the following options: 0.006632 main(2): + cc (C compiler used) 0.007134 main(2): + EXIF (for special handling of EXIF files) 0.007615 main(2): + no ltdl (working around buggy libltdl, eh? :-) 0.008160 main(2): + no /proc/meminfo (adapts cache size to memory available) 0.008678 main(2): libgphoto2_port 0.5.1 0.009193 main(2): libgphoto2_port has been compiled with the following options: 0.009707 main(2): + cc (C compiler used) 0.010219 main(2): + USB (for USB cameras) 0.010704 main(2): + serial (for serial cameras) 0.011210 main(2): + no resmgr (serial port access and locking) 0.011696 main(2): + no baudboy (serial port locking) 0.012208 main(2): + no ttylock (serial port locking) 0.012690 main(2): + no lockdev (serial port locking) 0.013199 main(2): + no ltdl (working around buggy libltdl, eh? :-) 0.013806 main(2): Processing 'model' option ('Canon PowerShot S300')... 0.014608 gphoto2-camera(2): Setting abilities ('Canon PowerShot S300')... 0.015206 setting/gphoto2-setting.c(2): Creating $HOME/.gphoto 0.016137 setting/gphoto2-setting.c(2): Loading settings from file "/root/.gphoto/settings" 0.016889 gphoto2-setting(2): Setting key 'model' to value 'Canon PowerShot S300' (gphoto2) 0.017469 gphoto2-setting(2): Saving 2 setting(s) to file "/root/.gphoto/settings" 0.020630 main(2): Processing 'port' option ('usb:')... 0.021423 gp-port-info-list(2): Loading io-drivers from '/usr/local/lib/gphoto2_port/0.5.1'... 0.022819 gphoto2-port-serial(2): Trying to lock '/dev/cuaa0'... 0.024040 gphoto2-port-serial(2): Trying to lock '/dev/cuaa1'... 0.024713 gphoto2-port-serial(2): Trying to lock '/dev/cuaa2'... 0.025274 gphoto2-port-serial(2): Trying to lock '/dev/cuaa3'... 0.025800 gphoto2-port-serial(2): Trying to lock '/dev/cuaa4'... 0.026347 gphoto2-port-serial(2): Trying to lock '/dev/cuaa5'... 0.026860 gphoto2-port-serial(2): Trying to lock '/dev/cuaa6'... 0.027403 gphoto2-port-serial(2): Trying to lock '/dev/cuaa7'... 0.027959 gphoto2-port-serial(2): Trying to lock '/dev/cuaa8'... 0.028483 gphoto2-port-serial(2): Trying to lock '/dev/cuaa9'... 0.028998 gphoto2-port-serial(2): Trying to lock '/dev/cuaaa'... 0.029541 gphoto2-port-serial(2): Trying to lock '/dev/cuaab'... 0.030055 gphoto2-port-serial(2): Trying to lock '/dev/cuaac'... 0.030598 gphoto2-port-serial(2): Trying to lock '/dev/cuaad'... 0.031117 gphoto2-port-serial(2): Trying to lock '/dev/cuaae'... 0.031660 gphoto2-port-serial(2): Trying to lock '/dev/cuaaf'... 0.032274 gphoto2-port-core(2): Loaded 'Serial Port 0' (serial:/dev/cuaa0) from 'libgphoto2_port_serial.so' 0.032869 gphoto2-port-core(2): Loaded '' (^serial) from 'libgphoto2_port_serial.so' 0.034731 gphoto2-port-core(2): Loaded 'Universal Serial Bus' (usb:) from 'libgphoto2_port_usb.so' 0.035581 gphoto2-port-info-list(2): Looking for path 'usb:' (3 entries available)... 0.036217 gphoto2-port-info-list(2): Getting info of entry 1 (3 available)... 0.036797 gphoto2-camera(2): Setting port info for port 'Universal Serial Bus' at 'usb:'... 0.057391 gphoto2-port(2): Setting timeout to 5000 millisecond(s)... 0.058347 gphoto2-port(2): Setting settings... 0.058855 gphoto2-setting(2): Setting key 'port' to value 'usb:' (gphoto2) 0.059401 gphoto2-setting(2): Saving 2 setting(s) to file "/root/.gphoto/settings" 0.062477 gphoto2-camera(2): Initializing camera... 0.063255 gphoto2-port-usb(1): Looking for USB device (vendor 0x4a9, product 0x304c)... found. 0.063815 gphoto2-port-usb(1): Detected defaults: config 1, interface 0, altsetting 0, inep 81, outep 02, intep 83, class ff, subclass ff 0.064383 gphoto2-camera(2): Loading '/usr/local/lib/gphoto2/2.1.4/libgphoto2_canon.so'... 0.065802 gphoto2-port(2): Opening USB port... 0.066682 canon/library.c(2): canon camera_init() 0.067319 canon/library.c(2): GPhoto tells us that we should use a USB link. 0.067862 canon/usb.c(2): Initializing the (USB) camera. 0.068440 gphoto2-port(2): Setting settings... 0.069082 gphoto2-port-usb(2): Changed usb.config from -1 to 1 0.072232 gphoto2-port-usb(2): Changed usb.altsetting from -1 to 0 0.072989 canon/usb.c(2): canon_usb_camera_init() 0.073582 canon/usb.c(2): canon_usb_identify: USB ID match 0x04a9:0x304c (Canon:PowerShot S300) 0.074168 context(2): Detected a 'Canon:PowerShot S300'. Detected a 'Canon:PowerShot S300'. 0.075016 gphoto2-port(2): Reading message (request=0xc value=0x55 index=0x0 size=1=0x1)... 0.078210 gphoto2-port(3): Hexdump of 1 = 0x1 bytes follows: 0000 43 - C 0.078906 canon/usb.c(2): canon_usb_camera_init() initial camera response: C/'Camera was woken up' 0.079441 gphoto2-port(2): Reading message (request=0x4 value=0x1 index=0x0 size=88=0x58)... 0.085226 gphoto2-port(3): Hexdump of 88 = 0x58 bytes follows: 0000 18 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 01 00 05 03 4c 30 a9 04-00 08 00 00 ff ff ff ff ....L0.......... 0050 00 fd 00 00 00 fd 00 00- ........ 0.086149 gphoto2-port(2): Writing message (request=0x4 value=0x11 index=0x0 size=80=0x50)... 0.086689 gphoto2-port(3): Hexdump of 80 = 0x50 bytes follows: 0000 10 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 00 08 00 00 ff ff ff ff-00 fd 00 00 00 fd 00 00 ................ 0.092196 canon/usb.c(2): canon_usb_camera_init() PC sign on LCD should be lit now (if your camera has a PC sign) 0.092889 gphoto2-port(2): Reading 64=0x40 bytes from port... 0.098189 gphoto2-port(3): Hexdump of 64 = 0x40 bytes follows: 0000 04 00 00 00 02 03 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0.099110 gphoto2-port(2): Reading 4=0x4 bytes from port... 0.101215 gphoto2-port(3): Hexdump of 4 = 0x4 bytes follows: 0000 00 00 00 00 - .... 0.125205 gphoto2-port(2): Reading 16=0x10 bytes from interrupt ep (fast)... 0.126069 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows: 0000 02 00 00 00 20 00 00 00-10 00 00 00 00 00 00 00 .... ........... 0.126687 canon/usb.c(2): canon_usb_lock_keys() 0.127182 canon/usb.c(2): Locking camera keys and turning off LCD using 'normal' locking code... 0.127787 canon/usb.c(2): canon_usb_dialogue() cmd 0x1f 0x12 0x201 (Get picture abilities) 0.128373 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=80=0x50)... 0.128897 gphoto2-port(3): Hexdump of 80 = 0x50 bytes follows: 0000 10 00 00 00 01 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 1f 00 00 12-10 00 00 00 00 00 00 00 ................ 0.134181 gphoto2-port(2): Reading 896=0x380 bytes from port... 0.138318 gphoto2-port(3): Hexdump of 896 = 0x380 bytes follows: 0000 44 03 00 00 01 03 00 00-00 00 00 00 00 00 00 00 D............... 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 1f 00 00 22-44 03 00 00 00 00 00 00 ......."D....... 0050 00 00 00 00 30 03 00 00-04 01 50 6f 77 65 72 53 ....0.....PowerS 0060 68 6f 74 20 53 33 30 30-00 54 50 82 22 01 00 00 hot S300.TP."... 0070 aa 10 10 03 02 00 20 08-a2 10 09 00 00 00 4c 61 ...... .......La 0080 72 67 65 3a 53 75 70 65-72 46 69 6e 65 00 45 8a rge:SuperFine.E. 0090 a8 00 40 06 00 00 b0 04-00 00 01 00 00 00 4c 61 ..@...........La 00a0 72 67 65 3a 46 69 6e 65-00 40 90 80 02 40 04 a8 rge:Fine.@...@.. 00b0 20 14 40 06 00 00 b0 04-00 00 02 00 00 00 4c 61 .@...........La 00c0 72 67 65 3a 4e 6f 72 6d-61 6c 00 00 00 40 10 20 rge:Normal...@. 00d0 8a 10 40 06 00 00 b0 04-00 00 03 00 00 00 4d 69 ..@...........Mi 00e0 64 64 6c 65 3a 53 75 70-65 72 46 69 6e 65 00 20 ddle:SuperFine. 00f0 00 50 00 04 00 00 00 03-00 00 01 00 00 00 4d 69 .P............Mi 0100 64 64 6c 65 3a 46 69 6e-65 00 01 2a 82 01 00 a0 ddle:Fine..*.... 0110 00 40 00 04 00 00 00 03-00 00 02 00 00 00 4d 69 .@............Mi 0120 64 64 6c 65 3a 4e 6f 72-6d 61 6c 00 00 40 45 20 ddle:Normal..@E 0130 00 00 00 04 00 00 00 03-00 00 03 00 00 00 53 6d ..............Sm 0140 61 6c 6c 3a 53 75 70 65-72 46 69 6e 65 00 15 00 all:SuperFine... 0150 08 09 80 02 00 00 e0 01-00 00 01 00 00 00 53 6d ..............Sm 0160 61 6c 6c 3a 46 69 6e 65-00 00 00 00 32 45 01 20 all:Fine....2E. 0170 08 01 80 02 00 00 e0 01-00 00 02 00 00 00 53 6d ..............Sm 0180 61 6c 6c 3a 4e 6f 72 6d-61 6c 00 0a 00 05 04 88 all:Normal...... 0190 a0 00 80 02 00 00 e0 01-00 00 03 00 00 00 14 20 ............... 01a0 88 15 45 08 82 00 5c 80-20 44 11 80 00 00 01 00 ..E...\. D...... 01b0 10 00 05 80 90 01 05 80-02 01 00 02 a0 10 0c 82 ................ 01c0 00 10 41 00 08 05 00 28-22 00 15 40 30 00 05 00 ..A....("..@0... 01d0 82 01 00 a0 02 15 04 20-00 14 40 02 00 04 11 00 ....... ..@..... 01e0 02 46 15 00 10 00 04 00-02 01 00 a8 00 00 00 08 .F.............. 01f0 02 04 00 02 00 11 05 2a-22 05 00 00 00 54 10 02 .......*"....T.. 0200 00 00 00 02 00 04 54 00-80 01 01 00 a2 00 00 a2 ......T......... 0210 20 00 00 0a a2 10 01 00-00 40 11 22 20 01 00 42 ........@." ..B 0220 22 41 14 80 02 14 04 a8-00 04 00 08 08 14 04 08 "A.............. 0230 00 14 00 08 80 85 05 0a-02 04 00 20 00 50 00 80 ........... .P.. 0240 80 00 11 40 80 01 00 2a-00 00 00 2a 0a 10 11 00 ...@...*...*.... 0250 00 04 00 0a 0a 10 10 20-82 40 01 00 0a 01 c0 08 ....... .@...... 0260 88 50 41 0a 00 40 00 0a-02 04 50 a2 00 10 04 8a .PA..@....P..... 0270 00 41 54 00 00 40 10 00-00 40 00 20 00 40 78 00 .AT..@...@. .@x. 0280 00 00 00 00 00 00 a0 00-00 00 00 00 00 00 14 00 ................ 0290 00 00 00 80 00 00 00 80-00 00 00 80 00 00 00 80 ................ 02a0 00 00 00 80 00 00 00 00-00 00 00 00 00 00 00 80 ................ 02b0 00 00 00 80 03 00 00 80-26 00 00 80 00 00 00 00 ........&....... 02c0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 02d0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 02e0 28 00 00 50 00 80 00 14-00 c0 00 00 00 80 00 00 (..P............ 02f0 00 80 00 00 00 80 00 00-00 80 00 00 00 80 00 00 ................ 0300 00 80 00 00 00 80 00 00-00 80 00 00 00 80 00 00 ................ 0310 00 c0 00 00 00 80 00 00-00 80 00 00 00 80 00 00 ................ 0320 00 00 00 00 00 00 00 00-00 80 00 00 00 80 00 00 ................ 0330 00 80 00 00 00 80 00 00-00 00 00 00 00 00 00 00 ................ 0340 00 00 00 00 00 00 00 00-00 00 00 00 00 e0 00 00 ................ 0350 00 80 00 00 00 80 00 00-00 00 00 00 00 00 00 00 ................ 0360 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0370 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0.142071 gphoto2-port(2): Reading 4=0x4 bytes from port... 0.144211 gphoto2-port(3): Hexdump of 4 = 0x4 bytes follows: 0000 00 00 00 28 - ...( 0.144888 canon/usb.c(2): canon_usb_lock_keys: Got the expected number of bytes back from "get picture abilities." 0.145413 canon/usb.c(2): canon_usb_dialogue() cmd 0x20 0x12 0x201 (Lock keys and turn off LCD) 0.145959 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=80=0x50)... 0.146477 gphoto2-port(3): Hexdump of 80 = 0x50 bytes follows: 0000 10 00 00 00 01 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 20 00 00 12-10 00 00 00 01 00 00 00 .... ........... 0.152192 gphoto2-port(2): Reading 64=0x40 bytes from port... 0.154182 gphoto2-port(3): Hexdump of 64 = 0x40 bytes follows: 0000 14 00 00 00 01 03 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0.154951 gphoto2-port(2): Reading 20=0x14 bytes from port... 0.157201 gphoto2-port(3): Hexdump of 20 = 0x14 bytes follows: 0000 02 00 00 00 1f 00 00 22-14 00 00 00 01 00 00 00 ......."........ 0010 00 00 00 00 - .... 0.157960 canon/usb.c(2): canon_usb_lock_keys: Got the expected number of bytes back. 0.158531 canon/canon.c(2): canon_int_identify_camera() called 0.159039 canon/usb.c(2): canon_usb_dialogue() cmd 0x1 0x12 0x201 (Identify camera) 0.159564 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=80=0x50)... 0.160076 gphoto2-port(3): Hexdump of 80 = 0x50 bytes follows: 0000 10 00 00 00 01 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 01 00 00 12-10 00 00 00 02 00 00 00 ................ 0.165173 gphoto2-port(2): Reading 128=0x80 bytes from port... 0.167199 gphoto2-port(3): Hexdump of 128 = 0x80 bytes follows: 0000 5c 00 00 00 01 03 00 00-00 00 00 00 00 00 00 00 \............... 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 01 00 00 22-5c 00 00 00 02 00 00 00 ......."\....... 0050 00 00 00 00 00 05 15 81-00 00 00 01 43 61 6e 6f ............Cano 0060 6e 20 50 6f 77 65 72 53-68 6f 74 20 53 33 30 30 n PowerShot S300 0070 00 00 00 00 00 00 00 00-00 00 00 00 52 6f 73 73 ............Ross 0.168486 gphoto2-port(2): Reading 28=0x1c bytes from port... 0.170183 gphoto2-port(3): Hexdump of 28 = 0x1c bytes follows: 0000 20 41 6e 64 65 72 73 6f-6e 00 00 00 00 00 00 00 Anderson....... 0010 00 00 00 00 00 00 00 00-00 00 00 00 ............ 0.170989 canon/canon.c(2): canon_int_identify_camera: ident 'Canon PowerShot S300' owner 'Ross Anderson' 0.171547 canon/canon.c(2): canon_int_get_battery() 0.172050 canon/usb.c(2): canon_usb_dialogue() cmd 0xa 0x12 0x201 (Power supply status) 0.172584 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=80=0x50)... 0.173101 gphoto2-port(3): Hexdump of 80 = 0x50 bytes follows: 0000 10 00 00 00 01 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 0a 00 00 12-10 00 00 00 03 00 00 00 ................ 0.178176 gphoto2-port(2): Reading 64=0x40 bytes from port... 0.180180 gphoto2-port(3): Hexdump of 64 = 0x40 bytes follows: 0000 18 00 00 00 01 03 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0.180953 gphoto2-port(2): Reading 24=0x18 bytes from port... 0.183184 gphoto2-port(3): Hexdump of 24 = 0x18 bytes follows: 0000 02 00 00 00 0a 00 00 22-18 00 00 00 03 00 00 00 ......."........ 0010 00 00 00 00 06 00 00 10- ........ 0.183886 canon/canon.c(2): canon_int_get_battery: Status: 06 (OK) / Source: 10 (AC) 0.184408 canon/library.c(2): canon_capture() called 0.185013 canon/canon.c(2): canon_int_get_disk_name() 0.185541 canon/usb.c(2): canon_usb_long_dialogue() function 9, payload = 0 bytes 0.186080 canon/usb.c(2): canon_usb_dialogue() cmd 0xa 0x11 0x202 (Flash device ident) 0.186587 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=80=0x50)... 0.187120 gphoto2-port(3): Hexdump of 80 = 0x50 bytes follows: 0000 10 00 00 00 02 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 0a 00 00 11-10 00 00 00 04 00 00 00 ................ 0.192176 gphoto2-port(2): Reading 64=0x40 bytes from port... 0.240207 gphoto2-port(3): Hexdump of 64 = 0x40 bytes follows: 0000 00 00 00 00 02 03 04 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0.241155 canon/usb.c(2): canon_usb_long_dialogue: calling gp_port_read(), total_data_size = 4, bytes_received = 0, read_bytes = 4 (0x4) 0.241716 gphoto2-port(2): Reading 4=0x4 bytes from port... 0.244174 gphoto2-port(3): Hexdump of 4 = 0x4 bytes follows: 0000 44 3a 00 00 - D:.. 0.244855 canon/canon.c(2): canon_int_get_disk_name: disk 'D:' 0.245408 canon/usb.c(2): canon_usb_long_dialogue() function 11, payload = 6 bytes 0.245937 canon/usb.c(2): canon_usb_dialogue() cmd 0xb 0x11 0x202 (Get directory entries) 0.246458 canon/usb.c(2): Payload : 0.247104 canon(3): Hexdump of 6 = 0x6 bytes follows: 0000 0f 44 3a 00 00 00 - .D:... 0.247656 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=86=0x56)... 0.248198 gphoto2-port(3): Hexdump of 86 = 0x56 bytes follows: 0000 16 00 00 00 02 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 0b 00 00 11-16 00 00 00 05 00 00 00 ................ 0050 0f 44 3a 00 00 00 - .D:... 0.253184 gphoto2-port(2): Reading 64=0x40 bytes from port... 0.344207 gphoto2-port(3): Hexdump of 64 = 0x40 bytes follows: 0000 00 00 00 00 02 03 9d 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0.345170 canon/usb.c(2): canon_usb_long_dialogue: calling gp_port_read(), total_data_size = 157, bytes_received = 0, read_bytes = 128 (0x80) 0.345723 gphoto2-port(2): Reading 128=0x80 bytes from port... 0.597183 gphoto2-port(3): Hexdump of 128 = 0x80 bytes follows: 0000 80 00 00 00 00 00 00 00-00 00 44 3a 00 80 00 00 ..........D:.... 0010 00 00 00 cc 1c 52 3f 2e-5c 54 52 41 53 48 45 7e .....R?.\TRASHE~ 0020 31 00 20 00 52 00 00 00-e6 1c 52 3f 5f 35 30 31 1. .R.....R?_501 0030 7e 31 00 10 00 00 00 00-00 00 00 00 00 35 30 31 ~1...........501 0040 00 80 00 00 00 00 00 00-00 00 00 2e 2e 00 80 00 ................ 0050 00 00 00 00 8c 80 20 41-2e 5c 44 43 49 4d 00 10 ...... A.\DCIM.. 0060 00 00 00 00 00 00 00 00-00 43 41 4e 4f 4e 4d 53 .........CANONMS 0070 43 00 10 00 00 00 00 00-00 00 00 00 31 32 37 43 C...........127C 0.598260 canon/usb.c(2): canon_usb_long_dialogue: calling gp_port_read(), total_data_size = 157, bytes_received = 128, read_bytes = 29 (0x1d) 0.598830 gphoto2-port(2): Reading 29=0x1d bytes from port... 0.601122 gphoto2-port(3): Hexdump of 29 = 0x1d bytes follows: 0000 41 4e 4f 4e 00 80 00 00-00 00 00 00 00 00 00 2e ANON............ 0010 2e 00 00 00 00 00 00 00-00 00 00 00 00 ............. 0.601849 gphoto2-port(2): Getting timeout... 0.602357 gphoto2-port(2): Current timeout: 5000 milliseconds 0.602874 canon/canon.c(2): canon_int_capture_image: usb port timeout starts at 5000ms 0.603413 gphoto2-port(2): Setting timeout to 15000 millisecond(s)... 0.604035 canon/canon.c(2): Camera control init++ with 0, 0 0.604557 canon/usb.c(2): canon_usb_dialogue() cmd 0x13 0x12 0x201 (Remote camera control) 0.605102 canon/usb.c(2): canon_usb_dialogue() called with CONTROL_CAMERA, Camera control init 0.605593 canon/usb.c(2): Payload : 0.606094 canon(3): Hexdump of 8 = 0x8 bytes follows: 0000 00 00 00 00 00 00 00 00- ........ 0.606609 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=88=0x58)... 0.607142 gphoto2-port(3): Hexdump of 88 = 0x58 bytes follows: 0000 18 00 00 00 01 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 13 00 00 12-18 00 00 00 06 00 00 00 ................ 0050 00 00 00 00 00 00 00 00- ........ 0.612099 gphoto2-port(2): Reading 64=0x40 bytes from port... 2.013882 gphoto2-port(3): Hexdump of 64 = 0x40 bytes follows: 0000 1c 00 00 00 01 03 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 2.014377 gphoto2-port(2): Reading 28=0x1c bytes from port... 2.015839 gphoto2-port(3): Hexdump of 28 = 0x1c bytes follows: 0000 02 00 00 00 13 00 00 22-1c 00 00 00 06 00 00 00 ......."........ 0010 00 00 00 00 00 00 00 00-00 00 00 00 ............ 2.016042 canon/canon.c(2): Camera control init-- 2.016081 gphoto2-port(2): Setting timeout to 5000 millisecond(s)... 2.016117 canon/canon.c(2): canon_int_capture_image: set camera port timeout back to 5 seconds... 2.016152 canon/canon.c(2): canon_int_capture_image: transfer mode is 8 2.016191 canon/canon.c(2): Set transfer mode++ with 4, 8 2.016235 canon/usb.c(2): canon_usb_dialogue() cmd 0x13 0x12 0x201 (Remote camera control) 2.016274 canon/usb.c(2): canon_usb_dialogue() called with CONTROL_CAMERA, Set transfer mode 2.016309 canon/usb.c(2): Payload : 2.016343 canon(3): Hexdump of 12 = 0xc bytes follows: 0000 09 00 00 00 04 00 00 00-08 00 00 00 ............ 2.016387 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=92=0x5c)... 2.016435 gphoto2-port(3): Hexdump of 92 = 0x5c bytes follows: 0000 1c 00 00 00 01 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 13 00 00 12-1c 00 00 00 07 00 00 00 ................ 0050 09 00 00 00 04 00 00 00-08 00 00 00 ............ 2.021828 gphoto2-port(2): Reading 64=0x40 bytes from port... 2.023835 gphoto2-port(3): Hexdump of 64 = 0x40 bytes follows: 0000 1c 00 00 00 01 03 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 2.024037 gphoto2-port(2): Reading 28=0x1c bytes from port... 2.025832 gphoto2-port(3): Hexdump of 28 = 0x1c bytes follows: 0000 02 00 00 00 13 00 00 22-1c 00 00 00 07 00 00 00 ......."........ 0010 00 00 00 00 09 00 00 00-00 00 00 00 ............ 2.026025 canon/canon.c(2): Set transfer mode-- 2.026062 canon/canon.c(2): Get release params++ with 4, 8 2.026103 canon/usb.c(2): canon_usb_dialogue() cmd 0x13 0x12 0x201 (Remote camera control) 2.026139 canon/usb.c(2): canon_usb_dialogue() called with CONTROL_CAMERA, Get release params 2.026173 canon/usb.c(2): Payload : 2.026206 canon(3): Hexdump of 8 = 0x8 bytes follows: 0000 0a 00 00 00 04 00 00 00- ........ 2.026247 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=88=0x58)... 2.026293 gphoto2-port(3): Hexdump of 88 = 0x58 bytes follows: 0000 18 00 00 00 01 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 13 00 00 12-18 00 00 00 08 00 00 00 ................ 0050 0a 00 00 00 04 00 00 00- ........ 2.030830 gphoto2-port(2): Reading 128=0x80 bytes from port... 2.033842 gphoto2-port(3): Hexdump of 128 = 0x80 bytes follows: 0000 4c 00 00 00 01 03 00 00-00 00 00 00 00 00 00 00 L............... 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 13 00 00 22-4c 00 00 00 08 00 00 00 ......."L....... 0050 00 00 00 00 0a 00 00 00-30 00 00 00 20 03 01 00 ........0... ... 0060 64 00 01 01 00 01 00 00-ff 01 01 30 00 ff 00 ff d..........0.... 0070 7f 7f 7f 7f ff ff ff ff-ff ff ff ff 18 ff ff ff ................ 2.034076 gphoto2-port(2): Reading 12=0xc bytes from port... 2.035830 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows: 0000 20 00 38 00 ad 00 06 02-ad 00 20 00 .8....... . 2.036023 canon/canon.c(2): Get release params-- 2.036060 canon/canon.c(2): Get release params++ with 4, 8 2.036098 canon/usb.c(2): canon_usb_dialogue() cmd 0x13 0x12 0x201 (Remote camera control) 2.036137 canon/usb.c(2): canon_usb_dialogue() called with CONTROL_CAMERA, Get release params 2.036170 canon/usb.c(2): Payload : 2.036205 canon(3): Hexdump of 8 = 0x8 bytes follows: 0000 0a 00 00 00 04 00 00 00- ........ 2.036246 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=88=0x58)... 2.036291 gphoto2-port(3): Hexdump of 88 = 0x58 bytes follows: 0000 18 00 00 00 01 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 13 00 00 12-18 00 00 00 09 00 00 00 ................ 0050 0a 00 00 00 04 00 00 00- ........ 2.040827 gphoto2-port(2): Reading 128=0x80 bytes from port... 2.043845 gphoto2-port(3): Hexdump of 128 = 0x80 bytes follows: 0000 4c 00 00 00 01 03 00 00-00 00 00 00 00 00 00 00 L............... 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 13 00 00 22-4c 00 00 00 09 00 00 00 ......."L....... 0050 00 00 00 00 0a 00 00 00-30 00 00 00 20 03 01 00 ........0... ... 0060 64 00 01 01 00 01 00 00-ff 01 01 30 00 ff 00 ff d..........0.... 0070 7f 7f 7f 7f ff ff ff ff-ff ff ff ff 18 ff ff ff ................ 2.044068 gphoto2-port(2): Reading 12=0xc bytes from port... 2.045851 gphoto2-port(3): Hexdump of 12 = 0xc bytes follows: 0000 20 00 38 00 ad 00 06 02-ad 00 20 00 .8....... . 2.046161 canon/canon.c(2): Get release params-- 2.046239 canon/usb.c(2): canon_usb_capture_dialogue() ^C Cancelling... 303.050490 gphoto2-port(2): Could only read 16 out of 64 byte(s) 303.050932 gphoto2-port(2): Reading 64=0x40 bytes from interrupt ep (fast)... 303.050976 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows: 0000 02 00 00 00 05 00 02 00-10 00 00 00 3c 00 00 00 ............<... 303.051022 canon/usb.c(2): canon_usb_poll_interrupt_pipe: interrupt packet took 1 tries 362.688509 gphoto2-port(2): Could only read 16 out of 64 byte(s) 362.688906 gphoto2-port(2): Reading 64=0x40 bytes from interrupt ep (fast)... 362.688950 gphoto2-port(3): Hexdump of 16 = 0x10 bytes follows: 0000 02 00 00 00 05 00 04 00-10 00 00 00 00 00 00 00 ................ 362.688996 canon/usb.c(2): canon_usb_poll_interrupt_pipe: interrupt packet took 1 tries 362.904532 canon/usb.c(0): canon_usb_poll_interrupt_pipe: interrupt read failed after 0 tries, "Error reading from the port" 362.904936 gphoto2-port(2): Getting timeout... 362.904970 gphoto2-port(2): Current timeout: 5000 milliseconds 362.905005 canon/usb.c(2): canon_usb_capture_dialogue: usb port timeout starts at 5000ms 362.905043 gphoto2-port(2): Setting timeout to 15000 millisecond(s)... 362.905086 canon/usb.c(2): canon_usb_dialogue() cmd 0x13 0x12 0x201 (Remote camera control) 362.905130 canon/usb.c(2): canon_usb_dialogue() called with CONTROL_CAMERA, Release shutter 362.905166 canon/usb.c(2): Payload : 362.905203 canon(3): Hexdump of 8 = 0x8 bytes follows: 0000 04 00 00 00 00 00 00 00- ........ 362.905251 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=88=0x58)... 362.905301 gphoto2-port(3): Hexdump of 88 = 0x58 bytes follows: 0000 18 00 00 00 01 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 13 00 00 12-18 00 00 00 0a 00 00 00 ................ 0050 04 00 00 00 00 00 00 00- ........ 362.905379 canon/usb.c(2): canon_usb_dialogue: write failed! (returned -1) 362.905421 canon/canon.c(2): Exit release control++ with 0, 0 362.905458 canon/usb.c(2): canon_usb_dialogue() cmd 0x13 0x12 0x201 (Remote camera control) 362.905496 canon/usb.c(2): canon_usb_dialogue() called with CONTROL_CAMERA, Exit release control 362.905530 canon/usb.c(2): Payload : 362.905562 canon(3): Hexdump of 8 = 0x8 bytes follows: 0000 01 00 00 00 00 00 00 00- ........ 362.905604 gphoto2-port(2): Writing message (request=0x4 value=0x10 index=0x0 size=88=0x58)... 362.905650 gphoto2-port(3): Hexdump of 88 = 0x58 bytes follows: 0000 18 00 00 00 01 02 00 00-00 00 00 00 00 00 00 00 ................ 0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 ................ 0040 02 00 00 00 13 00 00 12-18 00 00 00 0b 00 00 00 ................ 0050 01 00 00 00 00 00 00 00- ........ 362.906676 canon/usb.c(2): canon_usb_dialogue: write failed! (returned -1) 362.906713 canon/canon.c(2): Exit release control returned msg=0x0, datalen=0 362.907457 context(0): Error capturing image *** Error *** Error capturing image 362.907547 gphoto2-camera(2): Operation failed! ERROR: Could not capture. *** Error (-1: 'Unspecified error') *** For debugging messages, please use the --debug option. Debugging messages may help finding a solution to your problem. If you intend to send any error or debug messages to the gphoto developer mailing list , please run gphoto2 as follows: env LANG=C gphoto2 --debug --debug --camera "Canon PowerShot S300" --port "usb:" --capture-image Please make sure there is sufficient quoting around the arguments. 362.909086 gp-camera(2): Freeing camera... 362.909148 gphoto2-camera(2): Exiting camera ('Canon PowerShot S300')... 362.909208 canon/usb.c(2): canon_usb_unlock_keys() 362.909241 canon/usb.c(2): canon_usb_unlock_keys: Not unlocking the kind of camera you have. If unlocking works when using the Windows software with your camera, please contact . 362.909285 canon/library.c(2): switch_camera_off() 362.909316 canon/library.c(2): Not trying to shut down USB camera... 362.909370 canon/library.c(2): clear_readiness() 362.909422 gphoto2-port(2): Closing port... 362.910514 libgphoto2/gphoto2-filesys.c(2): Clearing fscache LRU list... 362.910550 libgphoto2/gphoto2-filesys.c(2): fscache LRU list already empty 362.910584 gphoto2-filesystem(2): Internally deleting all folders from '/'... 362.910660 gphoto2-port(2): Freeing port... 362.910703 gphoto2-port(2): Closing port... 362.910829 libgphoto2/gphoto2-filesys.c(2): Clearing fscache LRU list... 362.910862 libgphoto2/gphoto2-filesys.c(2): fscache LRU list already empty 362.910894 gphoto2-filesystem(2): Internally deleting all folders from '/'... # dmesg output: Copyright (c) 1992-2004 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 4.10-RELEASE #0: Tue May 25 22:47:12 GMT 2004 root@perseus.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC Timecounter "i8254" frequency 1193182 Hz CPU: VIA C3 Samuel 2 (800.03-MHz 686-class CPU) Origin = "CentaurHauls" Id = 0x673 Stepping = 3 Features=0x803035 real memory = 259981312 (253888K bytes) avail memory = 247508992 (241708K bytes) Preloaded elf kernel "kernel" at 0xc0551000. md0: Malloc disk Using $PIR table, 5 entries at 0xc00fdf20 npx0: on motherboard npx0: INT 16 interface pcib0: on motherboard pci0: on pcib0 agp0: mem 0xe0000000-0xe7ffffff at device 0.0 on pci0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pci1: at 0.0 irq 11 isab0: at device 17.0 on pci0 isa0: on isab0 atapci0: port 0xd000-0xd00f at device 17.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata1: at 0x170 irq 15 on atapci0 uhci0: port 0xd400-0xd41f irq 5 at device 17.2 on pci0 usb0: on uhci0 usb0: USB revision 1.0 uhub0: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub0: 2 ports with 2 removable, self powered uhci1: port 0xd800-0xd81f irq 5 at device 17.3 on pci0 usb1: on uhci1 usb1: USB revision 1.0 uhub1: VIA UHCI root hub, class 9/0, rev 1.00/1.00, addr 1 uhub1: 2 ports with 2 removable, self powered chip0: at device 17.4 on pci0 chip1: port 0xe400-0xe403,0xe000-0xe003,0xdc00-0xdcff irq 10 at device 17.5 on pci0 vr0: port 0xe800-0xe8ff mem 0xeb000000-0xeb0000ff irq 11 at device 18.0 on pci0 vr0: Ethernet address: 00:40:63:d5:6a:36 miibus0: on vr0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto orm0: