From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 01:56:32 2003 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 D99DF16A4B3; Sun, 12 Oct 2003 01:56:32 -0700 (PDT) Received: from ftp.translate.ru (ftp.translate.ru [195.131.4.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1C5F43FAF; Sun, 12 Oct 2003 01:56:31 -0700 (PDT) (envelope-from lev@FreeBSD.org) Received: from ip-219.dialup.wplus.net (ip-219.dialup.wplus.net [195.131.1.219]) (authenticated bits=0) by ftp.translate.ru (8.12.9/8.12.9) with ESMTP id h9C8sd7R085919; Sun, 12 Oct 2003 12:54:41 +0400 (MSD) (envelope-from lev@FreeBSD.org) Date: Sun, 12 Oct 2003 13:03:30 +0400 From: Lev Serebryakov X-Mailer: The Bat! (v1.62r) Personal Organization: Home X-Priority: 3 (Normal) Message-ID: <671141802.20031012130330@serebryakov.spb.ru> To: Ade Lovett In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Ports installation, knobs, etc (Was: Ports conflicts: `lib/libiberty.a') X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Lev Serebryakov List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Oct 2003 08:56:33 -0000 Hello, Ade! Sunday, October 12, 2003, 2:53:52 AM, you wrote: AL> On Friday, Oct 10, 2003, at 02:04 US/Pacific, Lev Serebryakov wrote: >> I don't think, it is good idea to "CONFLICTS=" all these binutils & >> gcc. May be, we need some "general" patch (like libtool's one) to >> disable installation of this library? Something like >> FIX_LIBIBERTY=yes >> In port makefile? AL> No. Please no. Oh lordy, no. The maze of options, variables, hacks, AL> and other bits and pieces needs to be reduced, not increased. It's a AL> staggeringly complex ball of wax already. It is good point. And here are many unique-for-port knobs... and not all maintainers make `pre=everything:' target to describe all these knobs... It seems, that we need some mechanism to describe such knobs automatically, like autoconf's AC_ARG_WITH or something like this. And my sweet dream: install ports to /var/... with port's (distfile's) `[g]make install' target, and then copy files to real prefix according to pkg-plist. It could solve MANY problems: automatic conflicts warning, easy skipping of unneeded files, etc... 95% of ports allows such trick without many additional work: all autroconf's and Makefile.PL ports supports installation outside of configured prefix (gmake/make INSTALL_PREFIX=... install or something like this), and many other ports with good makefiles supports such operation too... RedHat's RPM works in such way. But it have many other drawbacks, IMHO. Lev Serebryakov From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 02:19:59 2003 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 63A5E16A4B3 for ; Sun, 12 Oct 2003 02:19:59 -0700 (PDT) Received: from outpost.globcon.net (outpost.globcon.net [62.141.88.161]) by mx1.FreeBSD.org (Postfix) with SMTP id 615C943FE0 for ; Sun, 12 Oct 2003 02:19:57 -0700 (PDT) (envelope-from sergei@kolobov.com) Received: (qmail 60309 invoked from network); 12 Oct 2003 09:19:52 -0000 Received: from dom.kolobov.com (HELO kolobov.com) (213.247.180.114) by outpost.globcon.net (62.141.88.161) with SMTP; 12 Oct 2003 09:19:52 -0000 Received: (qmail 963 invoked by uid 911); 12 Oct 2003 09:19:53 -0000 Date: Sun, 12 Oct 2003 13:19:53 +0400 From: Sergei Kolobov To: ports@FreeBSD.org Message-ID: <20031012091953.GA872@chetwood.ru> Mail-Followup-To: ports@FreeBSD.org References: <22159707417.20031010130423@serebryakov.spb.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.3i Subject: Re: Ports conflicts: `lib/libiberty.a' 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, 12 Oct 2003 09:19:59 -0000 On 2003-10-11 at 15:53 -0700, Ade Lovett wrote: > No. Please no. Oh lordy, no. The maze of options, variables, hacks, > and other bits and pieces needs to be reduced, not increased. It's a > staggeringly complex ball of wax already. Agreed. Wasn't it you, Ade, who suggested going to something like: USE_FEATURES= autoconf automake openldap etc. Or at least this is what I remembered. ;) I think this is the approach we should take and I am willing to help with that unless you have the patches ready. ;) > A centralized place to refer to these knobs (a purely documentatary > bsd.knobs.mk, perhaps) detailing what they are, who uses them, and what > they do would go a long way to help, but some of the process would have > to be (non-trivially) automated in order to keep it up to date (no > small task in of itself). I think this is overly complex solution for a not-very-complex problem. There were several alternative solutions proposed on this very list - somthing like a pkg-options file which list all options local to the port, together with corresponding bsd.port.mk magic to present a user with a list of options to choose from, while still allowing to pre-define them via /etc/make.conf (or some other mechanism) and providing defaults for BATCH=yes builds. > I'm really starting to wonder whether we've reached the limits of what > can reasonably be accomplished with make(1) as we approach ports10k... Good question. Do you have any alternatives in mind? I understand that Darwin was (or is) going to use TCL. At least, I got that impression from few last commits to now-dead OpenPackages CVS. Sergei From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 02:24:38 2003 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 C912116A4B3 for ; Sun, 12 Oct 2003 02:24:38 -0700 (PDT) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id A551E43F75 for ; Sun, 12 Oct 2003 02:24:37 -0700 (PDT) (envelope-from stijn@pcwin002.win.tue.nl) Received: from pcwin002.win.tue.nl (localhost [127.0.0.1]) by pcwin002.win.tue.nl (8.12.10/8.12.10) with ESMTP id h9C9Oowt026281 for ; Sun, 12 Oct 2003 11:24:50 +0200 (CEST) (envelope-from stijn@pcwin002.win.tue.nl) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.12.10/8.12.10/Submit) id h9C9OoCE026280 for ports@FreeBSD.org; Sun, 12 Oct 2003 11:24:50 +0200 (CEST) (envelope-from stijn) Date: Sun, 12 Oct 2003 11:24:50 +0200 From: Stijn Hoop To: ports@FreeBSD.org Message-ID: <20031012092450.GD88224@pcwin002.win.tue.nl> References: <22159707417.20031010130423@serebryakov.spb.ru> <20031012091953.GA872@chetwood.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TiqCXmo5T1hvSQQg" Content-Disposition: inline In-Reply-To: <20031012091953.GA872@chetwood.ru> User-Agent: Mutt/1.4.1i X-Bright-Idea: Let's abolish HTML mail! Subject: Re: Ports conflicts: `lib/libiberty.a' 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, 12 Oct 2003 09:24:38 -0000 --TiqCXmo5T1hvSQQg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Oct 12, 2003 at 01:19:53PM +0400, Sergei Kolobov wrote: > There were several alternative solutions proposed on this very list - > somthing like a pkg-options file which list all options local to the > port, together with corresponding bsd.port.mk magic to present a user > with a list of options to choose from, while still allowing to > pre-define them via /etc/make.conf (or some other mechanism) and > providing defaults for BATCH=3Dyes builds. See mail/mailman or emulators/xmame files/pkg-opts files and corresponding pre-everything magic for one take on the 'documenting port Makefile knobs'. --Stijn --=20 "A mouse is a device used to point at the xterm you want to type in." -- Kim Alm, alt.sysadmin.recovery --TiqCXmo5T1hvSQQg Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/iR3iY3r/tLQmfWcRAlOCAJ91OyaY8+HhtFCISq6RO2GBdqciAQCeJpjd 2VLYtTI96onDpCCNFEPJkSI= =hTV5 -----END PGP SIGNATURE----- --TiqCXmo5T1hvSQQg-- From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 02:39:29 2003 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 2903416A4B3 for ; Sun, 12 Oct 2003 02:39:29 -0700 (PDT) Received: from outpost.globcon.net (outpost.globcon.net [62.141.88.161]) by mx1.FreeBSD.org (Postfix) with SMTP id 872AD43FA3 for ; Sun, 12 Oct 2003 02:39:27 -0700 (PDT) (envelope-from sergei@kolobov.com) Received: (qmail 60365 invoked from network); 12 Oct 2003 09:39:27 -0000 Received: from dom.kolobov.com (HELO kolobov.com) (213.247.180.114) by outpost.globcon.net (62.141.88.161) with SMTP; 12 Oct 2003 09:39:27 -0000 Received: (qmail 1200 invoked by uid 911); 12 Oct 2003 09:39:28 -0000 Date: Sun, 12 Oct 2003 13:39:28 +0400 From: Sergei Kolobov To: ports@FreeBSD.org Message-ID: <20031012093928.GB872@chetwood.ru> Mail-Followup-To: ports@FreeBSD.org References: <22159707417.20031010130423@serebryakov.spb.ru> <20031012091953.GA872@chetwood.ru> <20031012092450.GD88224@pcwin002.win.tue.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031012092450.GD88224@pcwin002.win.tue.nl> User-Agent: Mutt/1.5.3i Subject: Re: Ports conflicts: `lib/libiberty.a' 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, 12 Oct 2003 09:39:29 -0000 On 2003-10-12 at 11:24 +0200, Stijn Hoop wrote: > On Sun, Oct 12, 2003 at 01:19:53PM +0400, Sergei Kolobov wrote: > > There were several alternative solutions proposed on this very list - > > somthing like a pkg-options file which list all options local to the > > port, together with corresponding bsd.port.mk magic to present a user > > with a list of options to choose from, while still allowing to > > pre-define them via /etc/make.conf (or some other mechanism) and > > providing defaults for BATCH=yes builds. > > See mail/mailman or emulators/xmame files/pkg-opts files and corresponding > pre-everything magic for one take on the 'documenting port Makefile knobs'. This is exactly what I meant. Thank you, Stijn, for providing examples. Perhaps, some minor modifications are needed, but general idea is the same. Last time this issue was discussed portmgr promised to revisit the issue after the ports tree will be unfrozen (was it 4.7-RELEASE?). Why we always seem to discuss this during the freeze? 8-) Sergei From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 03:58:19 2003 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 688CC16A4BF; Sun, 12 Oct 2003 03:58:19 -0700 (PDT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8ECC843FAF; Sun, 12 Oct 2003 03:58:18 -0700 (PDT) (envelope-from linimon@lonesome.com) Received: from lonesome.lonesome.com (cs242746-11.austin.rr.com [24.27.46.11]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by mail.soaustin.net (Postfix) with ESMTP id 4584C14150; Sun, 12 Oct 2003 05:58:17 -0500 (CDT) From: Mark Linimon Organization: Lonesome Dove Computing Services To: Kris Kennaway , ports@freebsd.org, keith@freebsd.org, petef@freebsd.org Date: Sun, 12 Oct 2003 05:58:25 -0500 User-Agent: KMail/1.5.4 References: <20031011160058.GA70573@kyuzo.dunkelkammer.void> <20031011222301.GB11160@rot13.obsecurity.org> In-Reply-To: <20031011222301.GB11160@rot13.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310120558.25713.linimon@lonesome.com> Subject: Re: PRs assigned to inactive committer 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, 12 Oct 2003 10:58:19 -0000 See http://lonesome.dyndns.org:4802/bento/errorlogs/portsanomalies.py. mcl From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 04:09:59 2003 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 7B29E16A4BF for ; Sun, 12 Oct 2003 04:09:59 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFD1D43F75 for ; Sun, 12 Oct 2003 04:09:57 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp149-108.dialup.mtu-net.ru [62.118.149.108]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id 1ADF9FDE6B; Sun, 12 Oct 2003 15:09:54 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F89367C.7020109@ciam.ru> Date: Sun, 12 Oct 2003 15:09:48 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5b) Gecko/20030827 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sergei Kolobov References: <22159707417.20031010130423@serebryakov.spb.ru> <20031012091953.GA872@chetwood.ru> In-Reply-To: <20031012091953.GA872@chetwood.ru> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: Ports conflicts: `lib/libiberty.a' 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, 12 Oct 2003 11:09:59 -0000 Sergei Kolobov wrote: > On 2003-10-11 at 15:53 -0700, Ade Lovett wrote: > >>No. Please no. Oh lordy, no. The maze of options, variables, hacks, >>and other bits and pieces needs to be reduced, not increased. It's a >>staggeringly complex ball of wax already. > > > Agreed. Wasn't it you, Ade, who suggested going to something like: > > USE_FEATURES= autoconf automake openldap > > etc. Or at least this is what I remembered. ;) > I think this is the approach we should take and I am willing to help > with that unless you have the patches ready. ;) No, it was me. http://www.freebsd.org/cgi/getmsg.cgi?fetch=269861+273067+/usr/local/www/db/text/2003/freebsd-ports/20030824.freebsd-ports I stop from making a patch because of two points: 1) no comments :) 2) many knobs give not only port depends but some useful service too. And I didn't think over how to realize it. (May be with script like pkg-install/pkg-deinstall?). Anyway here is a place for public mind working :) -- Sem. From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 05:25:29 2003 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 AE0B116A4C1 for ; Sun, 12 Oct 2003 05:25:29 -0700 (PDT) Received: from smtp2.netcologne.de (smtp2.netcologne.de [194.8.194.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id C753243FDF for ; Sun, 12 Oct 2003 05:25:28 -0700 (PDT) (envelope-from thomas@laurel.tmseck.homedns.org) Received: from laurel.tmseck.homedns.org (xdsl-213-168-119-110.netcologne.de [213.168.119.110]) by smtp2.netcologne.de (Postfix) with SMTP id A19EB3A1CF for ; Sun, 12 Oct 2003 14:25:26 +0200 (MEST) Received: (qmail 654 invoked by uid 1001); 12 Oct 2003 12:11:19 -0000 Date: 12 Oct 2003 12:11:19 -0000 Message-ID: <20031012121119.653.qmail@laurel.tmseck.homedns.org> From: tmseck-lists@netcologne.de (Thomas-Martin Seck) To: freebsd-ports@freebsd.org Organization: private site In-Reply-To: X-Newsgroups: gmane.os.freebsd.devel.ports X-Attribution: tms Subject: Re: Ports conflicts: `lib/libiberty.a' 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, 12 Oct 2003 12:25:29 -0000 * Ade Lovett : > No. Please no. Oh lordy, no. The maze of options, variables, hacks, > and other bits and pieces needs to be reduced, not increased. It's a > staggeringly complex ball of wax already. > > An excellent task for someone who wants to learn A LOT about the ports > tree as a single entity would be to run through the entire tree, > documenting all these magical flags, and, as a first shot, start > cleaning them up. > > To take a random case in point, with no finger pointing, things like > the use of OpenLDAP has a metric shitload of different, but the same, > ways to do things, USE_LDAP, WITH_LDAP, USE_OPENLDAP, WITH_OPENLDAP, > WITH_OPENLDAP_VER, LDAP_PORT, etc.. etc.. It would like to see a namespace policy wrt make variables in ports. I propose that portmgr@ is the authority to define a set of WITH_FOO variables for "global" use and that every port should be tough to use these and additionally WITH_PORTNAME_BAR for its own "local" tunables. From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 05:56:57 2003 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 AE8B816A4B3 for ; Sun, 12 Oct 2003 05:56:57 -0700 (PDT) Received: from mailout08.sul.t-online.com (mailout08.sul.t-online.com [194.25.134.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EC7F43FA3 for ; Sun, 12 Oct 2003 05:56:56 -0700 (PDT) (envelope-from hansmann.d@t-online.de) Received: from fwd04.aul.t-online.de by mailout08.sul.t-online.com with smtp id 1A8fmJ-0005yR-01; Sun, 12 Oct 2003 14:56:55 +0200 Received: from debitel.net (X7AwaGZB8ecZTlaWGywHpkpN4bzieypgh66vQJSidArRdIMF0kDBsm@[217.236.22.66]) by fwd04.sul.t-online.com with esmtp id 1A8fmF-1jnik40; Sun, 12 Oct 2003 14:56:51 +0200 Message-ID: <3F894FA8.9000201@debitel.net> Date: Sun, 12 Oct 2003 14:57:12 +0200 From: hansmann.d@t-online.de (D.Hansmann) User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20031010 Debian/1.4-6 X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Seen: false X-ID: X7AwaGZB8ecZTlaWGywHpkpN4bzieypgh66vQJSidArRdIMF0kDBsm Subject: JFtp port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: hansmann.d@debitel.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Oct 2003 12:56:57 -0000 Hi there! I saw that you have a port of my JFtp application on your site, that's really cool :) Howevery, version 1.30 is way too old to use, there were huge amounts of bugfixes and feature enhancements made and the recent version is v1.38. I suggest you to update the version or even better to mirror the most recent jar (located at http://j-ftp.sourceforge.net/jftp.jar). Thanks and greetings, David From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 10:25:02 2003 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 2273F16A4B3 for ; Sun, 12 Oct 2003 10:25:02 -0700 (PDT) Received: from ahab.dictos.com (adsl-67-125-129-106.dsl.frsn02.pacbell.net [67.125.129.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B17C43F93 for ; Sun, 12 Oct 2003 10:25:01 -0700 (PDT) (envelope-from jason@ahab.dictos.com) Received: from ahab.dictos.com (localhost.dictos.com [127.0.0.1]) by ahab.dictos.com (8.12.9/8.12.9) with ESMTP id h9C5OKAm002460 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Sat, 11 Oct 2003 22:24:20 -0700 (PDT) (envelope-from jason@ahab.dictos.com) Received: from localhost (localhost [[UNIX: localhost]]) by ahab.dictos.com (8.12.9/8.12.9/Submit) id h9C5OEsr002459 for ports@freebsd.org; Sat, 11 Oct 2003 22:24:14 -0700 (PDT) (envelope-from jason) From: jason dictos To: ports@freebsd.org Date: Sat, 11 Oct 2003 22:24:14 -0700 User-Agent: KMail/1.5.2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310112224.14718.jason@dictos.com> Subject: Apache 1.3.27 with mod_php4 crashes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: jason@dictos.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 12 Oct 2003 17:25:02 -0000 Hi All, I recently re-compiled mod_php4 with the following options: CONFIGURE_ARGS+=--with-zlib LIB_DEPENDS+= mcrypt.8:${PORTSDIR}/security/libmcrypt CONFIGURE_ARGS+=--with-mcrypt=${LOCALBASE} LIB_DEPENDS+= c-client4.8:${PORTSDIR}/mail/cclient CONFIGURE_ARGS+=--with-imap=${LOCALBASE} CONFIGURE_ARGS+=--with-imap-ssl=${LOCALBASE} LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client CONFIGURE_ARGS+=--with-mysql=${LOCALBASE} LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20 LIB_DEPENDS+= lber.2:${PORTSDIR}/net/openldap20 CONFIGURE_ARGS+=--with-ldap=${LOCALBASE} USE_OPENSSL=yes CONFIGURE_ARGS+=--with-openssl=${OPENSSLBASE} LIB_DEPENDS+= expat.4:${PORTSDIR}/textproc/expat2 CONFIGURE_ARGS+=--with-expat-dir=${LOCALBASE} CONFIGURE_ARGS+=--with-xmlrpc LIB_DEPENDS+= xml2.5:${PORTSDIR}/textproc/libxml2 CONFIGURE_ARGS+=--with-dom=${LOCALBASE} CONFIGURE_ARGS+=--enable-ftp CONFIGURE_ARGS+=--with-curl=${LOCALBASE} BUILD_DEPENDS+= ${LOCALBASE}/lib/libcurl.a:${PORTSDIR}/ftp/curl LIB_DEPENDS+= intl.4:${PORTSDIR}/devel/gettext CONFIGURE_ARGS+=--with-gettext=${LOCALBASE} LIB_DEPENDS+= iconv.3:${PORTSDIR}/converters/libiconv CONFIGURE_ARGS+=--with-iconv=${LOCALBASE} And now if I have the mod_php4 module listed in the httpd.conf file, apache will crash out and dump the core: Oct 11 22:21:17 ahab kernel: pid 2428 (httpd), uid 0: exited on signal 11 (core dumped) I tried starting httpd with GDB in the hops that I could look at the call stack and somehow make a guess as to why it is crashing, but gdb doesn't appear to be catching the signal: (gdb) handle 11 Signal Stop Print Pass to program Description SIGSEGV Yes Yes Yes Segmentation fault Yet it appears to be handling it. Here's what happens when I do a run through gdb: (gdb) r Starting program: /usr/local/sbin/httpd (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... (no debugging symbols found)...(no debugging symbols found)...(no debugging symbols found)... Program exited normally. (gdb) Says the program exited normally?? Ideas? Thanks, -Jason From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 10:54:40 2003 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 10F6A16A4B3 for ; Sun, 12 Oct 2003 10:54:40 -0700 (PDT) Received: from mailgate.rz.uni-karlsruhe.de (mailgate.rz.uni-karlsruhe.de [129.13.64.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF48543F85 for ; Sun, 12 Oct 2003 10:54:38 -0700 (PDT) (envelope-from riggs@o503.hadiko.de) Received: from o503.hadiko.de (hadio503.hadiko.uni-karlsruhe.de [172.20.45.138]) by mailgate.rz.uni-karlsruhe.de with esmtp (Exim 3.36 #1) id 1A8kQP-0007K8-00; Sun, 12 Oct 2003 19:54:37 +0200 Received: from o503.hadiko.de (RIXT@localhost [127.0.0.1]) by o503.hadiko.de (8.12.9p1/8.12.9) with ESMTP id h9CHsaY6053715 for ; Sun, 12 Oct 2003 19:54:37 +0200 (CEST) (envelope-from riggs@o503.hadiko.de) Received: (from riggs@localhost) by o503.hadiko.de (8.12.9p1/8.12.9/Submit) id h9CHsa4f053714 for ports@freebsd.org; Sun, 12 Oct 2003 19:54:36 +0200 (CEST) (envelope-from riggs) Date: Sun, 12 Oct 2003 19:54:36 +0200 From: "Thomas E. Zander" To: ports@freebsd.org Message-ID: <20031012175436.GE52073@o503.hadiko.de> References: <200310121223.h9CCNFQF017869@Demon.vickiandstacey.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <200310121223.h9CCNFQF017869@Demon.vickiandstacey.com> Organization: RiggiServ - Ihr Partner =?iso-8859-15?Q?f?= =?iso-8859-15?Q?=FCr?= alles Delikate X-PGP-KeyID: 0xC85996CD X-PGP-Fingerprint: 4F59 75B4 4CE3 3B00 BC61 5400 8DD4 8929 C859 96CD X-Mailer: Riggisoft Ausguck Eggsbress (Build 1065980838) X-Operating-System: Riggiland BSD 5.1-RELEASE-p10 (To serve and protect.) Subject: Testers needed! [was: Portupgrade of mplayer to latest version is still broken] 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, 12 Oct 2003 17:54:40 -0000 Hi folks, can somebody please see if Stacey's problem is reproducable? I am not able to get mplayer showing the problem described below. For me it works perfectly with gui, without gui and almost any media file existing on my harddisk. So it's pretty hard to figure out without more useful information. Thanks, Riggs On Sun, 12. Oct 2003, at 13:23 +0100, Stacey Roberts wrote according to [Portupgrade of mplayer to latest version is still broken]: > >Description: > Portupgraded mplayer to the latest in ports yesterday (Sat 11th Oct 2003), but I am still having the same problems as reported in "ports/57622: Portupgrade to latest mplayer version breaks application" > > Here is the version output I have with the latest version installed via portupgrade: > > $ gmplayer -v > MPlayer 0.92-2.95.4 (C) 2000-2003 MPlayer Team > CPU: Intel Pentium III Katmai/Pentium III Xeon Tanner (Family: 6, Stepping: 3) > Detected cache-line size is 32 bytes > CPUflags: MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 0 SSE2: 0 > Compiled with Runtime CPU Detection - WARNING - this is not optimal! > To get best performance, recompile MPlayer with --disable-runtime-cpudetection > Reading config file /usr/local/share/mplayer/mplayer.conf: No such file or directory > Reading config file /home/stacey/.mplayer/config > [cfg] read config file: /home/stacey/.mplayer/gui.conf > Reading config file /home/stacey/.mplayer/gui.conf > vo: X11 running at 1280x1024 with depth 24 and 32 bpp (":0.0" => local display) > Disabling DPMS > Reading /home/stacey/.mplayer/codecs.conf: can't open '/home/stacey/.mplayer/codecs.conf': No such file or directory > Reading /usr/local/share/mplayer/codecs.conf: 50 audio & 136 video codecs > CommandLine: '-v' > get_path('font/font.desc') -> '/home/stacey/.mplayer/font/font.desc' > Font /home/stacey/.mplayer/font/font.desc loaded successfully! (206 chars) > Using MMX (with tiny bit MMX2) Optimized OnScreenDisplay > Using usleep() timing > get_path('input.conf') -> '/home/stacey/.mplayer/input.conf' > Can't open input config file /home/stacey/.mplayer/input.conf: No such file or directory > Parsing input config file /usr/local/share/mplayer/input.conf > Input config file /usr/local/share/mplayer/input.conf parsed: 52 binds > vo: X11 truecolor visual 0x23, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x24, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x25, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x26, depth 24, R:FF0000 G:FF00 B:FF > get_path('Skin') -> '/home/stacey/.mplayer/Skin' > SKIN dir 1: '/home/stacey/.mplayer/Skin' > SKIN dir 2: '/usr/local/share/mplayer/Skin' > vo: X11 truecolor visual 0x23, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x24, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x25, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x26, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x23, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x24, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x25, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x26, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x23, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x24, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x25, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x26, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x23, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x24, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x25, depth 24, R:FF0000 G:FF00 B:FF > vo: X11 truecolor visual 0x26, depth 24, R:FF0000 G:FF00 B:FF > > Again, here is a synopsis of what I'm getting: > > Running gmplayer -v brings up the output above in the terminal from which the cmd is run > The GUI player is launched > Initially, leaving the player alone, it looks fine > If I click on the folder list button the the folder listing of my home dir appears > If I attempt to reposition the GUI player, then the border around the player itself disappears, and all buttons cease to work - including the previously working folder listing button > By this time, if there is a file that is playing none of the file control buttons work (STOP, PAUSE, etc) > The player is unable to play any .WAV files, .asf & .avi files. There might well be others, but these are the ones that I have been unable to play so far. -- - "[...] I talked to the computer at great length and -- explained my view of the Universe to it" said Marvin. --- And what happened?" pressed Ford. ---- "It committed suicide." said Marvin. From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 10:57:12 2003 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 A7B8D16A4B3 for ; Sun, 12 Oct 2003 10:57:12 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4050943F75 for ; Sun, 12 Oct 2003 10:57:11 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 70980 invoked from network); 12 Oct 2003 17:57:09 -0000 Received: from stingray.liwing.de (HELO liwing.de) ([213.70.188.164]) (envelope-sender ) by mail.liwing.de (qmail-ldap-1.03) with SMTP for ; 12 Oct 2003 17:57:09 -0000 Message-ID: <3F8995F4.1070603@liwing.de> Date: Sun, 12 Oct 2003 17:57:08 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20031004 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: jason@dictos.com References: <200310112224.14718.jason@dictos.com> In-Reply-To: <200310112224.14718.jason@dictos.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: Apache 1.3.27 with mod_php4 crashes 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, 12 Oct 2003 17:57:12 -0000 jason dictos wrote: > Hi All, > > I recently re-compiled mod_php4 with the following options: There was a problem with the openssl support in php4. When did you last time updated your ports tree and when did you re-compile world and php4 (and all other openssl dependend ports)? > And now if I have the mod_php4 module listed in the httpd.conf file, apache > will crash out and dump the core: > > Oct 11 22:21:17 ahab kernel: pid 2428 (httpd), uid 0: exited on signal 11 > (core dumped) > > I tried starting httpd with GDB in the hops that I could look at the call > stack and somehow make a guess as to why it is crashing, but gdb doesn't > appear to be catching the signal: ... > Program exited normally. > (gdb) > > Says the program exited normally?? The Apache httpd starts worker daemons. Try to use # gdb httpd /path/to/core/httpd.core after you found the core file. Regards, Jens From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 11:15:28 2003 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 75D0916A4B3 for ; Sun, 12 Oct 2003 11:15:28 -0700 (PDT) Received: from lakemtao07.cox.net (lakemtao07.cox.net [68.1.17.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D58343FA3 for ; Sun, 12 Oct 2003 11:15:27 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.37.247]) by lakemtao07.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20031012181527.SXJL21605.lakemtao07.cox.net@mezz.mezzweb.com>; Sun, 12 Oct 2003 14:15:27 -0400 To: "Thomas E. Zander" References: <200310121223.h9CCNFQF017869@Demon.vickiandstacey.com> <20031012175436.GE52073@o503.hadiko.de> Message-ID: From: Jeremy Messenger Content-Type: text/plain; format=flowed; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Sun, 12 Oct 2003 13:14:21 -0500 In-Reply-To: <20031012175436.GE52073@o503.hadiko.de> User-Agent: Opera7.21/Linux M2 build 479 cc: ports@freebsd.org Subject: Re: Testers needed! [was: Portupgrade of mplayer to latest version is still broken] 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, 12 Oct 2003 18:15:28 -0000 On Sun, 12 Oct 2003 19:54:36 +0200, Thomas E. Zander wrote: > Hi folks, > > can somebody please see if Stacey's problem is reproducable? Nope, I can't reproduce his problem and I am trying to help over at bsdforums.org too. MPlayer runs great here, but it has very few annoy bugs such as error message with Metacity if I move gmplayer around and I can't do the full screen while I play movie. If I stop the movie, then do the full screen and play movie then it works fine. It seems like it's mostly related with the WM stuff. ================================= Window manager warning: Window 0x2200011 (MPlayer) sets an MWM hint indicating it isn't resizable, but sets min size 1 x 1 and max size 2147483647 x 2147483647; this doesn't make much sense. Window manager warning: Window 0x2200011 (MPlayer) sets an MWM hint indicating it isn't resizable, but sets min size 1 x 1 and max size 2147483647 x 2147483647; this doesn't make much sense. [...goes on...] ================================= Cheers, Mezz > I am not able to get mplayer showing the problem described below. > For me it works perfectly with gui, without gui and almost any media > file existing on my harddisk. > So it's pretty hard to figure out without more useful information. > > Thanks, > Riggs > > On Sun, 12. Oct 2003, at 13:23 +0100, Stacey Roberts wrote > according to [Portupgrade of mplayer to latest version is still broken]: > >> >Description: >> Portupgraded mplayer to the latest in ports yesterday (Sat 11th Oct >> 2003), but I am still having the same problems as reported in >> "ports/57622: Portupgrade to latest mplayer version breaks application" >> >> Here is the version output I have with the latest version installed via >> portupgrade: >> >> >> Again, here is a synopsis of what I'm getting: >> >> Running gmplayer -v brings up the output above in the terminal from >> which the cmd is run >> The GUI player is launched >> Initially, leaving the player alone, it looks fine >> If I click on the folder list button the the folder listing of my home >> dir appears >> If I attempt to reposition the GUI player, then the border around the >> player itself disappears, and all buttons cease to work - including the >> previously working folder listing button >> By this time, if there is a file that is playing none of the file >> control buttons work (STOP, PAUSE, etc) >> The player is unable to play any .WAV files, .asf & .avi files. There >> might well be others, but these are the ones that I have been unable to >> play so far. -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 11:30:16 2003 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 9C98C16A4B3 for ; Sun, 12 Oct 2003 11:30:16 -0700 (PDT) Received: from forrie.com (forrie.ne.client2.attbi.com [24.147.156.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6839943FE0 for ; Sun, 12 Oct 2003 11:30:12 -0700 (PDT) (envelope-from forrie@forrie.com) Received: from dell.forrie.com (wks.forrie.net. [192.168.1.21]) by forrie.com with ESMTP id h9CIU2M4054330 for ; Sun, 12 Oct 2003 14:30:03 -0400 (EDT) (envelope-from forrie@forrie.com) Message-Id: <6.0.0.22.2.20031012142900.01fcccc8@192.168.1.1> X-Sender: forrie@192.168.1.1 X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Sun, 12 Oct 2003 14:30:02 -0400 To: ports@freebsd.org From: Forrest Aldrich Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-RAVMilter-Version: 8.3.0(snapshot 20010925) (forrie.ne.client2.attbi.com) X-MailScanner-LocalNet: Found to be clean Subject: Libmcrypt 2.5.7 problem: checksum 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, 12 Oct 2003 18:30:16 -0000 FYI: >> Checksum mismatch for libmcrypt-2.5.7.tar.gz. ===> Giving up on fetching files: libmcrypt-2.5.7.tar.gz Make sure the Makefile and distinfo file (/usr/ports/security/libmcrypt/distinfo) are up to date. If you are absolutely sure you want to override this check, type "make NO_CHECKSUM=yes [other args]". *** Error code 1 distinfo: MD5 (libmcrypt-2.5.7.tar.gz) = b1be163143f8e8ed0474beeb642b3bad distfiles: MD5 (/usr/ports/distfiles/libmcrypt-2.5.7.tar.gz) = c161adbf66433fb565cec0bda971bd19 From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 11:32:43 2003 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 4CD6D16A4B3 for ; Sun, 12 Oct 2003 11:32:43 -0700 (PDT) Received: from mailgate.rz.uni-karlsruhe.de (mailgate.rz.uni-karlsruhe.de [129.13.64.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3939A43F3F for ; Sun, 12 Oct 2003 11:32:42 -0700 (PDT) (envelope-from riggs@o503.hadiko.de) Received: from o503.hadiko.de (hadio503.hadiko.uni-karlsruhe.de [172.20.45.138]) by mailgate.rz.uni-karlsruhe.de with esmtp (Exim 3.36 #1) id 1A8l1D-0003AE-00; Sun, 12 Oct 2003 20:32:39 +0200 Received: from o503.hadiko.de (RIXT@localhost [127.0.0.1]) by o503.hadiko.de (8.12.9p1/8.12.9) with ESMTP id h9CIWdY6053929; Sun, 12 Oct 2003 20:32:39 +0200 (CEST) (envelope-from riggs@o503.hadiko.de) Received: (from riggs@localhost) by o503.hadiko.de (8.12.9p1/8.12.9/Submit) id h9CIWdK5053928; Sun, 12 Oct 2003 20:32:39 +0200 (CEST) (envelope-from riggs) Date: Sun, 12 Oct 2003 20:32:39 +0200 From: "Thomas E. Zander" To: Jeremy Messenger Message-ID: <20031012183239.GG52073@o503.hadiko.de> References: <200310121223.h9CCNFQF017869@Demon.vickiandstacey.com> <20031012175436.GE52073@o503.hadiko.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rS8CxjVDS/+yyDmU" Content-Disposition: inline In-Reply-To: Organization: RiggiServ - Ihr Partner =?iso-8859-15?Q?f?= =?iso-8859-15?Q?=FCr?= alles Delikate X-PGP-KeyID: 0xC85996CD X-PGP-Fingerprint: 4F59 75B4 4CE3 3B00 BC61 5400 8DD4 8929 C859 96CD X-Mailer: Riggisoft Ausguck Eggsbress (Build 1065983270) X-Operating-System: Riggiland BSD 5.1-RELEASE-p10 (To serve and protect.) cc: ports@freebsd.org Subject: Re: Testers needed! [was: Portupgrade of mplayer to latest version is still broken] 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, 12 Oct 2003 18:32:43 -0000 --rS8CxjVDS/+yyDmU Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi Mezz, On Sun, 12. Oct 2003, at 13:14 -0500, Jeremy Messenger wrote according to [Re: Testers needed! [was: Portupgrade of mplayer to latest ve= rsion is still broken]]: > Nope, I can't reproduce his problem and I am trying to help over at=20 > bsdforums.org too. MPlayer runs great here, but it has very few annoy bug= s=20 > such as error message with Metacity if I move gmplayer around and I can't= =20 > do the full screen while I play movie. If I stop the movie, then do the= =20 > full screen and play movie then it works fine. It seems like it's mostly= =20 > related with the WM stuff. Yes, I know that thing, there are rumors that this misbehaviour will disappear in 1.0 ;-) Thanks for your help! Riggs --=20 - "[...] I talked to the computer at great length and -- explained my view of the Universe to it" said Marvin. --- And what happened?" pressed Ford. ---- "It committed suicide." said Marvin. --rS8CxjVDS/+yyDmU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQE/iZ5HjdSJKchZls0RAjmvAJ0RLwi8UL7TpaxMpwmCGYmqaACeIQCeKsKJ jEhkTPkguNgE+lulXxrlUI0= =ptSM -----END PGP SIGNATURE----- --rS8CxjVDS/+yyDmU-- From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 11:38:19 2003 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 3C17816A4BF for ; Sun, 12 Oct 2003 11:38:19 -0700 (PDT) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id CD20C43F93 for ; Sun, 12 Oct 2003 11:38:17 -0700 (PDT) (envelope-from adamw@magnesium.net) Received: (qmail 39500 invoked by uid 1252); 12 Oct 2003 18:38:17 -0000 Date: 12 Oct 2003 14:38:17 -0400 Date: Sun, 12 Oct 2003 14:38:17 -0400 From: Adam Weinberger To: Jeremy Messenger Message-ID: <20031012183817.GX96543@toxic.magnesium.net> Mail-Followup-To: Adam Weinberger , Jeremy Messenger , "Thomas E. Zander" , ports@freebsd.org References: <200310121223.h9CCNFQF017869@Demon.vickiandstacey.com> <20031012175436.GE52073@o503.hadiko.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: ports@freebsd.org cc: "Thomas E. Zander" Subject: Re: Testers needed! [was: Portupgrade of mplayer to latest version is still broken] 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, 12 Oct 2003 18:38:19 -0000 >> (10.12.2003 @ 1414 PST): Jeremy Messenger said, in 2.8K: << > On Sun, 12 Oct 2003 19:54:36 +0200, Thomas E. Zander wrote: > > >Hi folks, > > > >can somebody please see if Stacey's problem is reproducable? > > Nope, I can't reproduce his problem and I am trying to help over at > bsdforums.org too. MPlayer runs great here, but it has very few annoy bugs > such as error message with Metacity if I move gmplayer around and I can't > do the full screen while I play movie. If I stop the movie, then do the > full screen and play movie then it works fine. It seems like it's mostly > related with the WM stuff. I've had good luck getting it fullscreen by selecting "fullscreen" from the menu instead of by hitting 'f'. This is under fluxbox-devel FWIW. # Adam > > ================================= > Window manager warning: Window 0x2200011 (MPlayer) sets an MWM hint > indicating it isn't resizable, but sets min size 1 x 1 and max size > 2147483647 x 2147483647; this doesn't make much sense. > Window manager warning: Window 0x2200011 (MPlayer) sets an MWM hint > indicating it isn't resizable, but sets min size 1 x 1 and max size > 2147483647 x 2147483647; this doesn't make much sense. > [...goes on...] > ================================= > > Cheers, > Mezz > > >I am not able to get mplayer showing the problem described below. > >For me it works perfectly with gui, without gui and almost any media > >file existing on my harddisk. > >So it's pretty hard to figure out without more useful information. > > > >Thanks, > >Riggs > > > >On Sun, 12. Oct 2003, at 13:23 +0100, Stacey Roberts wrote > >according to [Portupgrade of mplayer to latest version is still broken]: > > > >>>Description: > >>Portupgraded mplayer to the latest in ports yesterday (Sat 11th Oct > >>2003), but I am still having the same problems as reported in > >>"ports/57622: Portupgrade to latest mplayer version breaks application" > >> > >>Here is the version output I have with the latest version installed via > >>portupgrade: > >> > > >> > >>Again, here is a synopsis of what I'm getting: > >> > >>Running gmplayer -v brings up the output above in the terminal from > >>which the cmd is run > >>The GUI player is launched > >>Initially, leaving the player alone, it looks fine > >>If I click on the folder list button the the folder listing of my home > >>dir appears > >>If I attempt to reposition the GUI player, then the border around the > >>player itself disappears, and all buttons cease to work - including the > >>previously working folder listing button > >>By this time, if there is a file that is playing none of the file > >>control buttons work (STOP, PAUSE, etc) > >>The player is unable to play any .WAV files, .asf & .avi files. There > >>might well be others, but these are the ones that I have been unable to > >>play so far. > > > -- > bsdforums.org 's moderator, mezz. > _______________________________________________ > 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" >> end of "Re: Testers needed! [was: Portupgrade of mplayer to latest version is still broken]" from Jeremy Messenger << -- Adam Weinberger vectors.cx >> adam@vectors.cx >> http://www.vectors.cx magnesium.net << adamw@magnesium.net << http://www.magnesium.net/~adamw FreeBSD >> adamw@FreeBSD.org >> http://people.freebsd.org/~adamw #vim:set ts=8: 8-char tabs prevent tooth decay. From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 11:48:07 2003 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 19C8C16A4B3; Sun, 12 Oct 2003 11:48:07 -0700 (PDT) Received: from lakemtao06.cox.net (lakemtao06.cox.net [68.1.17.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0010943FAF; Sun, 12 Oct 2003 11:48:05 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.37.247]) by lakemtao06.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20031012184805.VZCM10862.lakemtao06.cox.net@mezz.mezzweb.com>; Sun, 12 Oct 2003 14:48:05 -0400 To: Adam Weinberger References: <200310121223.h9CCNFQF017869@Demon.vickiandstacey.com> <20031012175436.GE52073@o503.hadiko.de> <20031012183817.GX96543@toxic.magnesium.net> Message-ID: From: Jeremy Messenger Content-Type: text/plain; format=flowed; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Sun, 12 Oct 2003 13:46:59 -0500 In-Reply-To: <20031012183817.GX96543@toxic.magnesium.net> User-Agent: Opera7.21/Linux M2 build 479 cc: ports@freebsd.org cc: "Thomas E. Zander" Subject: Re: Testers needed! [was: Portupgrade of mplayer to latest version is still broken] 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, 12 Oct 2003 18:48:07 -0000 On Sun, 12 Oct 2003 14:38:17 -0400, Adam Weinberger wrote: >>> (10.12.2003 @ 1414 PST): Jeremy Messenger said, in 2.8K: << >> On Sun, 12 Oct 2003 19:54:36 +0200, Thomas E. Zander >> wrote: >> >> >Hi folks, >> > >> >can somebody please see if Stacey's problem is reproducable? >> >> Nope, I can't reproduce his problem and I am trying to help over at >> bsdforums.org too. MPlayer runs great here, but it has very few annoy >> bugs >> such as error message with Metacity if I move gmplayer around and I >> can't >> do the full screen while I play movie. If I stop the movie, then do the >> full screen and play movie then it works fine. It seems like it's mostly >> related with the WM stuff. > > I've had good luck getting it fullscreen by selecting "fullscreen" from > the menu instead of by hitting 'f'. This is under fluxbox-devel FWIW. It runs fine with fluxbox-devel (0.9.6pre9, my own modified port) here too, but not with Metacity/Gnome2. Look forward for 1.0 with the fixes stuff, thanks for info Thomas. Cheers, Mezz > # Adam > > >> >> ================================= >> Window manager warning: Window 0x2200011 (MPlayer) sets an MWM hint >> indicating it isn't resizable, but sets min size 1 x 1 and max size >> 2147483647 x 2147483647; this doesn't make much sense. >> Window manager warning: Window 0x2200011 (MPlayer) sets an MWM hint >> indicating it isn't resizable, but sets min size 1 x 1 and max size >> 2147483647 x 2147483647; this doesn't make much sense. >> [...goes on...] >> ================================= >> >> Cheers, >> Mezz >> >> >I am not able to get mplayer showing the problem described below. >> >For me it works perfectly with gui, without gui and almost any media >> >file existing on my harddisk. >> >So it's pretty hard to figure out without more useful information. >> > >> >Thanks, >> >Riggs >> > >> >On Sun, 12. Oct 2003, at 13:23 +0100, Stacey Roberts wrote >> >according to [Portupgrade of mplayer to latest version is still >> broken]: >> > >> >>>Description: >> >>Portupgraded mplayer to the latest in ports yesterday (Sat 11th Oct >> >>2003), but I am still having the same problems as reported in >> >>"ports/57622: Portupgrade to latest mplayer version breaks >> application" >> >> >> >>Here is the version output I have with the latest version installed >> via >> >>portupgrade: >> >> >> >> >> >> >>Again, here is a synopsis of what I'm getting: >> >> >> >>Running gmplayer -v brings up the output above in the terminal from >> >>which the cmd is run >> >>The GUI player is launched >> >>Initially, leaving the player alone, it looks fine >> >>If I click on the folder list button the the folder listing of my home >> >>dir appears >> >>If I attempt to reposition the GUI player, then the border around the >> >>player itself disappears, and all buttons cease to work - including >> the >> >>previously working folder listing button >> >>By this time, if there is a file that is playing none of the file >> >>control buttons work (STOP, PAUSE, etc) >> >>The player is unable to play any .WAV files, .asf & .avi files. There >> >>might well be others, but these are the ones that I have been unable >> to >> >>play so far. >> >> >> -- >> bsdforums.org 's moderator, mezz. > > -- > Adam Weinberger > vectors.cx >> adam@vectors.cx >> http://www.vectors.cx > magnesium.net << adamw@magnesium.net << http://www.magnesium.net/~adamw > FreeBSD >> adamw@FreeBSD.org >> http://people.freebsd.org/~adamw > #vim:set ts=8: 8-char tabs prevent tooth decay. -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 17:10:23 2003 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 EEC3016A4B3 for ; Sun, 12 Oct 2003 17:10:23 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id F16E943FBD for ; Sun, 12 Oct 2003 17:10:22 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 804FD66DA5 for ; Sun, 12 Oct 2003 17:10:18 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 6146EB8F; Sun, 12 Oct 2003 17:10:18 -0700 (PDT) Date: Sun, 12 Oct 2003 17:10:18 -0700 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20031013001018.GK31974@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Xsn3knLL3qrmRbVI" Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: [kris@FreeBSD.org: cvs commit: ports/www/udmsearch Makefile] 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, 13 Oct 2003 00:10:24 -0000 --Xsn3knLL3qrmRbVI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable FYI. Can you please investigate? If this port is still broken in 3 months it will be removed from the ports collection. Kris ----- Forwarded message from Kris Kennaway ----- X-Original-To: kkenn@localhost Delivered-To: kkenn@localhost.obsecurity.org Delivered-To: kris@freebsd.org Delivered-To: ports-committers@freebsd.org From: Kris Kennaway Date: Sun, 12 Oct 2003 15:42:39 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: ports/www/udmsearch Makefile X-FreeBSD-CVS-Branch: HEAD Precedence: bulk X-Loop: FreeBSD.ORG X-UIDL: 0761363338e152ca39f9925c909806e2 kris 2003/10/12 15:42:39 PDT FreeBSD ports repository Modified files: www/udmsearch Makefile=20 Log: BROKEN: Does not build =20 Revision Changes Path 1.22 +2 -0 ports/www/udmsearch/Makefile http://cvsweb.FreeBSD.org/ports/www/udmsearch/Makefile.diff?r1=3D1.21&r2=3D= 1.22 ----- End forwarded message ----- --Xsn3knLL3qrmRbVI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/ie1pWry0BWjoQKURAgMMAKC4860s0noLZaCsZZsPZpERY5XhTgCgmsMx 5mrp26lLDErx0l5pFJjcVh4= =Zq2U -----END PGP SIGNATURE----- --Xsn3knLL3qrmRbVI-- From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 18:59:42 2003 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 A937516A4B3; Sun, 12 Oct 2003 18:59:42 -0700 (PDT) Received: from phil.netxp.com.au (dsl-2.217.240.220.dsl.comindico.com.au [220.240.217.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D83C43F75; Sun, 12 Oct 2003 18:59:41 -0700 (PDT) (envelope-from phil@netxp.com.au) Received: from netxp.com.au (unknown [192.168.101.15]) by phil.netxp.com.au (Postfix) with ESMTP id A74C4EE51C; Mon, 13 Oct 2003 09:54:24 +1000 (EST) Message-ID: <3F89E9A7.2060305@netxp.com.au> Date: Mon, 13 Oct 2003 09:54:15 +1000 From: Phil Grainger User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3b) Gecko/20030210 X-Accept-Language: en-us, en MIME-Version: 1.0 To: krion@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: trickle-1.06 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, 13 Oct 2003 01:59:42 -0000 /usr/local/bin/trickled trickled: Skipping configuration file: ${prefix}/etc/trickled.conf: No such file or directory 4.9 -- Phil Grainger ---------------------------------------------------------------------------- netxp.com.au user support technical services http://netxp.com.au/ Unlimited ADSL from $69.95 p/m ---------------------------------------------------------------------------- From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 20:29:20 2003 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 62D4E16A4B3 for ; Sun, 12 Oct 2003 20:29:20 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECD8843FA3 for ; Sun, 12 Oct 2003 20:29:18 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp136-78.dialup.mtu-net.ru [62.118.136.78]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id AB53AFF7A2; Mon, 13 Oct 2003 07:29:16 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F8A1C07.8090804@ciam.ru> Date: Mon, 13 Oct 2003 07:29:11 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5b) Gecko/20030827 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Kris Kennaway References: <20031013001018.GK31974@rot13.obsecurity.org> In-Reply-To: <20031013001018.GK31974@rot13.obsecurity.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: [kris@FreeBSD.org: cvs commit: ports/www/udmsearch Makefile] 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, 13 Oct 2003 03:29:20 -0000 Kris Kennaway wrote: > FYI. Can you please investigate? If this port is still broken in 3 > months it will be removed from the ports collection. > > Kris I guess it's an old and obsoleted version of www/mnogosearch. -- Sem. From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 20:46:24 2003 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 F128D16A4B3; Sun, 12 Oct 2003 20:46:24 -0700 (PDT) Received: from doom.homeunix.org (9-254.dialup.comset.net [213.172.9.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4014E43FA3; Sun, 12 Oct 2003 20:44:12 -0700 (PDT) (envelope-from igor@doom.homeunix.org) Received: from doom.homeunix.org (localhost [127.0.0.1]) by doom.homeunix.org (8.12.9p2/8.12.9) with ESMTP id h9D3cCLF050181; Mon, 13 Oct 2003 07:40:38 +0400 (MSD) (envelope-from igor@doom.homeunix.org) Received: (from igor@localhost) by doom.homeunix.org (8.12.9p2/8.12.9/Submit) id h9D3axCW050180; Mon, 13 Oct 2003 07:36:59 +0400 (MSD) (envelope-from igor) Date: Mon, 13 Oct 2003 07:36:59 +0400 From: Igor Pokrovsky To: freebsd-ports@freebsd.org Message-ID: <20031013033659.GA50163@doom.homeunix.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Accept-Language: ru X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on doom.homeunix.org cc: trevor@freebsd.org Subject: mail/fetchyahoo start failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Igor Pokrovsky List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 03:46:25 -0000 I'm getting the following error while trying to start mail/fetchyahoo : doom# fetchyahoo.pl Can't locate HTTP/Request/Common.pm in @INC (@INC contains: /usr/local/lib/perl5/site_perl/5.005/i386-freebsd /usr/local/lib/perl5/site_perl/5.005 . /usr/libdata/perl/5.00503/mach /usr/libdata/perl/5.00503) at /usr/local/bin/fetchyahoo.pl line 44. BEGIN failed--compilation aborted at /usr/local/bin/fetchyahoo.pl line 44. doom# uname -a FreeBSD doom.homeunix.org 4.9-RC FreeBSD 4.9-RC #2: Sun Oct 12 15:16:19 MSD 2003 root@doom.homeunix.org:/usr/obj/usr/src/sys/KERNEL i386 Any hints are welcome. -ip -- "Our vision is to speed up time, eventually eliminating it." -- Alex Schure From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 22:39:48 2003 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 01CA816A4B3 for ; Sun, 12 Oct 2003 22:39:48 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24FA743F3F for ; Sun, 12 Oct 2003 22:39:47 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 3FFB766D74; Sun, 12 Oct 2003 22:39:46 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 1C150B89; Sun, 12 Oct 2003 22:39:45 -0700 (PDT) Date: Sun, 12 Oct 2003 22:39:45 -0700 From: Kris Kennaway To: Christopher Hall Message-ID: <20031013053945.GA34111@rot13.obsecurity.org> References: <20031009025935.GA5427@rot13.obsecurity.org> <200310130529.h9D5TZTf003048@x4.tucheng.generalresources.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zhXaljGHf11kAtnf" Content-Disposition: inline In-Reply-To: <200310130529.h9D5TZTf003048@x4.tucheng.generalresources.com> User-Agent: Mutt/1.4.1i cc: freebsd-ports@freebsd.org cc: Kris Kennaway Subject: Re: feature request 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, 13 Oct 2003 05:39:48 -0000 --zhXaljGHf11kAtnf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 13, 2003 at 01:29:35PM +0800, Christopher Hall wrote: >=20 > In message <20031009025935.GA5427@rot13.obsecurity.org>, > Kris Kennaway writes: > > > >It should be documented, yes. Evidently it was overlooked in the > >initial submission. Can you please develop a patch and file a PR? > > > >Kris > > >=20 > I filed a simple patch as ports/57928 after checking that docs/57838 > did not address the bsd.ports.mk Great, thanks! Kris --zhXaljGHf11kAtnf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/ijqhWry0BWjoQKURApVRAJ0XYAFH792uzTOIKyZTGVGJaDSw5gCgvy5R pdCp3J71tOhyrne39sB1GzY= =walP -----END PGP SIGNATURE----- --zhXaljGHf11kAtnf-- From owner-freebsd-ports@FreeBSD.ORG Sun Oct 12 22:42:14 2003 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 5FE7C16A4B3 for ; Sun, 12 Oct 2003 22:42:14 -0700 (PDT) Received: from mail.generalresources.com (adsl-211-78-137-219.NH.sparqnet.net [211.78.137.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id A790F43FBF for ; Sun, 12 Oct 2003 22:42:11 -0700 (PDT) (envelope-from freebsd@generalresources.com) Received: from mail.generalresources.com (localhost [127.0.0.1]) h9D5Tapr034958 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 13 Oct 2003 13:29:36 +0800 (CST) (envelope-from freebsd@generalresources.com) Received: (from root@localhost)h9D5TalV034954 for freebsd-ports@freebsd.org.procmail; Mon, 13 Oct 2003 13:29:36 +0800 (CST) (envelope-from freebsd@generalresources.com) Received: from server.tucheng.generalresources.com (client-253.lan.generalresources.com [192.168.1.253])h9D5TZpr034948 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 13 Oct 2003 13:29:36 +0800 (CST) (envelope-from freebsd@generalresources.com) Received: from x4.tucheng.generalresources.com (sv [192.168.2.4]) h9D5TZrL045916; Mon, 13 Oct 2003 13:29:35 +0800 (CST) (envelope-from freebsd@generalresources.com) Received: from x4.tucheng.generalresources.com (localhost [127.0.0.1]) h9D5TZTf003048; Mon, 13 Oct 2003 13:29:35 +0800 (CST) (envelope-from freebsd@generalresources.com) Message-Id: <200310130529.h9D5TZTf003048@x4.tucheng.generalresources.com> To: Kris Kennaway From: Christopher Hall In-Reply-To: Message from Kris Kennaway <20031009025935.GA5427@rot13.obsecurity.org> Content-transfer-encoding: 8bit Content-type: text/plain; charset=big5 X-Operating-System: FreeBSD X-Mailer: Exmh Date: Mon, 13 Oct 2003 13:29:35 +0800 cc: freebsd-ports@freebsd.org Subject: Re: feature request X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Christopher Hall List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 05:42:14 -0000 In message <20031009025935.GA5427@rot13.obsecurity.org>, Kris Kennaway writes: > >It should be documented, yes. Evidently it was overlooked in the >initial submission. Can you please develop a patch and file a PR? > >Kris > I filed a simple patch as ports/57928 after checking that docs/57838 did not address the bsd.ports.mk --- Christopher Hall From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 01:01:28 2003 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 1A75116A4B3 for ; Mon, 13 Oct 2003 01:01:28 -0700 (PDT) Received: from office.LF.net (office.LF.net [212.9.190.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32FDC43FB1 for ; Mon, 13 Oct 2003 01:01:27 -0700 (PDT) (envelope-from krion@voodoo.oberon.net) Received: from voodoo.oberon.net ([212.118.165.100]) by office.LF.net with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.22) id 1A8xdx-000Kp4-5D for ports@FreeBSD.org; Mon, 13 Oct 2003 10:01:29 +0200 Received: from krion by voodoo.oberon.net with local (Exim 4.22) id 1A8xds-0004lv-Sj; Mon, 13 Oct 2003 10:01:24 +0200 Date: Mon, 13 Oct 2003 10:01:24 +0200 From: Kirill Ponomarew To: Phil Grainger Message-ID: <20031013080124.GB2845@voodoo.oberon.net> References: <3F89E9A7.2060305@netxp.com.au> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="neYutvxvOLaeuPCA" Content-Disposition: inline In-Reply-To: <3F89E9A7.2060305@netxp.com.au> Sender: Kirill Ponomarew cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: trickle-1.06 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, 13 Oct 2003 08:01:28 -0000 --neYutvxvOLaeuPCA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Mon, Oct 13, 2003 at 09:54:15AM +1000, Phil Grainger wrote: >=20 > /usr/local/bin/trickled > trickled: Skipping configuration file: ${prefix}/etc/trickled.conf: No=20 > such file or directory Please read manpages to trickled and trickled.conf. You need to specify -c to start the daemon.=20 -Kirill --neYutvxvOLaeuPCA Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/ilvUQC1G6a60JuURArdaAJ9lxTWLpa4ZFNlX11tGjOuEfxf+LgCeMyxj jWpHEDhahU+okHNBDJCY3EA= =6zEc -----END PGP SIGNATURE----- --neYutvxvOLaeuPCA-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 02:35:29 2003 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 918E116A4B3 for ; Mon, 13 Oct 2003 02:35:29 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD0D943F3F for ; Mon, 13 Oct 2003 02:35:28 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h9D9ZRGZ094593 for ; Mon, 13 Oct 2003 05:35:27 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9D9ZRXw001981 for ports@FreeBSD.org; Mon, 13 Oct 2003 05:35:27 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 05:35:27 -0400 (EDT) From: Kris Kennaway Message-Id: <200310130935.h9D9ZRXw001981@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 13 Oct 2003 09:35:29 -0000 INDEX build failed with errors: Out of memory! Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U Tools/portbuild/scripts/processfail U biology/platon/Makefile U devel/libticalcs/Makefile ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U editors/zoinks/Makefile U emulators/fmsx/files/patch-ac ? mail/log U misc/gone/Makefile U misc/gone/distinfo ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U sysutils/gkrellm2/Makefile U sysutils/gkrellm2/distinfo U sysutils/gkrellm2/files/patch-af ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 02:48:20 2003 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 163B616A4B3 for ; Mon, 13 Oct 2003 02:48:20 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BB3443FB1 for ; Mon, 13 Oct 2003 02:48:17 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h9D9mGGZ036680 for ; Mon, 13 Oct 2003 05:48:16 -0400 (EDT) (envelope-from kris@9ball.rtp.freebsd.org) Received: (from kris@localhost) by 9ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9D9mGJe071680 for ports@FreeBSD.org; Mon, 13 Oct 2003 05:48:16 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 05:48:16 -0400 (EDT) From: Kris Kennaway Message-Id: <200310130948.h9D9mGJe071680@9ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 13 Oct 2003 09:48:20 -0000 INDEX build failed with errors: Out of memory! Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U Tools/portbuild/scripts/processfail U biology/platon/Makefile ? devel/glade2/make.core ? devel/gnomedebug/make.core U devel/libticalcs/Makefile ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U editors/zoinks/Makefile U emulators/fmsx/files/patch-ac ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core ? misc/flyway/make.core U misc/gone/Makefile U misc/gone/distinfo ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core ? net/powerdns/Makefile.inc ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U sysutils/gkrellm2/Makefile U sysutils/gkrellm2/distinfo U sysutils/gkrellm2/files/patch-af ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 03:25:08 2003 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 536C116A4B3 for ; Mon, 13 Oct 2003 03:25:08 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AB4B43F75 for ; Mon, 13 Oct 2003 03:25:07 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 93EEF66DF6 for ; Mon, 13 Oct 2003 03:25:06 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 69F78B8C; Mon, 13 Oct 2003 03:25:06 -0700 (PDT) Date: Mon, 13 Oct 2003 03:25:06 -0700 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20031013102506.GF39851@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="tmoQ0UElFV5VgXgH" Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: hdf5-1.4.5 broken on 5.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: Mon, 13 Oct 2003 10:25:08 -0000 --tmoQ0UElFV5VgXgH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline http://211.43.211.135/errorlogs/i386-5-latest/hdf5-1.4.5.log Can you please investigate and/or report to the developers? Kris --tmoQ0UElFV5VgXgH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/in2BWry0BWjoQKURAsc7AJ9bjfgaww4QqbwltzU3WT5CHhb7SgCeIrvL 6PA6nTPwzwOxd5Y4OkaIe2M= =iz1E -----END PGP SIGNATURE----- --tmoQ0UElFV5VgXgH-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 03:26:55 2003 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 5F4DD16A4BF for ; Mon, 13 Oct 2003 03:26:55 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99A3B43FAF for ; Mon, 13 Oct 2003 03:26:53 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id C6BB866E42 for ; Mon, 13 Oct 2003 03:26:49 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id A7519B8C; Mon, 13 Oct 2003 03:26:49 -0700 (PDT) Date: Mon, 13 Oct 2003 03:26:49 -0700 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20031013102649.GJ39851@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="07FIeBX8hApXX6Bi" Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: py23-mcrypt-1.0 broken on 5.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: Mon, 13 Oct 2003 10:26:55 -0000 X-List-Received-Date: Mon, 13 Oct 2003 10:26:55 -0000 --07FIeBX8hApXX6Bi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline http://211.43.211.135/errorlogs/i386-5-latest/py23-mcrypt-1.0.log Can you please investigate and/or report to the developers? Kris --07FIeBX8hApXX6Bi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/in3pWry0BWjoQKURAm2XAJ97a2JOR7JEF0Yf2L+A5rNqRqjXZQCgioFD HVxMkREe21x8eV3WuMbfufo= =aONt -----END PGP SIGNATURE----- --07FIeBX8hApXX6Bi-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 03:27:12 2003 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 EE47C16A4BF for ; Mon, 13 Oct 2003 03:27:12 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FEFE43FDD for ; Mon, 13 Oct 2003 03:27:12 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 9B0DE66DFF for ; Mon, 13 Oct 2003 03:27:11 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 76F17B8C; Mon, 13 Oct 2003 03:27:11 -0700 (PDT) Date: Mon, 13 Oct 2003 03:27:11 -0700 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20031013102711.GK39851@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="k18oBAwMkTg3OUap" Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: tcplist-2.2_1 broken on 5.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: Mon, 13 Oct 2003 10:27:13 -0000 --k18oBAwMkTg3OUap Content-Type: text/plain; charset=us-ascii Content-Disposition: inline http://211.43.211.135/errorlogs/i386-5-latest/tcplist-2.2_1.log Can you please investigate and/or report to the developers? Kris --k18oBAwMkTg3OUap Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/in3+Wry0BWjoQKURAsATAJ9My7FgdwEJWpDhKc8beR3pdDzU4gCdGEKc pW19H9pK8ScdQPbERf7YUnA= =hpBd -----END PGP SIGNATURE----- --k18oBAwMkTg3OUap-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 03:27:36 2003 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 B2FB716A4B3 for ; Mon, 13 Oct 2003 03:27:36 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4805743F93 for ; Mon, 13 Oct 2003 03:27:34 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id A14C966E5C for ; Mon, 13 Oct 2003 03:27:32 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 84A8EB8C; Mon, 13 Oct 2003 03:27:32 -0700 (PDT) Date: Mon, 13 Oct 2003 03:27:32 -0700 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20031013102732.GL39851@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="w2xx78T4DcG3O+DJ" Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: py23-mhash-1.0 broken on 5.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: Mon, 13 Oct 2003 10:27:36 -0000 --w2xx78T4DcG3O+DJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline http://211.43.211.135/errorlogs/i386-5-latest/py23-mhash-1.0.log Can you please investigate and/or report to the developers? Kris --w2xx78T4DcG3O+DJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/in4TWry0BWjoQKURAtYTAKDldCdEtGsUzGwb1AeqcGqavlnsuACgh8aM CgNq3nTBeCBV88w9WlcMLwI= =wUdC -----END PGP SIGNATURE----- --w2xx78T4DcG3O+DJ-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 03:31:50 2003 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 4886A16A4B3 for ; Mon, 13 Oct 2003 03:31:50 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86C1143F85 for ; Mon, 13 Oct 2003 03:31:49 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id D662D66E48 for ; Mon, 13 Oct 2003 03:31:48 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id B8B1FB8C; Mon, 13 Oct 2003 03:31:48 -0700 (PDT) Date: Mon, 13 Oct 2003 03:31:48 -0700 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20031013103148.GT39851@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="YqKeQn+qkMVHQmbT" Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: tya-1.7.3 broken on 5.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: Mon, 13 Oct 2003 10:31:50 -0000 --YqKeQn+qkMVHQmbT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline http://211.43.211.135/errorlogs/i386-5-latest/tya-1.7.3.log Can you please investigate and/or report to the developers? Kris --YqKeQn+qkMVHQmbT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/in8UWry0BWjoQKURAn9jAKCfRBtSUYpES5MzlGvrskWf14gwmwCfeB7R Dcx9BMevpxDcI3KNXpdmdUM= =wunn -----END PGP SIGNATURE----- --YqKeQn+qkMVHQmbT-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 03:35:18 2003 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 BD58316A4B3 for ; Mon, 13 Oct 2003 03:35:18 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDF4E43F75 for ; Mon, 13 Oct 2003 03:35:17 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 450ED66E5C; Mon, 13 Oct 2003 03:35:17 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id E24A6B62; Mon, 13 Oct 2003 03:35:16 -0700 (PDT) Date: Mon, 13 Oct 2003 03:35:16 -0700 From: Kris Kennaway To: Kris Kennaway Message-ID: <20031013103516.GA40287@rot13.obsecurity.org> References: <200310130935.h9D9ZRXw001981@8ball.rtp.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="AhhlLboLdkugWU4S" Content-Disposition: inline In-Reply-To: <200310130935.h9D9ZRXw001981@8ball.rtp.freebsd.org> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: INDEX build failed 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, 13 Oct 2003 10:35:18 -0000 X-List-Received-Date: Mon, 13 Oct 2003 10:35:18 -0000 --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Oct 13, 2003 at 05:35:27AM -0400, Kris Kennaway wrote: > INDEX build failed with errors: > Out of memory! Someone introduced a dependency loop again, in one of the following commits: > U biology/platon/Makefile > U devel/libticalcs/Makefile > U editors/zoinks/Makefile > U misc/gone/Makefile > U sysutils/gkrellm2/Makefile Kris --AhhlLboLdkugWU4S Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/in/kWry0BWjoQKURApTFAKD59SXAtLgbIxkBdPFtFxZ1mi+MRQCggxAG LDmP5F1hFtLxQjeorPmwiDc= =HoSR -----END PGP SIGNATURE----- --AhhlLboLdkugWU4S-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 03:35:57 2003 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 E9E9B16A4B3 for ; Mon, 13 Oct 2003 03:35:57 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 158C743FA3 for ; Mon, 13 Oct 2003 03:35:57 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h9DAZuGZ066142 for ; Mon, 13 Oct 2003 06:35:56 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9DAZucO066765 for ports@FreeBSD.org; Mon, 13 Oct 2003 06:35:56 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 06:35:56 -0400 (EDT) From: Kris Kennaway Message-Id: <200310131035.h9DAZucO066765@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 13 Oct 2003 10:35:58 -0000 INDEX build failed with errors: Out of memory! Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 03:41:06 2003 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 EE86D16A4B3 for ; Mon, 13 Oct 2003 03:41:05 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAF1943FB1 for ; Mon, 13 Oct 2003 03:41:02 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 3D95F66DFF; Mon, 13 Oct 2003 03:41:02 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id DBE34B62; Mon, 13 Oct 2003 03:41:01 -0700 (PDT) Date: Mon, 13 Oct 2003 03:41:01 -0700 From: Kris Kennaway To: Kris Kennaway Message-ID: <20031013104101.GA40463@rot13.obsecurity.org> References: <200310130935.h9D9ZRXw001981@8ball.rtp.freebsd.org> <20031013103516.GA40287@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pf9I7BMVVzbSWLtt" Content-Disposition: inline In-Reply-To: <20031013103516.GA40287@rot13.obsecurity.org> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: INDEX build failed 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, 13 Oct 2003 10:41:06 -0000 --pf9I7BMVVzbSWLtt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 13, 2003 at 03:35:16AM -0700, Kris Kennaway wrote: > On Mon, Oct 13, 2003 at 05:35:27AM -0400, Kris Kennaway wrote: > > INDEX build failed with errors: > > Out of memory! >=20 > Someone introduced a dependency loop again, in one of the following commi= ts: >=20 > > U editors/zoinks/Makefile And the winner is...edwin! +LIB_DEPENDS=3Dintl.5:${PORTSDIR}/editors/zoinks Kris --pf9I7BMVVzbSWLtt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/ioE9Wry0BWjoQKURApvCAJ4zKPtJMZTWNTE3zON/dBBL8cuNvQCfX1cu enwFw02gANJvov+2rhMdM5s= =9eOX -----END PGP SIGNATURE----- --pf9I7BMVVzbSWLtt-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 03:58:43 2003 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 503E816A4B3 for ; Mon, 13 Oct 2003 03:58:43 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78EF343FA3 for ; Mon, 13 Oct 2003 03:58:42 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h9DAwgGZ066175 for ; Mon, 13 Oct 2003 06:58:42 -0400 (EDT) (envelope-from kris@9ball.rtp.freebsd.org) Received: (from kris@localhost) by 9ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9DAwfVK047617 for ports@FreeBSD.org; Mon, 13 Oct 2003 06:58:41 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 06:58:41 -0400 (EDT) From: Kris Kennaway Message-Id: <200310131058.h9DAwfVK047617@9ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 13 Oct 2003 10:58:43 -0000 INDEX build failed with errors: Out of memory! Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? devel/glade2/make.core ? devel/gnomedebug/make.core ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core ? misc/flyway/make.core ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core ? net/powerdns/Makefile.inc ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 04:20:02 2003 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 8910C16A4B3 for ; Mon, 13 Oct 2003 04:20:02 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 665FC43FB1 for ; Mon, 13 Oct 2003 04:20:01 -0700 (PDT) (envelope-from edwin@mavetju.org) Received: from extmail.barnet.com.au (tim.direct.int.barnet.com.au [10.10.10.2]) by mag.barnet.com.au (Postfix) with ESMTP id DA1231B5B; Mon, 13 Oct 2003 21:21:07 +1000 (EST) X-Viruscan-Id: <3F8A8A5A000080CF01E9C97E@VIRUSCAN-127.0.0.1> Received: from k7.mavetju (tim.barnet.com.au [218.185.88.1]) by extmail.barnet.com.au (Postfix) with ESMTP id AA98C1EE1; Mon, 13 Oct 2003 21:19:53 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id B0B496A7101; Mon, 13 Oct 2003 21:19:52 +1000 (EST) Date: Mon, 13 Oct 2003 21:19:52 +1000 From: Edwin Groothuis To: Kris Kennaway Message-ID: <20031013111952.GX59397@k7.mavetju> References: <200310130935.h9D9ZRXw001981@8ball.rtp.freebsd.org> <20031013103516.GA40287@rot13.obsecurity.org> <20031013104101.GA40463@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031013104101.GA40463@rot13.obsecurity.org> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: INDEX build failed 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, 13 Oct 2003 11:20:02 -0000 On Mon, Oct 13, 2003 at 03:41:01AM -0700, Kris Kennaway wrote: > On Mon, Oct 13, 2003 at 03:35:16AM -0700, Kris Kennaway wrote: > > On Mon, Oct 13, 2003 at 05:35:27AM -0400, Kris Kennaway wrote: > > > INDEX build failed with errors: > > > Out of memory! > > > > Someone introduced a dependency loop again, in one of the following commits: > > > > > U editors/zoinks/Makefile > > And the winner is...edwin! > > +LIB_DEPENDS=intl.5:${PORTSDIR}/editors/zoinks Heh... the funny thing is, I checked all the ports except this one because I knew what was changed in it. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 04:29:51 2003 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 7319916A4B3 for ; Mon, 13 Oct 2003 04:29:51 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DCD143F75 for ; Mon, 13 Oct 2003 04:29:49 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h9DBTmGZ066253 for ; Mon, 13 Oct 2003 07:29:48 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9DBTmlh031711 for ports@FreeBSD.org; Mon, 13 Oct 2003 07:29:48 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 07:29:48 -0400 (EDT) From: Kris Kennaway Message-Id: <200310131129.h9DBTmlh031711@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 13 Oct 2003 11:29:51 -0000 INDEX build failed with errors: Out of memory! Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U audio/Makefile U audio/traymp/Makefile U audio/traymp/distinfo U audio/traymp/pkg-descr U audio/traymp/pkg-message U audio/traymp/pkg-plist U databases/Makefile U databases/postgresql-client/Makefile U databases/postgresql7/Makefile U devel/libukcprog/Makefile U devel/libukcprog/pkg-plist ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U editors/xemacs/Makefile U editors/xemacs-devel/Makefile U editors/xemacs21/Makefile U ftp/jftp/Makefile U ftp/jftp/distinfo U ftp/jftp/files/jftp U japanese/gauche-kakasi/Makefile U japanese/mozilla-jlp/Makefile U japanese/mozilla-jlp/distinfo U japanese/mozilla-jlp/pkg-plist ? mail/log U math/p5-Math-BigInt/Makefile U misc/screen/files/patch-etc::etcscreenrc U multimedia/dvdauthor/pkg-plist U net/annextools/files/patch-libannex::api_if.c ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 04:52:23 2003 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 B4A8716A4B3 for ; Mon, 13 Oct 2003 04:52:23 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5188543FBD for ; Mon, 13 Oct 2003 04:52:22 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h9DBqLGZ066288 for ; Mon, 13 Oct 2003 07:52:21 -0400 (EDT) (envelope-from kris@9ball.rtp.freebsd.org) Received: (from kris@localhost) by 9ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9DBqLdQ056661 for ports@FreeBSD.org; Mon, 13 Oct 2003 07:52:21 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 07:52:21 -0400 (EDT) From: Kris Kennaway Message-Id: <200310131152.h9DBqLdQ056661@9ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 13 Oct 2003 11:52:23 -0000 INDEX build failed with errors: Out of memory! Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U audio/Makefile U audio/traymp/Makefile U audio/traymp/distinfo U audio/traymp/pkg-descr U audio/traymp/pkg-message U audio/traymp/pkg-plist U databases/Makefile U databases/postgresql-client/Makefile U databases/postgresql7/Makefile ? devel/glade2/make.core ? devel/gnomedebug/make.core U devel/libukcprog/Makefile U devel/libukcprog/pkg-plist ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U editors/xemacs/Makefile U editors/xemacs-devel/Makefile U editors/xemacs21/Makefile U ftp/jftp/Makefile U ftp/jftp/distinfo U ftp/jftp/files/jftp ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core U japanese/gauche-kakasi/Makefile U japanese/mozilla-jlp/Makefile U japanese/mozilla-jlp/distinfo U japanese/mozilla-jlp/pkg-plist U math/p5-Math-BigInt/Makefile ? misc/flyway/make.core U misc/screen/files/patch-etc::etcscreenrc U multimedia/dvdauthor/pkg-plist U net/annextools/files/patch-libannex::api_if.c ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core ? net/powerdns/Makefile.inc ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 05:18:55 2003 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 6E28716A4B3 for ; Mon, 13 Oct 2003 05:18:55 -0700 (PDT) Received: from par033x2.europe.ra.rockwell.com (raeurfw.ra.rockwell.com [195.61.102.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01C3143F75 for ; Mon, 13 Oct 2003 05:18:53 -0700 (PDT) (envelope-from mkes@ra.rockwell.com) Received: from ferda.cze.ra.rockwell.com ([10.70.136.59]) by par033x2.europe.ra.rockwell.com with ESMTP (8.9.3 (PHNE_25183+JAGae58098)/8.7.3) id OAA13744 for ; Mon, 13 Oct 2003 14:18:45 +0200 (METDST) Received: (qmail 12128 invoked from network); 13 Oct 2003 12:18:37 -0000 Received: from unknown (HELO ra.rockwell.com) ([10.70.136.101]) (envelope-sender ) by euczprgmult002.cze.ra.rockwell.com (qmail-ldap-1.03) with SMTP for ; 13 Oct 2003 12:18:37 -0000 Message-ID: <3F8AB445.9090305@ra.rockwell.com> Date: Mon, 13 Oct 2003 14:18:45 +0000 From: Miroslav Kes User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030524 X-Accept-Language: en-us, en MIME-Version: 1.0 To: lioux@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: qmail-ldap-with_tls-1.03.20020901 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, 13 Oct 2003 12:18:55 -0000 Hi, Could you please tell me where the qmail.schema gets installed during the port installation (WITH_LDAP2=yes)? I couldn't find it - so I had to copy it directly from the /usr/ports/mail/qmail-ldap/work/qmail-1.03/ by hand before 'make clean'. Thanks. Mira From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 05:35:51 2003 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 F2F9A16A4B3 for ; Mon, 13 Oct 2003 05:35:50 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3085143F75 for ; Mon, 13 Oct 2003 05:35:50 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h9DCZnGZ066350 for ; Mon, 13 Oct 2003 08:35:49 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9DCZncT096555 for ports@FreeBSD.org; Mon, 13 Oct 2003 08:35:49 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 08:35:49 -0400 (EDT) From: Kris Kennaway Message-Id: <200310131235.h9DCZncT096555@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 13 Oct 2003 12:35:51 -0000 INDEX build failed with errors: Out of memory! Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 05:59:25 2003 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 2F0E716A4B3 for ; Mon, 13 Oct 2003 05:59:25 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4100443FA3 for ; Mon, 13 Oct 2003 05:59:24 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h9DCxNGZ066389 for ; Mon, 13 Oct 2003 08:59:23 -0400 (EDT) (envelope-from kris@9ball.rtp.freebsd.org) Received: (from kris@localhost) by 9ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9DCxNUf009175 for ports@FreeBSD.org; Mon, 13 Oct 2003 08:59:23 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 08:59:23 -0400 (EDT) From: Kris Kennaway Message-Id: <200310131259.h9DCxNUf009175@9ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 13 Oct 2003 12:59:25 -0000 INDEX build failed with errors: Out of memory! Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? devel/glade2/make.core ? devel/gnomedebug/make.core ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core ? misc/flyway/make.core ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core ? net/powerdns/Makefile.inc ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 06:50:24 2003 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 831B316A4B3; Mon, 13 Oct 2003 06:50:24 -0700 (PDT) Received: from wind.mindcry.org (nat-gr.wmis.net [216.109.194.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A76F43FBF; Mon, 13 Oct 2003 06:50:23 -0700 (PDT) (envelope-from david@wind.mindcry.org) Received: from wind.mindcry.org (wind.mindcry.org [127.0.0.1]) by wind.mindcry.org (8.12.10/8.12.10) with ESMTP id h9DHoLuB012691; Mon, 13 Oct 2003 13:50:22 -0400 (EDT) (envelope-from david@wind.mindcry.org) Received: (from david@localhost) by wind.mindcry.org (8.12.10/8.12.10/Submit) id h9DHoLR7012690; Mon, 13 Oct 2003 13:50:21 -0400 (EDT) (envelope-from david) Date: Mon, 13 Oct 2003 13:50:21 -0400 From: David Hill To: anholt@freebsd.org Message-ID: <20031013175021.GA12658@phobia.ms> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="n8g4imXOkfNTN/H1" Content-Disposition: inline User-Agent: Mutt/1.5.4i cc: ports@freebsd.org Subject: XFree86-4-clients build breaks 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, 13 Oct 2003 13:50:24 -0000 --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, I have attached the output. I am running 5.1-CURRENT as of Oct 10. - David --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=test ===> Building for XFree86-clients-4.3.0_3 making all in lib/lbxutil/lbx_zlib... making all in lib/lbxutil/delta... making all in lib/lbxutil/image... making all in programs/appres... making all in programs/bdftopcf... make: don't know how to make /usr/ports/x11/XFree86-4-clients/work/xc/exports/lib/libfntstubs.a. Stop *** Error code 2 Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-clients. --n8g4imXOkfNTN/H1-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 07:51:07 2003 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 317AD16A4B3 for ; Mon, 13 Oct 2003 07:51:07 -0700 (PDT) Received: from dsl-mail.kamp.net (mail.kamp-dsl.de [195.62.99.42]) by mx1.FreeBSD.org (Postfix) with SMTP id 5CC0443FA3 for ; Mon, 13 Oct 2003 07:51:03 -0700 (PDT) (envelope-from root@pukruppa.de) Received: (qmail 1951 invoked by uid 505); 13 Oct 2003 14:51:06 -0000 Received: from root@pukruppa.de by dsl-mail by uid 502 with qmail-scanner-1.14 (spamassassin: 2.43. Clear:SA:0(0.0/5.0):. Processed in 0.281842 secs); 13 Oct 2003 14:51:06 -0000 X-Spam-Status: No, hits=0.0 required=5.0 Received: from unknown (HELO reverse-213-146-114-24.dialin.kamp-dsl.de) (213.146.114.24) by dsl-mail.kamp.net with SMTP; 13 Oct 2003 14:51:06 -0000 Date: Mon, 13 Oct 2003 16:55:34 +0200 (CEST) From: Peter Ulrich Kruppa X-X-Sender: root@pukruppa.net To: freebsd-ports@freebsd.org Message-ID: <20031013164520.E704@pukruppa.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Problem with portupgrade & ruby 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, 13 Oct 2003 14:51:07 -0000 Hi! I have portupgrade-20030723 ruby-1.6.8.2003.04.19 ruby-bdb1-0.2.1 ruby-shim-ruby18-1.8.0.p2.2003.04.19_1 installed on last weekend's -CURRENT . When I want do any kind of portupgrade (here gnome2) I frequently receive these errors: ------------------------------------------- pukruppa# portupgrade -R gnome2 [Updating the pkgdb in /var/db/pkg ... - 321 packages found (-9 +17) (...)/usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in `each': negative allocation size (or too big) (NoMemoryError) from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in `select' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in `update_db' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:594:in `open_db' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:761:in `installed_pkgs' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:661:in `installed_pkg?' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:229:in `pkg' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:787:in `glob' from /usr/local/sbin/portupgrade:533:in `main' ... 8 levels... from /usr/local/sbin/portupgrade:207:in `initialize' from /usr/local/sbin/portupgrade:207:in `new' from /usr/local/sbin/portupgrade:207:in `main' from /usr/local/sbin/portupgrade:1846 ------------------------------------- In case I am the only one with this problem: How do I deinstall and reinstall these packages? I tried pkg_delete and make install but that didn't help. Regards, Uli. +---------------------------+ | Peter Ulrich Kruppa | | Wuppertal | | Germany | +---------------------------+ From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 08:36:43 2003 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 7355C16A4B3 for ; Mon, 13 Oct 2003 08:36:43 -0700 (PDT) Received: from mail.ciam.ru (main.ciam.ru [213.147.57.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75DC443F93 for ; Mon, 13 Oct 2003 08:36:42 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from sem.ciam.ru ([192.168.45.10] helo=ciam.ru) by mail.ciam.ru with esmtp (Exim 4.x) id 1A94kS-00020K-FC; Mon, 13 Oct 2003 19:36:40 +0400 Message-ID: <3F8AC6D1.5040100@ciam.ru> Date: Mon, 13 Oct 2003 19:37:53 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20030925 X-Accept-Language: en-us, en, ru MIME-Version: 1.0 To: Peter Ulrich Kruppa References: <20031013164520.E704@pukruppa.net> In-Reply-To: <20031013164520.E704@pukruppa.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: Problem with portupgrade & ruby 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, 13 Oct 2003 15:36:43 -0000 Peter Ulrich Kruppa wrote: > pukruppa# portupgrade -R gnome2 > [Updating the pkgdb in /var/db/pkg ... - 321 > packages found (-9 +17) > (...)/usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in `each': > negative allocation size (or too big) (NoMemoryError) > from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in > `select' try 'pkgdb -fu' to fix it. -- Sem. From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 09:09:57 2003 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 C5F3116A4B3 for ; Mon, 13 Oct 2003 09:09:57 -0700 (PDT) Received: from pozo.com (pozo.com [216.101.162.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 282B843F93 for ; Mon, 13 Oct 2003 09:09:56 -0700 (PDT) (envelope-from null@pozo.com) Received: from quad.pozo.com (quad.pozo.com [192.168.0.61]) (authenticated bits=0) by pozo.com (8.12.10/8.12.10) with ESMTP id h9DG9aWj092445 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT); Mon, 13 Oct 2003 09:09:36 -0700 (PDT) (envelope-from null@pozo.com) Message-Id: <6.0.0.22.2.20031013085313.03240628@pozo.com> X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Mon, 13 Oct 2003 09:09:36 -0700 To: Sergey Matveychuk , Peter Ulrich Kruppa From: Manfred Antar In-Reply-To: <3F8AC6D1.5040100@ciam.ru> References: <20031013164520.E704@pukruppa.net> <3F8AC6D1.5040100@ciam.ru> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" cc: freebsd-ports@freebsd.org Subject: Re: Problem with portupgrade & ruby 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, 13 Oct 2003 16:09:57 -0000 At 08:37 AM 10/13/2003, Sergey Matveychuk wrote: >Peter Ulrich Kruppa wrote: >>pukruppa# portupgrade -R gnome2 >>[Updating the pkgdb in /var/db/pkg ... - 321 >>packages found (-9 +17) >>(...)/usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in `each': >>negative allocation size (or too big) (NoMemoryError) >> from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in >>`select' > >try 'pkgdb -fu' to fix it. > >-- >Sem. I'm seeing the same thing here. It worked fine yesterday !!! I can't think of any thing I've changed : Connecting to cvsup10.FreeBSD.org Connected to cvsup10.FreeBSD.org Server software version: SNAP_16_1e Negotiating file attribute support Exchanging collection information Establishing multiplexed-mode data connection Running Updating collection ports-all/cvs Checkout ports/INDEX-5 Shutting down connection to server Finished successfully (ports)5165}pkgdb -fu ---> Updating the pkgdb [Rebuilding the pkgdb in /var/db/pkg ... - 728 packages found (-0 +728) ........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................ done] (ports)5166}portupgrade -iav ---> Session started at: Mon, 13 Oct 2003 09:04:26 -0700 ---> Session ended at: Mon, 13 Oct 2003 09:06:23 -0700 (consumed 00:01:57) /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:325:in `deorigin': failed to convert nil into String (PkgDB::DBError) from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:918:in `tsort_build' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:917:in `each' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:917:in `tsort_build' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:909:in `each' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:909:in `tsort_build' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:931:in `sort_build' from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:935:in `sort_build!' from /usr/local/sbin/portupgrade:674:in `main' from /usr/local/sbin/portupgrade:207:in `initialize' from /usr/local/sbin/portupgrade:207:in `new' from /usr/local/sbin/portupgrade:207:in `main' from /usr/local/sbin/portupgrade:1846 Maybe it's the Index-5 file ================================== || null@pozo.com || || Ph. (415) 681-6235 || ================================== From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 09:36:54 2003 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 EC2B316A4B3 for ; Mon, 13 Oct 2003 09:36:54 -0700 (PDT) Received: from mail-relay1.yahoo.com (mail-relay1.yahoo.com [216.145.48.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 592C943FA3 for ; Mon, 13 Oct 2003 09:36:50 -0700 (PDT) (envelope-from adrianm@yahoo-inc.com) Received: from adrianm.buenosaires.corp.yahoo.com (adrianm.buenosaires.corp.yahoo.com [172.24.82.21]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by mail-relay1.yahoo.com (Postfix) with ESMTP id 5A4158B694; Mon, 13 Oct 2003 09:36:49 -0700 (PDT) Received: from adrianm.buenosaires.corp.yahoo.com (localhost [127.0.0.1]) h9DGajEU006277; Mon, 13 Oct 2003 13:36:45 -0300 (ART) (envelope-from adrianm@yahoo-inc.com) Received: (from adrianm@localhost)h9DGadm3006276; Mon, 13 Oct 2003 13:36:39 -0300 (ART) X-Authentication-Warning: adrianm.buenosaires.corp.yahoo.com: adrianm set sender to adrianm@yahoo-inc.com using -f Date: Mon, 13 Oct 2003 13:36:39 -0300 From: Adrian Mugnolo To: sethk@meowfishies.com Message-ID: <20031013163639.GA6010@adrianm.buenosaires.corp.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org Subject: Problem with net/ymessenger 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, 13 Oct 2003 16:36:55 -0000 Hi, The net/ymessenger port is using an outdated version of the client that uses a protocol no longer supported by Yahoo!. The current binary can be downloaded from: http://download.yahoo.com/dl/unix/fbsd4.ymessenger.tgz I work at Yahoo! though not in the Messenger team. If there's anything we can help you with to revamp this port please let us know. Regards From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 10:02:34 2003 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 5592516A4B3 for ; Mon, 13 Oct 2003 10:02:34 -0700 (PDT) Received: from dsl-mail.kamp.net (mail.kamp-dsl.de [195.62.99.42]) by mx1.FreeBSD.org (Postfix) with SMTP id DFE3943F3F for ; Mon, 13 Oct 2003 10:02:32 -0700 (PDT) (envelope-from root@pukruppa.de) Received: (qmail 32544 invoked by uid 505); 13 Oct 2003 17:02:37 -0000 Received: from root@pukruppa.de by dsl-mail by uid 502 with qmail-scanner-1.14 (spamassassin: 2.43. Clear:SA:0(0.0/5.0):. Processed in 0.23384 secs); 13 Oct 2003 17:02:37 -0000 X-Spam-Status: No, hits=0.0 required=5.0 Received: from unknown (HELO reverse-213-146-114-24.dialin.kamp-dsl.de) (213.146.114.24) by dsl-mail.kamp.net with SMTP; 13 Oct 2003 17:02:36 -0000 Date: Mon, 13 Oct 2003 19:07:15 +0200 (CEST) From: Peter Ulrich Kruppa X-X-Sender: root@pukruppa.net To: Sergey Matveychuk In-Reply-To: <3F8AC6D1.5040100@ciam.ru> Message-ID: <20031013190549.P704@pukruppa.net> References: <20031013164520.E704@pukruppa.net> <3F8AC6D1.5040100@ciam.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-ports@freebsd.org Subject: Re: Problem with portupgrade & ruby 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, 13 Oct 2003 17:02:34 -0000 On Mon, 13 Oct 2003, Sergey Matveychuk wrote: > Peter Ulrich Kruppa wrote: > > pukruppa# portupgrade -R gnome2 > > [Updating the pkgdb in /var/db/pkg ... - 321 > > packages found (-9 +17) > > (...)/usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in `each': > > negative allocation size (or too big) (NoMemoryError) > > from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in > > `select' > > try 'pkgdb -fu' to fix it. Yes, that works. I only had tried the recommended # pkgdb -F Thanks, Uli. +---------------------------+ | Peter Ulrich Kruppa | | Wuppertal | | Germany | +---------------------------+ From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 10:16:39 2003 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 9796716A4B3 for ; Mon, 13 Oct 2003 10:16:39 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE62743FAF for ; Mon, 13 Oct 2003 10:16:37 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from topaz-out (owt-207-41-94-233.owt.com [207.41.94.233]) by rutger.owt.com (8.11.6p2/8.9.3) with ESMTP id h9DHG1w08082; Mon, 13 Oct 2003 10:16:01 -0700 From: Kent Stewart To: Manfred Antar , Sergey Matveychuk , Peter Ulrich Kruppa Date: Mon, 13 Oct 2003 10:16:00 -0700 User-Agent: KMail/1.5.4 References: <20031013164520.E704@pukruppa.net> <3F8AC6D1.5040100@ciam.ru> <6.0.0.22.2.20031013085313.03240628@pozo.com> In-Reply-To: <6.0.0.22.2.20031013085313.03240628@pozo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310131016.00829.kstewart@owt.com> cc: freebsd-ports@freebsd.org Subject: Re: Problem with portupgrade & ruby 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, 13 Oct 2003 17:16:39 -0000 On Monday 13 October 2003 09:09 am, Manfred Antar wrote: > At 08:37 AM 10/13/2003, Sergey Matveychuk wrote: > >Peter Ulrich Kruppa wrote: > >>pukruppa# portupgrade -R gnome2 > >>[Updating the pkgdb in /var/db/pkg ... - 321 > >>packages found (-9 +17) > >>(...)/usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in `each': > >>negative allocation size (or too big) (NoMemoryError) > >> from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in > >>`select' > > > >try 'pkgdb -fu' to fix it. > > > >-- > >Sem. > > I'm seeing the same thing here. > It worked fine yesterday !!! > I can't think of any thing I've changed : > > Connecting to cvsup10.FreeBSD.org > Connected to cvsup10.FreeBSD.org > Server software version: SNAP_16_1e > Negotiating file attribute support > Exchanging collection information > Establishing multiplexed-mode data connection > Running > Updating collection ports-all/cvs > Checkout ports/INDEX-5 The current INDEX-5 is 8 weeks old. If you didn't rebuild INDEX-5 and INDEX.db to make them current with your ports-all, you are using really old versions that are inconsistent with your port tree. Kent > Shutting down connection to server > Finished successfully > (ports)5165}pkgdb -fu > ---> Updating the pkgdb > [Rebuilding the pkgdb in /var/db/pkg ... - 728 > packages found (-0 +728) > ..................................................................... >...................................................................... >...................................................................... >...................................................................... >...................................................................... >...................................................................... >...................................................................... >...................................................................... >...................................................................... >...................................................................... >............................. done] (ports)5166}portupgrade -iav > ---> Session started at: Mon, 13 Oct 2003 09:04:26 -0700 > ---> Session ended at: Mon, 13 Oct 2003 09:06:23 -0700 (consumed > 00:01:57) /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:325:in > `deorigin': failed to convert nil into String (PkgDB::DBError) from > /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:918:in `tsort_build' from > /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:917:in `each' from > /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:917:in `tsort_build' from > /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:909:in `each' from > /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:909:in `tsort_build' from > /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:931:in `sort_build' from > /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:935:in `sort_build!' from > /usr/local/sbin/portupgrade:674:in `main' > from /usr/local/sbin/portupgrade:207:in `initialize' > from /usr/local/sbin/portupgrade:207:in `new' > from /usr/local/sbin/portupgrade:207:in `main' > from /usr/local/sbin/portupgrade:1846 > > Maybe it's the Index-5 file > -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 10:27:13 2003 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 F243B16A4B3; Mon, 13 Oct 2003 10:27:13 -0700 (PDT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE71743FB1; Mon, 13 Oct 2003 10:27:12 -0700 (PDT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.52] (naos [128.131.111.52]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 7FC131378E; Mon, 13 Oct 2003 19:27:11 +0200 (CEST) Date: Mon, 13 Oct 2003 19:27:08 +0200 (CEST) From: Gerald Pfeifer To: Lev Serebryakov Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-ports@freebsd.org Subject: Re: `lang/gcc33': why without ADA & Java? 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, 13 Oct 2003 17:27:14 -0000 > Why our gcc-3.3.1 port doesn't build & install ADA part of > gcc? We don't have separate ports for it, too... Because nobody (including GNAT) really cared very much about the Ada frontend that is part of GCC. Also, GNAT is quite a beast, so it probably should be built and packaged separately from lang/gcc3x in any case. (Note that GCJ _is_ built by default.) Gerald -- Gerald Pfeifer (Jerry) gerald@pfeifer.com http://www.pfeifer.com/gerald/ From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 10:41:40 2003 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 44B2616A4B3; Mon, 13 Oct 2003 10:41:40 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9DD043FF2; Mon, 13 Oct 2003 10:41:39 -0700 (PDT) (envelope-from gerald@FreeBSD.org) Received: from freefall.freebsd.org (gerald@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DHfdFY042554; Mon, 13 Oct 2003 10:41:39 -0700 (PDT) (envelope-from gerald@freefall.freebsd.org) Received: (from gerald@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DHfdGH042550; Mon, 13 Oct 2003 10:41:39 -0700 (PDT) (envelope-from gerald) Date: Mon, 13 Oct 2003 10:41:39 -0700 (PDT) From: Gerald Pfeifer Message-Id: <200310131741.h9DHfdGH042550@freefall.freebsd.org> To: gerald@FreeBSD.org, gerald@FreeBSD.org, ports@FreeBSD.org Subject: Re: ports/56403: update port: mail/grepmail 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, 13 Oct 2003 17:41:40 -0000 Synopsis: update port: mail/grepmail Responsible-Changed-From-To: gerald->ports Responsible-Changed-By: gerald Responsible-Changed-When: Mon Oct 13 10:40:08 PDT 2003 Responsible-Changed-Why: As far as I understood from http://lists.freebsd.org/pipermail/freebsd-ports/2003-October/005286.html the port shouldn't be installed as is but hack around the PREFIX issue, sorry. (If you want to do that, please submit an updated patch and drop me a note, and I'll try to take care of it.) http://www.freebsd.org/cgi/query-pr.cgi?pr=56403 From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 10:42:57 2003 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 524FC16A4B3; Mon, 13 Oct 2003 10:42:57 -0700 (PDT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3591043FA3; Mon, 13 Oct 2003 10:42:56 -0700 (PDT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.52] (naos [128.131.111.52]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id BB25E1378D; Mon, 13 Oct 2003 19:42:54 +0200 (CEST) Date: Mon, 13 Oct 2003 19:42:51 +0200 (CEST) From: Gerald Pfeifer To: Sergey Matveychuk , tobez@freebsd.org In-Reply-To: <3F83D6B4.3070203@ciam.ru> Message-ID: References: <3F83D6B4.3070203@ciam.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@freebsd.org Subject: Re: 4.x Perl with customized $(PREFIX) 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, 13 Oct 2003 17:42:57 -0000 On Wed, 8 Oct 2003, Sergey Matveychuk wrote: >> post-configure: >> ${PERL} -pi -e 's,/usr/local,${PREFIX},g' ${WRKSRC}/Makefile > Yes, it's a right way while tobez@ awake and start customize perl-ports > build mechanism. Any details how/ideas when this will be fixed in a more general way? (I don't need it for myself, but a port update I wanted to help out with has this problem.) Gerald -- Gerald Pfeifer (Jerry) gerald@pfeifer.com http://www.pfeifer.com/gerald/ From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 11:01:05 2003 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 E075916A4B3 for ; Mon, 13 Oct 2003 11:01:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32BA643FE1 for ; Mon, 13 Oct 2003 11:00:50 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DI0oFY043319 for ; Mon, 13 Oct 2003 11:00:50 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DI0mp9043311 for freebsd-ports@freebsd.org; Mon, 13 Oct 2003 11:00:48 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 13 Oct 2003 11:00:48 -0700 (PDT) Message-Id: <200310131800.h9DI0mp9043311@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, 13 Oct 2003 18:01:06 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. 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 ------------------------------------------------------------------------------- o [2003/04/15] ports/50999 ports-bugs SSL with mail/dovecot simply doesn't work o [2003/05/23] ports/52632 ports-bugs vmware3 port is missing /usr/lib/vmware/v o [2003/06/21] ports/53600 ports-bugs /usr/port/emulators/linux_base says "linu o [2003/06/28] ports/53874 ports-bugs /usr/ports/emulators/linux_base isn't wor o [2003/07/08] ports/54230 ports-bugs fsck_ext2fs is broken (unable to perform f [2003/07/22] ports/54753 ports-bugs print/lyx core dump o [2003/08/01] ports/55173 ports-bugs VMware3 hangs as normal user o [2003/09/01] ports/56268 ports-bugs mail/kavmilter exits with signal 11 o [2003/09/30] ports/57427 ports-bugs Errors building static tk80 library f [2003/10/02] ports/57516 ports-bugs Arabic category koffice-i18n meta-port de 10 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/06/12] ports/28102 ports-bugs Recent changes to 4.3-STABLE break arla-0 o [2001/06/24] ports/28398 ports-bugs ja-dvips cannot find tex.pro o [2001/09/25] ports/30823 ports-bugs New port: KinterbasDB, Python module to a o [2001/12/11] ports/32700 ports-bugs net/arla: inode changes for large o [2002/01/15] ports/33927 ports-bugs ja-dvipdfm port requires texmf/dvips/base o [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d o [2002/04/22] ports/37361 ports-bugs installing gcc30 port breaks devel/gettex f [2002/05/23] ports/38460 ports-bugs core dumps with print/ghostscript-gnu f [2002/05/27] ports/38602 ports-bugs x11-wm/tvtwm is confused about PREFIX f [2002/09/10] ports/42647 ports-bugs port misc/pybliographger does not configu o [2002/10/08] ports/43847 ports-bugs new ports: babytrans,gsfv,mmail,tetradraw o [2002/10/19] ports/44295 ports-bugs New port: MLton, an optimizing Standard M o [2002/11/11] ports/45210 ports-bugs Broken Linux ABI Emulation in emulators/l o [2002/11/12] ports/45234 ports-bugs timidity++ portupgrade problem, removes s o [2002/11/27] ports/45805 ports-bugs security/sfs does not build on Alpha o [2002/12/06] ports/46039 ports-bugs adzapper install fails out of the box o [2002/12/17] ports/46338 ports-bugs security/cyrus-sasl 1.5.27_7 mysql_verify o [2002/12/21] ports/46443 ports-bugs lang/jgnat compilation failure o [2002/12/25] ports/46530 ports-bugs x11-toolkits/gtkada links against unexist o [2003/01/03] ports/46741 ports-bugs PVM-POV fails trying to locate file/folde o [2003/01/10] ports/46964 ports-bugs Failure when running "make install" on ex s [2003/01/14] ports/47061 ports-bugs Conflicting system headers by build of gr f [2003/01/31] ports/47768 ports-bugs print/ghostscript-afpl gv (3.5.8_1) can't o [2003/03/18] ports/50104 ports-bugs Zope package does not set sticky bit on v o [2003/04/10] ports/50795 ports-bugs misc/solfege does not function s [2003/04/11] ports/50844 ports-bugs MPlayer fails to build on Alpha o [2003/04/18] ports/51128 ports-bugs It is not possible to build security/drwe o [2003/04/23] ports/51334 ports-bugs [New Port] Zend Optimizer 2.1.0a o [2003/05/02] ports/51711 ports-bugs /usr/ports/emulators/linux_base will not o [2003/05/02] ports/51714 ports-bugs emulators/linux_base port fails to instal o [2003/05/05] ports/51807 ports-bugs lang/gcc295 (g++) can't parse header file f [2003/05/05] ports/51813 ports-bugs wrong mod_perl dependencies o [2003/05/11] ports/52064 ports-bugs ns2 (ports/net/ns) was broken o [2003/05/23] ports/52602 ports-bugs security/ident2 port segfaults when retur f [2003/06/11] ports/53214 ports-bugs emulators/vmware3 tries to install emulat o [2003/06/17] ports/53414 ports-bugs port security/amavis-perl open filedescri f [2003/06/18] ports/53458 ports-bugs irc/tr-ircd breaks on non-IPv6 kernels o [2003/06/27] www/53862 ports-bugs -CURRENT ports symlink busted o [2003/07/08] ports/54234 ports-bugs gnu-radius fails to build on 4.8-STABLE o [2003/07/19] ports/54647 ports-bugs Updated gsfonts 6.0 disables printing in o [2003/07/25] ports/54848 ports-bugs print/ghostscript-gnu fails building whil o [2003/07/28] ports/54970 ports-bugs emulators/linux_base Port Makefile "dange o [2003/07/28] ports/54972 ports-bugs net/simicq compilation error o [2003/08/04] ports/55252 ports-bugs databases/db4: Berkley DB crashes on Serv o [2003/08/08] ports/55372 ports-bugs www/mod_php4 port ignores PREFIX o [2003/08/10] ports/55439 ports-bugs Change in tcsetattr in 5.1-RELEASE breaks o [2003/08/12] ports/55507 ports-bugs lang/php4 compiles with unexcpected libs o [2003/08/15] ports/55611 ports-bugs Clamav port package build fails on 5.x wh o [2003/08/15] kern/55617 ports-bugs Accessing an nsmb-mounted drive via a smb o [2003/08/16] ports/55638 ports-bugs [PATCH] www/rt2 marked broken o [2003/08/17] ports/55673 ports-bugs Xsane crashes when doing preview o [2003/08/20] ports/55740 ports-bugs port already installed check fails on 4.6 o [2003/08/23] ports/55894 ports-bugs print/lyx: configure aborts if WITH_QT is o [2003/08/24] ports/55948 ports-bugs install of ports/emulators/linux_base fil o [2003/08/26] ports/56011 ports-bugs bonnie++ doesn't do large files o [2003/08/29] ports/56157 ports-bugs [patch] x11/nvidia-driver build broken o [2003/08/30] ports/56205 ports-bugs www/mod_php4 won't install o [2003/08/30] ports/56222 ports-bugs [patch] Fix compiler error in www/php-scr o [2003/09/01] ports/56263 ports-bugs New port: comms/gammu [FIXED] (supersedes o [2003/09/02] ports/56329 ports-bugs Update: mail/maildrop to 1.6.0 + LDAP mak o [2003/09/02] ports/56359 ports-bugs new port: www/adzap2squirm o [2003/09/04] ports/56410 ports-bugs Mailman broken o [2003/09/07] ports/56567 ports-bugs mail/spamass-milter fails in configure st o [2003/09/09] ports/56660 ports-bugs new slave port mod_jk-apache2 o [2003/09/09] ports/56661 ports-bugs modify port mod_jk2 to build mod_jk2 2.x o [2003/09/09] ports/56662 ports-bugs new slave port mod_jk2-apache2 o [2003/09/13] ports/56747 ports-bugs vmware3 port cant fetch distfile o [2003/09/15] ports/56884 ports-bugs Problems with pgaccess & tcltk 8.4 o [2003/09/15] ports/56893 ports-bugs Fix for lang/sisc (currently broken) o [2003/09/16] ports/56912 ports-bugs www/sarg coredumps on big logs o [2003/09/19] ports/57013 ports-bugs devel/boost does not build o [2003/09/21] ports/57056 ports-bugs libsm and libsmutil not installed -> fail o [2003/09/23] ports/57126 ports-bugs molden port broken o [2003/09/25] ports/57222 ports-bugs krb5 port fails under RELENG_4_8 default o [2003/10/01] ports/57461 ports-bugs typo in ports/emulators/vmware3/files/con o [2003/10/03] ports/57552 ports-bugs pkg_create: only one package name allowed o [2003/10/04] ports/57586 ports-bugs [patch] Make security/sfs compile on -cur o [2003/10/05] ports/57601 ports-bugs [PATCH] Fix port bug found by Oliver Eikm f [2003/10/06] ports/57644 ports-bugs [PATCH] changing CFLAGS and CPUTYPE respe o [2003/10/06] ports/57670 ports-bugs net/jabber-msn: Upgrade to version 1.2.8p o [2003/10/06] ports/57685 ports-bugs New Port: geepee32 o [2003/10/07] ports/57695 ports-bugs mcs is version 0.27 o [2003/10/08] ports/57761 ports-bugs grip port segment faults on CURRENT syste o [2003/10/09] ports/57790 ports-bugs cdparanoia triggers kernel panic o [2003/10/09] ports/57793 ports-bugs New port: Netgraf network statistic o [2003/10/10] ports/57843 ports-bugs misc/amanda-client still depends on gtar o [2003/10/10] ports/57854 ports-bugs Port java/jboss3 is dependent on but does o [2003/10/11] ports/57864 ports-bugs [Patch]: textproc/glimpse-4.12.6 compilat o [2003/10/11] ports/57870 ports-bugs Missing +INSTALL/+DEINSTALL scripts with o [2003/10/12] ports/57897 ports-bugs Portupgrade of mplayer to latest version o [2003/10/13] ports/57936 ports-bugs [Maintainer Update] Port: www/turck-mmcac o [2003/10/13] ports/57956 ports-bugs New port: pmd eclipse-plugin o [2003/10/13] ports/57958 ports-bugs [maintainer update] mail/dbmail: update t o [2003/10/13] ports/57963 ports-bugs exim port: misspelt conflict o [2003/10/13] ports/57965 ports-bugs security/samhain -> 1.7.12 95 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/01/12] ports/24299 ports-bugs Configure the synaptics touchpad. o [2001/07/25] ports/29223 ports-bugs cyrus-imapd and postfix master.8 manpage o [2001/08/21] ports/29929 ports-bugs wginstall.pl script chokes on calculated o [2001/09/27] ports/30870 ports-bugs www/apache13-ssl: httpd in free(): warnin o [2001/12/04] ports/32508 ports-bugs www/flashplugin-mozilla has malloc bug o [2002/01/14] ports/33906 ports-bugs [PATCH] tic program as a port for easier o [2002/01/30] ports/34442 ports-bugs xt, xalan-j, saxon should have the same C f [2002/02/02] ports/34550 ports-bugs ghostscript-gnu-nox11 portversion 6.51 fa f [2002/02/02] ports/34565 ports-bugs graphics/blender port is broke o [2002/02/27] ports/35372 ports-bugs pgp6 ports fails to compile on alpha plat s [2002/03/01] ports/35459 ports-bugs portupgrade doesn't clean up dependencies o [2002/03/14] ports/35897 ports-bugs upgrading the linux_base port runs into t o [2002/03/17] java/36024 ports-bugs port update: OpenJIT 1.1.16 for JDK 1.3.1 o [2002/03/29] ports/36503 ports-bugs several files conflict in databases/libio o [2002/04/17] ports/37186 ports-bugs Dbview contains an error, because of whic o [2002/05/13] ports/38034 ports-bugs compaq-cc (under linux-emu) installes man o [2002/05/15] ports/38125 ports-bugs ApacheCylical Link error/bug in Virtualse f [2002/06/01] ports/38800 ports-bugs update www/roxen to Roxen WebServer 2.2.2 s [2002/06/18] ports/39476 ports-bugs profxp will run but when you fxp a file i a [2002/06/19] ports/39544 ports-bugs mayavi port disfunctional o [2002/07/21] ports/40866 ports-bugs sml-nj port CM autoloading compilation pr o [2002/08/02] ports/41259 ports-bugs Info directory change for various GNU Ema a [2002/08/03] ports/41282 ports-bugs New_Ports japanese/stevie-* o [2002/08/07] ports/41434 ports-bugs New port: www/light: another Mozilla-base o [2002/08/19] ports/41773 ports-bugs new port: x11-servers/Mozdev-PrintServer o [2002/08/19] ports/41784 ports-bugs vmware2 causes panic on recent -current o [2002/08/20] ports/41829 ports-bugs New port: mail/squirrelmail-devel o [2002/08/20] ports/41836 ports-bugs new port - virus filtering tool for qmail o [2002/08/25] ports/42018 ports-bugs pkg_info with PKG_PATH searches through t o [2002/08/28] ports/42134 ports-bugs linux-gtk PORTREVISION contaminates other o [2002/09/01] ports/42281 ports-bugs lang/rexx-imc - addition of UPPER patch o [2002/09/01] ports/42296 ports-bugs New port: mod_webkit (adapter between Web f [2002/09/21] ports/43171 ports-bugs Port misc/upclient setgid kmem f [2002/09/29] ports/43484 ports-bugs Update port net/arla to 0.35.9 o [2002/10/05] ports/43718 ports-bugs New port: x11-wm/icebgset (set IceWM back o [2002/10/07] ports/43764 ports-bugs New port: audio/wavemagic - An audio play o [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp o [2002/10/09] ports/43880 ports-bugs Names of Emacs ports are misleading o [2002/10/11] ports/43956 ports-bugs New port: x11-wm/ion-devel f [2002/10/19] ports/44270 ports-bugs New port: net/bind9-sdb-ldap o [2002/11/11] ports/45227 ports-bugs problems building/installing db3 and open f [2002/11/26] ports/45771 ports-bugs OffiX printer doesn't find printer o [2002/11/30] ports/45886 ports-bugs New ports: japanese/trr* o [2002/12/02] ports/45911 ports-bugs GEOM-related problem sysutils/diskcheckd o [2002/12/05] ports/46005 ports-bugs New port: ginsu - a client for the gale s f [2002/12/17] ports/46327 ports-bugs obsolete version of the Computer Modern f f [2002/12/21] ports/46457 ports-bugs Update x11/temperature.app to 1.4 and use o [2002/12/23] ports/46510 ports-bugs security/ssh does not correctly store the o [2002/12/28] ports/46608 ports-bugs [NEW PORT] latest development track of ep o [2003/01/09] ports/46904 ports-bugs new port: mail/vqregister o [2003/01/15] ports/47098 ports-bugs New port: Senken, a city simulation game o [2003/01/15] ports/47128 ports-bugs New port: hybserv (irc services for ircd- o [2003/01/18] ports/47189 ports-bugs New port: x11/chameleon o [2003/01/19] ports/47218 ports-bugs PostgreSQL client has problems when libbi o [2003/01/29] ports/47651 ports-bugs unPERLify ports/audio o [2003/01/29] ports/47654 ports-bugs unPERLify ports/biology o [2003/01/29] ports/47656 ports-bugs unPERLify ports/comms f [2003/02/03] ports/47862 ports-bugs Maintainer update: databases/mysql-gui (b o [2003/02/04] ports/47904 ports-bugs drweb - cron example don't work o [2003/02/08] ports/48097 ports-bugs Manual for graphics/camediaplay falsely d f [2003/02/09] ports/48115 ports-bugs Update port: math/abs o [2003/02/12] ports/48217 ports-bugs New Port: www/mod_frontpage13 and www/mod o [2003/02/13] ports/48235 ports-bugs New Port: anomy mail sanitizer - removing o [2003/02/13] ports/48247 ports-bugs unPERLify ports/deskutils o [2003/02/13] ports/48248 ports-bugs unPERLify ports/editors o [2003/02/13] ports/48253 ports-bugs unPERLify ports/devel f [2003/02/13] ports/48257 ports-bugs New Port: portdowngrade: a tool to set a o [2003/03/01] ports/48813 ports-bugs New port: print/foomatic-filters o [2003/03/02] ports/48832 ports-bugs New port: print/foomatic-db-hpijs o [2003/03/04] ports/48913 ports-bugs vtk does not compile with nvidia-drivers o [2003/03/07] ports/49002 ports-bugs fix duplicated categories on a 34 slave p o [2003/03/17] ports/50068 ports-bugs New port: sybase_ase (Sybase ASE RDBMS) f [2003/03/20] ports/50140 ports-bugs [patch] fix plist devel/linux_devtools (a o [2003/03/20] ports/50142 ports-bugs misc/compat4x broken o [2003/03/23] ports/50230 ports-bugs grail don't work with Python 2.x. a [2003/03/26] ports/50313 ports-bugs Upgrade emulators/linux_base's glibc o [2003/03/31] ports/50473 ports-bugs amavis-perl is no longer supported (super o [2003/03/31] ports/50476 ports-bugs New port: math/libmath++ o [2003/03/31] ports/50478 ports-bugs New port: games/monopd o [2003/04/03] ports/50578 ports-bugs pktrace has been renamed to mftrace by th o [2003/04/08] bin/50724 ports-bugs [PATCH] pkg_fetch saves full filename o [2003/04/10] ports/50775 ports-bugs axel port failes to build o [2003/04/11] ports/50840 ports-bugs mail/squirrelmail - Port Docs in wrong lo o [2003/04/12] ports/50880 ports-bugs Request for (optional) addition of tcplim o [2003/04/12] ports/50888 ports-bugs Updated fetchyahoo port, like fetchmail f f [2003/04/13] ports/50914 ports-bugs Port update: editors/fte o [2003/04/14] ports/50965 ports-bugs www/linux-flashplugin update to 6.0r79 o [2003/04/15] ports/50992 ports-bugs ports-bug: devel/kprof o [2003/04/15] ports/51005 ports-bugs New port of native window decoration for o [2003/04/15] ports/51013 ports-bugs New Port: avidemux2 o [2003/04/16] ports/51036 ports-bugs New port: sysutils/clockspeed-conf - Supe o [2003/04/17] ports/51087 ports-bugs spamass-milter can not be built with send o [2003/04/20] ports/51197 ports-bugs New Port: rendezvous (Apple's ZeroConf im o [2003/04/21] ports/51214 ports-bugs New port: www/zope-localizer o [2003/04/21] ports/51215 ports-bugs New port: www/zope-translationservice o [2003/04/27] ports/51456 ports-bugs adding new port: opencm o [2003/04/30] ports/51631 ports-bugs New port: hungarian/complexjogtar - Hunga o [2003/05/04] ports/51760 ports-bugs Change-request: mail/tmda (ACTION_AUTO_RE o [2003/05/05] ports/51819 ports-bugs New port: Provides a static mod_perl with o [2003/05/09] ports/52006 ports-bugs rsync fails with protocol problems o [2003/05/09] ports/52016 ports-bugs New port: lang/harbour - A Clipper-compat o [2003/05/10] ports/52037 ports-bugs port multimedia/avifile fails to build (I f [2003/05/12] ports/52113 ports-bugs mpg123 fails to play o [2003/05/12] ports/52125 ports-bugs New port: The devel branch of the ion win f [2003/05/12] ports/52130 ports-bugs New Port: sysutils/klineakconfig configur o [2003/05/12] ports/52132 ports-bugs New port: audio/prokyon3 Really nice mp3- o [2003/05/13] ports/52159 ports-bugs updates to pr:ports/52130 and pr:ports/52 f [2003/05/17] ports/52380 ports-bugs Configure problem in libggi f [2003/05/18] ports/52393 ports-bugs New port: py-sourceview is a Python wrapp o [2003/05/24] ports/52653 ports-bugs ports/net/gnu-radius no longer compatible o [2003/05/24] ports/52659 ports-bugs New port: news/xvnews Open Look-based new o [2003/05/28] ports/52747 ports-bugs port update - mail/p5-Mail-Ezmlm o [2003/05/29] ports/52794 ports-bugs Xmaxima cannot start o [2003/05/29] ports/52796 ports-bugs devel/apr is compiled without threads sup o [2003/05/30] ports/52811 ports-bugs [PATCH] net/unison: install documentation o [2003/06/02] ports/52857 ports-bugs New port: Scan detection and blocking dae o [2003/06/02] ports/52873 ports-bugs New port: kcmpureftpd, a PureFTP control f [2003/06/02] ports/52877 ports-bugs Non-Maintainer-Update: mail/postfix add s o [2003/06/04] ports/52923 ports-bugs New port: f-prot - the F-Prot virus scann o [2003/06/04] ports/52941 ports-bugs security/poc card-terminal problems o [2003/06/07] ports/53019 ports-bugs New Port: kvirc3 a irc client based on o [2003/06/09] ports/53080 ports-bugs ARJ archiver with Russian localization o [2003/06/11] ports/53193 ports-bugs [Patch] unbroke port: math/simpack fix co o [2003/06/11] ports/53206 ports-bugs Patch updates x11-wm/pekwm to version 0.1 f [2003/06/13] ports/53281 ports-bugs Port for LDAP servers access and KAddress f [2003/06/14] ports/53321 ports-bugs Update: comms/plp o [2003/06/15] ports/53346 ports-bugs xmms volume bar error o [2003/06/18] ports/53444 ports-bugs comms/hamfax - sending and receiving facs o [2003/06/20] ports/53558 ports-bugs new port of Gerrit Pape's runit package o [2003/06/21] ports/53588 ports-bugs [PATCH] devel/ac-archive: update to 0.5.5 o [2003/06/23] ports/53636 ports-bugs Suggestion for rc.d style startup scripts o [2003/06/23] ports/53662 ports-bugs [CHANGE-REQUEST] Patch textproc/xlhtml so o [2003/06/24] ports/53671 ports-bugs NEW PORT: rude/crude UDP traffic generato o [2003/06/24] ports/53702 ports-bugs Port upgrade: devel/directfb o [2003/06/25] ports/53740 ports-bugs New port: Fluka - Linux Monte Carlo simul f [2003/06/25] ports/53746 ports-bugs New port: graphics/imgseek f [2003/06/26] ports/53793 ports-bugs New port for sebeksniff o [2003/06/28] ports/53877 ports-bugs p5-Data-FormValidator can be updated o [2003/06/30] ports/53923 ports-bugs New Port: Sipsak is a SIP test command li o [2003/07/01] ports/53981 ports-bugs New Port: k3b 0.8.1, a kde cd recording g o [2003/07/01] ports/53983 ports-bugs New port: Zope Extensible User Folder o [2003/07/01] ports/53997 ports-bugs update py-psycopg from 1.0.13 to 1.1.5.1 o [2003/07/03] ports/54059 ports-bugs New port: psycopg database adapter for zo o [2003/07/03] ports/54060 ports-bugs new port devel/aegis o [2003/07/03] ports/54079 ports-bugs New port: Formulator for Zope f [2003/07/03] ports/54080 ports-bugs Update port mail/minimalist to the latest o [2003/07/04] ports/54095 ports-bugs New port: ParsedXML for Zope o [2003/07/04] ports/54096 ports-bugs Plone port bundled formulator conflicts w f [2003/07/04] ports/54105 ports-bugs New port submission o [2003/07/06] ports/54146 ports-bugs UPDATE: www/eddie - fix build with Erlang o [2003/07/06] ports/54149 ports-bugs [UPDATE] net/rdesktop-devel: Add RDP5 sup o [2003/07/07] ports/54174 ports-bugs clean spaces behind variables out of port o [2003/07/09] ports/54251 ports-bugs [NEW PORT] www/zope-xmlwidgets: XMLWidget o [2003/07/09] ports/54271 ports-bugs New port: databases/pgbash o [2003/07/09] ports/54272 ports-bugs new port: misc/torrentsniff - BitTorrent o [2003/07/09] ports/54298 ports-bugs New port KVIrc 3.0.0 o [2003/07/10] ports/54335 ports-bugs new port: PPower4 - Post processor for PD o [2003/07/10] ports/54346 ports-bugs [NEW Port]:: x11/materm o [2003/07/10] ports/54352 ports-bugs Conversion rc.d scripts to RC_NG o [2003/07/11] ports/54372 ports-bugs new port: FoilTeX - a collection of LaTeX f [2003/07/11] ports/54408 ports-bugs [new port] ftp/prozgui o [2003/07/12] ports/54414 ports-bugs New port: Dasher -- text entry system (fo o [2003/07/16] ports/54550 ports-bugs [NEW PORT] www/zope-FileSystemSite: Enabl o [2003/07/16] ports/54553 ports-bugs New port: Growspd displays growth rate of o [2003/07/16] ports/54557 ports-bugs [NEW PORT] security/gnutls-devel: develop o [2003/07/18] ports/54617 ports-bugs New port: lang/freetxl s [2003/07/18] ports/54624 ports-bugs Update: net/gtk-gnutella o [2003/07/19] ports/54636 ports-bugs misc/gtktalog: Remove PERL dependancy and o [2003/07/20] ports/54650 ports-bugs new port submission - misc/zidrav - file o [2003/07/21] ports/54732 ports-bugs New port: mod_auth_pam2 (mod_auth_pam for o [2003/07/24] ports/54811 ports-bugs ports/japanese/kappa20 maintainer update+ o [2003/07/24] ports/54812 ports-bugs New Port par2cmdline for verify/creation/ o [2003/07/24] ports/54814 ports-bugs New port: hungarian/hunspell version 0.9. o [2003/07/25] ports/54837 ports-bugs minor update to net/cdpd o [2003/07/25] ports/54841 ports-bugs Checksum mismatch on Linux-Realplayer por o [2003/07/25] ports/54857 ports-bugs mod_perl2 does not activate module in the o [2003/07/25] ports/54860 ports-bugs new port (linux-opengroupware) f [2003/07/27] ports/54926 ports-bugs [PATCH] graphics/ImageMagick: enable choo o [2003/07/28] ports/54984 ports-bugs New port: mail/postfixadmin 2G o [2003/10/11] ports/57876 ports-bugs new port:graphics/cinepaint o [2003/10/11] ports/57877 ports-bugs Update port: mail/mailman add option for o [2003/10/11] ports/57878 ports-bugs [non-maintainer] Update port: mail/squirr o [2003/10/11] ports/57879 ports-bugs [PATCH] emulators/xmame: update to 0.74.1 o [2003/10/11] ports/57880 ports-bugs [patch]update irc/ircd-hybrid to 6.4.1 o [2003/10/12] ports/57882 ports-bugs [update] dns/dnsmasq 1.13 -> 1.17 o [2003/10/12] ports/57885 ports-bugs New port: devel/agide o [2003/10/12] ports/57902 ports-bugs New port: bbsmount - graphical disk mount o [2003/10/12] ports/57910 ports-bugs [UPDATE] mail/py-spambayes to latest vers o [2003/10/12] ports/57913 ports-bugs quagga port needs to be updated to refer o [2003/10/12] ports/57914 ports-bugs [maintainer patch] net/morebalance: Add m o [2003/10/12] ports/57915 ports-bugs [maintainer update] www/mod_bandwidth: Re o [2003/10/12] ports/57916 ports-bugs [maintainer patch] dns/bind9-sdb-mysql: U o [2003/10/12] ports/57917 ports-bugs Maintainer update: security/hunch to 1.1. o [2003/10/12] ports/57919 ports-bugs [maintainer update] dns/dnsmasq update to o [2003/10/12] ports/57927 ports-bugs Fix port: www/udmsearch o [2003/10/12] ports/57930 ports-bugs [patch] sysutils/xmbmon: enable ADM9240 h o [2003/10/12] ports/57931 ports-bugs Update port: databases/grass to 5.0.2 o [2003/10/12] ports/57932 ports-bugs Update port: devel/cvsadmin (dumps core) o [2003/10/12] ports/57933 ports-bugs print/ft2demos from 2.1.4 to 2.1.5 o [2003/10/13] ports/57934 ports-bugs maintainer-update: print/pfaedit to 20031 o [2003/10/13] ports/57937 ports-bugs fix cups-base package install, take maint o [2003/10/13] ports/57938 ports-bugs make cups-lpr installation more plug'n'pl o [2003/10/13] ports/57941 ports-bugs [patch] comms/libticables: fix build on n o [2003/10/13] ports/57943 ports-bugs isc-dhcp3 port broken with lots of interf o [2003/10/13] ports/57944 ports-bugs [maintainer update] deskutils/basket to 0 o [2003/10/13] ports/57946 ports-bugs Update japanese/mozilla-jlp o [2003/10/13] ports/57954 ports-bugs [maintainer update] net/pen: Update pen t o [2003/10/13] ports/57955 ports-bugs Update port: textproc/xmlcatmgr 1.1 o [2003/10/13] ports/57959 ports-bugs New port: textproc/p5-XML-Validator-Schem o [2003/10/13] ports/57960 ports-bugs Update port: x11-toolkits/blt o [2003/10/13] ports/57962 ports-bugs Update port: net/p5-Net-Google from 0.52 o [2003/10/13] ports/57964 ports-bugs [new port] www/mod_authenticache: A gener o [2003/10/13] ports/57966 ports-bugs [new port] www/mod_auth_external: Allows o [2003/10/13] ports/57967 ports-bugs [new port] www/mod_auth_external2:Allows o [2003/10/13] ports/57968 ports-bugs tcplist-2.2_1: fix for varargs -> stdarg 393 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 11:03:54 2003 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 BD4EF16A4D5 for ; Mon, 13 Oct 2003 11:03:54 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02F5F440AF for ; Mon, 13 Oct 2003 11:02:55 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DI2tFY046018 for ; Mon, 13 Oct 2003 11:02:55 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DI2tTn046012 for ports@freebsd.org; Mon, 13 Oct 2003 11:02:55 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 13 Oct 2003 11:02:55 -0700 (PDT) Message-Id: <200310131802.h9DI2tTn046012@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: ports@FreeBSD.org Subject: Current problem reports assigned to you 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, 13 Oct 2003 18:03:55 -0000 Current FreeBSD problem reports Critical problems Serious problems Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- f [2003/09/04] ports/56403 ports update port: mail/grepmail 1 problem total. From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 11:04:16 2003 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 3BDCD16A4C0 for ; Mon, 13 Oct 2003 11:04:16 -0700 (PDT) Received: from basement.kutulu.org (pcp03610121pcs.longhl01.md.comcast.net [68.49.239.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7E0A43F85 for ; Mon, 13 Oct 2003 11:03:37 -0700 (PDT) (envelope-from kutulu@kutulu.org) Received: from wombat.localnet (wombat.localnet [192.168.69.3]) by basement.kutulu.org (Postfix) with ESMTP id 441A3A9FA; Mon, 13 Oct 2003 14:03:37 -0400 (EDT) Received: by wombat.localnet (Postfix, from userid 1001) id 190C9B856; Mon, 13 Oct 2003 14:03:37 -0400 (EDT) Date: Mon, 13 Oct 2003 14:03:36 -0400 From: Michael Edenfield To: Kris Kennaway Message-ID: <20031013180336.GA63922@wombat.localnet> Mail-Followup-To: Kris Kennaway , ports@FreeBSD.org References: <20031013102711.GK39851@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="T4sUOijqQbZv57TR" Content-Disposition: inline In-Reply-To: <20031013102711.GK39851@rot13.obsecurity.org> X-Mailer: Mutt http://www.mutt.org/ X-Accept-Language: en X-PGP-Key: http://www.kutulu.org/pgp/kutulu.asc X-PGP-Fingerprint: 1CE0 3C31 7013 D529 406D 37DC 09CC CD84 A46C 878F User-Agent: Mutt/1.5.4i cc: ports@FreeBSD.org Subject: Re: tcplist-2.2_1 broken on 5.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: Mon, 13 Oct 2003 18:04:16 -0000 --T4sUOijqQbZv57TR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * Kris Kennaway [031013 06:31]: > http://211.43.211.135/errorlogs/i386-5-latest/tcplist-2.2_1.log >=20 > Can you please investigate and/or report to the developers? >=20 > Kris This fixes the build on -CURRENT, I haven't tested on 4.x yet but I can't see any problems. http://www.freebsd.org/cgi/query-pr.cgi?pr=3D57968 --Mike --T4sUOijqQbZv57TR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/iuj4CczNhKRsh48RAgWDAJ48Bq+Vn2a3vDE5FeYSgntTgak19QCgv/Bh pZYRiEOoyFfWcJQdKdEfgbQ= =IUNd -----END PGP SIGNATURE----- --T4sUOijqQbZv57TR-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 11:05:36 2003 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 6488D16A4BF for ; Mon, 13 Oct 2003 11:05:36 -0700 (PDT) Received: from heechee.tobez.org (heechee.tobez.org [217.157.39.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3783243F3F for ; Mon, 13 Oct 2003 11:05:35 -0700 (PDT) (envelope-from tobez@tobez.org) Received: by heechee.tobez.org (Postfix, from userid 1001) id 71806175CF; Mon, 13 Oct 2003 20:05:31 +0200 (CEST) Date: Mon, 13 Oct 2003 20:05:31 +0200 From: Anton Berezin To: Gerald Pfeifer Message-ID: <20031013180531.GE29992@heechee.tobez.org> Mail-Followup-To: Anton Berezin , Gerald Pfeifer , Sergey Matveychuk , ports@freebsd.org References: <3F83D6B4.3070203@ciam.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.4i cc: ports@freebsd.org cc: Sergey Matveychuk Subject: Re: 4.x Perl with customized $(PREFIX) 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, 13 Oct 2003 18:05:36 -0000 On Mon, Oct 13, 2003 at 07:42:51PM +0200, Gerald Pfeifer wrote: > On Wed, 8 Oct 2003, Sergey Matveychuk wrote: > >> post-configure: > >> ${PERL} -pi -e 's,/usr/local,${PREFIX},g' ${WRKSRC}/Makefile > > Yes, it's a right way while tobez@ awake and start customize perl-ports > > build mechanism. > > Any details how/ideas when this will be fixed in a more general way? Either BSDPAN should be a part of the base system perl, or CONFIGURE_ARGS in bsd.port.mk should include proper INSTALLSITEARCH and INSTALLSITELIB, like it currently does with INSTALLPRIVARCH and INSTALLPRIVLIB (in the .if defined(PERL_CONFIGURE) branch, of course). Cheers, +Anton. -- If I did know the future of Perl, and if I told you, you'd probably run away screaming. -- Larry Wall From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 11:23:04 2003 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 4C7A516A4C1 for ; Mon, 13 Oct 2003 11:23:04 -0700 (PDT) Received: from pozo.com (pozo.com [216.101.162.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0DD943F3F for ; Mon, 13 Oct 2003 11:23:02 -0700 (PDT) (envelope-from null@pozo.com) Received: from quad.pozo.com (quad.pozo.com [192.168.0.61]) (authenticated bits=0) by pozo.com (8.12.10/8.12.10) with ESMTP id h9DIMhoW000657 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT); Mon, 13 Oct 2003 11:22:44 -0700 (PDT) (envelope-from null@pozo.com) Message-Id: <6.0.0.22.2.20031013111658.03248dd0@pozo.com> X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Mon, 13 Oct 2003 11:22:43 -0700 To: Kent Stewart , Sergey Matveychuk , Peter Ulrich Kruppa From: Manfred Antar In-Reply-To: <200310131016.00829.kstewart@owt.com> References: <20031013164520.E704@pukruppa.net> <3F8AC6D1.5040100@ciam.ru> <6.0.0.22.2.20031013085313.03240628@pozo.com> <200310131016.00829.kstewart@owt.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" cc: freebsd-ports@freebsd.org Subject: Re: Problem with portupgrade & ruby 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, 13 Oct 2003 18:23:04 -0000 At 10:16 AM 10/13/2003, Kent Stewart wrote: >On Monday 13 October 2003 09:09 am, Manfred Antar wrote: >> At 08:37 AM 10/13/2003, Sergey Matveychuk wrote: >> >Peter Ulrich Kruppa wrote: >> >>pukruppa# portupgrade -R gnome2 >> >>[Updating the pkgdb in /var/db/pkg ... - 321 >> >>packages found (-9 +17) >> >>(...)/usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in `each': >> >>negative allocation size (or too big) (NoMemoryError) >> >> from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in >> >>`select' >> > >> >try 'pkgdb -fu' to fix it. >> > >> >-- >> >Sem. >> >> I'm seeing the same thing here. >> It worked fine yesterday !!! >> I can't think of any thing I've changed : >> >> Connecting to cvsup10.FreeBSD.org >> Connected to cvsup10.FreeBSD.org >> Server software version: SNAP_16_1e >> Negotiating file attribute support >> Exchanging collection information >> Establishing multiplexed-mode data connection >> Running >> Updating collection ports-all/cvs >> Checkout ports/INDEX-5 > >The current INDEX-5 is 8 weeks old. If you didn't rebuild INDEX-5 and >INDEX.db to make them current with your ports-all, you are using really >old versions that are inconsistent with your port tree. > >Kent > >> Shutting down connection to server >> Finished successfully >> (ports)5165}pkgdb -fu >> ---> Updating the pkgdb >> [Rebuilding the pkgdb in /var/db/pkg ... - 728 >> packages found (-0 +728) >> ..................................................................... > >>...................................................................... >>...................................................................... >>............................. done] (ports)5166}portupgrade -iav >> ---> Session started at: Mon, 13 Oct 2003 09:04:26 -0700 >> ---> Session ended at: Mon, 13 Oct 2003 09:06:23 -0700 (consumed >> 00:01:57) /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:325:in >> `deorigin': failed to convert nil into String (PkgDB::DBError) from >> /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:918:in `tsort_build' from >> /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:917:in `each' from >> /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:917:in `tsort_build' from >> /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:909:in `each' from >> /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:909:in `tsort_build' from >> /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:931:in `sort_build' from >> /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:935:in `sort_build!' from >> /usr/local/sbin/portupgrade:674:in `main' >> from /usr/local/sbin/portupgrade:207:in `initialize' >> from /usr/local/sbin/portupgrade:207:in `new' >> from /usr/local/sbin/portupgrade:207:in `main' >> from /usr/local/sbin/portupgrade:1846 >> Maybe it's the Index-5 file > The thing is I do that daily in a cron job portsdb -Uu Today perl dumped core while doing it. So I checked out the Index-5 from cvsup It' worked fine yesterday with an Index-5 built in the morning. I'll reinstall perl and ruby and see if that make a difference Manfred From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 12:05:44 2003 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 09CFD16A4BF for ; Mon, 13 Oct 2003 12:05:44 -0700 (PDT) Received: from smtpproxy1.mitre.org (smtpproxy1.mitre.org [192.160.51.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD82743FDD for ; Mon, 13 Oct 2003 12:05:41 -0700 (PDT) (envelope-from jandrese@mitre.org) Received: from smtp-bedford.mitre.org (smtp-bedford.mitre.org [129.83.20.99]) by smtpproxy1.mitre.org (8.12.10/8.12.8) with ESMTP id h9DJ5ebY005467 for ; Mon, 13 Oct 2003 15:05:40 -0400 (EDT) Received: from smtpsrv1.mitre.org (localhost.localdomain [127.0.0.1]) by smtp-bedford.mitre.org (8.11.6/8.12.8) with ESMTP id h9DJAfb03347 for ; Mon, 13 Oct 2003 15:10:41 -0400 Received: from MAILHUB2 (mailhub2.mitre.org [129.83.221.18]) by smtpsrv1.mitre.org (8.12.9/8.12.8) with ESMTP id h9DJ5eLJ029602 for ; Mon, 13 Oct 2003 15:05:40 -0400 (EDT) Received: from mm112324-2k.mitre.org (128.29.3.41) by mailhub2.mitre.org with SMTP id 4220546; Mon, 13 Oct 2003 15:05:35 -0400 Message-ID: <3F8AF77E.5090306@mitre.org> Date: Mon, 13 Oct 2003 15:05:34 -0400 From: Jason Andresen User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.4) Gecko/20030612 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 grip 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, 13 Oct 2003 19:05:44 -0000 Is anybody else having trouble with the latest audio/grip? It just dumps core with a segfault on startup for me. I have the latest version of all of its dependancies installed, and an examination of the source code didn't reveal anything particularly suspicious to me. I'm running 5.1-RELEASE The backtrace: #0 0x28d5dcee in strchr () from /usr/lib/libc.so.5 #1 0x286e5be0 in __JCR_LIST__ () from /usr/local/lib/libgobject-2.0.so.200 #2 0x286bdc1a in g_object_new_valist () from /usr/local/lib/libgobject-2.0.so.200 #3 0x28a608c9 in gnome_program_initv () from /usr/X11R6/lib/libgnome-2.so.400 #4 0x28a6056a in gnome_program_init () from /usr/X11R6/lib/libgnome-2.so.400 #5 0x0804e082 in Cmain () #6 0x0804df6b in main () #7 0x0804de95 in _start () I tried a kernel trace, but it wasn't very interesting. The last few lines are just getting the current UID before it core dumps. The strange thing is that the program dies during what appears to be a standard gnome initalization, but every other gnome program I try works fine. Does anybody else have this problem? Any ideas of how to fix it? -- \ |_ _|__ __|_ \ __| Jason Andresen jandrese@mitre.org |\/ | | | / _| Network and Distributed Systems Engineer _| _|___| _| _|_\___| Office: 703-883-7755 From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 12:07:10 2003 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 BF56516A4B3; Mon, 13 Oct 2003 12:07:10 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E51A943F85; Mon, 13 Oct 2003 12:07:09 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from freefall.freebsd.org (dinoex@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9DJ79FY056114; Mon, 13 Oct 2003 12:07:09 -0700 (PDT) (envelope-from dinoex@freefall.freebsd.org) Received: (from dinoex@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9DJ79s8056110; Mon, 13 Oct 2003 21:07:09 +0200 (CEST) (envelope-from dinoex) Date: Mon, 13 Oct 2003 21:07:09 +0200 (CEST) From: Dirk Meyer Message-Id: <200310131907.h9DJ79s8056110@freefall.freebsd.org> To: dinoex@FreeBSD.org, ports@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/56403: update port: mail/grepmail 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, 13 Oct 2003 19:07:10 -0000 Synopsis: update port: mail/grepmail Responsible-Changed-From-To: ports->freebsd-ports-bugs Responsible-Changed-By: dinoex Responsible-Changed-When: Mon Oct 13 21:05:16 CEST 2003 Responsible-Changed-Why: responsible fixed -> freebsd-ports-bugs http://www.freebsd.org/cgi/query-pr.cgi?pr=56403 From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 13:55:12 2003 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 E431416A4B3 for ; Mon, 13 Oct 2003 13:55:11 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 781AA43FB1 for ; Mon, 13 Oct 2003 13:55:10 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from topaz-out (owt-207-41-94-233.owt.com [207.41.94.233]) by rutger.owt.com (8.11.6p2/8.9.3) with ESMTP id h9DKsqw25951; Mon, 13 Oct 2003 13:54:53 -0700 From: Kent Stewart To: Manfred Antar , Sergey Matveychuk , Peter Ulrich Kruppa Date: Mon, 13 Oct 2003 13:54:52 -0700 User-Agent: KMail/1.5.4 References: <20031013164520.E704@pukruppa.net> <200310131016.00829.kstewart@owt.com> <6.0.0.22.2.20031013111658.03248dd0@pozo.com> In-Reply-To: <6.0.0.22.2.20031013111658.03248dd0@pozo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310131354.52579.kstewart@owt.com> cc: freebsd-ports@freebsd.org Subject: Re: Problem with portupgrade & ruby 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, 13 Oct 2003 20:55:12 -0000 On Monday 13 October 2003 11:22 am, Manfred Antar wrote: > At 10:16 AM 10/13/2003, Kent Stewart wrote: > >On Monday 13 October 2003 09:09 am, Manfred Antar wrote: > >> At 08:37 AM 10/13/2003, Sergey Matveychuk wrote: > >> >Peter Ulrich Kruppa wrote: > >> >>pukruppa# portupgrade -R gnome2 > >> >>[Updating the pkgdb in /var/db/pkg ... - 321 > >> >>packages found (-9 +17) > >> >>(...)/usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in `each': > >> >>negative allocation size (or too big) (NoMemoryError) > >> >> from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:469:in > >> >>`select' > >> > > >> >try 'pkgdb -fu' to fix it. > >> > > >> >-- > >> >Sem. > >> > >> I'm seeing the same thing here. > >> It worked fine yesterday !!! > >> I can't think of any thing I've changed : > >> > >> Connecting to cvsup10.FreeBSD.org > >> Connected to cvsup10.FreeBSD.org > >> Server software version: SNAP_16_1e > >> Negotiating file attribute support > >> Exchanging collection information > >> Establishing multiplexed-mode data connection > >> Running > >> Updating collection ports-all/cvs > >> Checkout ports/INDEX-5 > > > >The current INDEX-5 is 8 weeks old. If you didn't rebuild INDEX-5 > > and INDEX.db to make them current with your ports-all, you are > > using really old versions that are inconsistent with your port > > tree. > > > >Kent > > > >> Shutting down connection to server > >> Finished successfully > >> (ports)5165}pkgdb -fu > >> ---> Updating the pkgdb > >> [Rebuilding the pkgdb in /var/db/pkg ... - 728 > >> packages found (-0 +728) > >> .................................................................. > >>... > >> > >>................................................................... > >>... > >> .................................................................. > >>.... ............................. done] (ports)5166}portupgrade > >> -iav ---> Session started at: Mon, 13 Oct 2003 09:04:26 -0700 > >> ---> Session ended at: Mon, 13 Oct 2003 09:06:23 -0700 (consumed > >> 00:01:57) /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:325:in > >> `deorigin': failed to convert nil into String (PkgDB::DBError) > >> from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:918:in > >> `tsort_build' from > >> /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:917:in `each' from > >> /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:917:in `tsort_build' > >> from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:909:in `each' from > >> /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:909:in `tsort_build' > >> from /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:931:in > >> `sort_build' from > >> /usr/local/lib/ruby/site_ruby/1.6/pkgdb.rb:935:in `sort_build!' > >> from /usr/local/sbin/portupgrade:674:in `main' > >> from /usr/local/sbin/portupgrade:207:in `initialize' > >> from /usr/local/sbin/portupgrade:207:in `new' > >> from /usr/local/sbin/portupgrade:207:in `main' > >> from /usr/local/sbin/portupgrade:1846 > >> Maybe it's the Index-5 file > > The thing is I do that daily in a cron job > portsdb -Uu > Today perl dumped core while doing it. > So I checked out the Index-5 from cvsup > It' worked fine yesterday with an Index-5 built in the morning. > I'll reinstall perl and ruby > and see if that make a difference That has been fixed. Recvsup ports-all. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 14:10:48 2003 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 C98AD16A4B3 for ; Mon, 13 Oct 2003 14:10:48 -0700 (PDT) Received: from pozo.com (pozo.com [216.101.162.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD94443FD7 for ; Mon, 13 Oct 2003 14:10:47 -0700 (PDT) (envelope-from null@pozo.com) Received: from quad.pozo.com (quad.pozo.com [192.168.0.61]) (authenticated bits=0) by pozo.com (8.12.10/8.12.10) with ESMTP id h9DLAaoW005689 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NOT); Mon, 13 Oct 2003 14:10:36 -0700 (PDT) (envelope-from null@pozo.com) Message-Id: <6.0.0.22.2.20031013140946.032488b0@pozo.com> X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Mon, 13 Oct 2003 14:10:35 -0700 To: Kent Stewart , Sergey Matveychuk , Peter Ulrich Kruppa From: Manfred Antar In-Reply-To: <200310131354.52579.kstewart@owt.com> References: <20031013164520.E704@pukruppa.net> <200310131016.00829.kstewart@owt.com> <6.0.0.22.2.20031013111658.03248dd0@pozo.com> <200310131354.52579.kstewart@owt.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" cc: freebsd-ports@freebsd.org Subject: Re: Problem with portupgrade & ruby 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, 13 Oct 2003 21:10:48 -0000 At 01:54 PM 10/13/2003, Kent Stewart wrote: >That has been fixed. Recvsup ports-all. > >Kent > >-- Yes It is working now ! What was it ? ================================== || null@pozo.com || || Ph. (415) 681-6235 || ================================== From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 14:14:34 2003 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 B64B716A4B3 for ; Mon, 13 Oct 2003 14:14:34 -0700 (PDT) Received: from scorsese.fabricadeideias.com (mail.scorsese.fabricadeideias.com.br [200.157.56.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49A0643F75 for ; Mon, 13 Oct 2003 14:14:33 -0700 (PDT) (envelope-from rodrigo@fabricadeideias.com) Received: from fabricadeideias.com (fellini.fabricadeideias.com.br [192.168.109.50]) by scorsese.fabricadeideias.com with esmtp; Mon, 13 Oct 2003 18:14:49 -0300 Message-ID: <3F8B07D2.7030102@fabricadeideias.com> Date: Mon, 13 Oct 2003 18:14:52 -0200 From: Rodrigo Severo User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 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: FreeBSD Port: ImageMagick-5.5.6_3 - Documentation suggestion 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, 13 Oct 2003 21:14:34 -0000 Dear Sir, I have just installed the ImageMagick 5.5.7-1 port over a FreeBSD 4.8 STABLE. I would like to make a suggestion: The pkg-descr file says that the package can be built without X11 support but doesn't say how (set WITHOUT_X11 variable ?). I believe it should tell how to do the trick. ;) Thanks in advance for your attention, Rodrigo Severo From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 14:15:22 2003 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 AA0F416A4B3 for ; Mon, 13 Oct 2003 14:15:22 -0700 (PDT) Received: from lewis.lclark.edu (pnacac.org [149.175.1.5]) by mx1.FreeBSD.org (Postfix) with SMTP id B618D43FBD for ; Mon, 13 Oct 2003 14:15:21 -0700 (PDT) (envelope-from anholt@FreeBSD.org) Received: from [149.175.34.250] ([149.175.34.250]) by lewis.lclark.edu (SAVSMTP 3.1.1.32) with SMTP id M2003101314150822408 ; Mon, 13 Oct 2003 14:15:08 -0700 From: Eric Anholt To: David Hill In-Reply-To: <20031013175021.GA12658@phobia.ms> References: <20031013175021.GA12658@phobia.ms> Content-Type: text/plain Message-Id: <1066079707.642.48.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Mon, 13 Oct 2003 14:15:08 -0700 Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: XFree86-4-clients build breaks X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: eta@lclark.edu List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 13 Oct 2003 21:15:22 -0000 On Mon, 2003-10-13 at 10:50, David Hill wrote: > Hello, I have attached the output. > > I am running 5.1-CURRENT as of Oct 10. > > - David To you and all those who have submitted this privately: I'm trying to reproduce this, but I can't on my local machine. I'm trying on ref5.freebsd.org now. If you want to make sure this stays on my todo list and doesn't get forgotten about like so many other problems submitted privately, send a PR. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 14:17:28 2003 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 97BCB16A4B3 for ; Mon, 13 Oct 2003 14:17:28 -0700 (PDT) Received: from scorsese.fabricadeideias.com (mail.scorsese.fabricadeideias.com.br [200.157.56.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F10443F75 for ; Mon, 13 Oct 2003 14:17:27 -0700 (PDT) (envelope-from rodrigo@fabricadeideias.com) Received: from fabricadeideias.com (fellini.fabricadeideias.com.br [192.168.109.50]) by scorsese.fabricadeideias.com with esmtp; Mon, 13 Oct 2003 18:17:44 -0300 Message-ID: <3F8B0881.6020207@fabricadeideias.com> Date: Mon, 13 Oct 2003 18:17:47 -0200 From: Rodrigo Severo User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 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: FreeBSD Port: ImageMagick-5.5.6_3 - Without X11 configuration problem 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, 13 Oct 2003 21:17:28 -0000 Dear Sir, I have just installed the ImageMagick 5.5.7-1 port over FreeBSD 4.8 STABLE. I had a configuration problem I would like to share. When I tried to "make" ImageMagick with the WITHOUT_X11 variable set I still got an error about X11 libraries missing. First it mentioned: ------------------------------------------- ===> ImageMagick-5.5.7.11_1 depends on file: /usr/X11R6/bin/gnomecc - not found ------------------------------------------- which is strange. Then, a few lines latter, the proper error: ------------------------------------------- ===> gnomemimedata-2.2.0_1 depends on shared library: X11.6 - not found ===> Verifying install for X11.6 in /usr/ports/x11/XFree86-4-libraries mkdir: /usr/ports/distfiles/xc: File exists *** Error code 1 Stop in /usr/ports/x11/XFree86-4-libraries. *** Error code 1 Stop in /usr/ports/misc/gnomemimedata. *** Error code 1 Stop in /usr/ports/sysutils/gnomecontrolcenter. *** Error code 1 Stop in /usr/ports/graphics/ImageMagick. ------------------------------------------- I managed to get ImageMagick compiled with the following changes: ------------------------------------------- *** Makefile.orig Mon Oct 13 18:09:28 2003 --- Makefile Mon Oct 13 18:09:49 2003 *************** *** 33,39 **** USE_PERL5= yes USE_BZIP2= yes - USE_GNOME= gnomehack gnometarget pkgconfig USE_GMAKE= yes USE_LIBTOOL= yes LIBTOOLFLAGS= # none --- 33,38 ---- *************** *** 199,204 **** --- 198,204 ---- CONFIGURE_ARGS+= --without-x --without-mpeg2 PLIST_SUB+= X11='@comment ' .else + USE_GNOME= gnomehack gnometarget pkgconfig CONFLICTS+= display CONFIGURE_ARGS+= --with-x USE_XLIB= yes ------------------------------------------- I am not sure I moved the USE_GNOME line to the proper place but for me (who doesn't want X11 support at all) it worked. Thanks in advance for your attention, Rodrigo Severo From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 14:19:53 2003 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 B519816A4B3 for ; Mon, 13 Oct 2003 14:19:53 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7344F43FA3 for ; Mon, 13 Oct 2003 14:19:52 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 7E89E66E42; Mon, 13 Oct 2003 14:19:51 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 7418FB89; Mon, 13 Oct 2003 14:19:51 -0700 (PDT) Date: Mon, 13 Oct 2003 14:19:51 -0700 From: Kris Kennaway To: Kris Kennaway , ports@FreeBSD.org Message-ID: <20031013211951.GE41965@rot13.obsecurity.org> References: <20031013102711.GK39851@rot13.obsecurity.org> <20031013180336.GA63922@wombat.localnet> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="d8Lz2Tf5e5STOWUP" Content-Disposition: inline In-Reply-To: <20031013180336.GA63922@wombat.localnet> User-Agent: Mutt/1.4.1i Subject: Re: tcplist-2.2_1 broken on 5.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: Mon, 13 Oct 2003 21:19:53 -0000 --d8Lz2Tf5e5STOWUP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 13, 2003 at 02:03:36PM -0400, Michael Edenfield wrote: > * Kris Kennaway [031013 06:31]: > > http://211.43.211.135/errorlogs/i386-5-latest/tcplist-2.2_1.log > >=20 > > Can you please investigate and/or report to the developers? > >=20 > > Kris >=20 > This fixes the build on -CURRENT, I haven't tested on 4.x yet but I > can't see any problems. >=20 > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D57968 Great, thanks! Kris --d8Lz2Tf5e5STOWUP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/ixb2Wry0BWjoQKURAmb/AJ49aMyhptoCotYH4KvBoD9/12TBpQCgivNU +NOJtyXUXLC+62uCzW6aXTU= =Nx2o -----END PGP SIGNATURE----- --d8Lz2Tf5e5STOWUP-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 14:24:56 2003 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 43AD716A4B3 for ; Mon, 13 Oct 2003 14:24:56 -0700 (PDT) Received: from scorsese.fabricadeideias.com (mail.scorsese.fabricadeideias.com.br [200.157.56.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAA4643FF5 for ; Mon, 13 Oct 2003 14:24:54 -0700 (PDT) (envelope-from rodrigo@fabricadeideias.com) Received: from fabricadeideias.com (fellini.fabricadeideias.com.br [192.168.109.50]) by scorsese.fabricadeideias.com with esmtp; Mon, 13 Oct 2003 18:25:12 -0300 Message-ID: <3F8B0A41.30008@fabricadeideias.com> Date: Mon, 13 Oct 2003 18:25:15 -0200 From: Rodrigo Severo User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 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: FreeBSD Port: ImageMagick-5.5.6_3 - Compile problem 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, 13 Oct 2003 21:24:56 -0000 Dear Sir, I have just installed ImageMagick 5.5.11 and had the following problem during compilation: ---------------------------------- /bin/sh ../libtool --silent --mode=compile cc -DHAVE_CONFIG_H -I../ -I. -I. -I../magick -I.. -I.. -I../magick -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include/libxml2 -O -pipe -Wall -c -o jp2.lo `test -f 'jp2.c' || echo './'`jp2.c In file included from /usr/local/include/jasper/jasper.h:121, from jp2.c:85: /usr/local/include/jasper/jas_image.h:152: warning: `/*' within comment jp2.c: In function `ReadJP2Image': jp2.c:343: warning: implicit declaration of function `jas_clrspc_fam' jp2.c:343: warning: implicit declaration of function `jas_image_clrspc' jp2.c:345: `JAS_CLRSPC_FAM_RGB' undeclared (first use in this function) jp2.c:345: (Each undeclared identifier is reported only once jp2.c:345: for each function it appears in.) jp2.c:348: `JAS_CLRSPC_CHANIND_RGB_R' undeclared (first use in this function) jp2.c:350: `JAS_CLRSPC_CHANIND_RGB_G' undeclared (first use in this function) jp2.c:352: `JAS_CLRSPC_CHANIND_RGB_B' undeclared (first use in this function) jp2.c:369: `JAS_CLRSPC_FAM_GRAY' undeclared (first use in this function) jp2.c:372: `JAS_CLRSPC_CHANIND_GRAY_Y' undeclared (first use in this function) jp2.c:382: `JAS_CLRSPC_FAM_YCBCR' undeclared (first use in this function) jp2.c:347: warning: unreachable code at beginning of switch statement jp2.c: In function `WriteJP2Image': jp2.c:760: warning: implicit declaration of function `jas_image_setclrspc' jp2.c:760: `JAS_CLRSPC_SGRAY' undeclared (first use in this function) jp2.c:762: `JAS_CLRSPC_CHANIND_GRAY_Y' undeclared (first use in this function) jp2.c:769: `JAS_CLRSPC_SRGB' undeclared (first use in this function) jp2.c:771: `JAS_CLRSPC_CHANIND_RGB_R' undeclared (first use in this function) jp2.c:773: `JAS_CLRSPC_CHANIND_RGB_G' undeclared (first use in this function) jp2.c:775: `JAS_CLRSPC_CHANIND_RGB_B' undeclared (first use in this function) gmake[1]: *** [jp2.lo] Error 1 gmake[1]: Leaving directory `/usr/ports/graphics/ImageMagick/work/ImageMagick-5.5.7/coders' gmake: *** [all-recursive] Error 1 *** Error code 2 Stop in /usr/ports/graphics/ImageMagick. ---------------------------------- I manage to compile ImageMagick setting the WITHOUT_IMAGEMAGICK_JPEG2000 variable but I got no JPEG2000 support on ImageMagick. In fact I don't need it but I decided to mention it anyway so you will be able to fix it for others. Thanks in advance for your attention, Rodrigo Severo From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 14:34:45 2003 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 0B0BF16A4B3; Mon, 13 Oct 2003 14:34:45 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AF0F43FAF; Mon, 13 Oct 2003 14:34:44 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id BF8BD66E30; Mon, 13 Oct 2003 14:34:43 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id B2486B8C; Mon, 13 Oct 2003 14:34:43 -0700 (PDT) Date: Mon, 13 Oct 2003 14:34:43 -0700 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20031013213443.GF42230@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="K/NRh952CO+2tg14" Content-Disposition: inline User-Agent: Mutt/1.4.1i cc: ru@FreeBSD.org Subject: libimg-1.2.4 broken on 5.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: Mon, 13 Oct 2003 21:34:45 -0000 --K/NRh952CO+2tg14 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline http://bento.freebsd.org/errorlogs/i386-5-latest/libimg-1.2.4.log This is affecting a number of ports - notice that it creates the libimg.so symlink in /usr/lib instead of /usr/local/lib. I would guess that a change to *.mk is responsible. Kris --K/NRh952CO+2tg14 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/ixpzWry0BWjoQKURAhSWAKCT4jWahsyDDzd5ZqpamNFC541wdwCeJbup +g0cE9f2wQaMxHPw48F1efU= =dRbA -----END PGP SIGNATURE----- --K/NRh952CO+2tg14-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 14:37:48 2003 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 811EA16A4B3 for ; Mon, 13 Oct 2003 14:37:48 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id A70CA43F75 for ; Mon, 13 Oct 2003 14:37:47 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 3AF3366E30; Mon, 13 Oct 2003 14:37:47 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 28948B5E; Mon, 13 Oct 2003 14:37:47 -0700 (PDT) Date: Mon, 13 Oct 2003 14:37:47 -0700 From: Kris Kennaway To: eta@lclark.edu Message-ID: <20031013213747.GA42379@rot13.obsecurity.org> References: <20031013175021.GA12658@phobia.ms> <1066079707.642.48.camel@leguin> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="J/dobhs11T7y2rNN" Content-Disposition: inline In-Reply-To: <1066079707.642.48.camel@leguin> User-Agent: Mutt/1.4.1i cc: David Hill cc: ports@freebsd.org Subject: Re: XFree86-4-clients build breaks 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, 13 Oct 2003 21:37:48 -0000 --J/dobhs11T7y2rNN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 13, 2003 at 02:15:08PM -0700, Eric Anholt wrote: > On Mon, 2003-10-13 at 10:50, David Hill wrote: > > Hello, I have attached the output. > >=20 > > I am running 5.1-CURRENT as of Oct 10. > >=20 > > - David >=20 > To you and all those who have submitted this privately: >=20 > I'm trying to reproduce this, but I can't on my local machine. I'm > trying on ref5.freebsd.org now. If you want to make sure this stays on > my todo list and doesn't get forgotten about like so many other problems > submitted privately, send a PR. If it would help I can send you the WRKDIR tarball from the bento builds on an architecture of your choice :-) Kris --J/dobhs11T7y2rNN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/ixsqWry0BWjoQKURAjifAJwOzdTTQOGxypnaI7d/8ejy4p7XbQCgiG34 gIcwEoywOegP88H+uhdWx00= =dzda -----END PGP SIGNATURE----- --J/dobhs11T7y2rNN-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 14:47:34 2003 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 C04A616A4B3 for ; Mon, 13 Oct 2003 14:47:34 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0628D43F93 for ; Mon, 13 Oct 2003 14:47:34 -0700 (PDT) (envelope-from edwin@mavetju.org) Received: from extmail.barnet.com.au (tim.direct.int.barnet.com.au [10.10.10.2]) by mag.barnet.com.au (Postfix) with ESMTP id 5D83C1B5F; Tue, 14 Oct 2003 07:48:48 +1000 (EST) X-Viruscan-Id: <3F8B1D740000A90E01EFA686@VIRUSCAN-127.0.0.1> Received: from k7.mavetju (tim.barnet.com.au [218.185.88.1]) by extmail.barnet.com.au (Postfix) with ESMTP id 87EBF1ECC; Tue, 14 Oct 2003 07:47:31 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 972016A7101; Tue, 14 Oct 2003 07:47:30 +1000 (EST) Date: Tue, 14 Oct 2003 07:47:30 +1000 From: Edwin Groothuis To: eta@lclark.edu Message-ID: <20031013214730.GY59397@k7.mavetju> References: <20031013175021.GA12658@phobia.ms> <1066079707.642.48.camel@leguin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1066079707.642.48.camel@leguin> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: XFree86-4-clients build breaks 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, 13 Oct 2003 21:47:34 -0000 On Mon, Oct 13, 2003 at 02:15:08PM -0700, Eric Anholt wrote: > On Mon, 2003-10-13 at 10:50, David Hill wrote: > > Hello, I have attached the output. > > > > I am running 5.1-CURRENT as of Oct 10. > > > > - David > > To you and all those who have submitted this privately: > > I'm trying to reproduce this, but I can't on my local machine. I'm > trying on ref5.freebsd.org now. If you want to make sure this stays on > my todo list and doesn't get forgotten about like so many other problems > submitted privately, send a PR. If this is still an issue of not being able to reproduce it, see /home/edwin/ports/x11/XFree86-4-clients on ref5 (/home/edwin/pkg for the pkg-db dir) Edwin, absolutely no idea which timezone people are living in. -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 15:28:14 2003 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 06FB116A4B3 for ; Mon, 13 Oct 2003 15:28:14 -0700 (PDT) Received: from web80504.mail.yahoo.com (web80504.mail.yahoo.com [66.218.79.74]) by mx1.FreeBSD.org (Postfix) with SMTP id E77FD43FDD for ; Mon, 13 Oct 2003 15:28:12 -0700 (PDT) (envelope-from drakcap@pacbell.net) Message-ID: <20031013222812.92847.qmail@web80504.mail.yahoo.com> Received: from [208.139.6.94] by web80504.mail.yahoo.com via HTTP; Mon, 13 Oct 2003 15:28:12 PDT Date: Mon, 13 Oct 2003 15:28:12 -0700 (PDT) From: Robert English To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Galeon compile fails after Mozilla upgrade 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, 13 Oct 2003 22:28:14 -0000 Hello - the most recent upgrade to Mozilla 1.4.1, performed yesterday after a "cvsup" operation on my 4.8-stable box, seems to have thrown a monkey-wrench into the compile of Galeon 1.2.12. Here's the part where the failure occurs: ---- /usr/libexec/elf/ld: warning: libintl.so.4, needed by /usr/X11R6/lib/libgdk_pixbuf.so, may conflict with libintl.so.5 /usr/libexec/elf/ld: warning: libintl.so.2, needed by /usr/X11R6/lib/libgnomevfs.so, may conflict with libintl.so.5 ../src/mozilla/libmozilla-interaction.a(GlobalHistory.o)(.gnu.linkonce.d._vt$13GlobalHistory$17nsIBrowserHistory+0x54): undefined reference to `GlobalHistory::SetLastPageVisited(char const *)' gmake[4]: *** [galeon-bin] Error 1 gmake[4]: Leaving directory `/usr/ports/www/galeon/work/galeon-1.2.12/src' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/usr/ports/www/galeon/work/galeon-1.2.12/src' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/usr/ports/www/galeon/work/galeon-1.2.12/src' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/www/galeon/work/galeon-1.2.12' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/www/galeon. ---- Galeon was the last compile that I did, with Mozilla and Mozilla-Headers being compiled beforehand. Since no one else has sent in a message about this, I'm thinking it might be something unique to my system. Either that or the new version of Galeon isn't quite compatible with the new Mozilla build. TIA for any relevant info. RE From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 15:36:35 2003 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 CBCDE16A4C0 for ; Mon, 13 Oct 2003 15:36:35 -0700 (PDT) Received: from lakemtao08.cox.net (lakemtao08.cox.net [68.1.17.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id 016B243FDD for ; Mon, 13 Oct 2003 15:36:34 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.37.247]) by lakemtao08.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20031013223632.COWK22544.lakemtao08.cox.net@mezz.mezzweb.com>; Mon, 13 Oct 2003 18:36:32 -0400 To: Robert English References: <20031013222812.92847.qmail@web80504.mail.yahoo.com> Message-ID: From: Jeremy Messenger Content-Type: text/plain; format=flowed; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Mon, 13 Oct 2003 17:35:29 -0500 In-Reply-To: <20031013222812.92847.qmail@web80504.mail.yahoo.com> User-Agent: Opera7.21/Linux M2 build 480 cc: freebsd-ports@freebsd.org Subject: Re: Galeon compile fails after Mozilla upgrade 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, 13 Oct 2003 22:36:35 -0000 On Mon, 13 Oct 2003 15:28:12 -0700 (PDT), Robert English wrote: > Hello - > > the most recent upgrade to Mozilla 1.4.1, performed yesterday > after a "cvsup" operation on my 4.8-stable box, seems to have > thrown a monkey-wrench into the compile of Galeon 1.2.12. > Here's the part where the failure occurs: CVSup your ports tree and try it again. This is fixed last Saturday night or Sunday. Cheers, Mezz > ---- > ---- > > Galeon was the last compile that I did, with Mozilla and > Mozilla-Headers being compiled beforehand. > > Since no one else has sent in a message about this, I'm thinking > it might be something unique to my system. Either that or the > new version of Galeon isn't quite compatible with the new > Mozilla build. TIA for any relevant info. > > RE -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 17:48:31 2003 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 6A97216A4B3; Mon, 13 Oct 2003 17:48:31 -0700 (PDT) Received: from lewis.lclark.edu (www.runamerica.org [149.175.1.5]) by mx1.FreeBSD.org (Postfix) with SMTP id 8C7E743FDF; Mon, 13 Oct 2003 17:48:30 -0700 (PDT) (envelope-from eta@lclark.edu) Received: from [149.175.34.250] ([149.175.34.250]) by lewis.lclark.edu (SAVSMTP 3.1.1.32) with SMTP id M2003101317482827977 ; Mon, 13 Oct 2003 17:48:28 -0700 From: Eric Anholt To: David Gilbert In-Reply-To: <16267.7985.702056.610331@canoe.dclg.ca> References: <16267.7985.702056.610331@canoe.dclg.ca> Content-Type: text/plain Message-Id: <1066092507.642.119.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Mon, 13 Oct 2003 17:48:27 -0700 Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org cc: freebsd-current@freebsd.org Subject: Re: XFree86-4-clients port broken. 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, 14 Oct 2003 00:48:31 -0000 On Mon, 2003-10-13 at 14:54, David Gilbert wrote: > I don't really have a clue where to look for this fix as there seems > to be a serious amount of magic going into the divided XFree86-4 port > builds, but my XFree86-4-clients port fails saying: > > make: don't know how to make /usr/ports/x11/XFree86-4-clients/work/xc/exports/lib/libfntstubs.a. Stop > > Dave. It should be fixed now. Please cvsup (in ~1hour) and try again. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 18:23:51 2003 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 664EA16A4B3 for ; Mon, 13 Oct 2003 18:23:51 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8906643FE3 for ; Mon, 13 Oct 2003 18:23:50 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h9E1NnGZ055855 for ; Mon, 13 Oct 2003 21:23:49 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9E1Nniw016754 for ports@FreeBSD.org; Mon, 13 Oct 2003 21:23:49 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 21:23:49 -0400 (EDT) From: Kris Kennaway Message-Id: <200310140123.h9E1Nniw016754@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 14 Oct 2003 01:23:51 -0000 INDEX build failed with errors: "Makefile", line 67: Need an operator make: fatal errors encountered -- cannot continue make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxml2 make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxslt make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtk20 make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtksourceview make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/libgnomeprintui make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/pango make_index: gretl-1.1.4: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gretl-1.1.4: no entry for /usr/ports/x11/libgnome make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxml2 make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxslt make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtk20 make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtksourceview make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/libgnomeprintui make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/pango make_index: gretl-1.1.4: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gretl-1.1.4: no entry for /usr/ports/x11/libgnome make_index: ss-kde-i18n-3.1.4: no entry for /usr/ports/x11-toolkits/qt32 make_index: ss-kde-i18n-3.1.4: no entry for /usr/ports/x11/kdelibs3 [...] make_index: wmGrabImage-0.72_1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: wmGrabImage-0.72_1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: fetchyahoo-2.5.3: no entry for /usr/ports/security/p5-Crypt-SSLeay make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-libwww make_index: ko-hanterm-xf-2.0.5.173: no entry for /usr/ports/x11/XFree86-4-libraries make_index: ko-hanterm-xf-2.0.5.173: no entry for /usr/ports/x11/XFree86-4-libraries make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: pantomime-ssl-1.1.0: no entry for /usr/ports/x11-toolkits/gnustep-back make_index: pantomime-ssl-1.1.0: no entry for /usr/ports/x11-toolkits/gnustep-back make_index: ja-p5-mkres-1.6: no entry for /usr/ports/print/perlftlib make_index: xmrm-2.0_2: no entry for /usr/ports/x11-toolkits/xforms make_index: xmrm-2.0_2: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xmrm-2.0_2: no entry for /usr/ports/x11-toolkits/xforms make_index: xmrm-2.0_2: no entry for /usr/ports/x11/XFree86-4-libraries Warning: Duplicate INDEX entry: *** Error code 1 Warning: Duplicate INDEX entry: Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U audio/Makefile U audio/mpc/Makefile U audio/mpc/distinfo U audio/mpc/pkg-descr U audio/mpc/pkg-plist U audio/musicpd/Makefile U audio/musicpd/distinfo U audio/musicpd/pkg-message U audio/musicpd/pkg-plist ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U games/enigma/Makefile U games/enigma/distinfo U games/enigma/pkg-plist U japanese/mozilla-jlp-devel/Makefile U japanese/mozilla-jlp-devel/distinfo ? mail/log U mail/dbmail/Makefile U mail/dbmail/distinfo U mail/dbmail/pkg-plist U mail/dbmail/files/patch-configure ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U print/lilypond/Makefile U print/lilypond/distinfo U print/lilypond/pkg-descr U print/lilypond/pkg-message U print/lilypond/pkg-plist U print/lilypond/files/patch-Doc-user-GNUmakefile U print/pktrace/Makefile U print/pktrace/distinfo U print/pktrace/pkg-descr U print/pktrace/pkg-message U print/pktrace/files/patch-GNUmakefile.in U security/pgp5/Makefile ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 18:24:43 2003 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 A215C16A4B3 for ; Mon, 13 Oct 2003 18:24:43 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-107-253.dsl.lsan03.pacbell.net [64.169.107.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95E1D43FBD for ; Mon, 13 Oct 2003 18:24:42 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 4FB3B66E5C for ; Mon, 13 Oct 2003 18:24:40 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 33797B8C; Mon, 13 Oct 2003 18:24:40 -0700 (PDT) Date: Mon, 13 Oct 2003 18:24:40 -0700 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20031014012440.GA44040@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: smpeg-xmms-0.3.5 broken on 5.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: Tue, 14 Oct 2003 01:24:43 -0000 --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline http://bento.freebsd.org/errorlogs/i386-5-latest/smpeg-xmms-0.3.5.log Can someone please investigate? Kris --+QahgC5+KEYLbs62 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/i1BXWry0BWjoQKURAoAqAJ94uxRi620JmgdCn1nBny1/CzjtUgCg0r2z 8MLZWOghNhbiM5/l9y3nRGM= =guMk -----END PGP SIGNATURE----- --+QahgC5+KEYLbs62-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 18:33:37 2003 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 CE8B216A4B3 for ; Mon, 13 Oct 2003 18:33:37 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4BE243F85 for ; Mon, 13 Oct 2003 18:33:35 -0700 (PDT) (envelope-from edwin@mavetju.org) Received: from extmail.barnet.com.au (tim.direct.int.barnet.com.au [10.10.10.2]) by mag.barnet.com.au (Postfix) with ESMTP id C1D801A32; Tue, 14 Oct 2003 11:34:49 +1000 (EST) X-Viruscan-Id: <3F8B526D0000683801976BE4@VIRUSCAN-127.0.0.1> Received: from k7.mavetju (tim.barnet.com.au [218.185.88.1]) by extmail.barnet.com.au (Postfix) with ESMTP id 361391EE2; Tue, 14 Oct 2003 11:33:32 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 468586A7101; Tue, 14 Oct 2003 11:33:31 +1000 (EST) Date: Tue, 14 Oct 2003 11:33:31 +1000 From: Edwin Groothuis To: Kris Kennaway Message-ID: <20031014013331.GZ59397@k7.mavetju> References: <200310140123.h9E1Nniw016754@8ball.rtp.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310140123.h9E1Nniw016754@8ball.rtp.freebsd.org> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org Subject: Re: INDEX build failed 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, 14 Oct 2003 01:33:37 -0000 > U print/lilypond/Makefile Fixed. -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 18:40:46 2003 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 18D5D16A4B3 for ; Mon, 13 Oct 2003 18:40:46 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BF9B43FA3 for ; Mon, 13 Oct 2003 18:40:45 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h9E1eiGZ055902 for ; Mon, 13 Oct 2003 21:40:44 -0400 (EDT) (envelope-from kris@9ball.rtp.freebsd.org) Received: (from kris@localhost) by 9ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9E1eigQ077429 for ports@FreeBSD.org; Mon, 13 Oct 2003 21:40:44 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 21:40:44 -0400 (EDT) From: Kris Kennaway Message-Id: <200310140140.h9E1eigQ077429@9ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 14 Oct 2003 01:40:46 -0000 INDEX build failed with errors: "Makefile", line 67: Need an operator make: fatal errors encountered -- cannot continue make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxml2 make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxslt make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtk20 make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtksourceview make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/libgnomeprintui make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/pango make_index: gretl-1.1.4: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gretl-1.1.4: no entry for /usr/ports/x11/libgnome make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxml2 make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxslt make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtk20 make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtksourceview make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/libgnomeprintui make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/pango make_index: gretl-1.1.4: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gretl-1.1.4: no entry for /usr/ports/x11/libgnome make_index: ss-kde-i18n-3.1.4: no entry for /usr/ports/x11-toolkits/qt32 make_index: ss-kde-i18n-3.1.4: no entry for /usr/ports/x11/kdelibs3 [...] make_index: wmGrabImage-0.72_1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: wmGrabImage-0.72_1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: fetchyahoo-2.5.3: no entry for /usr/ports/security/p5-Crypt-SSLeay make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-libwww make_index: ko-hanterm-xf-2.0.5.173: no entry for /usr/ports/x11/XFree86-4-libraries make_index: ko-hanterm-xf-2.0.5.173: no entry for /usr/ports/x11/XFree86-4-libraries make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: pantomime-ssl-1.1.0: no entry for /usr/ports/x11-toolkits/gnustep-back make_index: pantomime-ssl-1.1.0: no entry for /usr/ports/x11-toolkits/gnustep-back make_index: ja-p5-mkres-1.6: no entry for /usr/ports/print/perlftlib make_index: xmrm-2.0_2: no entry for /usr/ports/x11-toolkits/xforms make_index: xmrm-2.0_2: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xmrm-2.0_2: no entry for /usr/ports/x11-toolkits/xforms make_index: xmrm-2.0_2: no entry for /usr/ports/x11/XFree86-4-libraries Warning: Duplicate INDEX entry: *** Error code 1 Warning: Duplicate INDEX entry: Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U audio/Makefile U audio/mpc/Makefile U audio/mpc/distinfo U audio/mpc/pkg-descr U audio/mpc/pkg-plist U audio/musicpd/Makefile U audio/musicpd/distinfo U audio/musicpd/pkg-message U audio/musicpd/pkg-plist ? devel/glade2/make.core ? devel/gnomedebug/make.core ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U games/enigma/Makefile U games/enigma/distinfo U games/enigma/pkg-plist ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core U japanese/mozilla-jlp-devel/Makefile U japanese/mozilla-jlp-devel/distinfo U mail/dbmail/Makefile U mail/dbmail/distinfo U mail/dbmail/pkg-plist U mail/dbmail/files/patch-configure ? misc/flyway/make.core ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core ? net/powerdns/Makefile.inc U print/lilypond/Makefile U print/lilypond/distinfo U print/lilypond/pkg-descr U print/lilypond/pkg-message U print/lilypond/pkg-plist U print/lilypond/files/patch-Doc-user-GNUmakefile ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U print/pktrace/Makefile U print/pktrace/distinfo U print/pktrace/pkg-descr U print/pktrace/pkg-message U print/pktrace/files/patch-GNUmakefile.in U security/pgp5/Makefile ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 19:28:34 2003 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 1064D16A4B3 for ; Mon, 13 Oct 2003 19:28:34 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16FAA43F85 for ; Mon, 13 Oct 2003 19:28:33 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h9E2SWGZ055973 for ; Mon, 13 Oct 2003 22:28:32 -0400 (EDT) (envelope-from kris@9ball.rtp.freebsd.org) Received: (from kris@localhost) by 9ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9E2SWkW000908 for ports@FreeBSD.org; Mon, 13 Oct 2003 22:28:32 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 22:28:32 -0400 (EDT) From: Kris Kennaway Message-Id: <200310140228.h9E2SWkW000908@9ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 14 Oct 2003 02:28:34 -0000 INDEX build failed with errors: "Makefile", line 67: Need an operator make: fatal errors encountered -- cannot continue make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxml2 make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxslt make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtk20 make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtksourceview make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/libgnomeprintui make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/pango make_index: gretl-1.1.4: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gretl-1.1.4: no entry for /usr/ports/x11/libgnome make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxml2 make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxslt make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtk20 make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtksourceview make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/libgnomeprintui make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/pango make_index: gretl-1.1.4: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gretl-1.1.4: no entry for /usr/ports/x11/libgnome make_index: ss-kde-i18n-3.1.4: no entry for /usr/ports/x11-toolkits/qt32 make_index: ss-kde-i18n-3.1.4: no entry for /usr/ports/x11/kdelibs3 [...] make_index: wmGrabImage-0.72_1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: wmGrabImage-0.72_1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: fetchyahoo-2.5.3: no entry for /usr/ports/security/p5-Crypt-SSLeay make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-libwww make_index: ko-hanterm-xf-2.0.5.173: no entry for /usr/ports/x11/XFree86-4-libraries make_index: ko-hanterm-xf-2.0.5.173: no entry for /usr/ports/x11/XFree86-4-libraries make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: pantomime-ssl-1.1.0: no entry for /usr/ports/x11-toolkits/gnustep-back make_index: pantomime-ssl-1.1.0: no entry for /usr/ports/x11-toolkits/gnustep-back make_index: ja-p5-mkres-1.6: no entry for /usr/ports/print/perlftlib make_index: xmrm-2.0_2: no entry for /usr/ports/x11-toolkits/xforms make_index: xmrm-2.0_2: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xmrm-2.0_2: no entry for /usr/ports/x11-toolkits/xforms make_index: xmrm-2.0_2: no entry for /usr/ports/x11/XFree86-4-libraries Warning: Duplicate INDEX entry: *** Error code 1 Warning: Duplicate INDEX entry: Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? devel/glade2/make.core ? devel/gnomedebug/make.core ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core ? misc/flyway/make.core ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core ? net/powerdns/Makefile.inc ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 19:29:55 2003 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 A57A016A4BF for ; Mon, 13 Oct 2003 19:29:55 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4359443F93 for ; Mon, 13 Oct 2003 19:29:54 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h9E2TrGZ055976 for ; Mon, 13 Oct 2003 22:29:53 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9E2TrwS035956 for ports@FreeBSD.org; Mon, 13 Oct 2003 22:29:53 -0400 (EDT) (envelope-from kris) Date: Mon, 13 Oct 2003 22:29:53 -0400 (EDT) From: Kris Kennaway Message-Id: <200310140229.h9E2TrwS035956@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 14 Oct 2003 02:29:55 -0000 INDEX build failed with errors: "Makefile", line 67: Need an operator make: fatal errors encountered -- cannot continue make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxml2 make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxslt make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtk20 make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtksourceview make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/libgnomeprintui make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/pango make_index: gretl-1.1.4: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gretl-1.1.4: no entry for /usr/ports/x11/libgnome make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxml2 make_index: gretl-1.1.4: no entry for /usr/ports/textproc/libxslt make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtk20 make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/gtksourceview make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/libgnomeprintui make_index: gretl-1.1.4: no entry for /usr/ports/x11-toolkits/pango make_index: gretl-1.1.4: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gretl-1.1.4: no entry for /usr/ports/x11/libgnome make_index: ss-kde-i18n-3.1.4: no entry for /usr/ports/x11-toolkits/qt32 make_index: ss-kde-i18n-3.1.4: no entry for /usr/ports/x11/kdelibs3 [...] make_index: wmGrabImage-0.72_1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: wmGrabImage-0.72_1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: fetchyahoo-2.5.3: no entry for /usr/ports/security/p5-Crypt-SSLeay make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-libwww make_index: ko-hanterm-xf-2.0.5.173: no entry for /usr/ports/x11/XFree86-4-libraries make_index: ko-hanterm-xf-2.0.5.173: no entry for /usr/ports/x11/XFree86-4-libraries make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: ja-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: pantomime-ssl-1.1.0: no entry for /usr/ports/x11-toolkits/gnustep-back make_index: pantomime-ssl-1.1.0: no entry for /usr/ports/x11-toolkits/gnustep-back make_index: ja-p5-mkres-1.6: no entry for /usr/ports/print/perlftlib make_index: xmrm-2.0_2: no entry for /usr/ports/x11-toolkits/xforms make_index: xmrm-2.0_2: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xmrm-2.0_2: no entry for /usr/ports/x11-toolkits/xforms make_index: xmrm-2.0_2: no entry for /usr/ports/x11/XFree86-4-libraries Warning: Duplicate INDEX entry: *** Error code 1 Warning: Duplicate INDEX entry: Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 20:29:28 2003 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 11D5A16A4B3; Mon, 13 Oct 2003 20:29:28 -0700 (PDT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FF2343F85; Mon, 13 Oct 2003 20:29:25 -0700 (PDT) (envelope-from daviskacer@comcast.net) Received: from comcast.net (c-24-126-185-44.we.client2.attbi.com[24.126.185.44]) by comcast.net (sccrmhc13) with SMTP id <20031014032922016002qc04e> (Authid: daviskacer); Tue, 14 Oct 2003 03:29:22 +0000 Message-ID: <3F8B6D8E.9090900@comcast.net> Date: Mon, 13 Oct 2003 20:29:18 -0700 From: Keith Davis User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4.1) Gecko/20031013 X-Accept-Language: en-us, en MIME-Version: 1.0 To: trevor@FreeBSD.org Content-Type: multipart/mixed; boundary="------------060503050401000903030003" cc: ports@FreeBSD.org Subject: lilypond-2.0.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: Tue, 14 Oct 2003 03:29:28 -0000 This is a multi-part message in MIME format. --------------060503050401000903030003 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit tried to build Lilypond cd /usr/ports/print/lilypond && make install; -- this is what I got. *** WARNING: *** The source code of mftrace has not been reviewed by the maintainer! *** Error code 127 Stop in /usr/ports/print/pktrace *** Error code 1 Stop in /usr/ports/print/lilypond. --------------060503050401000903030003 Content-Type: text/plain; name="report" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="report" ===> lilypond-2.0.1 depends on file: /usr/local/bin/latex - found ===> lilypond-2.0.1 depends on file: /usr/local/bin/python2.3 - found ===> lilypond-2.0.1 depends on file: /usr/local/bin/mftrace - not found ===> Verifying install for /usr/local/bin/mftrace in /usr/ports/print/pktrace *** WARNING: *** The source code of mftrace has not been reviewed by the maintainer! *** Error code 127 Stop in /usr/ports/print/pktrace. *** Error code 1 Stop in /usr/ports/print/lilypond. --------------060503050401000903030003-- From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 20:36:06 2003 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 D8E3316A4B3 for ; Mon, 13 Oct 2003 20:36:06 -0700 (PDT) Received: from dart.sr.se (dart.SR.SE [134.25.0.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44B8943F85 for ; Mon, 13 Oct 2003 20:36:05 -0700 (PDT) (envelope-from gunnar@oldie.sr.se) Received: from honken.sr.se (honken.sr.se [134.25.128.27]) by dart.sr.se (8.12.8p2/8.12.8) with ESMTP id h9E3a35R009143 for ; Tue, 14 Oct 2003 05:36:03 +0200 (CEST) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (oldie [134.25.200.100]) by honken.sr.se (8.12.3p2/8.12.3) with ESMTP id h9E3a3bA044566 for ; Tue, 14 Oct 2003 05:36:03 +0200 (CEST) (envelope-from gunnar@oldie.sr.se) Received: from oldie.sr.se (localhost [127.0.0.1]) by oldie.sr.se (8.12.9/8.12.9) with ESMTP id h9E3a3ie007334 for ; Tue, 14 Oct 2003 05:36:03 +0200 (CEST) (envelope-from gunnar@oldie.sr.se) Received: (from gunnar@localhost) by oldie.sr.se (8.12.9/8.12.9/Submit) id h9E3a36d007333 for freebsd-ports@freebsd.org; Tue, 14 Oct 2003 05:36:03 +0200 (CEST) Date: Tue, 14 Oct 2003 05:36:03 +0200 From: Gunnar Flygt To: freebsd-ports@freebsd.org Message-ID: <20031014033603.GA7324@sr.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: Errors compiling kdelibs-3.1.4 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gunnar Flygt List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Oct 2003 03:36:07 -0000 I installed the latest kde 3.1.4 from packages. It doesn't work for me. When trying to start kdm, I get only a flickering X window stopping after a while saying that it restarts to quickly. So I tried to compile the kdelibs again, to see if that would solve the problem. It stoppes after a long time of compiling with the following error: c++: -lc_r: linker input file unused because linking not done /bin/sh ../../libtool --silent --mode=link --tag=CXX c++ -Wnon-virtual-dtor -Wn o-long-long -Wundef -Wall -W -Wpointer-arith -Wwrite-strings -DNDEBUG -DNO_DEBUG -O2 -O -pipe -mcpu=pentiumpro -fno-exceptions -fno-check-new -DQT_NO_TRANSLATI ON -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_COMPAT -UQT_NO_ASCII_CAST -r path=/usr/local/lib -o genembed -L/usr/X11R6/lib -lc_r -L/usr/local/lib -L/usr/ local/lib -R /usr/local/lib -R /usr/X11R6/lib -R /usr/X11R6/lib -R /usr/local/li b genembed.o ../../kdefx/libkdefx.la -Wl,-export-dynamic -L/usr/local/lib -L/usr /X11R6/lib -ljpeg -L/usr/X11R6/lib pics=`ls ./pics/*.png 2>/dev/null` ;\ ./genembed $pics > pixmaps.keramik /libexec/ld-elf.so.1: /usr/local/lib/libkdefx.so.5: Undefined symbol "__ti7QPixm ap" gmake[3]: *** [keramikrc.h] Fel 1 gmake[3]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.1.4/kstyles/ keramik' gmake[2]: *** [all-recursive] Fel 1 gmake[2]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.1.4/kstyles' gmake[1]: *** [all-recursive] Fel 1 gmake[1]: Leaving directory `/usr/ports/x11/kdelibs3/work/kdelibs-3.1.4' gmake: *** [all] Fel 2 *** Error code 2 Stop in /usr/ports/x11/kdelibs3. And that's it. Any suggestions? -- Gunnar Flygt OPC Data Sveriges Radio From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 20:38:08 2003 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 9C51416A4B3; Mon, 13 Oct 2003 20:38:08 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9649943F85; Mon, 13 Oct 2003 20:38:07 -0700 (PDT) (envelope-from edwin@mavetju.org) Received: from extmail.barnet.com.au (tim.direct.int.barnet.com.au [10.10.10.2]) by mag.barnet.com.au (Postfix) with ESMTP id 45A101B85; Tue, 14 Oct 2003 13:39:17 +1000 (EST) X-Viruscan-Id: <3F8B6F9700011DCA019CAF8C@VIRUSCAN-127.0.0.1> Received: from k7.mavetju (tim.barnet.com.au [218.185.88.1]) by extmail.barnet.com.au (Postfix) with ESMTP id C56231F0B; Tue, 14 Oct 2003 13:37:58 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 3A2AA6A7101; Tue, 14 Oct 2003 13:37:57 +1000 (EST) Date: Tue, 14 Oct 2003 13:37:57 +1000 From: Edwin Groothuis To: Keith Davis Message-ID: <20031014033757.GA59397@k7.mavetju> References: <3F8B6D8E.9090900@comcast.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3F8B6D8E.9090900@comcast.net> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org cc: trevor@FreeBSD.org Subject: Re: lilypond-2.0.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: Tue, 14 Oct 2003 03:38:08 -0000 On Mon, Oct 13, 2003 at 08:29:18PM -0700, Keith Davis wrote: > tried to build Lilypond > cd /usr/ports/print/lilypond && make install; -- this is what I got. It's fixed in CVS, please place a $ behind the @ in line 34 of print/pktrace/Makefile. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 20:46:32 2003 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 6629A16A4B3; Mon, 13 Oct 2003 20:46:32 -0700 (PDT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4714D43FD7; Mon, 13 Oct 2003 20:46:29 -0700 (PDT) (envelope-from daviskacer@comcast.net) Received: from comcast.net (c-24-126-185-44.we.client2.attbi.com[24.126.185.44]) by comcast.net (sccrmhc13) with SMTP id <20031014034628016002o5cie> (Authid: daviskacer); Tue, 14 Oct 2003 03:46:28 +0000 Message-ID: <3F8B7190.6080806@comcast.net> Date: Mon, 13 Oct 2003 20:46:24 -0700 From: Keith Davis User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4.1) Gecko/20031013 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Keith Davis , trevor@FreeBSD.org References: <3F8B6D8E.9090900@comcast.net> In-Reply-To: <3F8B6D8E.9090900@comcast.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: lilypond-2.0.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: Tue, 14 Oct 2003 03:46:32 -0000 Somehow the problem did not get recorded in the output message I sent: Here it is the error is {ECHO_CMD}: not found. ***WARNING: *** The source code of mftrace has not been reviewed by the maintainer! {ECHO_CMD}: not found *** Error code 127 Keith Davis wrote: > tried to build Lilypond > cd /usr/ports/print/lilypond && make install; -- this is what I got. > > *** WARNING: > *** The source code of mftrace has not been reviewed by the maintainer! > *** Error code 127 > > Stop in /usr/ports/print/pktrace > *** Error code 1 > > Stop in /usr/ports/print/lilypond. > >------------------------------------------------------------------------ > >===> lilypond-2.0.1 depends on file: /usr/local/bin/latex - found >===> lilypond-2.0.1 depends on file: /usr/local/bin/python2.3 - found >===> lilypond-2.0.1 depends on file: /usr/local/bin/mftrace - not found >===> Verifying install for /usr/local/bin/mftrace in /usr/ports/print/pktrace >*** WARNING: >*** The source code of mftrace has not been reviewed by the maintainer! >*** Error code 127 > >Stop in /usr/ports/print/pktrace. >*** Error code 1 > >Stop in /usr/ports/print/lilypond. > > From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 20:57:28 2003 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 6BCF916A4B3; Mon, 13 Oct 2003 20:57:28 -0700 (PDT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D6A043FBF; Mon, 13 Oct 2003 20:57:27 -0700 (PDT) (envelope-from daviskacer@comcast.net) Received: from jupiter (c-24-126-185-44.we.client2.attbi.com[24.126.185.44]) by comcast.net (sccrmhc13) with SMTP id <20031014035726016002phv1e>; Tue, 14 Oct 2003 03:57:26 +0000 From: "Keith Davis" To: Date: Mon, 13 Oct 2003 20:57:26 -0700 Message-ID: <000001c39207$481b9760$6401a8c0@jupiter> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 Importance: Normal In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 cc: ports@FreeBSD.org Subject: RE: FreeBSD Port: lilypond-2.0.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: Tue, 14 Oct 2003 03:57:28 -0000 I think you forgot to commit 1.7. cvs still shows 1.6 as current. From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 20:58:46 2003 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 723C716A4B3; Mon, 13 Oct 2003 20:58:46 -0700 (PDT) Received: from blues.jpj.net (blues.jpj.net [208.210.80.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30DF043F75; Mon, 13 Oct 2003 20:58:45 -0700 (PDT) (envelope-from trevor@jpj.net) Received: from blues.jpj.net (localhost.jpj.net [127.0.0.1]) by blues.jpj.net (8.12.10/8.12.3) with ESMTP id h9E3wftU095990; Mon, 13 Oct 2003 23:58:41 -0400 (EDT) (envelope-from trevor@jpj.net) Received: from localhost (trevor@localhost)h9E3wf8B095987; Mon, 13 Oct 2003 23:58:41 -0400 (EDT) X-Authentication-Warning: blues.jpj.net: trevor owned process doing -bs Date: Mon, 13 Oct 2003 23:58:40 -0400 (EDT) From: Trevor Johnson To: Keith Davis In-Reply-To: <3F8B7190.6080806@comcast.net> Message-ID: <20031013235738.V68872@blues.jpj.net> References: <3F8B6D8E.9090900@comcast.net> <3F8B7190.6080806@comcast.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org cc: edwin@FreeBSD.org Subject: Re: lilypond-2.0.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: Tue, 14 Oct 2003 03:58:46 -0000 > Somehow the problem did not get recorded in the output message I sent: > Here it is > the error is > {ECHO_CMD}: not found. Thanks, Keith. I would have fixed it for you, but Edwin beat me to it. -- Trevor Johnson From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 21:05:20 2003 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 60E1316A4B3 for ; Mon, 13 Oct 2003 21:05:20 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F2CE43FB1 for ; Mon, 13 Oct 2003 21:05:19 -0700 (PDT) (envelope-from edwin@mavetju.org) Received: from extmail.barnet.com.au (tim.direct.int.barnet.com.au [10.10.10.2]) by mag.barnet.com.au (Postfix) with ESMTP id 76EFB1A6D; Tue, 14 Oct 2003 14:06:34 +1000 (EST) X-Viruscan-Id: <3F8B75FD0001448B01FA00B2@VIRUSCAN-127.0.0.1> Received: from k7.mavetju (tim.barnet.com.au [218.185.88.1]) by extmail.barnet.com.au (Postfix) with ESMTP id 5561A1EE2; Tue, 14 Oct 2003 14:05:16 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 51A676A7109; Tue, 14 Oct 2003 14:05:15 +1000 (EST) Date: Tue, 14 Oct 2003 14:05:15 +1000 From: Edwin Groothuis To: Trevor Johnson Message-ID: <20031014040515.GW59349@k7.mavetju> References: <3F8B6D8E.9090900@comcast.net> <3F8B7190.6080806@comcast.net> <20031013235738.V68872@blues.jpj.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031013235738.V68872@blues.jpj.net> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org Subject: Re: lilypond-2.0.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: Tue, 14 Oct 2003 04:05:20 -0000 On Mon, Oct 13, 2003 at 11:58:40PM -0400, Trevor Johnson wrote: > > Somehow the problem did not get recorded in the output message I sent: > > Here it is > > the error is > > {ECHO_CMD}: not found. > > Thanks, Keith. I would have fixed it for you, but Edwin beat me to it. Didn't know if you were already in bed(*) or not since you stopped commiting :-/ (*) is otherwise AFK. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 22:09:43 2003 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 C473016A4B3 for ; Mon, 13 Oct 2003 22:09:43 -0700 (PDT) Received: from ongs.co.jp (ns.ongs.co.jp [202.216.232.58]) by mx1.FreeBSD.org (Postfix) with SMTP id D49F243F85 for ; Mon, 13 Oct 2003 22:09:41 -0700 (PDT) (envelope-from daichi@freebsd.org) Received: (qmail 33118 invoked from network); 14 Oct 2003 05:09:12 -0000 Received: from unknown (HELO parancell.ongs.co.jp) (202.216.232.62) by ns.ongs.co.jp with SMTP; 14 Oct 2003 05:09:12 -0000 Date: Tue, 14 Oct 2003 14:11:22 +0900 From: daichi To: "chkno" Message-Id: <20031014141122.12ac3743.daichi@freebsd.org> In-Reply-To: <45258.192.168.151.9.1065380618.squirrel@chkno.net> References: <45258.192.168.151.9.1065380618.squirrel@chkno.net> Organization: FreeBSD Project X-Mailer: Sylpheed version 0.9.6 (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org cc: daichi@FreeBSD.org Subject: Re: ports/games/ltris 1.0.5 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, 14 Oct 2003 05:09:43 -0000 > LTris 1.0.5 is released, up from 1.0.4. No build changes necessary. > > diff -ru ports/games/ltris.orig/Makefile ports/games/ltris/Makefile > --- ports/games/ltris.orig/Makefile Sun Oct 5 11:53:40 2003 > +++ ports/games/ltris/Makefile Sun Oct 5 11:48:22 2003 > @@ -6,7 +6,7 @@ > # > > PORTNAME= ltris > -PORTVERSION= 1.0.4 > +PORTVERSION= 1.0.5 > PORTEPOCH= 1 > CATEGORIES= games > MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} > diff -ru ports/games/ltris.orig/distinfo ports/games/ltris/distinfo > --- ports/games/ltris.orig/distinfo Sun Oct 5 11:53:46 2003 > +++ ports/games/ltris/distinfo Sun Oct 5 11:53:55 2003 > @@ -1 +1 @@ > -MD5 (ltris-1.0.4.tar.gz) = e5fc931877f21384972e755894254b43 > +MD5 (ltris-1.0.5.tar.gz) = 0d86cfc181dfb582bceb88fa611a973b I checked and committed it. Thanks :) -- Daichi GOTO, http://people.freebsd.org/~daichi From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 22:16:46 2003 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 A053716A4B3 for ; Mon, 13 Oct 2003 22:16:46 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5433A43FBF for ; Mon, 13 Oct 2003 22:16:45 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h9E5GiGZ092145 for ; Tue, 14 Oct 2003 01:16:44 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9E5GiiY088885 for ports@FreeBSD.org; Tue, 14 Oct 2003 01:16:44 -0400 (EDT) (envelope-from kris) Date: Tue, 14 Oct 2003 01:16:44 -0400 (EDT) From: Kris Kennaway Message-Id: <200310140516.h9E5GiiY088885@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 14 Oct 2003 05:16:46 -0000 INDEX build failed with errors: "Makefile", line 12: Missing dependency operator make: fatal errors encountered -- cannot continue make_index: zh-oto-0.4_1: no entry for /usr/ports/devel/gmake make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/lang/ruby16 make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/multimedia/xmms make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/lang/ruby16 make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/multimedia/xmms make_index: SETISupport-0.75: no entry for /usr/ports/x11/XFree86-4-libraries make_index: SETISupport-0.75: no entry for /usr/ports/java/javavmwrapper make_index: SETISupport-0.75: no entry for /usr/ports/java/jre make_index: SETISupport-0.75: no entry for /usr/ports/x11/XFree86-4-libraries make_index: mule-ucs-emacs21-0.85.r3: no entry for /usr/ports/editors/emacs21 make_index: mule-ucs-emacs21-0.85.r3: no entry for /usr/ports/editors/emacs21 make_index: apache-ant-1.5.4_1: no entry for /usr/ports/java/jdk12 make_index: apache-ant-1.5.4_1: no entry for /usr/ports/java/jdk12 make_index: mopac-7.02: no entry for /usr/ports/devel/gmake make_index: mopac-7.02: no entry for /usr/ports/lang/f77 make_index: karamba-0.17: no entry for /usr/ports/x11-toolkits/qt32 make_index: karamba-0.17: no entry for /usr/ports/x11/kdelibs3 make_index: karamba-0.17: no entry for /usr/ports/x11-toolkits/qt32 [...] make_index: mikmod-3.1.6: no entry for /usr/ports/devel/gmake make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/glib12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/gmake make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/pkgconfig make_index: mp3stat-2.5.6_1: no entry for /usr/ports/x11-toolkits/gtk12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/glib12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/pkgconfig make_index: mp3stat-2.5.6_1: no entry for /usr/ports/x11-toolkits/gtk12 make_index: libdbi-0.6.7_1: no entry for /usr/ports/devel/libtool13 make_index: gschem-20030223: no entry for /usr/ports/devel/glib12 make_index: gschem-20030223: no entry for /usr/ports/devel/libtool13 make_index: gschem-20030223: no entry for /usr/ports/devel/pkgconfig make_index: gschem-20030223: no entry for /usr/ports/lang/guile make_index: gschem-20030223: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gschem-20030223: no entry for /usr/ports/devel/glib12 make_index: gschem-20030223: no entry for /usr/ports/devel/pkgconfig make_index: gschem-20030223: no entry for /usr/ports/lang/guile make_index: gschem-20030223: no entry for /usr/ports/x11-toolkits/gtk12 Warning: Duplicate INDEX entry: *** Error code 1 Warning: Duplicate INDEX entry: Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U devel/autoconf/Makefile U devel/autoconf213/Makefile U devel/libtool14/Makefile U devel/libtool15/Makefile ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? mail/log U multimedia/gstreamer-plugins/files/patch-gst_level_filter.func U multimedia/smpeg-xmms/files/patch-configure ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U print/pktrace/Makefile ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 22:20:11 2003 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 DAC3816A4C0 for ; Mon, 13 Oct 2003 22:20:11 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0E8E43FAF for ; Mon, 13 Oct 2003 22:20:10 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h9E5KAGZ006440 for ; Tue, 14 Oct 2003 01:20:10 -0400 (EDT) (envelope-from kris@9ball.rtp.freebsd.org) Received: (from kris@localhost) by 9ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9E5KAtI033974 for ports@FreeBSD.org; Tue, 14 Oct 2003 01:20:10 -0400 (EDT) (envelope-from kris) Date: Tue, 14 Oct 2003 01:20:10 -0400 (EDT) From: Kris Kennaway Message-Id: <200310140520.h9E5KAtI033974@9ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 14 Oct 2003 05:20:12 -0000 INDEX build failed with errors: "Makefile", line 12: Missing dependency operator make: fatal errors encountered -- cannot continue make_index: zh-oto-0.4_1: no entry for /usr/ports/devel/gmake make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/lang/ruby16 make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/multimedia/xmms make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/lang/ruby16 make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/multimedia/xmms make_index: SETISupport-0.75: no entry for /usr/ports/x11/XFree86-4-libraries make_index: SETISupport-0.75: no entry for /usr/ports/java/javavmwrapper make_index: SETISupport-0.75: no entry for /usr/ports/java/jre make_index: SETISupport-0.75: no entry for /usr/ports/x11/XFree86-4-libraries make_index: mule-ucs-emacs21-0.85.r3: no entry for /usr/ports/editors/emacs21 make_index: mule-ucs-emacs21-0.85.r3: no entry for /usr/ports/editors/emacs21 make_index: apache-ant-1.5.4_1: no entry for /usr/ports/java/jdk12 make_index: apache-ant-1.5.4_1: no entry for /usr/ports/java/jdk12 make_index: mopac-7.02: no entry for /usr/ports/devel/gmake make_index: mopac-7.02: no entry for /usr/ports/lang/f77 make_index: karamba-0.17: no entry for /usr/ports/x11-toolkits/qt32 make_index: karamba-0.17: no entry for /usr/ports/x11/kdelibs3 make_index: karamba-0.17: no entry for /usr/ports/x11-toolkits/qt32 [...] make_index: mikmod-3.1.6: no entry for /usr/ports/devel/gmake make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/glib12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/gmake make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/pkgconfig make_index: mp3stat-2.5.6_1: no entry for /usr/ports/x11-toolkits/gtk12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/glib12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/pkgconfig make_index: mp3stat-2.5.6_1: no entry for /usr/ports/x11-toolkits/gtk12 make_index: libdbi-0.6.7_1: no entry for /usr/ports/devel/libtool13 make_index: gschem-20030223: no entry for /usr/ports/devel/glib12 make_index: gschem-20030223: no entry for /usr/ports/devel/libtool13 make_index: gschem-20030223: no entry for /usr/ports/devel/pkgconfig make_index: gschem-20030223: no entry for /usr/ports/lang/guile make_index: gschem-20030223: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gschem-20030223: no entry for /usr/ports/devel/glib12 make_index: gschem-20030223: no entry for /usr/ports/devel/pkgconfig make_index: gschem-20030223: no entry for /usr/ports/lang/guile make_index: gschem-20030223: no entry for /usr/ports/x11-toolkits/gtk12 Warning: Duplicate INDEX entry: *** Error code 1 Warning: Duplicate INDEX entry: Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U devel/autoconf/Makefile U devel/autoconf213/Makefile ? devel/glade2/make.core ? devel/gnomedebug/make.core U devel/libtool14/Makefile U devel/libtool15/Makefile ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core ? misc/flyway/make.core U multimedia/gstreamer-plugins/files/patch-gst_level_filter.func U multimedia/smpeg-xmms/files/patch-configure ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core ? net/powerdns/Makefile.inc ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U print/pktrace/Makefile ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 22:26:15 2003 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 2F8C216A4B3 for ; Mon, 13 Oct 2003 22:26:15 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id C774443FE3 for ; Mon, 13 Oct 2003 22:26:13 -0700 (PDT) (envelope-from edwin@mavetju.org) Received: from extmail.barnet.com.au (tim.direct.int.barnet.com.au [10.10.10.2]) by mag.barnet.com.au (Postfix) with ESMTP id 23F9A187A; Tue, 14 Oct 2003 15:27:24 +1000 (EST) X-Viruscan-Id: <3F8B88EE0000388601E0A24A@VIRUSCAN-127.0.0.1> Received: from k7.mavetju (tim.barnet.com.au [218.185.88.1]) by extmail.barnet.com.au (Postfix) with ESMTP id 47E891F16; Tue, 14 Oct 2003 15:26:05 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 1D1E36A7124; Tue, 14 Oct 2003 15:26:04 +1000 (EST) Date: Tue, 14 Oct 2003 15:26:04 +1000 From: Edwin Groothuis To: Kris Kennaway Message-ID: <20031014052604.GB59397@k7.mavetju> References: <200310140516.h9E5GiiY088885@8ball.rtp.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310140516.h9E5GiiY088885@8ball.rtp.freebsd.org> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org Subject: Re: INDEX build failed 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, 14 Oct 2003 05:26:15 -0000 On Tue, Oct 14, 2003 at 01:16:44AM -0400, Kris Kennaway wrote: > U devel/autoconf/Makefile Fixed. -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://www.mavetju.org/weblog/weblog.php From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 23:10:48 2003 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 4393816A4B3 for ; Mon, 13 Oct 2003 23:10:48 -0700 (PDT) Received: from oak.FernUni-Hagen.de (oak.fernuni-hagen.de [132.176.114.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E03043F85 for ; Mon, 13 Oct 2003 23:10:47 -0700 (PDT) (envelope-from jfh@es-i2.FernUni-Hagen.de) Received: from amavis by oak.FernUni-Hagen.de with scanned-ok (Exim 4.04) id 1A9IOM-00015X-00; Tue, 14 Oct 2003 08:10:46 +0200 Received: from es-i2.fernuni-hagen.de ([132.176.7.81]) by oak.FernUni-Hagen.de with esmtp (Exim 4.04) id 1A9IOE-00014z-00; Tue, 14 Oct 2003 08:10:38 +0200 Received: from jfh00.fernuni-hagen.de (jfh00.fernuni-hagen.de [132.176.7.6]) by es-i2.fernuni-hagen.de (Postfix) with ESMTP id F1E1C5D6C; Tue, 14 Oct 2003 08:10:37 +0200 (CEST) Received: by jfh00.fernuni-hagen.de (Postfix, from userid 1001) id 8181A17102; Tue, 14 Oct 2003 08:10:38 +0200 (CEST) Date: Tue, 14 Oct 2003 08:10:38 +0200 From: Fritz Heinrichmeyer To: ports@freebsd.org Message-ID: <20031014061038.GA77831@jfh00.fernuni-hagen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline User-Agent: Mutt/1.5.4i Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: by AMaViS perl-11 Subject: pstoedit and gcc-3.3.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: Tue, 14 Oct 2003 06:10:48 -0000 this is an email to maintainer of pstoedit: it does not build when gcc-3.3.1 is the C++ compiler. configure has to be changed to not use "-pedantic" as compiler flag. --=20 Mit freundlichen Gr=FC=DFen Fritz Heinrichmeyer FernUniversitaet, LG ES, 58084 Hagen (Germany) tel:+49 2331/987-1166 fax:987-355 http://www-es.fernuni-hagen.de/~jfh From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 23:18:10 2003 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 8FBE916A4B3 for ; Mon, 13 Oct 2003 23:18:10 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id B226E43FBF for ; Mon, 13 Oct 2003 23:18:09 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h9E6I9GZ039694 for ; Tue, 14 Oct 2003 02:18:09 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9E6I8jJ011439 for ports@FreeBSD.org; Tue, 14 Oct 2003 02:18:08 -0400 (EDT) (envelope-from kris) Date: Tue, 14 Oct 2003 02:18:08 -0400 (EDT) From: Kris Kennaway Message-Id: <200310140618.h9E6I8jJ011439@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 14 Oct 2003 06:18:10 -0000 INDEX build failed with errors: "Makefile", line 12: Missing dependency operator make: fatal errors encountered -- cannot continue make_index: zh-oto-0.4_1: no entry for /usr/ports/devel/gmake make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/lang/ruby16 make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/multimedia/xmms make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/lang/ruby16 make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/multimedia/xmms make_index: SETISupport-0.75: no entry for /usr/ports/x11/XFree86-4-libraries make_index: SETISupport-0.75: no entry for /usr/ports/java/javavmwrapper make_index: SETISupport-0.75: no entry for /usr/ports/java/jre make_index: SETISupport-0.75: no entry for /usr/ports/x11/XFree86-4-libraries make_index: mule-ucs-emacs21-0.85.r3: no entry for /usr/ports/editors/emacs21 make_index: mule-ucs-emacs21-0.85.r3: no entry for /usr/ports/editors/emacs21 make_index: apache-ant-1.5.4_1: no entry for /usr/ports/java/jdk12 make_index: apache-ant-1.5.4_1: no entry for /usr/ports/java/jdk12 make_index: mopac-7.02: no entry for /usr/ports/devel/gmake make_index: mopac-7.02: no entry for /usr/ports/lang/f77 make_index: karamba-0.17: no entry for /usr/ports/x11-toolkits/qt32 make_index: karamba-0.17: no entry for /usr/ports/x11/kdelibs3 make_index: karamba-0.17: no entry for /usr/ports/x11-toolkits/qt32 [...] make_index: mikmod-3.1.6: no entry for /usr/ports/devel/gmake make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/glib12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/gmake make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/pkgconfig make_index: mp3stat-2.5.6_1: no entry for /usr/ports/x11-toolkits/gtk12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/glib12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/pkgconfig make_index: mp3stat-2.5.6_1: no entry for /usr/ports/x11-toolkits/gtk12 make_index: libdbi-0.6.7_1: no entry for /usr/ports/devel/libtool13 make_index: gschem-20030223: no entry for /usr/ports/devel/glib12 make_index: gschem-20030223: no entry for /usr/ports/devel/libtool13 make_index: gschem-20030223: no entry for /usr/ports/devel/pkgconfig make_index: gschem-20030223: no entry for /usr/ports/lang/guile make_index: gschem-20030223: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gschem-20030223: no entry for /usr/ports/devel/glib12 make_index: gschem-20030223: no entry for /usr/ports/devel/pkgconfig make_index: gschem-20030223: no entry for /usr/ports/lang/guile make_index: gschem-20030223: no entry for /usr/ports/x11-toolkits/gtk12 Warning: Duplicate INDEX entry: *** Error code 1 Warning: Duplicate INDEX entry: Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Mon Oct 13 23:18:55 2003 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 B91A316A4C0 for ; Mon, 13 Oct 2003 23:18:55 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6501943F75 for ; Mon, 13 Oct 2003 23:18:54 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h9E6IrGZ042262 for ; Tue, 14 Oct 2003 02:18:54 -0400 (EDT) (envelope-from kris@9ball.rtp.freebsd.org) Received: (from kris@localhost) by 9ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9E6IrVQ027801 for ports@FreeBSD.org; Tue, 14 Oct 2003 02:18:53 -0400 (EDT) (envelope-from kris) Date: Tue, 14 Oct 2003 02:18:53 -0400 (EDT) From: Kris Kennaway Message-Id: <200310140618.h9E6IrVQ027801@9ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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, 14 Oct 2003 06:18:55 -0000 INDEX build failed with errors: "Makefile", line 12: Missing dependency operator make: fatal errors encountered -- cannot continue make_index: zh-oto-0.4_1: no entry for /usr/ports/devel/gmake make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/lang/ruby16 make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/multimedia/xmms make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/lang/ruby16 make_index: ruby-xmms-0.1.1_1: no entry for /usr/ports/multimedia/xmms make_index: SETISupport-0.75: no entry for /usr/ports/x11/XFree86-4-libraries make_index: SETISupport-0.75: no entry for /usr/ports/java/javavmwrapper make_index: SETISupport-0.75: no entry for /usr/ports/java/jre make_index: SETISupport-0.75: no entry for /usr/ports/x11/XFree86-4-libraries make_index: mule-ucs-emacs21-0.85.r3: no entry for /usr/ports/editors/emacs21 make_index: mule-ucs-emacs21-0.85.r3: no entry for /usr/ports/editors/emacs21 make_index: apache-ant-1.5.4_1: no entry for /usr/ports/java/jdk12 make_index: apache-ant-1.5.4_1: no entry for /usr/ports/java/jdk12 make_index: mopac-7.02: no entry for /usr/ports/devel/gmake make_index: mopac-7.02: no entry for /usr/ports/lang/f77 make_index: karamba-0.17: no entry for /usr/ports/x11-toolkits/qt32 make_index: karamba-0.17: no entry for /usr/ports/x11/kdelibs3 make_index: karamba-0.17: no entry for /usr/ports/x11-toolkits/qt32 [...] make_index: mikmod-3.1.6: no entry for /usr/ports/devel/gmake make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/glib12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/gmake make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/pkgconfig make_index: mp3stat-2.5.6_1: no entry for /usr/ports/x11-toolkits/gtk12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/glib12 make_index: mp3stat-2.5.6_1: no entry for /usr/ports/devel/pkgconfig make_index: mp3stat-2.5.6_1: no entry for /usr/ports/x11-toolkits/gtk12 make_index: libdbi-0.6.7_1: no entry for /usr/ports/devel/libtool13 make_index: gschem-20030223: no entry for /usr/ports/devel/glib12 make_index: gschem-20030223: no entry for /usr/ports/devel/libtool13 make_index: gschem-20030223: no entry for /usr/ports/devel/pkgconfig make_index: gschem-20030223: no entry for /usr/ports/lang/guile make_index: gschem-20030223: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gschem-20030223: no entry for /usr/ports/devel/glib12 make_index: gschem-20030223: no entry for /usr/ports/devel/pkgconfig make_index: gschem-20030223: no entry for /usr/ports/lang/guile make_index: gschem-20030223: no entry for /usr/ports/x11-toolkits/gtk12 Warning: Duplicate INDEX entry: *** Error code 1 Warning: Duplicate INDEX entry: Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? devel/glade2/make.core ? devel/gnomedebug/make.core ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core ? misc/flyway/make.core ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core ? net/powerdns/Makefile.inc ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 02:56:43 2003 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 1B9C216A4BF for ; Tue, 14 Oct 2003 02:56:43 -0700 (PDT) Received: from gandalf.online.bg (gandalf.online.bg [217.75.128.9]) by mx1.FreeBSD.org (Postfix) with SMTP id 614E143FB1 for ; Tue, 14 Oct 2003 02:56:41 -0700 (PDT) (envelope-from roam@ringlet.net) Received: (qmail 22409 invoked from network); 14 Oct 2003 09:56:15 -0000 Received: from office.sbnd.net (HELO straylight.ringlet.net) (217.75.140.130) by gandalf.online.bg with SMTP; 14 Oct 2003 09:56:14 -0000 Received: (qmail 94010 invoked by uid 1000); 14 Oct 2003 09:56:39 -0000 Date: Tue, 14 Oct 2003 12:56:39 +0300 From: Peter Pentchev To: hansmann.d@debitel.net Message-ID: <20031014095638.GJ617@straylight.oblivion.bg> Mail-Followup-To: hansmann.d@debitel.net, ports@FreeBSD.org References: <3F894FA8.9000201@debitel.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dXvu6+ixFx2ZffE8" Content-Disposition: inline In-Reply-To: <3F894FA8.9000201@debitel.net> User-Agent: Mutt/1.5.4i cc: ports@FreeBSD.org Subject: Re: JFtp port 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, 14 Oct 2003 09:56:43 -0000 --dXvu6+ixFx2ZffE8 Content-Type: text/plain; charset=windows-1251 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Oct 12, 2003 at 02:57:12PM +0200, D.Hansmann wrote: > Hi there! >=20 > I saw that you have a port of my JFtp application on your site, that's=20 > really cool :) >=20 > Howevery, version 1.30 is way too old to use, there were huge amounts of= =20 > bugfixes and feature > enhancements made and the recent version is v1.38. I suggest you to=20 > update the version or even better > to mirror the most recent jar (located at=20 > http://j-ftp.sourceforge.net/jftp.jar). It is updated now, the port update was submitted by Stefan Walter shortly after your e-mail :) Thanks for the notification! G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@sbnd.net roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 I am the meaning of this sentence. --dXvu6+ixFx2ZffE8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/i8hW7Ri2jRYZRVMRAhKCAKCBA8zu4KnoJK5FX301mQoZq/G6TgCgxIt4 DY0dxX2Qm/a9ZEL6aDq3ag4= =Hwln -----END PGP SIGNATURE----- --dXvu6+ixFx2ZffE8-- From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 04:21:37 2003 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 6750B16A4B3 for ; Tue, 14 Oct 2003 04:21:37 -0700 (PDT) Received: from mail.dt.e-technik.uni-dortmund.de (mail.dt.e-technik.Uni-Dortmund.DE [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CEAF43F93 for ; Tue, 14 Oct 2003 04:21:36 -0700 (PDT) (envelope-from matthias.andree@gmx.de) Received: from m2a2.dyndns.org (krusty.dt.e-technik.uni-dortmund.de [129.217.163.1])5955A7FD3 for ; Tue, 14 Oct 2003 13:21:35 +0200 (CEST) Received: by merlin.emma.line.org (Postfix, from userid 500) id 1B614983F1; Tue, 14 Oct 2003 13:21:34 +0200 (CEST) Date: Tue, 14 Oct 2003 13:21:34 +0200 From: Matthias Andree To: ports@freebsd.org Message-ID: <20031014112134.GA18306@merlin.emma.line.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i Subject: READ PLEASE if your port uses BerkeleyDB (db3, db4, db41) 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, 14 Oct 2003 11:21:37 -0000 Hi, as some of you know, I am currently maintaining the db4, db41, db41-nocrypto and bogofilter ports, among others. One thing that has bewildered me since I've first used FreeBSD is the DB specific prodding that is taking place in the ports. We don't install BerkeleyDB into /usr/local/BerkeleyDB.4.1/lib/libdb.so for instance, but we're renaming the library (including the ELF SONAME trait) and tossing it into /usr/local/lib. One reason why this MIGHT (just guessing!) have happened is that Sleepycat hasn't made use of the library major version - it's always been 0, even across incompatible API/ABI changes. While the current scheme makes sure that a program is always linked against the right library at run time (libdb41.so.0, for instance), this scheme effectively prohibits packages from using AC_LIB_LINKFLAGS, since the canonical name is libdb rather than libdb4 or something. OTOH, if we reverted to installing in the original SleepyCat directory layout, this would require ALL FreeBSD ports using some libdb version to hard code the path (ld -rpath), so the library is found. /usr/local/BerkeleyDB.X.Y is not in the default library path, not should it be: if it was, a system could only have one BerkeleyDB version installed at a time. This is not an option at this time, since it causes ports conflicts that can be avoided with the current schemes. Just symlinking things into /usr/local/BerkeleyDB.X.Y might not work since the library SONAME does not match then -- or can we have a file /usr/local/BerkeleyDB.4.1/lib/libdb.so when its SONAME is in fact libdb41.so.1? Does anyone see a good way out? Suggestions, thoughts are solicited. For reference, here are the libdb "consumers" and "providers": * databases/db3: aswiki-1.0.1_2 openldap-server-2.0.27_2 cdonkey-0.8.9 p5-BerkeleyDB-0.23 cfengine-1.6.3_4 p5-Lingua-ZH-TaBE-0.03 crawl-0.3_2 poedit-1.2.2_1 cyrus-imapd-2.0.17 rbot-0.9.6 cyrus-imapd-2.1.15_1 rdfdb-0.46_1 cyrus-imapd-2.2.1.b_1 ruby-bdb-0.4.8 db3-3.3.11,1 squidGuard-1.2.0_1 fastresolve-2.10_1 zh-emacs-20.7_2 hotkeys-0.5.7.1 zh-libtabe-0.2.5_1 isync-0.9.1 zh-xcin-2.5.3.p2_3 kiltdown-0.8.045_7 zh-xemacs-20.4_1 netatalk-1.6.3,1 zh-xsim-0.3.9.4 nvi-1.81.5_3 * databases/db4: bogofilter-0.14.5.4 gnucash-1.8.5 pyslsk-1.2.4 cfengine2-2.0.3 gnucash-docs-1.8.1 spamprobe-0.8b db4-4.0.14_1,1 kpsk-1.0 subversion-0.29.0 dctc-0.84.1 libetpan-0.28 zodb-1.0,1 dctc-gui-0.66_1 py23-bsddb-2.3 dctc-gui-qt-0.0.6 py23-bsddb3-4.1.6 * databases/db41: db41-4.1.25_1 kdesdk-3.1.4 db41-nocrypto-4.1.25_1 openldap-server-2.1.22_2 digikam-0.5.1 openldap-server-2.2.0.a_2 dspam-2.6.3 I've used grep -w $PORTNAME /usr/ports/INDEX to find out, where PORTNAME is in the set {db3, db4, db41}. -- Matthias Andree Encrypt your mail: my GnuPG key ID is 0x052E7D95 From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 05:02:28 2003 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 D992316A4BF for ; Tue, 14 Oct 2003 05:02:28 -0700 (PDT) Received: from kaneda.oav.net (kaneda.oav.net [195.20.105.154]) by mx1.FreeBSD.org (Postfix) with ESMTP id E09E843F85 for ; Tue, 14 Oct 2003 05:02:27 -0700 (PDT) (envelope-from kiwi@oav.net) Received: from oav.net (blackmagic.isdnet.net [62.4.0.18]) (using TLSv1 with cipher DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by kaneda.oav.net (Postfix) with ESMTP id 63D5315742; Tue, 14 Oct 2003 14:02:26 +0200 (CEST) (envelope-from kiwi@oav.net) Date: Tue, 14 Oct 2003 14:02:25 +0200 X-Image-Url: http://www.oav.net/~kiwi/kiwi.jpg Content-Type: text/plain; charset=ISO-8859-1; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: Matthias Andree From: Xavier Beaudouin In-Reply-To: <20031014112134.GA18306@merlin.emma.line.org> Message-Id: <4689165E-FE3E-11D7-91DA-000393B64262@oav.net> Content-Transfer-Encoding: quoted-printable X-Mailer: Apple Mail (2.552) cc: ports@freebsd.org Subject: Re: READ PLEASE if your port uses BerkeleyDB (db3, db4, db41) 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, 14 Oct 2003 12:02:29 -0000 Hi Matthias, Le mardi, 14 oct 2003, =E0 13:21 Europe/Paris, Matthias Andree a =E9crit = : > Hi, > > as some of you know, I am currently maintaining the db4, db41, > db41-nocrypto and bogofilter ports, among others. [...] I think that we should get a "easy" way to know if db3 / db4 / db41 /=20 db41-nocrypto is installed during the port generation. Idealy a USE_DB=3D with can be : 3, 4, 41, 41-nocrypto can help to get the=20 good dependency with all db ports users. One thing I didn't get a clue is how to detect the current installation=20= of a db package (a clean, neat, and if possible automagicaly way) ? /Xavier= From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 05:09:46 2003 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 5E4E816A4B3 for ; Tue, 14 Oct 2003 05:09:46 -0700 (PDT) Received: from cheer.mahoroba.org (flets19-166.kamome.or.jp [218.45.19.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76D6743F3F for ; Tue, 14 Oct 2003 05:09:38 -0700 (PDT) (envelope-from ume@mahoroba.org) Received: from mille.mahoroba.org (IDENT:sHjUJEV+0aESfyYo9KvpgnA12HMyzfrOmOvZRCtyWWdPM4oiHp4fzDq9JjwMg6Bv@mille.mahoroba.org [IPv6:3ffe:501:185b:8010:202:2dff:fe41:8630]) (user=ume mech=CRAM-MD5 bits=0)h9EC9XXe096791 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Oct 2003 21:09:33 +0900 (JST) (envelope-from ume@mahoroba.org) Date: Tue, 14 Oct 2003 21:09:33 +0900 Message-ID: From: Hajimu UMEMOTO To: Xavier Beaudouin In-Reply-To: <4689165E-FE3E-11D7-91DA-000393B64262@oav.net> References: <20031014112134.GA18306@merlin.emma.line.org> <4689165E-FE3E-11D7-91DA-000393B64262@oav.net> User-Agent: xcite1.38> Wanderlust/2.11.0 (Wonderwall) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (=?ISO-2022-JP?B?GyRCOC1MWhsoQg==?=) X-Operating-System: FreeBSD 4.8-RELEASE-p13 MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on cheer.mahoroba.org cc: ports@freebsd.org cc: Matthias Andree Subject: Re: READ PLEASE if your port uses BerkeleyDB (db3, db4, db41) 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, 14 Oct 2003 12:09:46 -0000 Hi, >>>>> On Tue, 14 Oct 2003 14:02:25 +0200 >>>>> Xavier Beaudouin said: kiwi> I think that we should get a "easy" way to know if db3 / db4 / db41 / kiwi> db41-nocrypto is installed during the port generation. kiwi> Idealy a kiwi> USE_DB= kiwi> with can be : 3, 4, 41, 41-nocrypto can help to get the kiwi> good dependency with all db ports users. cyrus-sasl2 and cyrus-imapd* use WITH_BDB_VER for selecting which DB to be linked. Sincerely, -- Hajimu UMEMOTO @ Internet Mutual Aid Society Yokohama, Japan ume@mahoroba.org ume@bisd.hitachi.co.jp ume@{,jp.}FreeBSD.org http://www.imasy.org/~ume/ From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 06:01:18 2003 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 1F57816A4B3; Tue, 14 Oct 2003 06:01:18 -0700 (PDT) Received: from verifam.don.to (verifam.don.to [202.221.217.238]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1420343F85; Tue, 14 Oct 2003 06:01:16 -0700 (PDT) (envelope-from sumikawa@ebina.hitachi.co.jp) Received: from localhost (localhost [127.0.0.1]) by verifam.don.to (8.12.9p2/8.12.4) with ESMTP id h9ED1GSL006912; Tue, 14 Oct 2003 22:01:16 +0900 (JST) (envelope-from sumikawa@ebina.hitachi.co.jp) To: scott@sremick.net From: sumikawa@freebsd.org In-Reply-To: References: <20031003.101518.846944044.chat95@mbox.kyoto-inet.or.jp> <20031009230531.6ef070f2.adam.mclaurin@gmx.net> X-Mailer: Mew version 1.94.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20031014220115G.sumikawa@ebina.hitachi.co.jp> Date: Tue, 14 Oct 2003 22:01:15 +0900 (JST) Sender: SUMIKAWA Munechika (=?ISO-2022-JP?B?GyRCM1FAbj0hNmEbKEI=?=) X-Dispatcher: imput version 20000228(IM140) Lines: 13 cc: sumikawa@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: Do repocopy for OpenOffice.org on this weekend (2003/Oct/4 or5) 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, 14 Oct 2003 13:01:18 -0000 Nakata-san, > From: > /usr/ports/chinese/openoffice-zh_CN > (snip) > to > /usr/ports/chinese/openoffice1.0-zh_CN > (snip) Do we have any strong reason that we must keep the port of version 1.0? My suggestion is we just upgrade editors/openoffice to 1.1.0. -- Sumikawa From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 06:15:40 2003 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 AFD3716A4BF for ; Tue, 14 Oct 2003 06:15:40 -0700 (PDT) Received: from mail.niblet.co.uk (risky.niblet.co.uk [80.177.236.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3472143F93 for ; Tue, 14 Oct 2003 06:15:39 -0700 (PDT) (envelope-from matt@kittycat.co.uk) Received: from sakura.niblet.co.uk ([192.168.0.3] helo=sakura) by mail.niblet.co.uk with esmtp (Exim 4.24; FreeBSD 5.1) id 1A9P3J-000BCR-BW for ports@freebsd.org; Tue, 14 Oct 2003 14:17:29 +0100 From: "Matt Sealey" To: Date: Tue, 14 Oct 2003 14:15:38 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal Subject: databases/mysql-server build problems with dns/bind installed as base? 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, 14 Oct 2003 13:15:40 -0000 Hello there, I'm trying to upgrade my MySQL server, I'm running FreeBSD 5.1 which is pretty plain and boring.. but it fails with a linker error every time: root@risky:/home/neko$ portupgrade mysql-server-4.0.14 ---> Upgrading 'mysql-server-4.0.14' to 'mysql-server-4.0.15' (databases/mysql40-server) ---> Building '/usr/ports/databases/mysql40-server' ===> Cleaning for mysql-client-4.0.15 ===> Cleaning for p5-DBD-mysql-2.1026_1 ===> Cleaning for p5-DBI-1.38 ===> Cleaning for libtool-1.3.5_1 ===> Cleaning for perl-5.6.1_14 ===> Cleaning for mysql-server-4.0.15 .. blah blah cc -O3 -DDBUG_OFF -O2 -mcpu=pentiumpro -mcpu=i686 -O3 -fno-omit-frame-pointer -o perror perror.o ../mysys/libmysys.a ../dbug/libdbug.a ../strings/libmystrings.a -lz -lcrypt -lm -lc_r source='resolveip.c' object='resolveip.o' libtool=no depfile='.deps/resolveip.Po' tmpdepfile='.deps/resolveip.TPo' depmode=gcc3 /bin/ sh ../depcomp cc -DHAVE_CONFIG_H -I. -I. -I.. -I./../include -I../include -I.. -O3 -DDBUG_OFF -O2 -mcpu=pentiumpro -mcpu=i686 -O3 -fno-omit-frame-pointer -c `test -f resolveip.c || echo './'`resolveip.c /bin/sh ../libtool --mode=link cc -O3 -DDBUG_OFF -O2 -mcpu=pentiumpro -mcpu=i686 -O3 -fno-omit-frame-pointer -o resolveip resolvei p.o ../mysys/libmysys.a ../dbug/libdbug.a ../strings/libmystrings.a -lz -lcrypt -lm -lc_r cc -O3 -DDBUG_OFF -O2 -mcpu=pentiumpro -mcpu=i686 -O3 -fno-omit-frame-pointer -o resolveip resolveip.o ../mysys/libmysys.a ../dbug/libd bug.a ../strings/libmystrings.a -lz -lcrypt -lm -lc_r resolveip.o: In function `main': resolveip.o(.text+0x2cf): undefined reference to `__h_errno' *** Error code 1 Stop in /usr/ports/databases/mysql40-server/work/mysql-4.0.15/extra. *** Error code 1 Stop in /usr/ports/databases/mysql40-server/work/mysql-4.0.15. *** Error code 1 Stop in /usr/ports/databases/mysql40-server/work/mysql-4.0.15. *** Error code 1 Stop in /usr/ports/databases/mysql40-server. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade9325.0 make ** Fix the problem and try again. ** The following packages were not installed or upgraded (*:skipped / !:failed) ! databases/mysql40-server (mysql-server-4.0.14) (linker error) It happens with the 4.1 port too, with or without optimisation flags, I have BUILD_OPTIMIZED=yes OVERWRITE_DB=no SKIP_DNS_CHECK=yes .. in my /etc/make.conf but it makes no difference whether I have nothing in there. I'm leaning towards blaming my installations of BIND (PORT_REPLACES_BASE_BIND8=yes) I'm sure I had this problem a year or two back when I ran 4.x on a server, but I can't remember how I solved it, if at all. Anyone got any ideas what's broken here, and if it can be fixed (either in the BIND port, or the MySQL port)? Thanks in advance -- Matt Sealey From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 06:24:43 2003 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 16E1516A4B3 for ; Tue, 14 Oct 2003 06:24:43 -0700 (PDT) Received: from spam2.snu.ac.kr (spam2.snu.ac.kr [147.46.10.68]) by mx1.FreeBSD.org (Postfix) with SMTP id B010143F3F for ; Tue, 14 Oct 2003 06:24:41 -0700 (PDT) (envelope-from lahaye@users.sourceforge.net) Received: (snipe 23673 invoked by alias); 14 Oct 2003 13:24:10 -0000 Received: from lahaye@users.sourceforge.net with SpamSniper2.76 (Processed in 0.050542 secs); Received: from unknown (HELO sis1.snu.ac.kr) (147.46.10.36) by 0 with SMTP; 14 Oct 2003 13:24:10 -0000 X-RCPTTO: ports@FreeBSD.org,avleeuwen@piwebs.com, Received: from users.sourceforge.net ([147.46.44.183]) by sis1.snu.ac.kr (8.12.10/8.12.10) with ESMTP id h9EDNJ2L065456; Tue, 14 Oct 2003 22:23:20 +0900 Message-ID: <3F8BF91A.5060306@users.sourceforge.net> Date: Tue, 14 Oct 2003 22:24:42 +0900 From: Rob Lahaye Organization: Seoul National University - South Korea User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030726 X-Accept-Language: en-us, ko-kr MIME-Version: 1.0 To: avleeuwen@piwebs.com Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: opera-7.20.20030919 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, 14 Oct 2003 13:24:43 -0000 The lastest update of the ports to opera fails to download the proper ports file: [...snip...] >> opera-7.21-20031009.1-static-qt.i386.freebsd.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from http://snapshot.opera.com/unix/7.21-Preview-3/intel-freebsd/. fetch: http://snapshot.opera.com/unix/7.21-Preview-3/intel-freebsd/opera-7.21-20031009.1-static-qt.i386.freebsd.tar.bz2: Unknown error: 0 >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/opera-7.21-20031009.1-static-qt.i386.freebsd.tar.bz2: File unavailable (e.g., file not found, no access) >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop in /usr/ports/www/opera. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade5914.0 make ** Fix the problem and try again. ** The following packages were not installed or upgraded (*:skipped / !:failed) ! www/opera (opera-7.21.20031003) (fetch error) A little investigation seems to tell that there's no tar.bz2, but a tar.gz ports file. And that's why the download fails. Rob. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 06:27:58 2003 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 C226316A4B3 for ; Tue, 14 Oct 2003 06:27:58 -0700 (PDT) Received: from antsrv1.ant.uni-bremen.de (antsrv1.ant.uni-bremen.de [134.102.176.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8C9F43FBF for ; Tue, 14 Oct 2003 06:27:57 -0700 (PDT) (envelope-from rebehn@ant.uni-bremen.de) Received: from taipeh.ant.uni-bremen.de ([134.102.176.3] helo=ant.uni-bremen.de) by antsrv1.ant.uni-bremen.de with esmtp (Exim 4.22) id 1A9PDR-000FSr-5n; Tue, 14 Oct 2003 15:27:57 +0200 Message-ID: <3F8BDDBC.5070309@ant.uni-bremen.de> Date: Tue, 14 Oct 2003 13:27:56 +0200 From: Heinrich Rebehn User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4.1) Gecko/20031013 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: mjpegtools won'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: Tue, 14 Oct 2003 13:27:58 -0000 Hi lists, when i try to compile the mjpegtools port under 5.1, i get: ########################################################################## Making all in lavtools gmake[2]: Entering directory `/usr/ports/multimedia/mjpegtools/work/mjpegtools-1.6.1/lavtools' source='lav2divx.cpp' object='lav2divx.o' libtool=no \ depfile='.deps/lav2divx.Po' tmpdepfile='.deps/lav2divx.TPo' \ depmode=gcc3 /bin/sh ../depcomp \ c++ -DHAVE_CONFIG_H -I. -I. -I.. -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"lavtools\" -DLAVPLAY_VERSION=\"1.6.1\" -I/usr/X11R6/include -I /usr/X11R6/include -I../utils -I/usr/local/include/avifile -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -D_THREAD_SAFE -O -pipe -mcpu=pentiumpro -c -o lav2divx.o `test -f 'lav2divx.cpp' || echo './'`lav2divx.cpp In file included from lav2divx.cpp:80: /usr/local/include/getopt.h:115: declaration of C function `int getopt()' conflicts with /usr/include/unistd.h:377: previous declaration `int getopt(int, char* const*, const char*)' here In file included from libavifile.h:51, from lav2divx.cpp:92: /usr/local/include/avifile/fourcc.h:4:2: warning: #warning Use #include "avm_fourcc.h" instead gmake[2]: *** [lav2divx.o] Error 1 gmake[2]: Leaving directory `/usr/ports/multimedia/mjpegtools/work/mjpegtools-1.6.1/lavtools' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/multimedia/mjpegtools/work/mjpegtools-1.6.1' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/multimedia/mjpegtools. ########################################################################### Is anybody able to compile this? Heinrich -- Heinrich Rebehn University of Bremen Physics / Electrical and Electronics Engineering - Department of Telecommunications - Phone : +49/421/218-4664 Fax : -3341 From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 06:28:36 2003 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 E2C6616A4B3 for ; Tue, 14 Oct 2003 06:28:36 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-63-207-60-234.dsl.lsan03.pacbell.net [63.207.60.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7742843F85 for ; Tue, 14 Oct 2003 06:28:35 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 3164966DFF; Tue, 14 Oct 2003 06:28:33 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 8D493B72; Tue, 14 Oct 2003 06:28:32 -0700 (PDT) Date: Tue, 14 Oct 2003 06:28:32 -0700 From: Kris Kennaway To: Fritz Heinrichmeyer Message-ID: <20031014132831.GA46812@rot13.obsecurity.org> References: <20031014061038.GA77831@jfh00.fernuni-hagen.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="envbJBWh7q8WU6mo" Content-Disposition: inline In-Reply-To: <20031014061038.GA77831@jfh00.fernuni-hagen.de> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: pstoedit and gcc-3.3.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: Tue, 14 Oct 2003 13:28:37 -0000 --envbJBWh7q8WU6mo Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 14, 2003 at 08:10:38AM +0200, Fritz Heinrichmeyer wrote: > this is an email to maintainer of pstoedit: >=20 > it does not build when gcc-3.3.1 is the C++ compiler. >=20 > configure has to be changed to not use "-pedantic" as compiler flag. This port is not maintained. Can you please submit a patch via send-pr? Kris --envbJBWh7q8WU6mo Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/i/n/Wry0BWjoQKURAt19AJ0ZxXIJM1gNwAvu9N0q1J+B1C8OvACffB2v DGSRt9uBpKdU8GLUHYqRjv4= =qV7n -----END PGP SIGNATURE----- --envbJBWh7q8WU6mo-- From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 06:34:22 2003 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 5188916A4B3 for ; Tue, 14 Oct 2003 06:34:22 -0700 (PDT) Received: from mail.dt.e-technik.uni-dortmund.de (mail.dt.e-technik.Uni-Dortmund.DE [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FAA243F93 for ; Tue, 14 Oct 2003 06:34:19 -0700 (PDT) (envelope-from matthias.andree@gmx.de) Received: from m2a2.dyndns.org (krusty.dt.e-technik.uni-dortmund.de [129.217.163.1])65A7F8C0C for ; Tue, 14 Oct 2003 15:34:18 +0200 (CEST) Received: by merlin.emma.line.org (Postfix, from userid 500) id EACE59845B; Tue, 14 Oct 2003 15:34:16 +0200 (CEST) Date: Tue, 14 Oct 2003 15:34:16 +0200 From: Matthias Andree To: ports@freebsd.org Message-ID: <20031014133416.GB18925@merlin.emma.line.org> References: <20031014112134.GA18306@merlin.emma.line.org> <4689165E-FE3E-11D7-91DA-000393B64262@oav.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4689165E-FE3E-11D7-91DA-000393B64262@oav.net> User-Agent: Mutt/1.5.4i Subject: Re: READ PLEASE if your port uses BerkeleyDB (db3, db4, db41) 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, 14 Oct 2003 13:34:22 -0000 On Tue, 14 Oct 2003, Xavier Beaudouin wrote: > I think that we should get a "easy" way to know if db3 / db4 / db41 / > db41-nocrypto is installed during the port generation. > > Idealy a > > USE_DB= > > with can be : 3, 4, 41, 41-nocrypto can help to get the > good dependency with all db ports users. Well, these libraries are not API compatible. A software package needs to _support_ db4 and db41, so "just pick any" isn't going to fly. I assume there is a lot of software around that will break with db41. OTOH, something like conjunctive dependencies ("use DB 3 or DB 4 or DB 4.1 whatever is already there") might be useful. > One thing I didn't get a clue is how to detect the current installation > of a db package (a clean, neat, and if possible automagicaly way) ? What you ask is something that Debian offers: "Requires db3 or db4 or db41". Some standard documented in the porter's handbook might however be an interim solution. My real concern is putting away with the incompatibility the DB renaming causes. All systems except for some BSD-ish ones link against -ldb - FreeBSD wants -ldb4 instead. As written before, I am chary to change the package to install into the upstream standard /usr/local/BerkeleyDB.N.M without discussion - software would have to have the library path linked in. -- Matthias Andree Encrypt your mail: my GnuPG key ID is 0x052E7D95 From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 06:35:59 2003 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 CBED416A4C0 for ; Tue, 14 Oct 2003 06:35:59 -0700 (PDT) Received: from mail.ciam.ru (main.ciam.ru [213.147.57.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id B402043F85 for ; Tue, 14 Oct 2003 06:35:54 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from sem.ciam.ru ([192.168.45.10] helo=ciam.ru) by mail.ciam.ru with esmtp (Exim 4.x) id 1A9PL7-000NXs-Kw; Tue, 14 Oct 2003 17:35:53 +0400 Message-ID: <3F8BFC02.3060709@ciam.ru> Date: Tue, 14 Oct 2003 17:37:06 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20030925 X-Accept-Language: en-us, en, ru MIME-Version: 1.0 To: Matt Sealey References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: databases/mysql-server build problems with dns/bind installed as base? 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, 14 Oct 2003 13:35:59 -0000 Matt Sealey wrote: > I'm trying to upgrade my MySQL server, I'm running FreeBSD 5.1 which is > pretty plain and boring.. but it fails with a linker error every time: > It happens with the 4.1 port too, with or without optimisation flags, I have [skipped] > SKIP_DNS_CHECK=yes I guess it's a reason. Because I use mysql40 with bind9 as system bind and had no problems. -- Sem. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 06:48:14 2003 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 2378916A4B3 for ; Tue, 14 Oct 2003 06:48:14 -0700 (PDT) Received: from freebsd.org.ru (freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64CD743FAF for ; Tue, 14 Oct 2003 06:48:13 -0700 (PDT) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 48E351EC; Tue, 14 Oct 2003 17:48:11 +0400 (MSD) Date: Tue, 14 Oct 2003 17:48:11 +0400 From: "Sergey A. Osokin" To: Matthias Andree Message-ID: <20031014134811.GB39789@freebsd.org.ru> References: <20031014112134.GA18306@merlin.emma.line.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031014112134.GA18306@merlin.emma.line.org> User-Agent: Mutt/1.5.4i cc: ports@freebsd.org Subject: Re: READ PLEASE if your port uses BerkeleyDB (db3, db4, db41) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: osa@FreeBSD.org.ru List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Oct 2003 13:48:14 -0000 On Tue, Oct 14, 2003 at 01:21:34PM +0200, Matthias Andree wrote: > as some of you know, I am currently maintaining the db4, db41, > db41-nocrypto and bogofilter ports, among others. > > Just symlinking things into /usr/local/BerkeleyDB.X.Y might not work > since the library SONAME does not match then -- or can we have a file > /usr/local/BerkeleyDB.4.1/lib/libdb.so when its SONAME is in fact > libdb41.so.1? > > Does anyone see a good way out? Suggestions, thoughts are solicited. > > > For reference, here are the libdb "consumers" and "providers": Also postfix/postfix-current and oops may use db3/db4/db41 ports. I have a idea about split everyone db* port into 3 ports: db-devel, db-doc and db-tool, because more (all?) dependences ports do not use documentation and application from db port. -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 07:01:48 2003 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 A246C16A4B3 for ; Tue, 14 Oct 2003 07:01:48 -0700 (PDT) Received: from mail.dt.e-technik.uni-dortmund.de (mail.dt.e-technik.Uni-Dortmund.DE [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id D987F43FD7 for ; Tue, 14 Oct 2003 07:01:47 -0700 (PDT) (envelope-from matthias.andree@gmx.de) Received: from m2a2.dyndns.org (krusty.dt.e-technik.uni-dortmund.de [129.217.163.1])DB06C3AFD for ; Tue, 14 Oct 2003 16:01:46 +0200 (CEST) Received: by merlin.emma.line.org (Postfix, from userid 500) id 837AB9845B; Tue, 14 Oct 2003 16:01:45 +0200 (CEST) Date: Tue, 14 Oct 2003 16:01:45 +0200 From: Matthias Andree To: ports@freebsd.org Message-ID: <20031014140145.GD18925@merlin.emma.line.org> References: <20031014112134.GA18306@merlin.emma.line.org> <20031014134811.GB39789@freebsd.org.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031014134811.GB39789@freebsd.org.ru> User-Agent: Mutt/1.5.4i Subject: Re: READ PLEASE if your port uses BerkeleyDB (db3, db4, db41) 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, 14 Oct 2003 14:01:48 -0000 On Tue, 14 Oct 2003, Sergey A. Osokin wrote: > On Tue, Oct 14, 2003 at 01:21:34PM +0200, Matthias Andree wrote: > > as some of you know, I am currently maintaining the db4, db41, > > db41-nocrypto and bogofilter ports, among others. > > > > Just symlinking things into /usr/local/BerkeleyDB.X.Y might not work > > since the library SONAME does not match then -- or can we have a file > > /usr/local/BerkeleyDB.4.1/lib/libdb.so when its SONAME is in fact > > libdb41.so.1? > > > > Does anyone see a good way out? Suggestions, thoughts are solicited. > > > > > > For reference, here are the libdb "consumers" and "providers": > > Also postfix/postfix-current and oops may use db3/db4/db41 ports. Indeed, my list does not comprise packages which optionally use db - I looked at INDEX that lists the mandatory dependencies for the default port configuration, not the optional dependencies. > I have a idea about split everyone db* port into 3 ports: > db-devel, db-doc and db-tool, because more (all?) dependences > ports do not use documentation and application from db port. I'm not a fan of "install library, but not the documentation", I prefer the "all of it or nothing" approach. We have -DNOPORTDOCS for the systems where space is tight and documentation is dispensable. Other than that, we have some 9,000 ports, I don't find it appealing to add even more without adding functionality. As to the applications from the db-ports: these may be needed to tune application's settings, recover a data base after a crash or dump it so it can be carried to another system. In particular, these applications (db_dump, db_verify and all that) are user applications, not developer stuff, so splitting these programs out is not the right thing to do. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 07:37:42 2003 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 CD36916A4B3 for ; Tue, 14 Oct 2003 07:37:42 -0700 (PDT) Received: from risky.niblet.co.uk (risky.niblet.co.uk [80.177.236.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id B59CB43F93 for ; Tue, 14 Oct 2003 07:37:41 -0700 (PDT) (envelope-from matt@kittycat.co.uk) Received: from sakura.niblet.co.uk ([192.168.0.3] helo=sakura) by risky.niblet.co.uk with esmtp (Exim 4.24; FreeBSD 5.1) id 1A9QKk-000E3b-Tn for ports@freebsd.org; Tue, 14 Oct 2003 15:39:34 +0100 From: "Matt Sealey" To: Date: Tue, 14 Oct 2003 15:37:43 +0100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0) In-reply-to: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal Subject: RE: databases/mysql-server build problems with dns/bind installed asbase? 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, 14 Oct 2003 14:37:42 -0000 Further to this: It seems some of MySQL is being built with _REENTRANT defined, and some parts without it defined, which is what causes the problem (for instance, a mysql link lib linked as _REENTRANT linked to a utility app that isn't, will mean the normal libc and so on are used (not libc_r) and therefore the error pops up). In summary: One of "../mysys/libmysys.a", "../dbug/libdbug.a" or "../strings/libmystrings.a" in the MySQL build is built with _REENTRANT defined. the "resolveip" tool is not. Et voila, le bug. That's what it looks like to me, anyway. It seems that the includes that BIND8 installs when in "replacement" mode are substantially different to those that FreeBSD is shipped with (even though technically it's the same version of BIND, just without 1 or 2 late security fixes) but I can't confirm this at all, since I misplaced my install CD, and BIND already wrote over the files. Can anyone check the _h_errno part at the top of netdb.h for me? Since I don't want to upgrade to BIND9 (which would be nice, but completely unneccessary for me) it seems something needs to be tweaked in BIND8, does anyone have any clue what this might be? -- Matt Sealey > -----Original Message----- > From: owner-freebsd-ports@freebsd.org > [mailto:owner-freebsd-ports@freebsd.org]On Behalf Of Matt Sealey > Sent: 14 October 2003 14:16 > To: ports@freebsd.org > Subject: databases/mysql-server build problems with dns/bind installed > asbase? > > > > Hello there, > > I'm trying to upgrade my MySQL server, I'm running FreeBSD 5.1 which is > pretty plain and boring.. but it fails with a linker error every time: > > > root@risky:/home/neko$ portupgrade mysql-server-4.0.14 > ---> Upgrading 'mysql-server-4.0.14' to 'mysql-server-4.0.15' (databases/mysql40-server) > ---> Building '/usr/ports/databases/mysql40-server' > ===> Cleaning for mysql-client-4.0.15 > ===> Cleaning for p5-DBD-mysql-2.1026_1 > ===> Cleaning for p5-DBI-1.38 > ===> Cleaning for libtool-1.3.5_1 > ===> Cleaning for perl-5.6.1_14 > ===> Cleaning for mysql-server-4.0.15 > > .. blah blah > > > cc -O3 -DDBUG_OFF -O2 -mcpu=pentiumpro -mcpu=i686 -O3 -fno-omit-frame-pointer -o perror perror.o ../mysys/libmysys.a > ../dbug/libdbug.a > ../strings/libmystrings.a -lz -lcrypt -lm -lc_r > source='resolveip.c' object='resolveip.o' libtool=no depfile='.deps/resolveip.Po' tmpdepfile='.deps/resolveip.TPo' depmode=gcc3 > /bin/ > sh ../depcomp > cc -DHAVE_CONFIG_H -I. -I. -I.. -I./../include -I../include -I.. -O3 -DDBUG_OFF -O2 -mcpu=pentiumpro -mcpu=i686 -O3 > -fno-omit-frame-pointer -c `test -f resolveip.c || echo './'`resolveip.c > /bin/sh ../libtool --mode=link cc -O3 -DDBUG_OFF -O2 -mcpu=pentiumpro -mcpu=i686 -O3 -fno-omit-frame-pointer -o resolveip > resolvei > p.o ../mysys/libmysys.a ../dbug/libdbug.a ../strings/libmystrings.a -lz -lcrypt -lm -lc_r > cc -O3 -DDBUG_OFF -O2 -mcpu=pentiumpro -mcpu=i686 -O3 -fno-omit-frame-pointer -o resolveip resolveip.o ../mysys/libmysys.a > ../dbug/libd > bug.a ../strings/libmystrings.a -lz -lcrypt -lm -lc_r > resolveip.o: In function `main': > resolveip.o(.text+0x2cf): undefined reference to `__h_errno' > *** Error code 1 > > Stop in /usr/ports/databases/mysql40-server/work/mysql-4.0.15/extra. > *** Error code 1 > > Stop in /usr/ports/databases/mysql40-server/work/mysql-4.0.15. > *** Error code 1 > > Stop in /usr/ports/databases/mysql40-server/work/mysql-4.0.15. > *** Error code 1 > > Stop in /usr/ports/databases/mysql40-server. > ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade9325.0 make > ** Fix the problem and try again. > ** The following packages were not installed or upgraded (*:skipped / !:failed) > ! databases/mysql40-server (mysql-server-4.0.14) (linker error) > > > > It happens with the 4.1 port too, with or without optimisation flags, I have > > BUILD_OPTIMIZED=yes > OVERWRITE_DB=no > SKIP_DNS_CHECK=yes > > .. in my /etc/make.conf but it makes no difference whether I have nothing > in there. > > I'm leaning towards blaming my installations of BIND (PORT_REPLACES_BASE_BIND8=yes) > > I'm sure I had this problem a year or two back when I ran 4.x on a server, but > I can't remember how I solved it, if at all. > > Anyone got any ideas what's broken here, and if it can be fixed (either in the > BIND port, or the MySQL port)? > > Thanks in advance > > > -- > Matt Sealey > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 08:44:35 2003 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 61B5F16A4B3 for ; Tue, 14 Oct 2003 08:44:35 -0700 (PDT) Received: from edigic.com (edigic.com [209.206.209.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5247043FB1 for ; Tue, 14 Oct 2003 08:44:34 -0700 (PDT) (envelope-from drick@edigic.com) Received: from mail.edigic.com (drick@localhost [127.0.0.1]) by edigic.com (8.12.8p2/8.12.8) with ESMTP id h9EFifXu025318 for ; Tue, 14 Oct 2003 10:44:42 -0500 (CDT) (envelope-from drick@edigic.com) From: "Don" To: ports@FreeBSD.org Date: Tue, 14 Oct 2003 10:44:41 -0600 Message-Id: <20031014154355.M18194@edigic.com> X-Mailer: Open WebMail 2.10 20030617 X-OriginatingIP: 12.40.80.246 (drick) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Subject: question on openwebmail port 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, 14 Oct 2003 15:44:35 -0000 Hi, I noticed there was a new release for openwebmail, and was just curious on how long it usually takes before the port is upgraded? Thanks again and thanks for all your work towards freebsd. Don From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 09:51:55 2003 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 CE57716A4B3 for ; Tue, 14 Oct 2003 09:51:55 -0700 (PDT) Received: from forrie.com (forrie.ne.client2.attbi.com [24.147.156.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB30C43F75 for ; Tue, 14 Oct 2003 09:51:54 -0700 (PDT) (envelope-from forrie@forrie.com) Received: from dell.forrie.com (wks.forrie.net. [192.168.1.21]) by forrie.com with ESMTP id h9EGpldh076915 for ; Tue, 14 Oct 2003 12:51:47 -0400 (EDT) (envelope-from forrie@forrie.com) Message-Id: <6.0.0.22.2.20031014125113.01d34008@192.168.1.1> X-Sender: forrie@192.168.1.1 X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Tue, 14 Oct 2003 12:51:46 -0400 To: ports@freebsd.org From: Forrest Aldrich Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-RAVMilter-Version: 8.3.0(snapshot 20010925) (forrie.ne.client2.attbi.com) X-MailScanner-LocalNet: Found to be clean Subject: ImageMagick Compile Failure 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, 14 Oct 2003 16:51:55 -0000 FYI, ImageMagick is not compiling correctly from the ports collection (cvs update as of today) on FreeBSD-4.9: /bin/sh ../libtool --silent --mode=compile cc -DHAVE_CONFIG_H -I../ -I. -I. -I../magick -I.. -I.. -I../magick -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I/X11 -I/usr/local/include/libxml2 -O -pipe -Wall -c -o jp2.lo `test -f 'jp2.c' || echo './'`jp2.c In file included from /usr/local/include/jasper/jasper.h:121, from jp2.c:85: /usr/local/include/jasper/jas_image.h:152: warning: `/*' within comment jp2.c: In function `ReadJP2Image': jp2.c:343: warning: implicit declaration of function `jas_clrspc_fam' jp2.c:343: warning: implicit declaration of function `jas_image_clrspc' jp2.c:345: `JAS_CLRSPC_FAM_RGB' undeclared (first use in this function) jp2.c:345: (Each undeclared identifier is reported only once jp2.c:345: for each function it appears in.) jp2.c:348: `JAS_CLRSPC_CHANIND_RGB_R' undeclared (first use in this function) jp2.c:350: `JAS_CLRSPC_CHANIND_RGB_G' undeclared (first use in this function) jp2.c:352: `JAS_CLRSPC_CHANIND_RGB_B' undeclared (first use in this function) jp2.c:369: `JAS_CLRSPC_FAM_GRAY' undeclared (first use in this function) jp2.c:372: `JAS_CLRSPC_CHANIND_GRAY_Y' undeclared (first use in this function) jp2.c:382: `JAS_CLRSPC_FAM_YCBCR' undeclared (first use in this function) jp2.c:347: warning: unreachable code at beginning of switch statement jp2.c: In function `WriteJP2Image': jp2.c:760: warning: implicit declaration of function `jas_image_setclrspc' jp2.c:760: `JAS_CLRSPC_SGRAY' undeclared (first use in this function) jp2.c:762: `JAS_CLRSPC_CHANIND_GRAY_Y' undeclared (first use in this function) jp2.c:769: `JAS_CLRSPC_SRGB' undeclared (first use in this function) jp2.c:771: `JAS_CLRSPC_CHANIND_RGB_R' undeclared (first use in this function) jp2.c:773: `JAS_CLRSPC_CHANIND_RGB_G' undeclared (first use in this function) jp2.c:775: `JAS_CLRSPC_CHANIND_RGB_B' undeclared (first use in this function) gmake[1]: *** [jp2.lo] Error 1 gmake[1]: Leaving directory `/usr/ports/graphics/ImageMagick/work/ImageMagick-5.5.7/coders' gmake: *** [all-recursive] Error 1 *** Error code 2 Stop in /usr/ports/graphics/ImageMagick. bash-2.05b# From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 10:00:29 2003 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 44F4316A4B3 for ; Tue, 14 Oct 2003 10:00:29 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B8E143FCB for ; Tue, 14 Oct 2003 10:00:28 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h9EH0SFY051689 for ; Tue, 14 Oct 2003 10:00:28 -0700 (PDT) (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h9EH0SZs051688 for ports@freebsd.org; Tue, 14 Oct 2003 10:00:28 -0700 (PDT) (envelope-from fenner) Date: Tue, 14 Oct 2003 10:00:28 -0700 (PDT) From: Bill Fenner Message-Id: <200310141700.h9EH0SZs051688@freefall.freebsd.org> To: ports@freebsd.org Subject: Possibly unbuildable ports reminder 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, 14 Oct 2003 17:00:29 -0000 Dear porters, This is just a reminder to please periodically check the list of unbuildable ports at http://bento.freebsd.org/errorlogs/ . A list by MAINTAINER is http://people.freebsd.org/~fenner/errorlogs/ so you can easily check the status of ports that you maintain. In addition, the list of ports with no MAINTAINER with build problems is http://people.freebsd.org/~fenner/errorlogs/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. Thanks for your help! Bill "annoying port email" Fenner From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 10:20:22 2003 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 A99A416A4B3 for ; Tue, 14 Oct 2003 10:20:22 -0700 (PDT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.185]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3423E43F93 for ; Tue, 14 Oct 2003 10:20:20 -0700 (PDT) (envelope-from sw@gegenunendlich.de) Received: from [212.227.126.161] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1A9SqJ-00051q-00; Tue, 14 Oct 2003 19:20:19 +0200 Received: from [80.142.200.98] (helo=kyuzo.dunkelkammer.void) by mrelayng.kundenserver.de with asmtp (Exim 3.35 #1) id 1A9SqI-00015t-00; Tue, 14 Oct 2003 19:20:18 +0200 Received: by kyuzo.dunkelkammer.void (Postfix, from userid 1002) id 4B0C487D9; Tue, 14 Oct 2003 19:20:17 +0200 (CEST) Date: Tue, 14 Oct 2003 19:20:17 +0200 From: Stefan Walter To: Heinrich Rebehn Message-ID: <20031014172017.GA886@kyuzo.dunkelkammer.void> Mail-Followup-To: Heinrich Rebehn , freebsd References: <3F8BDDBC.5070309@ant.uni-bremen.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KsGdsel6WgEHnImy" Content-Disposition: inline In-Reply-To: <3F8BDDBC.5070309@ant.uni-bremen.de> 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.4i cc: freebsd Subject: Re: mjpegtools won'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: Tue, 14 Oct 2003 17:20:22 -0000 --KsGdsel6WgEHnImy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Heinrich Rebehn, 14.10.03, 13:27h CEST: [...mjpegtools uncompilable...] > Is anybody able to compile this? It's probably libgnugetopt that's in the way; deinstall it temporarily and it should work. See [1], too, it contains a patch (which I have neither sent nor tested). Stefan [1]: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/54866 --KsGdsel6WgEHnImy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iQGVAwUBP4wwUFaRERsSueCzAQK0CQwAhiWgZqEqLOlnmBCPZzvHeHmDptwVV6g3 l21mZAGNh6YuC2Vctt0zdVcRX3jw7e2LkV9nDDD38ARZPGJLQFfzyx8E0+GkFX0p Ew8O/uhzj7UimvxI/mRt7cR6/HFsgKaefb04afcFIZ2axTGR+WPRTZWgGoG7JtSe i9HyF6tx1F4SiL2JmG3Ns5fHKWNXzgGflDJYcxHbtJftHOh3KnJ5mNdG7XMtbCp9 FB6KomYQQQA2sgi//4Kr8byyIH9vIhrZxeEn+xQLVNulKl3YZGvpIVtrV4tQLxkJ dLBM+QvWspWi/6/nbo+7oxrQFRpCRQHJrdf+hg3rtCITmZ6T9CzpdWQsZWHYSzq5 gM/kE5J1wLmN9NaHGpAwCir13EFzD/EuU+MF7UB4O6k0fiq4Vb5aU/cpq0qV/Ujc NDGthBFptUwMOysTj4KNpHg1usU+WiY6mCbh0vdzKVzq+HeskjIfW+Itebd/z6ad tDcr+2JMHGqcyu7KGaHBYGcRd319Hcmf =EXP1 -----END PGP SIGNATURE----- --KsGdsel6WgEHnImy-- From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 11:46:50 2003 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 7417416A4B3 for ; Tue, 14 Oct 2003 11:46:50 -0700 (PDT) Received: from forrie.com (forrie.ne.client2.attbi.com [24.147.156.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C46D43FBD for ; Tue, 14 Oct 2003 11:46:49 -0700 (PDT) (envelope-from forrie@forrie.com) Received: from dell.forrie.com (wks.forrie.net. [192.168.1.21]) by forrie.com with ESMTP id h9EIkZdh009664 for ; Tue, 14 Oct 2003 14:46:35 -0400 (EDT) (envelope-from forrie@forrie.com) Message-Id: <6.0.0.22.2.20031014143622.01d12a70@192.168.1.1> X-Sender: forrie@192.168.1.1 X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Tue, 14 Oct 2003 14:46:34 -0400 To: ports@freebsd.org From: Forrest Aldrich Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-RAVMilter-Version: 8.3.0(snapshot 20010925) (forrie.ne.client2.attbi.com) X-MailScanner-LocalNet: Found to be clean Subject: ImageMagick Compile Failure 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, 14 Oct 2003 18:46:50 -0000 The problem appears related to the version of Jasper installed on my system. I upgraded the port, and it works fine now. Please update the ImageMagick build dependencies to include the correct version of Jasper which (in /usr/ports) is currently @ 1.700.2. _F ==================== FYI, ImageMagick is not compiling correctly from the ports collection (cvs update as of today) on FreeBSD-4.9: /bin/sh ../libtool --silent --mode=compile cc -DHAVE_CONFIG_H -I../ -I. -I. -I../magick -I.. -I.. -I../magick -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -I/X11 -I/usr/local/include/libxml2 -O -pipe -Wall -c -o jp2.lo `test -f 'jp2.c' || echo './'`jp2.c In file included from /usr/local/include/jasper/jasper.h:121, from jp2.c:85: /usr/local/include/jasper/jas_image.h:152: warning: `/*' within comment jp2.c: In function `ReadJP2Image': jp2.c:343: warning: implicit declaration of function `jas_clrspc_fam' jp2.c:343: warning: implicit declaration of function `jas_image_clrspc' jp2.c:345: `JAS_CLRSPC_FAM_RGB' undeclared (first use in this function) jp2.c:345: (Each undeclared identifier is reported only once jp2.c:345: for each function it appears in.) jp2.c:348: `JAS_CLRSPC_CHANIND_RGB_R' undeclared (first use in this function) jp2.c:350: `JAS_CLRSPC_CHANIND_RGB_G' undeclared (first use in this function) jp2.c:352: `JAS_CLRSPC_CHANIND_RGB_B' undeclared (first use in this function) jp2.c:369: `JAS_CLRSPC_FAM_GRAY' undeclared (first use in this function) jp2.c:372: `JAS_CLRSPC_CHANIND_GRAY_Y' undeclared (first use in this function) jp2.c:382: `JAS_CLRSPC_FAM_YCBCR' undeclared (first use in this function) jp2.c:347: warning: unreachable code at beginning of switch statement jp2.c: In function `WriteJP2Image': jp2.c:760: warning: implicit declaration of function `jas_image_setclrspc' jp2.c:760: `JAS_CLRSPC_SGRAY' undeclared (first use in this function) jp2.c:762: `JAS_CLRSPC_CHANIND_GRAY_Y' undeclared (first use in this function) jp2.c:769: `JAS_CLRSPC_SRGB' undeclared (first use in this function) jp2.c:771: `JAS_CLRSPC_CHANIND_RGB_R' undeclared (first use in this function) jp2.c:773: `JAS_CLRSPC_CHANIND_RGB_G' undeclared (first use in this function) jp2.c:775: `JAS_CLRSPC_CHANIND_RGB_B' undeclared (first use in this function) gmake[1]: *** [jp2.lo] Error 1 gmake[1]: Leaving directory `/usr/ports/graphics/ImageMagick/work/ImageMagick-5.5.7/coders' gmake: *** [all-recursive] Error 1 *** Error code 2 Stop in /usr/ports/graphics/ImageMagick. bash-2.05b# From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 12:15:17 2003 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 1478C16A4B3 for ; Tue, 14 Oct 2003 12:15:17 -0700 (PDT) Received: from moya.lambermont.dyndns.org (e165253.upc-e.chello.nl [213.93.165.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id F218843F93 for ; Tue, 14 Oct 2003 12:15:15 -0700 (PDT) (envelope-from hans@lambermont.dyndns.org) Received: from localhost (localhost [127.0.0.1]) by moya.lambermont.dyndns.org (Postfix) with ESMTP id 831E736402 for ; Tue, 14 Oct 2003 21:15:12 +0200 (CEST) Received: from moya.lambermont.dyndns.org ([127.0.0.1])port 10024) with ESMTP id 39430-05 for ; Tue, 14 Oct 2003 21:15:12 +0200 (CEST) Received: by moya.lambermont.dyndns.org (Postfix, from userid 1001) id 39F5E36401; Tue, 14 Oct 2003 21:15:12 +0200 (CEST) Date: Tue, 14 Oct 2003 21:15:12 +0200 To: ports@freebsd.org Message-ID: <20031014191512.GA39731@moya.lambermont.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i From: hans@lambermont.dyndns.org (Hans Lambermont) X-Virus-Scanned: by amavisd-new-20030616.p5 at lambermont.dyndns.org Subject: What happened to comms/garmin-utils ? 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, 14 Oct 2003 19:15:17 -0000 What happened to http://www.freshports.org/comms/garmin-utils/ ? (it doesn't show up in the ports tree) Hans -- http://lambermont.webhop.org/ () ascii ribbon campaign - against HTML mail, /\ vCards and proprietary formats From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 12:22:22 2003 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 764DA16A4B3 for ; Tue, 14 Oct 2003 12:22:22 -0700 (PDT) Received: from lakemtao08.cox.net (lakemtao08.cox.net [68.1.17.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7374143FB1 for ; Tue, 14 Oct 2003 12:22:21 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.11]) by lakemtao08.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20031014192218.KKYZ22544.lakemtao08.cox.net@mezz.mezzweb.com>; Tue, 14 Oct 2003 15:22:18 -0400 To: Hans Lambermont References: <20031014191512.GA39731@moya.lambermont.dyndns.org> Message-ID: From: Jeremy Messenger Content-Type: text/plain; format=flowed; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Tue, 14 Oct 2003 14:21:18 -0500 In-Reply-To: <20031014191512.GA39731@moya.lambermont.dyndns.org> User-Agent: Opera7.21/Linux M2 build 480 cc: ports@freebsd.org Subject: Re: What happened to comms/garmin-utils ? 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, 14 Oct 2003 19:22:22 -0000 On Tue, 14 Oct 2003 21:15:12 +0200, Hans Lambermont wrote: > What happened to http://www.freshports.org/comms/garmin-utils/ ? > (it doesn't show up in the ports tree) Switch to the different CVSup mirror. It's in my ports tree and I have CVSup'ed around thirty minutes ago. Cheers, Mezz > Hans -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 13:23:55 2003 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 C591716A4B3; Tue, 14 Oct 2003 13:23:55 -0700 (PDT) Received: from scorsese.fabricadeideias.com (mail.scorsese.fabricadeideias.com.br [200.157.56.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id B643C43F85; Tue, 14 Oct 2003 13:23:54 -0700 (PDT) (envelope-from rodrigo@fabricadeideias.com) Received: from fabricadeideias.com (fellini.fabricadeideias.com.br [192.168.109.50]) by scorsese.fabricadeideias.com with esmtp; Tue, 14 Oct 2003 17:24:08 -0300 Message-ID: <3F8C4D6F.3010600@fabricadeideias.com> Date: Tue, 14 Oct 2003 17:24:09 -0200 From: Rodrigo Severo User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en MIME-Version: 1.0 To: roam@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: djbdns-1.05_4 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, 14 Oct 2003 20:23:55 -0000 Dear Sir, I believe it would be of interest for you to take a look at the following address: for several known problems with djbdns parts and related fixes. This page mentions 6 diferent problems with several djbdns parts. As far as I can tell, as least 4 of them are of interest for FreeBSD port. Thanks in advance for your attention, Rodrigo Severo From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 13:36:40 2003 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 2E7B416A4B3 for ; Tue, 14 Oct 2003 13:36:40 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFC9D43FEA for ; Tue, 14 Oct 2003 13:36:33 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from topaz-out (owt-207-41-94-233.owt.com [207.41.94.233]) by rutger.owt.com (8.11.6p2/8.9.3) with ESMTP id h9EKaJw07967; Tue, 14 Oct 2003 13:36:19 -0700 From: Kent Stewart To: Forrest Aldrich , ports@freebsd.org Date: Tue, 14 Oct 2003 13:36:18 -0700 User-Agent: KMail/1.5.4 References: <6.0.0.22.2.20031014143622.01d12a70@192.168.1.1> In-Reply-To: <6.0.0.22.2.20031014143622.01d12a70@192.168.1.1> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310141336.18266.kstewart@owt.com> Subject: Re: ImageMagick Compile Failure 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, 14 Oct 2003 20:36:40 -0000 On Tuesday 14 October 2003 11:46 am, Forrest Aldrich wrote: > The problem appears related to the version of Jasper installed on my > system. I upgraded the port, and it works fine now. > > Please update the ImageMagick build dependencies to include the > correct version of Jasper which (in /usr/ports) is currently @ > 1.700.2. > Are you using a current set of INDEX's. I show ruby# search ImageMagick Port: ImageMagick-5.5.7.11_1 Path: /usr/ports/graphics/ImageMagick Info: Image processing tools Maint: ports@FreeBSD.org Index: graphics perl5 B-deps: XFree86-libraries-4.3.0_6 expat-1.95.6_1 fontconfig-2.2.90_3 freetype2-2.1.5_1 gettext-0.12.1 ghostscript-gnu-7.07_4 gmake-3.80_1 hdf-4.1r5 imake-4.3.0_1 jasper-1.700.2 jbigkit-1.5 jpeg-6b_1 lcms-1.09,1 libfpx-1.2.0.9 libiconv-1.9.1_1 libmpeg2-0.3.1_1 libtool-1.3.5_1 libwmf-0.2.8 libxml2-2.5.11 pkgconfig-0.15.0 png-1.2.5_2 python-2.3.2 tiff-3.6.0 The INDEX file is 11 days old and INDEX-5 is 8 weeks old. Upgrading a port from one of them could produce strange results. Kent > > _F > > > > ==================== > > > FYI, ImageMagick is not compiling correctly from the ports collection > (cvs update as of today) on FreeBSD-4.9: > > /bin/sh ../libtool --silent --mode=compile cc -DHAVE_CONFIG_H -I../ > -I. -I. -I../magick -I.. -I.. -I../magick > -I/usr/local/include/freetype2 -I/usr/local/include > -I/usr/X11R6/include -I/X11 > -I/usr/local/include/libxml2 -O -pipe -Wall -c -o jp2.lo `test -f > 'jp2.c' > > || echo './'`jp2.c > > In file included from /usr/local/include/jasper/jasper.h:121, > from jp2.c:85: > /usr/local/include/jasper/jas_image.h:152: warning: `/*' within > comment jp2.c: In function `ReadJP2Image': > jp2.c:343: warning: implicit declaration of function `jas_clrspc_fam' > jp2.c:343: warning: implicit declaration of function > `jas_image_clrspc' jp2.c:345: `JAS_CLRSPC_FAM_RGB' undeclared (first > use in this function) jp2.c:345: (Each undeclared identifier is > reported only once jp2.c:345: for each function it appears in.) > jp2.c:348: `JAS_CLRSPC_CHANIND_RGB_R' undeclared (first use in this > function) jp2.c:350: `JAS_CLRSPC_CHANIND_RGB_G' undeclared (first use > in this function) jp2.c:352: `JAS_CLRSPC_CHANIND_RGB_B' undeclared > (first use in this function) jp2.c:369: `JAS_CLRSPC_FAM_GRAY' > undeclared (first use in this function) jp2.c:372: > `JAS_CLRSPC_CHANIND_GRAY_Y' undeclared (first use in this function) > jp2.c:382: `JAS_CLRSPC_FAM_YCBCR' undeclared (first use in this > function) jp2.c:347: warning: unreachable code at beginning of switch > statement jp2.c: In function `WriteJP2Image': > jp2.c:760: warning: implicit declaration of function > `jas_image_setclrspc' jp2.c:760: `JAS_CLRSPC_SGRAY' undeclared (first > use in this function) jp2.c:762: `JAS_CLRSPC_CHANIND_GRAY_Y' > undeclared (first use in this function) jp2.c:769: `JAS_CLRSPC_SRGB' > undeclared (first use in this function) jp2.c:771: > `JAS_CLRSPC_CHANIND_RGB_R' undeclared (first use in this function) > jp2.c:773: `JAS_CLRSPC_CHANIND_RGB_G' undeclared (first use in this > function) jp2.c:775: `JAS_CLRSPC_CHANIND_RGB_B' undeclared (first use > in this function) gmake[1]: *** [jp2.lo] Error 1 > gmake[1]: Leaving directory > `/usr/ports/graphics/ImageMagick/work/ImageMagick-5.5.7/coders' > gmake: *** [all-recursive] Error 1 > *** Error code 2 > > Stop in /usr/ports/graphics/ImageMagick. > bash-2.05b# > > _______________________________________________ > 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" -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 13:47:18 2003 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 9685D16A4E7; Tue, 14 Oct 2003 13:47:18 -0700 (PDT) Received: from whale.sunbay.crimea.ua (whale.sunbay.crimea.ua [212.110.138.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DAB243F3F; Tue, 14 Oct 2003 13:47:14 -0700 (PDT) (envelope-from ru@sunbay.com) Received: from whale.sunbay.crimea.ua (ru@localhost [127.0.0.1]) h9EKl8Z4043500 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 14 Oct 2003 23:47:09 +0300 (EEST) (envelope-from ru@sunbay.com) Received: (from ru@localhost) by whale.sunbay.crimea.ua (8.12.9p2/8.12.8/Submit) id h9EKl7f7043495; Tue, 14 Oct 2003 23:47:07 +0300 (EEST) (envelope-from ru) Date: Tue, 14 Oct 2003 23:47:07 +0300 From: Ruslan Ermilov To: Kris Kennaway Message-ID: <20031014204707.GB41875@sunbay.com> References: <20031013213443.GF42230@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6sX45UoQRIJXqkqR" Content-Disposition: inline In-Reply-To: <20031013213443.GF42230@rot13.obsecurity.org> User-Agent: Mutt/1.5.4i cc: Gordon Tetlow cc: ports@FreeBSD.org Subject: Re: libimg-1.2.4 broken on 5.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: Tue, 14 Oct 2003 20:47:18 -0000 --6sX45UoQRIJXqkqR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Oct 13, 2003 at 02:34:43PM -0700, Kris Kennaway wrote: > http://bento.freebsd.org/errorlogs/i386-5-latest/libimg-1.2.4.log >=20 > This is affecting a number of ports - notice that it creates the > libimg.so symlink in /usr/lib instead of /usr/local/lib. I would > guess that a change to *.mk is responsible. >=20 Yes, a change to bsd.lib.mk to support dynamic root (introfuction of /lib) is responsible for the breakage -- .so symlinks are now created in LIBDIR instead of SHLIBDIR. The below patch will work for both 4.x and 5.x. %%% Index: Makefile.bsd =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/graphics/libimg/files/Makefile.bsd,v retrieving revision 1.4 diff -u -r1.4 Makefile.bsd --- Makefile.bsd 21 Jul 2002 20:23:00 -0000 1.4 +++ Makefile.bsd 14 Oct 2003 20:41:51 -0000 @@ -44,7 +44,7 @@ =20 DIR =3D lib/Img1.2 INSTDIR =3D ${LOCALBASE}/${DIR} -SHLIBDIR =3D ${LOCALBASE}/lib +LIBDIR =3D ${LOCALBASE}/lib =20 ${INSTDIR} ${INSTDIR}/msgs: ${MKDIR} $@ %%% Cheers, --=20 Ruslan Ermilov Sysadmin and DBA, ru@sunbay.com Sunbay Software Ltd, ru@FreeBSD.org FreeBSD committer --6sX45UoQRIJXqkqR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/jGDLUkv4P6juNwoRAmzsAJ9eg4oue8Y4WvBoVLml5EnXwEeNbwCeISk/ +oHoP0MJOvebES1wA217u2k= =2GBj -----END PGP SIGNATURE----- --6sX45UoQRIJXqkqR-- From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 13:56:22 2003 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 90D9E16A4B3; Tue, 14 Oct 2003 13:56:22 -0700 (PDT) Received: from hd04.hafsjold.dk (cpe.atm2-0-1121035.0x3ef2b4da.virnxx14.customer.tele.dk [62.242.180.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46C4B43FB1; Tue, 14 Oct 2003 13:56:19 -0700 (PDT) (envelope-from mha@hafsjold.dk) Received: from hd06.hafsjold.dk (hd06.hafsjold.dk [192.168.3.5]) by hd04.hafsjold.dk (8.12.3/8.11.6) with ESMTP id h9ELAIoK001649; Tue, 14 Oct 2003 23:10:18 +0200 (CEST) (envelope-from mha@hafsjold.dk) MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Tue, 14 Oct 2003 22:56:18 +0200 X-MimeOLE: Produced By Microsoft Exchange V6.0.6249.0 Message-ID: <0B8C1C7D9C598C409CA24AAD376A107C034291@hd06.hafsjold.dk> Content-Class: urn:content-classes:message X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: FreeBSD Port: samba-3.0.0.b3,1 thread-index: AcOSlZz2bZ0tYx4DRIO7fHcPm2jyPw== From: "Mogens Hafsjold" To: cc: ports@FreeBSD.org Subject: FreeBSD Port: samba-3.0.0.b3,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: Tue, 14 Oct 2003 20:56:22 -0000 Hello dwcjr =A0 I have noticed that The Samba Team has announced the first official = release of Samba 3.0 on 24th Sep, so I'm curious about what time an = updated port can be expected? =A0 Regards=20 =A0 Mogens Hafsjold From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 14:32:33 2003 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 4B62A16A4B3; Tue, 14 Oct 2003 14:32:33 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5126E43FDF; Tue, 14 Oct 2003 14:32:32 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp129-178.dialup.mtu-net.ru [62.118.129.178]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id F0FBDFEA44; Wed, 15 Oct 2003 01:32:29 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F8C6B6B.4000306@ciam.ru> Date: Wed, 15 Oct 2003 01:32:27 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5b) Gecko/20030827 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mogens Hafsjold References: <0B8C1C7D9C598C409CA24AAD376A107C034291@hd06.hafsjold.dk> In-Reply-To: <0B8C1C7D9C598C409CA24AAD376A107C034291@hd06.hafsjold.dk> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org cc: dwcjr@FreeBSD.org Subject: Re: FreeBSD Port: samba-3.0.0.b3,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: Tue, 14 Oct 2003 21:32:33 -0000 Mogens Hafsjold wrote: > I have noticed that The Samba Team has announced the first official release of Samba 3.0 on 24th Sep, so I'm curious about what time an updated port can be expected? > On october 10 port was updated. http://www.freebsd.org/cgi/cvsweb.cgi/ports/net/samba-devel/ You can use http://www.freshports.org for ports watching. -- Sem. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 16:33:10 2003 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 C24B816A4B3 for ; Tue, 14 Oct 2003 16:33:10 -0700 (PDT) Received: from forrie.com (forrie.ne.client2.attbi.com [24.147.156.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7A6C43FAF for ; Tue, 14 Oct 2003 16:33:09 -0700 (PDT) (envelope-from forrie@forrie.com) Received: from dell.forrie.com (wks.forrie.net. [192.168.1.21]) by forrie.com with ESMTP id h9ENX2dh062073 for ; Tue, 14 Oct 2003 19:33:02 -0400 (EDT) (envelope-from forrie@forrie.com) Message-Id: <6.0.0.22.2.20031014193118.01d8d668@192.168.1.1> X-Sender: forrie@192.168.1.1 X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Tue, 14 Oct 2003 19:33:01 -0400 To: ports@freebsd.org From: Forrest Aldrich Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-RAVMilter-Version: 8.3.0(snapshot 20010925) (forrie.ne.client2.attbi.com) X-MailScanner-LocalNet: Found to be clean Subject: PCRE compile failure 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, 14 Oct 2003 23:33:10 -0000 Looks like PCRE has a version problem. The Makefile claims to be 4.4, but the distfiles available are only up to 4.3 and INDEX claims 4.3. # make >> pcre-4.4.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/. fetch: ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-4.4.tar.bz2: Connection refused >> Attempting to fetch from http://dl.droso.net/FreeBSD/distfiles/. fetch: http://dl.droso.net/FreeBSD/distfiles/pcre-4.4.tar.bz2: Not Found >> Attempting to fetch from http://us.dl.sourceforge.net/pcre/. fetch: http://us.dl.sourceforge.net/pcre/pcre-4.4.tar.bz2: Not Found >> Attempting to fetch from http://eu.dl.sourceforge.net/pcre/. fetch: http://eu.dl.sourceforge.net/pcre/pcre-4.4.tar.bz2: Not Found >> Attempting to fetch from ftp://us.dl.sourceforge.net/pub/sourceforge/pcre/. fetch: ftp://us.dl.sourceforge.net/pub/sourceforge/pcre/pcre-4.4.tar.bz2: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.kddlabs.co.jp/sourceforge/pcre/. fetch: ftp://ftp.kddlabs.co.jp/sourceforge/pcre/pcre-4.4.tar.bz2: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.chg.ru/pub/sourceforge/pcre/. fetch: ftp://ftp.chg.ru/pub/sourceforge/pcre/pcre-4.4.tar.bz2: File unavailable (e.g., file not found, no access) >> Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/pcre-4.4.tar.bz2: File unavailable (e.g., file not found, no access) >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 Stop in /usr/ports/devel/pcre. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 16:50:41 2003 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 66A4E16A4B3 for ; Tue, 14 Oct 2003 16:50:41 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-63-207-60-234.dsl.lsan03.pacbell.net [63.207.60.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E2FE43FBD for ; Tue, 14 Oct 2003 16:50:39 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 31BA266C9E; Tue, 14 Oct 2003 16:50:38 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id C8256B62; Tue, 14 Oct 2003 16:50:37 -0700 (PDT) Date: Tue, 14 Oct 2003 16:50:37 -0700 From: Kris Kennaway To: Forrest Aldrich Message-ID: <20031014235037.GA48834@rot13.obsecurity.org> References: <6.0.0.22.2.20031014193118.01d8d668@192.168.1.1> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="X1bOJ3K7DJ5YkBrT" Content-Disposition: inline In-Reply-To: <6.0.0.22.2.20031014193118.01d8d668@192.168.1.1> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: PCRE compile failure 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, 14 Oct 2003 23:50:41 -0000 --X1bOJ3K7DJ5YkBrT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Oct 14, 2003 at 07:33:01PM -0400, Forrest Aldrich wrote: > Looks like PCRE has a version problem. The Makefile claims to be 4.4, bu= t=20 > the distfiles available are only up to 4.3 >=20 >=20 >=20 > # make > >> pcre-4.4.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/. > >> Attempting to fetch from=20 > ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/. > fetch:=20 > ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-4.4.tar.bz2:= =20 > Connection refused ^^^^^^^^^^^^^^^^^^ That's probably the reason; the primary master site is down, and the distfile is not yet on the others. > and INDEX claims 4.3. That's a red herring because INDEX is only updated periodically. If it had been updated since the update of the port to 4.4 it would say 4.4. Kris --X1bOJ3K7DJ5YkBrT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/jIvNWry0BWjoQKURAmxXAKDMsu2BvXNnuf8dU6Fd2QFGRi/QLACgqHtU okRBjP1a7k3PaoFcFIQH3zs= =ejNJ -----END PGP SIGNATURE----- --X1bOJ3K7DJ5YkBrT-- From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 18:22:36 2003 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 294CC16A4BF; Tue, 14 Oct 2003 18:22:36 -0700 (PDT) Received: from nazare.cin.ufpe.br (nazare.cin.ufpe.br [150.161.2.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id E867243FBF; Tue, 14 Oct 2003 18:22:31 -0700 (PDT) (envelope-from rss@cin.ufpe.br) Received: (from root@localhost) by nazare.cin.ufpe.br (8.11.6p3/8.11.6) id h9F1MT274666; Tue, 14 Oct 2003 22:22:29 -0300 (BRST) (envelope-from rss@nazare.cin.ufpe.br) Received: from arcoverde.cin.ufpe.br (arcoverde [172.17.33.112]) by nazare.cin.ufpe.br (8.11.6p3/8.11.6) with ESMTP id h9F1MRa20713; Tue, 14 Oct 2003 22:22:27 -0300 (BRST) (envelope-from rss@nazare.cin.ufpe.br) Received: from rss (helo=localhost) by arcoverde.cin.ufpe.br with local-esmtp (Exim 3.35 #1 (Debian)) id 1A9ZPw-000292-00; Tue, 14 Oct 2003 22:21:32 -0200 Date: Tue, 14 Oct 2003 22:21:32 -0200 (BRST) From: Rossam Souza Silva To: ports@freebsd.org, Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Sender: Rossam Souza Silva Subject: Problems with XFree86-4 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, 15 Oct 2003 01:22:36 -0000 X-List-Received-Date: Wed, 15 Oct 2003 01:22:36 -0000 Hi, I'm running 5.1-CURRENT (sources/ports from Oct/13) and the X package isn't compiling: FeaNoR# make package =3D=3D=3D> Installing for XFree86-4.3.0,1 =3D=3D=3D> XFree86-4.3.0,1 depends on executable: xvinfo - not found =3D=3D=3D> Verifying package for xvinfo in /usr/ports/x11/XFree86-4-clie= nts =3D=3D=3D> Building for XFree86-clients-4.3.0_3 making all in lib/lbxutil/lbx_zlib... making all in lib/lbxutil/delta... making all in lib/lbxutil/image... making all in programs/appres... making all in programs/bdftopcf... make: don't know how to make /home/FreeBSD/ports/x11/XFree86-4-clients/work/xc/exports/lib/libfntstubs.a= =2E Stop *** Error code 2 Stop in /home/FreeBSD/ports/x11/XFree86-4-clients/work/xc/programs. *** Error code 1 Stop in /home/FreeBSD/ports/x11/XFree86-4-clients. *** Error code 1 Stop in /home/FreeBSD/ports/x11/XFree86-4. I had this same error a week ago, someone have a clue? Rossam. ------------------------------------------------------ "Das Leben auf Erden ist ein gemeiner Krieg. Wir spielen, wir k=E4mpfen, wir setzen alles auf Sieg." Megaherz ------------------------------------------------------ From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 18:24:17 2003 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 2889716A4B3 for ; Tue, 14 Oct 2003 18:24:17 -0700 (PDT) Received: from mx2.fillmore-labs.com (lima.fillmore-labs.com [62.138.193.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 620D343FB1 for ; Tue, 14 Oct 2003 18:24:16 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from pd958a8d4.dip.t-dialin.net ([217.88.168.212] helo=fillmore-labs.com ident=s6qe429nt1jqrde7) by mx2.fillmore-labs.com with asmtp (TLSv1:AES256-SHA:256) (Exim 4.24; FreeBSD 4.9) id 1A9aOd-000PMk-6N; Wed, 15 Oct 2003 03:24:15 +0200 Message-ID: <3F8CA1BC.70904@fillmore-labs.com> Date: Wed, 15 Oct 2003 03:24:12 +0200 From: Oliver Eikemeier MIME-Version: 1.0 To: Forrest Aldrich References: <6.0.0.22.2.20031014193118.01d8d668@192.168.1.1> In-Reply-To: <6.0.0.22.2.20031014193118.01d8d668@192.168.1.1> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authenticated-Sender: eikemeier@fillmore-labs.com User-Agent: KMail/1.5.9 Organization: Fillmore Labs GmbH X-Complaints-To: abuse@fillmore-labs.com cc: ports@freebsd.org Subject: Re: PCRE compile failure 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, 15 Oct 2003 01:24:17 -0000 Forrest Aldrich wrote: > Looks like PCRE has a version problem. The Makefile claims to be 4.4, > but the distfiles available are only up to 4.3 and INDEX claims 4.3. I'm sorry about the problems we had with the pcre sources lately. I have submitted a patch (PR 58039): http://www.freebsd.org/cgi/query-pr.cgi?pr=58039 which will hopefully improve the fetchability. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 18:53:52 2003 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 ED72F16A4B3; Tue, 14 Oct 2003 18:53:52 -0700 (PDT) Received: from lewis.lclark.edu (www.paclaw.org [149.175.1.5]) by mx1.FreeBSD.org (Postfix) with SMTP id CA07343F85; Tue, 14 Oct 2003 18:53:51 -0700 (PDT) (envelope-from eta@lclark.edu) Received: from [149.175.34.250] ([149.175.34.250]) by lewis.lclark.edu (SAVSMTP 3.1.1.32) with SMTP id M2003101418534107176 ; Tue, 14 Oct 2003 18:53:41 -0700 From: Eric Anholt To: Rossam Souza Silva In-Reply-To: References: Content-Type: text/plain Message-Id: <1066182820.643.46.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Tue, 14 Oct 2003 18:53:41 -0700 Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: current@freebsd.org Subject: Re: Problems with XFree86-4 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, 15 Oct 2003 01:53:53 -0000 On Tue, 2003-10-14 at 17:21, Rossam Souza Silva wrote: > Hi, I'm running 5.1-CURRENT (sources/ports from Oct/13) and > the X package isn't compiling: > > FeaNoR# make package > ===> Installing for XFree86-4.3.0,1 > ===> XFree86-4.3.0,1 depends on executable: xvinfo - not found > ===> Verifying package for xvinfo in /usr/ports/x11/XFree86-4-clients > ===> Building for XFree86-clients-4.3.0_3 > making all in lib/lbxutil/lbx_zlib... > making all in lib/lbxutil/delta... > making all in lib/lbxutil/image... > making all in programs/appres... > making all in programs/bdftopcf... > make: don't know how to make > /home/FreeBSD/ports/x11/XFree86-4-clients/work/xc/exports/lib/libfntstubs.a. > Stop > *** Error code 2 > > Stop in /home/FreeBSD/ports/x11/XFree86-4-clients/work/xc/programs. > *** Error code 1 > > Stop in /home/FreeBSD/ports/x11/XFree86-4-clients. > *** Error code 1 > > Stop in /home/FreeBSD/ports/x11/XFree86-4. > > I had this same error a week ago, someone have a clue? Fixed yesterday. cvsup and try again. (The fix is in XFree86-4-libraries/files/ and XFree86-4-clients/scripts -- you need to cvs update both before rebuilding -clients) -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 20:50:21 2003 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 B536916A4BF for ; Tue, 14 Oct 2003 20:50:21 -0700 (PDT) Received: from web80507.mail.yahoo.com (web80507.mail.yahoo.com [66.218.79.77]) by mx1.FreeBSD.org (Postfix) with SMTP id EEABD43F75 for ; Tue, 14 Oct 2003 20:50:20 -0700 (PDT) (envelope-from drakcap@pacbell.net) Message-ID: <20031015035020.10350.qmail@web80507.mail.yahoo.com> Received: from [208.139.6.111] by web80507.mail.yahoo.com via HTTP; Tue, 14 Oct 2003 20:50:20 PDT Date: Tue, 14 Oct 2003 20:50:20 -0700 (PDT) From: Robert English To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: re: Galeon compile fails after Mozilla upgrade - still! 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, 15 Oct 2003 03:50:21 -0000 Hello again - took Mezz's suggestion and did a fresh cvsup and built a fresh index & portsdb afterward - Galeon still failed to compile, bunking in the same spot. Deleted the /usr/ports/www/galeon port, did another cvsup and index rebuilt etc., Galeon still did a bunk. In the same spot. Next I deinstalled and reinstalled Mozilla. Galeon failed in the same spot again. Something needs to be there that isn't. What else besides Mozilla, if it were to be deinstalled and reinstalled, would clear up this problem my system's having with Galeon? RE earlier in linear time, Jeremy Messenger wrote: > >> the most recent upgrade to Mozilla 1.4.1, performed yesterday >> after a "cvsup" operation on my 4.8-stable box, seems to have >> thrown a monkey-wrench into the compile of Galeon 1.2.12. >> Here's the part where the failure occurs: > >CVSup your ports tree and try it again. This is fixed last >Saturday night >or Sunday. > >Cheers, >Mezz From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 21:19:18 2003 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 D0C6216A4B3 for ; Tue, 14 Oct 2003 21:19:18 -0700 (PDT) Received: from fed1mtao01.cox.net (fed1mtao01.cox.net [68.6.19.244]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB79443FDD for ; Tue, 14 Oct 2003 21:19:13 -0700 (PDT) (envelope-from s.wingate@pobox.com) Received: from daemon.g-e-e-k.net ([68.105.195.160]) by fed1mtao01.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20031015041910.ZOUY2935.fed1mtao01.cox.net@daemon.g-e-e-k.net> for ; Wed, 15 Oct 2003 00:19:10 -0400 Date: Tue, 14 Oct 2003 21:17:42 -0700 (PDT) From: Steve Wingate X-X-Sender: steve@daemon.g-e-e-k.net To: FreeBSD Ports Mail list Message-ID: <20031014211406.I472@daemon.g-e-e-k.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Abiword & resizing 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, 15 Oct 2003 04:19:18 -0000 I'm using the AbiWord2-2.0.0 port on Fluxbox wm. If I use the drag corner to increase the window size I cannot decrease the window size later on. Even I close/reopen the app it stays at the larger size. I just increased the window from 80x80 to 100x100 and now I can't decrease it for anything. The list of installed ports AbiWord2-2.0.0 An open-source, cross-platform WYSIWYG word processor BitchX-1.0c19_3 "An alternative ircII color client with optional GTK/GNOME GimpUserManual-PDF-2 The user manual for the GNU Image Manipulation Program (GIM Hermes-1.3.3 Fast pixel formats conversion library ImageMagick-5.5.7.11_1 Image processing tools Mesa-3.4.2_2 A graphics library similar to SGI's OpenGL OQTPlayer-0.5 A very very small, not functionnal, video OpenQuicktime (TM ORBit-0.5.17_1 High-performance CORBA ORB with support for the C language ORBit2-2.8.2 High-performance CORBA ORB with support for the C language XFree86-4.3.0,1 X11/XFree86 core distribution (complete, using mini/meta-po XFree86-FontServer-4.3.0_2 XFree86-4 font server XFree86-Server-4.3.0_11 XFree86-4 X server and related programs XFree86-VirtualFramebufferServer-4.3.0_3 XFree86-4 virtual framebuffer server XFree86-clients-4.3.0_3 XFree86-4 client programs and related files XFree86-documents-4.3.0 XFree86-4 documentation XFree86-font100dpi-4.3.0 XFree86-4 bitmap 100 dpi fonts XFree86-font75dpi-4.3.0 XFree86-4 bitmap 75 dpi fonts XFree86-fontCyrillic-4.3.0 XFree86-4 Cyrillic fonts XFree86-fontDefaultBitmaps-4.3.0 XFree86-4 default bitmap fonts XFree86-fontEncodings-4.3.0 XFree86-4 font encoding files XFree86-fontScalable-4.3.0 XFree86-4 scalable fonts XFree86-libraries-4.3.0_6 XFree86-4 libraries and headers Xaw3d-1.5 A 3-D Athena Widget set that looks like Motif Xft-2.1.2 A client-sided font API for X applications aalib-1.4.r5_1 An ascii art library abcde-2.1.6 Front-end shell script to encode CDs in flac/mp3/ogg/speex acme-2.4.0 Tool to make multimedia keys work on laptops acroread-5.08 View, distribute and print PDF documents apache-ant-1.5.4_1 Java- and XML-based build tool, conceptually similar to mak arts-1.1.4,1 Audio system for the KDE integrated X11 desktop artwiz-fonts-1.0_1 A set of free fonts for X11 desktops asclock-gtk-2.1.10 New flavor of asclock (GTK version) aspell-0.50.4 Spelling checker with better suggestion logic than ispell at-spi-1.3.7 An Assistive Technology Service Provider Interface aterm-0.4.2 A color vt102 terminal emulator with transparency support atk-1.4.1 A GNOME accessibility toolkit (ATK) autoconf-2.53_1 Automatically configure source code on many Un*x platforms autoconf213-2.13.000227_5 Automatically configure source code on many Un*x platforms automake-1.5,1 GNU Standards-compliant Makefile generator automake14-1.4.5_9 GNU Standards-compliant Makefile generator (legacy version autotrace-0.31.1_1 Convert bitmap to vector graphics avifile-0.7.34.20030319,2 AVI player/converter with numerous codecs, including MPEG-4 balsa2-2.0.15 A mail reader for the GNOME 2 desktop bash-2.05b.007 The GNU Bourne Again Shell bb-1.3.r1 High quality audio-visual demonstration for text terminal bbconf-1.8 Configurator for the Blackbox window manager bbkeys-0.8.5 A keygrabber for the Blackbox window manager bbrun-1.4_1 A Run box for Blackbox bison-1.75_1 A parser generator from FSF, (mostly) compatible with Yacc bitstream-vera-1.10 Bitstream Vera TrueType font collection blackbox-0.65.0 A small and fast window manager for X11R6 bluefish-0.11.20031003 HTML editor designed for the experienced web designer boehm-gc-6.2 Garbage collection and memory leak detection for C and C++ bonobo-1.0.22 The component and compound document system for GNOME boxtools-0.65.0 Style tools for the blackbox family of window managers bugbuddy2-2.4.0 A bug reporting tool for GNOME 2 bzip-0.21 A block-sorting file compressor cabextract-0.6_1 A program to extract Microsoft cabinet (.CAB) files cclient-2002d,1 Mark Crispin's C-client mail access routines cd-discid-0.8 Backend utility to retrieve CDDB discid information cdparanoia-3.9.8_5 A CDDA extraction tool (also known as ripper) cdrtools-2.0.3 Cdrecord, mkisofs and several other programs to record CD-R clean-theme-gtk-1.2.x The Clean GTK theme engine colorize-0.3.3 A robust log colorizer crimson-1.1.3_1 Implements the Java API for XML Processing (JAXP) cups-base-1.1.19.0 The Common UNIX Printing System: headers, libs, & daemons cups-pstoraster-7.07 GNU Postscript interpreter for CUPS printing to non-PS prin curl-7.10.7 Non-interactive tool to get files from FTP, GOPHER, HTTP(S) cvsup-without-gui-16.1h General network file distribution system optimized for CVS cyrus-sasl-2.1.15 RFC 2222 SASL (Simple Authentication and Security Layer) dagrab-0.3.5_1 Read audio tracks from a CD into wav sound files db3-3.3.11,1 The Berkeley DB package, revision 3 db4-4.0.14_1,1 The Berkeley DB package, revision 4 db41-4.1.25_1 The Berkeley DB package, revision 4.1 dbh-1.0.15 Disk Based Hashtables dia-gnome-0.92p5 Diagram creation program, similar to Visio djbfft-0.76 An extremely fast library for floating-point convolution docbook-1.2_1 Meta-port for the different versions of the DocBook DTD docbook-241_2 V2.4.1 of the DocBook DTD, designed for technical documenta docbook-3.0_2 V3.0 of the DocBook DTD, designed for technical documentati docbook-3.1_2 V3.1 of the DocBook DTD, designed for technical documentati docbook-4.0_2 V4.0 of the DocBook DTD, designed for technical documentati docbook-4.1_2 V4.1 of the DocBook DTD, designed for technical documentati docbook-sk-4.1.2 XML version of the DocBook DTD version controlled for Scrol docbook-xml-4.2_1 XML version of the DocBook DTD docbook-xsl-1.62.3 XSL DocBook stylesheets easytag-0.30 Tag editor for MP3 and OGG files eel2-2.4.0 Generally useful classes and extensions to GNOME eog2-2.4.0 The Eye Of Gnome image viewer epiphany-1.0.2 An extremely lightweight and simple web browser for GNOME 2 esound-0.2.32_1 A sound library for enlightenment package eterm-0.9.2 X11 terminal emulator based on rxvt/xterm everybuddy-esound-0.4.3_2 A "chat" program that combines AIM, ICQ, and Yahoo! Chat in evolution-1.4.5 An integrated mail, calendar and address book distributed s expat-1.95.6_1 XML 1.0 parser written in C ezm3-1.1 Easier, more portable Modula-3 distribution for building CV fam-2.6.9_3 A file alteration monitor fastest_cvsup-0.2.8 Finds fastest CVSup server fbsd-icons-1.0 Collection of icons related to the FreeBSD project ffmpeg-0.4.5_6 Hyper fast realtime audio/video encoder/converter, streamin figlet-2.2.1 SysV banner-like program prints strings in large fancy ASCI figlet-fonts-20020913 Assorted fonts for the figlet(6) program fileroller-2.4.0.1,1 An archive manager for zip files, tar, etc flac-1.1.0_2 Free lossless audio codec flashpluginwrapper-0.20021113 A wrapper allowing use of linux-flashplugin with native moz fluxbox-0.1.14_2 A small and fast window manager based on BlackBox fluxconf-0.9.4 Fluxconf is a configuration program for the fluxbox window fluxter-0.1.0 Dekstop pager for the Fluxbox Slit fontconfig-2.2.90_3 An XML-based font configuration API for X Windows freefonts-0.10_2 A collection of ATM fonts (not all free) from the CICA arch freetype-1.3.1_2 A free and portable TrueType font rendering engine freetype2-2.1.5_1 A free and portable TrueType font rendering engine fribidi-0.10.4_1 A Free Implementation of the Unicode Bidirectional Algorith gail-1.4.1 An implementation of the ATK interfaces for GTK+ widgets gaim-0.71_4 Gtk+-2.0 open-source 'clone' of AOL's Instant Messenger cli gal-0.24 A collection of widgets taken from GNOME gnumeric and evolu gal2-1.99.10 A collection of widgets taken from GNOME 2 gnumeric galeon2-1.3.9_1 A GNOME 2 Web browser based on gecko (the Mozilla rendering gcalctool-4.3.15 A GNOME 2 calculator tool based on the old calctool for Ope gcc-3.1.1_20020909 GNU Compiler Collection 3.1 (inprogress version) gcc-3.2.3 GNU Compiler Collection 3.2.3 gcc-3.3.1_20030804 GNU Compiler Collection 3.3 gconf-1.0.9_6 A configuration database system for GNOME gconf-editor-2.4.0,1 A gconf database editor for the GNOME 2 environment gconf2-2.4.0.1 A configuration database system for GNOME gdbm-1.8.3 The GNU database manager gdeskcal-0.55 A calendar for the gnome2 desktop with smooth alpha-blendin gdk-pixbuf-0.22.0 A graphic library for GTK+ gdm2-2.4.4.3_1 GNOME 2 version of xdm display manager gedit2-2.4.0 A small but powerful text editor for Gnome 2 Desktop Enviro getmail-3.2.0 POP3 mail retriever with reliable Maildir and command deliv gettext-0.12.1 GNU gettext package gftp-gnome-2.0.15 A free multithreaded GTK-based GUI ftp and sftp client ggv2-2.4.0.2 GNOME 2 ghostscript viewer ghostscript-gnu-7.07_4 GNU Postscript interpreter gimp-gnome-1.3.21,1 A GNU Image Manipulation Program (unstable development vers gimp-print-4.2.5_1 GIMP Print Printer Driver gkrellm-2.1.21 A GTK based system monitor glade2-2.0.0 A user interface builder for GTK+/GNOME gle-3.0.3 A GL Tubing and Extrusion Library glib-1.2.10_10 Some useful routines of C programming (previous stable vers glib-2.2.3 Some useful routines of C programming (current stable versi glibwww-0.2_1 A library for people wanting to use libwww with gtk/gnome gmake-3.80_1 GNU version of 'make' utility gnet-glib2-1.1.9_1 A simple network library built upon Glib-2 gnet2-2.0.4 A simple network library built upon Glib-2 gnome-icon-theme-1.0.9 A collection of icons for the GNOME 2 desktop gnome-industrial-theme-0.2.29 Slick GNOME2 theme from Ximian gnome-pkgview-1.0.2 Displays the version of GNOME components installed gnome-themes-2.4.0 A collection of themes and icons for GNOME 2 designed for a gnome-themes-extras-0.4 More themes for the GNOME 2 desktop environment gnome2-2.4.0 The "meta-port" for the GNOME 2 integrated X11 desktop gnomeapplets2-2.4.1_1 Applets components for the Gnome 2 Desktop Environment gnomeaudio2-2.0.0 Sound files for use with GNOME 2 gnomebasic-0.0.20 Provide Visual Basic compatible functionality for GNOME, es gnomecanvas-0.22.0 A graphics library for GNOME gnomecontrolcenter-1.4.0.5_1 Control center for GNOME project gnomecontrolcenter2-2.4.0 Control center for GNOME 2 project gnomedb-0.2.96_1 Provide uniform access to data sources for the GNOME enviro gnomedesktop-2.4.0 Additional UI API for GNOME 2 gnomegames2-2.4.1 The game applications package for the Gnome 2 Desktop Envir gnomehier-1.0_9 An utility port, installing hierarchy of common GNOME direc gnomelibs-1.4.2_1 Libraries for GNOME, a GNU desktop environment gnomemag-0.10.3 GNOME screen magnifier gnomemedia2-2.4.0_1 Multimedia applications for the GNOME 2 desktop gnomemeeting-0.98.5 GNOME H323 Video Conferencing program, similar to NetMeetin gnomemimedata-2.4.0 A MIME and Application database for GNOME gnomepanel-2.4.0_2 Panel component for the GNOME 2 Desktop gnomepilot2-2.0.10 3Com PalmPilot conduit system for GNOME 2 gnomeprint-0.37 Gnome print support library gnomesession-2.4.0 Session component for the GNOME 2 desktop gnomespeech-0.2.7 GNOME text-to-speech API gnomespell-1.0.5 A GNOME/Bonobo component for spell checking gnomesystemmonitor-2.4.0 GNOME 2 system monitor program gnometerminal-2.4.0.1 Terminal component for the GNOME 2 Desktop gnomeuserdocs2-2.4.1 GNOME 2 users guide gnomeutils2-2.4.0,1 GNOME 2 support utilities gnomevfs-1.0.5_4 GNOME Virtual File System gnomevfs2-2.4.0 GNOME Virtual File System gnopernicus-0.7.1 Collection of accessibility apps for GNOME 2 gnumeric2-1.1.20_1 The GNOME 2 spreadsheet gnupg-1.2.3_1 The GNU Privacy Guard gob-1.0.12 A preprocessor for making GTK+ objects with inline C gob2-2.0.6 A preprocessor for making GObjects with inline C gocr-0.37 GOCR/JOCR is an OCR (Optical Character Recognition) program gok-0.8.3 GNOME On-Screen Keyboard (GOK) gpdf-0.110 GNOME version of xpdf gqmpeg-gnome-0.19.0 Another gtk-based MP3 frontend gqview-1.2.2_1 Another gtk-based graphic file viewer grc-1.0.6 Generic Colouriser gstreamer-0.6.3 Development framework for creating media applications gstreamer-plugins-0.6.3_1 GStreamer written collection of plugins handling several me gtk-1.2.10_10 Gimp Toolkit for X11 GUI (previous stable version) gtk-2.2.4_1 Gimp Toolkit for X11 GUI (current stable version) gtk-Mac2-theme-200003050858 GTK+ engine theme based on the look of MacOS gtk-aqualightblue-theme-0.1 A port of the GTK+ AquaLightBlue theme to GTK+ 2.0 gtk-bluecurve-theme-0.73 Bluecurve unified-look theme for GTK1 and GTK2 from RedHat gtk-engines-0.12_2 Theme engine for gtk+ toolkits gtk-engines2-2.2.0 Theme engine for the gtk+-2.0 toolkit gtk-flat-theme2-0.1 A port of the Flat GTK+ engine to GTK+ 2.0 gtk-qnxtheme-0.1_1 QNX-inspired theme for GTK1 and GTK2 gtk-xfce-engine-2.1.6 An XFCE engine for GTK 2.0 gtkglarea-1.99.0_2 An OpenGL widget for the GTK+2 GUI toolkit gtkhtml-1.1.10_2 Lightweight HTML rendering/printing/editing engine gtkhtml3-3.0.9 Lightweight HTML rendering/printing/editing engine gtksourceview-0.6.0 A text widget that adds syntax highlighting to the GtkTextV gtkspell2-2.0.4 A GTK+ 2 spell checking component gucharmap-gnome-1.0.0 A Unicode/ISO10646 character map and font viewer guile-1.6.4_2 GNU Ubiquitous Intelligent Language for Extension guppi-0.40.3_3 A ploting program for GNOME gv-3.5.8_3 A PostScript and PDF previewer hdf-4.1r5 Hierarchical Data Format library (from NCSA) help2man-1.29 Automatically generating simple manual pages from program o id3lib-3.8.2 Library for manipulating ID3v1/v1.1 and ID3v2 tags id3v2-0.1.9_1 Command line id3v2 tag editor imake-4.3.0_1 Imake and other utilities from XFree86 imlib-1.9.14_1 A graphic library for enlightenment package imlib2-1.0.6_1 The next generation graphic library for enlightenment packa intltool-0.27.2 Xml internationalization support for GNOME, and others ipcalc-0.35_1 IP Calculator iso8879-1986_2 Character entity sets from ISO 8879:1986 (SGML) ispell-3.2.06_3 An interactive spelling checker for multiple languages jabber-1.4.2 Online presence and instant messaging server jade-1.2.1_5 An object-oriented SGML/XML parser toolkit and DSSSL engine jasper-1.700.2 An implementation of the codec specified in the JPEG-2000 s javavmwrapper-1.4 Wrapper script for various Java Virtual Machines jbigkit-1.5 Lossless compression for bi-level images such as scanned pa jdk-1.3.1p8_2 Java Development Kit 1.3 jdk-1.4.1p3_3 Java Development Kit 1.4.1 jpeg-6b_1 IJG's jpeg compression utilities kde-3.1.4 The "meta-port" for KDE kdeaddons-3.1.4 Additional plugins and scripts for some KDE applications kdeadmin-3.1.4 KDE applications related to system administration kdeartwork-3.1.4 Additional themes, sounds, wallpapers and window styles for kdebase-3.1.4 This package provides the basic applications for the KDE sy kdeedu-3.1.4 Collection of entertaining, educational programs for KDE kdegames-3.1.4 Games for the KDE integrated X11 desktop kdegraphics-3.1.4 Graphics utilities for the KDE3 integrated X11 desktop kdelibs-3.1.4 This is the base set of libraries needed by KDE programs kdemultimedia-3.1.4 Multimedia utilities for the KDE integrated X11 desktop kdenetwork-3.1.4 Network-related programs and modules for KDE kdepim-3.1.4 Personal Information Management tools for KDE kdesdk-3.1.4 KDE Software Development Kit kdetoys-3.1.4 Small applications for KDE kdeutils-3.1.4 Utilities for the KDE integrated X11 desktop kdevelop-2.1.5 Powerful IDE for developing KDE/Qt-based apps koffice-1.2.1_1,1 Office Suite for KDE3 lame-3.93.1 ISO code based fast MP3 encoder kit lcms-1.09,1 Light Color Management System -- a color management library lha-1.14i_2 Archive files using LZSS and Huffman compression (.lzh file libIDL-0.8.2 A library for creating trees of CORBA Interface Definition liba52-0.7.4 A free library for decoding ATSC A/52 streams, aka AC-3 libao-esound-0.8.4_1 Portable audio output library libart_lgpl2-2.3.16 Library for high-performance 2D graphics libast-0.5 A library of assorted spiffy things libaudiofile-0.2.4 A sound library for SGI audio file libbonobo-2.4.1 A component and compound document system for GNOME2 libbonoboui-2.4.0 GUI frontend to the libbonobo component of GNOME 2 libcapplet-1.4.0.5_1 A library for writing custom applets for GNOME Control Cent libdivxdecore-0.4.7 OpenDivX decoding engine from Project Mayo libdvdcss-1.2.8 Portable abstraction library for DVD decryption libdvdnav-0.1.3 The library for the xine-dvdnav plugin libdvdread-0.9.4 This is needed by ogle, which is a DVD player that supports libesmtp-1.0_1,1 A library for posting electronic mail libexif-0.5.12_1 Library to read digital camera file meta-data libfpx-1.2.0.9 Library routines for working with Flashpix images libgail-gnome-1.0.2_2 An implementation of the ATK interfaces for GNOME widgets libgda-0.2.96_1 Provides uniform access to different kinds of data sources libgda2-0.91.0 Provides uniform access to different kinds of data sources libghttp-1.0.9 GNOME http client library libglade-0.17_2 GNOME glade library libglade2-2.0.1_1 GNOME glade library libgnome-2.4.0 Libraries for GNOME, a GNU desktop environment libgnomecanvas-2.4.0 A graphics library for GNOME libgnomedb-0.91.0 Library components for the GNOME database frontend libgnomeprint-2.4.0 Gnome print support library libgnomeprintui-2.4.0 Gnome print support library libgnomeui-2.4.0.1_1 Libraries for the GNOME GUI, a GNU desktop environment libgnugetopt-1.2 GNU getopt library libgsf-1.8.2 An extensible i/o abstraction for dealing with structured f libgtkhtml-2.4.1 Lightweight HTML rendering/printing/editing engine libgtop2-2.0.5 GNOME 2 top library libiconv-1.9.1_1 A character set conversion library libijs-0.34 C library that supports plugin printer driver for Ghostscri libltdl-1.5 System independent dlopen wrapper libmal-0.31 A library encapsulating malsync libmikmod-esound-3.1.10_1 MikMod Sound Library libmng-1.0.5_1 Multiple-image Network Graphics (MNG) reference library libmpeg2-0.3.1_1 A free library for decoding mpeg-2 and mpeg-1 video streams libmusicbrainz-2.0.2_1 2nd generation incarnation of the CD Index - audio metadata libogg-1.0_1,3 Ogg bitstream library libole2-0.2.4 Support library for OLE functions (MS-Excel) for gnumeric librep-0.16.2_2 An Emacs Lisp like runtime library librsvg2-2.4.0 Library for parsing and rendering SVG vector-graphic files libsidplay-1.36.57 A Commodore SID-chip emulator library to play SID music fil libsoup-1.99.26 A SOAP (Simple Object Access Protocol) implementation in C libtool-1.3.5_1 Generic shared library support script libtool-1.4.3_2 Generic shared library support script libungif-4.1.0b1_1 Tools and library routines for working with GIF images libunicode-0.4_3 A library for manipulating Unicode characters and strings libusb-0.1.7 Library giving userland programs access to USB devices libvorbis-1.0_1,3 Audio compression codec library libwmf-0.2.8 Tools and library for converting Microsoft WMF (windows met libwnck-2.4.0.1 Library used for writing pagers and taskslists libwww-5.4.0 The W3C Reference Library libxfce4gui-4.0.0 XFce 4 widget library required by xfce4 and xfwm4 libxfce4mcs-4.0.0 XFce 4 settings management library used by most XFce 4 modu libxfce4util-4.0.0 XFce 4 library with non-graphical helper functions libxine-1.0.r0_2 Libraries for xine multimedia player libxml-1.8.17_1 Xml parser library for GNOME libxml2-2.5.11 Xml parser library for GNOME libxslt-1.0.33 The XSLT C library for GNOME libzvt-2.0.1_6 Library components for Zed's Virtual Terminal linc-1.0.3 A library for writing networked servers & clients linux-divx4linux-5.0.20030428 Linux binary release of DivX (TM) Codec linux-divxplayer-0.2.0 DivX(TM) Video Player for Linux from DivX.com linux-esound-0.2.22_1 RPM of esound linux-flashplugin-5.0r51 The official Macromedia Flash Player for Linux Netscape and linux-flashplugin-6.0r79 The official Macromedia Flash Player for Linux Mozilla and linux-gtk-1.2_2 RPM of the Gtk lib linux-libaudiofile-0.1.11_2 RPM of audiofile linux-openmotif-2.1.30 Motif toolkit Linux libraries linux-opera-7.11.20030515_2 A blazingly fast, full-featured, standards-compliant browse linux-png-1.0.14_2 RPM of the PNG lib linux-realplayer-8.cs2_4 Linux RealPlayer 8.0 from RealNetworks linux-sun-jdk-1.3.1.08 Sun Java Development Kit 1.3 for Linux linux-sun-jdk-1.4.2.01_3 Sun Java Development Kit 1.4 for Linux linux_base-7.1_5 The base set of packages needed in Linux mode linuxdoc-1.1_1 The Linuxdoc SGML DTD lynx-2.8.5d16_3 A non-graphical, text-based World-Wide Web client lzo-1.08_1 Portable speedy, lossless data compression library lzop-1.01 Fast file compressor similar to gzip, using the LZO library m4-1.4_1 GNU m4 mad-esound-0.14.2b_3 High-quality MPEG audio decoder man2html-3.0.1_1 Convert nroff(1) man pages to HTML metacity-2.6.2 A window manager for the adult in you metatheme2-0.9.7_1 An utility for managing "theme sets" that accomodate gtk, w ming-0.2a_1 LGPL'ed Flash 4/5 movie output library with many languages mkcatalog-1.1 A maintainance utility for sgml catalog files mkisofs-2.0.3 Create iso9660/Rock Ridge/Joliet filesystems mmencode-2.7 Translate to and from mail-oriented encoding formats mosfet-liquid-0.9.6_1 A High Performance Liquid KDE style engine mozilla-1.4.1,2 The open source, standards compliant web browser mozilla-firebird-0.6.1_1 Mozilla Firebird is the next generation browser from the mo mozilla-gtk2-1.4.1 The open source, standards compliant web browser mozilla-headers-1.4.1,2 Header files for mozilla communicator web-surfboard mp3blaster-3.1.3 MP3 console ncurses-based player mpg123-esound-0.59r_9 Command-line player for mpeg layer 1, 2 and 3 audio mpg321-0.2.10_2 A free command-line mp3 player, compatible with mpg123 mplayer-fonts-0.50 A font pack for the mplayer OSD and SUB mplayer-gtk-esound-0.92.0_2 High performance media player/encoder supporting many forma mplayer-skins-1.0.5_1 Skins for MPlayer's Graphical User Interface (GUI) mplayerplug-in-0.95_1 A Mozilla plugin for the MPlayer media player mutt-1.4.1_4 The Mongrel of Mail User Agents (part Elm, Pine, Mush, mh, nasm-0.98.35,1 General-purpose multi-platform x86 assembler nautilus-cd-burner-0.5.3_3 CD burner view for Nautilus nautilus-media-0.3.3.1 GStreamer-based multimedia views for Nautilus nautilus2-2.4.0_2 GNOME file manager and graphical shell developed by Eazel ncftp1-1.9.5 FTP replacement with advanced user interface net-rhythmbox-0.4.8_2 Audio player for the Gnome 2 desktop environment netscape7-7.1 Linux Netscape suite nmap-3.48_1 Port scanning utility for large networks nmapfe-3.48_1 GUI frontend for the nmap scanning utility normalize-0.7.5_2 A tool for adjusting the volume of wave/MP3 files to a stan nspr-4.3_2 A platform-neutral API for system level and libc like funct nss-3.8 A set of libraries to support development of security-enabl ntp-4.1.1c.r3 The Network Time Protocol Distribution numlockx-1.0 This little thingy allows you to start X with NumLock turne oaf-0.6.10_1 Object Activation Framework for GNOME ogle-0.9.1 Open DVD player that supports DVD menus ogle-gnome-0.9.1_2 An add-on graphical user interface for Ogle open-motif-2.2.2_1 Motif X11 Toolkit (industry standard GUI (IEEE 1295)) openldap-client-2.0.27 Open source LDAP client implementation openldap-server-2.1.22_2 Open source LDAP server implementation openldap20-2.0.27 Open source LDAP client and server software openoffice-1.0.3_2 Integrated wordprocessor/dbase/spreadheet/drawing/chart/bro openoffice-1.1.0_1 Integrated wordprocessor/dbase/spreadheet/drawing/chart/bro openquicktime-1.0 Portable library for handling Apple's QuickTime(TM) files p5-Authen-SASL-2.04 Perl5 module for SASL authentication p5-Digest-HMAC-1.01 Perl5 interface to HMAC Message-Digest Algorithms p5-Digest-MD5-2.27 Perl5 interface to the MD5 algorithm p5-Digest-Nilsimsa-0.06 Perl version of Nilsimsa code p5-Digest-SHA1-2.05 Perl interface to the SHA-1 Algorithm p5-File-Spec-0.86 A Perl module for portably manipulating file specifications p5-HTML-Parser-3.32 Perl5 module for parse HTML tag p5-HTML-Tagset-3.03 Some useful data table in parsing HTML p5-MIME-Base64-2.21 Perl5 module for Base64 and Quoted-Printable encodings p5-Mail-SpamAssassin-2.60 A highly efficient mail filter for identifying spam p5-Mail-Tools-1.60 Perl5 modules for dealing with Internet e-mail messages p5-Net-1.17,1 Perl5 modules to access and use network protocols p5-Net-DNS-0.41 Perl5 interface to the DNS resolver, and dymanic updates p5-PodParser-1.24 Modules to work with POD (Plain Old Documentation) p5-Term-ANSIColor-1.07 Color screen output using ANSI escape sequences p5-Test-Harness-2.30 Run perl standard test scripts with statistics p5-Test-Simple-0.47_1 Basic utilities for writing tests in perl p5-Time-HiRes-1.51,1 A perl5 module implementing High resolution time, sleep, an p5-URI-1.25 Perl5 interface to Uniform Resource Identifier (URI) refere p5-type1inst-0.6.1 A script that helps install Postscript fonts in X Window Sy pan2-0.14.2 Threaded GNOME 2 newsreader based on Agent for Windows pango-1.2.5 An open-source framework for the layout and rendering of i1 pcre-4.4 Perl Compatible Regular Expressions library perl-5.6.1_14 Practical Extraction and Report Language pgp-5.0i_1 Public-Key encryption for the masses pgpgpg-0.13 Wrapper for GnuPG to simulate PGP 2.6.x pilot-link-0.11.7_2 PalmPilot communications utilities (backup/restore/install/ pine-4.58 PINE(tm) -- a Program for Internet News & Email pkgconfig-0.15.0 A utility used to retrieve information about installed libr plotutils-2.4.1 A plotting library and toolkit png-1.2.5_2 Library for manipulating PNG images popt-1.6.4_1 A getopt(3) like library with a number of enhancements, fro portupgrade-20030723 FreeBSD ports/packages administration and management tool s procmail-3.22_3 A local mail delivery agent psiconv-0.8.3_1 A conversion utility to convert Psion 5(MX) files into othe pstoedit-3.33_1 Convert PostScript to other vector graphic formats py-gnome-2.0.0 A set of Python bindings for GNOME 2 py23-expat-2.3.2_2 Python interface to the Expat XML parser py23-gtk-2.0.0 A set of Python bindings for GTK py23-numeric-23.0 The Numeric Extension to Python py23-orbit-2.0.0 Python bindings for ORBit2 py23-xml-0.8.3 The Python XML package, including parser, SAX, DOM, and Exp python-2.3.2 An interpreted object-oriented programming language qt-3.2.1 A C++ X GUI toolkit quanta-3.1.4,2 Comprehensive html/website development environment rar-3.20,1 File archiver (binary port) razor-agents-2.36_1 A distributed, collaborative, spam detection and filtering rc_subr-1.16 Common startup and shutdown subroutines used by scripts rdesktop-1.2.0 RDP client for Windows NT Terminal Server rep-gtk2-gnome-0.17_2,1 GTK+-2 binding for rep Lisp interpreter rhythmbox-0.5.3 Audio player for the Gnome 2 desktop environment rpm-3.0.6_8 The Red Hat Package Manager ruby-1.6.8.2003.04.19 An object-oriented interpreted scripting language ruby-bdb1-0.2.1 Ruby interface to Berkeley DB revision 1.8x with full featu ruby-rdoc-0.9.0 Documentation from Ruby source files ruby-shim-ruby18-1.8.0.p2.2003.04.19_1 A set of Ruby modules to provide Ruby 1.8 functionalities rxvt-2.6.4_1 A low memory usage xterm replacement that supports color samba-2.2.8a A free SMB and CIFS client and server for UNIX samba-libsmbclient-3.0.0 The shared lib from the samba packges sane-backends-1.0.12_3 API for access to scanners, digitals camera, frame grabbers screen-4.0.1_1 A multi-screen window manager scrollkeeper-0.3.12_2,1 An Open Document Cataloging Project sdl-1.2.5_2 Cross-platform multi-media development API (developm. vers. sdocbook-xml-4.1.2.5_1 "Simplified" DocBook XML DTD sgmlformat-1.7_2 Generates groff and HTML from linuxdoc and docbook SGML doc sharefonts-0.10 A collection of shareware ATM fonts from the CICA archives sidplay-1.0.9 A Commodore SID-chip emulator that plays SID music files soup-0.7.11 A SOAP (Simple Object Access Protocol) implementation in C sox-12.17.4 SOund eXchange - universal sound sample translator speex-1.0.2,1 An open-source patent-free voice codec startup-notification-0.5_1 Library that supports startup notification spec from freede sudo-1.6.7.5 Allow others to run commands as root svgalib-1.4.3_1 A low level console graphics library sylpheed-0.9.6 A lightweight, featureful, and fast GTK+ based e-mail clien tcl-8.3.5_2 Tool Command Language teTeX-2.0.2_2 Thomas Esser's distribution of TeX & friends tiff-3.6.0 Tools and library routines for working with TIFF images timidity++-esound-2.11.3_1 Software MIDI player tk-8.3.5_2 Graphical toolkit for TCL totem-0.99.5 A Xine-based video player for the Gnome 2 Desktop tsclient-0.124 A GNOME 2 frontend for rdesktop ttmkfdir-0.0_1 Create fonts.scale file for use with TrueType font server unix2dos-1.3 Translate ASCII files from DOS (cr/lf) to UNIX (lf) unzip-5.50_2 List, test and extract compressed files in a ZIP archive urwfonts-1.0 Another font package for X uulib-0.5.18 A library for uu/xx/Base64/BinHex/yEnc de-/encoding vilearn-1.0 An interactive tutorial for the vi editor vim-6.2.72 Vi "workalike", with many additional features vnc-3.3.7_1 Display X and Win32 desktops on remote X/Win32/Java display vorbis-tools-1.0_4,3 Play, encode, and manage Ogg Vorbis files vte-0.11.10_1 Terminal widget with improved accessibility and I18N suppor w3m-0.4.1 A pager/text-based WWW browser wavplay-1.4 A wav player and recorder webfonts-0.21_1 TrueType core fonts for the Web weblint-1.020 HTML validator and sanity checker wget-1.8.2_4 Retrieve files from the Net via HTTP and FTP win32-codecs-2.0.90,1 Huge compilation of Win32 binary codecs, including MPEG-4(D windowmaker-0.80.2_1 GNUStep-compliant NeXTStep window manager clone wmavgload-0.7.0 Another WindowMaker load gauge wmcpuload-1.0.1 An "lcd" dockapp for windowmaker, which displays the curren wmfire-0.0.3.9 Window Maker dock app showing load average as a flame wmicons-1.0 Icons mainly for use in Window Maker wmmatrix-0.2 A DockApp that runs a version of the xmatrix screenhack wrapper-1.0_3 Wrapper for XFree86-4 server wterm-6.2.9 A color vt102 terminal emulator with transparency support x11amp-0.9.b1.1 X11-based MP3 player with nice graphical interface xanim-2.92.0 Play most popular animation formats and show pictures xcdroast-0.98.a.14 Another X11 frontend to mkisofs/cdrecord xchat2-2.0.5 An X11 IRC client using the GTK+ 2 toolkit xfce-4.0.0 The "meta-port" for the XFce 4 desktop environment xfce4-desktop-4.0.0 XFce 4 desktop background manager and root menu xfce4-fm-4.0.0 XFce 4 file manager xfce4-fm-icons-4.0.0 XFce 4 icon themes for the xffm file manager xfce4-iconbox-4.0.0 XFce 4 icon box, an alternative taskbar xfce4-mcs-manager-4.0.0 XFce 4 settings manager xfce4-mcs-plugins-4.0.0 XFce 4 settings manager plugins xfce4-mixer-4.0.0 XFce 4 volume mixer module for xfce4-panel xfce4-panel-4.0.0 XFce 4 panel module xfce4-panel-themes-4.0.0 Icon themes for the XFce 4 panel xfce4-print-4.0.0 XFce 4 graphical frontend for printing xfce4-systray-4.0.0 XFce 4 system tray module for xfce4-panel xfce4-toys-4.0.0 Toys for the XFce 4 panel xfce4-utils-4.0.0 XFce 4 essential utilities and scripts xfce4-wm-4.0.0 XFce 4 window manager xfce4-wm-themes-4.0.0 XFce 4 window decoration themes for xfwm4 xine-0.9.22_1 An X11 multimedia player xmbmon-203 X/tty motherboard monitor for LM78/79, W8378x, AS99127F and xmlcatmgr-0.2_1 SGML/XML catalog manager xmms-esound-1.2.8_1 X Multimedia System --- An audio player with a Winamp GUI xmms-goom-1.8.1 A cool XMMS visualization xmms-jess-2.9.1 A XMMS visualization plugin that uses SDL xmms-osssurround-0.1 OSSSuround adds Surround Sound capabilities to XMMS xmovie-1.9.8.1 A movie player for AVI, MPEG-2/4 and MOV movies xmp-esound-2.0.4_1 A player for many different Amiga and PC module formats xmps-0.2.0 X MPEG Player System - a media player with a very nice GUI xmps-opendivx-plugin-0.0.1_2 xmps plugin using OpenDivX decoding engine from Project May xpostit-3.3.1 PostIt (R) messages onto your X11 screen xsane-0.91 Gtk-based X11 frontend for SANE (Scanner Access Now Easy) xscreensaver-gnome-4.13 Save your screen while you entertain your cat (for GNOME us xv-3.10a_3 An X11 program that displays images of various formats xvid-0.9.2,1 An opensource MPEG-4 codec, based on OpenDivx yelp-2.4.0_1 A help browser for the GNOME 2 desktop ymessenger-0.99.19.1,20020902 Yahoo! Messenger - Instant messaging client zenity-1.6 Display GNOME dialogs from the command line zip-2.3_1 Create/update ZIP files compatible with pkzip zoo-2.10.1 Manipulate archives of files in compressed form ----------------------- steve@daemon:~> uname -a FreeBSD daemon.g-e-e-k.net 4.9-RC FreeBSD 4.9-RC #10: Mon Oct 13 08:25:31 PDT 2003 root@daemon.g-e-e-k.net:/usr/obj/usr/src/sys/XEON i386 +---------------------------------------------------------------------+ |Steve Wingate |MCSE, CCNA Tue Oct 14 21:10:00 PDT 2003 +---------------------------------------------------------------------+ |FreeBSD 4.9-PRERELEASE | 9:10PM up 35 days, 13:42, 2 users, load averages: 0.00, 0.00, 0.00 +---------------------------------------------------------------------+ From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 21:24:39 2003 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 9358F16A4B3 for ; Tue, 14 Oct 2003 21:24:39 -0700 (PDT) Received: from fed1mtao07.cox.net (fed1mtao07.cox.net [68.6.19.124]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52EC043FB1 for ; Tue, 14 Oct 2003 21:24:37 -0700 (PDT) (envelope-from s.wingate@pobox.com) Received: from daemon.g-e-e-k.net ([68.105.195.160]) by fed1mtao07.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20031015042429.TUD13061.fed1mtao07.cox.net@daemon.g-e-e-k.net>; Wed, 15 Oct 2003 00:24:29 -0400 Date: Tue, 14 Oct 2003 21:23:06 -0700 (PDT) From: Steve Wingate X-X-Sender: steve@daemon.g-e-e-k.net To: Steve Wingate In-Reply-To: <20031014211406.I472@daemon.g-e-e-k.net> Message-ID: <20031014212249.J495@daemon.g-e-e-k.net> References: <20031014211406.I472@daemon.g-e-e-k.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: FreeBSD Ports Mail list Subject: Re: Abiword & resizing 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, 15 Oct 2003 04:24:39 -0000 Cancel this problem. On Tue, 14 Oct 2003, Steve Wingate wrote: > I'm using the AbiWord2-2.0.0 port on Fluxbox wm. If I use the drag corner > to increase the window size I cannot decrease the window size later on. > Even I close/reopen the app it stays at the larger size. > I just increased the window from 80x80 to 100x100 and now I can't decrease > it for anything. > > The list of installed ports > AbiWord2-2.0.0 An open-source, cross-platform WYSIWYG word processor > BitchX-1.0c19_3 "An alternative ircII color client with optional GTK/GNOME > GimpUserManual-PDF-2 The user manual for the GNU Image Manipulation Program (GIM > Hermes-1.3.3 Fast pixel formats conversion library > ImageMagick-5.5.7.11_1 Image processing tools > Mesa-3.4.2_2 A graphics library similar to SGI's OpenGL > OQTPlayer-0.5 A very very small, not functionnal, video OpenQuicktime (TM > ORBit-0.5.17_1 High-performance CORBA ORB with support for the C language > ORBit2-2.8.2 High-performance CORBA ORB with support for the C language > XFree86-4.3.0,1 X11/XFree86 core distribution (complete, using mini/meta-po > XFree86-FontServer-4.3.0_2 XFree86-4 font server > XFree86-Server-4.3.0_11 XFree86-4 X server and related programs > XFree86-VirtualFramebufferServer-4.3.0_3 XFree86-4 virtual framebuffer server > XFree86-clients-4.3.0_3 XFree86-4 client programs and related files > XFree86-documents-4.3.0 XFree86-4 documentation > XFree86-font100dpi-4.3.0 XFree86-4 bitmap 100 dpi fonts > XFree86-font75dpi-4.3.0 XFree86-4 bitmap 75 dpi fonts > XFree86-fontCyrillic-4.3.0 XFree86-4 Cyrillic fonts > XFree86-fontDefaultBitmaps-4.3.0 XFree86-4 default bitmap fonts > XFree86-fontEncodings-4.3.0 XFree86-4 font encoding files > XFree86-fontScalable-4.3.0 XFree86-4 scalable fonts > XFree86-libraries-4.3.0_6 XFree86-4 libraries and headers > Xaw3d-1.5 A 3-D Athena Widget set that looks like Motif > Xft-2.1.2 A client-sided font API for X applications > aalib-1.4.r5_1 An ascii art library > abcde-2.1.6 Front-end shell script to encode CDs in flac/mp3/ogg/speex > acme-2.4.0 Tool to make multimedia keys work on laptops > acroread-5.08 View, distribute and print PDF documents > apache-ant-1.5.4_1 Java- and XML-based build tool, conceptually similar to mak > arts-1.1.4,1 Audio system for the KDE integrated X11 desktop > artwiz-fonts-1.0_1 A set of free fonts for X11 desktops > asclock-gtk-2.1.10 New flavor of asclock (GTK version) > aspell-0.50.4 Spelling checker with better suggestion logic than ispell > at-spi-1.3.7 An Assistive Technology Service Provider Interface > aterm-0.4.2 A color vt102 terminal emulator with transparency support > atk-1.4.1 A GNOME accessibility toolkit (ATK) > autoconf-2.53_1 Automatically configure source code on many Un*x platforms > autoconf213-2.13.000227_5 Automatically configure source code on many Un*x platforms > automake-1.5,1 GNU Standards-compliant Makefile generator > automake14-1.4.5_9 GNU Standards-compliant Makefile generator (legacy version > autotrace-0.31.1_1 Convert bitmap to vector graphics > avifile-0.7.34.20030319,2 AVI player/converter with numerous codecs, including MPEG-4 > balsa2-2.0.15 A mail reader for the GNOME 2 desktop > bash-2.05b.007 The GNU Bourne Again Shell > bb-1.3.r1 High quality audio-visual demonstration for text terminal > bbconf-1.8 Configurator for the Blackbox window manager > bbkeys-0.8.5 A keygrabber for the Blackbox window manager > bbrun-1.4_1 A Run box for Blackbox > bison-1.75_1 A parser generator from FSF, (mostly) compatible with Yacc > bitstream-vera-1.10 Bitstream Vera TrueType font collection > blackbox-0.65.0 A small and fast window manager for X11R6 > bluefish-0.11.20031003 HTML editor designed for the experienced web designer > boehm-gc-6.2 Garbage collection and memory leak detection for C and C++ > bonobo-1.0.22 The component and compound document system for GNOME > boxtools-0.65.0 Style tools for the blackbox family of window managers > bugbuddy2-2.4.0 A bug reporting tool for GNOME 2 > bzip-0.21 A block-sorting file compressor > cabextract-0.6_1 A program to extract Microsoft cabinet (.CAB) files > cclient-2002d,1 Mark Crispin's C-client mail access routines > cd-discid-0.8 Backend utility to retrieve CDDB discid information > cdparanoia-3.9.8_5 A CDDA extraction tool (also known as ripper) > cdrtools-2.0.3 Cdrecord, mkisofs and several other programs to record CD-R > clean-theme-gtk-1.2.x The Clean GTK theme engine > colorize-0.3.3 A robust log colorizer > crimson-1.1.3_1 Implements the Java API for XML Processing (JAXP) > cups-base-1.1.19.0 The Common UNIX Printing System: headers, libs, & daemons > cups-pstoraster-7.07 GNU Postscript interpreter for CUPS printing to non-PS prin > curl-7.10.7 Non-interactive tool to get files from FTP, GOPHER, HTTP(S) > cvsup-without-gui-16.1h General network file distribution system optimized for CVS > cyrus-sasl-2.1.15 RFC 2222 SASL (Simple Authentication and Security Layer) > dagrab-0.3.5_1 Read audio tracks from a CD into wav sound files > db3-3.3.11,1 The Berkeley DB package, revision 3 > db4-4.0.14_1,1 The Berkeley DB package, revision 4 > db41-4.1.25_1 The Berkeley DB package, revision 4.1 > dbh-1.0.15 Disk Based Hashtables > dia-gnome-0.92p5 Diagram creation program, similar to Visio > djbfft-0.76 An extremely fast library for floating-point convolution > docbook-1.2_1 Meta-port for the different versions of the DocBook DTD > docbook-241_2 V2.4.1 of the DocBook DTD, designed for technical documenta > docbook-3.0_2 V3.0 of the DocBook DTD, designed for technical documentati > docbook-3.1_2 V3.1 of the DocBook DTD, designed for technical documentati > docbook-4.0_2 V4.0 of the DocBook DTD, designed for technical documentati > docbook-4.1_2 V4.1 of the DocBook DTD, designed for technical documentati > docbook-sk-4.1.2 XML version of the DocBook DTD version controlled for Scrol > docbook-xml-4.2_1 XML version of the DocBook DTD > docbook-xsl-1.62.3 XSL DocBook stylesheets > easytag-0.30 Tag editor for MP3 and OGG files > eel2-2.4.0 Generally useful classes and extensions to GNOME > eog2-2.4.0 The Eye Of Gnome image viewer > epiphany-1.0.2 An extremely lightweight and simple web browser for GNOME 2 > esound-0.2.32_1 A sound library for enlightenment package > eterm-0.9.2 X11 terminal emulator based on rxvt/xterm > everybuddy-esound-0.4.3_2 A "chat" program that combines AIM, ICQ, and Yahoo! Chat in > evolution-1.4.5 An integrated mail, calendar and address book distributed s > expat-1.95.6_1 XML 1.0 parser written in C > ezm3-1.1 Easier, more portable Modula-3 distribution for building CV > fam-2.6.9_3 A file alteration monitor > fastest_cvsup-0.2.8 Finds fastest CVSup server > fbsd-icons-1.0 Collection of icons related to the FreeBSD project > ffmpeg-0.4.5_6 Hyper fast realtime audio/video encoder/converter, streamin > figlet-2.2.1 SysV banner-like program prints strings in large fancy ASCI > figlet-fonts-20020913 Assorted fonts for the figlet(6) program > fileroller-2.4.0.1,1 An archive manager for zip files, tar, etc > flac-1.1.0_2 Free lossless audio codec > flashpluginwrapper-0.20021113 A wrapper allowing use of linux-flashplugin with native moz > fluxbox-0.1.14_2 A small and fast window manager based on BlackBox > fluxconf-0.9.4 Fluxconf is a configuration program for the fluxbox window > fluxter-0.1.0 Dekstop pager for the Fluxbox Slit > fontconfig-2.2.90_3 An XML-based font configuration API for X Windows > freefonts-0.10_2 A collection of ATM fonts (not all free) from the CICA arch > freetype-1.3.1_2 A free and portable TrueType font rendering engine > freetype2-2.1.5_1 A free and portable TrueType font rendering engine > fribidi-0.10.4_1 A Free Implementation of the Unicode Bidirectional Algorith > gail-1.4.1 An implementation of the ATK interfaces for GTK+ widgets > gaim-0.71_4 Gtk+-2.0 open-source 'clone' of AOL's Instant Messenger cli > gal-0.24 A collection of widgets taken from GNOME gnumeric and evolu > gal2-1.99.10 A collection of widgets taken from GNOME 2 gnumeric > galeon2-1.3.9_1 A GNOME 2 Web browser based on gecko (the Mozilla rendering > gcalctool-4.3.15 A GNOME 2 calculator tool based on the old calctool for Ope > gcc-3.1.1_20020909 GNU Compiler Collection 3.1 (inprogress version) > gcc-3.2.3 GNU Compiler Collection 3.2.3 > gcc-3.3.1_20030804 GNU Compiler Collection 3.3 > gconf-1.0.9_6 A configuration database system for GNOME > gconf-editor-2.4.0,1 A gconf database editor for the GNOME 2 environment > gconf2-2.4.0.1 A configuration database system for GNOME > gdbm-1.8.3 The GNU database manager > gdeskcal-0.55 A calendar for the gnome2 desktop with smooth alpha-blendin > gdk-pixbuf-0.22.0 A graphic library for GTK+ > gdm2-2.4.4.3_1 GNOME 2 version of xdm display manager > gedit2-2.4.0 A small but powerful text editor for Gnome 2 Desktop Enviro > getmail-3.2.0 POP3 mail retriever with reliable Maildir and command deliv > gettext-0.12.1 GNU gettext package > gftp-gnome-2.0.15 A free multithreaded GTK-based GUI ftp and sftp client > ggv2-2.4.0.2 GNOME 2 ghostscript viewer > ghostscript-gnu-7.07_4 GNU Postscript interpreter > gimp-gnome-1.3.21,1 A GNU Image Manipulation Program (unstable development vers > gimp-print-4.2.5_1 GIMP Print Printer Driver > gkrellm-2.1.21 A GTK based system monitor > glade2-2.0.0 A user interface builder for GTK+/GNOME > gle-3.0.3 A GL Tubing and Extrusion Library > glib-1.2.10_10 Some useful routines of C programming (previous stable vers > glib-2.2.3 Some useful routines of C programming (current stable versi > glibwww-0.2_1 A library for people wanting to use libwww with gtk/gnome > gmake-3.80_1 GNU version of 'make' utility > gnet-glib2-1.1.9_1 A simple network library built upon Glib-2 > gnet2-2.0.4 A simple network library built upon Glib-2 > gnome-icon-theme-1.0.9 A collection of icons for the GNOME 2 desktop > gnome-industrial-theme-0.2.29 Slick GNOME2 theme from Ximian > gnome-pkgview-1.0.2 Displays the version of GNOME components installed > gnome-themes-2.4.0 A collection of themes and icons for GNOME 2 designed for a > gnome-themes-extras-0.4 More themes for the GNOME 2 desktop environment > gnome2-2.4.0 The "meta-port" for the GNOME 2 integrated X11 desktop > gnomeapplets2-2.4.1_1 Applets components for the Gnome 2 Desktop Environment > gnomeaudio2-2.0.0 Sound files for use with GNOME 2 > gnomebasic-0.0.20 Provide Visual Basic compatible functionality for GNOME, es > gnomecanvas-0.22.0 A graphics library for GNOME > gnomecontrolcenter-1.4.0.5_1 Control center for GNOME project > gnomecontrolcenter2-2.4.0 Control center for GNOME 2 project > gnomedb-0.2.96_1 Provide uniform access to data sources for the GNOME enviro > gnomedesktop-2.4.0 Additional UI API for GNOME 2 > gnomegames2-2.4.1 The game applications package for the Gnome 2 Desktop Envir > gnomehier-1.0_9 An utility port, installing hierarchy of common GNOME direc > gnomelibs-1.4.2_1 Libraries for GNOME, a GNU desktop environment > gnomemag-0.10.3 GNOME screen magnifier > gnomemedia2-2.4.0_1 Multimedia applications for the GNOME 2 desktop > gnomemeeting-0.98.5 GNOME H323 Video Conferencing program, similar to NetMeetin > gnomemimedata-2.4.0 A MIME and Application database for GNOME > gnomepanel-2.4.0_2 Panel component for the GNOME 2 Desktop > gnomepilot2-2.0.10 3Com PalmPilot conduit system for GNOME 2 > gnomeprint-0.37 Gnome print support library > gnomesession-2.4.0 Session component for the GNOME 2 desktop > gnomespeech-0.2.7 GNOME text-to-speech API > gnomespell-1.0.5 A GNOME/Bonobo component for spell checking > gnomesystemmonitor-2.4.0 GNOME 2 system monitor program > gnometerminal-2.4.0.1 Terminal component for the GNOME 2 Desktop > gnomeuserdocs2-2.4.1 GNOME 2 users guide > gnomeutils2-2.4.0,1 GNOME 2 support utilities > gnomevfs-1.0.5_4 GNOME Virtual File System > gnomevfs2-2.4.0 GNOME Virtual File System > gnopernicus-0.7.1 Collection of accessibility apps for GNOME 2 > gnumeric2-1.1.20_1 The GNOME 2 spreadsheet > gnupg-1.2.3_1 The GNU Privacy Guard > gob-1.0.12 A preprocessor for making GTK+ objects with inline C > gob2-2.0.6 A preprocessor for making GObjects with inline C > gocr-0.37 GOCR/JOCR is an OCR (Optical Character Recognition) program > gok-0.8.3 GNOME On-Screen Keyboard (GOK) > gpdf-0.110 GNOME version of xpdf > gqmpeg-gnome-0.19.0 Another gtk-based MP3 frontend > gqview-1.2.2_1 Another gtk-based graphic file viewer > grc-1.0.6 Generic Colouriser > gstreamer-0.6.3 Development framework for creating media applications > gstreamer-plugins-0.6.3_1 GStreamer written collection of plugins handling several me > gtk-1.2.10_10 Gimp Toolkit for X11 GUI (previous stable version) > gtk-2.2.4_1 Gimp Toolkit for X11 GUI (current stable version) > gtk-Mac2-theme-200003050858 GTK+ engine theme based on the look of MacOS > gtk-aqualightblue-theme-0.1 A port of the GTK+ AquaLightBlue theme to GTK+ 2.0 > gtk-bluecurve-theme-0.73 Bluecurve unified-look theme for GTK1 and GTK2 from RedHat > gtk-engines-0.12_2 Theme engine for gtk+ toolkits > gtk-engines2-2.2.0 Theme engine for the gtk+-2.0 toolkit > gtk-flat-theme2-0.1 A port of the Flat GTK+ engine to GTK+ 2.0 > gtk-qnxtheme-0.1_1 QNX-inspired theme for GTK1 and GTK2 > gtk-xfce-engine-2.1.6 An XFCE engine for GTK 2.0 > gtkglarea-1.99.0_2 An OpenGL widget for the GTK+2 GUI toolkit > gtkhtml-1.1.10_2 Lightweight HTML rendering/printing/editing engine > gtkhtml3-3.0.9 Lightweight HTML rendering/printing/editing engine > gtksourceview-0.6.0 A text widget that adds syntax highlighting to the GtkTextV > gtkspell2-2.0.4 A GTK+ 2 spell checking component > gucharmap-gnome-1.0.0 A Unicode/ISO10646 character map and font viewer > guile-1.6.4_2 GNU Ubiquitous Intelligent Language for Extension > guppi-0.40.3_3 A ploting program for GNOME > gv-3.5.8_3 A PostScript and PDF previewer > hdf-4.1r5 Hierarchical Data Format library (from NCSA) > help2man-1.29 Automatically generating simple manual pages from program o > id3lib-3.8.2 Library for manipulating ID3v1/v1.1 and ID3v2 tags > id3v2-0.1.9_1 Command line id3v2 tag editor > imake-4.3.0_1 Imake and other utilities from XFree86 > imlib-1.9.14_1 A graphic library for enlightenment package > imlib2-1.0.6_1 The next generation graphic library for enlightenment packa > intltool-0.27.2 Xml internationalization support for GNOME, and others > ipcalc-0.35_1 IP Calculator > iso8879-1986_2 Character entity sets from ISO 8879:1986 (SGML) > ispell-3.2.06_3 An interactive spelling checker for multiple languages > jabber-1.4.2 Online presence and instant messaging server > jade-1.2.1_5 An object-oriented SGML/XML parser toolkit and DSSSL engine > jasper-1.700.2 An implementation of the codec specified in the JPEG-2000 s > javavmwrapper-1.4 Wrapper script for various Java Virtual Machines > jbigkit-1.5 Lossless compression for bi-level images such as scanned pa > jdk-1.3.1p8_2 Java Development Kit 1.3 > jdk-1.4.1p3_3 Java Development Kit 1.4.1 > jpeg-6b_1 IJG's jpeg compression utilities > kde-3.1.4 The "meta-port" for KDE > kdeaddons-3.1.4 Additional plugins and scripts for some KDE applications > kdeadmin-3.1.4 KDE applications related to system administration > kdeartwork-3.1.4 Additional themes, sounds, wallpapers and window styles for > kdebase-3.1.4 This package provides the basic applications for the KDE sy > kdeedu-3.1.4 Collection of entertaining, educational programs for KDE > kdegames-3.1.4 Games for the KDE integrated X11 desktop > kdegraphics-3.1.4 Graphics utilities for the KDE3 integrated X11 desktop > kdelibs-3.1.4 This is the base set of libraries needed by KDE programs > kdemultimedia-3.1.4 Multimedia utilities for the KDE integrated X11 desktop > kdenetwork-3.1.4 Network-related programs and modules for KDE > kdepim-3.1.4 Personal Information Management tools for KDE > kdesdk-3.1.4 KDE Software Development Kit > kdetoys-3.1.4 Small applications for KDE > kdeutils-3.1.4 Utilities for the KDE integrated X11 desktop > kdevelop-2.1.5 Powerful IDE for developing KDE/Qt-based apps > koffice-1.2.1_1,1 Office Suite for KDE3 > lame-3.93.1 ISO code based fast MP3 encoder kit > lcms-1.09,1 Light Color Management System -- a color management library > lha-1.14i_2 Archive files using LZSS and Huffman compression (.lzh file > libIDL-0.8.2 A library for creating trees of CORBA Interface Definition > liba52-0.7.4 A free library for decoding ATSC A/52 streams, aka AC-3 > libao-esound-0.8.4_1 Portable audio output library > libart_lgpl2-2.3.16 Library for high-performance 2D graphics > libast-0.5 A library of assorted spiffy things > libaudiofile-0.2.4 A sound library for SGI audio file > libbonobo-2.4.1 A component and compound document system for GNOME2 > libbonoboui-2.4.0 GUI frontend to the libbonobo component of GNOME 2 > libcapplet-1.4.0.5_1 A library for writing custom applets for GNOME Control Cent > libdivxdecore-0.4.7 OpenDivX decoding engine from Project Mayo > libdvdcss-1.2.8 Portable abstraction library for DVD decryption > libdvdnav-0.1.3 The library for the xine-dvdnav plugin > libdvdread-0.9.4 This is needed by ogle, which is a DVD player that supports > libesmtp-1.0_1,1 A library for posting electronic mail > libexif-0.5.12_1 Library to read digital camera file meta-data > libfpx-1.2.0.9 Library routines for working with Flashpix images > libgail-gnome-1.0.2_2 An implementation of the ATK interfaces for GNOME widgets > libgda-0.2.96_1 Provides uniform access to different kinds of data sources > libgda2-0.91.0 Provides uniform access to different kinds of data sources > libghttp-1.0.9 GNOME http client library > libglade-0.17_2 GNOME glade library > libglade2-2.0.1_1 GNOME glade library > libgnome-2.4.0 Libraries for GNOME, a GNU desktop environment > libgnomecanvas-2.4.0 A graphics library for GNOME > libgnomedb-0.91.0 Library components for the GNOME database frontend > libgnomeprint-2.4.0 Gnome print support library > libgnomeprintui-2.4.0 Gnome print support library > libgnomeui-2.4.0.1_1 Libraries for the GNOME GUI, a GNU desktop environment > libgnugetopt-1.2 GNU getopt library > libgsf-1.8.2 An extensible i/o abstraction for dealing with structured f > libgtkhtml-2.4.1 Lightweight HTML rendering/printing/editing engine > libgtop2-2.0.5 GNOME 2 top library > libiconv-1.9.1_1 A character set conversion library > libijs-0.34 C library that supports plugin printer driver for Ghostscri > libltdl-1.5 System independent dlopen wrapper > libmal-0.31 A library encapsulating malsync > libmikmod-esound-3.1.10_1 MikMod Sound Library > libmng-1.0.5_1 Multiple-image Network Graphics (MNG) reference library > libmpeg2-0.3.1_1 A free library for decoding mpeg-2 and mpeg-1 video streams > libmusicbrainz-2.0.2_1 2nd generation incarnation of the CD Index - audio metadata > libogg-1.0_1,3 Ogg bitstream library > libole2-0.2.4 Support library for OLE functions (MS-Excel) for gnumeric > librep-0.16.2_2 An Emacs Lisp like runtime library > librsvg2-2.4.0 Library for parsing and rendering SVG vector-graphic files > libsidplay-1.36.57 A Commodore SID-chip emulator library to play SID music fil > libsoup-1.99.26 A SOAP (Simple Object Access Protocol) implementation in C > libtool-1.3.5_1 Generic shared library support script > libtool-1.4.3_2 Generic shared library support script > libungif-4.1.0b1_1 Tools and library routines for working with GIF images > libunicode-0.4_3 A library for manipulating Unicode characters and strings > libusb-0.1.7 Library giving userland programs access to USB devices > libvorbis-1.0_1,3 Audio compression codec library > libwmf-0.2.8 Tools and library for converting Microsoft WMF (windows met > libwnck-2.4.0.1 Library used for writing pagers and taskslists > libwww-5.4.0 The W3C Reference Library > libxfce4gui-4.0.0 XFce 4 widget library required by xfce4 and xfwm4 > libxfce4mcs-4.0.0 XFce 4 settings management library used by most XFce 4 modu > libxfce4util-4.0.0 XFce 4 library with non-graphical helper functions > libxine-1.0.r0_2 Libraries for xine multimedia player > libxml-1.8.17_1 Xml parser library for GNOME > libxml2-2.5.11 Xml parser library for GNOME > libxslt-1.0.33 The XSLT C library for GNOME > libzvt-2.0.1_6 Library components for Zed's Virtual Terminal > linc-1.0.3 A library for writing networked servers & clients > linux-divx4linux-5.0.20030428 Linux binary release of DivX (TM) Codec > linux-divxplayer-0.2.0 DivX(TM) Video Player for Linux from DivX.com > linux-esound-0.2.22_1 RPM of esound > linux-flashplugin-5.0r51 The official Macromedia Flash Player for Linux Netscape and > linux-flashplugin-6.0r79 The official Macromedia Flash Player for Linux Mozilla and > linux-gtk-1.2_2 RPM of the Gtk lib > linux-libaudiofile-0.1.11_2 RPM of audiofile > linux-openmotif-2.1.30 Motif toolkit Linux libraries > linux-opera-7.11.20030515_2 A blazingly fast, full-featured, standards-compliant browse > linux-png-1.0.14_2 RPM of the PNG lib > linux-realplayer-8.cs2_4 Linux RealPlayer 8.0 from RealNetworks > linux-sun-jdk-1.3.1.08 Sun Java Development Kit 1.3 for Linux > linux-sun-jdk-1.4.2.01_3 Sun Java Development Kit 1.4 for Linux > linux_base-7.1_5 The base set of packages needed in Linux mode > linuxdoc-1.1_1 The Linuxdoc SGML DTD > lynx-2.8.5d16_3 A non-graphical, text-based World-Wide Web client > lzo-1.08_1 Portable speedy, lossless data compression library > lzop-1.01 Fast file compressor similar to gzip, using the LZO library > m4-1.4_1 GNU m4 > mad-esound-0.14.2b_3 High-quality MPEG audio decoder > man2html-3.0.1_1 Convert nroff(1) man pages to HTML > metacity-2.6.2 A window manager for the adult in you > metatheme2-0.9.7_1 An utility for managing "theme sets" that accomodate gtk, w > ming-0.2a_1 LGPL'ed Flash 4/5 movie output library with many languages > mkcatalog-1.1 A maintainance utility for sgml catalog files > mkisofs-2.0.3 Create iso9660/Rock Ridge/Joliet filesystems > mmencode-2.7 Translate to and from mail-oriented encoding formats > mosfet-liquid-0.9.6_1 A High Performance Liquid KDE style engine > mozilla-1.4.1,2 The open source, standards compliant web browser > mozilla-firebird-0.6.1_1 Mozilla Firebird is the next generation browser from the mo > mozilla-gtk2-1.4.1 The open source, standards compliant web browser > mozilla-headers-1.4.1,2 Header files for mozilla communicator web-surfboard > mp3blaster-3.1.3 MP3 console ncurses-based player > mpg123-esound-0.59r_9 Command-line player for mpeg layer 1, 2 and 3 audio > mpg321-0.2.10_2 A free command-line mp3 player, compatible with mpg123 > mplayer-fonts-0.50 A font pack for the mplayer OSD and SUB > mplayer-gtk-esound-0.92.0_2 High performance media player/encoder supporting many forma > mplayer-skins-1.0.5_1 Skins for MPlayer's Graphical User Interface (GUI) > mplayerplug-in-0.95_1 A Mozilla plugin for the MPlayer media player > mutt-1.4.1_4 The Mongrel of Mail User Agents (part Elm, Pine, Mush, mh, > nasm-0.98.35,1 General-purpose multi-platform x86 assembler > nautilus-cd-burner-0.5.3_3 CD burner view for Nautilus > nautilus-media-0.3.3.1 GStreamer-based multimedia views for Nautilus > nautilus2-2.4.0_2 GNOME file manager and graphical shell developed by Eazel > ncftp1-1.9.5 FTP replacement with advanced user interface > net-rhythmbox-0.4.8_2 Audio player for the Gnome 2 desktop environment > netscape7-7.1 Linux Netscape suite > nmap-3.48_1 Port scanning utility for large networks > nmapfe-3.48_1 GUI frontend for the nmap scanning utility > normalize-0.7.5_2 A tool for adjusting the volume of wave/MP3 files to a stan > nspr-4.3_2 A platform-neutral API for system level and libc like funct > nss-3.8 A set of libraries to support development of security-enabl > ntp-4.1.1c.r3 The Network Time Protocol Distribution > numlockx-1.0 This little thingy allows you to start X with NumLock turne > oaf-0.6.10_1 Object Activation Framework for GNOME > ogle-0.9.1 Open DVD player that supports DVD menus > ogle-gnome-0.9.1_2 An add-on graphical user interface for Ogle > open-motif-2.2.2_1 Motif X11 Toolkit (industry standard GUI (IEEE 1295)) > openldap-client-2.0.27 Open source LDAP client implementation > openldap-server-2.1.22_2 Open source LDAP server implementation > openldap20-2.0.27 Open source LDAP client and server software > openoffice-1.0.3_2 Integrated wordprocessor/dbase/spreadheet/drawing/chart/bro > openoffice-1.1.0_1 Integrated wordprocessor/dbase/spreadheet/drawing/chart/bro > openquicktime-1.0 Portable library for handling Apple's QuickTime(TM) files > p5-Authen-SASL-2.04 Perl5 module for SASL authentication > p5-Digest-HMAC-1.01 Perl5 interface to HMAC Message-Digest Algorithms > p5-Digest-MD5-2.27 Perl5 interface to the MD5 algorithm > p5-Digest-Nilsimsa-0.06 Perl version of Nilsimsa code > p5-Digest-SHA1-2.05 Perl interface to the SHA-1 Algorithm > p5-File-Spec-0.86 A Perl module for portably manipulating file specifications > p5-HTML-Parser-3.32 Perl5 module for parse HTML tag > p5-HTML-Tagset-3.03 Some useful data table in parsing HTML > p5-MIME-Base64-2.21 Perl5 module for Base64 and Quoted-Printable encodings > p5-Mail-SpamAssassin-2.60 A highly efficient mail filter for identifying spam > p5-Mail-Tools-1.60 Perl5 modules for dealing with Internet e-mail messages > p5-Net-1.17,1 Perl5 modules to access and use network protocols > p5-Net-DNS-0.41 Perl5 interface to the DNS resolver, and dymanic updates > p5-PodParser-1.24 Modules to work with POD (Plain Old Documentation) > p5-Term-ANSIColor-1.07 Color screen output using ANSI escape sequences > p5-Test-Harness-2.30 Run perl standard test scripts with statistics > p5-Test-Simple-0.47_1 Basic utilities for writing tests in perl > p5-Time-HiRes-1.51,1 A perl5 module implementing High resolution time, sleep, an > p5-URI-1.25 Perl5 interface to Uniform Resource Identifier (URI) refere > p5-type1inst-0.6.1 A script that helps install Postscript fonts in X Window Sy > pan2-0.14.2 Threaded GNOME 2 newsreader based on Agent for Windows > pango-1.2.5 An open-source framework for the layout and rendering of i1 > pcre-4.4 Perl Compatible Regular Expressions library > perl-5.6.1_14 Practical Extraction and Report Language > pgp-5.0i_1 Public-Key encryption for the masses > pgpgpg-0.13 Wrapper for GnuPG to simulate PGP 2.6.x > pilot-link-0.11.7_2 PalmPilot communications utilities (backup/restore/install/ > pine-4.58 PINE(tm) -- a Program for Internet News & Email > pkgconfig-0.15.0 A utility used to retrieve information about installed libr > plotutils-2.4.1 A plotting library and toolkit > png-1.2.5_2 Library for manipulating PNG images > popt-1.6.4_1 A getopt(3) like library with a number of enhancements, fro > portupgrade-20030723 FreeBSD ports/packages administration and management tool s > procmail-3.22_3 A local mail delivery agent > psiconv-0.8.3_1 A conversion utility to convert Psion 5(MX) files into othe > pstoedit-3.33_1 Convert PostScript to other vector graphic formats > py-gnome-2.0.0 A set of Python bindings for GNOME 2 > py23-expat-2.3.2_2 Python interface to the Expat XML parser > py23-gtk-2.0.0 A set of Python bindings for GTK > py23-numeric-23.0 The Numeric Extension to Python > py23-orbit-2.0.0 Python bindings for ORBit2 > py23-xml-0.8.3 The Python XML package, including parser, SAX, DOM, and Exp > python-2.3.2 An interpreted object-oriented programming language > qt-3.2.1 A C++ X GUI toolkit > quanta-3.1.4,2 Comprehensive html/website development environment > rar-3.20,1 File archiver (binary port) > razor-agents-2.36_1 A distributed, collaborative, spam detection and filtering > rc_subr-1.16 Common startup and shutdown subroutines used by scripts > rdesktop-1.2.0 RDP client for Windows NT Terminal Server > rep-gtk2-gnome-0.17_2,1 GTK+-2 binding for rep Lisp interpreter > rhythmbox-0.5.3 Audio player for the Gnome 2 desktop environment > rpm-3.0.6_8 The Red Hat Package Manager > ruby-1.6.8.2003.04.19 An object-oriented interpreted scripting language > ruby-bdb1-0.2.1 Ruby interface to Berkeley DB revision 1.8x with full featu > ruby-rdoc-0.9.0 Documentation from Ruby source files > ruby-shim-ruby18-1.8.0.p2.2003.04.19_1 A set of Ruby modules to provide Ruby 1.8 functionalities > rxvt-2.6.4_1 A low memory usage xterm replacement that supports color > samba-2.2.8a A free SMB and CIFS client and server for UNIX > samba-libsmbclient-3.0.0 The shared lib from the samba packges > sane-backends-1.0.12_3 API for access to scanners, digitals camera, frame grabbers > screen-4.0.1_1 A multi-screen window manager > scrollkeeper-0.3.12_2,1 An Open Document Cataloging Project > sdl-1.2.5_2 Cross-platform multi-media development API (developm. vers. > sdocbook-xml-4.1.2.5_1 "Simplified" DocBook XML DTD > sgmlformat-1.7_2 Generates groff and HTML from linuxdoc and docbook SGML doc > sharefonts-0.10 A collection of shareware ATM fonts from the CICA archives > sidplay-1.0.9 A Commodore SID-chip emulator that plays SID music files > soup-0.7.11 A SOAP (Simple Object Access Protocol) implementation in C > sox-12.17.4 SOund eXchange - universal sound sample translator > speex-1.0.2,1 An open-source patent-free voice codec > startup-notification-0.5_1 Library that supports startup notification spec from freede > sudo-1.6.7.5 Allow others to run commands as root > svgalib-1.4.3_1 A low level console graphics library > sylpheed-0.9.6 A lightweight, featureful, and fast GTK+ based e-mail clien > tcl-8.3.5_2 Tool Command Language > teTeX-2.0.2_2 Thomas Esser's distribution of TeX & friends > tiff-3.6.0 Tools and library routines for working with TIFF images > timidity++-esound-2.11.3_1 Software MIDI player > tk-8.3.5_2 Graphical toolkit for TCL > totem-0.99.5 A Xine-based video player for the Gnome 2 Desktop > tsclient-0.124 A GNOME 2 frontend for rdesktop > ttmkfdir-0.0_1 Create fonts.scale file for use with TrueType font server > unix2dos-1.3 Translate ASCII files from DOS (cr/lf) to UNIX (lf) > unzip-5.50_2 List, test and extract compressed files in a ZIP archive > urwfonts-1.0 Another font package for X > uulib-0.5.18 A library for uu/xx/Base64/BinHex/yEnc de-/encoding > vilearn-1.0 An interactive tutorial for the vi editor > vim-6.2.72 Vi "workalike", with many additional features > vnc-3.3.7_1 Display X and Win32 desktops on remote X/Win32/Java display > vorbis-tools-1.0_4,3 Play, encode, and manage Ogg Vorbis files > vte-0.11.10_1 Terminal widget with improved accessibility and I18N suppor > w3m-0.4.1 A pager/text-based WWW browser > wavplay-1.4 A wav player and recorder > webfonts-0.21_1 TrueType core fonts for the Web > weblint-1.020 HTML validator and sanity checker > wget-1.8.2_4 Retrieve files from the Net via HTTP and FTP > win32-codecs-2.0.90,1 Huge compilation of Win32 binary codecs, including MPEG-4(D > windowmaker-0.80.2_1 GNUStep-compliant NeXTStep window manager clone > wmavgload-0.7.0 Another WindowMaker load gauge > wmcpuload-1.0.1 An "lcd" dockapp for windowmaker, which displays the curren > wmfire-0.0.3.9 Window Maker dock app showing load average as a flame > wmicons-1.0 Icons mainly for use in Window Maker > wmmatrix-0.2 A DockApp that runs a version of the xmatrix screenhack > wrapper-1.0_3 Wrapper for XFree86-4 server > wterm-6.2.9 A color vt102 terminal emulator with transparency support > x11amp-0.9.b1.1 X11-based MP3 player with nice graphical interface > xanim-2.92.0 Play most popular animation formats and show pictures > xcdroast-0.98.a.14 Another X11 frontend to mkisofs/cdrecord > xchat2-2.0.5 An X11 IRC client using the GTK+ 2 toolkit > xfce-4.0.0 The "meta-port" for the XFce 4 desktop environment > xfce4-desktop-4.0.0 XFce 4 desktop background manager and root menu > xfce4-fm-4.0.0 XFce 4 file manager > xfce4-fm-icons-4.0.0 XFce 4 icon themes for the xffm file manager > xfce4-iconbox-4.0.0 XFce 4 icon box, an alternative taskbar > xfce4-mcs-manager-4.0.0 XFce 4 settings manager > xfce4-mcs-plugins-4.0.0 XFce 4 settings manager plugins > xfce4-mixer-4.0.0 XFce 4 volume mixer module for xfce4-panel > xfce4-panel-4.0.0 XFce 4 panel module > xfce4-panel-themes-4.0.0 Icon themes for the XFce 4 panel > xfce4-print-4.0.0 XFce 4 graphical frontend for printing > xfce4-systray-4.0.0 XFce 4 system tray module for xfce4-panel > xfce4-toys-4.0.0 Toys for the XFce 4 panel > xfce4-utils-4.0.0 XFce 4 essential utilities and scripts > xfce4-wm-4.0.0 XFce 4 window manager > xfce4-wm-themes-4.0.0 XFce 4 window decoration themes for xfwm4 > xine-0.9.22_1 An X11 multimedia player > xmbmon-203 X/tty motherboard monitor for LM78/79, W8378x, AS99127F and > xmlcatmgr-0.2_1 SGML/XML catalog manager > xmms-esound-1.2.8_1 X Multimedia System --- An audio player with a Winamp GUI > xmms-goom-1.8.1 A cool XMMS visualization > xmms-jess-2.9.1 A XMMS visualization plugin that uses SDL > xmms-osssurround-0.1 OSSSuround adds Surround Sound capabilities to XMMS > xmovie-1.9.8.1 A movie player for AVI, MPEG-2/4 and MOV movies > xmp-esound-2.0.4_1 A player for many different Amiga and PC module formats > xmps-0.2.0 X MPEG Player System - a media player with a very nice GUI > xmps-opendivx-plugin-0.0.1_2 xmps plugin using OpenDivX decoding engine from Project May > xpostit-3.3.1 PostIt (R) messages onto your X11 screen > xsane-0.91 Gtk-based X11 frontend for SANE (Scanner Access Now Easy) > xscreensaver-gnome-4.13 Save your screen while you entertain your cat (for GNOME us > xv-3.10a_3 An X11 program that displays images of various formats > xvid-0.9.2,1 An opensource MPEG-4 codec, based on OpenDivx > yelp-2.4.0_1 A help browser for the GNOME 2 desktop > ymessenger-0.99.19.1,20020902 Yahoo! Messenger - Instant messaging client > zenity-1.6 Display GNOME dialogs from the command line > zip-2.3_1 Create/update ZIP files compatible with pkzip > zoo-2.10.1 Manipulate archives of files in compressed form > > ----------------------- > steve@daemon:~> uname -a > FreeBSD daemon.g-e-e-k.net 4.9-RC FreeBSD 4.9-RC #10: Mon Oct 13 08:25:31 > PDT 2003 root@daemon.g-e-e-k.net:/usr/obj/usr/src/sys/XEON i386 > > > +---------------------------------------------------------------------+ > |Steve Wingate > |MCSE, CCNA Tue Oct 14 21:10:00 PDT 2003 > +---------------------------------------------------------------------+ > |FreeBSD 4.9-PRERELEASE > | 9:10PM up 35 days, 13:42, 2 users, load averages: 0.00, 0.00, 0.00 > +---------------------------------------------------------------------+ > +---------------------------------------------------------------------+ |Steve Wingate |MCSE, CCNA Tue Oct 14 21:20:00 PDT 2003 +---------------------------------------------------------------------+ |FreeBSD 4.9-PRERELEASE | 9:20PM up 35 days, 13:52, 2 users, load averages: 0.01, 0.00, 0.00 +---------------------------------------------------------------------+ From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 21:33:40 2003 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 2C84316A4B3 for ; Tue, 14 Oct 2003 21:33:40 -0700 (PDT) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 9E9BC43FA3 for ; Tue, 14 Oct 2003 21:33:37 -0700 (PDT) (envelope-from adamw@magnesium.net) Received: (qmail 33876 invoked by uid 1252); 15 Oct 2003 04:33:37 -0000 Date: 15 Oct 2003 00:33:37 -0400 Date: Wed, 15 Oct 2003 00:33:37 -0400 From: Adam Weinberger To: Steve Wingate Message-ID: <20031015043337.GY96543@toxic.magnesium.net> References: <20031014211406.I472@daemon.g-e-e-k.net> <20031014212249.J495@daemon.g-e-e-k.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031014212249.J495@daemon.g-e-e-k.net> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: FreeBSD Ports Mail list Subject: Re: Abiword & resizing 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, 15 Oct 2003 04:33:40 -0000 Wait, you have a fix for this? What is it? # Adam >> (10.15.2003 @ 0023 PST): Steve Wingate said, in 36K: << > Cancel this problem. > > > On Tue, 14 Oct 2003, Steve Wingate wrote: > > > I'm using the AbiWord2-2.0.0 port on Fluxbox wm. If I use the drag corner > > to increase the window size I cannot decrease the window size later on. > > Even I close/reopen the app it stays at the larger size. > > I just increased the window from 80x80 to 100x100 and now I can't decrease > > it for anything. > > > > The list of installed ports > > AbiWord2-2.0.0 An open-source, cross-platform WYSIWYG word processor > > BitchX-1.0c19_3 "An alternative ircII color client with optional GTK/GNOME > > GimpUserManual-PDF-2 The user manual for the GNU Image Manipulation Program (GIM > > Hermes-1.3.3 Fast pixel formats conversion library > > ImageMagick-5.5.7.11_1 Image processing tools > > Mesa-3.4.2_2 A graphics library similar to SGI's OpenGL > > OQTPlayer-0.5 A very very small, not functionnal, video OpenQuicktime (TM > > ORBit-0.5.17_1 High-performance CORBA ORB with support for the C language > > ORBit2-2.8.2 High-performance CORBA ORB with support for the C language > > XFree86-4.3.0,1 X11/XFree86 core distribution (complete, using mini/meta-po > > XFree86-FontServer-4.3.0_2 XFree86-4 font server > > XFree86-Server-4.3.0_11 XFree86-4 X server and related programs > > XFree86-VirtualFramebufferServer-4.3.0_3 XFree86-4 virtual framebuffer server > > XFree86-clients-4.3.0_3 XFree86-4 client programs and related files > > XFree86-documents-4.3.0 XFree86-4 documentation > > XFree86-font100dpi-4.3.0 XFree86-4 bitmap 100 dpi fonts > > XFree86-font75dpi-4.3.0 XFree86-4 bitmap 75 dpi fonts > > XFree86-fontCyrillic-4.3.0 XFree86-4 Cyrillic fonts > > XFree86-fontDefaultBitmaps-4.3.0 XFree86-4 default bitmap fonts > > XFree86-fontEncodings-4.3.0 XFree86-4 font encoding files > > XFree86-fontScalable-4.3.0 XFree86-4 scalable fonts > > XFree86-libraries-4.3.0_6 XFree86-4 libraries and headers > > Xaw3d-1.5 A 3-D Athena Widget set that looks like Motif > > Xft-2.1.2 A client-sided font API for X applications > > aalib-1.4.r5_1 An ascii art library > > abcde-2.1.6 Front-end shell script to encode CDs in flac/mp3/ogg/speex > > acme-2.4.0 Tool to make multimedia keys work on laptops > > acroread-5.08 View, distribute and print PDF documents > > apache-ant-1.5.4_1 Java- and XML-based build tool, conceptually similar to mak > > arts-1.1.4,1 Audio system for the KDE integrated X11 desktop > > artwiz-fonts-1.0_1 A set of free fonts for X11 desktops > > asclock-gtk-2.1.10 New flavor of asclock (GTK version) > > aspell-0.50.4 Spelling checker with better suggestion logic than ispell > > at-spi-1.3.7 An Assistive Technology Service Provider Interface > > aterm-0.4.2 A color vt102 terminal emulator with transparency support > > atk-1.4.1 A GNOME accessibility toolkit (ATK) > > autoconf-2.53_1 Automatically configure source code on many Un*x platforms > > autoconf213-2.13.000227_5 Automatically configure source code on many Un*x platforms > > automake-1.5,1 GNU Standards-compliant Makefile generator > > automake14-1.4.5_9 GNU Standards-compliant Makefile generator (legacy version > > autotrace-0.31.1_1 Convert bitmap to vector graphics > > avifile-0.7.34.20030319,2 AVI player/converter with numerous codecs, including MPEG-4 > > balsa2-2.0.15 A mail reader for the GNOME 2 desktop > > bash-2.05b.007 The GNU Bourne Again Shell > > bb-1.3.r1 High quality audio-visual demonstration for text terminal > > bbconf-1.8 Configurator for the Blackbox window manager > > bbkeys-0.8.5 A keygrabber for the Blackbox window manager > > bbrun-1.4_1 A Run box for Blackbox > > bison-1.75_1 A parser generator from FSF, (mostly) compatible with Yacc > > bitstream-vera-1.10 Bitstream Vera TrueType font collection > > blackbox-0.65.0 A small and fast window manager for X11R6 > > bluefish-0.11.20031003 HTML editor designed for the experienced web designer > > boehm-gc-6.2 Garbage collection and memory leak detection for C and C++ > > bonobo-1.0.22 The component and compound document system for GNOME > > boxtools-0.65.0 Style tools for the blackbox family of window managers > > bugbuddy2-2.4.0 A bug reporting tool for GNOME 2 > > bzip-0.21 A block-sorting file compressor > > cabextract-0.6_1 A program to extract Microsoft cabinet (.CAB) files > > cclient-2002d,1 Mark Crispin's C-client mail access routines > > cd-discid-0.8 Backend utility to retrieve CDDB discid information > > cdparanoia-3.9.8_5 A CDDA extraction tool (also known as ripper) > > cdrtools-2.0.3 Cdrecord, mkisofs and several other programs to record CD-R > > clean-theme-gtk-1.2.x The Clean GTK theme engine > > colorize-0.3.3 A robust log colorizer > > crimson-1.1.3_1 Implements the Java API for XML Processing (JAXP) > > cups-base-1.1.19.0 The Common UNIX Printing System: headers, libs, & daemons > > cups-pstoraster-7.07 GNU Postscript interpreter for CUPS printing to non-PS prin > > curl-7.10.7 Non-interactive tool to get files from FTP, GOPHER, HTTP(S) > > cvsup-without-gui-16.1h General network file distribution system optimized for CVS > > cyrus-sasl-2.1.15 RFC 2222 SASL (Simple Authentication and Security Layer) > > dagrab-0.3.5_1 Read audio tracks from a CD into wav sound files > > db3-3.3.11,1 The Berkeley DB package, revision 3 > > db4-4.0.14_1,1 The Berkeley DB package, revision 4 > > db41-4.1.25_1 The Berkeley DB package, revision 4.1 > > dbh-1.0.15 Disk Based Hashtables > > dia-gnome-0.92p5 Diagram creation program, similar to Visio > > djbfft-0.76 An extremely fast library for floating-point convolution > > docbook-1.2_1 Meta-port for the different versions of the DocBook DTD > > docbook-241_2 V2.4.1 of the DocBook DTD, designed for technical documenta > > docbook-3.0_2 V3.0 of the DocBook DTD, designed for technical documentati > > docbook-3.1_2 V3.1 of the DocBook DTD, designed for technical documentati > > docbook-4.0_2 V4.0 of the DocBook DTD, designed for technical documentati > > docbook-4.1_2 V4.1 of the DocBook DTD, designed for technical documentati > > docbook-sk-4.1.2 XML version of the DocBook DTD version controlled for Scrol > > docbook-xml-4.2_1 XML version of the DocBook DTD > > docbook-xsl-1.62.3 XSL DocBook stylesheets > > easytag-0.30 Tag editor for MP3 and OGG files > > eel2-2.4.0 Generally useful classes and extensions to GNOME > > eog2-2.4.0 The Eye Of Gnome image viewer > > epiphany-1.0.2 An extremely lightweight and simple web browser for GNOME 2 > > esound-0.2.32_1 A sound library for enlightenment package > > eterm-0.9.2 X11 terminal emulator based on rxvt/xterm > > everybuddy-esound-0.4.3_2 A "chat" program that combines AIM, ICQ, and Yahoo! Chat in > > evolution-1.4.5 An integrated mail, calendar and address book distributed s > > expat-1.95.6_1 XML 1.0 parser written in C > > ezm3-1.1 Easier, more portable Modula-3 distribution for building CV > > fam-2.6.9_3 A file alteration monitor > > fastest_cvsup-0.2.8 Finds fastest CVSup server > > fbsd-icons-1.0 Collection of icons related to the FreeBSD project > > ffmpeg-0.4.5_6 Hyper fast realtime audio/video encoder/converter, streamin > > figlet-2.2.1 SysV banner-like program prints strings in large fancy ASCI > > figlet-fonts-20020913 Assorted fonts for the figlet(6) program > > fileroller-2.4.0.1,1 An archive manager for zip files, tar, etc > > flac-1.1.0_2 Free lossless audio codec > > flashpluginwrapper-0.20021113 A wrapper allowing use of linux-flashplugin with native moz > > fluxbox-0.1.14_2 A small and fast window manager based on BlackBox > > fluxconf-0.9.4 Fluxconf is a configuration program for the fluxbox window > > fluxter-0.1.0 Dekstop pager for the Fluxbox Slit > > fontconfig-2.2.90_3 An XML-based font configuration API for X Windows > > freefonts-0.10_2 A collection of ATM fonts (not all free) from the CICA arch > > freetype-1.3.1_2 A free and portable TrueType font rendering engine > > freetype2-2.1.5_1 A free and portable TrueType font rendering engine > > fribidi-0.10.4_1 A Free Implementation of the Unicode Bidirectional Algorith > > gail-1.4.1 An implementation of the ATK interfaces for GTK+ widgets > > gaim-0.71_4 Gtk+-2.0 open-source 'clone' of AOL's Instant Messenger cli > > gal-0.24 A collection of widgets taken from GNOME gnumeric and evolu > > gal2-1.99.10 A collection of widgets taken from GNOME 2 gnumeric > > galeon2-1.3.9_1 A GNOME 2 Web browser based on gecko (the Mozilla rendering > > gcalctool-4.3.15 A GNOME 2 calculator tool based on the old calctool for Ope > > gcc-3.1.1_20020909 GNU Compiler Collection 3.1 (inprogress version) > > gcc-3.2.3 GNU Compiler Collection 3.2.3 > > gcc-3.3.1_20030804 GNU Compiler Collection 3.3 > > gconf-1.0.9_6 A configuration database system for GNOME > > gconf-editor-2.4.0,1 A gconf database editor for the GNOME 2 environment > > gconf2-2.4.0.1 A configuration database system for GNOME > > gdbm-1.8.3 The GNU database manager > > gdeskcal-0.55 A calendar for the gnome2 desktop with smooth alpha-blendin > > gdk-pixbuf-0.22.0 A graphic library for GTK+ > > gdm2-2.4.4.3_1 GNOME 2 version of xdm display manager > > gedit2-2.4.0 A small but powerful text editor for Gnome 2 Desktop Enviro > > getmail-3.2.0 POP3 mail retriever with reliable Maildir and command deliv > > gettext-0.12.1 GNU gettext package > > gftp-gnome-2.0.15 A free multithreaded GTK-based GUI ftp and sftp client > > ggv2-2.4.0.2 GNOME 2 ghostscript viewer > > ghostscript-gnu-7.07_4 GNU Postscript interpreter > > gimp-gnome-1.3.21,1 A GNU Image Manipulation Program (unstable development vers > > gimp-print-4.2.5_1 GIMP Print Printer Driver > > gkrellm-2.1.21 A GTK based system monitor > > glade2-2.0.0 A user interface builder for GTK+/GNOME > > gle-3.0.3 A GL Tubing and Extrusion Library > > glib-1.2.10_10 Some useful routines of C programming (previous stable vers > > glib-2.2.3 Some useful routines of C programming (current stable versi > > glibwww-0.2_1 A library for people wanting to use libwww with gtk/gnome > > gmake-3.80_1 GNU version of 'make' utility > > gnet-glib2-1.1.9_1 A simple network library built upon Glib-2 > > gnet2-2.0.4 A simple network library built upon Glib-2 > > gnome-icon-theme-1.0.9 A collection of icons for the GNOME 2 desktop > > gnome-industrial-theme-0.2.29 Slick GNOME2 theme from Ximian > > gnome-pkgview-1.0.2 Displays the version of GNOME components installed > > gnome-themes-2.4.0 A collection of themes and icons for GNOME 2 designed for a > > gnome-themes-extras-0.4 More themes for the GNOME 2 desktop environment > > gnome2-2.4.0 The "meta-port" for the GNOME 2 integrated X11 desktop > > gnomeapplets2-2.4.1_1 Applets components for the Gnome 2 Desktop Environment > > gnomeaudio2-2.0.0 Sound files for use with GNOME 2 > > gnomebasic-0.0.20 Provide Visual Basic compatible functionality for GNOME, es > > gnomecanvas-0.22.0 A graphics library for GNOME > > gnomecontrolcenter-1.4.0.5_1 Control center for GNOME project > > gnomecontrolcenter2-2.4.0 Control center for GNOME 2 project > > gnomedb-0.2.96_1 Provide uniform access to data sources for the GNOME enviro > > gnomedesktop-2.4.0 Additional UI API for GNOME 2 > > gnomegames2-2.4.1 The game applications package for the Gnome 2 Desktop Envir > > gnomehier-1.0_9 An utility port, installing hierarchy of common GNOME direc > > gnomelibs-1.4.2_1 Libraries for GNOME, a GNU desktop environment > > gnomemag-0.10.3 GNOME screen magnifier > > gnomemedia2-2.4.0_1 Multimedia applications for the GNOME 2 desktop > > gnomemeeting-0.98.5 GNOME H323 Video Conferencing program, similar to NetMeetin > > gnomemimedata-2.4.0 A MIME and Application database for GNOME > > gnomepanel-2.4.0_2 Panel component for the GNOME 2 Desktop > > gnomepilot2-2.0.10 3Com PalmPilot conduit system for GNOME 2 > > gnomeprint-0.37 Gnome print support library > > gnomesession-2.4.0 Session component for the GNOME 2 desktop > > gnomespeech-0.2.7 GNOME text-to-speech API > > gnomespell-1.0.5 A GNOME/Bonobo component for spell checking > > gnomesystemmonitor-2.4.0 GNOME 2 system monitor program > > gnometerminal-2.4.0.1 Terminal component for the GNOME 2 Desktop > > gnomeuserdocs2-2.4.1 GNOME 2 users guide > > gnomeutils2-2.4.0,1 GNOME 2 support utilities > > gnomevfs-1.0.5_4 GNOME Virtual File System > > gnomevfs2-2.4.0 GNOME Virtual File System > > gnopernicus-0.7.1 Collection of accessibility apps for GNOME 2 > > gnumeric2-1.1.20_1 The GNOME 2 spreadsheet > > gnupg-1.2.3_1 The GNU Privacy Guard > > gob-1.0.12 A preprocessor for making GTK+ objects with inline C > > gob2-2.0.6 A preprocessor for making GObjects with inline C > > gocr-0.37 GOCR/JOCR is an OCR (Optical Character Recognition) program > > gok-0.8.3 GNOME On-Screen Keyboard (GOK) > > gpdf-0.110 GNOME version of xpdf > > gqmpeg-gnome-0.19.0 Another gtk-based MP3 frontend > > gqview-1.2.2_1 Another gtk-based graphic file viewer > > grc-1.0.6 Generic Colouriser > > gstreamer-0.6.3 Development framework for creating media applications > > gstreamer-plugins-0.6.3_1 GStreamer written collection of plugins handling several me > > gtk-1.2.10_10 Gimp Toolkit for X11 GUI (previous stable version) > > gtk-2.2.4_1 Gimp Toolkit for X11 GUI (current stable version) > > gtk-Mac2-theme-200003050858 GTK+ engine theme based on the look of MacOS > > gtk-aqualightblue-theme-0.1 A port of the GTK+ AquaLightBlue theme to GTK+ 2.0 > > gtk-bluecurve-theme-0.73 Bluecurve unified-look theme for GTK1 and GTK2 from RedHat > > gtk-engines-0.12_2 Theme engine for gtk+ toolkits > > gtk-engines2-2.2.0 Theme engine for the gtk+-2.0 toolkit > > gtk-flat-theme2-0.1 A port of the Flat GTK+ engine to GTK+ 2.0 > > gtk-qnxtheme-0.1_1 QNX-inspired theme for GTK1 and GTK2 > > gtk-xfce-engine-2.1.6 An XFCE engine for GTK 2.0 > > gtkglarea-1.99.0_2 An OpenGL widget for the GTK+2 GUI toolkit > > gtkhtml-1.1.10_2 Lightweight HTML rendering/printing/editing engine > > gtkhtml3-3.0.9 Lightweight HTML rendering/printing/editing engine > > gtksourceview-0.6.0 A text widget that adds syntax highlighting to the GtkTextV > > gtkspell2-2.0.4 A GTK+ 2 spell checking component > > gucharmap-gnome-1.0.0 A Unicode/ISO10646 character map and font viewer > > guile-1.6.4_2 GNU Ubiquitous Intelligent Language for Extension > > guppi-0.40.3_3 A ploting program for GNOME > > gv-3.5.8_3 A PostScript and PDF previewer > > hdf-4.1r5 Hierarchical Data Format library (from NCSA) > > help2man-1.29 Automatically generating simple manual pages from program o > > id3lib-3.8.2 Library for manipulating ID3v1/v1.1 and ID3v2 tags > > id3v2-0.1.9_1 Command line id3v2 tag editor > > imake-4.3.0_1 Imake and other utilities from XFree86 > > imlib-1.9.14_1 A graphic library for enlightenment package > > imlib2-1.0.6_1 The next generation graphic library for enlightenment packa > > intltool-0.27.2 Xml internationalization support for GNOME, and others > > ipcalc-0.35_1 IP Calculator > > iso8879-1986_2 Character entity sets from ISO 8879:1986 (SGML) > > ispell-3.2.06_3 An interactive spelling checker for multiple languages > > jabber-1.4.2 Online presence and instant messaging server > > jade-1.2.1_5 An object-oriented SGML/XML parser toolkit and DSSSL engine > > jasper-1.700.2 An implementation of the codec specified in the JPEG-2000 s > > javavmwrapper-1.4 Wrapper script for various Java Virtual Machines > > jbigkit-1.5 Lossless compression for bi-level images such as scanned pa > > jdk-1.3.1p8_2 Java Development Kit 1.3 > > jdk-1.4.1p3_3 Java Development Kit 1.4.1 > > jpeg-6b_1 IJG's jpeg compression utilities > > kde-3.1.4 The "meta-port" for KDE > > kdeaddons-3.1.4 Additional plugins and scripts for some KDE applications > > kdeadmin-3.1.4 KDE applications related to system administration > > kdeartwork-3.1.4 Additional themes, sounds, wallpapers and window styles for > > kdebase-3.1.4 This package provides the basic applications for the KDE sy > > kdeedu-3.1.4 Collection of entertaining, educational programs for KDE > > kdegames-3.1.4 Games for the KDE integrated X11 desktop > > kdegraphics-3.1.4 Graphics utilities for the KDE3 integrated X11 desktop > > kdelibs-3.1.4 This is the base set of libraries needed by KDE programs > > kdemultimedia-3.1.4 Multimedia utilities for the KDE integrated X11 desktop > > kdenetwork-3.1.4 Network-related programs and modules for KDE > > kdepim-3.1.4 Personal Information Management tools for KDE > > kdesdk-3.1.4 KDE Software Development Kit > > kdetoys-3.1.4 Small applications for KDE > > kdeutils-3.1.4 Utilities for the KDE integrated X11 desktop > > kdevelop-2.1.5 Powerful IDE for developing KDE/Qt-based apps > > koffice-1.2.1_1,1 Office Suite for KDE3 > > lame-3.93.1 ISO code based fast MP3 encoder kit > > lcms-1.09,1 Light Color Management System -- a color management library > > lha-1.14i_2 Archive files using LZSS and Huffman compression (.lzh file > > libIDL-0.8.2 A library for creating trees of CORBA Interface Definition > > liba52-0.7.4 A free library for decoding ATSC A/52 streams, aka AC-3 > > libao-esound-0.8.4_1 Portable audio output library > > libart_lgpl2-2.3.16 Library for high-performance 2D graphics > > libast-0.5 A library of assorted spiffy things > > libaudiofile-0.2.4 A sound library for SGI audio file > > libbonobo-2.4.1 A component and compound document system for GNOME2 > > libbonoboui-2.4.0 GUI frontend to the libbonobo component of GNOME 2 > > libcapplet-1.4.0.5_1 A library for writing custom applets for GNOME Control Cent > > libdivxdecore-0.4.7 OpenDivX decoding engine from Project Mayo > > libdvdcss-1.2.8 Portable abstraction library for DVD decryption > > libdvdnav-0.1.3 The library for the xine-dvdnav plugin > > libdvdread-0.9.4 This is needed by ogle, which is a DVD player that supports > > libesmtp-1.0_1,1 A library for posting electronic mail > > libexif-0.5.12_1 Library to read digital camera file meta-data > > libfpx-1.2.0.9 Library routines for working with Flashpix images > > libgail-gnome-1.0.2_2 An implementation of the ATK interfaces for GNOME widgets > > libgda-0.2.96_1 Provides uniform access to different kinds of data sources > > libgda2-0.91.0 Provides uniform access to different kinds of data sources > > libghttp-1.0.9 GNOME http client library > > libglade-0.17_2 GNOME glade library > > libglade2-2.0.1_1 GNOME glade library > > libgnome-2.4.0 Libraries for GNOME, a GNU desktop environment > > libgnomecanvas-2.4.0 A graphics library for GNOME > > libgnomedb-0.91.0 Library components for the GNOME database frontend > > libgnomeprint-2.4.0 Gnome print support library > > libgnomeprintui-2.4.0 Gnome print support library > > libgnomeui-2.4.0.1_1 Libraries for the GNOME GUI, a GNU desktop environment > > libgnugetopt-1.2 GNU getopt library > > libgsf-1.8.2 An extensible i/o abstraction for dealing with structured f > > libgtkhtml-2.4.1 Lightweight HTML rendering/printing/editing engine > > libgtop2-2.0.5 GNOME 2 top library > > libiconv-1.9.1_1 A character set conversion library > > libijs-0.34 C library that supports plugin printer driver for Ghostscri > > libltdl-1.5 System independent dlopen wrapper > > libmal-0.31 A library encapsulating malsync > > libmikmod-esound-3.1.10_1 MikMod Sound Library > > libmng-1.0.5_1 Multiple-image Network Graphics (MNG) reference library > > libmpeg2-0.3.1_1 A free library for decoding mpeg-2 and mpeg-1 video streams > > libmusicbrainz-2.0.2_1 2nd generation incarnation of the CD Index - audio metadata > > libogg-1.0_1,3 Ogg bitstream library > > libole2-0.2.4 Support library for OLE functions (MS-Excel) for gnumeric > > librep-0.16.2_2 An Emacs Lisp like runtime library > > librsvg2-2.4.0 Library for parsing and rendering SVG vector-graphic files > > libsidplay-1.36.57 A Commodore SID-chip emulator library to play SID music fil > > libsoup-1.99.26 A SOAP (Simple Object Access Protocol) implementation in C > > libtool-1.3.5_1 Generic shared library support script > > libtool-1.4.3_2 Generic shared library support script > > libungif-4.1.0b1_1 Tools and library routines for working with GIF images > > libunicode-0.4_3 A library for manipulating Unicode characters and strings > > libusb-0.1.7 Library giving userland programs access to USB devices > > libvorbis-1.0_1,3 Audio compression codec library > > libwmf-0.2.8 Tools and library for converting Microsoft WMF (windows met > > libwnck-2.4.0.1 Library used for writing pagers and taskslists > > libwww-5.4.0 The W3C Reference Library > > libxfce4gui-4.0.0 XFce 4 widget library required by xfce4 and xfwm4 > > libxfce4mcs-4.0.0 XFce 4 settings management library used by most XFce 4 modu > > libxfce4util-4.0.0 XFce 4 library with non-graphical helper functions > > libxine-1.0.r0_2 Libraries for xine multimedia player > > libxml-1.8.17_1 Xml parser library for GNOME > > libxml2-2.5.11 Xml parser library for GNOME > > libxslt-1.0.33 The XSLT C library for GNOME > > libzvt-2.0.1_6 Library components for Zed's Virtual Terminal > > linc-1.0.3 A library for writing networked servers & clients > > linux-divx4linux-5.0.20030428 Linux binary release of DivX (TM) Codec > > linux-divxplayer-0.2.0 DivX(TM) Video Player for Linux from DivX.com > > linux-esound-0.2.22_1 RPM of esound > > linux-flashplugin-5.0r51 The official Macromedia Flash Player for Linux Netscape and > > linux-flashplugin-6.0r79 The official Macromedia Flash Player for Linux Mozilla and > > linux-gtk-1.2_2 RPM of the Gtk lib > > linux-libaudiofile-0.1.11_2 RPM of audiofile > > linux-openmotif-2.1.30 Motif toolkit Linux libraries > > linux-opera-7.11.20030515_2 A blazingly fast, full-featured, standards-compliant browse > > linux-png-1.0.14_2 RPM of the PNG lib > > linux-realplayer-8.cs2_4 Linux RealPlayer 8.0 from RealNetworks > > linux-sun-jdk-1.3.1.08 Sun Java Development Kit 1.3 for Linux > > linux-sun-jdk-1.4.2.01_3 Sun Java Development Kit 1.4 for Linux > > linux_base-7.1_5 The base set of packages needed in Linux mode > > linuxdoc-1.1_1 The Linuxdoc SGML DTD > > lynx-2.8.5d16_3 A non-graphical, text-based World-Wide Web client > > lzo-1.08_1 Portable speedy, lossless data compression library > > lzop-1.01 Fast file compressor similar to gzip, using the LZO library > > m4-1.4_1 GNU m4 > > mad-esound-0.14.2b_3 High-quality MPEG audio decoder > > man2html-3.0.1_1 Convert nroff(1) man pages to HTML > > metacity-2.6.2 A window manager for the adult in you > > metatheme2-0.9.7_1 An utility for managing "theme sets" that accomodate gtk, w > > ming-0.2a_1 LGPL'ed Flash 4/5 movie output library with many languages > > mkcatalog-1.1 A maintainance utility for sgml catalog files > > mkisofs-2.0.3 Create iso9660/Rock Ridge/Joliet filesystems > > mmencode-2.7 Translate to and from mail-oriented encoding formats > > mosfet-liquid-0.9.6_1 A High Performance Liquid KDE style engine > > mozilla-1.4.1,2 The open source, standards compliant web browser > > mozilla-firebird-0.6.1_1 Mozilla Firebird is the next generation browser from the mo > > mozilla-gtk2-1.4.1 The open source, standards compliant web browser > > mozilla-headers-1.4.1,2 Header files for mozilla communicator web-surfboard > > mp3blaster-3.1.3 MP3 console ncurses-based player > > mpg123-esound-0.59r_9 Command-line player for mpeg layer 1, 2 and 3 audio > > mpg321-0.2.10_2 A free command-line mp3 player, compatible with mpg123 > > mplayer-fonts-0.50 A font pack for the mplayer OSD and SUB > > mplayer-gtk-esound-0.92.0_2 High performance media player/encoder supporting many forma > > mplayer-skins-1.0.5_1 Skins for MPlayer's Graphical User Interface (GUI) > > mplayerplug-in-0.95_1 A Mozilla plugin for the MPlayer media player > > mutt-1.4.1_4 The Mongrel of Mail User Agents (part Elm, Pine, Mush, mh, > > nasm-0.98.35,1 General-purpose multi-platform x86 assembler > > nautilus-cd-burner-0.5.3_3 CD burner view for Nautilus > > nautilus-media-0.3.3.1 GStreamer-based multimedia views for Nautilus > > nautilus2-2.4.0_2 GNOME file manager and graphical shell developed by Eazel > > ncftp1-1.9.5 FTP replacement with advanced user interface > > net-rhythmbox-0.4.8_2 Audio player for the Gnome 2 desktop environment > > netscape7-7.1 Linux Netscape suite > > nmap-3.48_1 Port scanning utility for large networks > > nmapfe-3.48_1 GUI frontend for the nmap scanning utility > > normalize-0.7.5_2 A tool for adjusting the volume of wave/MP3 files to a stan > > nspr-4.3_2 A platform-neutral API for system level and libc like funct > > nss-3.8 A set of libraries to support development of security-enabl > > ntp-4.1.1c.r3 The Network Time Protocol Distribution > > numlockx-1.0 This little thingy allows you to start X with NumLock turne > > oaf-0.6.10_1 Object Activation Framework for GNOME > > ogle-0.9.1 Open DVD player that supports DVD menus > > ogle-gnome-0.9.1_2 An add-on graphical user interface for Ogle > > open-motif-2.2.2_1 Motif X11 Toolkit (industry standard GUI (IEEE 1295)) > > openldap-client-2.0.27 Open source LDAP client implementation > > openldap-server-2.1.22_2 Open source LDAP server implementation > > openldap20-2.0.27 Open source LDAP client and server software > > openoffice-1.0.3_2 Integrated wordprocessor/dbase/spreadheet/drawing/chart/bro > > openoffice-1.1.0_1 Integrated wordprocessor/dbase/spreadheet/drawing/chart/bro > > openquicktime-1.0 Portable library for handling Apple's QuickTime(TM) files > > p5-Authen-SASL-2.04 Perl5 module for SASL authentication > > p5-Digest-HMAC-1.01 Perl5 interface to HMAC Message-Digest Algorithms > > p5-Digest-MD5-2.27 Perl5 interface to the MD5 algorithm > > p5-Digest-Nilsimsa-0.06 Perl version of Nilsimsa code > > p5-Digest-SHA1-2.05 Perl interface to the SHA-1 Algorithm > > p5-File-Spec-0.86 A Perl module for portably manipulating file specifications > > p5-HTML-Parser-3.32 Perl5 module for parse HTML tag > > p5-HTML-Tagset-3.03 Some useful data table in parsing HTML > > p5-MIME-Base64-2.21 Perl5 module for Base64 and Quoted-Printable encodings > > p5-Mail-SpamAssassin-2.60 A highly efficient mail filter for identifying spam > > p5-Mail-Tools-1.60 Perl5 modules for dealing with Internet e-mail messages > > p5-Net-1.17,1 Perl5 modules to access and use network protocols > > p5-Net-DNS-0.41 Perl5 interface to the DNS resolver, and dymanic updates > > p5-PodParser-1.24 Modules to work with POD (Plain Old Documentation) > > p5-Term-ANSIColor-1.07 Color screen output using ANSI escape sequences > > p5-Test-Harness-2.30 Run perl standard test scripts with statistics > > p5-Test-Simple-0.47_1 Basic utilities for writing tests in perl > > p5-Time-HiRes-1.51,1 A perl5 module implementing High resolution time, sleep, an > > p5-URI-1.25 Perl5 interface to Uniform Resource Identifier (URI) refere > > p5-type1inst-0.6.1 A script that helps install Postscript fonts in X Window Sy > > pan2-0.14.2 Threaded GNOME 2 newsreader based on Agent for Windows > > pango-1.2.5 An open-source framework for the layout and rendering of i1 > > pcre-4.4 Perl Compatible Regular Expressions library > > perl-5.6.1_14 Practical Extraction and Report Language > > pgp-5.0i_1 Public-Key encryption for the masses > > pgpgpg-0.13 Wrapper for GnuPG to simulate PGP 2.6.x > > pilot-link-0.11.7_2 PalmPilot communications utilities (backup/restore/install/ > > pine-4.58 PINE(tm) -- a Program for Internet News & Email > > pkgconfig-0.15.0 A utility used to retrieve information about installed libr > > plotutils-2.4.1 A plotting library and toolkit > > png-1.2.5_2 Library for manipulating PNG images > > popt-1.6.4_1 A getopt(3) like library with a number of enhancements, fro > > portupgrade-20030723 FreeBSD ports/packages administration and management tool s > > procmail-3.22_3 A local mail delivery agent > > psiconv-0.8.3_1 A conversion utility to convert Psion 5(MX) files into othe > > pstoedit-3.33_1 Convert PostScript to other vector graphic formats > > py-gnome-2.0.0 A set of Python bindings for GNOME 2 > > py23-expat-2.3.2_2 Python interface to the Expat XML parser > > py23-gtk-2.0.0 A set of Python bindings for GTK > > py23-numeric-23.0 The Numeric Extension to Python > > py23-orbit-2.0.0 Python bindings for ORBit2 > > py23-xml-0.8.3 The Python XML package, including parser, SAX, DOM, and Exp > > python-2.3.2 An interpreted object-oriented programming language > > qt-3.2.1 A C++ X GUI toolkit > > quanta-3.1.4,2 Comprehensive html/website development environment > > rar-3.20,1 File archiver (binary port) > > razor-agents-2.36_1 A distributed, collaborative, spam detection and filtering > > rc_subr-1.16 Common startup and shutdown subroutines used by scripts > > rdesktop-1.2.0 RDP client for Windows NT Terminal Server > > rep-gtk2-gnome-0.17_2,1 GTK+-2 binding for rep Lisp interpreter > > rhythmbox-0.5.3 Audio player for the Gnome 2 desktop environment > > rpm-3.0.6_8 The Red Hat Package Manager > > ruby-1.6.8.2003.04.19 An object-oriented interpreted scripting language > > ruby-bdb1-0.2.1 Ruby interface to Berkeley DB revision 1.8x with full featu > > ruby-rdoc-0.9.0 Documentation from Ruby source files > > ruby-shim-ruby18-1.8.0.p2.2003.04.19_1 A set of Ruby modules to provide Ruby 1.8 functionalities > > rxvt-2.6.4_1 A low memory usage xterm replacement that supports color > > samba-2.2.8a A free SMB and CIFS client and server for UNIX > > samba-libsmbclient-3.0.0 The shared lib from the samba packges > > sane-backends-1.0.12_3 API for access to scanners, digitals camera, frame grabbers > > screen-4.0.1_1 A multi-screen window manager > > scrollkeeper-0.3.12_2,1 An Open Document Cataloging Project > > sdl-1.2.5_2 Cross-platform multi-media development API (developm. vers. > > sdocbook-xml-4.1.2.5_1 "Simplified" DocBook XML DTD > > sgmlformat-1.7_2 Generates groff and HTML from linuxdoc and docbook SGML doc > > sharefonts-0.10 A collection of shareware ATM fonts from the CICA archives > > sidplay-1.0.9 A Commodore SID-chip emulator that plays SID music files > > soup-0.7.11 A SOAP (Simple Object Access Protocol) implementation in C > > sox-12.17.4 SOund eXchange - universal sound sample translator > > speex-1.0.2,1 An open-source patent-free voice codec > > startup-notification-0.5_1 Library that supports startup notification spec from freede > > sudo-1.6.7.5 Allow others to run commands as root > > svgalib-1.4.3_1 A low level console graphics library > > sylpheed-0.9.6 A lightweight, featureful, and fast GTK+ based e-mail clien > > tcl-8.3.5_2 Tool Command Language > > teTeX-2.0.2_2 Thomas Esser's distribution of TeX & friends > > tiff-3.6.0 Tools and library routines for working with TIFF images > > timidity++-esound-2.11.3_1 Software MIDI player > > tk-8.3.5_2 Graphical toolkit for TCL > > totem-0.99.5 A Xine-based video player for the Gnome 2 Desktop > > tsclient-0.124 A GNOME 2 frontend for rdesktop > > ttmkfdir-0.0_1 Create fonts.scale file for use with TrueType font server > > unix2dos-1.3 Translate ASCII files from DOS (cr/lf) to UNIX (lf) > > unzip-5.50_2 List, test and extract compressed files in a ZIP archive > > urwfonts-1.0 Another font package for X > > uulib-0.5.18 A library for uu/xx/Base64/BinHex/yEnc de-/encoding > > vilearn-1.0 An interactive tutorial for the vi editor > > vim-6.2.72 Vi "workalike", with many additional features > > vnc-3.3.7_1 Display X and Win32 desktops on remote X/Win32/Java display > > vorbis-tools-1.0_4,3 Play, encode, and manage Ogg Vorbis files > > vte-0.11.10_1 Terminal widget with improved accessibility and I18N suppor > > w3m-0.4.1 A pager/text-based WWW browser > > wavplay-1.4 A wav player and recorder > > webfonts-0.21_1 TrueType core fonts for the Web > > weblint-1.020 HTML validator and sanity checker > > wget-1.8.2_4 Retrieve files from the Net via HTTP and FTP > > win32-codecs-2.0.90,1 Huge compilation of Win32 binary codecs, including MPEG-4(D > > windowmaker-0.80.2_1 GNUStep-compliant NeXTStep window manager clone > > wmavgload-0.7.0 Another WindowMaker load gauge > > wmcpuload-1.0.1 An "lcd" dockapp for windowmaker, which displays the curren > > wmfire-0.0.3.9 Window Maker dock app showing load average as a flame > > wmicons-1.0 Icons mainly for use in Window Maker > > wmmatrix-0.2 A DockApp that runs a version of the xmatrix screenhack > > wrapper-1.0_3 Wrapper for XFree86-4 server > > wterm-6.2.9 A color vt102 terminal emulator with transparency support > > x11amp-0.9.b1.1 X11-based MP3 player with nice graphical interface > > xanim-2.92.0 Play most popular animation formats and show pictures > > xcdroast-0.98.a.14 Another X11 frontend to mkisofs/cdrecord > > xchat2-2.0.5 An X11 IRC client using the GTK+ 2 toolkit > > xfce-4.0.0 The "meta-port" for the XFce 4 desktop environment > > xfce4-desktop-4.0.0 XFce 4 desktop background manager and root menu > > xfce4-fm-4.0.0 XFce 4 file manager > > xfce4-fm-icons-4.0.0 XFce 4 icon themes for the xffm file manager > > xfce4-iconbox-4.0.0 XFce 4 icon box, an alternative taskbar > > xfce4-mcs-manager-4.0.0 XFce 4 settings manager > > xfce4-mcs-plugins-4.0.0 XFce 4 settings manager plugins > > xfce4-mixer-4.0.0 XFce 4 volume mixer module for xfce4-panel > > xfce4-panel-4.0.0 XFce 4 panel module > > xfce4-panel-themes-4.0.0 Icon themes for the XFce 4 panel > > xfce4-print-4.0.0 XFce 4 graphical frontend for printing > > xfce4-systray-4.0.0 XFce 4 system tray module for xfce4-panel > > xfce4-toys-4.0.0 Toys for the XFce 4 panel > > xfce4-utils-4.0.0 XFce 4 essential utilities and scripts > > xfce4-wm-4.0.0 XFce 4 window manager > > xfce4-wm-themes-4.0.0 XFce 4 window decoration themes for xfwm4 > > xine-0.9.22_1 An X11 multimedia player > > xmbmon-203 X/tty motherboard monitor for LM78/79, W8378x, AS99127F and > > xmlcatmgr-0.2_1 SGML/XML catalog manager > > xmms-esound-1.2.8_1 X Multimedia System --- An audio player with a Winamp GUI > > xmms-goom-1.8.1 A cool XMMS visualization > > xmms-jess-2.9.1 A XMMS visualization plugin that uses SDL > > xmms-osssurround-0.1 OSSSuround adds Surround Sound capabilities to XMMS > > xmovie-1.9.8.1 A movie player for AVI, MPEG-2/4 and MOV movies > > xmp-esound-2.0.4_1 A player for many different Amiga and PC module formats > > xmps-0.2.0 X MPEG Player System - a media player with a very nice GUI > > xmps-opendivx-plugin-0.0.1_2 xmps plugin using OpenDivX decoding engine from Project May > > xpostit-3.3.1 PostIt (R) messages onto your X11 screen > > xsane-0.91 Gtk-based X11 frontend for SANE (Scanner Access Now Easy) > > xscreensaver-gnome-4.13 Save your screen while you entertain your cat (for GNOME us > > xv-3.10a_3 An X11 program that displays images of various formats > > xvid-0.9.2,1 An opensource MPEG-4 codec, based on OpenDivx > > yelp-2.4.0_1 A help browser for the GNOME 2 desktop > > ymessenger-0.99.19.1,20020902 Yahoo! Messenger - Instant messaging client > > zenity-1.6 Display GNOME dialogs from the command line > > zip-2.3_1 Create/update ZIP files compatible with pkzip > > zoo-2.10.1 Manipulate archives of files in compressed form > > > > ----------------------- > > steve@daemon:~> uname -a > > FreeBSD daemon.g-e-e-k.net 4.9-RC FreeBSD 4.9-RC #10: Mon Oct 13 08:25:31 > > PDT 2003 root@daemon.g-e-e-k.net:/usr/obj/usr/src/sys/XEON i386 > > > > > > +---------------------------------------------------------------------+ > > |Steve Wingate > > |MCSE, CCNA Tue Oct 14 21:10:00 PDT 2003 > > +---------------------------------------------------------------------+ > > |FreeBSD 4.9-PRERELEASE > > | 9:10PM up 35 days, 13:42, 2 users, load averages: 0.00, 0.00, 0.00 > > +---------------------------------------------------------------------+ > > > > +---------------------------------------------------------------------+ > |Steve Wingate > |MCSE, CCNA Tue Oct 14 21:20:00 PDT 2003 > +---------------------------------------------------------------------+ > |FreeBSD 4.9-PRERELEASE > | 9:20PM up 35 days, 13:52, 2 users, load averages: 0.01, 0.00, 0.00 > +---------------------------------------------------------------------+ > _______________________________________________ > 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" >> end of "Re: Abiword & resizing" from Steve Wingate << -- Adam Weinberger vectors.cx >> adam@vectors.cx >> http://www.vectors.cx magnesium.net << adamw@magnesium.net << http://www.magnesium.net/~adamw FreeBSD >> adamw@FreeBSD.org >> http://people.freebsd.org/~adamw #vim:set ts=8: 8-char tabs prevent tooth decay. From owner-freebsd-ports@FreeBSD.ORG Tue Oct 14 22:37:18 2003 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 688F816A4B3; Tue, 14 Oct 2003 22:37:18 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15AC843FD7; Tue, 14 Oct 2003 22:37:11 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu74-159-108.nc.rr.com [24.74.159.108])h9F5Ym0E026728; Wed, 15 Oct 2003 01:34:49 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h9F5aXdm032146; Wed, 15 Oct 2003 01:36:33 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Adam Weinberger In-Reply-To: <20031015043337.GY96543@toxic.magnesium.net> References: <20031014211406.I472@daemon.g-e-e-k.net> <20031014212249.J495@daemon.g-e-e-k.net> <20031015043337.GY96543@toxic.magnesium.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-UBg4qlvKUzEdyA/Hx4p8" Organization: MarcusCom, Inc. Message-Id: <1066196210.72030.18.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Wed, 15 Oct 2003 01:36:50 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on creme-brulee.marcuscom.com cc: FreeBSD Ports Mail list cc: Steve Wingate Subject: Re: Abiword & resizing 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, 15 Oct 2003 05:37:18 -0000 --=-UBg4qlvKUzEdyA/Hx4p8 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-10-15 at 00:33, Adam Weinberger wrote: > Wait, you have a fix for this? What is it? Apparently, this is a known issue, and both the AbiWord and Fluxbox developers are working on it. I don't know the latest, though. Joe >=20 > # Adam >=20 >=20 > >> (10.15.2003 @ 0023 PST): Steve Wingate said, in 36K: << > > Cancel this problem. > >=20 > >=20 > > On Tue, 14 Oct 2003, Steve Wingate wrote: > >=20 > > > I'm using the AbiWord2-2.0.0 port on Fluxbox wm. If I use the drag co= rner > > > to increase the window size I cannot decrease the window size later o= n. > > > Even I close/reopen the app it stays at the larger size. > > > I just increased the window from 80x80 to 100x100 and now I can't dec= rease > > > it for anything. > > > > > > The list of installed ports > > > AbiWord2-2.0.0 An open-source, cross-platform WYSIWYG word proce= ssor > > > BitchX-1.0c19_3 "An alternative ircII color client with optional = GTK/GNOME > > > GimpUserManual-PDF-2 The user manual for the GNU Image Manipulation P= rogram (GIM > > > Hermes-1.3.3 Fast pixel formats conversion library > > > ImageMagick-5.5.7.11_1 Image processing tools > > > Mesa-3.4.2_2 A graphics library similar to SGI's OpenGL > > > OQTPlayer-0.5 A very very small, not functionnal, video OpenQui= cktime (TM > > > ORBit-0.5.17_1 High-performance CORBA ORB with support for the C= language > > > ORBit2-2.8.2 High-performance CORBA ORB with support for the C= language > > > XFree86-4.3.0,1 X11/XFree86 core distribution (complete, using mi= ni/meta-po > > > XFree86-FontServer-4.3.0_2 XFree86-4 font server > > > XFree86-Server-4.3.0_11 XFree86-4 X server and related programs > > > XFree86-VirtualFramebufferServer-4.3.0_3 XFree86-4 virtual framebuffe= r server > > > XFree86-clients-4.3.0_3 XFree86-4 client programs and related files > > > XFree86-documents-4.3.0 XFree86-4 documentation > > > XFree86-font100dpi-4.3.0 XFree86-4 bitmap 100 dpi fonts > > > XFree86-font75dpi-4.3.0 XFree86-4 bitmap 75 dpi fonts > > > XFree86-fontCyrillic-4.3.0 XFree86-4 Cyrillic fonts > > > XFree86-fontDefaultBitmaps-4.3.0 XFree86-4 default bitmap fonts > > > XFree86-fontEncodings-4.3.0 XFree86-4 font encoding files > > > XFree86-fontScalable-4.3.0 XFree86-4 scalable fonts > > > XFree86-libraries-4.3.0_6 XFree86-4 libraries and headers > > > Xaw3d-1.5 A 3-D Athena Widget set that looks like Motif > > > Xft-2.1.2 A client-sided font API for X applications > > > aalib-1.4.r5_1 An ascii art library > > > abcde-2.1.6 Front-end shell script to encode CDs in flac/mp3/= ogg/speex > > > acme-2.4.0 Tool to make multimedia keys work on laptops > > > acroread-5.08 View, distribute and print PDF documents > > > apache-ant-1.5.4_1 Java- and XML-based build tool, conceptually simi= lar to mak > > > arts-1.1.4,1 Audio system for the KDE integrated X11 desktop > > > artwiz-fonts-1.0_1 A set of free fonts for X11 desktops > > > asclock-gtk-2.1.10 New flavor of asclock (GTK version) > > > aspell-0.50.4 Spelling checker with better suggestion logic tha= n ispell > > > at-spi-1.3.7 An Assistive Technology Service Provider Interfac= e > > > aterm-0.4.2 A color vt102 terminal emulator with transparency= support > > > atk-1.4.1 A GNOME accessibility toolkit (ATK) > > > autoconf-2.53_1 Automatically configure source code on many Un*x = platforms > > > autoconf213-2.13.000227_5 Automatically configure source code on many= Un*x platforms > > > automake-1.5,1 GNU Standards-compliant Makefile generator > > > automake14-1.4.5_9 GNU Standards-compliant Makefile generator (legac= y version > > > autotrace-0.31.1_1 Convert bitmap to vector graphics > > > avifile-0.7.34.20030319,2 AVI player/converter with numerous codecs, = including MPEG-4 > > > balsa2-2.0.15 A mail reader for the GNOME 2 desktop > > > bash-2.05b.007 The GNU Bourne Again Shell > > > bb-1.3.r1 High quality audio-visual demonstration for text = terminal > > > bbconf-1.8 Configurator for the Blackbox window manager > > > bbkeys-0.8.5 A keygrabber for the Blackbox window manager > > > bbrun-1.4_1 A Run box for Blackbox > > > bison-1.75_1 A parser generator from FSF, (mostly) compatible = with Yacc > > > bitstream-vera-1.10 Bitstream Vera TrueType font collection > > > blackbox-0.65.0 A small and fast window manager for X11R6 > > > bluefish-0.11.20031003 HTML editor designed for the experienced web d= esigner > > > boehm-gc-6.2 Garbage collection and memory leak detection for = C and C++ > > > bonobo-1.0.22 The component and compound document system for GN= OME > > > boxtools-0.65.0 Style tools for the blackbox family of window man= agers > > > bugbuddy2-2.4.0 A bug reporting tool for GNOME 2 > > > bzip-0.21 A block-sorting file compressor > > > cabextract-0.6_1 A program to extract Microsoft cabinet (.CAB) fil= es > > > cclient-2002d,1 Mark Crispin's C-client mail access routines > > > cd-discid-0.8 Backend utility to retrieve CDDB discid informati= on > > > cdparanoia-3.9.8_5 A CDDA extraction tool (also known as ripper) > > > cdrtools-2.0.3 Cdrecord, mkisofs and several other programs to r= ecord CD-R > > > clean-theme-gtk-1.2.x The Clean GTK theme engine > > > colorize-0.3.3 A robust log colorizer > > > crimson-1.1.3_1 Implements the Java API for XML Processing (JAXP) > > > cups-base-1.1.19.0 The Common UNIX Printing System: headers, libs, &= daemons > > > cups-pstoraster-7.07 GNU Postscript interpreter for CUPS printing to = non-PS prin > > > curl-7.10.7 Non-interactive tool to get files from FTP, GOPHE= R, HTTP(S) > > > cvsup-without-gui-16.1h General network file distribution system opti= mized for CVS > > > cyrus-sasl-2.1.15 RFC 2222 SASL (Simple Authentication and Security= Layer) > > > dagrab-0.3.5_1 Read audio tracks from a CD into wav sound files > > > db3-3.3.11,1 The Berkeley DB package, revision 3 > > > db4-4.0.14_1,1 The Berkeley DB package, revision 4 > > > db41-4.1.25_1 The Berkeley DB package, revision 4.1 > > > dbh-1.0.15 Disk Based Hashtables > > > dia-gnome-0.92p5 Diagram creation program, similar to Visio > > > djbfft-0.76 An extremely fast library for floating-point conv= olution > > > docbook-1.2_1 Meta-port for the different versions of the DocBo= ok DTD > > > docbook-241_2 V2.4.1 of the DocBook DTD, designed for technical= documenta > > > docbook-3.0_2 V3.0 of the DocBook DTD, designed for technical d= ocumentati > > > docbook-3.1_2 V3.1 of the DocBook DTD, designed for technical d= ocumentati > > > docbook-4.0_2 V4.0 of the DocBook DTD, designed for technical d= ocumentati > > > docbook-4.1_2 V4.1 of the DocBook DTD, designed for technical d= ocumentati > > > docbook-sk-4.1.2 XML version of the DocBook DTD version controlled= for Scrol > > > docbook-xml-4.2_1 XML version of the DocBook DTD > > > docbook-xsl-1.62.3 XSL DocBook stylesheets > > > easytag-0.30 Tag editor for MP3 and OGG files > > > eel2-2.4.0 Generally useful classes and extensions to GNOME > > > eog2-2.4.0 The Eye Of Gnome image viewer > > > epiphany-1.0.2 An extremely lightweight and simple web browser f= or GNOME 2 > > > esound-0.2.32_1 A sound library for enlightenment package > > > eterm-0.9.2 X11 terminal emulator based on rxvt/xterm > > > everybuddy-esound-0.4.3_2 A "chat" program that combines AIM, ICQ, an= d Yahoo! Chat in > > > evolution-1.4.5 An integrated mail, calendar and address book dis= tributed s > > > expat-1.95.6_1 XML 1.0 parser written in C > > > ezm3-1.1 Easier, more portable Modula-3 distribution for b= uilding CV > > > fam-2.6.9_3 A file alteration monitor > > > fastest_cvsup-0.2.8 Finds fastest CVSup server > > > fbsd-icons-1.0 Collection of icons related to the FreeBSD projec= t > > > ffmpeg-0.4.5_6 Hyper fast realtime audio/video encoder/converter= , streamin > > > figlet-2.2.1 SysV banner-like program prints strings in large = fancy ASCI > > > figlet-fonts-20020913 Assorted fonts for the figlet(6) program > > > fileroller-2.4.0.1,1 An archive manager for zip files, tar, etc > > > flac-1.1.0_2 Free lossless audio codec > > > flashpluginwrapper-0.20021113 A wrapper allowing use of linux-flashpl= ugin with native moz > > > fluxbox-0.1.14_2 A small and fast window manager based on BlackBox > > > fluxconf-0.9.4 Fluxconf is a configuration program for the fluxb= ox window > > > fluxter-0.1.0 Dekstop pager for the Fluxbox Slit > > > fontconfig-2.2.90_3 An XML-based font configuration API for X Windows > > > freefonts-0.10_2 A collection of ATM fonts (not all free) from the= CICA arch > > > freetype-1.3.1_2 A free and portable TrueType font rendering engin= e > > > freetype2-2.1.5_1 A free and portable TrueType font rendering engin= e > > > fribidi-0.10.4_1 A Free Implementation of the Unicode Bidirectiona= l Algorith > > > gail-1.4.1 An implementation of the ATK interfaces for GTK+ = widgets > > > gaim-0.71_4 Gtk+-2.0 open-source 'clone' of AOL's Instant Mes= senger cli > > > gal-0.24 A collection of widgets taken from GNOME gnumeric= and evolu > > > gal2-1.99.10 A collection of widgets taken from GNOME 2 gnumer= ic > > > galeon2-1.3.9_1 A GNOME 2 Web browser based on gecko (the Mozilla= rendering > > > gcalctool-4.3.15 A GNOME 2 calculator tool based on the old calcto= ol for Ope > > > gcc-3.1.1_20020909 GNU Compiler Collection 3.1 (inprogress version) > > > gcc-3.2.3 GNU Compiler Collection 3.2.3 > > > gcc-3.3.1_20030804 GNU Compiler Collection 3.3 > > > gconf-1.0.9_6 A configuration database system for GNOME > > > gconf-editor-2.4.0,1 A gconf database editor for the GNOME 2 environm= ent > > > gconf2-2.4.0.1 A configuration database system for GNOME > > > gdbm-1.8.3 The GNU database manager > > > gdeskcal-0.55 A calendar for the gnome2 desktop with smooth alp= ha-blendin > > > gdk-pixbuf-0.22.0 A graphic library for GTK+ > > > gdm2-2.4.4.3_1 GNOME 2 version of xdm display manager > > > gedit2-2.4.0 A small but powerful text editor for Gnome 2 Desk= top Enviro > > > getmail-3.2.0 POP3 mail retriever with reliable Maildir and com= mand deliv > > > gettext-0.12.1 GNU gettext package > > > gftp-gnome-2.0.15 A free multithreaded GTK-based GUI ftp and sftp c= lient > > > ggv2-2.4.0.2 GNOME 2 ghostscript viewer > > > ghostscript-gnu-7.07_4 GNU Postscript interpreter > > > gimp-gnome-1.3.21,1 A GNU Image Manipulation Program (unstable develo= pment vers > > > gimp-print-4.2.5_1 GIMP Print Printer Driver > > > gkrellm-2.1.21 A GTK based system monitor > > > glade2-2.0.0 A user interface builder for GTK+/GNOME > > > gle-3.0.3 A GL Tubing and Extrusion Library > > > glib-1.2.10_10 Some useful routines of C programming (previous s= table vers > > > glib-2.2.3 Some useful routines of C programming (current st= able versi > > > glibwww-0.2_1 A library for people wanting to use libwww with g= tk/gnome > > > gmake-3.80_1 GNU version of 'make' utility > > > gnet-glib2-1.1.9_1 A simple network library built upon Glib-2 > > > gnet2-2.0.4 A simple network library built upon Glib-2 > > > gnome-icon-theme-1.0.9 A collection of icons for the GNOME 2 desktop > > > gnome-industrial-theme-0.2.29 Slick GNOME2 theme from Ximian > > > gnome-pkgview-1.0.2 Displays the version of GNOME components installe= d > > > gnome-themes-2.4.0 A collection of themes and icons for GNOME 2 desi= gned for a > > > gnome-themes-extras-0.4 More themes for the GNOME 2 desktop environme= nt > > > gnome2-2.4.0 The "meta-port" for the GNOME 2 integrated X11 de= sktop > > > gnomeapplets2-2.4.1_1 Applets components for the Gnome 2 Desktop Envi= ronment > > > gnomeaudio2-2.0.0 Sound files for use with GNOME 2 > > > gnomebasic-0.0.20 Provide Visual Basic compatible functionality for= GNOME, es > > > gnomecanvas-0.22.0 A graphics library for GNOME > > > gnomecontrolcenter-1.4.0.5_1 Control center for GNOME project > > > gnomecontrolcenter2-2.4.0 Control center for GNOME 2 project > > > gnomedb-0.2.96_1 Provide uniform access to data sources for the GN= OME enviro > > > gnomedesktop-2.4.0 Additional UI API for GNOME 2 > > > gnomegames2-2.4.1 The game applications package for the Gnome 2 Des= ktop Envir > > > gnomehier-1.0_9 An utility port, installing hierarchy of common G= NOME direc > > > gnomelibs-1.4.2_1 Libraries for GNOME, a GNU desktop environment > > > gnomemag-0.10.3 GNOME screen magnifier > > > gnomemedia2-2.4.0_1 Multimedia applications for the GNOME 2 desktop > > > gnomemeeting-0.98.5 GNOME H323 Video Conferencing program, similar to= NetMeetin > > > gnomemimedata-2.4.0 A MIME and Application database for GNOME > > > gnomepanel-2.4.0_2 Panel component for the GNOME 2 Desktop > > > gnomepilot2-2.0.10 3Com PalmPilot conduit system for GNOME 2 > > > gnomeprint-0.37 Gnome print support library > > > gnomesession-2.4.0 Session component for the GNOME 2 desktop > > > gnomespeech-0.2.7 GNOME text-to-speech API > > > gnomespell-1.0.5 A GNOME/Bonobo component for spell checking > > > gnomesystemmonitor-2.4.0 GNOME 2 system monitor program > > > gnometerminal-2.4.0.1 Terminal component for the GNOME 2 Desktop > > > gnomeuserdocs2-2.4.1 GNOME 2 users guide > > > gnomeutils2-2.4.0,1 GNOME 2 support utilities > > > gnomevfs-1.0.5_4 GNOME Virtual File System > > > gnomevfs2-2.4.0 GNOME Virtual File System > > > gnopernicus-0.7.1 Collection of accessibility apps for GNOME 2 > > > gnumeric2-1.1.20_1 The GNOME 2 spreadsheet > > > gnupg-1.2.3_1 The GNU Privacy Guard > > > gob-1.0.12 A preprocessor for making GTK+ objects with inlin= e C > > > gob2-2.0.6 A preprocessor for making GObjects with inline C > > > gocr-0.37 GOCR/JOCR is an OCR (Optical Character Recognitio= n) program > > > gok-0.8.3 GNOME On-Screen Keyboard (GOK) > > > gpdf-0.110 GNOME version of xpdf > > > gqmpeg-gnome-0.19.0 Another gtk-based MP3 frontend > > > gqview-1.2.2_1 Another gtk-based graphic file viewer > > > grc-1.0.6 Generic Colouriser > > > gstreamer-0.6.3 Development framework for creating media applicat= ions > > > gstreamer-plugins-0.6.3_1 GStreamer written collection of plugins han= dling several me > > > gtk-1.2.10_10 Gimp Toolkit for X11 GUI (previous stable version= ) > > > gtk-2.2.4_1 Gimp Toolkit for X11 GUI (current stable version) > > > gtk-Mac2-theme-200003050858 GTK+ engine theme based on the look of Ma= cOS > > > gtk-aqualightblue-theme-0.1 A port of the GTK+ AquaLightBlue theme to= GTK+ 2.0 > > > gtk-bluecurve-theme-0.73 Bluecurve unified-look theme for GTK1 and GT= K2 from RedHat > > > gtk-engines-0.12_2 Theme engine for gtk+ toolkits > > > gtk-engines2-2.2.0 Theme engine for the gtk+-2.0 toolkit > > > gtk-flat-theme2-0.1 A port of the Flat GTK+ engine to GTK+ 2.0 > > > gtk-qnxtheme-0.1_1 QNX-inspired theme for GTK1 and GTK2 > > > gtk-xfce-engine-2.1.6 An XFCE engine for GTK 2.0 > > > gtkglarea-1.99.0_2 An OpenGL widget for the GTK+2 GUI toolkit > > > gtkhtml-1.1.10_2 Lightweight HTML rendering/printing/editing engin= e > > > gtkhtml3-3.0.9 Lightweight HTML rendering/printing/editing engin= e > > > gtksourceview-0.6.0 A text widget that adds syntax highlighting to th= e GtkTextV > > > gtkspell2-2.0.4 A GTK+ 2 spell checking component > > > gucharmap-gnome-1.0.0 A Unicode/ISO10646 character map and font viewe= r > > > guile-1.6.4_2 GNU Ubiquitous Intelligent Language for Extension > > > guppi-0.40.3_3 A ploting program for GNOME > > > gv-3.5.8_3 A PostScript and PDF previewer > > > hdf-4.1r5 Hierarchical Data Format library (from NCSA) > > > help2man-1.29 Automatically generating simple manual pages from= program o > > > id3lib-3.8.2 Library for manipulating ID3v1/v1.1 and ID3v2 tag= s > > > id3v2-0.1.9_1 Command line id3v2 tag editor > > > imake-4.3.0_1 Imake and other utilities from XFree86 > > > imlib-1.9.14_1 A graphic library for enlightenment package > > > imlib2-1.0.6_1 The next generation graphic library for enlighten= ment packa > > > intltool-0.27.2 Xml internationalization support for GNOME, and o= thers > > > ipcalc-0.35_1 IP Calculator > > > iso8879-1986_2 Character entity sets from ISO 8879:1986 (SGML) > > > ispell-3.2.06_3 An interactive spelling checker for multiple lang= uages > > > jabber-1.4.2 Online presence and instant messaging server > > > jade-1.2.1_5 An object-oriented SGML/XML parser toolkit and DS= SSL engine > > > jasper-1.700.2 An implementation of the codec specified in the J= PEG-2000 s > > > javavmwrapper-1.4 Wrapper script for various Java Virtual Machines > > > jbigkit-1.5 Lossless compression for bi-level images such as = scanned pa > > > jdk-1.3.1p8_2 Java Development Kit 1.3 > > > jdk-1.4.1p3_3 Java Development Kit 1.4.1 > > > jpeg-6b_1 IJG's jpeg compression utilities > > > kde-3.1.4 The "meta-port" for KDE > > > kdeaddons-3.1.4 Additional plugins and scripts for some KDE appli= cations > > > kdeadmin-3.1.4 KDE applications related to system administration > > > kdeartwork-3.1.4 Additional themes, sounds, wallpapers and window = styles for > > > kdebase-3.1.4 This package provides the basic applications for = the KDE sy > > > kdeedu-3.1.4 Collection of entertaining, educational programs = for KDE > > > kdegames-3.1.4 Games for the KDE integrated X11 desktop > > > kdegraphics-3.1.4 Graphics utilities for the KDE3 integrated X11 de= sktop > > > kdelibs-3.1.4 This is the base set of libraries needed by KDE p= rograms > > > kdemultimedia-3.1.4 Multimedia utilities for the KDE integrated X11 d= esktop > > > kdenetwork-3.1.4 Network-related programs and modules for KDE > > > kdepim-3.1.4 Personal Information Management tools for KDE > > > kdesdk-3.1.4 KDE Software Development Kit > > > kdetoys-3.1.4 Small applications for KDE > > > kdeutils-3.1.4 Utilities for the KDE integrated X11 desktop > > > kdevelop-2.1.5 Powerful IDE for developing KDE/Qt-based apps > > > koffice-1.2.1_1,1 Office Suite for KDE3 > > > lame-3.93.1 ISO code based fast MP3 encoder kit > > > lcms-1.09,1 Light Color Management System -- a color manageme= nt library > > > lha-1.14i_2 Archive files using LZSS and Huffman compression = (.lzh file > > > libIDL-0.8.2 A library for creating trees of CORBA Interface D= efinition > > > liba52-0.7.4 A free library for decoding ATSC A/52 streams, ak= a AC-3 > > > libao-esound-0.8.4_1 Portable audio output library > > > libart_lgpl2-2.3.16 Library for high-performance 2D graphics > > > libast-0.5 A library of assorted spiffy things > > > libaudiofile-0.2.4 A sound library for SGI audio file > > > libbonobo-2.4.1 A component and compound document system for GNOM= E2 > > > libbonoboui-2.4.0 GUI frontend to the libbonobo component of GNOME = 2 > > > libcapplet-1.4.0.5_1 A library for writing custom applets for GNOME C= ontrol Cent > > > libdivxdecore-0.4.7 OpenDivX decoding engine from Project Mayo > > > libdvdcss-1.2.8 Portable abstraction library for DVD decryption > > > libdvdnav-0.1.3 The library for the xine-dvdnav plugin > > > libdvdread-0.9.4 This is needed by ogle, which is a DVD player tha= t supports > > > libesmtp-1.0_1,1 A library for posting electronic mail > > > libexif-0.5.12_1 Library to read digital camera file meta-data > > > libfpx-1.2.0.9 Library routines for working with Flashpix images > > > libgail-gnome-1.0.2_2 An implementation of the ATK interfaces for GNO= ME widgets > > > libgda-0.2.96_1 Provides uniform access to different kinds of dat= a sources > > > libgda2-0.91.0 Provides uniform access to different kinds of dat= a sources > > > libghttp-1.0.9 GNOME http client library > > > libglade-0.17_2 GNOME glade library > > > libglade2-2.0.1_1 GNOME glade library > > > libgnome-2.4.0 Libraries for GNOME, a GNU desktop environment > > > libgnomecanvas-2.4.0 A graphics library for GNOME > > > libgnomedb-0.91.0 Library components for the GNOME database fronten= d > > > libgnomeprint-2.4.0 Gnome print support library > > > libgnomeprintui-2.4.0 Gnome print support library > > > libgnomeui-2.4.0.1_1 Libraries for the GNOME GUI, a GNU desktop envir= onment > > > libgnugetopt-1.2 GNU getopt library > > > libgsf-1.8.2 An extensible i/o abstraction for dealing with st= ructured f > > > libgtkhtml-2.4.1 Lightweight HTML rendering/printing/editing engin= e > > > libgtop2-2.0.5 GNOME 2 top library > > > libiconv-1.9.1_1 A character set conversion library > > > libijs-0.34 C library that supports plugin printer driver for= Ghostscri > > > libltdl-1.5 System independent dlopen wrapper > > > libmal-0.31 A library encapsulating malsync > > > libmikmod-esound-3.1.10_1 MikMod Sound Library > > > libmng-1.0.5_1 Multiple-image Network Graphics (MNG) reference l= ibrary > > > libmpeg2-0.3.1_1 A free library for decoding mpeg-2 and mpeg-1 vid= eo streams > > > libmusicbrainz-2.0.2_1 2nd generation incarnation of the CD Index - a= udio metadata > > > libogg-1.0_1,3 Ogg bitstream library > > > libole2-0.2.4 Support library for OLE functions (MS-Excel) for = gnumeric > > > librep-0.16.2_2 An Emacs Lisp like runtime library > > > librsvg2-2.4.0 Library for parsing and rendering SVG vector-grap= hic files > > > libsidplay-1.36.57 A Commodore SID-chip emulator library to play SID= music fil > > > libsoup-1.99.26 A SOAP (Simple Object Access Protocol) implementa= tion in C > > > libtool-1.3.5_1 Generic shared library support script > > > libtool-1.4.3_2 Generic shared library support script > > > libungif-4.1.0b1_1 Tools and library routines for working with GIF i= mages > > > libunicode-0.4_3 A library for manipulating Unicode characters and= strings > > > libusb-0.1.7 Library giving userland programs access to USB de= vices > > > libvorbis-1.0_1,3 Audio compression codec library > > > libwmf-0.2.8 Tools and library for converting Microsoft WMF (w= indows met > > > libwnck-2.4.0.1 Library used for writing pagers and taskslists > > > libwww-5.4.0 The W3C Reference Library > > > libxfce4gui-4.0.0 XFce 4 widget library required by xfce4 and xfwm4 > > > libxfce4mcs-4.0.0 XFce 4 settings management library used by most X= Fce 4 modu > > > libxfce4util-4.0.0 XFce 4 library with non-graphical helper function= s > > > libxine-1.0.r0_2 Libraries for xine multimedia player > > > libxml-1.8.17_1 Xml parser library for GNOME > > > libxml2-2.5.11 Xml parser library for GNOME > > > libxslt-1.0.33 The XSLT C library for GNOME > > > libzvt-2.0.1_6 Library components for Zed's Virtual Terminal > > > linc-1.0.3 A library for writing networked servers & clients > > > linux-divx4linux-5.0.20030428 Linux binary release of DivX (TM) Codec > > > linux-divxplayer-0.2.0 DivX(TM) Video Player for Linux from DivX.com > > > linux-esound-0.2.22_1 RPM of esound > > > linux-flashplugin-5.0r51 The official Macromedia Flash Player for Lin= ux Netscape and > > > linux-flashplugin-6.0r79 The official Macromedia Flash Player for Lin= ux Mozilla and > > > linux-gtk-1.2_2 RPM of the Gtk lib > > > linux-libaudiofile-0.1.11_2 RPM of audiofile > > > linux-openmotif-2.1.30 Motif toolkit Linux libraries > > > linux-opera-7.11.20030515_2 A blazingly fast, full-featured, standard= s-compliant browse > > > linux-png-1.0.14_2 RPM of the PNG lib > > > linux-realplayer-8.cs2_4 Linux RealPlayer 8.0 from RealNetworks > > > linux-sun-jdk-1.3.1.08 Sun Java Development Kit 1.3 for Linux > > > linux-sun-jdk-1.4.2.01_3 Sun Java Development Kit 1.4 for Linux > > > linux_base-7.1_5 The base set of packages needed in Linux mode > > > linuxdoc-1.1_1 The Linuxdoc SGML DTD > > > lynx-2.8.5d16_3 A non-graphical, text-based World-Wide Web client > > > lzo-1.08_1 Portable speedy, lossless data compression librar= y > > > lzop-1.01 Fast file compressor similar to gzip, using the L= ZO library > > > m4-1.4_1 GNU m4 > > > mad-esound-0.14.2b_3 High-quality MPEG audio decoder > > > man2html-3.0.1_1 Convert nroff(1) man pages to HTML > > > metacity-2.6.2 A window manager for the adult in you > > > metatheme2-0.9.7_1 An utility for managing "theme sets" that accomod= ate gtk, w > > > ming-0.2a_1 LGPL'ed Flash 4/5 movie output library with many = languages > > > mkcatalog-1.1 A maintainance utility for sgml catalog files > > > mkisofs-2.0.3 Create iso9660/Rock Ridge/Joliet filesystems > > > mmencode-2.7 Translate to and from mail-oriented encoding form= ats > > > mosfet-liquid-0.9.6_1 A High Performance Liquid KDE style engine > > > mozilla-1.4.1,2 The open source, standards compliant web browser > > > mozilla-firebird-0.6.1_1 Mozilla Firebird is the next generation brow= ser from the mo > > > mozilla-gtk2-1.4.1 The open source, standards compliant web browser > > > mozilla-headers-1.4.1,2 Header files for mozilla communicator web-sur= fboard > > > mp3blaster-3.1.3 MP3 console ncurses-based player > > > mpg123-esound-0.59r_9 Command-line player for mpeg layer 1, 2 and 3 a= udio > > > mpg321-0.2.10_2 A free command-line mp3 player, compatible with m= pg123 > > > mplayer-fonts-0.50 A font pack for the mplayer OSD and SUB > > > mplayer-gtk-esound-0.92.0_2 High performance media player/encoder sup= porting many forma > > > mplayer-skins-1.0.5_1 Skins for MPlayer's Graphical User Interface (G= UI) > > > mplayerplug-in-0.95_1 A Mozilla plugin for the MPlayer media player > > > mutt-1.4.1_4 The Mongrel of Mail User Agents (part Elm, Pine, = Mush, mh, > > > nasm-0.98.35,1 General-purpose multi-platform x86 assembler > > > nautilus-cd-burner-0.5.3_3 CD burner view for Nautilus > > > nautilus-media-0.3.3.1 GStreamer-based multimedia views for Nautilus > > > nautilus2-2.4.0_2 GNOME file manager and graphical shell developed = by Eazel > > > ncftp1-1.9.5 FTP replacement with advanced user interface > > > net-rhythmbox-0.4.8_2 Audio player for the Gnome 2 desktop environmen= t > > > netscape7-7.1 Linux Netscape suite > > > nmap-3.48_1 Port scanning utility for large networks > > > nmapfe-3.48_1 GUI frontend for the nmap scanning utility > > > normalize-0.7.5_2 A tool for adjusting the volume of wave/MP3 files= to a stan > > > nspr-4.3_2 A platform-neutral API for system level and libc = like funct > > > nss-3.8 A set of libraries to support development of secu= rity-enabl > > > ntp-4.1.1c.r3 The Network Time Protocol Distribution > > > numlockx-1.0 This little thingy allows you to start X with Num= Lock turne > > > oaf-0.6.10_1 Object Activation Framework for GNOME > > > ogle-0.9.1 Open DVD player that supports DVD menus > > > ogle-gnome-0.9.1_2 An add-on graphical user interface for Ogle > > > open-motif-2.2.2_1 Motif X11 Toolkit (industry standard GUI (IEEE 12= 95)) > > > openldap-client-2.0.27 Open source LDAP client implementation > > > openldap-server-2.1.22_2 Open source LDAP server implementation > > > openldap20-2.0.27 Open source LDAP client and server software > > > openoffice-1.0.3_2 Integrated wordprocessor/dbase/spreadheet/drawing= /chart/bro > > > openoffice-1.1.0_1 Integrated wordprocessor/dbase/spreadheet/drawing= /chart/bro > > > openquicktime-1.0 Portable library for handling Apple's QuickTime(T= M) files > > > p5-Authen-SASL-2.04 Perl5 module for SASL authentication > > > p5-Digest-HMAC-1.01 Perl5 interface to HMAC Message-Digest Algorithms > > > p5-Digest-MD5-2.27 Perl5 interface to the MD5 algorithm > > > p5-Digest-Nilsimsa-0.06 Perl version of Nilsimsa code > > > p5-Digest-SHA1-2.05 Perl interface to the SHA-1 Algorithm > > > p5-File-Spec-0.86 A Perl module for portably manipulating file spec= ifications > > > p5-HTML-Parser-3.32 Perl5 module for parse HTML tag > > > p5-HTML-Tagset-3.03 Some useful data table in parsing HTML > > > p5-MIME-Base64-2.21 Perl5 module for Base64 and Quoted-Printable enco= dings > > > p5-Mail-SpamAssassin-2.60 A highly efficient mail filter for identify= ing spam > > > p5-Mail-Tools-1.60 Perl5 modules for dealing with Internet e-mail me= ssages > > > p5-Net-1.17,1 Perl5 modules to access and use network protocols > > > p5-Net-DNS-0.41 Perl5 interface to the DNS resolver, and dymanic = updates > > > p5-PodParser-1.24 Modules to work with POD (Plain Old Documentation= ) > > > p5-Term-ANSIColor-1.07 Color screen output using ANSI escape sequence= s > > > p5-Test-Harness-2.30 Run perl standard test scripts with statistics > > > p5-Test-Simple-0.47_1 Basic utilities for writing tests in perl > > > p5-Time-HiRes-1.51,1 A perl5 module implementing High resolution time= , sleep, an > > > p5-URI-1.25 Perl5 interface to Uniform Resource Identifier (U= RI) refere > > > p5-type1inst-0.6.1 A script that helps install Postscript fonts in X= Window Sy > > > pan2-0.14.2 Threaded GNOME 2 newsreader based on Agent for Wi= ndows > > > pango-1.2.5 An open-source framework for the layout and rende= ring of i1 > > > pcre-4.4 Perl Compatible Regular Expressions library > > > perl-5.6.1_14 Practical Extraction and Report Language > > > pgp-5.0i_1 Public-Key encryption for the masses > > > pgpgpg-0.13 Wrapper for GnuPG to simulate PGP 2.6.x > > > pilot-link-0.11.7_2 PalmPilot communications utilities (backup/restor= e/install/ > > > pine-4.58 PINE(tm) -- a Program for Internet News & Email > > > pkgconfig-0.15.0 A utility used to retrieve information about inst= alled libr > > > plotutils-2.4.1 A plotting library and toolkit > > > png-1.2.5_2 Library for manipulating PNG images > > > popt-1.6.4_1 A getopt(3) like library with a number of enhance= ments, fro > > > portupgrade-20030723 FreeBSD ports/packages administration and manage= ment tool s > > > procmail-3.22_3 A local mail delivery agent > > > psiconv-0.8.3_1 A conversion utility to convert Psion 5(MX) files= into othe > > > pstoedit-3.33_1 Convert PostScript to other vector graphic format= s > > > py-gnome-2.0.0 A set of Python bindings for GNOME 2 > > > py23-expat-2.3.2_2 Python interface to the Expat XML parser > > > py23-gtk-2.0.0 A set of Python bindings for GTK > > > py23-numeric-23.0 The Numeric Extension to Python > > > py23-orbit-2.0.0 Python bindings for ORBit2 > > > py23-xml-0.8.3 The Python XML package, including parser, SAX, DO= M, and Exp > > > python-2.3.2 An interpreted object-oriented programming langua= ge > > > qt-3.2.1 A C++ X GUI toolkit > > > quanta-3.1.4,2 Comprehensive html/website development environmen= t > > > rar-3.20,1 File archiver (binary port) > > > razor-agents-2.36_1 A distributed, collaborative, spam detection and = filtering > > > rc_subr-1.16 Common startup and shutdown subroutines used by s= cripts > > > rdesktop-1.2.0 RDP client for Windows NT Terminal Server > > > rep-gtk2-gnome-0.17_2,1 GTK+-2 binding for rep Lisp interpreter > > > rhythmbox-0.5.3 Audio player for the Gnome 2 desktop environment > > > rpm-3.0.6_8 The Red Hat Package Manager > > > ruby-1.6.8.2003.04.19 An object-oriented interpreted scripting langua= ge > > > ruby-bdb1-0.2.1 Ruby interface to Berkeley DB revision 1.8x with = full featu > > > ruby-rdoc-0.9.0 Documentation from Ruby source files > > > ruby-shim-ruby18-1.8.0.p2.2003.04.19_1 A set of Ruby modules to provi= de Ruby 1.8 functionalities > > > rxvt-2.6.4_1 A low memory usage xterm replacement that support= s color > > > samba-2.2.8a A free SMB and CIFS client and server for UNIX > > > samba-libsmbclient-3.0.0 The shared lib from the samba packges > > > sane-backends-1.0.12_3 API for access to scanners, digitals camera, f= rame grabbers > > > screen-4.0.1_1 A multi-screen window manager > > > scrollkeeper-0.3.12_2,1 An Open Document Cataloging Project > > > sdl-1.2.5_2 Cross-platform multi-media development API (devel= opm. vers. > > > sdocbook-xml-4.1.2.5_1 "Simplified" DocBook XML DTD > > > sgmlformat-1.7_2 Generates groff and HTML from linuxdoc and docboo= k SGML doc > > > sharefonts-0.10 A collection of shareware ATM fonts from the CICA= archives > > > sidplay-1.0.9 A Commodore SID-chip emulator that plays SID musi= c files > > > soup-0.7.11 A SOAP (Simple Object Access Protocol) implementa= tion in C > > > sox-12.17.4 SOund eXchange - universal sound sample translato= r > > > speex-1.0.2,1 An open-source patent-free voice codec > > > startup-notification-0.5_1 Library that supports startup notification= spec from freede > > > sudo-1.6.7.5 Allow others to run commands as root > > > svgalib-1.4.3_1 A low level console graphics library > > > sylpheed-0.9.6 A lightweight, featureful, and fast GTK+ based e-= mail clien > > > tcl-8.3.5_2 Tool Command Language > > > teTeX-2.0.2_2 Thomas Esser's distribution of TeX & friends > > > tiff-3.6.0 Tools and library routines for working with TIFF = images > > > timidity++-esound-2.11.3_1 Software MIDI player > > > tk-8.3.5_2 Graphical toolkit for TCL > > > totem-0.99.5 A Xine-based video player for the Gnome 2 Desktop > > > tsclient-0.124 A GNOME 2 frontend for rdesktop > > > ttmkfdir-0.0_1 Create fonts.scale file for use with TrueType fon= t server > > > unix2dos-1.3 Translate ASCII files from DOS (cr/lf) to UNIX (l= f) > > > unzip-5.50_2 List, test and extract compressed files in a ZIP = archive > > > urwfonts-1.0 Another font package for X > > > uulib-0.5.18 A library for uu/xx/Base64/BinHex/yEnc de-/encodi= ng > > > vilearn-1.0 An interactive tutorial for the vi editor > > > vim-6.2.72 Vi "workalike", with many additional features > > > vnc-3.3.7_1 Display X and Win32 desktops on remote X/Win32/Ja= va display > > > vorbis-tools-1.0_4,3 Play, encode, and manage Ogg Vorbis files > > > vte-0.11.10_1 Terminal widget with improved accessibility and I= 18N suppor > > > w3m-0.4.1 A pager/text-based WWW browser > > > wavplay-1.4 A wav player and recorder > > > webfonts-0.21_1 TrueType core fonts for the Web > > > weblint-1.020 HTML validator and sanity checker > > > wget-1.8.2_4 Retrieve files from the Net via HTTP and FTP > > > win32-codecs-2.0.90,1 Huge compilation of Win32 binary codecs, includ= ing MPEG-4(D > > > windowmaker-0.80.2_1 GNUStep-compliant NeXTStep window manager clone > > > wmavgload-0.7.0 Another WindowMaker load gauge > > > wmcpuload-1.0.1 An "lcd" dockapp for windowmaker, which displays = the curren > > > wmfire-0.0.3.9 Window Maker dock app showing load average as a f= lame > > > wmicons-1.0 Icons mainly for use in Window Maker > > > wmmatrix-0.2 A DockApp that runs a version of the xmatrix scre= enhack > > > wrapper-1.0_3 Wrapper for XFree86-4 server > > > wterm-6.2.9 A color vt102 terminal emulator with transparency= support > > > x11amp-0.9.b1.1 X11-based MP3 player with nice graphical interfac= e > > > xanim-2.92.0 Play most popular animation formats and show pict= ures > > > xcdroast-0.98.a.14 Another X11 frontend to mkisofs/cdrecord > > > xchat2-2.0.5 An X11 IRC client using the GTK+ 2 toolkit > > > xfce-4.0.0 The "meta-port" for the XFce 4 desktop environmen= t > > > xfce4-desktop-4.0.0 XFce 4 desktop background manager and root menu > > > xfce4-fm-4.0.0 XFce 4 file manager > > > xfce4-fm-icons-4.0.0 XFce 4 icon themes for the xffm file manager > > > xfce4-iconbox-4.0.0 XFce 4 icon box, an alternative taskbar > > > xfce4-mcs-manager-4.0.0 XFce 4 settings manager > > > xfce4-mcs-plugins-4.0.0 XFce 4 settings manager plugins > > > xfce4-mixer-4.0.0 XFce 4 volume mixer module for xfce4-panel > > > xfce4-panel-4.0.0 XFce 4 panel module > > > xfce4-panel-themes-4.0.0 Icon themes for the XFce 4 panel > > > xfce4-print-4.0.0 XFce 4 graphical frontend for printing > > > xfce4-systray-4.0.0 XFce 4 system tray module for xfce4-panel > > > xfce4-toys-4.0.0 Toys for the XFce 4 panel > > > xfce4-utils-4.0.0 XFce 4 essential utilities and scripts > > > xfce4-wm-4.0.0 XFce 4 window manager > > > xfce4-wm-themes-4.0.0 XFce 4 window decoration themes for xfwm4 > > > xine-0.9.22_1 An X11 multimedia player > > > xmbmon-203 X/tty motherboard monitor for LM78/79, W8378x, AS= 99127F and > > > xmlcatmgr-0.2_1 SGML/XML catalog manager > > > xmms-esound-1.2.8_1 X Multimedia System --- An audio player with a Wi= namp GUI > > > xmms-goom-1.8.1 A cool XMMS visualization > > > xmms-jess-2.9.1 A XMMS visualization plugin that uses SDL > > > xmms-osssurround-0.1 OSSSuround adds Surround Sound capabilities to X= MMS > > > xmovie-1.9.8.1 A movie player for AVI, MPEG-2/4 and MOV movies > > > xmp-esound-2.0.4_1 A player for many different Amiga and PC module f= ormats > > > xmps-0.2.0 X MPEG Player System - a media player with a very= nice GUI > > > xmps-opendivx-plugin-0.0.1_2 xmps plugin using OpenDivX decoding engi= ne from Project May > > > xpostit-3.3.1 PostIt (R) messages onto your X11 screen > > > xsane-0.91 Gtk-based X11 frontend for SANE (Scanner Access N= ow Easy) > > > xscreensaver-gnome-4.13 Save your screen while you entertain your cat= (for GNOME us > > > xv-3.10a_3 An X11 program that displays images of various fo= rmats > > > xvid-0.9.2,1 An opensource MPEG-4 codec, based on OpenDivx > > > yelp-2.4.0_1 A help browser for the GNOME 2 desktop > > > ymessenger-0.99.19.1,20020902 Yahoo! Messenger - Instant messaging cl= ient > > > zenity-1.6 Display GNOME dialogs from the command line > > > zip-2.3_1 Create/update ZIP files compatible with pkzip > > > zoo-2.10.1 Manipulate archives of files in compressed form > > > > > > ----------------------- > > > steve@daemon:~> uname -a > > > FreeBSD daemon.g-e-e-k.net 4.9-RC FreeBSD 4.9-RC #10: Mon Oct 13 08:2= 5:31 > > > PDT 2003 root@daemon.g-e-e-k.net:/usr/obj/usr/src/sys/XEON i386 > > > > > > > > > +--------------------------------------------------------------------= -+ > > > |Steve Wingate > > > |MCSE, CCNA Tue Oct 14 21:10:00 PDT 2003 > > > +--------------------------------------------------------------------= -+ > > > |FreeBSD 4.9-PRERELEASE > > > | 9:10PM up 35 days, 13:42, 2 users, load averages: 0.00, 0.00, 0.00 > > > +--------------------------------------------------------------------= -+ > > > > >=20 > > +---------------------------------------------------------------------+ > > |Steve Wingate > > |MCSE, CCNA Tue Oct 14 21:20:00 PDT 2003 > > +---------------------------------------------------------------------+ > > |FreeBSD 4.9-PRERELEASE > > | 9:20PM up 35 days, 13:52, 2 users, load averages: 0.01, 0.00, 0.00 > > +---------------------------------------------------------------------+ > > _______________________________________________ > > 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= " > >> end of "Re: Abiword & resizing" from Steve Wingate << >=20 >=20 > -- > Adam Weinberger > vectors.cx >> adam@vectors.cx >> http://www.vectors.cx > magnesium.net << adamw@magnesium.net << http://www.magnesium.net/~adamw > FreeBSD >> adamw@FreeBSD.org >> http://people.freebsd.org/~adamw > #vim:set ts=3D8: 8-char tabs prevent tooth decay. > _______________________________________________ > 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 --=-UBg4qlvKUzEdyA/Hx4p8 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/jNzyb2iPiv4Uz4cRAhIOAJ9GXN0fTZ8/ae/IuOaFFvSZajDmoACgr7lp 1cQENFRBCNmNJB3nDCuFKB4= =jPCf -----END PGP SIGNATURE----- --=-UBg4qlvKUzEdyA/Hx4p8-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 05:57:25 2003 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 A61B316A4B3 for ; Wed, 15 Oct 2003 05:57:25 -0700 (PDT) Received: from apate.telenet-ops.be (apate.telenet-ops.be [195.130.132.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C81F43FBF for ; Wed, 15 Oct 2003 05:57:24 -0700 (PDT) (envelope-from bruno.van.den.bossche@pandora.be) Received: from localhost (localhost.localdomain [127.0.0.1]) by apate.telenet-ops.be (Postfix) with SMTP id 0796E37F3D for ; Wed, 15 Oct 2003 14:57:23 +0200 (MEST) Received: from Noisy.localhost.localdomain (D5E00357.kabel.telenet.be [213.224.3.87]) by apate.telenet-ops.be (Postfix) with SMTP id B419037EFB for ; Wed, 15 Oct 2003 14:57:22 +0200 (MEST) Date: Wed, 15 Oct 2003 14:57:22 +0200 From: Bruno Van Den Bossche To: freebsd-ports@freebsd.org Message-Id: <20031015145722.5d91b29b.bruno.van.den.bossche@pandora.be> X-Mailer: Sylpheed version 0.9.6 (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Bizarre scoring problem with Pan 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, 15 Oct 2003 12:57:25 -0000 Hello As you may know there's currently a problem with Pan on FreeBSD. Scoring doesn't work and creating new Scores doesn't work either. But I recently discoverd that after building and installing a new world and/or kernel the scoring works just fine _the first time_ I start Pan. Closing Pan and starting it again breaks the scoring again. I don't have a clue what may be the cause of this. But it's very reproduceable. Is there anyone in particular I should be reporting this to? -- Bruno Anoint, v.: To grease a king or other great functionary already sufficiently slippery. -- Ambrose Bierce, "The Devil's Dictionary" From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 08:24:59 2003 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 53BA116A4BF for ; Wed, 15 Oct 2003 08:24:59 -0700 (PDT) Received: from cloudburst.umist.ac.uk (cloudburst.umist.ac.uk [130.88.119.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FEF743FDF for ; Wed, 15 Oct 2003 08:24:55 -0700 (PDT) (envelope-from lewiz@black.lewiz.org) Received: from lh014.halls.umist.ac.uk ([130.88.163.14] helo=yellow.lewiz.org) by cloudburst.umist.ac.uk with esmtp (Exim 4.24) id 1A9nW9-0006jI-Ht for ports@freebsd.org; Wed, 15 Oct 2003 16:24:53 +0100 Received: from black.lewiz.org ([192.168.0.12]) by mail.lewiz.org with smtp (Exim 4.22) id 1A9nWD-000DmI-5X for ports@freebsd.org; Wed, 15 Oct 2003 16:24:57 +0100 Received: (nullmailer pid 30162 invoked by uid 4001); Wed, 15 Oct 2003 15:24:31 -0000 Date: Wed, 15 Oct 2003 16:24:31 +0100 From: Lewis Thompson To: ports@freebsd.org Message-ID: <20031015152431.GA78843@lewiz.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="adJ1OR3c6QgCpb/j" Content-Disposition: inline X-GPG-Fingerprint: 90A4 939E 3847 A3E4 8103 2A48 22DA B428 542F ED3F X-GPG-Info: http://www.westwood.karoo.net/pgpkey / horowitz.surfnet.nl User-Agent: Mutt/1.5.4i X-MailScanner-Information: Please contact the ISP for more information X-MailScanner: Found to be clean Subject: Kronolith problem. 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, 15 Oct 2003 15:24:59 -0000 --adJ1OR3c6QgCpb/j Content-Type: multipart/mixed; boundary="CdrF4e02JqNVZeln" Content-Disposition: inline --CdrF4e02JqNVZeln Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, Just tried to install kronolith and got the following: =3D=3D=3D> Checking if deskutils/kronolith already installed =3D=3D=3D> Documentation installed in /usr/local/share/doc/kronolith. =3D=3D=3D> Creating /var/calendar =3D=3D=3D> Creating /usr/local/etc/mpasswd Please enter a password for www's calendar: FOOBAR /usr/local/bin/htpasswd: not found *** Error code 127 Stop in /usr/ports/deskutils/kronolith. lewiz@red /usr/ports/deskutils/kronolith # ht htdbm htdigest html.cmap html.sdata htpasswd httpd =20 lewiz@red /usr/ports/deskutils/kronolith # ht lewiz@red /usr/ports/deskutils/kronolith # which htpasswd /usr/local/sbin/htpasswd lewiz@red /usr/ports/deskutils/kronolith # This is pretty simple and I changed the stuff in the Makefile. Attached is a patch that reflects my changes (although it's really not required). I don't know if the changes will hold true for APACHE13. Best wishes, -lewiz. --=20 I was so much older then, I'm younger than that now. --Bob Dylan, 1964. ------------------------------------------------------------------------ -| msn:purple@lewiz.net | jab:lewiz@jabber.org | url:http://lewiz.net |- --CdrF4e02JqNVZeln Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="kronolith_makefile.patch" --- Makefile.old Thu Sep 18 15:07:08 2003 +++ Makefile Wed Oct 15 16:22:58 2003 @@ -92,13 +92,13 @@ ${ECHO_MSG} "===> Creating ${LOCALBASE}/etc/mpasswd" ; \ ${ECHO} -n "Please enter a password for www's calendar: " ; \ (read PASSCAL; \ - ${LOCALBASE}/bin/htpasswd -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \ + ${LOCALBASE}/sbin/htpasswd -bc ${LOCALBASE}/etc/mpasswd www $${PASSCAL}; \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \ elif ! ${GREP} -q -e "^www" ${LOCALBASE}/etc/mpasswd ; then \ ${ECHO_MSG} "===> Adding www into ${LOCALBASE}/etc/mpasswd" ; \ ${ECHO} -n "Please enter a password for www's calendar: " ; \ (read PASSCAL; \ - ${LOCALBASE}/bin/htpasswd -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \ + ${LOCALBASE}/sbin/htpasswd -b ${LOCALBASE}/etc/mpasswd www $${PASSCAL} ; \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:$${PASSCAL}:" ${CONFDIR}/conf.php) \ else \ ${REINPLACE_CMD} -e "s:%%PASSCAL%%:www_cal_password:" ${CONFDIR}/conf.php ; \ --CdrF4e02JqNVZeln-- --adJ1OR3c6QgCpb/j Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/jWavItq0KFQv7T8RAo9EAKDOkyZ/BEXLkP1uQu71oqgOz6HWtwCfWpvv RyXrJUyXiLH3APKTu+mG4jo= =Q+5v -----END PGP SIGNATURE----- --adJ1OR3c6QgCpb/j-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 08:28:09 2003 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 7BD8C16A4B3 for ; Wed, 15 Oct 2003 08:28:09 -0700 (PDT) Received: from freebsd.org.ru (freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BAB743FBF for ; Wed, 15 Oct 2003 08:28:07 -0700 (PDT) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 487661B4; Wed, 15 Oct 2003 19:28:03 +0400 (MSD) Date: Wed, 15 Oct 2003 19:28:03 +0400 From: "Sergey A. Osokin" To: ports@FreeBSD.org Message-ID: <20031015152803.GR39789@freebsd.org.ru> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="z3Nkz3fRLNVT9Ca+" Content-Disposition: inline User-Agent: Mutt/1.5.4i Subject: a little HEADS UP: devel/allegro update 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, 15 Oct 2003 15:28:09 -0000 --z3Nkz3fRLNVT9Ca+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello allegro users, I have a plan to update our devel/allegro port to 4.1.11. Patch included. Please test it. Thanks. -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ --z3Nkz3fRLNVT9Ca+ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-allegro Index: ports/devel/allegro/Makefile =================================================================== RCS file: /home/pcvs/ports/devel/allegro/Makefile,v retrieving revision 1.16 diff -u -u -r1.16 Makefile --- ports/devel/allegro/Makefile 20 Apr 2003 02:56:20 -0000 1.16 +++ ports/devel/allegro/Makefile 15 Oct 2003 15:23:25 -0000 @@ -6,7 +6,7 @@ # PORTNAME= allegro -PORTVERSION= 4.1.4 +PORTVERSION= 4.1.11 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= alleg @@ -18,11 +18,12 @@ WANT_GNOME= yes USE_REINPLACE= yes USE_GMAKE= yes -USE_AUTOCONF_VER= 213 +USE_AUTOCONF_VER= 253 CONFIGURE_ENV= CPPFLAGS="${PTHREAD_CFLAGS} -DHAVE_LIBPTHREAD" \ LDFLAGS="${PTHREAD_LIBS}" CONFIGURE_ARGS= --enable-vga=no MAKEFILE= makefile +ALL_TARGET= full-build INSTALLS_SHLIB= yes SHLIB_VER= 41 Index: ports/devel/allegro/Makefile.man =================================================================== RCS file: /home/pcvs/ports/devel/allegro/Makefile.man,v retrieving revision 1.2 diff -u -u -r1.2 Makefile.man --- ports/devel/allegro/Makefile.man 30 Mar 2003 03:04:33 -0000 1.2 +++ ports/devel/allegro/Makefile.man 15 Oct 2003 15:21:46 -0000 @@ -7,6 +7,8 @@ DATAFILE.3 \ DIALOG.3 \ DIALOG_PLAYER.3 \ + END_OF_MAIN.3 \ + MENU_PLAYER.3 \ FONT.3 \ GFX_MODE.3 \ GFX_MODE_LIST.3 \ @@ -76,18 +78,15 @@ bitmap_mask_color.3 \ black_palette.3 \ blit.3 \ - bmp_read_line.3 \ - bmp_unwrite_line.3 \ - bmp_write_line.3 \ broadcast_dialog_message.3 \ calc_spline.3 \ calibrate_joystick.3 \ calibrate_joystick_name.3 \ + canonicalize_filename.3 \ centre_dialog.3 \ check_cpu.3 \ circle.3 \ circlefill.3 \ - clear.3 \ clear_bitmap.3 \ clear_keybuf.3 \ clear_scene.3 \ @@ -164,7 +163,6 @@ do_uconvert.3 \ dot_product.3 \ dot_product_f.3 \ - draw_character.3 \ draw_character_ex.3 \ draw_compiled_sprite.3 \ draw_gouraud_sprite.3 \ @@ -182,7 +180,54 @@ ellipsefill.3 \ empty_string.3 \ enable_triple_buffer.3 \ + ex12bit.3 \ + ex3buf.3 \ + ex3d.3 \ + exaccel.3 \ + exalpha.3 \ + exbitmap.3 \ + exblend.3 \ + excamera.3 \ + excolmap.3 \ + exconfig.3 \ + excustom.3 \ + exdata.3 \ + exdbuf.3 \ + exdodgy.3 \ + exexedat.3 \ + exfixed.3 \ + exflame.3 \ + exflip.3 \ + exgui.3 \ + exhello.3 \ exists.3 \ + exjoy.3 \ + exkeys.3 \ + exlights.3 \ + exmem.3 \ + exmidi.3 \ + exmouse.3 \ + expal.3 \ + expat.3 \ + exquat.3 \ + exrgbhsv.3 \ + exsample.3 \ + exscale.3 \ + exscn3d.3 \ + exscroll.3 \ + exshade.3 \ + exspline.3 \ + exsprite.3 \ + exstars.3 \ + exstream.3 \ + exswitch.3 \ + extimer.3 \ + extrans.3 \ + extruec.3 \ + exunicod.3 \ + exupdate.3 \ + exxfade.3 \ + exzbuf.3 \ fade_from.3 \ fade_from_range.3 \ fade_in.3 \ @@ -191,7 +236,6 @@ fade_out.3 \ fade_out_range.3 \ file_exists.3 \ - file_select.3 \ file_select_ex.3 \ file_size.3 \ file_time.3 \ @@ -199,7 +243,6 @@ find_datafile_object.3 \ find_dialog_focus.3 \ fix_filename_case.3 \ - fix_filename_path.3 \ fix_filename_slashes.3 \ fixacos.3 \ fixadd.3 \ @@ -232,7 +275,7 @@ floodfill.3 \ flush_config_file.3 \ font.3 \ - for_each_file.3 \ + for_each_file_ex.3 \ free_audio_stream_buffer.3 \ freeze_mouse_flag.3 \ ftofix.3 \ @@ -244,6 +287,8 @@ get_camera_matrix.3 \ get_camera_matrix_f.3 \ get_color.3 \ + get_color_conversion.3 \ + get_color_depth.3 \ get_compiled_sprite.3 \ get_config_argv.3 \ get_config_float.3 \ @@ -336,7 +381,6 @@ gui_shadow_box_proc.3 \ gui_strlen.3 \ gui_text_list_proc.3 \ - gui_textout.3 \ gui_textout_ex.3 \ hline.3 \ hook_config_section.3 \ @@ -345,6 +389,7 @@ identity_matrix_f.3 \ identity_quat.3 \ init_dialog.3 \ + init_menu.3 \ initialise_joystick.3 \ install_allegro.3 \ install_int.3 \ @@ -361,6 +406,7 @@ is_linear_bitmap.3 \ is_memory_bitmap.3 \ is_planar_bitmap.3 \ + is_relative_filename.3 \ is_same_bitmap.3 \ is_screen_bitmap.3 \ is_sub_bitmap.3 \ @@ -395,6 +441,8 @@ lock_bitmap.3 \ lock_midi.3 \ lock_sample.3 \ + make_absolute_filename.3 \ + make_relative_filename.3 \ makeacol.3 \ makeacol32.3 \ makeacol_depth.3 \ @@ -575,6 +623,7 @@ set_blender_mode_ex.3 \ set_burn_blender.3 \ set_clip.3 \ + set_close_button_callback.3 \ set_color.3 \ set_color_blender.3 \ set_color_conversion.3 \ @@ -614,8 +663,6 @@ set_uformat.3 \ set_volume.3 \ set_volume_per_voice.3 \ - set_window_close_button.3 \ - set_window_close_hook.3 \ set_window_title.3 \ set_write_alpha_blender.3 \ set_zbuffer.3 \ @@ -623,6 +670,7 @@ show_video_bitmap.3 \ shutdown_dialog.3 \ simulate_keypress.3 \ + shutdown_menu.3 \ simulate_ukeypress.3 \ solid_mode.3 \ spline.3 \ @@ -635,22 +683,13 @@ stretch_sprite.3 \ text_height.3 \ text_length.3 \ - text_mode.3 \ - textout.3 \ - textout_centre.3 \ textout_centre_ex.3 \ textout_ex.3 \ - textout_justify.3 \ textout_justify_ex.3 \ - textout_right.3 \ textout_right_ex.3 \ - textprintf.3 \ - textprintf_centre.3 \ textprintf_centre_ex.3 \ textprintf_ex.3 \ - textprintf_justify.3 \ textprintf_justify_ex.3 \ - textprintf_right.3 \ textprintf_right_ex.3 \ three_finger_flag.3 \ timer_can_simulate_retrace.3 \ @@ -679,6 +718,7 @@ unselect_palette.3 \ uoffset.3 \ update_dialog.3 \ + update_menu.3 \ ureadkey.3 \ uremove.3 \ usetat.3 \ Index: ports/devel/allegro/distinfo =================================================================== RCS file: /home/pcvs/ports/devel/allegro/distinfo,v retrieving revision 1.4 diff -u -u -r1.4 distinfo --- ports/devel/allegro/distinfo 30 Mar 2003 03:04:33 -0000 1.4 +++ ports/devel/allegro/distinfo 15 Oct 2003 15:21:37 -0000 @@ -1 +1 @@ -MD5 (allegro-4.1.4.tar.gz) = 6be4c094310e98615982bc980e832338 +MD5 (allegro-4.1.11.tar.gz) = 61568ff088fd074eaad8b5cc23ac40ff Index: ports/devel/allegro/pkg-plist =================================================================== RCS file: /home/pcvs/ports/devel/allegro/pkg-plist,v retrieving revision 1.9 diff -u -u -r1.9 pkg-plist --- ports/devel/allegro/pkg-plist 30 Mar 2003 03:04:33 -0000 1.9 +++ ports/devel/allegro/pkg-plist 15 Oct 2003 15:21:56 -0000 @@ -55,6 +55,7 @@ include/allegro/platform/aintdos.h include/allegro/platform/aintlnx.h include/allegro/platform/aintmac.h +include/allegro/platform/aintosx.h include/allegro/platform/aintqnx.h include/allegro/platform/aintunix.h include/allegro/platform/aintwin.h @@ -70,6 +71,8 @@ include/allegro/platform/almaccfg.h include/allegro/platform/almngw32.h include/allegro/platform/almsvc.h +include/allegro/platform/alosx.h +include/allegro/platform/alosxcfg.h include/allegro/platform/alplatf.h include/allegro/platform/alqnx.h include/allegro/platform/alqnxcfg.h @@ -144,6 +147,8 @@ %%PORTDOCS%%share/doc/allegro/alleg041.html %%PORTDOCS%%share/doc/allegro/alleg042.html %%PORTDOCS%%share/doc/allegro/alleg043.html +%%PORTDOCS%%share/doc/allegro/alleg044.html +%%PORTDOCS%%share/doc/allegro/alleg045.html %%PORTDOCS%%share/doc/allegro/allegro.css %%PORTDOCS%%share/doc/allegro/allegro.html %%PORTDOCS%%share/doc/allegro/api.html Index: ports/devel/allegro/files/patch-configure.in =================================================================== RCS file: /home/pcvs/ports/devel/allegro/files/patch-configure.in,v retrieving revision 1.4 diff -u -u -r1.4 patch-configure.in --- ports/devel/allegro/files/patch-configure.in 30 Mar 2003 03:04:33 -0000 1.4 +++ ports/devel/allegro/files/patch-configure.in 15 Oct 2003 15:22:09 -0000 @@ -1,22 +1,6 @@ ---- configure.in.orig Wed Oct 23 08:08:26 2002 -+++ configure.in Sun Nov 10 00:24:54 2002 -@@ -183,12 +183,12 @@ - TARGET_ARCH= - fi - if test "X$allegro_cv_support_fomit_frame_pointer" = "Xyes"; then -- CFLAGS="$TARGET_ARCH -O2 -funroll-loops -ffast-math -fomit-frame-pointer $WFLAGS" -+ CFLAGS="$TARGET_ARCH $CFLAGS -funroll-loops -ffast-math -fomit-frame-pointer $WFLAGS" - else -- CFLAGS="$TARGET_ARCH -O2 -funroll-loops -ffast-math $WFLAGS" -+ CFLAGS="$TARGET_ARCH $CFLAGS -funroll-loops -ffast-math $WFLAGS" - fi - ALLEGRO_DEBUG_CFLAGS="-g $WFLAGS -DDEBUGMODE" -- ALLEGRO_PROFILE_CFLAGS="-pg $TARGET_ARCH -O2 -funroll-loops -ffast-math $WFLAGS" -+ ALLEGRO_PROFILE_CFLAGS="-pg $TARGET_ARCH $CFLAGS -funroll-loops -ffast-math $WFLAGS" - if test "X$allegro_cv_can_use_pipe" = "Xyes"; then - CFLAGS="-pipe $CFLAGS" - ALLEGRO_DEBUG_CFLAGS="-pipe $ALLEGRO_DEBUG_CFLAGS" -@@ -245,8 +245,8 @@ +--- configure.in.orig Wed Oct 15 17:44:15 2003 ++++ configure.in Wed Oct 15 17:49:12 2003 +@@ -235,8 +235,8 @@ LINK_WITH_STATIC_LIBS=yes allegro_static_libraries=yes else @@ -27,7 +11,7 @@ LINK_WITH_STATIC_LIBS=no allegro_shared_libraries=yes fi -@@ -273,13 +273,13 @@ +@@ -264,13 +264,13 @@ fi if test "X$allegro_shared_libraries" = "Xyes"; then if test "X$allegro_build_normal_library" = "Xyes"; then @@ -44,12 +28,24 @@ fi fi AC_SUBST(ALLEGRO_LIB_TARGETS) -@@ -550,7 +550,7 @@ +@@ -647,9 +647,9 @@ + fi + ALLEGRO_PROFILE_CFLAGS="$CFLAGS -pg $TARGET_ARCH -O2 -funroll-loops -ffast-math $WFLAGS" + if test "X$allegro_cv_support_fomit_frame_pointer" = "Xyes"; then +- CFLAGS="$CFLAGS $TARGET_ARCH -O2 -funroll-loops -ffast-math -fomit-frame-pointer $WFLAGS" ++ CFLAGS="$CFLAGS $TARGET_ARCH -funroll-loops -ffast-math -fomit-frame-pointer $WFLAGS" + else +- CFLAGS="$CFLAGS $TARGET_ARCH -O2 -funroll-loops -ffast-math $WFLAGS" ++ CFLAGS="$CFLAGS $TARGET_ARCH -funroll-loops -ffast-math $WFLAGS" + fi + ALLEGRO_SFLAGS="-x assembler-with-cpp" + ALLEGRO_SHAREDLIB_CFLAGS="-fPIC -DALLEGRO_SHARED" +@@ -720,7 +720,7 @@ ${MAKE-make} depend else AC_MSG_WARN([Non-GNU make detected, trying gmake to build dependencies.]) - gmake depend + ${MAKE-make} depend - AC_MSG_WARN([You need to use GNU make to build Allegro.]) - AC_MSG_WARN([This might be called gmake on your system.]) fi + fi + Index: ports/devel/allegro/files/patch-makefile.in =================================================================== RCS file: /home/pcvs/ports/devel/allegro/files/patch-makefile.in,v retrieving revision 1.7 diff -u -u -r1.7 patch-makefile.in --- ports/devel/allegro/files/patch-makefile.in 30 Mar 2003 03:04:33 -0000 1.7 +++ ports/devel/allegro/files/patch-makefile.in 15 Oct 2003 15:22:09 -0000 @@ -1,23 +1,22 @@ ---- makefile.in.orig Wed Oct 23 08:08:26 2002 -+++ makefile.in Sun Nov 10 23:37:39 2002 +--- makefile.in.orig Wed Oct 15 17:50:22 2003 ++++ makefile.in Wed Oct 15 18:01:27 2003 @@ -20,7 +20,7 @@ mandir = @mandir@ libdir = @libdir@ - modulebasedir = @libdir@/allegro + modulebasedir = $(libdir)/allegro -moduledir = $(modulebasedir)/$(shared_major_minor) +moduledir = $(modulebasedir)/$(shared_version) EXE = OBJ = .o -@@ -29,13 +29,14 @@ +@@ -29,12 +29,13 @@ INFO_DIR = $(infodir)/dir DESTDIR = -ACLOCAL = aclocal -+ACLOCAL = true - ACLOCAL_M4 = $(srcdir)/aclocal.m4 -AUTOCONF = autoconf -AUTOHEADER = autoheader ++ACLOCAL = true +AUTOCONF = true +AUTOHEADER = true @@ -27,8 +26,8 @@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_INFO = @INSTALL_INFO@ -@@ -262,6 +263,11 @@ - all: lib modules programs docs +@@ -293,6 +294,11 @@ + full-build: lib modules programs docs lib: $(ALLEGRO_LIB_TARGETS) + @for l in alleg alld allp; do \ @@ -39,7 +38,7 @@ modules: $(ALLEGRO_MODULE_TARGETS) -@@ -349,35 +355,37 @@ +@@ -402,35 +408,37 @@ fi; \ done @for l in alleg alld allp; do \ @@ -55,7 +54,7 @@ @if test -n "$(ALLEGRO_MODULE_TARGETS)"; then \ $(mkinstalldirs) $(DESTDIR)$(moduledir); \ - for m in $(ALLEGRO_MODULE_TARGETS) modules.lst; do \ -+ for m in $(ALLEGRO_MODULE_TARGETS); do \ ++ for m in $(ALLEGRO_MODULE_TARGETS) ; do \ echo Installing $$m to $(DESTDIR)$(moduledir); \ - $(INSTALL_DATA) $$m $(DESTDIR)$(moduledir)/; \ + $(INSTALL_PROGRAM) $$m $(DESTDIR)$(moduledir)/; \ Index: ports/devel/allegro/files/patch-misc::deplib.sh =================================================================== RCS file: /home/pcvs/ports/devel/allegro/files/patch-misc::deplib.sh,v retrieving revision 1.2 diff -u -u -r1.2 patch-misc::deplib.sh --- ports/devel/allegro/files/patch-misc::deplib.sh 30 Mar 2003 03:04:33 -0000 1.2 +++ ports/devel/allegro/files/patch-misc::deplib.sh 15 Oct 2003 15:22:09 -0000 @@ -1,5 +1,5 @@ ---- misc/deplib.sh.orig Wed Oct 23 08:08:27 2002 -+++ misc/deplib.sh Sun Nov 10 00:40:21 2002 +--- misc/deplib.sh.orig Wed Oct 15 18:02:29 2003 ++++ misc/deplib.sh Wed Oct 15 18:03:43 2003 @@ -10,7 +10,7 @@ staticlib="lib${1}.a" staticobj="\$(${2}_OBJECTS)" @@ -13,8 +13,8 @@ echo " rm -f \$@" # gf: This bit is obviously gcc-specific # eb: Yes, but the GNU C Compiler doesn't always spell 'gcc' -- echo " \$(CC) -shared -o \$@ ${shareobj} \$(LDFLAGS) -Wl,-h,lib${1}.so.\$(shared_major_minor) \$(LIBS)" -+ echo " \$(CC) -shared -o \$@ ${shareobj} \$(LDFLAGS) -Wl,-h,lib${1}.so.\$(shared_version) \$(LIBS)" +- echo " \$(CC) -shared -o \$@ ${shareobj} ${3} \$(LDFLAGS) -Wl,-h,lib${1}.so.\$(shared_major_minor) \$(LIBS)" ++ echo " \$(CC) -shared -o \$@ ${shareobj} ${3} \$(LDFLAGS) -Wl,-h,lib${1}.so.\$(shared_version) \$(LIBS)" echo "" echo "\$(LIBDIR)/${unsharelib}: ${unshareobj}" echo " rm -f \$@" --z3Nkz3fRLNVT9Ca+-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 08:54:46 2003 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 897E116A4FB for ; Wed, 15 Oct 2003 08:54:46 -0700 (PDT) Received: from cs78133177.pp.htv.fi (cs78133177.pp.htv.fi [62.78.133.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0461F43FBD for ; Wed, 15 Oct 2003 08:54:43 -0700 (PDT) (envelope-from ekarkkai@pp.htv.fi) Received: from thunderbolt.my.domain (thunderbolt.my.domain [192.168.1.30]) h9FFseVZ000223; Wed, 15 Oct 2003 18:54:40 +0300 (EEST) (envelope-from ekarkkai@pp.htv.fi) Received: from thunderbolt.my.domain (localhost [127.0.0.1]) h9FFse97029825; Wed, 15 Oct 2003 18:54:40 +0300 (EEST) (envelope-from ejk@thunderbolt.my.domain) Received: (from ejk@localhost) by thunderbolt.my.domain (8.12.10/8.12.10/Submit) id h9FFsdGA029824; Wed, 15 Oct 2003 18:54:39 +0300 (EEST) (envelope-from ejk) Date: Wed, 15 Oct 2003 18:54:39 +0300 From: Esa Karkkainen To: freebsd-ports@freebsd.org Message-ID: <20031015155439.GA1125@pp.htv.fi> References: <20031015035020.10350.qmail@web80507.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031015035020.10350.qmail@web80507.mail.yahoo.com> User-Agent: Mutt/1.5.4i Subject: Re: Galeon compile fails after Mozilla upgrade - still! 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, 15 Oct 2003 15:54:46 -0000 On Tue, Oct 14, 2003 at 08:50:20PM -0700, Robert English wrote: > Hello again - Hello > > Something needs to be there that isn't. What else besides > Mozilla, if it were to be deinstalled and reinstalled, would > clear up this problem my system's having with Galeon? If you get the following error message undefined reference to `non-virtual thunk to +GlobalHistory::SetLastPageVisited(char const*)' when compiling galeon-1.2.12_1 from ports then patch included in http://www.freebsd.org/cgi/query-pr.cgi?pr=58072 will probably fix this particular problem. At least this patch worked for me. Or you can fix this problem the following way # cd /usr/ports/www/galeon # make patch # cd work/galeon-1.2.12/src/mozilla # vi GlobalHistory.cpp :s/MOZILLA_SNAPSHOT > 9/MOZILLA_SNAPSHOT >= 9/ # cd ../../../../ # make all && make install Or you can wait until some kind person with commit bit applies patch from PR 58072 to FreeBSD CVS tree. -- "In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move." -- Douglas Adams 1952 - 2001 From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 09:49:54 2003 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 938C216A4BF for ; Wed, 15 Oct 2003 09:49:54 -0700 (PDT) Received: from postfix4-2.free.fr (postfix4-2.free.fr [213.228.0.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD53843FBD for ; Wed, 15 Oct 2003 09:49:53 -0700 (PDT) (envelope-from thierry@pompo.net) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by postfix4-2.free.fr (Postfix) with ESMTP id 74C74C3CD; Wed, 15 Oct 2003 18:49:52 +0200 (CEST) Received: by graf.pompo.net (Postfix, from userid 1001) id 64927750E; Wed, 15 Oct 2003 18:49:10 +0200 (CEST) Date: Wed, 15 Oct 2003 18:49:10 +0200 From: Thierry Thomas To: Lewis Thompson Message-ID: <20031015164910.GE40209@graf.pompo.net> Mail-Followup-To: Lewis Thompson , ports@freebsd.org References: <20031015152431.GA78843@lewiz.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20031015152431.GA78843@lewiz.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.1i X-Operating-System: FreeBSD 4.9-RC i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: ports@freebsd.org Subject: Re: Kronolith problem. 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, 15 Oct 2003 16:49:54 -0000 Le Mer 15 oct 03 à 17:24:31 +0200, Lewis Thompson écrivait : > Hi, Hello, > Just tried to install kronolith and got the following: > > ===> Checking if deskutils/kronolith already installed > ===> Documentation installed in /usr/local/share/doc/kronolith. > ===> Creating /var/calendar > ===> Creating /usr/local/etc/mpasswd > Please enter a password for www's calendar: FOOBAR > /usr/local/bin/htpasswd: not found > *** Error code 127 > > Stop in /usr/ports/deskutils/kronolith. > lewiz@red /usr/ports/deskutils/kronolith # ht > htdbm htdigest html.cmap html.sdata htpasswd httpd > lewiz@red /usr/ports/deskutils/kronolith # ht > lewiz@red /usr/ports/deskutils/kronolith # which htpasswd > /usr/local/sbin/htpasswd > lewiz@red /usr/ports/deskutils/kronolith # > > This is pretty simple and I changed the stuff in the Makefile. > Attached is a patch that reflects my changes (although it's really not > required). I don't know if the changes will hold true for APACHE13. Thanks for the notice! APACHE13 installs htpasswd in /usr/local/bin and APACHE20 in /usr/local/sbin => I shall fix the port. -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 10:18:57 2003 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 5852716A4B3 for ; Wed, 15 Oct 2003 10:18:57 -0700 (PDT) Received: from smtp804.mail.sc5.yahoo.com (smtp804.mail.sc5.yahoo.com [66.163.168.183]) by mx1.FreeBSD.org (Postfix) with SMTP id BC7DF43FDF for ; Wed, 15 Oct 2003 10:18:56 -0700 (PDT) (envelope-from drakcap@pacbell.net) Received: from sta-m2-39.wvi.com (HELO desk) (drakcap@pacbell.net@204.119.61.94 with login) by smtp-sbc-v1.mail.vip.sc5.yahoo.com with SMTP; 15 Oct 2003 17:18:55 -0000 Message-ID: <000701c3933f$f8f60000$0701a8c0@desk> From: "Robert" To: References: <20031015035020.10350.qmail@web80507.mail.yahoo.com> <20031015155439.GA1125@pp.htv.fi> Date: Wed, 15 Oct 2003 10:15:43 -0700 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.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Subject: Re: Galeon compile fails after Mozilla upgrade - still! 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, 15 Oct 2003 17:18:57 -0000 I note, from the page to which you kindly referred me, that Marcus committed this patch as of 9 AM this morning. I'll bet that the next cvsup will include it. Thanks, Esa, for clearing up the mystery. RE --- "the purpose of the chief executive is not to wield power but to draw attention away from it." -- Douglas Adams (1952-2001) ----- Original Message ----- From: "Esa Karkkainen" To: Cc: "Robert English" Sent: Wednesday, October 15, 2003 8:54 AM Subject: Re: Galeon compile fails after Mozilla upgrade - still! > On Tue, Oct 14, 2003 at 08:50:20PM -0700, Robert English wrote: > > Hello again - > > Hello > > > > > Something needs to be there that isn't. What else besides > > Mozilla, if it were to be deinstalled and reinstalled, would > > clear up this problem my system's having with Galeon? > > If you get the following error message > > undefined reference to `non-virtual thunk to > +GlobalHistory::SetLastPageVisited(char const*)' > > when compiling galeon-1.2.12_1 from ports then patch included in > > http://www.freebsd.org/cgi/query-pr.cgi?pr=58072 > > will probably fix this particular problem. At least this patch worked for me. > > Or you can fix this problem the following way > > # cd /usr/ports/www/galeon > # make patch > # cd work/galeon-1.2.12/src/mozilla > # vi GlobalHistory.cpp > :s/MOZILLA_SNAPSHOT > 9/MOZILLA_SNAPSHOT >= 9/ > # cd ../../../../ > # make all && make install > > Or you can wait until some kind person with commit bit applies > patch from PR 58072 to FreeBSD CVS tree. > > -- > "In the beginning the Universe was created. This has made a lot of > people very angry and been widely regarded as a bad move." > -- Douglas Adams 1952 - 2001 From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 11:12:56 2003 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 5C79516A4B3; Wed, 15 Oct 2003 11:12:56 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C86A43FA3; Wed, 15 Oct 2003 11:12:55 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu74-159-108.nc.rr.com [24.74.159.108])h9FIAY0E020767; Wed, 15 Oct 2003 14:10:34 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h9FICHdm038526; Wed, 15 Oct 2003 14:12:18 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: FreeBSD GNOME Users Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-rAZ+ld/iQYKTL39MZANs" Organization: FreeBSD, Inc. Message-Id: <1066241563.721.27.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Wed, 15 Oct 2003 14:12:44 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on creme-brulee.marcuscom.com cc: ports@FreeBSD.org Subject: RFC: What to do with Mozilla 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, 15 Oct 2003 18:12:56 -0000 --=-rAZ+ld/iQYKTL39MZANs Content-Type: text/plain Content-Transfer-Encoding: quoted-printable As some of you may be aware, Mozilla 1.5 was released today (along with Firebird and Thunderbird updates which will be handled soon). The question is, what do we do with Mozilla 1.4.x? Do you resurrect mozilla-vendor to hold 1.4.x for a while, or do we just update www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due out shortly as well, and mozilla-devel will be updated to that. Joe --=20 Joe Marcus Clarke FreeBSD GNOME Team :: marcus@FreeBSD.org gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-rAZ+ld/iQYKTL39MZANs Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/jY4bb2iPiv4Uz4cRAgQvAJ9rby/OwDHL5um9f5vTvePixJXp9ACdH0On M2YWLSAqI38YfYRxws/Fqfo= =Jqmc -----END PGP SIGNATURE----- --=-rAZ+ld/iQYKTL39MZANs-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 11:55:56 2003 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 2AE4E16A4B3; Wed, 15 Oct 2003 11:55:56 -0700 (PDT) Received: from smtpout.mac.com (A17-250-248-86.apple.com [17.250.248.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AB2C43F3F; Wed, 15 Oct 2003 11:55:55 -0700 (PDT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin07-en2 [10.13.10.152]) by smtpout.mac.com (Xserve/MantshX 2.0) with ESMTP id h9FItshx020674; Wed, 15 Oct 2003 11:55:55 -0700 (PDT) Received: from mac.com (dpvc-68-161-244-25.ny325.east.verizon.net [68.161.244.25]) (authenticated bits=0)h9FItrEQ004437; Wed, 15 Oct 2003 11:55:54 -0700 (PDT) Date: Wed, 15 Oct 2003 14:55:50 -0400 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: Joe Marcus Clarke From: Charles Swiger In-Reply-To: <1066241563.721.27.camel@gyros> Message-Id: <31B6987E-FF41-11D7-881B-003065ABFD92@mac.com> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.552) cc: ports@FreeBSD.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 18:55:56 -0000 On Wednesday, October 15, 2003, at 02:12 PM, Joe Marcus Clarke wrote: > As some of you may be aware, Mozilla 1.5 was released today (along with > Firebird and Thunderbird updates which will be handled soon). The > question is, what do we do with Mozilla 1.4.x? Do you resurrect > mozilla-vendor to hold 1.4.x for a while, or do we just update > www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due > out > shortly as well, and mozilla-devel will be updated to that. Update www/mozilla to 1.5, but support 1.4 via a port named www/mozilla14 would provide backwards-compatibility in a fashion similar to other explicitly-versioned ports (squid, autoconf, python, etc). -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 12:01:53 2003 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 C236716A4DD for ; Wed, 15 Oct 2003 12:01:53 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEF0643FBF for ; Wed, 15 Oct 2003 12:01:52 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu74-159-108.nc.rr.com [24.74.159.108])h9FIxV0E027085; Wed, 15 Oct 2003 14:59:31 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h9FJ1Ldm038926; Wed, 15 Oct 2003 15:01:21 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Charles Swiger In-Reply-To: <31B6987E-FF41-11D7-881B-003065ABFD92@mac.com> References: <31B6987E-FF41-11D7-881B-003065ABFD92@mac.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-YJjck12lG/XVsUJdEYCH" Organization: FreeBSD, Inc. Message-Id: <1066244507.721.37.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Wed, 15 Oct 2003 15:01:48 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on creme-brulee.marcuscom.com cc: ports@FreeBSD.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 19:01:53 -0000 --=-YJjck12lG/XVsUJdEYCH Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-10-15 at 14:55, Charles Swiger wrote: > On Wednesday, October 15, 2003, at 02:12 PM, Joe Marcus Clarke wrote: > > As some of you may be aware, Mozilla 1.5 was released today (along with > > Firebird and Thunderbird updates which will be handled soon). The > > question is, what do we do with Mozilla 1.4.x? Do you resurrect > > mozilla-vendor to hold 1.4.x for a while, or do we just update > > www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due=20 > > out > > shortly as well, and mozilla-devel will be updated to that. >=20 > Update www/mozilla to 1.5, but support 1.4 via a port named=20 > www/mozilla14 would provide backwards-compatibility in a fashion=20 > similar to other explicitly-versioned ports (squid, autoconf, python,=20 > etc). That's what mozilla-vendor used to be for. Why should we continue to support 1.4.x? Do you have something that requires it? Joe --=20 Joe Marcus Clarke FreeBSD GNOME Team :: marcus@FreeBSD.org gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-YJjck12lG/XVsUJdEYCH Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/jZmbb2iPiv4Uz4cRArrGAJ9W4H7JEoRamdwhPczcotOK8+hg1QCeMajM S8P6ZNIIFeI2hMZ0IOSqkOU= =VJcB -----END PGP SIGNATURE----- --=-YJjck12lG/XVsUJdEYCH-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 12:09:34 2003 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 8F1A816A4B3; Wed, 15 Oct 2003 12:09:34 -0700 (PDT) Received: from lakemtao06.cox.net (lakemtao06.cox.net [68.1.17.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 604DA43FB1; Wed, 15 Oct 2003 12:09:33 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.11]) by lakemtao06.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20031015190933.XUAI10862.lakemtao06.cox.net@mezz.mezzweb.com>; Wed, 15 Oct 2003 15:09:33 -0400 To: Charles Swiger References: <31B6987E-FF41-11D7-881B-003065ABFD92@mac.com> Message-ID: From: Jeremy Messenger Content-Type: text/plain; format=flowed; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Wed, 15 Oct 2003 14:08:27 -0500 In-Reply-To: <31B6987E-FF41-11D7-881B-003065ABFD92@mac.com> User-Agent: Opera7.21/Linux M2 build 480 cc: ports@FreeBSD.org cc: Joe Marcus Clarke Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 19:09:34 -0000 On Wed, 15 Oct 2003 14:55:50 -0400, Charles Swiger wrote: > On Wednesday, October 15, 2003, at 02:12 PM, Joe Marcus Clarke wrote: >> As some of you may be aware, Mozilla 1.5 was released today (along with >> Firebird and Thunderbird updates which will be handled soon). The >> question is, what do we do with Mozilla 1.4.x? Do you resurrect >> mozilla-vendor to hold 1.4.x for a while, or do we just update >> www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due out >> shortly as well, and mozilla-devel will be updated to that. > > Update www/mozilla to 1.5 I agree, I heard that it's faster than 1.4.. > but support 1.4 via a port named www/mozilla14 would provide > backwards-compatibility in a fashion similar to other > explicitly-versioned ports (squid, autoconf, python, etc). Why www/mozilla4? Is there any good reason why to keep Mozilla 1.4? Does the 1.5 break the compatibility to the other apps? Cheers, Mezz -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 12:12:43 2003 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 C20DC16A4B3 for ; Wed, 15 Oct 2003 12:12:43 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF32643F93 for ; Wed, 15 Oct 2003 12:12:40 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu74-159-108.nc.rr.com [24.74.159.108])h9FJAI0E028678; Wed, 15 Oct 2003 15:10:18 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h9FJCCdm039033; Wed, 15 Oct 2003 15:12:12 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Jeremy Messenger In-Reply-To: References: <31B6987E-FF41-11D7-881B-003065ABFD92@mac.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-NoReQLSsWrT3zOLSzDHf" Organization: FreeBSD, Inc. Message-Id: <1066245158.721.40.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Wed, 15 Oct 2003 15:12:38 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on creme-brulee.marcuscom.com cc: ports@FreeBSD.org cc: Charles Swiger Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 19:12:43 -0000 --=-NoReQLSsWrT3zOLSzDHf Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-10-15 at 15:08, Jeremy Messenger wrote: > On Wed, 15 Oct 2003 14:55:50 -0400, Charles Swiger wrot= e: >=20 > > On Wednesday, October 15, 2003, at 02:12 PM, Joe Marcus Clarke wrote: > >> As some of you may be aware, Mozilla 1.5 was released today (along wit= h > >> Firebird and Thunderbird updates which will be handled soon). The > >> question is, what do we do with Mozilla 1.4.x? Do you resurrect > >> mozilla-vendor to hold 1.4.x for a while, or do we just update > >> www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due o= ut > >> shortly as well, and mozilla-devel will be updated to that. > > > > Update www/mozilla to 1.5 >=20 > I agree, I heard that it's faster than 1.4.. >=20 > > but support 1.4 via a port named www/mozilla14 would provide=20 > > backwards-compatibility in a fashion similar to other=20 > > explicitly-versioned ports (squid, autoconf, python, etc). >=20 > Why www/mozilla4? Is there any good reason why to keep Mozilla 1.4? Does=20 > the 1.5 break the compatibility to the other apps? Yeah, I'm honestly looking for feedback here, but if you say that we should keep 1.4.x, I'd like to know why. If there's a good reason (like OOo), then by all means, we can keep it. Joe >=20 > Cheers, > Mezz --=20 Joe Marcus Clarke FreeBSD GNOME Team :: marcus@FreeBSD.org gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-NoReQLSsWrT3zOLSzDHf Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/jZwmb2iPiv4Uz4cRAmS8AKCmtFJxZaON7U/mJTgfb/nMX60OvgCfRmLB 0fOZCQsFr7LMxZF0JTgpVIQ= =I8Yu -----END PGP SIGNATURE----- --=-NoReQLSsWrT3zOLSzDHf-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 12:13:26 2003 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 A95F616A4B3; Wed, 15 Oct 2003 12:13:26 -0700 (PDT) Received: from mailgate.rz.uni-karlsruhe.de (mailgate.rz.uni-karlsruhe.de [129.13.64.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 244D243F93; Wed, 15 Oct 2003 12:13:23 -0700 (PDT) (envelope-from riggs@o503.hadiko.de) Received: from o503.hadiko.de (hadio503.hadiko.uni-karlsruhe.de [172.20.45.138]) by mailgate.rz.uni-karlsruhe.de with esmtp (Exim 3.36 #1) id 1A9r5F-0004iV-00; Wed, 15 Oct 2003 21:13:21 +0200 Received: from o503.hadiko.de (RIXT@localhost [127.0.0.1]) by o503.hadiko.de (8.12.9p1/8.12.9) with ESMTP id h9FJDLY6072393; Wed, 15 Oct 2003 21:13:21 +0200 (CEST) (envelope-from riggs@o503.hadiko.de) Received: (from riggs@localhost) by o503.hadiko.de (8.12.9p1/8.12.9/Submit) id h9FJDLMP072392; Wed, 15 Oct 2003 21:13:21 +0200 (CEST) (envelope-from riggs) Date: Wed, 15 Oct 2003 21:13:21 +0200 From: "Thomas E. Zander" To: Joe Marcus Clarke Message-ID: <20031015191321.GA72308@o503.hadiko.de> References: <1066241563.721.27.camel@gyros> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+HP7ph2BbKc20aGI" Content-Disposition: inline In-Reply-To: <1066241563.721.27.camel@gyros> Organization: RiggiServ - Ihr Partner =?iso-8859-15?Q?f?= =?iso-8859-15?Q?=FCr?= alles Delikate X-PGP-KeyID: 0xC85996CD X-PGP-Fingerprint: 4F59 75B4 4CE3 3B00 BC61 5400 8DD4 8929 C859 96CD X-Mailer: Riggisoft Ausguck Eggsbress (Build 1066244744) X-Operating-System: Riggiland BSD 5.1-RELEASE-p10 (To serve and protect.) cc: FreeBSD GNOME Users cc: ports@freebsd.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 19:13:26 -0000 --+HP7ph2BbKc20aGI Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Wed, 15. Oct 2003, at 14:12 -0400, Joe Marcus Clarke wrote according to [RFC: What to do with Mozilla]: > what do we do with Mozilla 1.4.x? I don't see mozilla as something that's unlike any other port, so I'd think of an update to 1.5 as a completely normal port updating process. If we have a working 1.5 version I don't see a particular need to have an 1.4.x version. Simple, isn't it? :-) Riggs --=20 - "[...] I talked to the computer at great length and -- explained my view of the Universe to it" said Marvin. --- And what happened?" pressed Ford. ---- "It committed suicide." said Marvin. --+HP7ph2BbKc20aGI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQE/jZxRjdSJKchZls0RAoaAAJwMdtxIfidNAvzkjUne+PMw8bhDAQCeOQK6 7PSTprMHtXVFbYU36YNSD7M= =9rK4 -----END PGP SIGNATURE----- --+HP7ph2BbKc20aGI-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 12:17:58 2003 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 B8DAB16A4B3; Wed, 15 Oct 2003 12:17:58 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EBCB43F3F; Wed, 15 Oct 2003 12:17:55 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu74-159-108.nc.rr.com [24.74.159.108])h9FJFY0E029336; Wed, 15 Oct 2003 15:15:34 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h9FJHGdm039107; Wed, 15 Oct 2003 15:17:21 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: "Thomas E. Zander" In-Reply-To: <20031015191321.GA72308@o503.hadiko.de> References: <1066241563.721.27.camel@gyros> <20031015191321.GA72308@o503.hadiko.de> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-3Ylx9nGtOBIXWBjLfUjR" Organization: FreeBSD, Inc. Message-Id: <1066245462.721.42.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Wed, 15 Oct 2003 15:17:42 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on creme-brulee.marcuscom.com cc: FreeBSD GNOME Users cc: ports@FreeBSD.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 19:17:58 -0000 --=-3Ylx9nGtOBIXWBjLfUjR Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-10-15 at 15:13, Thomas E. Zander wrote: > Hi, >=20 > On Wed, 15. Oct 2003, at 14:12 -0400, Joe Marcus Clarke wrote > according to [RFC: What to do with Mozilla]: >=20 > > what do we do with Mozilla 1.4.x? >=20 > I don't see mozilla as something that's unlike any other port, so I'd > think of an update to 1.5 as a completely normal port updating process. > If we have a working 1.5 version I don't see a particular need to have > an 1.4.x version. >=20 > Simple, isn't it? :-) Yep. It's just last time I removed mozilla-vendor, I broke OOo. I want to make sure there are no ports/projects that depend on 1.4.x. Joe >=20 > Riggs --=20 Joe Marcus Clarke FreeBSD GNOME Team :: marcus@FreeBSD.org gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-3Ylx9nGtOBIXWBjLfUjR Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/jZ1Wb2iPiv4Uz4cRAtR9AKCgxOrq5YiJPoInfMtdPKqvkl8L/wCeO6K0 FtPKIjfi5qff7vFwTxOTOwQ= =1eX2 -----END PGP SIGNATURE----- --=-3Ylx9nGtOBIXWBjLfUjR-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 12:24:27 2003 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 5C13116A4B3; Wed, 15 Oct 2003 12:24:27 -0700 (PDT) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69BB043FDF; Wed, 15 Oct 2003 12:24:26 -0700 (PDT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin07-en2 [10.13.10.152]) by smtpout.mac.com (Xserve/MantshX 2.0) with ESMTP id h9FJOQ0Q000113; Wed, 15 Oct 2003 12:24:26 -0700 (PDT) Received: from mac.com (dpvc-68-161-244-25.ny325.east.verizon.net [68.161.244.25]) (authenticated bits=0)h9FJOOEQ016258; Wed, 15 Oct 2003 12:24:25 -0700 (PDT) Date: Wed, 15 Oct 2003 15:24:24 -0400 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: Joe Marcus Clarke From: Charles Swiger In-Reply-To: <1066244507.721.37.camel@gyros> Message-Id: <2F7A3BB4-FF45-11D7-881B-003065ABFD92@mac.com> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.552) cc: ports@FreeBSD.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 19:24:27 -0000 On Wednesday, October 15, 2003, at 03:01 PM, Joe Marcus Clarke wrote: > On Wed, 2003-10-15 at 14:55, Charles Swiger wrote: >> Update www/mozilla to 1.5, but support 1.4 via a port named >> www/mozilla14 would provide backwards-compatibility in a fashion >> similar to other explicitly-versioned ports (squid, autoconf, python, >> etc). > > That's what mozilla-vendor used to be for. Why should we continue to > support 1.4.x? Do you have something that requires it? I don't have anything which requires Mozilla 1.4, no. I'm not sure we (you?) should continue to support 1.4.x. However, I see plenty of examples where multiple versions of a port are supported (for whatever reasons): 42-q% /bin/ls -d lang/python?? lang/gcc?? devel/automake?? devel/autoconf??? devel/autoconf213/ lang/gcc27/ lang/gcc34/ devel/autoconf253/ lang/gcc28/ lang/python15/ devel/autoconf257/ lang/gcc30/ lang/python20/ devel/automake14/ lang/gcc31/ lang/python21/ devel/automake15/ lang/gcc32/ lang/python22/ devel/automake17/ lang/gcc33/ ...and I find the name "www/mozilla14" to be more intuitive and descriptive than "www/mozilla-vendor", since the latter name I associate with Netscape-branding. YMMV, but thanks for your consideration. :-) -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 12:29:53 2003 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 42B1516A4B3; Wed, 15 Oct 2003 12:29:53 -0700 (PDT) Received: from mailgate.rz.uni-karlsruhe.de (mailgate.rz.uni-karlsruhe.de [129.13.64.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E7D343FBD; Wed, 15 Oct 2003 12:29:52 -0700 (PDT) (envelope-from riggs@o503.hadiko.de) Received: from o503.hadiko.de (hadio503.hadiko.uni-karlsruhe.de [172.20.45.138]) by mailgate.rz.uni-karlsruhe.de with esmtp (Exim 3.36 #1) id 1A9rLD-00062Q-00; Wed, 15 Oct 2003 21:29:51 +0200 Received: from o503.hadiko.de (RIXT@localhost [127.0.0.1]) by o503.hadiko.de (8.12.9p1/8.12.9) with ESMTP id h9FJToY6072500; Wed, 15 Oct 2003 21:29:51 +0200 (CEST) (envelope-from riggs@o503.hadiko.de) Received: (from riggs@localhost) by o503.hadiko.de (8.12.9p1/8.12.9/Submit) id h9FJToqV072499; Wed, 15 Oct 2003 21:29:50 +0200 (CEST) (envelope-from riggs) Date: Wed, 15 Oct 2003 21:29:50 +0200 From: "Thomas E. Zander" To: Joe Marcus Clarke Message-ID: <20031015192950.GB72308@o503.hadiko.de> References: <1066241563.721.27.camel@gyros> <20031015191321.GA72308@o503.hadiko.de> <1066245462.721.42.camel@gyros> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0ntfKIWw70PvrIHh" Content-Disposition: inline In-Reply-To: <1066245462.721.42.camel@gyros> Organization: RiggiServ - Ihr Partner =?iso-8859-15?Q?f?= =?iso-8859-15?Q?=FCr?= alles Delikate X-PGP-KeyID: 0xC85996CD X-PGP-Fingerprint: 4F59 75B4 4CE3 3B00 BC61 5400 8DD4 8929 C859 96CD X-Mailer: Riggisoft Ausguck Eggsbress (Build 1066244744) X-Operating-System: Riggiland BSD 5.1-RELEASE-p10 (To serve and protect.) cc: FreeBSD GNOME Users cc: ports@freebsd.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 19:29:53 -0000 --0ntfKIWw70PvrIHh Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, 15. Oct 2003, at 15:17 -0400, Joe Marcus Clarke wrote according to [Re: RFC: What to do with Mozilla]: > Yep. It's just last time I removed mozilla-vendor, I broke OOo. I want > to make sure there are no ports/projects that depend on 1.4.x. Yes, that's a bit unfortunate if an important project like OOo, galeon, epiphany... would break. You certainly do the right thing to ask here. Riggs --=20 - "[...] I talked to the computer at great length and -- explained my view of the Universe to it" said Marvin. --- And what happened?" pressed Ford. ---- "It committed suicide." said Marvin. --0ntfKIWw70PvrIHh Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQE/jaAujdSJKchZls0RAuKHAJ9FDmHtRvfYk2h3OvllkR6vhh9XDQCeNDbH Nl75SJiZTKuu+dlAN77CRNk= =paxZ -----END PGP SIGNATURE----- --0ntfKIWw70PvrIHh-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 12:31:59 2003 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 CDA8116A4BF for ; Wed, 15 Oct 2003 12:31:59 -0700 (PDT) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3E6443F93 for ; Wed, 15 Oct 2003 12:31:58 -0700 (PDT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin08-en2 [10.13.10.153]) by smtpout.mac.com (Xserve/MantshX 2.0) with ESMTP id h9FJVw0Q003207 for ; Wed, 15 Oct 2003 12:31:58 -0700 (PDT) Received: from mac.com (dpvc-68-161-244-25.ny325.east.verizon.net [68.161.244.25]) (authenticated bits=0) by mac.com (Xserve/smtpin08/MantshX 3.0) with ESMTP id h9FJVvbn003158 for ; Wed, 15 Oct 2003 12:31:58 -0700 (PDT) Date: Wed, 15 Oct 2003 15:31:57 -0400 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) From: Charles Swiger To: ports@FreeBSD.org Content-Transfer-Encoding: 7bit In-Reply-To: Message-Id: <3D864993-FF46-11D7-881B-003065ABFD92@mac.com> X-Mailer: Apple Mail (2.552) Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 19:31:59 -0000 On Wednesday, October 15, 2003, at 03:08 PM, Jeremy Messenger wrote: [ ... ] > Why www/mozilla4? Is there any good reason why to keep Mozilla 1.4? > Does the 1.5 break the compatibility to the other apps? The main compatibility problem I've seen going from 1.4 to the various 1.5 prerelease builds is with plug-in extensions like Enigmail, which does PGP/GnuPG. -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 12:39:18 2003 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 1657516A4B3 for ; Wed, 15 Oct 2003 12:39:18 -0700 (PDT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id D92C843FAF for ; Wed, 15 Oct 2003 12:39:10 -0700 (PDT) (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 h9FJe3Ma072198 for ; Wed, 15 Oct 2003 16:40:04 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.9/8.12.9) with ESMTP id h9FJcn1H038037 for ; Wed, 15 Oct 2003 16:38:49 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.9/8.12.9/Submit) id h9FJcm6N038036 for ports@freebsd.org; Wed, 15 Oct 2003 16:38:48 -0300 (ART) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Wed, 15 Oct 2003 16:38:48 -0300 From: Fernan Aguero To: ports@freebsd.org Message-ID: <20031015193848.GE34747@iib.unsam.edu.ar> Mail-Followup-To: ports@freebsd.org References: <1066244507.721.37.camel@gyros> <2F7A3BB4-FF45-11D7-881B-003065ABFD92@mac.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2F7A3BB4-FF45-11D7-881B-003065ABFD92@mac.com> User-Agent: Mutt/1.4.1i Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 19:39:18 -0000 +----[ Charles Swiger (15.Oct.2003 16:29): | | ...and I find the name "www/mozilla14" to be more intuitive and | descriptive than "www/mozilla-vendor", since the latter name I | associate with Netscape-branding. | +----] It's confusing for me too. What is the reason for 'mozilla-vendor' to be the name of a port that contains the previous or an old version of mozilla? Fernan -- F e r n a n A g u e r o http://genoma.unsam.edu.ar/~fernan From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 12:40:46 2003 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 9391D16A4B3; Wed, 15 Oct 2003 12:40:46 -0700 (PDT) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8BCA43FBF; Wed, 15 Oct 2003 12:40:42 -0700 (PDT) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (localhost [127.0.0.1]) by ns1.xcllnt.net (8.12.9/8.12.9) with ESMTP id h9FJegbe000951; Wed, 15 Oct 2003 12:40:42 -0700 (PDT) (envelope-from marcel@ns1.xcllnt.net) Received: (from marcel@localhost) by ns1.xcllnt.net (8.12.9/8.12.9/Submit) id h9FJegCT000950; Wed, 15 Oct 2003 12:40:42 -0700 (PDT) (envelope-from marcel) Date: Wed, 15 Oct 2003 12:40:42 -0700 From: Marcel Moolenaar To: Joe Marcus Clarke Message-ID: <20031015194042.GA781@ns1.xcllnt.net> References: <1066241563.721.27.camel@gyros> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1066241563.721.27.camel@gyros> User-Agent: Mutt/1.5.4i cc: FreeBSD GNOME Users cc: ports@freebsd.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 19:40:46 -0000 On Wed, Oct 15, 2003 at 02:12:44PM -0400, Joe Marcus Clarke wrote: > As some of you may be aware, Mozilla 1.5 was released today (along with > Firebird and Thunderbird updates which will be handled soon). The > question is, what do we do with Mozilla 1.4.x? Do you resurrect > mozilla-vendor to hold 1.4.x for a while, or do we just update > www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due out > shortly as well, and mozilla-devel will be updated to that. I would suggest to resurrect mozilla-vendor for as long as it takes bento to iterate over all the ports. That way you have a trivial band-aid "fix" in case something does break. If nothing breaks, then mozilla-vendor can be put in the attic again after having lived for as short as a couple of days. If something did break then it lives for as long as it takes to fix the breakage. The name (ie mozilla-vendor) does not have to match common parctice or does not have to be intuitive. The port is not created to be used. it's created as a safety-net. You might as well call it mozilla-oops. My $0.02 -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 12:50:22 2003 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 4CB6516A4B3 for ; Wed, 15 Oct 2003 12:50:22 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4952643FDD for ; Wed, 15 Oct 2003 12:50:21 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu74-159-108.nc.rr.com [24.74.159.108])h9FJlu0E003507; Wed, 15 Oct 2003 15:47:57 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h9FJnmdm039412; Wed, 15 Oct 2003 15:49:48 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Fernan Aguero In-Reply-To: <20031015193848.GE34747@iib.unsam.edu.ar> References: <1066244507.721.37.camel@gyros> <2F7A3BB4-FF45-11D7-881B-003065ABFD92@mac.com> <20031015193848.GE34747@iib.unsam.edu.ar> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-0p9vloYaLgPFhLFnOVfR" Organization: MarcusCom, Inc. Message-Id: <1066247415.721.50.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Wed, 15 Oct 2003 15:50:15 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on creme-brulee.marcuscom.com cc: ports@freebsd.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 19:50:22 -0000 --=-0p9vloYaLgPFhLFnOVfR Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-10-15 at 15:38, Fernan Aguero wrote: > +----[ Charles Swiger (15.Oct.2003 16:29): > | > | ...and I find the name "www/mozilla14" to be more intuitive and=20 > | descriptive than "www/mozilla-vendor", since the latter name I=20 > | associate with Netscape-branding. > | > +----] >=20 > It's confusing for me too. What is the reason for > 'mozilla-vendor' to be the name of a port that contains the > previous or an old version of mozilla? mozilla-vendor has a purpose. Mozilla 1.0 and now 1.4 are the vendor branches. That is, they are the branches that browsers such as Netscape are spun from. The name vendor means that this browser can be used by other vendors to create Mozilla-based products. They can be assured of utmost stability at the cost of new features. Joe >=20 > Fernan --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-0p9vloYaLgPFhLFnOVfR Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/jaT3b2iPiv4Uz4cRAgHTAJ9JTsL7qptsrw+I9TSL477RyddbuACeLb8k H6osrrQRZ6BV/r8hTYK4LxM= =eQFL -----END PGP SIGNATURE----- --=-0p9vloYaLgPFhLFnOVfR-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 13:04:24 2003 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 DBF2816A4B3 for ; Wed, 15 Oct 2003 13:04:24 -0700 (PDT) Received: from lakemtao07.cox.net (lakemtao07.cox.net [68.1.17.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75FF443FE1 for ; Wed, 15 Oct 2003 13:04:23 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.11]) by lakemtao07.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20031015200423.UIPI21605.lakemtao07.cox.net@mezz.mezzweb.com>; Wed, 15 Oct 2003 16:04:23 -0400 Date: Wed, 15 Oct 2003 15:03:18 -0500 To: Charles Swiger References: <3D864993-FF46-11D7-881B-003065ABFD92@mac.com> From: Jeremy Messenger Content-Type: text/plain; format=flowed; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <3D864993-FF46-11D7-881B-003065ABFD92@mac.com> User-Agent: Opera7.21/Linux M2 build 480 cc: ports@FreeBSD.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 20:04:25 -0000 On Wed, 15 Oct 2003 15:31:57 -0400, Charles Swiger wrote: > On Wednesday, October 15, 2003, at 03:08 PM, Jeremy Messenger wrote: > [ ... ] >> Why www/mozilla4? Is there any good reason why to keep Mozilla 1.4? >> Does the 1.5 break the compatibility to the other apps? > > The main compatibility problem I've seen going from 1.4 to the various > 1.5 prerelease builds is with plug-in extensions like Enigmail, which > does PGP/GnuPG. Will the rebuild of Enigmail works with Mozilla 1.5? If no, then I will support the reason of keep 1.4 in the some where like mozilla-vendor, mozilla14 or whatever. Cheers, Mezz -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 13:24:23 2003 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 2777416A4B3 for ; Wed, 15 Oct 2003 13:24:23 -0700 (PDT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E9E343FB1 for ; Wed, 15 Oct 2003 13:24:20 -0700 (PDT) (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 h9FKPCMa073076; Wed, 15 Oct 2003 17:25:12 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.9/8.12.9) with ESMTP id h9FKNv1H039766; Wed, 15 Oct 2003 17:23:57 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.9/8.12.9/Submit) id h9FKNtp1039765; Wed, 15 Oct 2003 17:23:55 -0300 (ART) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Wed, 15 Oct 2003 17:23:55 -0300 From: Fernan Aguero To: ports@freebsd.org Message-ID: <20031015202355.GF34747@iib.unsam.edu.ar> Mail-Followup-To: ports@freebsd.org, marcus@marcuscom.com References: <1066244507.721.37.camel@gyros> <2F7A3BB4-FF45-11D7-881B-003065ABFD92@mac.com> <20031015193848.GE34747@iib.unsam.edu.ar> <1066247415.721.50.camel@gyros> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1066247415.721.50.camel@gyros> User-Agent: Mutt/1.4.1i Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 20:24:23 -0000 +----[ Joe Marcus Clarke (15.Oct.2003 16:50): | | mozilla-vendor has a purpose. Mozilla 1.0 and now 1.4 are the vendor | branches. That is, they are the branches that browsers such as Netscape | are spun from. The name vendor means that this browser can be used by | other vendors to create Mozilla-based products. They can be assured of | utmost stability at the cost of new features. | | Joe | +----] OK, I guess I now get it. So, according to what you say, the latest 'vendor' version is 1.4. And 1.5, being just released, has not yet been blessed as the 'vendor' branch. Am I right? So, assuming I'm right, I guess that we (you?) should wait for the mozilla people to bless 1.5 as a 'vendor' branch. If this has not yet happened (and until this happens) perhaps it is ok to have a port of 1.4 as the mozilla-vendor branch. But then if other mozilla-based ports (firebird et al) are also updated, perhaps there is no need for it. And then we are at the beginning of this thread again :) Sorry for not being more useful. I suppose that the maintainers of mozilla-based ports are the ones who should raised their voices now. Fernan PS: thanks for the explanation -- F e r n a n A g u e r o http://genoma.unsam.edu.ar/~fernan From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 13:42:03 2003 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 A8DE916A4B3 for ; Wed, 15 Oct 2003 13:42:03 -0700 (PDT) Received: from mail.forko.com (forko.com [206.14.189.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id D50AD43F3F for ; Wed, 15 Oct 2003 13:42:02 -0700 (PDT) (envelope-from matt@mail.forko.com) Received: (qmail 12840 invoked by uid 1000); 15 Oct 2003 13:37:59 -0700 Date: Wed, 15 Oct 2003 13:37:59 -0700 From: Matt Peterson To: freebsd-ports@freebsd.org Message-ID: <20031015203758.GI2094@forko.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: net/net-snmp: NO_PERL & NO_INSTALL_MANPAGES 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, 15 Oct 2003 20:42:03 -0000 Howdy, I'm attempting to modify the net/net-snmp port to not require Perl or install man pages (ie: embedded system). While modifing the Makefile (comment out --perl & USE_PERL) works fine, I'd like to use a make option to do this. What's the appropriate way to make this happen (short of defining my own WITH or WITHOUT_PERL tweak in the Makefile)? Also, on a related note. One would think NO_INSTALL_MANPAGES would ask the port to not install manpages in the PREFIX, instead this appears to mean 'does the port have any manpages to install or not', em I correct? P.S. Mental reminder note to fix BATCH=1 with this port too, since it still requires a carriage return after the configure and before make begin. Thx! -- Matt Peterson another.geek.without.a.life matt@peterson.org http://matt.peterson.org/ ------------------------------------------------- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 14:05:50 2003 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 3DD6516A4B3 for ; Wed, 15 Oct 2003 14:05:50 -0700 (PDT) Received: from lilith.bellavista.cz (lilith.bellavista.cz [213.235.167.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F06D43F93 for ; Wed, 15 Oct 2003 14:05:49 -0700 (PDT) (envelope-from neuhauser@bellavista.cz) Received: from freepuppy.bellavista.cz (freepuppy.bellavista.cz [10.0.0.10]) by lilith.bellavista.cz (Postfix) with ESMTP id 1C4075C; Wed, 15 Oct 2003 23:05:47 +0200 (CEST) Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id DC1EB2FDA03; Wed, 15 Oct 2003 23:05:46 +0200 (CEST) Date: Wed, 15 Oct 2003 23:05:46 +0200 From: Roman Neuhauser To: Matt Peterson Message-ID: <20031015210546.GA48233@freepuppy.bellavista.cz> Mail-Followup-To: Matt Peterson , freebsd-ports@freebsd.org References: <20031015203758.GI2094@forko.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031015203758.GI2094@forko.com> User-Agent: Mutt/1.5.4i cc: freebsd-ports@freebsd.org Subject: Re: net/net-snmp: NO_PERL & NO_INSTALL_MANPAGES 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, 15 Oct 2003 21:05:50 -0000 # matt@peterson.org / 2003-10-15 13:37:59 -0700: > I'm attempting to modify the net/net-snmp port to not require Perl or > install man pages (ie: embedded system). > > While modifing the Makefile (comment out --perl & USE_PERL) works fine, > I'd like to use a make option to do this. What's the appropriate way to > make this happen (short of defining my own WITH or WITHOUT_PERL tweak in > the Makefile)? send-pr(1) -- 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 Wed Oct 15 14:30:34 2003 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 D8CAE16A4BF for ; Wed, 15 Oct 2003 14:30:34 -0700 (PDT) Received: from mail.forko.com (forko.com [206.14.189.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CD1043F3F for ; Wed, 15 Oct 2003 14:30:34 -0700 (PDT) (envelope-from matt@mail.forko.com) Received: (qmail 14209 invoked by uid 1000); 15 Oct 2003 14:26:30 -0700 Date: Wed, 15 Oct 2003 14:26:30 -0700 From: Matt Peterson To: freebsd-ports@freebsd.org Message-ID: <20031015212630.GK2094@forko.com> References: <20031015203758.GI2094@forko.com> <20031015210546.GA48233@freepuppy.bellavista.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031015210546.GA48233@freepuppy.bellavista.cz> User-Agent: Mutt/1.4.1i Subject: Re: net/net-snmp: NO_PERL & NO_INSTALL_MANPAGES 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, 15 Oct 2003 21:30:35 -0000 On Wed, Oct 15, 2003 at 11:05:46PM +0200, Roman Neuhauser wrote: > > send-pr(1) Nice detailed reply ;) I assume you mean yes (I need to hack in WITHOUT_PERL in the Makefile) and do a send-pr. I was ideally looking for a reply from a port committer before sending off a dud send-pr. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 14:46:04 2003 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 88A1A16A4B3; Wed, 15 Oct 2003 14:46:04 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E5E543F3F; Wed, 15 Oct 2003 14:46:03 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp134-91.dialup.mtu-net.ru [62.118.134.91]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id BA232105FC3; Thu, 16 Oct 2003 01:46:00 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F8DC018.7020509@ciam.ru> Date: Thu, 16 Oct 2003 01:46:00 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5b) Gecko/20031015 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Marcus Clarke References: <1066241563.721.27.camel@gyros> In-Reply-To: <1066241563.721.27.camel@gyros> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD GNOME Users cc: ports@FreeBSD.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 21:46:04 -0000 Joe Marcus Clarke wrote: > As some of you may be aware, Mozilla 1.5 was released today (along with > Firebird and Thunderbird updates which will be handled soon). The > question is, what do we do with Mozilla 1.4.x? Do you resurrect > mozilla-vendor to hold 1.4.x for a while, or do we just update > www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due out > shortly as well, and mozilla-devel will be updated to that. Let's try to look not as ports maintainers but ports users. Mozilla 1.4.1 just released, so it's reasonable they will look for it in ports tree... ---- Sem. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 14:48:43 2003 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 C7F7F16A4B3; Wed, 15 Oct 2003 14:48:43 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DB7143F75; Wed, 15 Oct 2003 14:48:41 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu74-159-108.nc.rr.com [24.74.159.108])h9FLkB0E019275; Wed, 15 Oct 2003 17:46:12 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h9FLm0dm040443; Wed, 15 Oct 2003 17:48:00 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Sergey Matveychuk In-Reply-To: <3F8DC018.7020509@ciam.ru> References: <1066241563.721.27.camel@gyros> <3F8DC018.7020509@ciam.ru> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-nsdWu8yk+tf9ki/Ur+6w" Organization: FreeBSD, Inc. Message-Id: <1066254507.69752.0.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Wed, 15 Oct 2003 17:48:28 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on creme-brulee.marcuscom.com cc: FreeBSD GNOME Users cc: ports@FreeBSD.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 21:48:43 -0000 --=-nsdWu8yk+tf9ki/Ur+6w Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-10-15 at 17:46, Sergey Matveychuk wrote: > Joe Marcus Clarke wrote: > > As some of you may be aware, Mozilla 1.5 was released today (along with > > Firebird and Thunderbird updates which will be handled soon). The > > question is, what do we do with Mozilla 1.4.x? Do you resurrect > > mozilla-vendor to hold 1.4.x for a while, or do we just update > > www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due ou= t > > shortly as well, and mozilla-devel will be updated to that. >=20 > Let's try to look not as ports maintainers but ports users. > Mozilla 1.4.1 just released, so it's reasonable they will look for it in=20 > ports tree... But will people really complain when they find 1.5 instead? Joe >=20 > ---- > Sem. --=20 Joe Marcus Clarke FreeBSD GNOME Team :: marcus@FreeBSD.org gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-nsdWu8yk+tf9ki/Ur+6w Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/jcCrb2iPiv4Uz4cRAt+YAJ9Y3heILklvOISqDF53cgCtxzRYKwCfRjbl qHEcO02ekXYnr6ItNiX9fZI= =CY1g -----END PGP SIGNATURE----- --=-nsdWu8yk+tf9ki/Ur+6w-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 14:59:05 2003 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 32FD416A4BF for ; Wed, 15 Oct 2003 14:59:05 -0700 (PDT) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 5C3FE43FE1 for ; Wed, 15 Oct 2003 14:59:02 -0700 (PDT) (envelope-from adamw@magnesium.net) Received: (qmail 39239 invoked by uid 1252); 15 Oct 2003 21:59:01 -0000 Date: 15 Oct 2003 17:59:01 -0400 Date: Wed, 15 Oct 2003 17:59:01 -0400 From: Adam Weinberger To: Sergey Matveychuk Message-ID: <20031015215901.GZ96543@toxic.magnesium.net> Mail-Followup-To: Adam Weinberger , Sergey Matveychuk , Joe Marcus Clarke , FreeBSD GNOME Users , ports@FreeBSD.org References: <1066241563.721.27.camel@gyros> <3F8DC018.7020509@ciam.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3F8DC018.7020509@ciam.ru> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: FreeBSD GNOME Users cc: ports@FreeBSD.org cc: Joe Marcus Clarke Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 21:59:05 -0000 >> (10.15.2003 @ 1746 PST): Sergey Matveychuk said, in 0.8K: << > Let's try to look not as ports maintainers but ports users. > Mozilla 1.4.1 just released, so it's reasonable they will look for it in > ports tree... >> end of "Re: RFC: What to do with Mozilla" from Sergey Matveychuk << No they won't. They'll look for something named "www/mozilla" # Adam -- Adam Weinberger vectors.cx >> adam@vectors.cx >> http://www.vectors.cx magnesium.net << adamw@magnesium.net << http://www.magnesium.net/~adamw FreeBSD >> adamw@FreeBSD.org >> http://people.freebsd.org/~adamw #vim:set ts=8: 8-char tabs prevent tooth decay. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 15:03:46 2003 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 5AB6D16A4BF for ; Wed, 15 Oct 2003 15:03:46 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A07F43FE1 for ; Wed, 15 Oct 2003 15:03:45 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp134-91.dialup.mtu-net.ru [62.118.134.91]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id 48501FAB5A; Thu, 16 Oct 2003 02:03:39 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F8DC43B.7070400@ciam.ru> Date: Thu, 16 Oct 2003 02:03:39 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5b) Gecko/20031015 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Matt Peterson References: <20031015203758.GI2094@forko.com> In-Reply-To: <20031015203758.GI2094@forko.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: net/net-snmp: NO_PERL & NO_INSTALL_MANPAGES 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, 15 Oct 2003 22:03:46 -0000 Matt Peterson wrote: > While modifing the Makefile (comment out --perl & USE_PERL) works fine, > I'd like to use a make option to do this. What's the appropriate way to > make this happen (short of defining my own WITH or WITHOUT_PERL tweak in > the Makefile)? WITHOUT_PERL looks quite apropriated and understedable. > Also, on a related note. One would think NO_INSTALL_MANPAGES would ask > the port to not install manpages in the PREFIX, instead this appears to > mean 'does the port have any manpages to install or not', em I correct? You mean somebody can be confused when 'make NO_INSTALL_MANPAGES=yes install' installs manpages? :) ---- Sem. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 15:10:44 2003 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 F1BF216A4C3; Wed, 15 Oct 2003 15:10:43 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8CE643F85; Wed, 15 Oct 2003 15:10:42 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp134-91.dialup.mtu-net.ru [62.118.134.91]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id 0EC7AFB36B; Thu, 16 Oct 2003 02:10:41 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F8DC5E1.1070406@ciam.ru> Date: Thu, 16 Oct 2003 02:10:41 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5b) Gecko/20031015 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Joe Marcus Clarke References: <1066241563.721.27.camel@gyros> <3F8DC018.7020509@ciam.ru> <1066254507.69752.0.camel@gyros> In-Reply-To: <1066254507.69752.0.camel@gyros> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD GNOME Users cc: ports@FreeBSD.org Subject: Re: RFC: What to do with Mozilla 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, 15 Oct 2003 22:10:44 -0000 Joe Marcus Clarke wrote: > But will people really complain when they find 1.5 instead? I don't know really. :) But I know peoples who keep stay for 'stable' release even only they belive it's stable. Of course mozilla team confused many people released 1.5 just after 1.4.1... ---- Sem. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 15:15:48 2003 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 40B4516A4B3 for ; Wed, 15 Oct 2003 15:15:48 -0700 (PDT) Received: from server.stegg-inc.com (dslam121-33-166-62.adsl.zonnet.nl [62.166.33.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id C919343F75 for ; Wed, 15 Oct 2003 15:15:46 -0700 (PDT) (envelope-from jeroen@stegg-inc.com) Received: from stegnation (unknown [192.168.1.2]) by server.stegg-inc.com (Postfix) with SMTP id 858E439; Sat, 16 Oct 2004 00:16:53 +0200 (CEST) Message-ID: <000a01c39369$dc88d530$0201a8c0@stegnation> From: "Jeroen Steggink" To: Date: Thu, 16 Oct 2003 00:15:37 +0200 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: ports@FreeBSD.org Subject: FreeBSD Port: awstats-5.7 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, 15 Oct 2003 22:15:48 -0000 Dear Firewolf, Can you update the port to the newest version? 5.9 is already out. Regards, Jeroen Steggink From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 17:15:05 2003 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 03C1316A4B3; Wed, 15 Oct 2003 17:15:05 -0700 (PDT) Received: from mail.dt.e-technik.uni-dortmund.de (krusty.dt.e-technik.Uni-Dortmund.DE [129.217.163.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF65743FA3; Wed, 15 Oct 2003 17:15:03 -0700 (PDT) (envelope-from ma@dt.e-technik.uni-dortmund.de) Received: from m2a2.dyndns.org (krusty.dt.e-technik.uni-dortmund.de [129.217.163.1])7DF1111842; Thu, 16 Oct 2003 02:15:02 +0200 (CEST) Received: by merlin.emma.line.org (Postfix, from userid 500) id 426B59360C; Thu, 16 Oct 2003 02:15:00 +0200 (CEST) To: "Thomas E. Zander" In-Reply-To: <20031015192950.GB72308@o503.hadiko.de> (Thomas E. Zander's message of "Wed, 15 Oct 2003 21:29:50 +0200") References: <1066241563.721.27.camel@gyros> <20031015191321.GA72308@o503.hadiko.de> <1066245462.721.42.camel@gyros> <20031015192950.GB72308@o503.hadiko.de> From: Matthias Andree Date: Thu, 16 Oct 2003 02:15:00 +0200 Message-ID: User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: FreeBSD GNOME Users cc: ports@freebsd.org cc: Joe Marcus Clarke Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 00:15:05 -0000 "Thomas E. Zander" writes: > Yes, that's a bit unfortunate if an important project like OOo, galeon, > epiphany... would break. Makes me wonder if one should bother about Galeon at all. The first thing I do after installing SuSE Linux 8.2 is rpm -e galeon so that I can update Mozilla :-) The actual reason is I couldn't care less for a browser, I've _always_ had some troubles with Galeon that the corresponding Mozilla version didn't have. (Apparently, the cumbersome Gtk+ interface with the crude Gtk+ casts don't encourage "proper" programming. I've hacked Gtk+ once, never again. MUI on AmigaOS was much nicer to hack with.) -- Matthias Andree Encrypt your mail: my GnuPG key ID is 0x052E7D95 From owner-freebsd-ports@FreeBSD.ORG Wed Oct 15 18:13:37 2003 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 1799E16A4BF for ; Wed, 15 Oct 2003 18:13:37 -0700 (PDT) Received: from web13503.mail.yahoo.com (web13503.mail.yahoo.com [216.136.175.82]) by mx1.FreeBSD.org (Postfix) with SMTP id 7972E43FE1 for ; Wed, 15 Oct 2003 18:13:31 -0700 (PDT) (envelope-from dyeske@yahoo.com) Message-ID: <20031016011331.73777.qmail@web13503.mail.yahoo.com> Received: from [68.114.30.231] by web13503.mail.yahoo.com via HTTP; Wed, 15 Oct 2003 18:13:31 PDT Date: Wed, 15 Oct 2003 18:13:31 -0700 (PDT) From: David Yeske To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: arved@freebsd.org cc: ade@freebsd.org Subject: need help with graphics/quat-gui 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: Thu, 16 Oct 2003 01:13:37 -0000 The graphics/quat-gui port has been broken for a while, and I have attempted to fix it with little progress. The graphics/quat port is basically the same port (same distfile), but it compiles without the gui component. The graphics/quat port does not appear to have any issues though. I think the problem is with the auto tools. I have attempted various combinations of automake and autoconf with no progress. If anyone is able to fix this port I would appreciate it. If anyone can determine when this port broke, that would also be helpful. Regards, David Yeske From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 00:04:53 2003 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 B570916A4B3 for ; Thu, 16 Oct 2003 00:04:53 -0700 (PDT) Received: from dmz2.unixjunkie.com (adsl-65-70-175-250.dsl.rcsntx.swbell.net [65.70.175.250]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FFA043FDD for ; Thu, 16 Oct 2003 00:04:50 -0700 (PDT) (envelope-from strgout@unixjunkie.com) Received: from mail.unixjunkie.com (mail [10.253.254.36]) by dmz2.unixjunkie.com (8.12.8p2/8.12.8) with ESMTP id h9G7S1k7041432 for ; Thu, 16 Oct 2003 02:28:01 -0500 (CDT) (envelope-from strgout@mail.unixjunkie.com) Received: from mail.unixjunkie.com (mail [10.253.254.36]) by mail.unixjunkie.com (8.12.8p2/8.12.8) with ESMTP id h9G7S0lf041429 for ; Thu, 16 Oct 2003 02:28:00 -0500 (CDT) (envelope-from strgout@mail.unixjunkie.com) Received: (from strgout@localhost) by mail.unixjunkie.com (8.12.8p2/8.12.8/Submit) id h9G7S0VP041428 for freebsd-ports@freebsd.org; Thu, 16 Oct 2003 02:28:00 -0500 (CDT) (envelope-from strgout) Date: Thu, 16 Oct 2003 02:28:00 -0500 From: John To: freebsd-ports@freebsd.org Message-ID: <20031016072800.GA41397@mail.unixjunkie.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Subject: make installjail maybe? 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: Thu, 16 Oct 2003 07:04:53 -0000 Is anyone working on someway to install ports into a jail? What i do most of the time for a small port (like bind or something) is i redefine PREFIX to be /usr/jail/$ip, but there are a few problems with this. 1. named now looks for /usr/jail/$ip/etc/named.conf by default. Not that that is hard to get around, but just a fyi. 2. You can't install the port more then once without messing around with the package install info (the stuff in /var/db/pkg). I've just been moving the package name from say bind-8.3.6 to bind-8.3.6-jail-path-to-jail-root, but that is a little ugly ;). 3. libs, passwd files, group (basicly userland). Most of the time i just cheat and staticly link the port ( setenv CLFAGS "-static"). This works fine for bind , but i haven't tested other apps. Then i copy the other userland bits. maybe if there was a port that would just install a mini user land, based off /usr/src or something like that i wouldn't need to staticly link everything. Any thoughts? From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 00:36:06 2003 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 970CE16A4B3; Thu, 16 Oct 2003 00:36:06 -0700 (PDT) Received: from sv02.webonaut.com (kirk.webonaut.com [212.41.243.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7644043F75; Thu, 16 Oct 2003 00:36:05 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from localhost (localhost [127.0.0.1]) by sv02.webonaut.com (Postfix) with ESMTP id 0593C76426; Thu, 16 Oct 2003 09:36:03 +0200 (CEST) Received: from sv02.webonaut.com ([127.0.0.1]) by localhost (sv02.webonaut.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 61359-06; Thu, 16 Oct 2003 09:36:01 +0200 (CEST) Received: from [192.168.0.9] (sisko.webonaut.com [212.41.243.28]) by sv02.webonaut.com (Postfix) with ESMTP id C6F5C76428; Thu, 16 Oct 2003 09:36:00 +0200 (CEST) From: Franz Klammer To: Joe Marcus Clarke In-Reply-To: <1066245462.721.42.camel@gyros> References: <1066241563.721.27.camel@gyros> <1066245462.721.42.camel@gyros> Content-Type: text/plain Message-Id: <1066289770.882.3.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Thu, 16 Oct 2003 09:36:10 +0200 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at webonaut.com cc: FreeBSD GNOME Users cc: "Thomas E. Zander" cc: ports@FreeBSD.org Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 07:36:06 -0000 Am Mi, den 15.10.2003 schrieb Joe Marcus Clarke um 21:17: > On Wed, 2003-10-15 at 15:13, Thomas E. Zander wrote: > > Hi, > > > > On Wed, 15. Oct 2003, at 14:12 -0400, Joe Marcus Clarke wrote > > according to [RFC: What to do with Mozilla]: > > > > > what do we do with Mozilla 1.4.x? > > > > I don't see mozilla as something that's unlike any other port, so I'd > > think of an update to 1.5 as a completely normal port updating process. > > If we have a working 1.5 version I don't see a particular need to have > > an 1.4.x version. > > > > Simple, isn't it? :-) > > Yep. It's just last time I removed mozilla-vendor, I broke OOo. I want > to make sure there are no ports/projects that depend on 1.4.x. > what about putting them into marcuscom-cvs until you are sure that it breaks no other port? are running/compile galeon and epiphany with it? franz. > Joe > > > > > Riggs -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 00:54:04 2003 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 F17E116A4B3 for ; Thu, 16 Oct 2003 00:54:03 -0700 (PDT) Received: from smtp.infracaninophile.co.uk (smtp.infracaninophile.co.uk [81.2.69.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D13443FBD for ; Thu, 16 Oct 2003 00:54:02 -0700 (PDT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [127.0.0.1]) h9G7rqHR094522 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 16 Oct 2003 08:53:55 +0100 (BST) (envelope-from matthew@happy-idiot-talk.infracaninophile.co.uk) Received: (from matthew@localhost)id h9G7rqp6094521; Thu, 16 Oct 2003 08:53:52 +0100 (BST) (envelope-from matthew) Date: Thu, 16 Oct 2003 08:53:52 +0100 From: Matthew Seaman To: John Message-ID: <20031016075352.GA93769@happy-idiot-talk.infracaninophile.co.uk> Mail-Followup-To: John , freebsd-ports@freebsd.org References: <20031016072800.GA41397@mail.unixjunkie.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="envbJBWh7q8WU6mo" Content-Disposition: inline In-Reply-To: <20031016072800.GA41397@mail.unixjunkie.com> User-Agent: Mutt/1.5.4i X-Spam-Status: No, hits=-4.9 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on happy-idiot-talk.infracaninophile.co.uk cc: freebsd-ports@freebsd.org Subject: Re: make installjail maybe? 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: Thu, 16 Oct 2003 07:54:04 -0000 --envbJBWh7q8WU6mo Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 16, 2003 at 02:28:00AM -0500, John wrote: > Is anyone working on someway to install ports into a jail? What i do most= of > the time for a small port (like bind or something) is i redefine PREFIX to > be /usr/jail/$ip, but there are a few problems with this. >=20 > 1. named now looks for /usr/jail/$ip/etc/named.conf by default. Not that = that > is hard to get around, but just a fyi. > 2. You can't install the port more then once without messing around with= =20 > the package install info (the stuff in /var/db/pkg). I've just been movi= ng > the package name from say bind-8.3.6 to bind-8.3.6-jail-path-to-jail-root= , but=20 > that is a little ugly ;). > 3. libs, passwd files, group (basicly userland). Most of the time i just = cheat > and staticly link the port ( setenv CLFAGS "-static"). This works fine fo= r bind > , but i haven't tested other apps. Then i copy the other userland bits. > maybe if there was a port that would just install a mini user land, based= off > /usr/src or something like that i wouldn't need to staticly link everythi= ng. There's two ways of looking at this. If you have a 'thick' jail -- essentially with a complete FreeBSD environment inside it, then you can just ssh(1) into the jail and install ports exactly as you would in the base system. To save space you can use mount_null(8) to remount /usr/ports from the base inside the jail -- this works well so long as you don't try installing ports simultaneously fron the jail and the base system, although by setting WRKDIRPREFIX in both environments you can even do that. To avoid compiling ports common to the jail and the base several times, just create packages in (say) the base, and pkg_add(1) them =66rom the jail. portupgrade(1)'s pkgtools.conf will let you automatically control using packages or ports down to the level of individual ports. For a thin jail -- ie. without a sufficiently complete environment that you can compile stuff inside the jail (or even if you do, but find this method preferable) then create a .../db/pkg directory for your jail (doesn't have to be inside the jailed area, although that doesn't hurt). Then simply set PKG_DBDIR in your environment to that directory: # setenv PKG_DBDIR /usr/jail/${ip}/var/db/pkg and install ports or packages using a similarly modified $PREFIX as before. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --envbJBWh7q8WU6mo Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/jk6QdtESqEQa7a0RAhHcAJ4jTtE+C+jvHdt7XNsWcQVErmslxgCfUQjF IkUVukD9+JKLd9cKgi9prUU= =H4js -----END PGP SIGNATURE----- --envbJBWh7q8WU6mo-- From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 03:26:29 2003 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 40C4516A4B3; Thu, 16 Oct 2003 03:26:29 -0700 (PDT) Received: from gateway.nixsys.be (gateway.nixsys.be [195.144.77.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC20643F85; Thu, 16 Oct 2003 03:26:25 -0700 (PDT) (envelope-from philip@nixsys.be) Received: from hermes.nixsys.be (hermes.nixsys.be [195.144.77.45]) by gateway.nixsys.be (Postfix) with ESMTP id 1639BC155; Thu, 16 Oct 2003 12:26:24 +0200 (CEST) Received: by hermes.nixsys.be (Postfix, from userid 1001) id 7697551; Thu, 16 Oct 2003 12:26:23 +0200 (CEST) Date: Thu, 16 Oct 2003 12:26:23 +0200 From: Philip Paeps To: FreeBSD GNOME Users , ports@FreeBSD.org Message-ID: <20031016102623.GE648@hermes.nixsys.be> Mail-Followup-To: FreeBSD GNOME Users , ports@FreeBSD.org References: <1066241563.721.27.camel@gyros> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1066241563.721.27.camel@gyros> X-Date-in-Rome: ante diem XVII Kalendas Novembres MMDCCLVI ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! Mutt: User-Agent: Mutt/1.5.4i Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 10:26:29 -0000 On 2003-10-15 14:12:44 (-0400), Joe Marcus Clarke wrote: > As some of you may be aware, Mozilla 1.5 was released today (along with > Firebird and Thunderbird updates which will be handled soon). The question > is, what do we do with Mozilla 1.4.x? Do you resurrect mozilla-vendor to > hold 1.4.x for a while, or do we just update www/mozilla to 1.5, and say "to > hell" with 1.4.x? Note, 1.6a is due out shortly as well, and mozilla-devel > will be updated to that. Perhaps we should look at Mozilla more as a 'collection of things', much like GNOME than as simply several different unrelated things? We could make 'www/mozilla' build the browser-bits, with knobs for the user to say what browser they want: WITH_MOZILLA_FB --> Mozilla Firebird WITH_MOZILLA_14 --> Latest on the 1.4 branch WITH_MOZILLA_15 --> Latest on the 1.5 branch WITH_MOZILLA_16 --> Latest on the 1.6 branch Default would be 'the most stable', which currently would probably have to be the 1.4 branch. So if a user were to compile www/mozilla or pkg_add it, he would get a stable browser, as expected. A nice way to sort out dependencies would be a USE_MOZILLA variable, much like the USE_GNOME variable for ports to say what bits or what version of Mozilla they want. We could use pkgnamesuffixes to deal with different versions of Mozilla being installed (each in different places, of course) and a 'mozilla' symlink pointing to the binary the user expects to be his browser. Time for a bsd.mozilla.mk to deal with the magic? - Philip -- Philip Paeps Please don't CC me, I am subscribed to the list. An original idea can never emerge from committee in its original form. From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 08:05:25 2003 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 49CBD16A4B3 for ; Thu, 16 Oct 2003 08:05:25 -0700 (PDT) Received: from thuis.piwebs.com (217-19-20-186.dsl.cambrium.nl [217.19.20.186]) by mx1.FreeBSD.org (Postfix) with SMTP id E68C943FF5 for ; Thu, 16 Oct 2003 08:05:22 -0700 (PDT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 94607 invoked by uid 85); 16 Oct 2003 15:06:21 -0000 Received: from avleeuwen@piwebs.com by thuis.piwebs.com by uid 82 with qmail-scanner-1.20rc1 (uvscan: v4.2.40/v4288. Clear:RC:1:. Processed in 0.069429 secs); 16 Oct 2003 15:06:21 -0000 Received: from unknown (HELO 192.168.0.109) (192.168.0.109) by 0 with SMTP; 16 Oct 2003 15:06:20 -0000 From: Arjan van Leeuwen To: Philip Paeps , FreeBSD GNOME Users , ports@FreeBSD.org Date: Thu, 16 Oct 2003 17:05:19 +0200 User-Agent: KMail/1.5.4 References: <1066241563.721.27.camel@gyros> <20031016102623.GE648@hermes.nixsys.be> In-Reply-To: <20031016102623.GE648@hermes.nixsys.be> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310161705.20400.avleeuwen@piwebs.com> Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 15:05:25 -0000 On Thursday 16 October 2003 12:26, Philip Paeps wrote: > On 2003-10-15 14:12:44 (-0400), Joe Marcus Clarke wrote: > > As some of you may be aware, Mozilla 1.5 was released today (along with > > Firebird and Thunderbird updates which will be handled soon). The > > question is, what do we do with Mozilla 1.4.x? Do you resurrect > > mozilla-vendor to hold 1.4.x for a while, or do we just update > > www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due out > > shortly as well, and mozilla-devel will be updated to that. > > Perhaps we should look at Mozilla more as a 'collection of things', much > like GNOME than as simply several different unrelated things? > > We could make 'www/mozilla' build the browser-bits, with knobs for the user > to say what browser they want: > > WITH_MOZILLA_FB --> Mozilla Firebird > WITH_MOZILLA_14 --> Latest on the 1.4 branch > WITH_MOZILLA_15 --> Latest on the 1.5 branch > WITH_MOZILLA_16 --> Latest on the 1.6 branch > > Default would be 'the most stable', which currently would probably have to > be the 1.4 branch. So if a user were to compile www/mozilla or pkg_add it, > he would get a stable browser, as expected. > > A nice way to sort out dependencies would be a USE_MOZILLA variable, much > like the USE_GNOME variable for ports to say what bits or what version of > Mozilla they want. We could use pkgnamesuffixes to deal with different > versions of Mozilla being installed (each in different places, of course) > and a 'mozilla' symlink pointing to the binary the user expects to be his > browser. I don't really like this idea. Mozilla and Mozilla Firebird are clearly different programs, so they should have different ports. Furthermore, the versioning is inconsistent with other ports, and it would be far more difficult for people to search for the newest version of Mozilla (go to Freshports, search for Mozilla - you'll find Mozilla 1.4, because that's the default. Where is 1.5? Where is Firebird? Same with searching using make search). Arjan From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 08:21:40 2003 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 5E01916A4B3 for ; Thu, 16 Oct 2003 08:21:40 -0700 (PDT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78DF443FF5 for ; Thu, 16 Oct 2003 08:21:27 -0700 (PDT) (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 h9GFM4Ma083023; Thu, 16 Oct 2003 12:22:04 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.9/8.12.9) with ESMTP id h9GFKp1H042004; Thu, 16 Oct 2003 12:20:52 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.9/8.12.9/Submit) id h9GFKoR9042003; Thu, 16 Oct 2003 12:20:50 -0300 (ART) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Thu, 16 Oct 2003 12:20:50 -0300 From: Fernan Aguero To: Arjan van Leeuwen Message-ID: <20031016152050.GA41297@iib.unsam.edu.ar> Mail-Followup-To: Arjan van Leeuwen , ports@freebsd.org References: <1066241563.721.27.camel@gyros> <20031016102623.GE648@hermes.nixsys.be> <200310161705.20400.avleeuwen@piwebs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310161705.20400.avleeuwen@piwebs.com> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 15:21:40 -0000 +----[ Arjan van Leeuwen (16.Oct.2003 12:11): | | I don't really like this idea. Mozilla and Mozilla Firebird are clearly | different programs, so they should have different ports. | +----] They are different programs, but I wouldn't say there is a 'clear' distinction. I have both installed, and if I'm running mozilla, I cannot launch firebird, or viceversa. Both programs see themselves as 'mozilla' so when you launch either one of them, the other will see an instance of 'mozilla' already running and will refuse to launch. Fernan -- F e r n a n A g u e r o http://genoma.unsam.edu.ar/~fernan From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 08:46:30 2003 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 968BF16A4B3; Thu, 16 Oct 2003 08:46:30 -0700 (PDT) Received: from mailout.informatik.tu-muenchen.de (mailout.informatik.tu-muenchen.de [131.159.0.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC9D443F75; Thu, 16 Oct 2003 08:46:18 -0700 (PDT) (envelope-from barner@in.tum.de) Received: by zi025.glhnet.mhn.de (Postfix, from userid 1000) id D53B98F1; Thu, 16 Oct 2003 17:46:16 +0200 (CEST) Date: Thu, 16 Oct 2003 17:46:16 +0200 From: Simon Barner To: Matthias Andree Message-ID: <20031016154616.GB884@zi025.glhnet.mhn.de> References: <1066241563.721.27.camel@gyros> <20031015191321.GA72308@o503.hadiko.de> <1066245462.721.42.camel@gyros> <20031015192950.GB72308@o503.hadiko.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="MGYHOYXEY6WxJCY8" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.4i X-Virus-Scanned: by amavisd-new at informatik.tu-muenchen.de cc: FreeBSD GNOME Users cc: "Thomas E. Zander" cc: ports@freebsd.org cc: Joe Marcus Clarke Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 15:46:30 -0000 --MGYHOYXEY6WxJCY8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Matthias Andree schrieb am Thu, Oct 16, 2003 at 02:15:00AM +0200: > "Thomas E. Zander" writes: >=20 > > Yes, that's a bit unfortunate if an important project like OOo, galeon, > > epiphany... would break. >=20 > Makes me wonder if one should bother about Galeon at all. I wouldn't be too sure about that assumption... > The first > thing I do after installing SuSE Linux 8.2 is rpm -e galeon so that I > can update Mozilla :-) We are talking about FreeBSD here, aren't we? > The actual reason is I couldn't care less for a > browser, I've _always_ had some troubles with Galeon that the > corresponding Mozilla version didn't have. Did you file any bug reports? Apart from all that, Galeon 1.3.9 claims to be source compatible with Mozilla 1.4, 1.5a, 1.5b, and trunk ( http://galeon.sourceforge.net/news/index.php#64), so one can exspect that Mozilla 1.5+ will be supported by Galeon 1.3.x a.k.a Galeon 2 sooner or later. The Galeon developers state that they plan to keep Galeon 1 source compatible with the most recent Mozilla versions, too. Regards, Simon --MGYHOYXEY6WxJCY8 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/jr1ICkn+/eutqCoRAuc1AKDfjfH7ThQhwE1t+uQcIlyESBkW/ACgnHOj GKDIotKrckp955Abh8jsbN8= =bzZ/ -----END PGP SIGNATURE----- --MGYHOYXEY6WxJCY8-- From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 09:55:26 2003 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 17AD416A4B3; Thu, 16 Oct 2003 09:55:26 -0700 (PDT) Received: from ms-smtp-01-eri0.southeast.rr.com (ms-smtp-01.southeast.rr.com [24.93.67.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4A3F43FE3; Thu, 16 Oct 2003 09:55:18 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu74-159-108.nc.rr.com [24.74.159.108])h9GGtC2Q005412; Thu, 16 Oct 2003 12:55:17 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h9GF9adm048365; Thu, 16 Oct 2003 11:09:36 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Arjan van Leeuwen In-Reply-To: <200310161705.20400.avleeuwen@piwebs.com> References: <1066241563.721.27.camel@gyros> <20031016102623.GE648@hermes.nixsys.be> <200310161705.20400.avleeuwen@piwebs.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-557xvEjbQs+jnKotMoN2" Organization: MarcusCom, Inc. Message-Id: <1066317008.753.14.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Thu, 16 Oct 2003 11:10:08 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on creme-brulee.marcuscom.com cc: FreeBSD GNOME Users cc: ports@freebsd.org Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 16:55:26 -0000 --=-557xvEjbQs+jnKotMoN2 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-10-16 at 11:05, Arjan van Leeuwen wrote: > On Thursday 16 October 2003 12:26, Philip Paeps wrote: > > On 2003-10-15 14:12:44 (-0400), Joe Marcus Clarke =20 > wrote: > > > As some of you may be aware, Mozilla 1.5 was released today (along wi= th > > > Firebird and Thunderbird updates which will be handled soon). The > > > question is, what do we do with Mozilla 1.4.x? Do you resurrect > > > mozilla-vendor to hold 1.4.x for a while, or do we just update > > > www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due = out > > > shortly as well, and mozilla-devel will be updated to that. > > > > Perhaps we should look at Mozilla more as a 'collection of things', muc= h > > like GNOME than as simply several different unrelated things? > > > > We could make 'www/mozilla' build the browser-bits, with knobs for the = user > > to say what browser they want: > > > > WITH_MOZILLA_FB --> Mozilla Firebird > > WITH_MOZILLA_14 --> Latest on the 1.4 branch > > WITH_MOZILLA_15 --> Latest on the 1.5 branch > > WITH_MOZILLA_16 --> Latest on the 1.6 branch > > > > Default would be 'the most stable', which currently would probably have= to > > be the 1.4 branch. So if a user were to compile www/mozilla or pkg_add= it, > > he would get a stable browser, as expected. > > > > A nice way to sort out dependencies would be a USE_MOZILLA variable, mu= ch > > like the USE_GNOME variable for ports to say what bits or what version = of > > Mozilla they want. We could use pkgnamesuffixes to deal with different > > versions of Mozilla being installed (each in different places, of cours= e) > > and a 'mozilla' symlink pointing to the binary the user expects to be h= is > > browser. >=20 > I don't really like this idea. Mozilla and Mozilla Firebird are clearly=20 > different programs, so they should have different ports.=20 >=20 > Furthermore, the versioning is inconsistent with other ports, and it woul= d be=20 > far more difficult for people to search for the newest version of Mozilla= (go=20 > to Freshports, search for Mozilla - you'll find Mozilla 1.4, because that= 's=20 > the default. Where is 1.5? Where is Firebird? Same with searching using m= ake=20 > search). I'm able to find all Mozilla browsers (including Firebird and even Thunderbird) when I search Freshports with "mozilla". Plus, 1.5 is not in the tree yet, hence this whole thread. I'm not sure I follow what you're trying to say here. Joe >=20 > Arjan >=20 > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-557xvEjbQs+jnKotMoN2 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/jrTQb2iPiv4Uz4cRAo4JAJ9Kmc5J4Gx5XU7g/vAzVxP5l2r0twCeLgfu ruOzQTD+P83ukvFqx+htTI0= =IcG/ -----END PGP SIGNATURE----- --=-557xvEjbQs+jnKotMoN2-- From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 10:30:02 2003 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 3F3C316A4B3 for ; Thu, 16 Oct 2003 10:30:02 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-63-207-60-234.dsl.lsan03.pacbell.net [63.207.60.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id C83BA43FAF for ; Thu, 16 Oct 2003 10:29:57 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 90C9666DBA; Thu, 16 Oct 2003 10:29:55 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 50A68BE6; Thu, 16 Oct 2003 10:29:55 -0700 (PDT) Date: Thu, 16 Oct 2003 10:29:55 -0700 From: Kris Kennaway To: John Message-ID: <20031016172955.GA71632@rot13.obsecurity.org> References: <20031016072800.GA41397@mail.unixjunkie.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline In-Reply-To: <20031016072800.GA41397@mail.unixjunkie.com> User-Agent: Mutt/1.4.1i cc: freebsd-ports@freebsd.org Subject: Re: make installjail maybe? 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: Thu, 16 Oct 2003 17:30:02 -0000 --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 16, 2003 at 02:28:00AM -0500, John wrote: > Is anyone working on someway to install ports into a jail? You've already discovered most of what is necessary: > What i do most of > the time for a small port (like bind or something) is i redefine PREFIX to > be /usr/jail/$ip, but there are a few problems with this. > 1. named now looks for /usr/jail/$ip/etc/named.conf by default. Not that = that > is hard to get around, but just a fyi. What might actually be required is DESTDIR support for the ports collection. There's a PR about this, but I suspect that most ports (those which use the vendor's install target) won't respect this without changes. > 2. You can't install the port more then once without messing around with= =20 > the package install info (the stuff in /var/db/pkg). I've just been movi= ng > the package name from say bind-8.3.6 to bind-8.3.6-jail-path-to-jail-root= , but=20 > that is a little ugly ;). PKG_DBDIR > 3. libs, passwd files, group (basicly userland). Most of the time i just = cheat > and staticly link the port ( setenv CLFAGS "-static"). This works fine fo= r bind > , but i haven't tested other apps. Then i copy the other userland bits. > maybe if there was a port that would just install a mini user land, based= off > /usr/src or something like that i wouldn't need to staticly link everythi= ng. "mini user land" doesn't have well-defined meaning, because everyone's needs are different. If you're not happy with installing an entire world into your jail, you probably need to make your own script. I've thought about making a tool that attempts to discover the files needed by a port so they can be copied into the jail, but this isn't really easy to do. Kris --XsQoSWH+UP9D9v3l Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/jtWTWry0BWjoQKURAjsaAJ4+qitxltPTovTkrtBmbUqZGl8l+gCgvFoy JcFRW2JYJ+MAuY0GrtCn8wQ= =ExDo -----END PGP SIGNATURE----- --XsQoSWH+UP9D9v3l-- From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 10:37:30 2003 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 EFA6716A4B3 for ; Thu, 16 Oct 2003 10:37:30 -0700 (PDT) Received: from postal2.es.net (postal2.es.net [198.128.3.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C76943FA3 for ; Thu, 16 Oct 2003 10:37:30 -0700 (PDT) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal2.es.net (Postal Node 2) with ESMTP (SSL) id MUA74016 for ; Thu, 16 Oct 2003 10:37:28 -0700 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id E32745D08 for ; Thu, 16 Oct 2003 10:37:27 -0700 (PDT) To: ports@freebsd.org Date: Thu, 16 Oct 2003 10:37:27 -0700 From: "Kevin Oberman" Message-Id: <20031016173727.E32745D08@ptavv.es.net> Subject: gcc33 will not install on STABLE system 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: Thu, 16 Oct 2003 17:37:31 -0000 I am unable to install the latest release of gcc33 on my STABLE system. It builds, but fails to install due to: gmake[3]: Leaving directory `/usr/ports/lang/gcc33/work/build/i386-portbld-freebsd4.9/boehm-gc' gmake[2]: Leaving directory `/usr/ports/lang/gcc33/work/build/i386-portbld-freebsd4.9/boehm-gc' gmake[1]: Leaving directory `/usr/ports/lang/gcc33/work/build/i386-portbld-freebsd4.9/boehm-gc' /usr/libexec/elf/strip: /usr/local/lib/gcc-lib/i386-portbld-freebsd4.9/3.3.1/cc1: No such file or directory This looks like a Makefile error as I believe cc1 is in the gcc directory, not the boehm-gc directory. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 11:40:18 2003 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 DF49516A553 for ; Thu, 16 Oct 2003 11:40:17 -0700 (PDT) Received: from thuis.piwebs.com (217-19-20-186.dsl.cambrium.nl [217.19.20.186]) by mx1.FreeBSD.org (Postfix) with SMTP id C1D6A43FF5 for ; Thu, 16 Oct 2003 11:40:15 -0700 (PDT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 96450 invoked by uid 85); 16 Oct 2003 18:41:15 -0000 Received: from avleeuwen@piwebs.com by thuis.piwebs.com by uid 82 with qmail-scanner-1.20rc1 (uvscan: v4.2.40/v4288. Clear:RC:1:. Processed in 0.0670500000000001 secs); 16 Oct 2003 18:41:15 -0000 Received: from unknown (HELO 192.168.0.109) (192.168.0.109) by 0 with SMTP; 16 Oct 2003 18:41:14 -0000 From: Arjan van Leeuwen To: Joe Marcus Clarke Date: Thu, 16 Oct 2003 20:40:13 +0200 User-Agent: KMail/1.5.4 References: <1066241563.721.27.camel@gyros> <200310161705.20400.avleeuwen@piwebs.com> <1066317008.753.14.camel@gyros> In-Reply-To: <1066317008.753.14.camel@gyros> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310162040.13558.avleeuwen@piwebs.com> cc: FreeBSD GNOME Users cc: ports@freebsd.org Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 18:40:18 -0000 On Thursday 16 October 2003 17:10, Joe Marcus Clarke wrote: > On Thu, 2003-10-16 at 11:05, Arjan van Leeuwen wrote: > > On Thursday 16 October 2003 12:26, Philip Paeps wrote: > > > On 2003-10-15 14:12:44 (-0400), Joe Marcus Clarke > > > > wrote: > > > > As some of you may be aware, Mozilla 1.5 was released today (along > > > > with Firebird and Thunderbird updates which will be handled soon). > > > > The question is, what do we do with Mozilla 1.4.x? Do you resurrect > > > > mozilla-vendor to hold 1.4.x for a while, or do we just update > > > > www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due > > > > out shortly as well, and mozilla-devel will be updated to that. > > > > > > Perhaps we should look at Mozilla more as a 'collection of things', > > > much like GNOME than as simply several different unrelated things? > > > > > > We could make 'www/mozilla' build the browser-bits, with knobs for the > > > user to say what browser they want: > > > > > > WITH_MOZILLA_FB --> Mozilla Firebird > > > WITH_MOZILLA_14 --> Latest on the 1.4 branch > > > WITH_MOZILLA_15 --> Latest on the 1.5 branch > > > WITH_MOZILLA_16 --> Latest on the 1.6 branch > > > > > > Default would be 'the most stable', which currently would probably have > > > to be the 1.4 branch. So if a user were to compile www/mozilla or > > > pkg_add it, he would get a stable browser, as expected. > > > > > > A nice way to sort out dependencies would be a USE_MOZILLA variable, > > > much like the USE_GNOME variable for ports to say what bits or what > > > version of Mozilla they want. We could use pkgnamesuffixes to deal > > > with different versions of Mozilla being installed (each in different > > > places, of course) and a 'mozilla' symlink pointing to the binary the > > > user expects to be his browser. > > > > I don't really like this idea. Mozilla and Mozilla Firebird are clearly > > different programs, so they should have different ports. > > > > Furthermore, the versioning is inconsistent with other ports, and it > > would be far more difficult for people to search for the newest version > > of Mozilla (go to Freshports, search for Mozilla - you'll find Mozilla > > 1.4, because that's the default. Where is 1.5? Where is Firebird? Same > > with searching using make search). > > I'm able to find all Mozilla browsers (including Firebird and even > Thunderbird) when I search Freshports with "mozilla". Plus, 1.5 is not > in the tree yet, hence this whole thread. I'm not sure I follow what > you're trying to say here. You can in the current situation, and I like that. I wasn't talking about that. This was a response to Philip Paeps' suggestion of creating one big mozilla port (www/mozilla) where you have to set knobs to get the different mozilla versions - and no seperate ports for Firebird and the other versions of Mozilla. Or is that not what you (Philip) meant? Arjan > > Joe > > > Arjan > > > > _______________________________________________ > > freebsd-gnome@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 12:06:04 2003 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 8AB0316A4B3 for ; Thu, 16 Oct 2003 12:06:04 -0700 (PDT) Received: from heron.mail.pas.earthlink.net (heron.mail.pas.earthlink.net [207.217.120.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C63D44005 for ; Thu, 16 Oct 2003 12:06:01 -0700 (PDT) (envelope-from michaeldunham@earthlink.net) Received: from 64-30-114-84.ftth.sac.winfirst.net ([64.30.114.84] helo=earthlink.net) by heron.mail.pas.earthlink.net with asmtp (Exim 3.33 #1) id 1AADR1-0002J6-00; Thu, 16 Oct 2003 12:05:19 -0700 Message-ID: <3F8EEC12.5080103@earthlink.net> Date: Thu, 16 Oct 2003 12:05:54 -0700 From: Michael Dunham Organization: Kestel Works User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.5) Gecko/20031007 X-Accept-Language: en-us, en MIME-Version: 1.0 To: stefan.jahn@nemesis-sektor.de Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-ELNK-Trace: 54c801475b82b152c94e5354dc58875674bf435c0eb9d478bf18917b9c0b244458c58fe1306d381866a073942930731a350badd9bab72f9c350badd9bab72f9c cc: ports@FreeBSD.org Subject: FreeBSD Port: kopete-0.7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: mdunham@kestrelworks.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Oct 2003 19:06:04 -0000 Stephan - Is the FreeBSD ports collection pulling in the 7.2 version of Kopete or just the 7.0? I use the MSN plug-in and I wondered if the update was available on FreeBSD ports. Regards Mike Dunham From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 12:24:29 2003 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 9048616A4B3; Thu, 16 Oct 2003 12:24:29 -0700 (PDT) Received: from astra.telenet-ops.be (astra.telenet-ops.be [195.130.132.58]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E73A43F85; Thu, 16 Oct 2003 12:24:25 -0700 (PDT) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by astra.telenet-ops.be (Postfix) with SMTP id EB94437E44; Thu, 16 Oct 2003 21:24:21 +0200 (MEST) Received: from fortuna.home.paeps.cx (D576865A.kabel.telenet.be [213.118.134.90]) by astra.telenet-ops.be (Postfix) with ESMTP id B3DA237FB0; Thu, 16 Oct 2003 21:24:21 +0200 (MEST) Received: from hermes.home.paeps.cx (hermes.home.paeps.cx [10.0.0.4]) by fortuna.home.paeps.cx (Postfix) with ESMTP id 8441C2126; Thu, 16 Oct 2003 21:24:21 +0200 (CEST) Received: by hermes.home.paeps.cx (Postfix, from userid 1001) id D224D56; Thu, 16 Oct 2003 21:24:20 +0200 (CEST) Date: Thu, 16 Oct 2003 21:24:20 +0200 From: Philip Paeps To: FreeBSD GNOME Users , ports@FreeBSD.org Message-ID: <20031016192420.GC650@hermes.home.paeps.cx> Mail-Followup-To: FreeBSD GNOME Users , ports@FreeBSD.org References: <1066241563.721.27.camel@gyros> <20031016102623.GE648@hermes.nixsys.be> <200310161705.20400.avleeuwen@piwebs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310161705.20400.avleeuwen@piwebs.com> X-Date-in-Rome: ante diem XVII Kalendas Novembres MMDCCLVI ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! Mutt: User-Agent: Mutt/1.5.4i Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 19:24:29 -0000 On 2003-10-16 17:05:19 (+0200), Arjan van Leeuwen wrote: > On Thursday 16 October 2003 12:26, Philip Paeps wrote: > > On 2003-10-15 14:12:44 (-0400), Joe Marcus Clarke wrote: > > > As some of you may be aware, Mozilla 1.5 was released today (along with > > > Firebird and Thunderbird updates which will be handled soon). The > > > question is, what do we do with Mozilla 1.4.x? Do you resurrect > > > mozilla-vendor to hold 1.4.x for a while, or do we just update > > > www/mozilla to 1.5, and say "to hell" with 1.4.x? Note, 1.6a is due out > > > shortly as well, and mozilla-devel will be updated to that. > > > > Perhaps we should look at Mozilla more as a 'collection of things', much > > like GNOME than as simply several different unrelated things? > > > > We could make 'www/mozilla' build the browser-bits, with knobs for the user > > to say what browser they want: > > > > WITH_MOZILLA_FB --> Mozilla Firebird > > WITH_MOZILLA_14 --> Latest on the 1.4 branch > > WITH_MOZILLA_15 --> Latest on the 1.5 branch > > WITH_MOZILLA_16 --> Latest on the 1.6 branch > > > > Default would be 'the most stable', which currently would probably have to > > be the 1.4 branch. So if a user were to compile www/mozilla or pkg_add > > it, he would get a stable browser, as expected. > > > > A nice way to sort out dependencies would be a USE_MOZILLA variable, much > > like the USE_GNOME variable for ports to say what bits or what version of > > Mozilla they want. We could use pkgnamesuffixes to deal with different > > versions of Mozilla being installed (each in different places, of course) > > and a 'mozilla' symlink pointing to the binary the user expects to be his > > browser. > > I don't really like this idea. I think it was more of a braindump than an idea ;-) > Mozilla and Mozilla Firebird are clearly different programs, so they should > have different ports. Well, Mozilla and Mozilla Firebird are really just different interfaces to the same application. Mozilla is the SeaMonkey thing in native code, Firebird is a nice XUL interface. If you run them simultaneously, they'll complain about each other (unless you do some ugly fiddling about). > Furthermore, the versioning is inconsistent with other ports Yes, that's true. Expanding on the original braindump would be to use ports like www/mozilla14, www/mozilla15, www/mozilla16 and www/mozilla-firebird which refer to www/mozilla and set de correct pkgnamesuffix and build with the right knobs. > and it would be far more difficult for people to search for the newest > version of Mozilla (go to Freshports, search for Mozilla - you'll find > Mozilla 1.4, because that's the default. Where is 1.5? Where is Firebird? > Same with searching using make search). Indeed. I think this issue would also be solved with different ports all building the same port with different knobs and suffixes? It would be nice if we could split out Mozilla as a program and Mozilla as a dependency. Some things which cite Mozilla as a dependency probably only need Gecko or bits of Gecko, in which case they would specify USE_MOZILLA=gecko and potentially WANT_MOZILLA_GECKO_VER=15 or something to that effect, and they'd magically get something like www[devel?]/mozilla-gecko[15?] as a dependency. Currently, people (users and maintainers) need to keep track of heaps of versions and ports and are probably spending a lot of time compiling things they'll never use and are never even used internally by the programs depending on them. - Philip -- Philip Paeps Please don't CC me, I am subscribed to the list. BOFH Excuse #244: Your cat tried to eat the mouse. From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 12:31:20 2003 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 2E2A116A4BF; Thu, 16 Oct 2003 12:31:20 -0700 (PDT) Received: from apate.telenet-ops.be (apate.telenet-ops.be [195.130.132.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87A6F43FEA; Thu, 16 Oct 2003 12:31:15 -0700 (PDT) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by apate.telenet-ops.be (Postfix) with SMTP id 68F9937FEE; Thu, 16 Oct 2003 21:31:14 +0200 (MEST) Received: from fortuna.home.paeps.cx (D576865A.kabel.telenet.be [213.118.134.90]) by apate.telenet-ops.be (Postfix) with ESMTP id 50B7C37EB8; Thu, 16 Oct 2003 21:31:14 +0200 (MEST) Received: from hermes.home.paeps.cx (hermes.home.paeps.cx [10.0.0.4]) by fortuna.home.paeps.cx (Postfix) with ESMTP id 367B420A5; Thu, 16 Oct 2003 21:31:14 +0200 (CEST) Received: by hermes.home.paeps.cx (Postfix, from userid 1001) id 091B856; Thu, 16 Oct 2003 21:31:14 +0200 (CEST) Date: Thu, 16 Oct 2003 21:31:14 +0200 From: Philip Paeps To: FreeBSD GNOME Users , ports@freebsd.org Message-ID: <20031016193114.GD650@hermes.home.paeps.cx> Mail-Followup-To: FreeBSD GNOME Users , ports@freebsd.org References: <1066241563.721.27.camel@gyros> <200310161705.20400.avleeuwen@piwebs.com> <1066317008.753.14.camel@gyros> <200310162040.13558.avleeuwen@piwebs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200310162040.13558.avleeuwen@piwebs.com> X-Date-in-Rome: ante diem XVII Kalendas Novembres MMDCCLVI ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! Mutt: User-Agent: Mutt/1.5.4i Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 19:31:20 -0000 On 2003-10-16 20:40:13 (+0200), Arjan van Leeuwen wrote: [...] > This was a response to Philip Paeps' suggestion of creating one big mozilla > port (www/mozilla) where you have to set knobs to get the different mozilla > versions - and no seperate ports for Firebird and the other versions of > Mozilla. Or is that not what you (Philip) meant? That's partly what I meant, but I realise now that not having separate ports might be an issue for make search and friends, as you say. As I said in another post a little while ago, that could be solved with mini-ports just building the main port with the correct options. My basic idea was to split Mozilla 'the program' from Mozilla 'the toolkit annex kitchen sink'. The Mozilla browser should clearly be in www/mozilla, and building that port should give a stable browser ready to go. A port that just needs a specific version of a specific bit of Mozilla should have a simple mechanism of just getting that bit, without needing the whole browser monster though. Hence the bsd.mozilla.mk and USE_MOZILLA idea. Hope this is a bit clearer than the original post :-o - Philip -- Philip Paeps Please don't CC me, I am subscribed to the list. BOFH Excuse #38: secretary plugged hairdryer into UPS From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 12:33:08 2003 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 3467C16A4BF; Thu, 16 Oct 2003 12:33:08 -0700 (PDT) Received: from ms-smtp-01-eri0.southeast.rr.com (ms-smtp-01.southeast.rr.com [24.93.67.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10F7943FEC; Thu, 16 Oct 2003 12:33:07 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu74-159-108.nc.rr.com [24.74.159.108])h9GJX62I012512; Thu, 16 Oct 2003 15:33:06 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h9GJWXM5050565; Thu, 16 Oct 2003 15:32:33 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Philip Paeps In-Reply-To: <20031016192420.GC650@hermes.home.paeps.cx> References: <1066241563.721.27.camel@gyros> <20031016102623.GE648@hermes.nixsys.be> <200310161705.20400.avleeuwen@piwebs.com> <20031016192420.GC650@hermes.home.paeps.cx> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-lTxR9N+/Reb5Z74HICn1" Organization: MarcusCom, Inc. Message-Id: <1066332787.753.62.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Thu, 16 Oct 2003 15:33:07 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on creme-brulee.marcuscom.com cc: FreeBSD GNOME Users cc: ports@freebsd.org Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 19:33:08 -0000 --=-lTxR9N+/Reb5Z74HICn1 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-10-16 at 15:24, Philip Paeps wrote: >=20 > Yes, that's true. Expanding on the original braindump would be to use po= rts > like www/mozilla14, www/mozilla15, www/mozilla16 and www/mozilla-firebird > which refer to www/mozilla and set de correct pkgnamesuffix and build wit= h the > right knobs. I think this would get cumbersome if we had to create a new mozillaX directory for each version. I don't think it's necessary to have every version in the tree forever. Previously we tracked the vendor (ultra-stable) track, the stable track, and the development snapshot track. The issue at hand is do we continue with three tracks, or is two sufficient. >=20 > > and it would be far more difficult for people to search for the newest > > version of Mozilla (go to Freshports, search for Mozilla - you'll find > > Mozilla 1.4, because that's the default. Where is 1.5? Where is Firebir= d? > > Same with searching using make search). >=20 > Indeed. I think this issue would also be solved with different ports all > building the same port with different knobs and suffixes? I don't see how this can happen. Each port has its own set of distfiles. >=20 > It would be nice if we could split out Mozilla as a program and Mozilla a= s a > dependency. Some things which cite Mozilla as a dependency probably only= need > Gecko or bits of Gecko, in which case they would specify USE_MOZILLA=3Dge= cko and > potentially WANT_MOZILLA_GECKO_VER=3D15 or something to that effect, and = they'd > magically get something like www[devel?]/mozilla-gecko[15?] as a dependen= cy. >=20 > Currently, people (users and maintainers) need to keep track of heaps of > versions and ports and are probably spending a lot of time compiling thin= gs > they'll never use and are never even used internally by the programs depe= nding > on them. We tried this with the -embedded ports, and it didn't work. No one used them, and they were broken to boot. Most users simply installed a full-blown Mozilla, so they could have, for example, Galeon and Mozilla as potential browsers. They didn't want to spend the time compiling mozilla-embedded just to have Galeon. As for the useless options, we've tried to make Mozilla as customizable as possible so that you can turn off just about everything. That can greatly reduce compile time. Joe >=20 > - Philip --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-lTxR9N+/Reb5Z74HICn1 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/jvJzb2iPiv4Uz4cRAmbVAKCGjYjRY4S1zyc5uKpnuqvsj8hbAQCgiy5R iY3dVSIvGT3uwmwWx1vpIJ4= =Cdrx -----END PGP SIGNATURE----- --=-lTxR9N+/Reb5Z74HICn1-- From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 12:41:03 2003 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 DCB3D16A4B3; Thu, 16 Oct 2003 12:41:03 -0700 (PDT) Received: from office.LF.net (office.LF.net [212.9.190.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id A341E43FD7; Thu, 16 Oct 2003 12:40:57 -0700 (PDT) (envelope-from krion@voodoo.oberon.net) Received: from voodoo.oberon.net ([212.118.165.100]) by office.LF.net with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.22) id 1AADzd-000KrM-7w; Thu, 16 Oct 2003 21:41:05 +0200 Received: from krion by voodoo.oberon.net with local (Exim 4.22) id 1AADzT-000O0i-Tv; Thu, 16 Oct 2003 21:40:55 +0200 Date: Thu, 16 Oct 2003 21:40:55 +0200 From: Kirill Ponomarew To: Adam Weinberger , Sergey Matveychuk , Joe Marcus Clarke , FreeBSD GNOME Users , ports@FreeBSD.org Message-ID: <20031016194055.GE73426@voodoo.oberon.net> References: <1066241563.721.27.camel@gyros> <3F8DC018.7020509@ciam.ru> <20031015215901.GZ96543@toxic.magnesium.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="M/SuVGWktc5uNpra" Content-Disposition: inline In-Reply-To: <20031015215901.GZ96543@toxic.magnesium.net> Sender: Kirill Ponomarew Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 19:41:04 -0000 --M/SuVGWktc5uNpra Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Wed, Oct 15, 2003 at 05:59:01PM -0400, Adam Weinberger wrote: =20 > No they won't. They'll look for something named "www/mozilla" >=20 > # Adam I'm completely agree with you. We should simply update www/mozilla to 1.5, I don't see any reasons to keep 1.4* in ports in the future. -Kirill --M/SuVGWktc5uNpra Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/jvRHQC1G6a60JuURAjYrAKCfYGR3J7qZVmL8VC3hpEG/fmjGtQCgvU9d bi1vAshiCgm5HpaXoU8eO+E= =RGmI -----END PGP SIGNATURE----- --M/SuVGWktc5uNpra-- From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 12:54:20 2003 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 AF15816A4B3; Thu, 16 Oct 2003 12:54:20 -0700 (PDT) Received: from grillolja.cs.umu.se (grillolja.cs.umu.se [130.239.40.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E7A643FAF; Thu, 16 Oct 2003 12:54:13 -0700 (PDT) (envelope-from tdv94ped@cs.umu.se) Received: from localhost (localhost [127.0.0.1]) by amavisd-new (Postfix) with ESMTP id 7B9DC3511; Thu, 16 Oct 2003 21:53:28 +0200 (MEST) Received: from cs.umu.se (h46n5c1o1023.bredband.skanova.com [81.224.104.46]) by grillolja.cs.umu.se (Postfix) with ESMTP id EA9BF3505; Thu, 16 Oct 2003 21:53:25 +0200 (MEST) Message-ID: <3F8EF718.3000700@cs.umu.se> Date: Thu, 16 Oct 2003 21:52:56 +0200 From: Paul Everlund User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: sv,en MIME-Version: 1.0 To: Joe Marcus Clarke References: <1066241563.721.27.camel@gyros> <20031016102623.GE648@hermes.nixsys.be> <200310161705.20400.avleeuwen@piwebs.com> <20031016192420.GC650@hermes.home.paeps.cx> <1066332787.753.62.camel@gyros> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new cc: FreeBSD GNOME Users cc: ports@freebsd.org Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 19:54:20 -0000 Joe Marcus Clarke wrote: > On Thu, 2003-10-16 at 15:24, Philip Paeps wrote: > >>Yes, that's true. Expanding on the original braindump would be >>to use ports like www/mozilla14, www/mozilla15, www/mozilla16 and >>www/mozilla-firebird which refer to www/mozilla and set de correct >>pkgnamesuffix and build with the right knobs. > > I think this would get cumbersome if we had to create a new mozillaX > directory for each version. I don't think it's necessary to have > every version in the tree forever. Previously we tracked the vendor > (ultra-stable) track, the stable track, and the development snapshot > track. The issue at hand is do we continue with three tracks, or is > two sufficient. If version 1.(n+1) is out one maybe could come to the conclusion that 1.n isn't going to change very much, and hence just let it hang around? When I do visit my bank with my computer it does check if version 1.3 of mozilla is used (as that's the version they've tested). One could hence not use either 1.4 or 1.5 or anything else 1.n. That's why it might be important to have old versions around, as the bank doesn't keep up the job by verifying usable web-browsers every time a new version arrives. How it's done, with knobs or by versioning the ports, that I do not care about. :-) [big snip] Best regards, Paul From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 13:10:13 2003 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 CB52016A4B3; Thu, 16 Oct 2003 13:10:13 -0700 (PDT) Received: from apate.telenet-ops.be (apate.telenet-ops.be [195.130.132.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A49B43FE9; Thu, 16 Oct 2003 13:10:12 -0700 (PDT) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by apate.telenet-ops.be (Postfix) with SMTP id 8AF1537FBF; Thu, 16 Oct 2003 22:10:11 +0200 (MEST) Received: from fortuna.home.paeps.cx (D576865A.kabel.telenet.be [213.118.134.90]) by apate.telenet-ops.be (Postfix) with ESMTP id 336C937FC1; Thu, 16 Oct 2003 22:10:11 +0200 (MEST) Received: from hermes.home.paeps.cx (hermes.home.paeps.cx [10.0.0.4]) by fortuna.home.paeps.cx (Postfix) with ESMTP id 12FC72121; Thu, 16 Oct 2003 22:10:11 +0200 (CEST) Received: by hermes.home.paeps.cx (Postfix, from userid 1001) id 87AAE56; Thu, 16 Oct 2003 22:10:10 +0200 (CEST) Date: Thu, 16 Oct 2003 22:10:10 +0200 From: Philip Paeps To: FreeBSD GNOME Users , ports@freebsd.org Message-ID: <20031016201010.GE650@hermes.home.paeps.cx> Mail-Followup-To: FreeBSD GNOME Users , ports@freebsd.org References: <1066241563.721.27.camel@gyros> <20031016102623.GE648@hermes.nixsys.be> <200310161705.20400.avleeuwen@piwebs.com> <20031016192420.GC650@hermes.home.paeps.cx> <1066332787.753.62.camel@gyros> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1066332787.753.62.camel@gyros> X-Date-in-Rome: ante diem XVII Kalendas Novembres MMDCCLVI ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! Mutt: User-Agent: Mutt/1.5.4i Subject: Re: RFC: What to do with Mozilla 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: Thu, 16 Oct 2003 20:10:14 -0000 On 2003-10-16 15:33:07 (-0400), Joe Marcus Clarke wrote: > On Thu, 2003-10-16 at 15:24, Philip Paeps wrote: > > Yes, that's true. Expanding on the original braindump would be to use > > ports like www/mozilla14, www/mozilla15, www/mozilla16 and > > www/mozilla-firebird which refer to www/mozilla and set de correct > > pkgnamesuffix and build with the right knobs. > > I think this would get cumbersome if we had to create a new mozillaX > directory for each version. Indeed. There're a lot of ports being cumbersome these days though (openldap, bind, postgresql, libtool, autoconf,... to name but a few). Besides cumbersome, it's also attic-filling in the long run. > I don't think it's necessary to have every version in the tree forever. > Previously we tracked the vendor (ultra-stable) track, the stable track, and > the development snapshot track. The issue at hand is do we continue with > three tracks, or is two sufficient. I was a bit confused about where the vendor bit came into all this. I've caught up with my mail now though. I would go for three ports, www/mozilla being what mozilla.org deems to be the most stable. The -vendor is a bit of a confusing name though (not only to me, apparantly), maybe it could be called something like -frozen or -previous? > > It would be nice if we could split out Mozilla as a program and Mozilla as > > a dependency. Some things which cite Mozilla as a dependency probably > > only need Gecko or bits of Gecko, in which case they would specify > > USE_MOZILLA=gecko and potentially WANT_MOZILLA_GECKO_VER=15 or something > > to that effect, and they'd magically get something like > > www[devel?]/mozilla-gecko[15?] as a dependency. > > > > Currently, people (users and maintainers) need to keep track of heaps of > > versions and ports and are probably spending a lot of time compiling > > things they'll never use and are never even used internally by the > > programs depending on them. > > We tried this with the -embedded ports, and it didn't work. No one used > them, and they were broken to boot. Oh, so that's what they were :-) Seems I managed to reinvent a deprecated wheel. Whoopsie. Sorry about the noise! - Philip -- Philip Paeps Please don't CC me, I am subscribed to the list. Real programmers don't grumble about the disadvantages of Cobol when they don't know any other language. From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 14:05:31 2003 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 2505316A4BF for ; Thu, 16 Oct 2003 14:05:31 -0700 (PDT) Received: from smtp017.mail.yahoo.com (smtp017.mail.yahoo.com [216.136.174.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 870B243FE3 for ; Thu, 16 Oct 2003 14:05:29 -0700 (PDT) (envelope-from jbryant@democrats.com) Received: from ppp-66-141-122-185.dialup.eulstx.swbell.net (HELO democrats.com) (kc5vdj@prodigy.net@66.141.122.185 with plain) by smtp.mail.vip.sc5.yahoo.com with SMTP; 16 Oct 2003 21:05:27 -0000 Message-ID: <3F8F0806.2070003@democrats.com> Date: Thu, 16 Oct 2003 16:05:10 -0500 From: Jim Bryant User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030925 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Philip Paeps References: <1066241563.721.27.camel@gyros> <20031016102623.GE648@hermes.nixsys.be> <200310161705.20400.avleeuwen@piwebs.com> <20031016192420.GC650@hermes.home.paeps.cx> <1066332787.753.62.camel@gyros> <20031016201010.GE650@hermes.home.paeps.cx> In-Reply-To: <20031016201010.GE650@hermes.home.paeps.cx> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD GNOME Users cc: ports@freebsd.org Subject: Re: RFC: What to do with Mozilla X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: jbryant@democrats.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Oct 2003 21:05:31 -0000 On a related subject, given that firebird and thunderbird are essentially "unbundled" would it not make sense to create a subheirarchy under the relative directory nodes [www/firebird/firebird, www/firebird/extensionA, www/firebird/extensionB, etc]? Just an observation after looking at the extensions page for firebird, I would imagine ports/www would get relatively cluttered, and honestly, `make search` in /usr/ports comes up with a lot of unwanted junk for any real search. I recently saw other suggestions to the lists to further subdivide the ports heirarchy for another group of ports, and this is really beginning to make sense. The current groupings are not intuitive. Another good example for this would be like xmms, and others...all sorts of plugins mixed all over the ports tree for xmms, and they are a pain in the ass to find via `make search`. just my two cents. I would also like to propose a new subtree under ports: ham-swl. I am in the process of porting over five or six apps now for amateur radio use, and having a ports subtree for such use might encourage more development and porting along these lines. Philip Paeps wrote: >On 2003-10-16 15:33:07 (-0400), Joe Marcus Clarke wrote: > > >>On Thu, 2003-10-16 at 15:24, Philip Paeps wrote: >> >> >>>Yes, that's true. Expanding on the original braindump would be to use >>>ports like www/mozilla14, www/mozilla15, www/mozilla16 and >>>www/mozilla-firebird which refer to www/mozilla and set de correct >>>pkgnamesuffix and build with the right knobs. >>> >>> >>I think this would get cumbersome if we had to create a new mozillaX >>directory for each version. >> >> > >Indeed. There're a lot of ports being cumbersome these days though (openldap, >bind, postgresql, libtool, autoconf,... to name but a few). > >Besides cumbersome, it's also attic-filling in the long run. > > > >>I don't think it's necessary to have every version in the tree forever. >>Previously we tracked the vendor (ultra-stable) track, the stable track, and >>the development snapshot track. The issue at hand is do we continue with >>three tracks, or is two sufficient. >> >> > >I was a bit confused about where the vendor bit came into all this. I've >caught up with my mail now though. I would go for three ports, www/mozilla >being what mozilla.org deems to be the most stable. The -vendor is a bit of a >confusing name though (not only to me, apparantly), maybe it could be called >something like -frozen or -previous? > > > >>>It would be nice if we could split out Mozilla as a program and Mozilla as >>>a dependency. Some things which cite Mozilla as a dependency probably >>>only need Gecko or bits of Gecko, in which case they would specify >>>USE_MOZILLA=gecko and potentially WANT_MOZILLA_GECKO_VER=15 or something >>>to that effect, and they'd magically get something like >>>www[devel?]/mozilla-gecko[15?] as a dependency. >>> >>>Currently, people (users and maintainers) need to keep track of heaps of >>>versions and ports and are probably spending a lot of time compiling >>>things they'll never use and are never even used internally by the >>>programs depending on them. >>> >>> >>We tried this with the -embedded ports, and it didn't work. No one used >>them, and they were broken to boot. >> >> > >Oh, so that's what they were :-) > >Seems I managed to reinvent a deprecated wheel. Whoopsie. Sorry about the >noise! > > - Philip > > > 73 de Jim, KC5VDJ -- "Religious fundamentalism is the biggest threat to international security that exists today." United Nations Secretary General B.B.Ghali, 1995 ----------------------------------------------------------------------------------------------------- "The Fascist State organizes the nation, but leaves a sufficient margin of liberty to the individual; the latter is deprived of all useless and possibly harmful freedom..." -- Benito Mussilini, 1932 http://www.pbs.org/now/politics/patriot2-hi.pdf -- The GOP agrees From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 16:32:21 2003 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 F091116A4B3 for ; Thu, 16 Oct 2003 16:32:21 -0700 (PDT) Received: from smtp017.mail.yahoo.com (smtp017.mail.yahoo.com [216.136.174.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 5ECDE43F3F for ; Thu, 16 Oct 2003 16:32:21 -0700 (PDT) (envelope-from jbryant@democrats.com) Received: from ppp-66-141-122-185.dialup.eulstx.swbell.net (HELO democrats.com) (kc5vdj@prodigy.net@66.141.122.185 with plain) by smtp.mail.vip.sc5.yahoo.com with SMTP; 16 Oct 2003 23:32:18 -0000 Message-ID: <3F8F2A73.5020102@democrats.com> Date: Thu, 16 Oct 2003 18:32:03 -0500 From: Jim Bryant User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030925 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: 7bit Subject: astro/sattrack is really broken... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: jbryant@democrats.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Oct 2003 23:32:22 -0000 It's been a while since I had tried this port, and after obtaining TLE for Shinzhou-5 yesterday, I decided to give it a try. I was getting checksum errors on all TLE [www.celestrack.com], as well as the one of interest. After disabling the checksum code, I was getting altitude info of like 8500+ kM for SZ-5, and all sorts of other funky crud for others. I don't have the time to do much with this, but if I find some time, I'll help. The maintainer needs to take a look at the port tho. sattrack is a good package, and should stay in the tree, but there are issues right now... jim -- "Religious fundamentalism is the biggest threat to international security that exists today." United Nations Secretary General B.B.Ghali, 1995 ----------------------------------------------------------------------------------------------------- "The Fascist State organizes the nation, but leaves a sufficient margin of liberty to the individual; the latter is deprived of all useless and possibly harmful freedom..." -- Benito Mussilini, 1932 http://www.pbs.org/now/politics/patriot2-hi.pdf -- The GOP agrees From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 18:17:07 2003 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 B711016A4B3 for ; Thu, 16 Oct 2003 18:17:07 -0700 (PDT) Received: from yvonne.wmol.com (hql.net [208.242.83.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA0D943FCB for ; Thu, 16 Oct 2003 18:17:06 -0700 (PDT) (envelope-from david@wmol.com) Received: from rain (12-241-170-123.client.attbi.com [12.241.170.123]) by yvonne.wmol.comfor ; Thu, 16 Oct 2003 21:16:02 -0400 Message-ID: <000e01c3944c$5f511300$02ff000a@rain> From: "David Hill" To: Date: Thu, 16 Oct 2003 21:17:02 -0400 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.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on yvonne.wmol.com X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Level: Subject: graphics/gd issues 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: Fri, 17 Oct 2003 01:17:07 -0000 I cant get netsaint nor mrtg working because something is wrong the the gd library port. Please help ===> Installing for gd-1.8.4_7,1 ===> Generating temporary packing list ===> Checking if graphics/gd already installed mkdir -p /usr/local/include/gd install -C -o root -g wheel -m 444 libgd1.a /usr/local/lib install -s -o root -g wheel -m 444 libgd1.so.2 /usr/local/lib ln -fs libgd1.so.2 /usr/local/lib/libgd1.so install -C -o root -g wheel -m 444 gd.h gd_io.h gdcache.h gdfontg.h gdfontl.h gdfontmb.h gdfonts.h gdfontt.h /usr/local/include/gd ===> Running ldconfig /sbin/ldconfig -m /usr/local/lib ===> Registering installation for gd-1.8.4_7,1 ===> Returning to build of netsaint-0.0.7_4,1 Error: shared library "gd.4" does not exist *** Error code 1 Stop in /usr/ports/net/netsaint. From owner-freebsd-ports@FreeBSD.ORG Thu Oct 16 19:16:50 2003 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 A2DAE16A4B3 for ; Thu, 16 Oct 2003 19:16:50 -0700 (PDT) Received: from heron.mail.pas.earthlink.net (heron.mail.pas.earthlink.net [207.217.120.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED89343F93 for ; Thu, 16 Oct 2003 19:16:49 -0700 (PDT) (envelope-from michaeldunham@earthlink.net) Received: from 64-30-114-84.ftth.sac.winfirst.net ([64.30.114.84] helo=earthlink.net) by heron.mail.pas.earthlink.net with asmtp (Exim 3.33 #1) id 1AAKAC-0000Eh-00 for freebsd-ports@freebsd.org; Thu, 16 Oct 2003 19:16:24 -0700 Message-ID: <3F8F5105.5040308@earthlink.net> Date: Thu, 16 Oct 2003 19:16:37 -0700 From: Michael Dunham Organization: Kestel Works User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.5) Gecko/20031007 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-ELNK-Trace: 54c801475b82b152c94e5354dc58875674bf435c0eb9d478bf18917b9c0b2444969b6d9afcd171d7aa187cde822be6fe350badd9bab72f9c350badd9bab72f9c Subject: Kopete 7.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: mdunham@kestrelworks.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Oct 2003 02:16:50 -0000 I've been looking for the most recent version of the KDE Kopete IM client (0.7.3) to appear in the ports collection but as yet I haven't seen anything newer than 0.7 appear. I sent an email to the ports maintainer but I wondered if anyone has been successful installing from the Sourceforce binary? I'm running 5.1 Current. Thanks Mike Dunham From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 00:40:06 2003 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 9771216A4B3 for ; Fri, 17 Oct 2003 00:40:06 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C7B643FE0 for ; Fri, 17 Oct 2003 00:39:58 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h9H7dwGZ041264 for ; Fri, 17 Oct 2003 03:39:58 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9H7dv84011860 for ports@FreeBSD.org; Fri, 17 Oct 2003 03:39:57 -0400 (EDT) (envelope-from kris) Date: Fri, 17 Oct 2003 03:39:57 -0400 (EDT) From: Kris Kennaway Message-Id: <200310170739.h9H7dv84011860@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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: Fri, 17 Oct 2003 07:40:06 -0000 INDEX build failed with errors: p5-Net-QMTP-0.05: "/vol/vol0/users/kris/ports.clean/textproc/p5-Text-Netstring" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? README.html ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x ? archivers/README.html ? archivers/9e/README.html ? archivers/arc/README.html ? archivers/arj/README.html ? archivers/bicom/README.html ? archivers/bzip/README.html ? archivers/bzip2/README.html ? archivers/cabextract/README.html ? archivers/dact/README.html ? archivers/deepforest/README.html ? archivers/dpkg/README.html ? archivers/fastjar/README.html ? archivers/fileroller/README.html ? archivers/freeze/README.html ? archivers/gshar+gunshar/README.html ? archivers/gtar/README.html ? archivers/gzip/README.html ? archivers/ha/README.html ? archivers/hffzip/README.html ? archivers/hpack.non-usa.only/README.html ? archivers/lbrate/README.html ? archivers/lha/README.html ? archivers/libarc/README.html ? archivers/libcabinet/README.html ? archivers/libcomprex/README.html ? archivers/linux-unace/README.html ? archivers/lzo/README.html ? archivers/lzop/README.html ? archivers/macutils/README.html ? archivers/makeself/README.html ? archivers/mscompress/README.html ? archivers/mtf/README.html ? archivers/nomarch/README.html ? archivers/nulib/README.html ? archivers/nwreckdum/README.html ? archivers/p5-Archive-Tar/README.html ? archivers/p5-Archive-Zip/README.html ? archivers/p5-Compress-Bzip2/README.html ? archivers/p5-Compress-Zlib/README.html ? archivers/p5-IO-Zlib/README.html ? archivers/p5-Mac-Macbinary/README.html ? archivers/parchive/README.html ? archivers/pear-Archive_Tar/README.html ? archivers/ppunpack/README.html ? archivers/py-bzip2/README.html ? archivers/py-tarfile/README.html ? archivers/rar/README.html ? archivers/rox-archive/README.html ? archivers/rpm/README.html ? archivers/rpm2cpio/README.html ? archivers/ruby-bz2/README.html ? archivers/ruby-zip/README.html ? archivers/sectar/README.html ? archivers/squsq/README.html ? archivers/star/README.html ? archivers/stuffit/README.html ? archivers/szip/README.html ? archivers/tardy/README.html ? archivers/ucl/README.html ? archivers/unace/README.html ? archivers/unadf/README.html ? archivers/unarj/README.html ? archivers/undms/README.html ? archivers/unlzx/README.html ? archivers/unrar/README.html ? archivers/untar/README.html ? archivers/unzip/README.html ? archivers/wzip/README.html ? archivers/xdms/README.html ? archivers/xmill/README.html ? archivers/xpk/README.html ? archivers/zip/README.html ? archivers/zipios++/README.html ? archivers/zoo/README.html ? astro/README.html ? astro/SETIsupport/README.html ? astro/accrete/README.html ? astro/celestia/README.html ? astro/dgpsip/README.html ? astro/ephem/README.html ? astro/fooseti/README.html ? astro/gkrellmearth/README.html ? astro/gkrellmoon/README.html ? astro/gkrellmseti/README.html ? astro/gkrellsun/README.html ? astro/gpsdrive/README.html ? astro/gpsman/README.html ? astro/jday/README.html ? astro/ksetisaver/README.html ? astro/ksetispy/README.html ? astro/ksetiwatch/README.html ? astro/libnova/README.html ? astro/linux-setiathome/README.html ? astro/luna/README.html ? astro/match/README.html ? astro/mymoon/README.html ? astro/nightfall/README.html ? astro/openuniverse/README.html ? astro/p5-Astro-ADS/README.html ? astro/p5-Astro-Catalog/README.html ? astro/p5-Astro-DSS/README.html ? astro/p5-Astro-MoonPhase/README.html ? astro/p5-Astro-SIMBAD/README.html ? astro/p5-Astro-SunTime/README.html ? astro/p5-Astro-Sunrise/README.html ? astro/p5-GPS/README.html ? astro/p5-Geo-METAR/README.html ? astro/p5-SETI-Stats/README.html ? astro/phoon/README.html ? astro/planets/README.html ? astro/py-metar/README.html ? astro/pyweather/README.html ? astro/rmap/README.html ? astro/roadmap/README.html ? astro/saoimage/README.html ? astro/sattrack/README.html ? astro/setiathome/README.html ? astro/spacechart/README.html ? astro/squeuer/README.html ? astro/sscalc/README.html ? astro/starplot/README.html ? astro/stars/README.html ? astro/sunclock/README.html ? astro/tkseti/README.html ? astro/wmglobe/README.html ? astro/wmjupiter/README.html ? astro/wmmoonclock/README.html ? astro/wmsolar/README.html ? astro/wmspaceweather/README.html ? astro/wmsun/README.html ? astro/x3arth/README.html ? astro/xearth/README.html ? astro/xephem/README.html ? astro/xglobe/README.html ? astro/xphoon/README.html ? astro/xplanet/README.html ? astro/xtide/README.html ? astro/xworld/README.html ? audio/README.html ? audio/HVSC-Update/README.html ? audio/Maaate/README.html ? audio/abcde/README.html ? audio/abcmidi/README.html ? audio/abcselect/README.html ? audio/ac3dec/README.html ? audio/adpcm/README.html ? audio/afsp/README.html ? audio/alienwah/README.html ? audio/alsaplayer/README.html ? audio/amp/README.html ? audio/ample/README.html ? audio/arts/README.html ? audio/ascd/README.html ? audio/asmix/README.html ? audio/asmixer/README.html ? audio/aube/README.html ? audio/audacity/README.html ? audio/aumix/README.html ? audio/aureal-kmod/README.html ? audio/autocd/README.html ? audio/autools/README.html ? audio/autozen/README.html ? audio/baudline/README.html ? audio/bebocd/README.html ? audio/beep/README.html ? audio/bladeenc/README.html ? audio/blop/README.html ? audio/bonk/README.html ? audio/btc/README.html ? audio/cam/README.html ? audio/cantus/README.html ? audio/ccaudio/README.html ? audio/cd-console/README.html ? audio/cd-discid/README.html ? audio/cd2mp3/README.html ? audio/cdparanoia/README.html ? audio/cdplay/README.html ? audio/cdplayer.app/README.html ? audio/cheesetracker/README.html ? audio/chordpack/README.html ? audio/cmp3/README.html ? audio/cmt/README.html ? audio/cplay/README.html ? audio/crip/README.html ? audio/csound/README.html ? audio/csound-manual/README.html ? audio/cue2toc/README.html ? audio/cymbaline/README.html ? audio/dagrab/README.html ? audio/dap/README.html ? audio/darkice/README.html ? audio/dekagen/README.html ? audio/denemo/README.html ? audio/discid/README.html ? audio/easytag/README.html ? audio/ecasound/README.html ? audio/ecawave/README.html ? audio/ermixer/README.html ? audio/esound/README.html ? audio/etktab/README.html ? audio/evilbar/README.html ? audio/extace/README.html ? audio/faad/README.html ? audio/fcplay/README.html ? audio/festdoc/README.html ? audio/festival/README.html ? audio/festlex-cmu/README.html ? audio/festlex-oald/README.html ? audio/festlex-ogi/README.html ? audio/festlex-poslex/README.html ? audio/festogi-spanish/README.html ? audio/festvox-abc/README.html ? audio/festvox-don/README.html ? audio/festvox-el11/README.html ? audio/festvox-hvs/README.html ? audio/festvox-jph/README.html ? audio/festvox-kal16/README.html ? audio/festvox-kal8/README.html ? audio/festvox-ked16/README.html ? audio/festvox-ked8/README.html ? audio/festvox-mwm/README.html ? audio/festvox-ogirab/README.html ? audio/festvox-rab16/README.html ? audio/festvox-rab8/README.html ? audio/festvox-tll/README.html ? audio/flac/README.html ? audio/fmio/README.html ? audio/freebirth/README.html ? audio/funktrackergold/README.html ? audio/gdrdao/README.html ? audio/gkrellmms/README.html ? audio/gkrellmms2/README.html ? audio/gkrellmss/README.html ? audio/gkrellmss2/README.html ? audio/gkrellmvolume/README.html ? audio/gkrellmvolume2/README.html ? audio/glame/README.html ? audio/gmixer/README.html ? audio/gnapster/README.html ? audio/gnomeaudio2/README.html ? audio/gnomemedia2/README.html ? audio/gnomespeech/README.html ? audio/gnowavcut/README.html ? audio/gnump3d/README.html ? audio/gnupod/README.html ? audio/gogo/README.html ? audio/gqmpeg/README.html ? audio/gqradio/README.html ? audio/gramofile/README.html ? audio/grip/README.html ? audio/gsi/README.html ? audio/gsm/README.html ? audio/gtkgep/README.html ? audio/gtkpod/README.html ? audio/holyshout/README.html ? audio/icecast/README.html ? audio/icecast2/README.html ? audio/ices/README.html ? audio/id3ed/README.html ? audio/id3el/README.html ? audio/id3lib/README.html ? audio/id3ren/README.html ? audio/id3tool/README.html ? audio/id3v2/README.html ? audio/juk/README.html ? audio/juke/README.html ? audio/ksmp3play/README.html ? audio/ladspa/README.html ? audio/lame/README.html ? audio/liba52/README.html ? audio/libao/README.html ? audio/libaudiofile/README.html ? audio/libcdaudio/README.html ? audio/libmikmod/README.html ? audio/libmusicbrainz/README.html ? audio/libogg/README.html ? audio/libsamplerate/README.html ? audio/libshout/README.html ? audio/libshout2/README.html ? audio/libsidplay/README.html ? audio/libsidplay2/README.html ? audio/libsndfile/README.html ? audio/libvorbis/README.html ? audio/libworkman/README.html ? audio/linux-arts/README.html ? audio/linux-esound/README.html ? audio/linux-libaudiofile/README.html ? audio/linux-vsound/README.html ? audio/liteamp/README.html ? audio/lopster/README.html ? audio/lplayer/README.html ? audio/mad/README.html ? audio/maplay/README.html ? audio/mctoolame-decoder/README.html ? audio/mctoolame-encoder/README.html ? audio/mhwaveedit/README.html ? audio/midimountain/README.html ? audio/mikmod/README.html ? audio/mixer.app/README.html ? audio/mp32ogg/README.html ? audio/mp3_check/README.html ? audio/mp3asm/README.html ? audio/mp3blaster/README.html ? audio/mp3butler/README.html ? audio/mp3c/README.html ? audio/mp3check/README.html ? audio/mp3chew/README.html ? audio/mp3ck/README.html ? audio/mp3encode/README.html ? audio/mp3gain/README.html ? audio/mp3info/README.html ? audio/mp3mover/README.html ? audio/mp3rename/README.html ? audio/mp3splt/README.html ? audio/mp3stat/README.html ? audio/mp3wrap/README.html ? audio/mpc/README.html ? audio/mpegaudio/README.html ? audio/mpg123/README.html ? audio/mpg123.el/README.html ? audio/mpg321/README.html ? audio/mpio-driver/README.html ? audio/mpmf20/README.html ? audio/mppdec/README.html ? audio/mpt/README.html ? audio/mq3/README.html ? audio/muse/README.html ? audio/musicbox/README.html ? audio/musicbrainz/README.html ? audio/musiccontrol/README.html ? audio/musicpd/README.html ? audio/mutemix/README.html ? audio/mziq/README.html ? audio/napster/README.html ? audio/nas/README.html ? audio/net-rhythmbox/README.html ? audio/nogger/README.html ? audio/normalize/README.html ? audio/nosefart/README.html ? audio/nspmod/README.html ? audio/openal/README.html ? audio/opennap/README.html ? audio/opmixer/README.html ? audio/osalp/README.html ? audio/p5-Audio-CD/README.html ? audio/p5-Audio-Wav/README.html ? audio/p5-CDDB/README.html ? audio/p5-CDDB-File/README.html ? audio/p5-CDDB_get/README.html ? audio/p5-MP3-ID3v1Tag/README.html ? audio/p5-MP3-Info/README.html ? audio/p5-MPEG-ID3v2Tag/README.html ? audio/p5-MusicBrainz-Client/README.html ? audio/p5-MusicBrainz-Queries/README.html ? audio/p5-MusicBrainz-TRM/README.html ? audio/p5-Shout/README.html ? audio/p5-Xmms/README.html ? audio/p5-libvorbis/README.html ? audio/p5-tagged/README.html ? audio/pd/README.html ? audio/pimp3/README.html ? audio/play/README.html ? audio/playmidi/README.html ? audio/portaudio/README.html ? audio/py-ao/README.html ? audio/py-cddb/README.html ? audio/py-eyed3/README.html ? audio/py-id3/README.html ? audio/py-mad/README.html ? audio/py-musicbrainz/README.html ? audio/py-ogg/README.html ? audio/py-vorbis/README.html ? audio/py-xmms/README.html ? audio/pysol-sound-server/README.html ? audio/quelcom/README.html ? audio/radio/README.html ? audio/raproxy/README.html ? audio/rawrec/README.html ? audio/rebler/README.html ? audio/replay/README.html ? audio/resid/README.html ? audio/rexima/README.html ? audio/rhythmbox/README.html ? audio/rio/README.html ? audio/rio500/README.html ? audio/rioutil/README.html ? audio/ripenc/README.html ? audio/ripit/README.html ? audio/rosegarden/README.html ? audio/rplay/README.html ? audio/rsynth/README.html ? audio/ruby-audiofile/README.html ? audio/ruby-esound/README.html ? audio/ruby-freedb/README.html ? audio/ruby-mp3info/README.html ? audio/ruby-mp3tag/README.html ? audio/ruby-musicbrainz/README.html ? audio/ruby-shout/README.html ? audio/ruby-smf/README.html ? audio/ruby-vorbisfile/README.html ? audio/ruby-xmms/README.html ? audio/s3mod/README.html ? audio/sbagen/README.html ? audio/sdl_mixer/README.html ? audio/sdl_sound/README.html ? audio/sfront/README.html ? audio/shntool/README.html ? audio/shorten/README.html ? audio/shout/README.html ? audio/sidplay/README.html ? audio/simplemod/README.html ? audio/snack/README.html ? audio/snd/README.html ? audio/snowstar/README.html ? audio/songprint/README.html ? audio/sonice/README.html ? audio/soundgrab/README.html ? audio/soundtracker/README.html ? audio/sox/README.html ? audio/speex/README.html ? audio/sphinx/README.html ? audio/spiralloops/README.html ? audio/spiralsynth/README.html ? audio/spiralsynthbaby/README.html ? audio/spiralsynthmodular/README.html ? audio/splay/README.html ? audio/splaytk/README.html ? audio/streamripper/README.html ? audio/streamtuner/README.html ? audio/streamtuner-live365/README.html ? audio/streamtuner-local/README.html ? audio/streamtuner-python/README.html ? audio/sweep/README.html ? audio/swhplugins/README.html ? audio/tclmidi/README.html ? audio/teamspeak_client/README.html ? audio/teamspeak_server/README.html ? audio/teknap/README.html ? audio/tempest_for_eliza/README.html ? audio/terminatorx/README.html ? audio/timidity/README.html ? audio/timidity++/README.html ? audio/timidity++-emacs/README.html ? audio/timidity++-gtk/README.html ? audio/timidity++-motif/README.html ? audio/timidity++-slang/README.html ? audio/timidity++-tcltk/README.html ? audio/timidity++-xaw/README.html ? audio/timidity++-xskin/README.html ? audio/toolame/README.html ? audio/tosha/README.html ? audio/tracker/README.html ? audio/traymp/README.html ? audio/trm/README.html ? audio/trommler/README.html ? audio/ufmcontrol-i18n/README.html ? audio/umix/README.html ? audio/vorbis-tools/README.html ? audio/vorbisgain/README.html ? audio/vsound/README.html ? audio/wavbreaker/README.html ? audio/waveplay/README.html ? audio/wavplay/README.html ? audio/wmcdplay/README.html ? audio/wmfmixer/README.html ? audio/wmix/README.html ? audio/wmmixer/README.html ? audio/wmmp3/README.html ? audio/wmrecord/README.html ? audio/wmsmixer/README.html ? audio/wmtune/README.html ? audio/wmusic/README.html ? audio/workman/README.html ? audio/wsoundprefs/README.html ? audio/wsoundserver/README.html ? audio/x11amp/README.html ? audio/xcd/README.html ? audio/xcdplayer/README.html ? audio/xfce4-mixer/README.html ? audio/xhippo/README.html ? audio/ximp3/README.html ? audio/xmcd/README.html ? audio/xmix/README.html ? audio/xmixer/README.html ? audio/xmmix/README.html ? audio/xmms-a52dec/README.html ? audio/xmms-audiofile/README.html ? audio/xmms-bonk/README.html ? audio/xmms-cdparanoia/README.html ? audio/xmms-cdread/README.html ? audio/xmms-crossfade/README.html ? audio/xmms-crystality/README.html ? audio/xmms-faad/README.html ? audio/xmms-fc/README.html ? audio/xmms-flac/README.html ? audio/xmms-infopipe/README.html ? audio/xmms-kde/README.html ? audio/xmms-kj/README.html ? audio/xmms-ladspa/README.html ? audio/xmms-liveice/README.html ? audio/xmms-mad/README.html ? audio/xmms-mailnotify/README.html ? audio/xmms-midi/README.html ? audio/xmms-musepack/README.html ? audio/xmms-osssurround/README.html ? audio/xmms-pipe/README.html ? audio/xmms-quix3dn/README.html ? audio/xmms-real-random/README.html ? audio/xmms-shn/README.html ? audio/xmms-sid/README.html ? audio/xmms-sndfile/README.html ? audio/xmms-sndstretch/README.html ? audio/xmms-speex/README.html ? audio/xmms-tfmx/README.html ? audio/xmms-uade/README.html ? audio/xmms-volnorm/README.html ? audio/xmp/README.html ? audio/xmpeg3/README.html ? audio/xmradio/README.html ? audio/xsidplay/README.html ? audio/xtuner/README.html ? audio/xvmixer/README.html ? audio/xwave/README.html ? audio/yammi/README.html ? audio/yamt/README.html ? audio/zinf/README.html ? benchmarks/README.html ? benchmarks/bonnie/README.html ? benchmarks/bonnie++/README.html ? benchmarks/bytebench/README.html ? benchmarks/dbench/README.html ? benchmarks/dbs/README.html ? benchmarks/iozone/README.html ? benchmarks/iozone21/README.html ? benchmarks/lmbench/README.html ? benchmarks/nbench/README.html ? benchmarks/netperf/README.html ? benchmarks/netpipe/README.html ? benchmarks/pipebench/README.html ? benchmarks/polygraph/README.html ? benchmarks/postal/README.html ? benchmarks/postmark/README.html ? benchmarks/pybench/README.html ? benchmarks/rawio/README.html ? benchmarks/scimark2/README.html ? benchmarks/scimark2c/README.html ? benchmarks/siege/README.html ? benchmarks/stream/README.html ? benchmarks/tcpblast/README.html ? benchmarks/tmetric/README.html ? benchmarks/ubench/README.html ? benchmarks/xengine/README.html ? biology/README.html ? biology/L-Breeder/README.html ? biology/act/README.html ? biology/artemis/README.html ? biology/avida/README.html ? biology/babel/README.html ? biology/biojava/README.html ? biology/chemeq/README.html ? biology/clustalw/README.html ? biology/coalesce/README.html ? biology/crimap/README.html ? biology/deft/README.html ? biology/distribfold/README.html ? biology/dna-qc/README.html ? biology/emboss/README.html ? biology/fasta/README.html ? biology/fasta3/README.html ? biology/fastdnaml/README.html ? biology/flip/README.html ? biology/fluctuate/README.html ? biology/garlic/README.html ? biology/genpak/README.html ? biology/gff2ps/README.html ? biology/gperiodic/README.html ? biology/grappa/README.html ? biology/hmmer/README.html ? biology/kinemage/README.html ? biology/lamarc/README.html ? biology/libgenome/README.html ? biology/lsysexp/README.html ? biology/migrate/README.html ? biology/molden/README.html ? biology/mopac/README.html ? biology/nab/README.html ? biology/ncbi-toolkit/README.html ? biology/nclever/README.html ? biology/ortep3/README.html ? biology/p5-AcePerl/README.html ? biology/p5-bioperl/README.html ? biology/paml/README.html ? biology/phylip/README.html ? biology/platon/README.html ? biology/povchem/README.html ? biology/primer3/README.html ? biology/psi88/README.html ? biology/py-biopython/README.html ? biology/pymol/README.html ? biology/rasmol/README.html ? biology/recombine/README.html ? biology/ruby-bio/README.html ? biology/seaview/README.html ? biology/seqio/README.html ? biology/sim4/README.html ? biology/spdbv/README.html ? biology/tRNAscan-SE/README.html ? biology/t_coffee/README.html ? biology/tinker/README.html ? biology/treepuzzle/README.html ? biology/treeviewx/README.html ? biology/wise/README.html ? biology/xdrawchem/README.html ? biology/xmolwt/README.html ? cad/README.html ? cad/admesh/README.html ? cad/astk-client/README.html ? cad/astk-serveur/README.html ? cad/atlc/README.html ? cad/calculix/README.html ? cad/cascade/README.html ? cad/chipmunk/README.html ? cad/chipvault/README.html ? cad/cider/README.html ? cad/electric/README.html ? cad/felt/README.html ? cad/geda/README.html ? cad/geda-symbols/README.html ? cad/geda-symcheck/README.html ? cad/geda-utils/README.html ? cad/gerbv/README.html ? cad/gmsh/README.html ? cad/gnetlist/README.html ? cad/gnucap/README.html ? cad/gschem/README.html ? cad/gtkwave/README.html ? cad/gwave/README.html ? cad/irsim/README.html ? cad/iverilog/README.html ? cad/kaskade/README.html ? cad/leocad/README.html ? cad/libgeda/README.html ? cad/linux-eagle/README.html ? cad/magic/README.html ? cad/mars/README.html ? cad/metis-edf/README.html ? cad/ngspice_rework/README.html ? cad/oregano/README.html ? cad/pcb/README.html ? cad/pdnmesh/README.html ? cad/qcad/README.html ? cad/qfsm/README.html ? cad/qmls/README.html ? cad/sceptre/README.html ? cad/slffea/README.html ? cad/spice/README.html ? cad/tkgate/README.html ? cad/tochnog/README.html ? cad/transcalc/README.html ? cad/varkon/README.html ? cad/vipec/README.html ? cad/xcircuit/README.html ? cad/ziarc/README.html ? chinese/README.html ? chinese/CJK/README.html ? chinese/FreeWnn-lib/README.html ? chinese/FreeWnn-server/README.html ? chinese/abiword/README.html ? chinese/acroread5-chsfont/README.html ? chinese/acroread5-chtfont/README.html ? chinese/arphicttf/README.html ? chinese/aterm/README.html ? chinese/auto-tw-l10n/README.html ? chinese/autoconvert/README.html ? chinese/bg5pdf/README.html ? chinese/bg5ps/README.html ? chinese/big5con/README.html ? chinese/big5fs/README.html ? chinese/bind8/README.html ? chinese/bitchx/README.html ? chinese/c2t/README.html ? chinese/cdict5/README.html ? chinese/celvis/README.html ? chinese/chinput/README.html ? chinese/chinput2/README.html ? chinese/chinput3/README.html ? chinese/chitex/README.html ? chinese/cle_base/README.html ? chinese/cless/README.html ? chinese/cmexfonts/README.html ? chinese/cnprint/README.html ? chinese/cwtex/README.html ? chinese/cwtexttf/README.html ? chinese/cxterm/README.html ? chinese/dictd/README.html ? chinese/dictd-database/README.html ? chinese/emacs20/README.html ? chinese/enscript/README.html ? chinese/eterm/README.html ? chinese/fcitx/README.html ? chinese/firebird/README.html ? chinese/fortunetw/README.html ? chinese/gb2jis/README.html ? chinese/gb2ps/README.html ? chinese/gbfs/README.html ? chinese/gbscript/README.html ? chinese/gnumeric/README.html ? chinese/gugod-clean/README.html ? chinese/hanzim/README.html ? chinese/hc/README.html ? chinese/hztty/README.html ? chinese/irssi/README.html ? chinese/jis2gb/README.html ? chinese/joe/README.html ? chinese/kcfonts/README.html ? chinese/kde3-i18n-zh_CN/README.html ? chinese/kde3-i18n-zh_TW/README.html ? chinese/koffice-i18n-zh_TW/README.html ? chinese/kon2/README.html ? chinese/libtabe/README.html ? chinese/links/README.html ? chinese/linux-gtk/README.html ? chinese/lunar/README.html ? chinese/metalist/README.html ? chinese/miniChinput/README.html ? chinese/mkisofs/README.html ? chinese/moefonts-cid/README.html ? chinese/moettf/README.html ? chinese/mplayer-fonts/README.html ? chinese/mule-freewnn/README.html ? chinese/muni/README.html ? chinese/mutt/README.html ? chinese/ntuttf/README.html ? chinese/nvi-big5/README.html ? chinese/nvi-euc-cn/README.html ? chinese/nvi-euc-tw/README.html ? chinese/openoffice-zh_CN/README.html ? chinese/openoffice-zh_TW/README.html ? chinese/oto/README.html ? chinese/oxford/README.html ? chinese/p5-Date-Chinese/README.html ? chinese/p5-Encode-HanConvert/README.html ? chinese/p5-Lingua-ZH-Keywords/README.html ? chinese/p5-Lingua-ZH-Numbers/README.html ? chinese/p5-Lingua-ZH-Summarize/README.html ? chinese/p5-Lingua-ZH-TaBE/README.html ? chinese/p5-Lingua-ZH-Toke/README.html ? chinese/p5-Lingua-ZH-Wrap/README.html ? chinese/pine4/README.html ? chinese/pyDict/README.html ? chinese/qe/README.html ? chinese/qterm/README.html ? chinese/stardict/README.html ? chinese/stardict2/README.html ? chinese/tcl83/README.html ? chinese/telnet/README.html ? chinese/tin/README.html ? chinese/tintin++/README.html ? chinese/tk83/README.html ? chinese/tocps/README.html ? chinese/ttf2pt1/README.html ? chinese/ttfm/README.html ? chinese/ve/README.html ? chinese/vflib/README.html ? chinese/wangttf/README.html ? chinese/xcin25/README.html ? chinese/xemacs/README.html ? chinese/xemacs21/README.html ? chinese/xmms/README.html ? chinese/xpdf/README.html ? chinese/xsim/README.html ? chinese/zhcon/README.html ? comms/README.html ? comms/acfax/README.html ? comms/asmodem/README.html ? comms/bayonne/README.html ? comms/bforce/README.html ? comms/bforce-kst/README.html ? comms/birda/README.html ? comms/bpl+/README.html ? comms/comserv/README.html ? comms/conserver/README.html ? comms/conserver-com/README.html ? comms/ecu/README.html ? comms/efax/README.html ? comms/garmin-utils/README.html ? comms/gfax/README.html ? comms/ghfaxviewer/README.html ? comms/gkermit/README.html ? comms/gmfsk/README.html ? comms/gnokii/README.html ? comms/gscmxx/README.html ? comms/gsmlib/README.html ? comms/hamlib/README.html ? comms/hylafax/README.html ? comms/ixj/README.html ? comms/java-commapi/README.html ? comms/java-commapi-freebsd/README.html ? comms/kallers/README.html ? comms/kermit/README.html ? comms/kpsk/README.html ? comms/libirman/README.html ? comms/libticables/README.html ? comms/lirc/README.html ? comms/lrzsz/README.html ? comms/ltmdm/README.html ? comms/mgetty+sendfax/README.html ? comms/minicom/README.html ? comms/mlan/README.html ? comms/mlan3/README.html ? comms/mserver/README.html ? comms/mwavem/README.html ? comms/p5-Device-Modem/README.html ? comms/p5-Device-SerialPort/README.html ? comms/plp/README.html ? comms/pr/README.html ? comms/py-serial/README.html ? comms/qico/README.html ? comms/qpage/README.html ? comms/ruby-serialport/README.html ? comms/ruby-termios/README.html ? comms/scmxx/README.html ? comms/scud/README.html ? comms/seyon/README.html ? comms/sms_client/README.html ? comms/snooper/README.html ? comms/sredird/README.html ? comms/tilp/README.html ? comms/tits/README.html ? comms/tkhylafax/README.html ? comms/tkscanfax/README.html ? comms/viewfax/README.html ? comms/vpb2/README.html ? comms/vrflash/README.html ? comms/wy60/README.html ? comms/xcept/README.html ? comms/xlog/README.html ? comms/yaps/README.html ? comms/yawmppp/README.html ? comms/zmtx-zmrx/README.html ? comms/zssh/README.html ? converters/README.html ? converters/aish/README.html ? converters/base64/README.html ? converters/btoa/README.html ? converters/chmview/README.html ? converters/cmios9/README.html ? converters/cn2jp/README.html ? converters/dosunix/README.html ? converters/dumpasn1/README.html ? converters/enca/README.html ? converters/fconv/README.html ? converters/fribidi/README.html ? converters/gbase/README.html ? converters/i18ntools/README.html ? converters/iconv/README.html ? converters/iconv-extra/README.html ? converters/iconv-rfc1345/README.html ? converters/ish/README.html ? converters/konwert/README.html ? converters/ktextdecode/README.html ? converters/ktnef/README.html ? converters/libiconv/README.html ? converters/libutf-8/README.html ? converters/mimelib/README.html ? converters/mmencode/README.html ? converters/mpack/README.html ? converters/mule-ucs/README.html ? converters/mule-ucs-emacs20/README.html ? converters/p5-Boulder/README.html ? converters/p5-Convert-ASCII-Armour/README.html ? converters/p5-Convert-ASN1/README.html ? converters/p5-Convert-BER/README.html ? converters/p5-Convert-Morse/README.html ? converters/p5-Convert-PEM/README.html ? converters/p5-Convert-Recode/README.html ? converters/p5-Convert-TNEF/README.html ? converters/p5-Convert-UU/README.html ? converters/p5-Convert-UUlib/README.html ? converters/p5-Cstools/README.html ? converters/p5-MIME-Base64/README.html ? converters/p5-String-Multibyte/README.html ? converters/p5-Text-Iconv/README.html ? converters/p5-Unicode-IMAPUtf7/README.html ? converters/p5-Unicode-Lite/README.html ? converters/p5-Unicode-Map/README.html ? converters/p5-Unicode-Map8/README.html ? converters/p5-Unicode-MapUTF8/README.html ? converters/p5-Unicode-String/README.html ? converters/psiconv/README.html ? converters/py-cjkcodecs/README.html ? converters/py-iconv/README.html ? converters/py-iconvcodec/README.html ? converters/recode/README.html ? converters/ruby-dump.rb/README.html ? converters/ruby-iconv/README.html ? converters/ruby-lv/README.html ? converters/siconv/README.html ? converters/tnef/README.html ? converters/trans/README.html ? converters/tuc/README.html ? converters/unix2dos/README.html ? converters/utf8conv/README.html ? converters/uudeview/README.html ? converters/uudx/README.html ? converters/uulib/README.html ? converters/vda2fbd/README.html ? converters/xdeview/README.html ? converters/xunicode/README.html ? databases/README.html ? databases/WWWdb/README.html ? databases/adodb/README.html ? databases/arcexplorer/README.html ? databases/bbdb/README.html ? databases/bbdb-emacs20/README.html ? databases/cdb/README.html ? databases/clip/README.html ? databases/cyrus-imspd/README.html ? databases/db2/README.html ? databases/db3/README.html ? databases/db4/README.html ? databases/db41/README.html ? databases/db41-nocrypto/README.html ? databases/dbXML/README.html ? databases/dbconnect/README.html ? databases/dbf/README.html ? databases/dbf2mysql/README.html ? databases/dbh/README.html ? databases/dbmetrix/README.html ? databases/dbtool/README.html ? databases/dbview/README.html ? databases/edb/README.html ? databases/erserver/README.html ? databases/fastdb/README.html ? databases/firebird/README.html ? databases/firebird-devel/README.html ? databases/fireprofile/README.html ? databases/freetds/README.html ? databases/gadfly/README.html ? databases/gauche-gdbm/README.html ? databases/gbib/README.html ? databases/gdbm/README.html ? databases/gigabase/README.html ? databases/gmysql/README.html ? databases/gnats/README.html ? databases/gnats4/README.html ? databases/gnomedb/README.html ? databases/gqlplus/README.html ? databases/grass/README.html ? databases/gtksql/README.html ? databases/java-sqlrelay/README.html ? databases/jdb/README.html ? databases/jdbc-oracle816/README.html ? databases/libdbi/README.html ? databases/libgda/README.html ? databases/libgda2/README.html ? databases/libgdamm/README.html ? databases/libgnomedb/README.html ? databases/libiodbc/README.html ? databases/libsdb/README.html ? databases/libudbc/README.html ? databases/lsdb/README.html ? databases/lsdb-emacs20/README.html ? databases/mdbtools/README.html ? databases/memcached/README.html ? databases/mergeant/README.html ? databases/metakit/README.html ? databases/mird/README.html ? databases/msql/README.html ? databases/myodbc/README.html ? databases/mysql++/README.html ? databases/mysql-editor/README.html ? databases/mysql-gui/README.html ? databases/mysql-jdbc-mm/README.html ? databases/mysql-navigator/README.html ? databases/mysql2pgsql/README.html ? databases/mysql323-client/README.html ? databases/mysql323-server/README.html ? databases/mysql40-client/README.html ? databases/mysql40-server/README.html ? databases/mysql41-client/README.html ? databases/mysql41-server/README.html ? databases/mysql_last_value/README.html ? databases/mysqlcc/README.html ? databases/mysqlman/README.html ? databases/mysqltcl/README.html ? databases/mytop/README.html ? databases/namazu2/README.html ? databases/oracle7-client/README.html ? databases/p5-ApacheDBILogConfig/README.html ? databases/p5-ApacheDBILogger/README.html ? databases/p5-AsciiDB-TagFile/README.html ? databases/p5-BerkeleyDB/README.html ? databases/p5-CDB_File/README.html ? databases/p5-CDB_File-Generator/README.html ? databases/p5-Class-DBI/README.html ? databases/p5-Class-DBI-AbstractSearch/README.html ? databases/p5-Class-DBI-BaseDSN/README.html ? databases/p5-Class-DBI-FromCGI/README.html ? databases/p5-Class-DBI-Loader/README.html ? databases/p5-Class-DBI-Oracle/README.html ? databases/p5-Class-DBI-Pager/README.html ? databases/p5-Class-DBI-Pg/README.html ? databases/p5-Class-DBI-Replication/README.html ? databases/p5-Class-DBI-SAK/README.html ? databases/p5-Class-DBI-SQLite/README.html ? databases/p5-Class-DBI-ToSax/README.html ? databases/p5-Class-DBI-mysql/README.html ? databases/p5-DBD-CSV/README.html ? databases/p5-DBD-Excel/README.html ? databases/p5-DBD-InterBase/README.html ? databases/p5-DBD-LDAP/README.html ? databases/p5-DBD-ODBC/README.html ? databases/p5-DBD-Oracle/README.html ? databases/p5-DBD-Pg/README.html ? databases/p5-DBD-PgSPI/README.html ? databases/p5-DBD-SQLite/README.html ? databases/p5-DBD-Sybase/README.html ? databases/p5-DBD-XBase/README.html ? databases/p5-DBD-mysql/README.html ? databases/p5-DBI/README.html ? databases/p5-DBI-137/README.html ? databases/p5-DBIWrapper/README.html ? databases/p5-DBIx-AnyDBD/README.html ? databases/p5-DBIx-Browse/README.html ? databases/p5-DBIx-DBSchema/README.html ? databases/p5-DBIx-DataSource/README.html ? databases/p5-DBIx-Ease/README.html ? databases/p5-DBIx-Password/README.html ? databases/p5-DBIx-Recordset/README.html ? databases/p5-DBIx-SQLEngine/README.html ? databases/p5-DBIx-SearchBuilder/README.html ? databases/p5-DBIx-Table/README.html ? databases/p5-DBIx-Tree/README.html ? databases/p5-DBIx-XHTML_Table/README.html ? databases/p5-DBIx-XML_RDB/README.html ? databases/p5-DBZ_File/README.html ? databases/p5-Data-Page/README.html ? databases/p5-GDBM/README.html ? databases/p5-GraphViz-DBI/README.html ? databases/p5-Ima-DBI/README.html ? databases/p5-MLDBM/README.html ? databases/p5-MLDBM-Sync/README.html ? databases/p5-Metadata/README.html ? databases/p5-Mysql/README.html ? databases/p5-Mysql-Diff/README.html ? databases/p5-Pg/README.html ? databases/p5-ResourcePool-Resource-DBI/README.html ? databases/p5-SQL-Abstract/README.html ? databases/p5-SQL-Statement/README.html ? databases/p5-Search-Namazu/README.html ? databases/p5-Tangram/README.html ? databases/p5-Text-Query-SQL/README.html ? databases/p5-Tie-DBI/README.html ? databases/p5-Time-Piece-MySQL/README.html ? databases/p5-hp200lx-db/README.html ? databases/p5-postgresql-plperl/README.html ? databases/p5-sqlrelay/README.html ? databases/pear-DB/README.html ? databases/pgaccess/README.html ? databases/php-sqlrelay/README.html ? databases/phpmyadmin/README.html ? databases/phppgadmin/README.html ? databases/postgresql-client/README.html ? databases/postgresql-contrib/README.html ? databases/postgresql-devel/README.html ? databases/postgresql-docs/README.html ? databases/postgresql-jdbc/README.html ? databases/postgresql-libpq++/README.html ? databases/postgresql-libpqxx/README.html ? databases/postgresql-odbc/README.html ? databases/postgresql-plruby/README.html ? databases/postgresql-pltcl/README.html ? databases/postgresql-tcltk/README.html ? databases/postgresql7/README.html ? databases/postgresql72/README.html ? databases/postgresql_autodoc/README.html ? databases/puredb/README.html ? databases/pxtools/README.html ? databases/py-MySQL/README.html ? databases/py-MySQLdb/README.html ? databases/py-PyGreSQL/README.html ? databases/py-PySQLite/README.html ? databases/py-SQLDict/README.html ? databases/py-bsddb/README.html ? databases/py-bsddb3/README.html ? databases/py-cdb/README.html ? databases/py-gdbm/README.html ? databases/py-oops/README.html ? databases/py-psycopg/README.html ? databases/py-pyPgSQL/README.html ? databases/py-sqlrelay/README.html ? databases/pydbdesigner/README.html ? databases/qt-mysql-plugin/README.html ? databases/qt-pgsql-plugin/README.html ? databases/rdb/README.html ? databases/rdfdb/README.html ? databases/ruby-bdb/README.html ? databases/ruby-bdb1/README.html ? databases/ruby-cdb/README.html ? databases/ruby-criteria/README.html ? databases/ruby-dbd_interbase/README.html ? databases/ruby-dbd_msql/README.html ? databases/ruby-dbd_mysql/README.html ? databases/ruby-dbd_odbc/README.html ? databases/ruby-dbd_pg/README.html ? databases/ruby-dbd_proxy/README.html ? databases/ruby-dbd_sqlite/README.html ? databases/ruby-dbd_sqlrelay/README.html ? databases/ruby-dbi/README.html ? databases/ruby-gdbm/README.html ? databases/ruby-interbase/README.html ? databases/ruby-msql/README.html ? databases/ruby-mysql/README.html ? databases/ruby-o_dbm/README.html ? databases/ruby-odbc/README.html ? databases/ruby-postgres/README.html ? databases/ruby-rdbc1/README.html ? databases/ruby-search-namazu/README.html ? databases/ruby-sqlite/README.html ? databases/ruby-sqlrelay/README.html ? databases/sqlite/README.html ? databases/sqlrelay/README.html ? databases/sqsh/README.html ? databases/sybase-ocsd/README.html ? databases/tcl-Mysql/README.html ? databases/tdb/README.html ? databases/tinycdb/README.html ? databases/tkgnats/README.html ? databases/tora/README.html ? databases/typhoon/README.html ? databases/unixODBC/README.html ? databases/useracc/README.html ? databases/usogres/README.html ? databases/wfb2sql/README.html ? databases/xmbase-grok/README.html ? databases/xmysql/README.html ? databases/xmysqladmin/README.html ? databases/zodb/README.html ? databases/zodb3/README.html ? databases/zpygresqlda/README.html ? deskutils/README.html ? deskutils/abacus/README.html ? deskutils/aspostit/README.html ? deskutils/babytrans/README.html ? deskutils/basket/README.html ? deskutils/bigyear/README.html ? deskutils/cal/README.html ? deskutils/cbb/README.html ? deskutils/checkrdf/README.html ? deskutils/dailystrips/README.html ? deskutils/gaddr/README.html ? deskutils/gcal/README.html ? deskutils/gdeskcal/README.html ? deskutils/gdeskcal-skins/README.html ? deskutils/gdesklets/README.html ? deskutils/gdesklets-recentlyused/README.html ? deskutils/gdesklets-starterbar/README.html ? deskutils/gemcal/README.html ? deskutils/genius/README.html ? deskutils/glabels/README.html ? deskutils/gmcal/README.html ? deskutils/gnofin/README.html ? deskutils/gnomeblog/README.html ? deskutils/gnomepim/README.html ? deskutils/gnomeutils2/README.html ? deskutils/gnotime/README.html ? deskutils/goats/README.html ? deskutils/gtimer/README.html ? deskutils/gtodo/README.html ? deskutils/gucharmap/README.html ? deskutils/gworkspace/README.html ? deskutils/ical/README.html ? deskutils/ithought/README.html ? deskutils/jlj/README.html ? deskutils/karamba/README.html ? deskutils/kbirthday/README.html ? deskutils/kdepim3/README.html ? deskutils/kluje/README.html ? deskutils/knowit/README.html ? deskutils/kronolith/README.html ? deskutils/krss/README.html U deskutils/libmrproject/Makefile ? deskutils/libmrproject/README.html ? deskutils/ljcharm/README.html ? deskutils/logjam/README.html ? deskutils/logjam2/README.html ? deskutils/loserjabber/README.html ? deskutils/mcal/README.html ? deskutils/mencal/README.html ? deskutils/mhc/README.html ? deskutils/mhc-emacs20/README.html ? deskutils/mhc-xemacs21-mule/README.html ? deskutils/mnemo/README.html ? deskutils/moneydance/README.html ? deskutils/mrproject/README.html ? deskutils/multi-backgrounds-daemon/README.html ? deskutils/nag/README.html ? deskutils/narval/README.html ? deskutils/notebook/README.html ? deskutils/offix-trash/README.html ? deskutils/phpgroupware/README.html ? deskutils/plan/README.html ? deskutils/preferences.app/README.html ? deskutils/rolo/README.html ? deskutils/rox-memo/README.html ? deskutils/rubrica/README.html ? deskutils/sliderule/README.html ? deskutils/teapot/README.html ? deskutils/tuxcards/README.html ? deskutils/wmpinboard/README.html ? deskutils/xcalendar/README.html ? deskutils/xchm/README.html ? deskutils/xfce4-notes/README.html ? deskutils/xinvest/README.html ? deskutils/xmaddressbook/README.html ? deskutils/xmdiary/README.html ? deskutils/xopps/README.html ? deskutils/xpad/README.html ? deskutils/xpostit/README.html ? deskutils/xpostitPlus/README.html ? deskutils/xrolo/README.html ? deskutils/xwrits/README.html ? deskutils/yank/README.html ? deskutils/zorro/README.html ? devel/README.html ? devel/ElectricFence/README.html ? devel/ORBacus/README.html ? devel/ORBit/README.html ? devel/ORBit2/README.html ? devel/SpecTcl/README.html ? devel/a2dev/README.html ? devel/aap/README.html ? devel/ac-archive/README.html ? devel/acpicatools/README.html ? devel/adabindx/README.html ? devel/adabooch/README.html ? devel/adabooch-doc-html/README.html ? devel/adacurses/README.html ? devel/adasdl/README.html ? devel/agenda-headers/README.html ? devel/agenda-libs/README.html ? devel/agenda-snow-libs/README.html ? devel/agenda-static-libs/README.html ? devel/ald/README.html ? devel/alf/README.html ? devel/allegro/README.html ? devel/amulet/README.html ? devel/anjuta/README.html ? devel/anjuta-devel/README.html ? devel/antlr/README.html ? devel/apache-ant/README.html ? devel/apr/README.html ? devel/arch/README.html ? devel/argouml/README.html ? devel/arm-aout-binutils/README.html ? devel/arm-elf-binutils/README.html ? devel/arm-elf-gcc295/README.html ? devel/arm-rtems-binutils/README.html ? devel/arm-rtems-g77/README.html ? devel/arm-rtems-gcc/README.html ? devel/arm-rtems-gcj/README.html ? devel/arm-rtems-gdb/README.html ? devel/arm-rtems-objc/README.html ? devel/as80/README.html ? devel/asis/README.html ? devel/asl/README.html ? devel/asmutils/README.html ? devel/astyle/README.html ? devel/atk/README.html ? devel/atlas/README.html ? devel/aunit/README.html ? devel/autobook/README.html ? devel/autoconf/README.html ? devel/autoconf213/README.html ? devel/autoconf257/README.html ? devel/autodia/README.html ? devel/autogen/README.html ? devel/automake/README.html ? devel/automake14/README.html ? devel/automake17/README.html ? devel/avarice/README.html ? devel/avltree/README.html ? devel/avr-binutils/README.html ? devel/avr-gcc/README.html ? devel/avr-gdb/README.html ? devel/avr-libc/README.html ? devel/avrdude/README.html ? devel/avrprog/README.html ? devel/bcc/README.html ? devel/bcpp/README.html ? devel/bglibs/README.html ? devel/bicyclerepair/README.html ? devel/bin86/README.html ? devel/bison/README.html ? devel/bison1875/README.html ? devel/bnf/README.html ? devel/boaconstructor/README.html ? devel/boehm-gc/README.html ? devel/bonobo/README.html ? devel/bonobo-conf/README.html ? devel/boost/README.html ? devel/bugbuddy2/README.html ? devel/bugzilla/README.html ? devel/buildtool/README.html ? devel/buildtool-doc/README.html ? devel/byaccj/README.html ? devel/c2lib/README.html ? devel/c2man/README.html ? devel/c4/README.html ? devel/c_c++_reference/README.html ? devel/c_parser/README.html ? devel/calibrator/README.html ? devel/camlp4/README.html ? devel/cbrowser/README.html ? devel/cc65/README.html ? devel/ccache/README.html ? devel/cccc/README.html ? devel/ccdoc/README.html ? devel/ccmalloc/README.html ? devel/cdecl/README.html ? devel/cdialog/README.html ? devel/cdk/README.html ? devel/cdoc/README.html ? devel/cflow/README.html ? devel/cflow2vcg/README.html ? devel/chora/README.html ? devel/cil/README.html ? devel/cl-asdf/README.html ? devel/cl-asdf-clisp/README.html ? devel/cl-asdf-cmucl/README.html ? devel/cl-asdf-sbcl/README.html ? devel/cl-port/README.html ? devel/cl-port-clisp/README.html ? devel/cl-port-cmucl/README.html ? devel/cl-port-sbcl/README.html ? devel/cl-split-sequence/README.html ? devel/cl-split-sequence-clisp/README.html ? devel/cl-split-sequence-cmucl/README.html ? devel/cl-split-sequence-sbcl/README.html ? devel/clanlib/README.html ? devel/clig/README.html ? devel/clint/README.html ? devel/clisp-hyperspec/README.html ? devel/clo++/README.html ? devel/cmake/README.html ? devel/codecrusader/README.html ? devel/commoncpp/README.html ? devel/cons/README.html ? devel/cons-test/README.html ? devel/cook/README.html ? devel/cppadvio/README.html ? devel/cppunit/README.html ? devel/cproto/README.html ? devel/crossgo32/README.html ? devel/crossgo32-djgpp2/README.html ? devel/crossgo32-djgpp2-pdcurses/README.html ? devel/cscope/README.html ? devel/cscout/README.html ? devel/cssc/README.html ? devel/ctags/README.html ? devel/cutils/README.html ? devel/cvs+ipv6/README.html ? devel/cvs2cl/README.html ? devel/cvs2html/README.html ? devel/cvs2p4/README.html ? devel/cvsadmin/README.html ? devel/cvsbook/README.html ? devel/cvsd/README.html ? devel/cvsdelta/README.html ? devel/cvsdiff2patch/README.html ? devel/cvsgraph/README.html ? devel/cvslines/README.html ? devel/cvsmapfs/README.html ? devel/cvsmonitor/README.html ? devel/cvspadm/README.html ? devel/cvsplot/README.html ? devel/cvsps/README.html ? devel/cvsstat/README.html ? devel/cvstrac/README.html ? devel/cvsutils/README.html ? devel/cvsweb/README.html ? devel/cvswrap/README.html ? devel/cweb/README.html ? devel/cxmon/README.html ? devel/cxref/README.html ? devel/darcs/README.html ? devel/darts/README.html ? devel/dcons/README.html ? devel/ddd/README.html ? devel/decompyle/README.html ? devel/devhelp/README.html ? devel/devtodo/README.html ? devel/dia2code/README.html ? devel/diffconvert/README.html ? devel/directfb/README.html ? devel/distcc/README.html ? devel/distel/README.html ? devel/dmake/README.html ? devel/dmalloc/README.html ? devel/doc++/README.html ? devel/doctorj/README.html ? devel/dotconf/README.html ? devel/doxygen/README.html ? devel/e4graph/README.html ? devel/ebnf2yacc/README.html ? devel/eboxy/README.html ? devel/ecb/README.html ? devel/ecb-emacs20/README.html ? devel/ecgi/README.html ? devel/eieio/README.html ? devel/eieio-emacs20/README.html ? devel/elf/README.html ? devel/elfio/README.html ? devel/elfsh/README.html ? devel/elftoaout/README.html ? devel/elib/README.html ? devel/elib-emacs19/README.html ? devel/elib-emacs20/README.html ? devel/entity/README.html ? devel/erlslang/README.html ? devel/error/README.html ? devel/esdl/README.html ? devel/f77flow/README.html ? devel/fam/README.html ? devel/fampp/README.html ? devel/fastcrc/README.html ? devel/fastdep/README.html ? devel/fc++/README.html ? devel/ffcall/README.html ? devel/fhist/README.html ? devel/fib/README.html ? devel/flick/README.html ? devel/florist/README.html ? devel/flyspray/README.html ? devel/fnccheck/README.html ? devel/fnorb/README.html ? devel/fortran-utils/README.html ? devel/fpp/README.html ? devel/freelibiberty/README.html ? devel/freescope/README.html ? devel/frink/README.html ? devel/ftnchek/README.html ? devel/funnelweb/README.html ? devel/g-wrap/README.html ? devel/g2c/README.html ? devel/gaa/README.html ? devel/gccxml/README.html ? devel/gconf/README.html ? devel/gconf2/README.html ? devel/gconfmm/README.html ? devel/gcvs/README.html ? devel/gdb52/README.html ? devel/gdb53/README.html ? devel/gdb53-act/README.html ? devel/gdbmods/README.html ? devel/gengameng/README.html ? devel/gengetopt/README.html ? devel/gettext/README.html ? devel/getxml/README.html ? devel/gindent/README.html ? devel/glade/README.html ? devel/glade2/README.html ? devel/glg/README.html ? devel/glib12/README.html ? devel/glib20/README.html ? devel/global/README.html ? devel/glui/README.html ? devel/gmake/README.html ? devel/gnome-vfsmm/README.html ? devel/gnomebuild/README.html ? devel/gnomecommon/README.html ? devel/gnomecrash/README.html ? devel/gnomevfs/README.html ? devel/gnomevfs-extras/README.html ? devel/gnomevfs2/README.html ? devel/gnustep/README.html ? devel/gnustep-make/README.html ? devel/gob2/README.html ? devel/gorm/README.html ? devel/gperf/README.html ? devel/gputils/README.html ? devel/gtgt/README.html ? devel/gtranslator/README.html ? devel/gvd/README.html ? devel/happydoc/README.html ? devel/hp48cc/README.html ? devel/hptools/README.html ? devel/hs-alex/README.html ? devel/hs-buddha/README.html ? devel/hs-c2hs/README.html ? devel/hs-crypto/README.html ? devel/hs-drift/README.html ? devel/hs-green-card/README.html ? devel/hs-haddock/README.html ? devel/hs-happy/README.html ? devel/hs-hat/README.html ? devel/hs-hdoc/README.html ? devel/hs-hmake/README.html ? devel/hs-hpl/README.html ? devel/hs-idoc/README.html ? devel/hs-popenhs/README.html ? devel/hs-tclhaskell-ghc/README.html ? devel/hs-uni/README.html ? devel/hypersrc/README.html ? devel/i386-rtems-binutils/README.html ? devel/i386-rtems-g77/README.html ? devel/i386-rtems-gcc/README.html ? devel/i386-rtems-gcj/README.html ? devel/i386-rtems-gdb/README.html ? devel/i386-rtems-objc/README.html ? devel/i960-rtems-binutils/README.html ? devel/i960-rtems-gcc/README.html ? devel/i960-rtems-gdb/README.html ? devel/icu/README.html ? devel/icu2/README.html ? devel/id-utils/README.html ? devel/idlefork/README.html ? devel/ifd-test/README.html ? devel/imake/README.html ? devel/imake-4/README.html ? devel/inilib/README.html ? devel/invitation_to_ruby/README.html ? devel/ixlib/README.html ? devel/jam/README.html ? devel/jrtplib/README.html ? devel/kaptain/README.html ? devel/kdbg/README.html ? devel/kdesdk3/README.html ? devel/kdevelop/README.html ? devel/kimwitu/README.html ? devel/kimwitu++/README.html ? devel/korelib/README.html ? devel/kprof/README.html ? devel/kyra/README.html ? devel/lbpp/README.html ? devel/lemon/README.html ? devel/leoarg/README.html ? devel/libIDL/README.html ? devel/libPropList/README.html ? devel/libU77/README.html ? devel/libafterbase/README.html ? devel/libargparse/README.html ? devel/libast/README.html ? devel/libavl/README.html ? devel/libbonobo/README.html ? devel/libbonobomm/README.html ? devel/libcache/README.html ? devel/libcapsinetwork/README.html ? devel/libchipcard/README.html ? devel/libchipcard-kde/README.html ? devel/libcii/README.html ? devel/libcoro/README.html ? devel/libdict/README.html ? devel/libdlmalloc/README.html ? devel/libds/README.html ? devel/libdsp/README.html ? devel/libedit/README.html ? devel/libelf/README.html ? devel/libevent/README.html ? devel/libexecinfo/README.html ? devel/libffi/README.html ? devel/libformat/README.html ? devel/libfs++/README.html ? devel/libg++/README.html ? devel/libgetline/README.html ? devel/libghthash/README.html ? devel/libgii/README.html ? devel/libglade/README.html ? devel/libglade2/README.html ? devel/libglademm/README.html ? devel/libgnugetopt/README.html ? devel/libgsf/README.html ? devel/libgtop/README.html ? devel/libgtop2/README.html ? devel/libhash/README.html ? devel/libhoard/README.html ? devel/libical/README.html ? devel/libidn/README.html ? devel/libltdl/README.html ? devel/libmba/README.html ? devel/libmcve/README.html ? devel/libmtrie/README.html ? devel/libol/README.html ? devel/libole2/README.html ? devel/liboop/README.html ? devel/libpci/README.html ? devel/libpdel/README.html ? devel/libredblack/README.html ? devel/libshbuf/README.html ? devel/libshhmsg/README.html ? devel/libshhopt/README.html ? devel/libsigc++/README.html ? devel/libsigc++12/README.html ? devel/libsigcx/README.html ? devel/libslang/README.html ? devel/libsoup/README.html ? devel/libstatgrab/README.html ? devel/libstocks/README.html ? devel/libstrfunc/README.html ? devel/libstroke/README.html ? devel/libtai/README.html ? devel/libtar/README.html ? devel/libtecla/README.html ? devel/libticalcs/README.html ? devel/libtifiles/README.html ? devel/libtool13/README.html ? devel/libtool14/README.html ? devel/libtool15/README.html ? devel/libukcprog/README.html ? devel/libunicode/README.html ? devel/libusb/README.html ? devel/libuta/README.html ? devel/libvanessa_adt/README.html ? devel/libvanessa_logger/README.html ? devel/libvanessa_socket/README.html ? devel/libvc/README.html ? devel/libxalloc/README.html ? devel/libzt/README.html ? devel/libzvbi/README.html ? devel/lightning/README.html ? devel/lincvs/README.html ? devel/linguist/README.html ? devel/linux-libglade/README.html ? devel/linux-p4v/README.html ? devel/linux-runrev/README.html ? devel/linux-sdl12/README.html ? devel/linux-understand_ada/README.html ? devel/linux-understand_c/README.html ? devel/linux-understand_java/README.html ? devel/linux_devtools/README.html ? devel/linux_devtools-6/README.html ? devel/linux_devtools-7/README.html ? devel/linux_kdump/README.html ? devel/linuxthreads/README.html ? devel/log4c/README.html ? devel/log4cpp/README.html ? devel/lwp/README.html ? devel/m4/README.html ? devel/m6811-binutils/README.html ? devel/m6811-gcc/README.html ? devel/m68k-rtems-binutils/README.html ? devel/m68k-rtems-g77/README.html ? devel/m68k-rtems-gcc/README.html ? devel/m68k-rtems-gcj/README.html ? devel/m68k-rtems-gdb/README.html ? devel/m68k-rtems-objc/README.html ? devel/make++/README.html ? devel/makedepend/README.html ? devel/makeplus/README.html ? devel/memcheck/README.html ? devel/meta-cvs/README.html ? devel/mico/README.html ? devel/mime/README.html ? devel/mingw/README.html ? devel/mingw-bin-msvcrt/README.html ? devel/mingw-binutils/README.html ? devel/mingw-gcc/README.html ? devel/mingw-opengl-headers/README.html ? devel/mingw32-bin-msvcrt/README.html ? devel/mingw32-binutils/README.html ? devel/mingw32-gcc/README.html ? devel/mips-rtems-binutils/README.html ? devel/mips-rtems-g77/README.html ? devel/mips-rtems-gcc/README.html ? devel/mips-rtems-gcj/README.html ? devel/mips-rtems-gdb/README.html ? devel/mips-rtems-objc/README.html ? devel/mipsel-linux-binutils/README.html ? devel/mipsel-linux-gcc/README.html ? devel/mipsel-linux-kernel-headers/README.html ? devel/mk/README.html ? devel/mkcmd/README.html ? devel/mkmf/README.html ? devel/mm/README.html ? devel/mob/README.html ? devel/moonshine/README.html ? devel/motor/README.html ? devel/mpatrol/README.html ? devel/mprof/README.html ? devel/msp430-binutils/README.html ? devel/msp430-gcc/README.html ? devel/msp430-gdb/README.html ? devel/msp430-libc/README.html ? devel/msrc0/README.html ? devel/nana/README.html ? devel/nasm/README.html ? devel/ncurses/README.html ? devel/newfile/README.html ? devel/newt/README.html ? devel/ngpt/README.html ? devel/noweb/README.html ? devel/nspr/README.html ? devel/oaf/README.html ? devel/ocaml-classes/README.html ? devel/ocaml-findlib/README.html ? devel/ocaml-pcre/README.html ? devel/ocamlweb/README.html ? devel/omniORB/README.html ? devel/oniguruma/README.html ? devel/openzz/README.html ? devel/orbitcpp/README.html ? devel/ossp-al/README.html ? devel/ossp-cfg/README.html ? devel/ossp-ex/README.html ? devel/ossp-l2/README.html ? devel/ossp-val/README.html ? devel/ossp-var/README.html ? devel/p4.el/README.html ? devel/p4api/README.html ? devel/p4db/README.html ? devel/p4delta/README.html ? devel/p5-Agent/README.html ? devel/p5-Algorithm-Diff/README.html ? devel/p5-Algorithm-MDiff/README.html ? devel/p5-Algorithm-MarkovChain/README.html ? devel/p5-Algorithm-Numerical-Shuffle/README.html ? devel/p5-Algorithm-Permute/README.html ? devel/p5-Alias/README.html ? devel/p5-App-Info/README.html ? devel/p5-AppConfig/README.html ? devel/p5-AppConfig-Std/README.html ? devel/p5-Array-Window/README.html ? devel/p5-AtExit/README.html ? devel/p5-Attribute-Handlers/README.html ? devel/p5-B-Deobfuscate/README.html ? devel/p5-B-Graph/README.html ? devel/p5-B-Keywords/README.html ? devel/p5-BSD-Resource/README.html ? devel/p5-BSD-stat/README.html ? devel/p5-C-Scan/README.html ? devel/p5-Cache-Cache/README.html ? devel/p5-Cache-Mmap/README.html ? devel/p5-Carp-Assert/README.html ? devel/p5-Carp-Datum/README.html ? devel/p5-Cdk/README.html ? devel/p5-Class-Accessor/README.html ? devel/p5-Class-ArrayObjects/README.html ? devel/p5-Class-Autouse/README.html ? devel/p5-Class-BlackHole/README.html ? devel/p5-Class-Container/README.html ? devel/p5-Class-Contract/README.html ? devel/p5-Class-Data-Inheritable/README.html ? devel/p5-Class-Date/README.html ? devel/p5-Class-Default/README.html ? devel/p5-Class-Delegation/README.html ? devel/p5-Class-Factory/README.html ? devel/p5-Class-Factory-Util/README.html ? devel/p5-Class-Fields/README.html ? devel/p5-Class-Generate/README.html ? devel/p5-Class-Hook/README.html ? devel/p5-Class-ISA/README.html ? devel/p5-Class-Inner/README.html ? devel/p5-Class-Inspector/README.html ? devel/p5-Class-Loader/README.html ? devel/p5-Class-MakeMethods/README.html ? devel/p5-Class-MethodMaker/README.html ? devel/p5-Class-ObjectTemplate/README.html ? devel/p5-Class-ObjectTemplate-DB/README.html ? devel/p5-Class-ReturnValue/README.html ? devel/p5-Class-Singleton/README.html ? devel/p5-Class-Tangram/README.html ? devel/p5-Class-Tom/README.html ? devel/p5-Class-Trigger/README.html ? devel/p5-Class-WhiteHole/README.html ? devel/p5-Clone/README.html ? devel/p5-Config-Auto/README.html ? devel/p5-Config-General/README.html ? devel/p5-Config-Ini/README.html ? devel/p5-Config-IniFiles/README.html ? devel/p5-Config-Setting/README.html ? devel/p5-Config-Simple/README.html ? devel/p5-Config-Tiny/README.html ? devel/p5-ConfigReader/README.html ? devel/p5-Coro/README.html ? devel/p5-Curses/README.html ? devel/p5-Curses-Application/README.html ? devel/p5-Curses-Forms/README.html ? devel/p5-Curses-Widgets/README.html ? devel/p5-DB_File-Lock/README.html ? devel/p5-Data-Compare/README.html ? devel/p5-Data-DumpXML/README.html ? devel/p5-Data-Flow/README.html ? devel/p5-Data-HexDump/README.html ? devel/p5-Data-Properties/README.html ? devel/p5-Data-Serializer/README.html ? devel/p5-Data-ShowTable/README.html ? devel/p5-Data-TemporaryBag/README.html ? devel/p5-Data-UUID/README.html ? devel/p5-Date-Calc/README.html ? devel/p5-Date-DayOfWeek/README.html ? devel/p5-Date-ICal/README.html ? devel/p5-Date-ISO/README.html ? devel/p5-Date-Leapyear/README.html ? devel/p5-Date-Manip/README.html ? devel/p5-Date-Pcalc/README.html ? devel/p5-Date-Roman/README.html ? devel/p5-Date-Simple/README.html ? devel/p5-DateConvert/README.html ? devel/p5-DateTime/README.html ? devel/p5-DateTime-Calendar-Christian/README.html ? devel/p5-DateTime-Calendar-FrenchRevolutionary/README.html ? devel/p5-DateTime-Calendar-Hebrew/README.html ? devel/p5-DateTime-Calendar-Julian/README.html ? devel/p5-DateTime-Calendar-Mayan/README.html ? devel/p5-DateTime-Calendar-Pataphysical/README.html ? devel/p5-DateTime-Event-Cron/README.html ? devel/p5-DateTime-Event-Easter/README.html ? devel/p5-DateTime-Event-ICal/README.html ? devel/p5-DateTime-Event-NameDay/README.html ? devel/p5-DateTime-Event-Recurrence/README.html ? devel/p5-DateTime-Event-Sunrise/README.html ? devel/p5-DateTime-Fiscal-Year/README.html ? devel/p5-DateTime-Format-Baby/README.html ? devel/p5-DateTime-Format-Bork/README.html ? devel/p5-DateTime-Format-Builder/README.html ? devel/p5-DateTime-Format-DBI/README.html ? devel/p5-DateTime-Format-DateManip/README.html ? devel/p5-DateTime-Format-Epoch/README.html ? devel/p5-DateTime-Format-Excel/README.html ? devel/p5-DateTime-Format-HTTP/README.html ? devel/p5-DateTime-Format-IBeat/README.html ? devel/p5-DateTime-Format-ICal/README.html ? devel/p5-DateTime-Format-ISO8601/README.html ? devel/p5-DateTime-Format-Mail/README.html ? devel/p5-DateTime-Format-MySQL/README.html ? devel/p5-DateTime-Format-Pg/README.html ? devel/p5-DateTime-Format-Roman/README.html ? devel/p5-DateTime-Format-Strptime/README.html ? devel/p5-DateTime-Format-W3CDTF/README.html ? devel/p5-DateTime-HiRes/README.html ? devel/p5-DateTime-Locale/README.html ? devel/p5-DateTime-Precise/README.html ? devel/p5-DateTime-Set/README.html ? devel/p5-DateTime-TimeZone/README.html ? devel/p5-DateTime-TimeZone-Alias/README.html ? devel/p5-Devel-Constants/README.html ? devel/p5-Devel-Cover/README.html ? devel/p5-Devel-DProf/README.html ? devel/p5-Devel-Leak/README.html ? devel/p5-Devel-Modlist/README.html ? devel/p5-Devel-ObjectTracker/README.html ? devel/p5-Devel-Peek/README.html ? devel/p5-Devel-Profile/README.html ? devel/p5-Devel-Profiler/README.html ? devel/p5-Devel-StackTrace/README.html ? devel/p5-Devel-Symdump/README.html ? devel/p5-Devel-ptkdb/README.html ? devel/p5-Dialog/README.html ? devel/p5-Encode-compat/README.html ? devel/p5-Errno/README.html ? devel/p5-Event/README.html ? devel/p5-Exception-Class/README.html ? devel/p5-Exporter-Lite/README.html ? devel/p5-ExtUtils-ParseXS/README.html ? devel/p5-ExtUtils-XSBuilder/README.html ? devel/p5-File-BasicFlock/README.html ? devel/p5-File-Binary/README.html ? devel/p5-File-Cache/README.html ? devel/p5-File-DirSync/README.html ? devel/p5-File-FTS/README.html ? devel/p5-File-Find-Rule/README.html ? devel/p5-File-Flat/README.html ? devel/p5-File-Flock/README.html ? devel/p5-File-Lock/README.html ? devel/p5-File-MMagic/README.html ? devel/p5-File-NCopy/README.html ? devel/p5-File-NFSLock/README.html ? devel/p5-File-ReadBackwards/README.html ? devel/p5-File-Remove/README.html ? devel/p5-File-Slurp/README.html ? devel/p5-File-Spec/README.html ? devel/p5-File-Sync/README.html ? devel/p5-File-Tail/README.html ? devel/p5-File-Temp/README.html ? devel/p5-Filter/README.html ? devel/p5-Filter-CBC/README.html ? devel/p5-FreezeThaw/README.html ? devel/p5-GTop/README.html ? devel/p5-Getargs-Long/README.html ? devel/p5-Getopt-ArgvFile/README.html ? devel/p5-Getopt-Declare/README.html ? devel/p5-Getopt-Long/README.html ? devel/p5-Getopt-Mixed/README.html ? devel/p5-Glade-Perl/README.html ? devel/p5-Heap/README.html ? devel/p5-IO/README.html ? devel/p5-IO-Multiplex/README.html ? devel/p5-IO-String/README.html ? devel/p5-IO-Stty/README.html ? devel/p5-IO-Tty/README.html ? devel/p5-IO-stringy/README.html ? devel/p5-IPC-Cache/README.html ? devel/p5-IPC-Locker/README.html ? devel/p5-IPC-MM/README.html ? devel/p5-IPC-Run/README.html ? devel/p5-IPC-ShareLite/README.html ? devel/p5-IPC-Shareable/README.html ? devel/p5-IPC-SharedCache/README.html ? devel/p5-Include/README.html ? devel/p5-Inline/README.html ? devel/p5-Inline-ASM/README.html ? devel/p5-Inline-CPP/README.html ? devel/p5-Inline-Filters/README.html ? devel/p5-Inline-Java/README.html ? devel/p5-Inline-Tcl/README.html ? devel/p5-Ioctl/README.html ? devel/p5-Locale-Maketext/README.html ? devel/p5-Locale-Maketext-Fuzzy/README.html ? devel/p5-Locale-Maketext-Gettext/README.html ? devel/p5-Locale-Maketext-Lexicon/README.html ? devel/p5-Locale-Maketext-Simple/README.html ? devel/p5-Locale-PGetText/README.html ? devel/p5-Locale-gettext/README.html ? devel/p5-LockFile-Simple/README.html ? devel/p5-Log-Agent/README.html ? devel/p5-Log-Agent-Logger/README.html ? devel/p5-Log-Dispatch/README.html ? devel/p5-Log-Dispatch-Config/README.html ? devel/p5-Log-Dispatch-FileRotate/README.html ? devel/p5-Log-Log4perl/README.html ? devel/p5-Log-TraceMessages/README.html ? devel/p5-Mac-FileSpec-Unixish/README.html ? devel/p5-Make/README.html ? devel/p5-Memoize/README.html ? devel/p5-Module-Build/README.html ? devel/p5-Module-CoreList/README.html ? devel/p5-Module-Info/README.html ? devel/p5-Module-Reload/README.html ? devel/p5-Module-ScanDeps/README.html ? devel/p5-NEXT/README.html ? devel/p5-OLE-Storage_Lite/README.html ? devel/p5-ORBit/README.html ? devel/p5-Object-MultiType/README.html ? devel/p5-Object-Realize-Later/README.html ? devel/p5-P4/README.html ? devel/p5-P4-Client/README.html ? devel/p5-PAR/README.html ? devel/p5-PAR-Dist/README.html ? devel/p5-PCSC-Card/README.html ? devel/p5-POE/README.html ? devel/p5-POE-Component-Client-HTTP/README.html ? devel/p5-POE-Component-Client-POP3/README.html ? devel/p5-POE-Component-Client-Ping/README.html ? devel/p5-POE-Component-Client-UserAgent/README.html ? devel/p5-POE-Component-DBIAgent/README.html ? devel/p5-POE-Component-DirWatch/README.html ? devel/p5-POE-Component-IKC/README.html ? devel/p5-POE-Component-IKC-ReallySimple/README.html ? devel/p5-POE-Component-JobQueue/README.html ? devel/p5-POE-Component-Logger/README.html ? devel/p5-POE-Component-Pcap/README.html ? devel/p5-POE-Component-RSS/README.html ? devel/p5-POE-Session-Cascading/README.html ? devel/p5-POE-Session-MultiDispatch/README.html ? devel/p5-PPerl/README.html ? devel/p5-PV/README.html ? devel/p5-Parallel-ForkManager/README.html ? devel/p5-Params-Validate/README.html ? devel/p5-Parse-PerlConfig/README.html ? devel/p5-Parse-RecDescent/README.html ? devel/p5-Parse-Yapp/README.html ? devel/p5-Penguin/README.html ? devel/p5-Penguin-Easy/README.html ? devel/p5-PerlMenu/README.html ? devel/p5-Pod-Coverage/README.html ? devel/p5-Proc-Background/README.html ? devel/p5-Proc-Daemon/README.html ? devel/p5-Proc-PIDFile/README.html ? devel/p5-Proc-ProcessTable/README.html ? devel/p5-Proc-Reliable/README.html ? devel/p5-Proc-Simple/README.html ? devel/p5-Rcs/README.html ? devel/p5-Rcs-Agent/README.html ? devel/p5-ReadLine-Gnu/README.html ? devel/p5-ReadLine-Perl/README.html ? devel/p5-Religion/README.html ? devel/p5-ResourcePool/README.html ? devel/p5-Resources/README.html ? devel/p5-SDL/README.html ? devel/p5-SPOPS/README.html ? devel/p5-Search-Binary/README.html ? devel/p5-Server-FastPL/README.html ? devel/p5-Set-Crontab/README.html ? devel/p5-Set-Infinite/README.html ? devel/p5-Set-NestedGroups/README.html ? devel/p5-Set-Object/README.html ? devel/p5-Set-Scalar/README.html ? devel/p5-Shape/README.html ? devel/p5-Sort-ArrayOfArrays/README.html ? devel/p5-Sort-Versions/README.html ? devel/p5-Storable/README.html ? devel/p5-String-Approx/README.html ? devel/p5-String-CRC32/README.html ? devel/p5-String-Checker/README.html ? devel/p5-String-LRC/README.html ? devel/p5-String-Parity/README.html ? devel/p5-String-Random/README.html ? devel/p5-String-RexxParse/README.html ? devel/p5-String-Similarity/README.html ? devel/p5-Sub-Uplevel/README.html ? devel/p5-Sys-Mmap/README.html ? devel/p5-System2/README.html ? devel/p5-Term-ANSIColor/README.html ? devel/p5-Term-ANSIScreen/README.html ? devel/p5-Term-ProgressBar/README.html ? devel/p5-Term-Prompt/README.html ? devel/p5-Term-Query/README.html ? devel/p5-Term-ReadKey/README.html ? devel/p5-Term-Screen/README.html ? devel/p5-Term-Size/README.html ? devel/p5-Test-Builder-Tester/README.html ? devel/p5-Test-Class/README.html ? devel/p5-Test-Differences/README.html ? devel/p5-Test-Exception/README.html ? devel/p5-Test-Harness/README.html ? devel/p5-Test-Inline/README.html ? devel/p5-Test-Manifest/README.html ? devel/p5-Test-MockObject/README.html ? devel/p5-Test-Pod/README.html ? devel/p5-Test-Simple/README.html ? devel/p5-Test-Unit/README.html ? devel/p5-Tie-Cache/README.html ? devel/p5-Tie-DB_FileLock/README.html ? devel/p5-Tie-File/README.html ? devel/p5-Tie-IxHash/README.html ? devel/p5-Time-Duration/README.html ? devel/p5-Time-HiRes/README.html ? devel/p5-Time-Local/README.html ? devel/p5-Time-Object/README.html ? devel/p5-Time-Period/README.html ? devel/p5-Time-Piece/README.html ? devel/p5-Time-modules/README.html ? devel/p5-TimeDate/README.html ? devel/p5-TraceFuncs/README.html ? devel/p5-Tree-DAG_Node/README.html ? devel/p5-UNIVERSAL-exports/README.html ? devel/p5-UNIVERSAL-moniker/README.html ? devel/p5-VCS/README.html ? devel/p5-VCS-CVS/README.html ? devel/p5-Want/README.html ? devel/p5-base/README.html ? devel/p5-enum/README.html ? devel/p5-mixin/README.html ? devel/p5-version/README.html ? devel/p65/README.html ? devel/parrot/README.html ? devel/patch/README.html ? devel/pccts/README.html ? devel/pcl-cvs-emacs/README.html ? devel/pcl-cvs-emacs20/README.html ? devel/pcre/README.html ? devel/pcre++/README.html ? devel/pcsc-lite/README.html ? devel/pear/README.html ? devel/pear-Config/README.html ? devel/pear-Console_Getopt/README.html ? devel/pear-Console_Table/README.html ? devel/pear-Date/README.html ? devel/pear-HTML_Common/README.html ? devel/pear-HTML_Select_Common/README.html ? devel/pear-HTML_Template_IT/README.html ? devel/pear-HTML_Template_PHPLIB/README.html ? devel/pear-I18N/README.html ? devel/pear-PEAR/README.html ? devel/pear-XML_Parser/README.html ? devel/pear-XML_RSS/README.html ? devel/pear-XML_Serializer/README.html ? devel/pear-XML_Tree/README.html ? devel/pear-XML_Util/README.html ? devel/pear-XML_XPath/README.html ? devel/pear-apd/README.html ? devel/pedisassem/README.html ? devel/perforce/README.html ? devel/perltidy/README.html ? devel/pharmacy/README.html ? devel/php-dbg/README.html ? devel/php-xdebug/README.html ? devel/physfs/README.html ? devel/picasm/README.html ? devel/picp/README.html ? devel/picprog/README.html ? devel/pinstall/README.html ? devel/pkgconfig/README.html ? devel/ply/README.html ? devel/pmake/README.html ? devel/pmk/README.html ? devel/popt/README.html ? devel/portcheckout/README.html ? devel/portlint/README.html ? devel/porttools/README.html ? devel/poslib/README.html ? devel/powerpc-rtems-binutils/README.html ? devel/powerpc-rtems-g77/README.html ? devel/powerpc-rtems-gcc/README.html ? devel/powerpc-rtems-gcj/README.html ? devel/powerpc-rtems-gdb/README.html ? devel/powerpc-rtems-objc/README.html ? devel/ppl/README.html ? devel/prcs/README.html ? devel/privman/README.html ? devel/projectcenter.app/README.html ? devel/prototype/README.html ? devel/pth/README.html ? devel/ptypes/README.html ? devel/publib/README.html ? devel/pwlib/README.html ? devel/py-ansistyle/README.html ? devel/py-ciphon/README.html ? devel/py-clientcookie/README.html ? devel/py-coro/README.html ? devel/py-ctypes/README.html ? devel/py-cxx/README.html ? devel/py-dialog/README.html ? devel/py-fam/README.html ? devel/py-fileutils/README.html ? devel/py-fortran/README.html ? devel/py-freebsd/README.html ? devel/py-game/README.html ? devel/py-grouch/README.html ? devel/py-istring/README.html ? devel/py-kjbuckets/README.html ? devel/py-kqueue/README.html ? devel/py-log4py/README.html ? devel/py-logging/README.html ? devel/py-mx-experimental/README.html ? devel/py-ncurses/README.html ? devel/py-omniorb/README.html ? devel/py-optik/README.html ? devel/py-orbit/README.html ? devel/py-orbit2/README.html ? devel/py-period/README.html ? devel/py-plex/README.html ? devel/py-pqueue/README.html ? devel/py-psyco/README.html ? devel/py-px/README.html ? devel/py-repl/README.html ? devel/py-reverse/README.html ? devel/py-ro/README.html ? devel/py-roxlib/README.html ? devel/py-sip/README.html ? devel/py-spark/README.html ? devel/py-twisted/README.html ? devel/py-ui/README.html ? devel/py-unit/README.html ? devel/py-vmaps/README.html ? devel/py-wsdllib/README.html ? devel/py-xoltar-toolkit/README.html ? devel/py-yaml/README.html ? devel/py_otp_interface/README.html ? devel/pychecker/README.html ? devel/pyrex/README.html ? devel/qextmdi/README.html ? devel/qmake/README.html ? devel/qssl/README.html ? devel/qt-designer/README.html ? devel/qtez/README.html ? devel/qtk/README.html ? devel/ragel/README.html ? devel/re2c/README.html ? devel/regexx/README.html ? devel/regexxer/README.html ? devel/replay/README.html ? devel/rhtvision/README.html ? devel/rinfo/README.html ? devel/rlwrap/README.html ? devel/robodoc/README.html ? devel/rpc2/README.html ? devel/rtplib/README.html ? devel/ruby-amstd/README.html ? devel/ruby-aspectr/README.html ? devel/ruby-avl/README.html ? devel/ruby-bsearch/README.html ? devel/ruby-byaccr/README.html ? devel/ruby-cache/README.html ? devel/ruby-calendar/README.html ? devel/ruby-cvs/README.html ? devel/ruby-date2/README.html ? devel/ruby-dialogs/README.html ? devel/ruby-fam/README.html ? devel/ruby-filelock/README.html ? devel/ruby-filemagic/README.html ? devel/ruby-flex_rb/README.html ? devel/ruby-gconf/README.html ? devel/ruby-gconf2/README.html ? devel/ruby-gemfinder/README.html ? devel/ruby-gettext/README.html ? devel/ruby-glib2/README.html ? devel/ruby-gnomevfs/README.html ? devel/ruby-gnustep/README.html ? devel/ruby-inline/README.html ? devel/ruby-intl/README.html ? devel/ruby-jttui/README.html ? devel/ruby-libglade/README.html ? devel/ruby-libglade2/README.html ? devel/ruby-libgtop/README.html ? devel/ruby-locale/README.html ? devel/ruby-metaruby/README.html ? devel/ruby-mmap/README.html ? devel/ruby-mock/README.html ? devel/ruby-ncurses/README.html ? devel/ruby-nodedump/README.html ? devel/ruby-p4/README.html ? devel/ruby-pcsc-lite/README.html ? devel/ruby-poll/README.html ? devel/ruby-property/README.html ? devel/ruby-racc/README.html ? devel/ruby-rbbr/README.html ? devel/ruby-rbison/README.html ? devel/ruby-rbprof/README.html ? devel/ruby-rbtree/README.html ? devel/ruby-robjectteam/README.html ? devel/ruby-rreadline/README.html ? devel/ruby-rudl/README.html ? devel/ruby-sdl/README.html ? devel/ruby-setup.rb/README.html ? devel/ruby-slang/README.html ? devel/ruby-strongtyping/README.html ? devel/ruby-sysvipc/README.html ? devel/ruby-textbuf/README.html ? devel/ruby-tzfile/README.html ? devel/ruby-yaml/README.html ? devel/rudiments/README.html ? devel/rvi/README.html ? devel/rvm/README.html ? devel/scandoc/README.html ? devel/scons/README.html ? devel/sdl12/README.html ? devel/sdl_ldbad/README.html ? devel/sdlmm/README.html ? devel/sdts++/README.html ? devel/sedsed/README.html ? devel/semantic/README.html ? devel/semantic-emacs20/README.html ? devel/sfio/README.html ? devel/sgb/README.html ? devel/sgl/README.html ? devel/sh-rtems-binutils/README.html ? devel/sh-rtems-g77/README.html ? devel/sh-rtems-gcc/README.html ? devel/sh-rtems-gcj/README.html ? devel/sh-rtems-gdb/README.html ? devel/sh-rtems-objc/README.html ? devel/shapelib/README.html ? devel/shmap/README.html ? devel/showgrammar/README.html ? devel/shtool/README.html ? devel/sigslot/README.html ? devel/simgear/README.html ? devel/simulavr/README.html ? devel/sip/README.html ? devel/skalibs/README.html ? devel/soup/README.html ? devel/sourcenav/README.html ? devel/sparc-rtems-binutils/README.html ? devel/sparc-rtems-g77/README.html ? devel/sparc-rtems-gcc/README.html ? devel/sparc-rtems-gcj/README.html ? devel/sparc-rtems-gdb/README.html ? devel/sparc-rtems-objc/README.html ? devel/spin/README.html ? devel/spirit/README.html ? devel/splint/README.html ? devel/st/README.html ? devel/stlport/README.html ? devel/stlport-icc/README.html ? devel/str/README.html ? devel/strace/README.html ? devel/styx/README.html ? devel/subversion/README.html ? devel/swarm/README.html ? devel/swig11/README.html ? devel/swig13/README.html ? devel/swig13-doc/README.html ? devel/swigruby/README.html ? devel/syntax_tools/README.html ? devel/sysconftool/README.html ? devel/t1lib/README.html ? devel/tcl-memchan/README.html ? devel/tcl-neo/README.html ? devel/tcl-trf/README.html ? devel/tclcheck/README.html ? devel/tclcl/README.html ? devel/tclgetopts/README.html ? devel/tcllib/README.html ? devel/tclreadline/README.html ? devel/tcltls/README.html ? devel/tclxml/README.html ? devel/tdl/README.html ? devel/templ/README.html ? devel/terminality/README.html ? devel/tide/README.html ? devel/tinyq/README.html ? devel/titano/README.html ? devel/tkcon/README.html ? devel/tkcvs/README.html ? devel/tkinspect/README.html ? devel/tkp4/README.html ? devel/tkref/README.html ? devel/tla/README.html ? devel/tmake/README.html ? devel/tnt/README.html ? devel/towitoko/README.html ? devel/tpasm/README.html ? devel/tpg/README.html ? devel/trio/README.html ? devel/tvision/README.html ? devel/uclmmbase/README.html ? devel/ucpp/README.html ? devel/uisp/README.html ? devel/umbrello/README.html ? devel/upnp/README.html ? devel/ups-debug/README.html ? devel/varconf/README.html ? devel/vb2c/README.html ? devel/veepee/README.html ? devel/viewcvs/README.html ? devel/vtcl/README.html ? devel/whups/README.html ? devel/wizard/README.html ? devel/wxGlade/README.html ? devel/xmake/README.html ? devel/xparam/README.html ? devel/xtl/README.html ? devel/xwpe/README.html ? devel/xxgdb/README.html ? devel/xxl/README.html ? devel/yacl/README.html ? devel/yasm/README.html ? devel/z80-asm/README.html ? devel/zthread/README.html ? devel/zziplib/README.html ? dns/README.html ? dns/adns/README.html ? dns/ares/README.html ? dns/bind8/README.html ? dns/bind84/README.html ? dns/bind9/README.html ? dns/bind9-dlz/Makefile.inc ? dns/bind9-dlz/README.html ? dns/bind9-sdb-mysql/README.html ? dns/ddclient/README.html ? dns/ddup/README.html ? dns/dhid/README.html ? dns/dhisd/README.html ? dns/djbdns/README.html ? dns/dlint/README.html ? dns/dnrd/README.html ? dns/dns_balance/README.html ? dns/dnsmasq/README.html ? dns/dnssecwalker/README.html ? dns/dnstop/README.html ? dns/dnstracer/README.html ? dns/dnsutl/README.html ? dns/dnswalk/README.html ? dns/domtools/README.html ? dns/ez-ipupdate/README.html ? dns/firedns/README.html ? dns/ghtool/README.html ? dns/h2n/README.html ? dns/hesiod/README.html ? dns/host/README.html ? dns/idnkit/README.html ? dns/ipcheck/README.html ? dns/libdjbdns/README.html ? dns/maradns/README.html ? dns/mdnsd/README.html ? dns/mydns/README.html ? dns/noip/README.html ? dns/nsd/README.html ? dns/nslint/README.html ? dns/nsping/README.html ? dns/odsclient/README.html ? dns/p5-BIND-Conf_Parser/README.html ? dns/p5-DNS-Config/README.html ? dns/p5-DNS-Zone/README.html ? dns/p5-Net-DNS/README.html ? dns/p5-Net-DNS-SEC/README.html ? dns/p5-Net-DNS-ZoneFile/README.html ? dns/p5-Net-Nslookup/README.html ? dns/p5-POE-Component-Client-DNS/README.html ? dns/p5-Tie-DNS/README.html ? dns/pdnsd/README.html ? dns/posadis/README.html ? dns/powerdns/Makefile.inc ? dns/powerdns/README.html ? dns/py-adns/README.html ? dns/py-dns/README.html ? dns/rbldnsd/README.html ? dns/sleuth/README.html ? dns/staticcharge/README.html ? dns/totd/README.html ? dns/walker/README.html ? dns/weedns_sc/README.html ? dns/zonecheck/README.html ? editors/README.html ? editors/AbiWord/README.html ? editors/AbiWord2/README.html ? editors/MathPlanner/README.html ? editors/aee/README.html ? editors/apel/README.html ? editors/apel-emacs19/README.html ? editors/apel-emacs20/README.html ? editors/apel-mule/README.html ? editors/apel-xemacs21-mule/README.html ? editors/asedit/README.html ? editors/axe/README.html ? editors/beav/README.html ? editors/beaver/README.html ? editors/bed/README.html ? editors/biew/README.html ? editors/bitedit/README.html ? editors/bitmap/README.html ? editors/bitmap-emacs20/README.html ? editors/bitmap-mule/README.html ? editors/boiling-egg/README.html ? editors/bpatch/README.html ? editors/bvi/README.html ? editors/chexedit/README.html ? editors/color-mate/README.html ? editors/conglomerate/README.html ? editors/cooledit/README.html ? editors/custom-emacs/README.html ? editors/custom-mule/README.html ? editors/dedit/README.html ? editors/dte/README.html ? editors/e3/README.html ? editors/e93/README.html ? editors/edith/README.html ? editors/elvis/README.html ? editors/em/README.html ? editors/emacs/README.html ? editors/emacs20/README.html ? editors/emacs20-dl/README.html ? editors/emacs20-mule-devel/README.html ? editors/emacs21/README.html ? editors/eshell-emacs20/README.html ? editors/fb/README.html ? editors/flim/README.html ? editors/flim-emacs20/README.html ? editors/flim-xemacs21-mule/README.html ? editors/flim113/README.html ? editors/flim113-emacs19/README.html ? editors/flim113-emacs20/README.html ? editors/flim113-mule/README.html ? editors/flim113-xemacs21-mule/README.html ? editors/fte/README.html ? editors/gate/README.html ? editors/gedit-plugins/README.html ? editors/gedit2/README.html ? editors/ghex/README.html ? editors/ghex2/README.html ? editors/glimmer/README.html ? editors/gmanedit/README.html ? editors/gnotepad+/README.html ? editors/gnuserv/README.html ? editors/gnuserv-emacs20/README.html ? editors/gxedit/README.html ? editors/hexcurse/README.html ? editors/hexedit/README.html ? editors/hexpert/README.html ? editors/hnb/README.html ? editors/hte/README.html ? editors/iiimecf/README.html ? editors/impress/README.html ? editors/jed/README.html ? editors/jedit/README.html ? editors/jext/README.html ? editors/joe/README.html ? editors/joe-devel/README.html ? editors/jove/README.html ? editors/kile/README.html ? editors/koffice-kde3/README.html ? editors/kxmleditor/README.html ? editors/le/README.html ? editors/led/README.html ? editors/leim20/README.html ? editors/leim21/README.html ? editors/leo/README.html ? editors/lfhex/README.html ? editors/lpe/README.html ? editors/manedit/README.html ? editors/mg/README.html ? editors/mode-info/README.html ? editors/moleskine/README.html ? editors/mp/README.html ? editors/muggy/README.html ? editors/mule/README.html ? editors/mule-common/README.html ? editors/nano/README.html ? editors/nedit/README.html ? editors/nvi-devel/README.html ? editors/nvi-m17n/README.html ? editors/nvi-perl/README.html ? editors/offix-editor/README.html ? editors/ooodict-all/README.html ? editors/ooodict-bg_BG/README.html ? editors/ooodict-ca_ES/README.html ? editors/ooodict-cs_CZ/README.html ? editors/ooodict-da_DK/README.html ? editors/ooodict-el_GR/README.html ? editors/ooodict-en_CA/README.html ? editors/ooodict-en_GB/README.html ? editors/ooodict-en_US/README.html ? editors/ooodict-es_ES/README.html ? editors/ooodict-hr_HR/README.html ? editors/ooodict-hu_HU/README.html ? editors/ooodict-it_IT/README.html ? editors/ooodict-nl_NL/README.html ? editors/ooodict-sk_SK/README.html ? editors/ooodict-sv_SE/README.html ? editors/openoffice/README.html ? editors/openoffice-ar/README.html ? editors/openoffice-devel/README.html ? editors/openoffice-dk/README.html ? editors/openoffice-es/README.html ? editors/openoffice-gr/README.html ? editors/openoffice-it/README.html ? editors/openoffice-nl/README.html ? editors/openoffice-se/README.html ? editors/openoffice-tr/README.html ? editors/pico/README.html ? editors/poedit/README.html ? editors/psgml/README.html ? editors/psgml-emacs19/README.html ? editors/psgml-emacs20/README.html ? editors/psgml-mule/README.html ? editors/psgml-xemacs21-mule/README.html ? editors/puff/README.html ? editors/qemacs/README.html ? editors/rox-edit/README.html ? editors/sam/README.html ? editors/scite/README.html ? editors/semi/README.html ? editors/semi-emacs20/README.html ? editors/semi-xemacs21-mule/README.html ? editors/semi113/README.html ? editors/semi113-emacs19/README.html ? editors/semi113-emacs20/README.html ? editors/semi113-mule/README.html ? editors/semi113-xemacs21-mule/README.html ? editors/speedbar/README.html ? editors/speedbar-emacs20/README.html ? editors/ssed/README.html ? editors/staroffice5/README.html ? editors/staroffice52/README.html ? editors/staroffice60/README.html ? editors/sted/README.html ? editors/tamago/README.html ? editors/tamago-emacs20/README.html ? editors/ted/README.html ? editors/tetradraw/README.html ? editors/texmacs/README.html ? editors/textedit/README.html ? editors/the/README.html ? editors/thoteditor/README.html ? editors/uemacs/README.html ? editors/uzap/README.html ? editors/ved/README.html ? editors/vigor/README.html ? editors/vile/README.html ? editors/vilearn/README.html ? editors/vim/README.html ? editors/vim-lite/README.html ? editors/vim5/README.html ? editors/vim6+ruby/README.html ? editors/wily/README.html ? editors/xcoral/README.html ? editors/xed/README.html ? editors/xemacs/README.html ? editors/xemacs-devel/README.html ? editors/xemacs-devel-mule/README.html ? editors/xemacs-mule-packages/README.html ? editors/xemacs-packages/README.html ? editors/xemacs21/README.html ? editors/xemacs21-mule/README.html ? editors/xenon/README.html ? editors/xmleditor/README.html ? editors/xvile/README.html ? editors/yudit/README.html ? editors/zed/README.html ? editors/zile/README.html ? editors/zoinks/README.html ? emulators/README.html ? emulators/adamem/README.html ? emulators/aftp/README.html ? emulators/atari800/README.html ? emulators/basiliskII/README.html ? emulators/bfe/README.html ? emulators/bochs/README.html ? emulators/bsvc/README.html ? emulators/cinc/README.html ? emulators/cingb/README.html ? emulators/cpmemu/README.html ? emulators/cpmtools/README.html ? emulators/darcnes/README.html ? emulators/dgen-sdl/README.html ? emulators/dlx/README.html ? emulators/dosbox/README.html ? emulators/extract-xiso/README.html ? emulators/fceu/README.html ? emulators/fmsx/README.html ? emulators/freesci/README.html ? emulators/frodo/README.html ? emulators/gbe/README.html ? emulators/generator/README.html ? emulators/gngb/README.html ? emulators/gnuboy/README.html ? emulators/grustibus/README.html ? emulators/gsnes9x/README.html ? emulators/gxmame/README.html ? emulators/hercules/README.html ? emulators/hfs/README.html ? emulators/hfsutils/README.html ? emulators/ia64sim/README.html ? emulators/ines/README.html ? emulators/its/README.html ? emulators/klh10/README.html ? emulators/kmamerun/README.html ? emulators/libvm68k/README.html ? emulators/linux-ePSXe/README.html ? emulators/linux-peops-softgpu/README.html ? emulators/linux-peops-spu/README.html ? emulators/linux-pete-mesagpu/README.html ? emulators/linux-vmware-toolbox2/README.html ? emulators/linux-vmware-toolbox4/README.html ? emulators/linux-winetools/README.html ? emulators/linux_base/README.html ? emulators/linux_base-6/README.html ? emulators/linux_base-8/README.html ? emulators/linux_base-debian/README.html ? emulators/linux_base-gentoo-stage1/README.html ? emulators/mastergear/README.html ? emulators/minivmac/README.html ? emulators/mtools/README.html ? emulators/osf1_base/README.html ? emulators/p-interp/README.html ? emulators/pcemu/README.html ? emulators/prodosemu/README.html ? emulators/psim-freebsd/README.html ? emulators/qcl/README.html ? emulators/quasi88/README.html ? emulators/rtc/README.html ? emulators/sim/README.html ? emulators/sim6811/README.html ? emulators/ski/README.html ? emulators/snes9x/README.html ? emulators/spim/README.html ? emulators/stella/README.html ? emulators/stonx/README.html ? emulators/svr4_base/README.html ? emulators/tkhfs/README.html ? emulators/tuxnes/README.html ? emulators/twin/README.html ? emulators/uae/README.html ? emulators/vMac/README.html ? emulators/vba/README.html ? emulators/vgb/README.html ? emulators/vgb-bin/README.html ? emulators/vgba-bin/README.html ? emulators/vice/README.html ? emulators/visualos/README.html ? emulators/vmsbackup/README.html ? emulators/vmware-guestd3/README.html ? emulators/vmware-guestd4/README.html ? emulators/vmware-tools2/README.html ? emulators/vmware-tools3/README.html ? emulators/vmware-tools4/README.html ? emulators/vmware2/README.html ? emulators/vmware3/README.html ? emulators/vmware_xf4mod/README.html ? emulators/vpce/README.html ? emulators/vx68k/README.html ? emulators/vxtools/README.html ? emulators/wine/README.html ? emulators/x48/README.html ? emulators/xgs/README.html ? emulators/xmame/README.html ? emulators/xmess/README.html ? emulators/xpinmame/README.html ? emulators/xsystem35/README.html ? emulators/xzx/README.html ? emulators/yape/README.html ? emulators/zsnes/README.html ? finance/README.html ? finance/aqmoney/README.html ? finance/gnucash/README.html ? finance/gnucash-docs/README.html ? finance/grisbi/README.html ? finance/khacc/README.html ? finance/libofx/README.html ? finance/myphpmoney/README.html ? finance/openhbci/README.html ? finance/p5-Business-CreditCard/README.html ? finance/p5-Business-OnlinePayment/README.html ? finance/p5-Business-OnlinePayment-2CheckOut/README.html ? finance/p5-Business-OnlinePayment-AuthorizeNet/README.html ? finance/p5-Business-OnlinePayment-BankOfAmerica/README.html ? finance/p5-Business-OnlinePayment-Beanstream/README.html ? finance/p5-Business-OnlinePayment-Cardstream/README.html ? finance/p5-Business-OnlinePayment-Jettis/README.html ? finance/p5-Business-OnlinePayment-LinkPoint/README.html ? finance/p5-Business-OnlinePayment-MerchantCommerce/README.html ? finance/p5-Business-OnlinePayment-Network1Financial/README.html ? finance/p5-Business-OnlinePayment-PayConnect/README.html ? finance/p5-Business-OnlinePayment-PaymentsGateway/README.html ? finance/p5-Business-OnlinePayment-SurePay/README.html ? finance/p5-Business-OnlinePayment-TCLink/README.html ? finance/p5-Business-OnlinePayment-VirtualNet/README.html ? finance/p5-Business-OnlinePayment-eSec/README.html ? finance/p5-Business-WorldPay-Junior/README.html ? finance/p5-Math-Financial/README.html ? finance/qhacc/README.html ? french/README.html ? french/abispell-fr-FR/README.html ? french/aspell/README.html ? french/aster/README.html ? french/daCode/README.html ? french/eficas/README.html ? french/facturier/README.html ? french/gfaim/README.html ? french/homard/README.html ? french/ispell/README.html ? french/jdictionary-fre-hun/README.html ? french/kde3-i18n/README.html ? french/koffice-i18n/README.html ? french/med/README.html ? french/netscape7/README.html ? french/ooodict-fr_FR/README.html ? french/openoffice/README.html ? french/php_doc/README.html ? french/plgrenouille/README.html ? french/spip/README.html ? french/staroffice52/README.html ? french/xtel/README.html ? ftp/README.html ? ftp/IglooFTP/README.html ? ftp/axel/README.html ? ftp/axelq/README.html ? ftp/axyftp/README.html ? ftp/bftpd/README.html ? ftp/bsdftpd-ssl/README.html ? ftp/cftp/README.html ? ftp/curl/README.html ? ftp/downloader/README.html ? ftp/emacs-wget/README.html ? ftp/emirror/README.html ? ftp/fget/README.html ? ftp/fmirror/README.html ? ftp/frox/README.html ? ftp/ftp-tls/README.html ? ftp/ftp4all/README.html ? ftp/ftpcopy/README.html ? ftp/ftpcube/README.html ? ftp/ftpd-tls/README.html ? ftp/ftpfind/README.html ? ftp/ftplocate/README.html ? ftp/ftpmirror/README.html ? ftp/ftpproxy/README.html ? ftp/ftpq/README.html ? ftp/ftpsearch/README.html ? ftp/ftptool/README.html ? ftp/gftp/README.html ? ftp/greed/README.html ? ftp/hsftp/README.html ? ftp/jftp/README.html ? ftp/jftpgw/README.html ? ftp/jigdo/README.html ? ftp/jmirror/README.html ? ftp/junglemonkey/README.html ? ftp/kbear/README.html ? ftp/kwebget/README.html ? ftp/lftp/README.html ? ftp/libfxp/README.html ? ftp/llnlxdir/README.html ? ftp/llnlxftp/README.html ? ftp/lukemftp/README.html ? ftp/lukemftpd/README.html ? ftp/mget/README.html ? ftp/mirror/README.html ? ftp/moxftp/README.html ? ftp/muddleftpd/README.html ? ftp/ncftp/README.html ? ftp/ncftp2/README.html ? ftp/ncftp3/README.html ? ftp/ncftpd/README.html ? ftp/oftpd/README.html ? ftp/omi/README.html ? ftp/p5-Net-FTP-Common/README.html ? ftp/p5-Net-FTPServer/README.html ? ftp/p5-POE-Component-Client-FTP/README.html ? ftp/paraget/README.html ? ftp/pavuk/README.html ? ftp/pftpd/README.html ? ftp/proftpd/README.html ? ftp/profxp/README.html ? ftp/prozilla/README.html ? ftp/puf/README.html ? ftp/pure-ftpd/README.html ? ftp/py-curl/README.html ? ftp/ruby-curl/README.html ? ftp/sftp/README.html ? ftp/spegla/README.html ? ftp/tftp-hpa/README.html ? ftp/twoftpd/README.html ? ftp/vcheck/README.html ? ftp/vsftpd/README.html ? ftp/wget/README.html ? ftp/wget+ipv6/README.html ? ftp/wu-ftpd/README.html ? ftp/wu-ftpd+ipv6/README.html ? ftp/xrmftp/README.html ? ftp/yafc/README.html ? ftp/yale-tftpd/README.html ? games/README.html ? games/0verkill/README.html ? games/3dc/README.html ? games/3dpong/README.html ? games/44bsd-hunt/README.html ? games/54321/README.html ? games/CaribbeanStud/README.html ? games/HeroesOfMightAndMagic/README.html ? games/KnightCap/README.html ? games/abridge/README.html ? games/abuse/README.html ? games/abuse_sdl/README.html ? games/acm/README.html ? games/actx/README.html ? games/adgali/README.html ? games/adom/README.html ? games/adonthell/README.html ? games/affenspiel/README.html ? games/afternoonstalker/README.html ? games/alephone/README.html ? games/alephone-data/README.html ? games/amphetamine/README.html ? games/amy/README.html ? games/an/README.html ? games/angband/README.html ? games/antipolix/README.html ? games/asc/README.html ? games/atitd/README.html ? games/atomix/README.html ? games/atr3d/README.html ? games/awele/README.html ? games/baduki/README.html ? games/barrage/README.html ? games/battalion/README.html ? games/battleball/README.html ? games/biorythm/README.html ? games/blackjack/README.html ? games/block/README.html ? games/blockade/README.html ? games/blue/README.html ? games/bogged/README.html ? games/bomb/README.html ? games/bomberclone/README.html ? games/bomberinstinct/README.html ? games/bombermaze/README.html ? games/braincurses/README.html ? games/bs/README.html ? games/bsdtris/README.html ? games/bsp/README.html ? games/bugsx/README.html ? games/burgerspace/README.html ? games/bzflag/README.html ? games/cgoban/README.html ? games/circuslinux/README.html ? games/civ2demo/README.html ? games/clanbomber/README.html ? games/columns/README.html ? games/connect4/README.html ? games/conquest/README.html ? games/corewars/README.html ? games/cosmo/README.html ? games/cowsay/README.html ? games/crafty/README.html ? games/crafty-open-large/README.html ? games/crafty-open-medium/README.html ? games/crafty-open-small/README.html ? games/crimson/README.html ? games/criticalmass/README.html ? games/crossfire-client/README.html ? games/crossfire-server/README.html ? games/crossword/README.html ? games/cryptoslam/README.html ? games/cube/README.html ? games/cursive/README.html ? games/deal/README.html ? games/defendguin/README.html ? games/digger-vgl/README.html ? games/dmjava/README.html ? games/dontspace/README.html ? games/doom/README.html ? games/doomlegacy/README.html ? games/dopewars/README.html ? games/drm/README.html ? games/dungeon/README.html ? games/dungeoncrawl/README.html ? games/easysok/README.html ? games/eboard/README.html ? games/editss/README.html ? games/egoboo/README.html ? games/eif/README.html ? games/eights/README.html ? games/emacs-chess/README.html ? games/empire/README.html ? games/enigma/README.html ? games/euchre/README.html ? games/evilfinder/README.html ? games/exult/README.html ? games/falconseye/README.html ? games/farblazer/README.html ? games/fkiss/README.html ? games/flightgear/README.html ? games/flying/README.html ? games/foobillard/README.html ? games/frabs/README.html ? games/freebsd-games/README.html ? games/freecell-solver/README.html ? games/freeciv/README.html ? games/freeciv-gtk/README.html ? games/freedroid/README.html ? games/freesweep/README.html ? games/frotz/README.html ? games/frozenbubble/README.html ? games/fsgs/README.html ? games/fuhquake/README.html ? games/galaxis/README.html ? games/garith/README.html ? games/gcompris/README.html ? games/gcompris2/README.html ? games/gemdropx/README.html ? games/ggz-client-libs/README.html ? games/ggz-txt-client/README.html ? games/gl-117/README.html ? games/glasteroids/README.html ? games/glchess/README.html ? games/gleyes/README.html ? games/glife/README.html ? games/glmaze/README.html ? games/gltron/README.html ? games/gma/README.html ? games/gnarr/README.html ? games/gniffel/README.html ? games/gnmm/README.html ? games/gno3dtet/README.html ? games/gnocatan/README.html ? games/gnomeattacks/README.html ? games/gnomebreakout/README.html ? games/gnomechess/README.html ? games/gnomegames2/README.html ? games/gnomekiss/README.html ? games/gnomememoryblocks/README.html ? games/gnomermind/README.html ? games/gnomoku/README.html ? games/gnubg/README.html ? games/gnuchess/README.html ? games/gnugo/README.html ? games/gnurobots/README.html ? games/gnushogi/README.html ? games/golddig/README.html ? games/gomoku.app/README.html ? games/gracer/README.html ? games/grande/README.html ? games/greed/README.html ? games/grhino/README.html ? games/groundhog/README.html ? games/gru/README.html ? games/grubinvaders/README.html ? games/gshisen/README.html ? games/gtetrinet/README.html ? games/gtkabale/README.html ? games/gtkballs/README.html ? games/gtktetcolor/README.html ? games/gturing/README.html ? games/gtypist/README.html ? games/halflifeserver/README.html ? games/heretic/README.html ? games/heroes/README.html ? games/hex/README.html ? games/hlserver-action/README.html ? games/hlserver-admin/README.html ? games/hlserver-cs/README.html ? games/hlserver-dod/README.html ? games/hlserver-esf/README.html ? games/hlserver-existence/README.html ? games/hlserver-fa/README.html ? games/hlserver-flf/README.html ? games/hlserver-glbwar/README.html ? games/hlserver-heroes/README.html ? games/hlserver-ns/README.html ? games/hlserver-opera/README.html ? games/hlserver-opfor/README.html ? games/hlserver-psychostats/README.html ? games/hlserver-pvk/README.html ? games/hlserver-si/README.html ? games/hlserver-snow/README.html ? games/hlserver-svencoop/README.html ? games/hlserver-trainhunters/README.html ? games/hlserver-ts/README.html ? games/hlserver-tsc/README.html ? games/hlserver-vs/README.html ? games/hlserver-wasteland/README.html ? games/hlserver-wizwars/README.html ? games/icbm3d/README.html ? games/icebreaker/README.html ? games/ifm/README.html ? games/imaze/README.html ? games/inform/README.html ? games/ishido/README.html ? games/jetpack/README.html ? games/jfk/README.html ? games/jools/README.html ? games/jtans/README.html ? games/jumpnbump/README.html ? games/jzip/README.html ? games/kbilliards/README.html ? games/kdegames3/README.html ? games/klondike/README.html ? games/knights/README.html ? games/kobodeluxe/README.html ? games/kpacman/README.html ? games/kpictorial/README.html ? games/ktritoc/README.html ? games/kwappen/README.html ? games/kxl/README.html ? games/ladder/README.html ? games/lbreakout/README.html ? games/lbreakout2/README.html ? games/ldmud/README.html ? games/lexter/README.html ? games/lgeneral/README.html ? games/lgeneral-data/README.html ? games/libggz/README.html ? games/libshhcards/README.html ? games/lincity/README.html ? games/linux-nwserver/README.html ? games/linux-q3ademo/README.html ? games/linux_nwnclient/README.html ? games/linux_nwndata/README.html ? games/lm-solve/README.html ? games/ltris/README.html ? games/macopix/README.html ? games/madbomber/README.html ? games/maelstrom/README.html ? games/magiccube4d/README.html ? games/mahjong/README.html ? games/mangband/README.html ? games/marathon-evil/README.html ? games/marbles/README.html ? games/merlin/README.html ? games/mindfocus/README.html ? games/mindguard/README.html ? games/mirrormagic/README.html ? games/miscom/README.html U games/monkeybubble/Makefile ? games/monkeybubble/README.html ? games/moon-buggy/README.html ? games/moonlander/README.html ? games/moria/README.html ? games/mvdsv/README.html ? games/myth2_demo/README.html ? games/mythserver/README.html ? games/nInvaders/README.html ? games/nadar/README.html ? games/nethack32/README.html ? games/nethack33/README.html ? games/nethack33-gnome/README.html ? games/nethack33-nox11/README.html ? games/nethack33-qt/README.html ? games/nethack34/README.html ? games/nethack34-gnome/README.html ? games/nethack34-nox11/README.html ? games/nethack34-qt/README.html ? games/netrek-BRMH-bin/README.html ? games/netrek-COW3-bin/README.html ? games/netris/README.html ? games/netspades/README.html ? games/nettoe/README.html ? games/newvox/README.html ? games/nibbles/README.html ? games/nighthawk/README.html ? games/nil/README.html ? games/nonsense/README.html ? games/nwnusers/README.html ? games/oilwar/README.html ? games/omega/README.html ? games/oneko/README.html ? games/oneko-sakura/README.html ? games/oonsoo/README.html ? games/openglad/README.html ? games/p5-Games-Bingo/README.html ? games/p5-Games-Bingo-Bot/README.html ? games/p5-Games-Bingo-Print/README.html ? games/pengpong/README.html ? games/penguin-command/README.html ? games/pentix/README.html ? games/phalanx/README.html ? games/pinball/README.html ? games/pipenightdreams/README.html ? games/pmars/README.html ? games/powerpak/README.html ? games/pp/README.html ? games/prboom/README.html ? games/ptkei/README.html ? games/pyching/README.html ? games/pysol/README.html ? games/pysol-cardsets/README.html ? games/pysol-music/README.html ? games/pythoong/README.html ? games/q3-paks/README.html ? games/q3server/README.html ? games/q3server-excessive/README.html ? games/q3server-freezetag/README.html ? games/q3server-osp/README.html ? games/q3server-ra3/README.html ? games/q3server-ut/README.html ? games/q3server-wfa/README.html ? games/qcc/README.html ? games/qgo/README.html ? games/qix/README.html ? games/qkmj/README.html ? games/qstat/README.html ? games/quake2forge/README.html ? games/quake2lnx/README.html ? games/quakeforge/README.html ? games/quakeserver/README.html ? games/quit/README.html ? games/qwdtools/README.html ? games/race/README.html ? games/rfksay/README.html ? games/robocode/README.html ? games/rockdodger/README.html ? games/rocksndiamonds/README.html ? games/rollemup/README.html ? games/rt2-demo/README.html ? games/rtb/README.html ? games/rtcw/README.html ? games/rtcw-paks/README.html ? games/rubix/README.html ? games/scid/README.html ? games/scorched3d-devel/README.html ? games/scummvm/README.html ? games/scummvm-tools/README.html ? games/sdlroids/README.html ? games/seabattle/README.html ? games/seahaven/README.html ? games/senso/README.html ? games/sex/README.html ? games/sl/README.html ? games/slashem-tty/README.html ? games/smacx/README.html ? games/smiley/README.html ? games/sokoban/README.html ? games/sol/README.html ? games/solarwolf/README.html ? games/sopwith/README.html ? games/spacearyarya/README.html ? games/spacehulk/README.html ? games/speak/README.html ? games/spellcast/README.html ? games/speyes/README.html ? games/spider/README.html ? games/starlanes/README.html ? games/stvef-paks/README.html ? games/stvef-server/README.html ? games/sxsame/README.html ? games/tads/README.html ? games/taipan/README.html ? games/tank/README.html ? games/taxipilot/README.html ? games/teg/README.html ? games/tetrinet/README.html ? games/tetrinet-x/README.html ? games/textmaze/README.html ? games/tictactoe3d/README.html ? games/tileworld/README.html ? games/tinymux/README.html ? games/tkmoo/README.html ? games/tksol/README.html ? games/tome/README.html ? games/toppler/README.html ? games/torcs/README.html ? games/tornado/README.html ? games/tractorgen/README.html ? games/traindirector/README.html ? games/trojka/README.html ? games/tt/README.html ? games/ttraffic/README.html ? games/tux-aqfh/README.html ? games/tuxkart/README.html ? games/tuxpuck/README.html ? games/tuxracer/README.html ? games/tuxracer_golf/README.html ? games/tuxtype/README.html ? games/tvp/README.html ? games/twitch/README.html ? games/typespeed/README.html ? games/uhexen/README.html ? games/uox3/README.html ? games/uqm/README.html ? games/utserver/README.html ? games/utserver-asu/README.html ? games/utserver-to/README.html ? games/vamos/README.html ? games/vectoroids/README.html ? games/virt/README.html ? games/wmeyes/README.html ? games/wmfortune/README.html ? games/wmminichess/README.html ? games/wmpuzzle/README.html ? games/wmqstat/README.html ? games/wmshuffle/README.html ? games/wmtictactoe/README.html ? games/wmtimebomb/README.html ? games/wolfpack/README.html ? games/wordplay/README.html ? games/wtf/README.html ? games/x3eyes/README.html ? games/xabacus/README.html ? games/xarchon/README.html ? games/xasteroids/README.html ? games/xataxx/README.html ? games/xbaby/README.html ? games/xbat/README.html ? games/xbattle/README.html ? games/xbill/README.html ? games/xbl/README.html ? games/xblackjack/README.html ? games/xblast/README.html ? games/xblast-beta/README.html ? games/xblood/README.html ? games/xbloody/README.html ? games/xboard/README.html ? games/xboing/README.html ? games/xbomb/README.html ? games/xbomber/README.html ? games/xbubble/README.html ? games/xchadance/README.html ? games/xchain/README.html ? games/xcheckers/README.html ? games/xchomp/README.html ? games/xcogitate/README.html ? games/xconq/README.html ? games/xcubes/README.html ? games/xdeblock/README.html ? games/xdemineur/README.html ? games/xdigger/README.html ? games/xdino/README.html ? games/xeji/README.html ? games/xemeraldia/README.html ? games/xevil/README.html ? games/xeyesplus/README.html ? games/xfce4-toys/README.html ? games/xfireworks/README.html ? games/xflame/README.html ? games/xfrisk/README.html ? games/xgalaga/README.html ? games/xgammon/README.html ? games/xgolgo/README.html ? games/xgospel/README.html ? games/xhexagons/README.html ? games/xhime/README.html ? games/xinfocom/README.html ? games/xinvaders/README.html ? games/xinvaders3d/README.html ? games/xisola/README.html ? games/xjewel/README.html ? games/xjig/README.html ? games/xjump/README.html ? games/xjumpjump/README.html ? games/xjumpx/README.html ? games/xkobo/README.html ? games/xkoules/README.html ? games/xlaby/README.html ? games/xlife/README.html ? games/xlifegame/README.html ? games/xlines/README.html ? games/xmahjongg/README.html ? games/xmastermind/README.html ? games/xmball/README.html ? games/xmemory/README.html ? games/xmille/README.html ? games/xmine/README.html ? games/xminehunter/README.html ? games/xmines/README.html ? games/xminesweep/README.html ? games/xmj/README.html ? games/xmlink/README.html ? games/xmris/README.html ? games/xmulti/README.html ? games/xneko/README.html ? games/xnibbles/README.html ? games/xoct/README.html ? games/xoids/README.html ? games/xoj/README.html ? games/xonix/README.html ? games/xosmulti/README.html ? games/xothello/README.html ? games/xpacman/README.html ? games/xpanex/README.html ? games/xpat2/README.html ? games/xpenguins/README.html ? games/xphotohunter/README.html ? games/xpilot/README.html ? games/xpilot-ng/README.html ? games/xpilotmon/README.html ? games/xpipeman/README.html ? games/xpired/README.html ? games/xpuyo/README.html ? games/xpuyopuyo/README.html ? games/xpuzzletama/README.html ? games/xpyraminx/README.html ? games/xqf/README.html ? games/xquarto/README.html ? games/xracer/README.html ? games/xrick/README.html ? games/xripple/README.html ? games/xrisk/README.html ? games/xroach/README.html ? games/xroads/README.html ? games/xrobots/README.html ? games/xrot/README.html ? games/xrubik/README.html ? games/xsc/README.html ? games/xscavenger/README.html ? games/xscorch/README.html ? games/xscrabble/README.html ? games/xshipwars-client/README.html ? games/xshisen/README.html ? games/xshogi/README.html ? games/xskat/README.html ? games/xskewb/README.html ? games/xsok/README.html ? games/xsokoban/README.html ? games/xsol/README.html ? games/xsoldier/README.html ? games/xspacewarp/README.html ? games/xspringies/README.html ? games/xteddy/README.html ? games/xtet42/README.html ? games/xtic/README.html ? games/xtriangles/README.html ? games/xtris/README.html ? games/xtrojka/README.html ? games/xtron/README.html ? games/xtruco/README.html ? games/xtux/README.html ? games/xvier/README.html ? games/xvmahjongg/README.html ? games/xvmines/README.html ? games/xword/README.html ? games/xworm/README.html ? games/xzip/README.html ? games/yadex/README.html ? games/yahtzee/README.html ? games/yamsweeper/README.html ? games/zangband/README.html ? games/znibbles/README.html ? games/zoom/README.html ? games/ztrack/README.html ? german/README.html ? german/BBBike/README.html ? german/aspell/README.html ? german/cheapcall/README.html ? german/citrix_ica/README.html ? german/dict/README.html ? german/ding/README.html ? german/ispell/README.html ? german/ispell-alt/README.html ? german/ispell-neu/README.html ? german/kde3-i18n/README.html ? german/koffice-i18n/README.html ? german/ksteak/README.html ? german/linux-eagle/README.html ? german/manpages/README.html ? german/netscape7/README.html ? german/ooodict-de_CH/README.html ? german/ooodict-de_DE/README.html ? german/openoffice/README.html ? german/phone/README.html ? german/php_doc/README.html ? german/staroffice5/README.html ? german/staroffice52/README.html ? german/steak/README.html ? german/unix-connect/README.html ? german/webalizer2/README.html ? graphics/README.html ? graphics/4va/README.html ? graphics/Cgraph/README.html ? graphics/Coin/README.html ? graphics/EZWGL/README.html ? graphics/GIFgraph/README.html ? graphics/Hermes/README.html ? graphics/IPA/README.html ? graphics/ImageMagick/README.html ? graphics/Mesa3/README.html ? graphics/OpenEXR/README.html ? graphics/aalib/README.html ? graphics/acidwarp/README.html ? graphics/animabob/README.html ? graphics/aoi/README.html ? graphics/aqsis/README.html ? graphics/autotrace/README.html ? graphics/aview/README.html ? graphics/backfract/README.html ? graphics/barcode/README.html ? graphics/bbrb/README.html ? graphics/blender/README.html ? graphics/blender-devel/README.html ? graphics/cadubi/README.html ? graphics/camediaplay/README.html ? graphics/chbg/README.html ? graphics/claraocr/README.html ? graphics/compupic/README.html ? graphics/cqcam/README.html ? graphics/crw/README.html ? graphics/cthumb/README.html ? graphics/cybervrml97/README.html ? graphics/dataplot/README.html ? graphics/dc20ctrl/README.html ? graphics/dc20pack/README.html ? graphics/dc3play/README.html ? graphics/deep_zoom/README.html ? graphics/dia/README.html ? graphics/diacanvas/README.html ? graphics/digikam/README.html ? graphics/divxcalc/README.html ? graphics/djvulibre/README.html ? graphics/dore/README.html ? graphics/dri-devel/README.html ? graphics/drm-kmod/README.html ? graphics/duhdraw/README.html ? graphics/dynamechs/README.html ? graphics/ecg2png/README.html ? graphics/electriceyes/README.html ? graphics/enfle/README.html ? graphics/entice/README.html ? graphics/eog2/README.html ? graphics/epix/README.html ? graphics/eps2png/README.html ? graphics/epstool/README.html ? graphics/eterm-bg/README.html ? graphics/evas/README.html ? graphics/evolvotron/README.html ? graphics/exiftags/README.html ? graphics/fbm/README.html ? graphics/feh/README.html ? graphics/figurine/README.html ? graphics/filmgimp/README.html ? graphics/flashplayer/README.html ? graphics/flasm/README.html ? graphics/fli2gif/README.html ? graphics/flip/README.html ? graphics/fly/README.html ? graphics/fnlib/README.html ? graphics/fractorama/README.html ? graphics/frontline/README.html ? graphics/fujiplay/README.html ? graphics/g2/README.html ? graphics/g3dviewer/README.html ? graphics/gauche-gl/README.html ? graphics/gcolor/README.html ? graphics/gd/README.html ? graphics/gd1/README.html ? graphics/gdal/README.html ? graphics/gdchart/README.html ? graphics/gdk-pixbuf/README.html ? graphics/gdtclft/README.html ? graphics/geist/README.html ? graphics/geomview/README.html ? graphics/gfont/README.html ? graphics/giblib/README.html ? graphics/gif2png/README.html ? graphics/gifmerge/README.html ? graphics/gifsicle/README.html ? graphics/giftool/README.html ? graphics/giftrans/README.html ? graphics/gimageview/README.html ? graphics/gimp-devel/README.html ? graphics/gimp-manual-html/README.html ? graphics/gimp-manual-pdf/README.html ? graphics/gimp1/README.html ? graphics/giram/README.html ? graphics/gkrellkam/README.html ? graphics/gkrellkam2/README.html ? graphics/gle/README.html ? graphics/glide3/README.html ? graphics/gliv/README.html ? graphics/gltk/README.html ? graphics/gltt/README.html ? graphics/gmt/README.html ? graphics/gnofract4d/README.html ? graphics/gnomecanvas/README.html ? graphics/gnomeiconedit/README.html ? graphics/gocr/README.html ? graphics/gozer/README.html ? graphics/gpaint/README.html ? graphics/gpdf/README.html ? graphics/gphoto2/README.html ? graphics/gplot/README.html ? graphics/gqview/README.html ? graphics/gqview-devel/README.html ? graphics/gracula/README.html ? graphics/graphviz/README.html ? graphics/gridpix/README.html ? graphics/gsculpt/README.html ? graphics/gthumb/README.html ? graphics/gthumb2/README.html ? graphics/gtkam/README.html ? graphics/gtkdps/README.html ? graphics/gtkfig/README.html ? graphics/gtkgraph/README.html ? graphics/gtksee/README.html ? graphics/gts/README.html ? graphics/guilib/README.html ? graphics/gview/README.html ? graphics/gwenview/README.html ? graphics/hdf/README.html ? graphics/hdf5/README.html ? graphics/hobbes-icons-xpm/README.html ? graphics/hpoj/README.html ? graphics/hppsmtools/README.html ? graphics/hs-HOpenGL/README.html ? graphics/hs-hgl/README.html ? graphics/icod/README.html ? graphics/icontact/README.html ? graphics/imageindex/README.html ? graphics/imagesort/README.html ? graphics/imageviewer/README.html ? graphics/imc/README.html ? graphics/imlib/README.html ? graphics/imlib2/README.html ? graphics/imlib2_loaders/README.html ? graphics/imlib3d/README.html ? graphics/inventor/README.html ? graphics/ipe/README.html ? graphics/irit/README.html ? graphics/isreal/README.html ? graphics/ivtools/README.html ? graphics/jasper/README.html ? graphics/jbigkit/README.html ? graphics/jgraph/README.html ? graphics/jgv/README.html ? graphics/jhead/README.html ? graphics/jpeg/README.html ? graphics/jpeg2ps-a4/README.html ? graphics/jpeg2ps-letter/README.html ? graphics/jpeginfo/README.html ? graphics/jpegoptim/README.html ? graphics/jpegpixi/README.html ? graphics/jpgraph/README.html ? graphics/jpgtn/README.html ? graphics/jslice/README.html ? graphics/juno-2/README.html ? graphics/kalbum/README.html ? graphics/kallery/README.html ? graphics/kbarcode/README.html ? graphics/kdc2tiff/README.html ? graphics/kdegraphics3/README.html ? graphics/kimagemapeditor/README.html ? graphics/kisomandel/README.html ? graphics/kix-kmod/README.html ? graphics/kludge3d/README.html ? graphics/landscape/README.html ? graphics/lcms/README.html ? graphics/leafpak/README.html ? graphics/lfview/README.html ? graphics/lib3ds/README.html ? graphics/libafterimage/README.html ? graphics/libart/README.html ? graphics/libart_lgpl2/README.html ? graphics/libaux/README.html ? graphics/libdjvu++/README.html ? graphics/libemf/README.html ? graphics/libexif/README.html ? graphics/libexif-gtk/README.html ? graphics/libflash/README.html ? graphics/libfpx/README.html ? graphics/libgdgeda/README.html ? graphics/libggi/README.html ? graphics/libgnomecanvas/README.html ? graphics/libgnomecanvasmm/README.html ? graphics/libgphoto2/README.html ? graphics/libgrass5/README.html ? graphics/libimg/README.html ? graphics/liblug/README.html ? graphics/libmng/README.html ? graphics/libmorph/README.html ? graphics/librsvg/README.html ? graphics/librsvg2/README.html ? graphics/libungif/README.html ? graphics/libv3d/README.html ? graphics/libwmf/README.html ? graphics/libwpcg/README.html ? graphics/linplasma/README.html ? graphics/linux-ac3d/README.html ? graphics/linux-bmrt/README.html ? graphics/linux-imlib/README.html ? graphics/linux-jpeg/README.html ? graphics/linux-png/README.html ? graphics/linux-tiff/README.html ? graphics/linux-ungif/README.html ? graphics/linux_dri/README.html ? graphics/linux_glide/README.html ? graphics/linux_glx/README.html ? graphics/linux_mesa3/README.html ? graphics/lodju/README.html ? graphics/maverik/README.html ? graphics/megapov/README.html ? graphics/mesagl/README.html ? graphics/meshviewer/README.html ? graphics/metapixel/README.html ? graphics/mgp-gallery/README.html ? graphics/ming/README.html ? graphics/morpheus/README.html ? graphics/mrsidviewer/README.html ? graphics/multivideo/README.html ? graphics/netpbm/README.html ? graphics/nurbs++/README.html ? graphics/ocaml-images/README.html ? graphics/ocaml-lablgl/README.html ? graphics/opendis/README.html ? graphics/opendx/README.html ? graphics/opendx-samples/README.html ? graphics/opengl-man/README.html ? graphics/openproducer/README.html ? graphics/openrm/README.html ? graphics/ophoto/README.html ? graphics/optipng/README.html ? graphics/orca/README.html ? graphics/osg/README.html ? graphics/osgedit/README.html ? graphics/p5-Chart-PNGgraph/README.html ? graphics/p5-GD/README.html ? graphics/p5-GD-Barcode/README.html ? graphics/p5-GD-Graph/README.html ? graphics/p5-GD-Graph3d/README.html ? graphics/p5-GD-TextUtil/README.html ? graphics/p5-GD1/README.html ? graphics/p5-GraphViz/README.html ? graphics/p5-GraphViz-Data-Structure/README.html ? graphics/p5-Graphics-ColorNames/README.html ? graphics/p5-Image-Grab/README.html ? graphics/p5-Image-Imlib2/README.html ? graphics/p5-Image-Info/README.html ? graphics/p5-Image-Size/README.html ? graphics/p5-Imager/README.html ? graphics/p5-Imlib2/README.html ? graphics/p5-OpenGL/README.html ? graphics/p5-SWF-File/README.html ? graphics/p5-VCG/README.html ? graphics/p5-chart/README.html ? graphics/p5-ming/README.html ? graphics/panorama/README.html ? graphics/passepartout/README.html ? graphics/peps/README.html ? graphics/pgperl/README.html ? graphics/pgplot/README.html ? graphics/pho/README.html ? graphics/photopc/README.html ? graphics/phplot/README.html ? graphics/picturebook/README.html ? graphics/piddle/README.html ? graphics/pixelize/README.html ? graphics/pixieplus/README.html ? graphics/pixmap/README.html ? graphics/plasma-kmod/README.html ? graphics/plotmtv/README.html ? graphics/plotutils/README.html ? graphics/png/README.html ? graphics/png2html/README.html ? graphics/png2ico/README.html ? graphics/pngcheck/README.html ? graphics/pngcrush/README.html ? graphics/pngquant/README.html ? graphics/pornview/README.html ? graphics/povray/README.html ? graphics/povray31/README.html ? graphics/ppmcaption/README.html ? graphics/proj/README.html ? graphics/pstoedit/README.html ? graphics/pstoepsi/README.html ? graphics/pvmpov/README.html ? graphics/py-chart/README.html ? graphics/py-exif/README.html ? graphics/py-gd/README.html ? graphics/py-gdchart/README.html ? graphics/py-graphviz/README.html ? graphics/py-imaging/README.html ? graphics/py-imaging-handbook/README.html ? graphics/py-ming/README.html ? graphics/py-opengl/README.html ? graphics/py-paint/README.html ? graphics/qcread/README.html ? graphics/qglviewer/README.html ? graphics/qiv/README.html ? graphics/qslim/README.html ? graphics/qtutils/README.html ? graphics/quat/README.html ? graphics/quat-gui/README.html ? graphics/quickpics/README.html ? graphics/qvplay/README.html ? graphics/ray++/README.html ? graphics/rayshade/README.html ? graphics/reallyslick/README.html ? graphics/renderpark/README.html ? graphics/ruby-evas/README.html ? graphics/ruby-gd/README.html ? graphics/ruby-gdchart/README.html ? graphics/ruby-gdk_imlib/README.html ? graphics/ruby-gdk_pixbuf/README.html ? graphics/ruby-gdk_pixbuf2/README.html ? graphics/ruby-gnomecanvas2/README.html ? graphics/ruby-graph/README.html ? graphics/ruby-image_size/README.html ? graphics/ruby-imlib2/README.html ? graphics/ruby-libart/README.html ? graphics/ruby-libart2/README.html ? graphics/ruby-libexif/README.html ? graphics/ruby-libpng/README.html ? graphics/ruby-ming/README.html ? graphics/ruby-opengl/README.html ? graphics/ruby-pgplot/README.html ? graphics/ruby-rmagick/README.html ? graphics/ruby-svg/README.html ? graphics/ruby-tgif/README.html ? graphics/rubyphoto/README.html ? graphics/s10sh/README.html ? graphics/s3switch/README.html ? graphics/sam2p/README.html ? graphics/sane-backends/README.html ? graphics/sane-frontends/README.html ? graphics/sced/README.html ? graphics/scr2png/README.html ? graphics/scrot/README.html ? graphics/scwm-icons/README.html ? graphics/sdl_gfx/README.html ? graphics/sdl_image/README.html ? graphics/sdl_ttf/README.html ? graphics/seejpeg/README.html ? graphics/show/README.html ? graphics/showimg/README.html ? graphics/simage/README.html ? graphics/sketch/README.html ? graphics/sng/README.html U graphics/sodipodi/Makefile ? graphics/sodipodi/README.html ? graphics/springgraph/README.html ? graphics/stamp/README.html ? graphics/svg2swf/README.html ? graphics/svgalib/README.html ? graphics/swfdec/README.html ? graphics/swftools/README.html ? graphics/synaesthesia/README.html ? graphics/tcm/README.html ? graphics/tgif/README.html ? graphics/tgif-nls/README.html ? graphics/threeDS/README.html ? graphics/tif22pnm/README.html ? graphics/tiff/README.html ? graphics/tiff2png/README.html ? graphics/tifmerge/README.html ? graphics/togl/README.html ? graphics/truevision/README.html ? graphics/tulip/README.html ? graphics/txtmerge/README.html ? graphics/urt/README.html ? graphics/utah-glx/README.html ? graphics/vcg/README.html ? graphics/vertex/README.html ? graphics/vid/README.html ? graphics/view3ds/README.html ? graphics/visionegg/README.html ? graphics/vp/README.html ? graphics/vterrain-apps/README.html ? graphics/vterrain-sdk/README.html ? graphics/whirlgif/README.html ? graphics/white_dune/README.html ? graphics/wings/README.html ? graphics/wmgrabimage/README.html ? graphics/wmicons/README.html ? graphics/xaos/README.html ? graphics/xbarcode/README.html ? graphics/xbmbrowser/README.html ? graphics/xd3d/README.html ? graphics/xdgagrab/README.html ? graphics/xdl/README.html ? graphics/xenomorph/README.html ? graphics/xface.el/README.html ? graphics/xfig/README.html ? graphics/xfpovray/README.html ? graphics/xfractint/README.html ? graphics/xglurbules/README.html ? graphics/xgrasp/README.html ? graphics/xli/README.html ? graphics/xmagv/README.html ? graphics/xmandel/README.html ? graphics/xmedcon/README.html ? graphics/xmfract/README.html ? graphics/xmms-blursk/README.html ? graphics/xmms-finespectrum/README.html ? graphics/xmms-fishmatic/README.html ? graphics/xmms-gdancer/README.html ? graphics/xmms-gforce/README.html ? graphics/xmms-goom/README.html ? graphics/xmms-infinity/README.html ? graphics/xmms-iris/README.html ? graphics/xmms-jess/README.html ? graphics/xmms-nebulus/README.html ? graphics/xmms-paranormal/README.html ? graphics/xmms-xvs/README.html ? graphics/xmorph/README.html ? graphics/xmountains/README.html ? graphics/xmrm/README.html ? graphics/xnview/README.html ? graphics/xpaint/README.html ? graphics/xpcd/README.html ? graphics/xpdf/README.html ? graphics/xpm/README.html ? graphics/xpx/README.html ? graphics/xrml/README.html ? graphics/xsane/README.html ? graphics/xtexcad/README.html ? graphics/xv/README.html ? graphics/xv-m17n/README.html ? graphics/xwpick/README.html ? graphics/xzgv/README.html ? graphics/yafray/README.html ? graphics/zimg/README.html ? graphics/zphoto/README.html ? hebrew/README.html ? hebrew/culmus/README.html ? hebrew/elmar-fonts/README.html ? hebrew/he2/README.html ? hebrew/hspell/README.html ? hebrew/kde3-i18n/README.html ? hebrew/koffice-i18n/README.html ? hebrew/pine/README.html ? hungarian/README.html ? hungarian/hu-phone/README.html ? hungarian/hu-zipcodes/README.html ? hungarian/ispell/README.html ? hungarian/jdictionary-eng-hun/README.html ? hungarian/jdictionary-eng-hun-expr/README.html ? hungarian/kde3-i18n/README.html ? hungarian/koffice-i18n/README.html ? irc/README.html ? irc/bitchx/README.html ? irc/bitlbee/README.html ? irc/blackened/README.html ? irc/bnc/README.html ? irc/bobot++/README.html ? irc/dancer/README.html ? irc/dancer-ircd/README.html ? irc/dancer-services/README.html ? irc/darkbot/README.html ? irc/dcc/README.html ? irc/dircproxy/README.html ? irc/eggdrop/README.html ? irc/epic4/README.html ? irc/ezbounce/README.html ? irc/gruftistats/README.html ? irc/iip/README.html ? irc/infobot/README.html ? irc/irc/README.html ? irc/ircII/README.html ? irc/ircatlite/README.html ? irc/ircd-hybrid/README.html ? irc/ircd-ru/README.html ? irc/irchat-pj-emacs20/README.html ? irc/irchat-pj-emacs21/README.html ? irc/irchat-pj-xemacs-devel-mule/README.html ? irc/irchat-pj-xemacs21-mule/README.html ? irc/ircproxy/README.html ? irc/ircservices/README.html ? irc/iroffer/README.html ? irc/irssi/README.html ? irc/kmyirc/README.html ? irc/konversation/README.html ? irc/liece/README.html ? irc/liece-dcc/README.html ? irc/liece-emacs20/README.html ? irc/lostirc/README.html ? irc/muh/README.html ? irc/nethirc/README.html ? irc/ngircd/README.html ? irc/ninja/README.html ? irc/olirc/README.html ? irc/onis/README.html ? irc/p5-IRC/README.html ? irc/p5-POE-Component-IRC/README.html ? irc/p5-POE-Component-IRC-Object/README.html ? irc/party/README.html ? irc/pircbot/README.html ? irc/pisg/README.html ? irc/psybnc/README.html ? irc/pure-emacs20/README.html ? irc/pure-emacs21/README.html ? irc/pure-xemacs-devel-mule/README.html ? irc/pure-xemacs21-mule/README.html ? irc/py-irclib/README.html ? irc/quirc/README.html ? irc/rbot/README.html ? irc/roxirc/README.html ? irc/ruby-irc/README.html ? irc/ruby-rica/README.html ? irc/ruby-rice/README.html ? irc/scrollz/README.html ? irc/scrollz-doc/README.html ? irc/sic/README.html ? irc/sirc/README.html ? irc/sircd/README.html ? irc/slirc/README.html ? irc/tirc/README.html ? irc/tircproxy/README.html ? irc/tkirc/README.html ? irc/tr-ircd/README.html ? irc/trickyirc/README.html ? irc/xaric/README.html ? irc/xchat/README.html ? irc/xchat2/README.html ? irc/zircon/README.html ? japanese/README.html ? japanese/ASCIIdates98-fpw/README.html ? japanese/CGdic-fpw/README.html ? japanese/Canna/README.html ? japanese/FreeWnn-lib/README.html ? japanese/FreeWnn-server/README.html ? japanese/VTPSfont/README.html ? japanese/Wnn6/README.html ? japanese/Wnn6-lib/README.html ? japanese/Wnn7-lib/README.html ? japanese/a2ps/README.html ? japanese/ack/README.html ? japanese/acroread5-jpnfont/README.html ? japanese/addttfont/README.html ? japanese/alias-fonts/README.html ? japanese/another-htmllint/README.html ? japanese/anthy/README.html ? japanese/aterm/README.html ? japanese/balsa/README.html ? japanese/bible_names-fpw/README.html ? japanese/binder/README.html ? japanese/bookview/README.html ? japanese/cal.rb/README.html ? japanese/cannadic/README.html ? japanese/cdrom2/README.html ? japanese/celrw/README.html ? japanese/chasen/README.html ? japanese/chasen-base/README.html ? japanese/chimera/README.html ? japanese/csrd/README.html ? japanese/dbskkd-cdb/README.html ? japanese/ddskk/README.html ? japanese/ddskk-emacs20/README.html ? japanese/deepforest/README.html ? japanese/devil-fpw/README.html ? japanese/diclookup-emacs20/README.html ? japanese/diclookup-mule/README.html ? japanese/drpl/README.html ? japanese/dserver/README.html ? japanese/dvi2dvi/README.html ? japanese/dvi2ps/README.html ? japanese/dvi2tty/README.html ? japanese/dvipdfm/README.html ? japanese/dvipsk/README.html ? japanese/dvipsk-vflib/README.html ? japanese/e2ps/README.html ? japanese/easypr/README.html ? japanese/eb/README.html ? japanese/ebd-fpw/README.html ? japanese/eblook/README.html ? japanese/ebview/README.html ? japanese/ebw3/README.html ? japanese/edict/README.html ? japanese/edict-fpw/README.html ? japanese/edict-sdic/README.html ? japanese/eijiro-fpw/README.html ? japanese/elisa10x8/README.html ? japanese/elisa8x8/README.html ? japanese/elisp-manual/README.html ? japanese/elvis/README.html ? japanese/emacs-manual/README.html ? japanese/emacs20-dl-canna/README.html ? japanese/emacs20-dl-wnn6/README.html ? japanese/emacs20-emcws/README.html ? japanese/emacs21-emcws/README.html ? japanese/epic4/README.html ? japanese/epwutil/README.html ? japanese/escpf/README.html ? japanese/esecanna/README.html ? japanese/esecanna-module-vje25/README.html ? japanese/esecanna-module-vje30/README.html ? japanese/esecanna-module-wnn6/README.html ? japanese/eterm/README.html ? japanese/ewipe/README.html ? japanese/exmh2/README.html ? japanese/expect/README.html ? japanese/flower-fpw/README.html ? japanese/foldoc-fpw/README.html ? japanese/freepwing/README.html ? japanese/fumeikai-fpw/README.html ? japanese/gaim/README.html ? japanese/gal/README.html ? japanese/gauche-kakasi/README.html ? japanese/gawk/README.html ? japanese/gd/README.html ? japanese/gd1/README.html ? japanese/ghostscript-gnu-jpnfont/README.html ? japanese/gicq/README.html ? japanese/gn-gnspool/README.html ? japanese/gnome/README.html ? japanese/gnomelibs/README.html ? japanese/gnumeric/README.html ? japanese/gorua/README.html ? japanese/gqmpeg/README.html ? japanese/grep/README.html ? japanese/groff/README.html ? japanese/gtkicq/README.html ? japanese/gxditview/README.html ? japanese/hex/README.html ? japanese/hns/README.html ? japanese/ical/README.html ? japanese/im-ja/README.html ? japanese/ipadic/README.html ? japanese/ircII/README.html ? japanese/iv/README.html ? japanese/jadetex-ptex/README.html ? japanese/japaneseAFM/README.html ? japanese/jargon-fpw/README.html ? japanese/jcode.pl/README.html ? japanese/jed/README.html ? japanese/jgv/README.html ? japanese/jhd/README.html ? japanese/jisx0213-fonts/README.html ? japanese/jls/README.html ? japanese/jmode/README.html ? japanese/jmode-skk/README.html ? japanese/jpilot/README.html ? japanese/jvim/README.html ? japanese/jvim-canna/README.html ? japanese/jvim-canna+freewnn/README.html ? japanese/jvim-canna+wnn6/README.html ? japanese/jvim-canna+wnn7/README.html ? japanese/jvim-freewnn/README.html ? japanese/jvim-wnn6/README.html ? japanese/jvim-wnn7/README.html ? japanese/jvim3/README.html ? japanese/jvim3-canna/README.html ? japanese/jvim3-canna+freewnn/README.html ? japanese/jvim3-canna+wnn6/README.html ? japanese/jvim3-canna+wnn7/README.html ? japanese/jvim3-direct_canna/README.html ? japanese/jvim3-freewnn/README.html ? japanese/jvim3-wnn6/README.html ? japanese/jvim3-wnn7/README.html ? japanese/jyuroku/README.html ? japanese/k10/README.html ? japanese/k12/README.html ? japanese/kakasi/README.html ? japanese/kanji18/README.html ? japanese/kanji26/README.html ? japanese/kanjipad/README.html ? japanese/kappa20/README.html ? japanese/kbanner/README.html ? japanese/kcc/README.html ? japanese/kde3-i18n/README.html ? japanese/kdrill/README.html ? japanese/kinput2-canna/README.html ? japanese/kinput2-canna+freewnn/README.html ? japanese/kinput2-canna+freewnn+sj3/README.html ? japanese/kinput2-canna+sj3/README.html ? japanese/kinput2-canna+sj3+wnn6/README.html ? japanese/kinput2-canna+sj3+wnn7/README.html ? japanese/kinput2-canna+wnn6/README.html ? japanese/kinput2-canna+wnn7/README.html ? japanese/kinput2-freewnn/README.html ? japanese/kinput2-freewnn+sj3/README.html ? japanese/kinput2-sj3/README.html ? japanese/kinput2-sj3+wnn6/README.html ? japanese/kinput2-sj3+wnn7/README.html ? japanese/kinput2-wnn6/README.html ? japanese/kinput2-wnn7/README.html ? japanese/kochi-cidfonts/README.html ? japanese/kochi-ttfonts/README.html ? japanese/koffice-i18n/README.html ? japanese/kon2-14dot/README.html ? japanese/kon2-16dot/README.html ? japanese/kpcal/README.html ? japanese/kterm/README.html ? japanese/kterm16c/README.html ? japanese/lambdamoo/README.html ? japanese/latex2html/README.html ? japanese/leafrogue/README.html ? japanese/less/README.html ? japanese/libicq/README.html ? japanese/libimg/README.html ? japanese/libjcode/README.html ? japanese/libjconv/README.html ? japanese/libslang/README.html ? japanese/linux-JM/README.html ? japanese/linux_locale/README.html ? japanese/lipsf/README.html ? japanese/lookup/README.html ? japanese/lookup-emacs20/README.html ? japanese/lookup-mule/README.html ? japanese/lookup-xemacs/README.html ? japanese/lsd-fpw/README.html ? japanese/lynx/README.html ? japanese/lynx-current/README.html ? japanese/lyx/README.html ? japanese/lyx-doc/README.html ? japanese/magicpoint/README.html ? japanese/makejvf/README.html ? japanese/man/README.html ? japanese/man-doc/README.html ? japanese/marumoji-fonts/README.html ? japanese/mecab/README.html ? japanese/mendexk-euc/README.html ? japanese/mendexk-sjis/README.html ? japanese/mh/README.html ? japanese/migemo/README.html ? japanese/migemo-emacs20/README.html ? japanese/migemo-emacs21/README.html ? japanese/migemo-xemacs-devel-mule/README.html ? japanese/migemo-xemacs21-mule/README.html ? japanese/mikachan-ttfonts/README.html ? japanese/mimekit/README.html ? japanese/ming/README.html ? japanese/monafonts/README.html ? japanese/monafonts-ttf/README.html ? japanese/mozilla-jlp/README.html ? japanese/mozilla-jlp-devel/README.html ? japanese/mplusfonts/README.html ? japanese/msdosfs/README.html ? japanese/mtools/README.html ? japanese/muggy/README.html ? japanese/mule-canna/README.html ? japanese/mule-canna+freewnn/README.html ? japanese/mule-canna+freewnn+sj3/README.html ? japanese/mule-canna+sj3/README.html ? japanese/mule-canna+sj3+wnn6/README.html ? japanese/mule-canna+sj3+wnn7/README.html ? japanese/mule-canna+wnn6/README.html ? japanese/mule-canna+wnn7/README.html ? japanese/mule-freewnn/README.html ? japanese/mule-freewnn+sj3/README.html ? japanese/mule-sj3/README.html ? japanese/mule-sj3+wnn6/README.html ? japanese/mule-sj3+wnn7/README.html ? japanese/mule-wnn6/README.html ? japanese/mule-wnn7/README.html ? japanese/mutt/README.html ? japanese/mutt-devel/README.html ? japanese/mypaedia-fpw/README.html ? japanese/mypaedia-fpw-package/README.html ? japanese/namazu/README.html ? japanese/namazu2/README.html ? japanese/navi2ch-emacs20/README.html ? japanese/navi2ch-emacs21/README.html ? japanese/navi2ch-xemacs21-mule/README.html ? japanese/ndtpd/README.html ? japanese/ne/README.html ? japanese/nethack32/README.html ? japanese/nethack34/README.html ? japanese/netscape48-communicator/README.html ? japanese/netscape48-navigator/README.html ? japanese/netscape7/README.html ? japanese/netype/README.html ? japanese/netypesv/README.html ? japanese/newosaka/README.html ? japanese/ng/README.html ? japanese/ng-canna/README.html ? japanese/ng-devel/README.html ? japanese/ngraph-fonts/README.html ? japanese/nkf/README.html ? japanese/nvi-euc-jp/README.html ? japanese/nvi-iso-2022-jp/README.html ? japanese/nvi-sjis/README.html ? japanese/okphone/README.html ? japanese/oleo/README.html ? japanese/onew-canna/README.html ? japanese/onew-canna+freewnn/README.html ? japanese/onew-canna+wnn6/README.html ? japanese/onew-canna+wnn7/README.html ? japanese/onew-freewnn/README.html ? japanese/onew-wnn6/README.html ? japanese/onew-wnn7/README.html ? japanese/openoffice/README.html ? japanese/openoffice-devel/README.html ? japanese/openoffice-templates/README.html U mail/Makefile ? mail/log U mail/p5-Net-QMTP/Makefile U mail/p5-Net-QMTP/distinfo U mail/p5-Net-QMTP/pkg-descr U mail/p5-Net-QMTP/pkg-plist ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 01:01:07 2003 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 9AD7516A4B3 for ; Fri, 17 Oct 2003 01:01:07 -0700 (PDT) Received: from thuis.piwebs.com (217-19-20-186.dsl.cambrium.nl [217.19.20.186]) by mx1.FreeBSD.org (Postfix) with SMTP id 98F4043F75 for ; Fri, 17 Oct 2003 01:01:05 -0700 (PDT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 3029 invoked by uid 85); 17 Oct 2003 08:02:06 -0000 Received: from avleeuwen@piwebs.com by thuis.piwebs.com by uid 82 with qmail-scanner-1.20rc1 (uvscan: v4.2.40/v4288. Clear:RC:1:. Processed in 0.065533 secs); 17 Oct 2003 08:02:06 -0000 Received: from unknown (HELO 192.168.0.109) (192.168.0.109) by 0 with SMTP; 17 Oct 2003 08:02:06 -0000 From: Arjan van Leeuwen To: mdunham@kestrelworks.com, Michael Dunham , freebsd-ports@freebsd.org Date: Fri, 17 Oct 2003 10:01:03 +0200 User-Agent: KMail/1.5.4 References: <3F8F5105.5040308@earthlink.net> In-Reply-To: <3F8F5105.5040308@earthlink.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310171001.03637.avleeuwen@piwebs.com> cc: stefan.jahn@nemesis-sektor.de Subject: Re: Kopete 7.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: Fri, 17 Oct 2003 08:01:07 -0000 On Friday 17 October 2003 04:16, Michael Dunham wrote: > I've been looking for the most recent version of the KDE Kopete IM > client (0.7.3) to appear in the ports collection but as yet I haven't > seen anything newer than 0.7 appear. I sent an email to the ports > maintainer but I wondered if anyone has been successful installing from > the Sourceforce binary? I'm running 5.1 Current. The sources of 0.7.2 compile & install fine without any patches on my -CURRENT machine. Maintainer, can you update the port? the current version doesn't work with the new MSN protocol. Arjan > > Thanks > > Mike Dunham > > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 01:02:39 2003 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 D696E16A4B3 for ; Fri, 17 Oct 2003 01:02:39 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02FB943FA3 for ; Fri, 17 Oct 2003 01:02:37 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h9H82aGZ074006 for ; Fri, 17 Oct 2003 04:02:36 -0400 (EDT) (envelope-from kris@9ball.rtp.freebsd.org) Received: (from kris@localhost) by 9ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9H82aS6048032 for ports@FreeBSD.org; Fri, 17 Oct 2003 04:02:36 -0400 (EDT) (envelope-from kris) Date: Fri, 17 Oct 2003 04:02:36 -0400 (EDT) From: Kris Kennaway Message-Id: <200310170802.h9H82aS6048032@9ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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: Fri, 17 Oct 2003 08:02:39 -0000 INDEX build failed with errors: p5-Net-QMTP-0.05: "/vol/vol0/users/kris/ports.clean/textproc/p5-Text-Netstring" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 01:41:26 2003 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 003F816A4B3 for ; Fri, 17 Oct 2003 01:41:26 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF84E43F75 for ; Fri, 17 Oct 2003 01:41:20 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h9H8fKGZ027276 for ; Fri, 17 Oct 2003 04:41:20 -0400 (EDT) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9H8fJop081169 for ports@FreeBSD.org; Fri, 17 Oct 2003 04:41:20 -0400 (EDT) (envelope-from kris) Date: Fri, 17 Oct 2003 04:41:20 -0400 (EDT) From: Kris Kennaway Message-Id: <200310170841.h9H8fJop081169@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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: Fri, 17 Oct 2003 08:41:26 -0000 INDEX build failed with errors: p5-Net-QMTP-0.05: "/vol/vol0/users/kris/ports.clean/textproc/p5-Text-Netstring" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? README.html ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x ? archivers/README.html ? archivers/9e/README.html ? archivers/arc/README.html ? archivers/arj/README.html ? archivers/bicom/README.html ? archivers/bzip/README.html ? archivers/bzip2/README.html ? archivers/cabextract/README.html ? archivers/dact/README.html ? archivers/deepforest/README.html ? archivers/dpkg/README.html ? archivers/fastjar/README.html ? archivers/fileroller/README.html ? archivers/freeze/README.html ? archivers/gshar+gunshar/README.html ? archivers/gtar/README.html ? archivers/gzip/README.html ? archivers/ha/README.html ? archivers/hffzip/README.html ? archivers/hpack.non-usa.only/README.html ? archivers/lbrate/README.html ? archivers/lha/README.html ? archivers/libarc/README.html ? archivers/libcabinet/README.html ? archivers/libcomprex/README.html ? archivers/linux-unace/README.html ? archivers/lzo/README.html ? archivers/lzop/README.html ? archivers/macutils/README.html ? archivers/makeself/README.html ? archivers/mscompress/README.html ? archivers/mtf/README.html ? archivers/nomarch/README.html ? archivers/nulib/README.html ? archivers/nwreckdum/README.html ? archivers/p5-Archive-Tar/README.html ? archivers/p5-Archive-Zip/README.html ? archivers/p5-Compress-Bzip2/README.html ? archivers/p5-Compress-Zlib/README.html ? archivers/p5-IO-Zlib/README.html ? archivers/p5-Mac-Macbinary/README.html ? archivers/parchive/README.html ? archivers/pear-Archive_Tar/README.html ? archivers/ppunpack/README.html ? archivers/py-bzip2/README.html ? archivers/py-tarfile/README.html ? archivers/rar/README.html ? archivers/rox-archive/README.html ? archivers/rpm/README.html ? archivers/rpm2cpio/README.html ? archivers/ruby-bz2/README.html ? archivers/ruby-zip/README.html ? archivers/sectar/README.html ? archivers/squsq/README.html ? archivers/star/README.html ? archivers/stuffit/README.html ? archivers/szip/README.html ? archivers/tardy/README.html ? archivers/ucl/README.html ? archivers/unace/README.html ? archivers/unadf/README.html ? archivers/unarj/README.html ? archivers/undms/README.html ? archivers/unlzx/README.html ? archivers/unrar/README.html ? archivers/untar/README.html ? archivers/unzip/README.html ? archivers/wzip/README.html ? archivers/xdms/README.html ? archivers/xmill/README.html ? archivers/xpk/README.html ? archivers/zip/README.html ? archivers/zipios++/README.html ? archivers/zoo/README.html ? astro/README.html ? astro/SETIsupport/README.html ? astro/accrete/README.html ? astro/celestia/README.html ? astro/dgpsip/README.html ? astro/ephem/README.html ? astro/fooseti/README.html ? astro/gkrellmearth/README.html ? astro/gkrellmoon/README.html ? astro/gkrellmseti/README.html ? astro/gkrellsun/README.html ? astro/gpsdrive/README.html ? astro/gpsman/README.html ? astro/jday/README.html ? astro/ksetisaver/README.html ? astro/ksetispy/README.html ? astro/ksetiwatch/README.html ? astro/libnova/README.html ? astro/linux-setiathome/README.html ? astro/luna/README.html ? astro/match/README.html ? astro/mymoon/README.html ? astro/nightfall/README.html ? astro/openuniverse/README.html ? astro/p5-Astro-ADS/README.html ? astro/p5-Astro-Catalog/README.html ? astro/p5-Astro-DSS/README.html ? astro/p5-Astro-MoonPhase/README.html ? astro/p5-Astro-SIMBAD/README.html ? astro/p5-Astro-SunTime/README.html ? astro/p5-Astro-Sunrise/README.html ? astro/p5-GPS/README.html ? astro/p5-Geo-METAR/README.html ? astro/p5-SETI-Stats/README.html ? astro/phoon/README.html ? astro/planets/README.html ? astro/py-metar/README.html ? astro/pyweather/README.html ? astro/rmap/README.html ? astro/roadmap/README.html ? astro/saoimage/README.html ? astro/sattrack/README.html ? astro/setiathome/README.html ? astro/spacechart/README.html ? astro/squeuer/README.html ? astro/sscalc/README.html ? astro/starplot/README.html ? astro/stars/README.html ? astro/sunclock/README.html ? astro/tkseti/README.html ? astro/wmglobe/README.html ? astro/wmjupiter/README.html ? astro/wmmoonclock/README.html ? astro/wmsolar/README.html ? astro/wmspaceweather/README.html ? astro/wmsun/README.html ? astro/x3arth/README.html ? astro/xearth/README.html ? astro/xephem/README.html ? astro/xglobe/README.html ? astro/xphoon/README.html ? astro/xplanet/README.html ? astro/xtide/README.html ? astro/xworld/README.html ? audio/README.html ? audio/HVSC-Update/README.html ? audio/Maaate/README.html ? audio/abcde/README.html ? audio/abcmidi/README.html ? audio/abcselect/README.html ? audio/ac3dec/README.html ? audio/adpcm/README.html ? audio/afsp/README.html ? audio/alienwah/README.html ? audio/alsaplayer/README.html ? audio/amp/README.html ? audio/ample/README.html ? audio/arts/README.html ? audio/ascd/README.html ? audio/asmix/README.html ? audio/asmixer/README.html ? audio/aube/README.html ? audio/audacity/README.html ? audio/aumix/README.html ? audio/aureal-kmod/README.html ? audio/autocd/README.html ? audio/autools/README.html ? audio/autozen/README.html ? audio/baudline/README.html ? audio/bebocd/README.html ? audio/beep/README.html ? audio/bladeenc/README.html ? audio/blop/README.html ? audio/bonk/README.html ? audio/btc/README.html ? audio/cam/README.html ? audio/cantus/README.html ? audio/ccaudio/README.html ? audio/cd-console/README.html ? audio/cd-discid/README.html ? audio/cd2mp3/README.html ? audio/cdparanoia/README.html ? audio/cdplay/README.html ? audio/cdplayer.app/README.html ? audio/cheesetracker/README.html ? audio/chordpack/README.html ? audio/cmp3/README.html ? audio/cmt/README.html ? audio/cplay/README.html ? audio/crip/README.html ? audio/csound/README.html ? audio/csound-manual/README.html ? audio/cue2toc/README.html ? audio/cymbaline/README.html ? audio/dagrab/README.html ? audio/dap/README.html ? audio/darkice/README.html ? audio/dekagen/README.html ? audio/denemo/README.html ? audio/discid/README.html ? audio/easytag/README.html ? audio/ecasound/README.html ? audio/ecawave/README.html ? audio/ermixer/README.html ? audio/esound/README.html ? audio/etktab/README.html ? audio/evilbar/README.html ? audio/extace/README.html ? audio/faad/README.html ? audio/fcplay/README.html ? audio/festdoc/README.html ? audio/festival/README.html ? audio/festlex-cmu/README.html ? audio/festlex-oald/README.html ? audio/festlex-ogi/README.html ? audio/festlex-poslex/README.html ? audio/festogi-spanish/README.html ? audio/festvox-abc/README.html ? audio/festvox-don/README.html ? audio/festvox-el11/README.html ? audio/festvox-hvs/README.html ? audio/festvox-jph/README.html ? audio/festvox-kal16/README.html ? audio/festvox-kal8/README.html ? audio/festvox-ked16/README.html ? audio/festvox-ked8/README.html ? audio/festvox-mwm/README.html ? audio/festvox-ogirab/README.html ? audio/festvox-rab16/README.html ? audio/festvox-rab8/README.html ? audio/festvox-tll/README.html ? audio/flac/README.html ? audio/fmio/README.html ? audio/freebirth/README.html ? audio/funktrackergold/README.html ? audio/gdrdao/README.html ? audio/gkrellmms/README.html ? audio/gkrellmms2/README.html ? audio/gkrellmss/README.html ? audio/gkrellmss2/README.html ? audio/gkrellmvolume/README.html ? audio/gkrellmvolume2/README.html ? audio/glame/README.html ? audio/gmixer/README.html ? audio/gnapster/README.html ? audio/gnomeaudio2/README.html ? audio/gnomemedia2/README.html ? audio/gnomespeech/README.html ? audio/gnowavcut/README.html ? audio/gnump3d/README.html ? audio/gnupod/README.html ? audio/gogo/README.html ? audio/gqmpeg/README.html ? audio/gqradio/README.html ? audio/gramofile/README.html ? audio/grip/README.html ? audio/gsi/README.html ? audio/gsm/README.html ? audio/gtkgep/README.html ? audio/gtkpod/README.html ? audio/holyshout/README.html ? audio/icecast/README.html ? audio/icecast2/README.html ? audio/ices/README.html ? audio/id3ed/README.html ? audio/id3el/README.html ? audio/id3lib/README.html ? audio/id3ren/README.html ? audio/id3tool/README.html ? audio/id3v2/README.html ? audio/juk/README.html ? audio/juke/README.html ? audio/ksmp3play/README.html ? audio/ladspa/README.html ? audio/lame/README.html ? audio/liba52/README.html ? audio/libao/README.html ? audio/libaudiofile/README.html ? audio/libcdaudio/README.html ? audio/libmikmod/README.html ? audio/libmusicbrainz/README.html ? audio/libogg/README.html ? audio/libsamplerate/README.html ? audio/libshout/README.html ? audio/libshout2/README.html ? audio/libsidplay/README.html ? audio/libsidplay2/README.html ? audio/libsndfile/README.html ? audio/libvorbis/README.html ? audio/libworkman/README.html ? audio/linux-arts/README.html ? audio/linux-esound/README.html ? audio/linux-libaudiofile/README.html ? audio/linux-vsound/README.html ? audio/liteamp/README.html ? audio/lopster/README.html ? audio/lplayer/README.html ? audio/mad/README.html ? audio/maplay/README.html ? audio/mctoolame-decoder/README.html ? audio/mctoolame-encoder/README.html ? audio/mhwaveedit/README.html ? audio/midimountain/README.html ? audio/mikmod/README.html ? audio/mixer.app/README.html ? audio/mp32ogg/README.html ? audio/mp3_check/README.html ? audio/mp3asm/README.html ? audio/mp3blaster/README.html ? audio/mp3butler/README.html ? audio/mp3c/README.html ? audio/mp3check/README.html ? audio/mp3chew/README.html ? audio/mp3ck/README.html ? audio/mp3encode/README.html ? audio/mp3gain/README.html ? audio/mp3info/README.html ? audio/mp3mover/README.html ? audio/mp3rename/README.html ? audio/mp3splt/README.html ? audio/mp3stat/README.html ? audio/mp3wrap/README.html ? audio/mpc/README.html ? audio/mpegaudio/README.html ? audio/mpg123/README.html ? audio/mpg123.el/README.html ? audio/mpg321/README.html ? audio/mpio-driver/README.html ? audio/mpmf20/README.html ? audio/mppdec/README.html ? audio/mpt/README.html ? audio/mq3/README.html ? audio/muse/README.html ? audio/musicbox/README.html ? audio/musicbrainz/README.html ? audio/musiccontrol/README.html ? audio/musicpd/README.html ? audio/mutemix/README.html ? audio/mziq/README.html ? audio/napster/README.html ? audio/nas/README.html ? audio/net-rhythmbox/README.html ? audio/nogger/README.html ? audio/normalize/README.html ? audio/nosefart/README.html ? audio/nspmod/README.html ? audio/openal/README.html ? audio/opennap/README.html ? audio/opmixer/README.html ? audio/osalp/README.html ? audio/p5-Audio-CD/README.html ? audio/p5-Audio-Wav/README.html ? audio/p5-CDDB/README.html ? audio/p5-CDDB-File/README.html ? audio/p5-CDDB_get/README.html ? audio/p5-MP3-ID3v1Tag/README.html ? audio/p5-MP3-Info/README.html ? audio/p5-MPEG-ID3v2Tag/README.html ? audio/p5-MusicBrainz-Client/README.html ? audio/p5-MusicBrainz-Queries/README.html ? audio/p5-MusicBrainz-TRM/README.html ? audio/p5-Shout/README.html ? audio/p5-Xmms/README.html ? audio/p5-libvorbis/README.html ? audio/p5-tagged/README.html ? audio/pd/README.html ? audio/pimp3/README.html ? audio/play/README.html ? audio/playmidi/README.html ? audio/portaudio/README.html ? audio/py-ao/README.html ? audio/py-cddb/README.html ? audio/py-eyed3/README.html ? audio/py-id3/README.html ? audio/py-mad/README.html ? audio/py-musicbrainz/README.html ? audio/py-ogg/README.html ? audio/py-vorbis/README.html ? audio/py-xmms/README.html ? audio/pysol-sound-server/README.html ? audio/quelcom/README.html ? audio/radio/README.html ? audio/raproxy/README.html ? audio/rawrec/README.html ? audio/rebler/README.html ? audio/replay/README.html ? audio/resid/README.html ? audio/rexima/README.html ? audio/rhythmbox/README.html ? audio/rio/README.html ? audio/rio500/README.html ? audio/rioutil/README.html ? audio/ripenc/README.html ? audio/ripit/README.html ? audio/rosegarden/README.html ? audio/rplay/README.html ? audio/rsynth/README.html ? audio/ruby-audiofile/README.html ? audio/ruby-esound/README.html ? audio/ruby-freedb/README.html ? audio/ruby-mp3info/README.html ? audio/ruby-mp3tag/README.html ? audio/ruby-musicbrainz/README.html ? audio/ruby-shout/README.html ? audio/ruby-smf/README.html ? audio/ruby-vorbisfile/README.html ? audio/ruby-xmms/README.html ? audio/s3mod/README.html ? audio/sbagen/README.html ? audio/sdl_mixer/README.html ? audio/sdl_sound/README.html ? audio/sfront/README.html ? audio/shntool/README.html ? audio/shorten/README.html ? audio/shout/README.html ? audio/sidplay/README.html ? audio/simplemod/README.html ? audio/snack/README.html ? audio/snd/README.html ? audio/snowstar/README.html ? audio/songprint/README.html ? audio/sonice/README.html ? audio/soundgrab/README.html ? audio/soundtracker/README.html ? audio/sox/README.html ? audio/speex/README.html ? audio/sphinx/README.html ? audio/spiralloops/README.html ? audio/spiralsynth/README.html ? audio/spiralsynthbaby/README.html ? audio/spiralsynthmodular/README.html ? audio/splay/README.html ? audio/splaytk/README.html ? audio/streamripper/README.html ? audio/streamtuner/README.html ? audio/streamtuner-live365/README.html ? audio/streamtuner-local/README.html ? audio/streamtuner-python/README.html ? audio/sweep/README.html ? audio/swhplugins/README.html ? audio/tclmidi/README.html ? audio/teamspeak_client/README.html ? audio/teamspeak_server/README.html ? audio/teknap/README.html ? audio/tempest_for_eliza/README.html ? audio/terminatorx/README.html ? audio/timidity/README.html ? audio/timidity++/README.html ? audio/timidity++-emacs/README.html ? audio/timidity++-gtk/README.html ? audio/timidity++-motif/README.html ? audio/timidity++-slang/README.html ? audio/timidity++-tcltk/README.html ? audio/timidity++-xaw/README.html ? audio/timidity++-xskin/README.html ? audio/toolame/README.html ? audio/tosha/README.html ? audio/tracker/README.html ? audio/traymp/README.html ? audio/trm/README.html ? audio/trommler/README.html ? audio/ufmcontrol-i18n/README.html ? audio/umix/README.html ? audio/vorbis-tools/README.html ? audio/vorbisgain/README.html ? audio/vsound/README.html ? audio/wavbreaker/README.html ? audio/waveplay/README.html ? audio/wavplay/README.html ? audio/wmcdplay/README.html ? audio/wmfmixer/README.html ? audio/wmix/README.html ? audio/wmmixer/README.html ? audio/wmmp3/README.html ? audio/wmrecord/README.html ? audio/wmsmixer/README.html ? audio/wmtune/README.html ? audio/wmusic/README.html ? audio/workman/README.html ? audio/wsoundprefs/README.html ? audio/wsoundserver/README.html ? audio/x11amp/README.html ? audio/xcd/README.html ? audio/xcdplayer/README.html ? audio/xfce4-mixer/README.html ? audio/xhippo/README.html ? audio/ximp3/README.html ? audio/xmcd/README.html ? audio/xmix/README.html ? audio/xmixer/README.html ? audio/xmmix/README.html ? audio/xmms-a52dec/README.html ? audio/xmms-audiofile/README.html ? audio/xmms-bonk/README.html ? audio/xmms-cdparanoia/README.html ? audio/xmms-cdread/README.html ? audio/xmms-crossfade/README.html ? audio/xmms-crystality/README.html ? audio/xmms-faad/README.html ? audio/xmms-fc/README.html ? audio/xmms-flac/README.html ? audio/xmms-infopipe/README.html ? audio/xmms-kde/README.html ? audio/xmms-kj/README.html ? audio/xmms-ladspa/README.html ? audio/xmms-liveice/README.html ? audio/xmms-mad/README.html ? audio/xmms-mailnotify/README.html ? audio/xmms-midi/README.html ? audio/xmms-musepack/README.html ? audio/xmms-osssurround/README.html ? audio/xmms-pipe/README.html ? audio/xmms-quix3dn/README.html ? audio/xmms-real-random/README.html ? audio/xmms-shn/README.html ? audio/xmms-sid/README.html ? audio/xmms-sndfile/README.html ? audio/xmms-sndstretch/README.html ? audio/xmms-speex/README.html ? audio/xmms-tfmx/README.html ? audio/xmms-uade/README.html ? audio/xmms-volnorm/README.html ? audio/xmp/README.html ? audio/xmpeg3/README.html ? audio/xmradio/README.html ? audio/xsidplay/README.html ? audio/xtuner/README.html ? audio/xvmixer/README.html ? audio/xwave/README.html ? audio/yammi/README.html ? audio/yamt/README.html ? audio/zinf/README.html ? benchmarks/README.html ? benchmarks/bonnie/README.html ? benchmarks/bonnie++/README.html ? benchmarks/bytebench/README.html ? benchmarks/dbench/README.html ? benchmarks/dbs/README.html ? benchmarks/iozone/README.html ? benchmarks/iozone21/README.html ? benchmarks/lmbench/README.html ? benchmarks/nbench/README.html ? benchmarks/netperf/README.html ? benchmarks/netpipe/README.html ? benchmarks/pipebench/README.html ? benchmarks/polygraph/README.html ? benchmarks/postal/README.html ? benchmarks/postmark/README.html ? benchmarks/pybench/README.html ? benchmarks/rawio/README.html ? benchmarks/scimark2/README.html ? benchmarks/scimark2c/README.html ? benchmarks/siege/README.html ? benchmarks/stream/README.html ? benchmarks/tcpblast/README.html ? benchmarks/tmetric/README.html ? benchmarks/ubench/README.html ? benchmarks/xengine/README.html ? biology/README.html ? biology/L-Breeder/README.html ? biology/act/README.html ? biology/artemis/README.html ? biology/avida/README.html ? biology/babel/README.html ? biology/biojava/README.html ? biology/chemeq/README.html ? biology/clustalw/README.html ? biology/coalesce/README.html ? biology/crimap/README.html ? biology/deft/README.html ? biology/distribfold/README.html ? biology/dna-qc/README.html ? biology/emboss/README.html ? biology/fasta/README.html ? biology/fasta3/README.html ? biology/fastdnaml/README.html ? biology/flip/README.html ? biology/fluctuate/README.html ? biology/garlic/README.html ? biology/genpak/README.html ? biology/gff2ps/README.html ? biology/gperiodic/README.html ? biology/grappa/README.html ? biology/hmmer/README.html ? biology/kinemage/README.html ? biology/lamarc/README.html ? biology/libgenome/README.html ? biology/lsysexp/README.html ? biology/migrate/README.html ? biology/molden/README.html ? biology/mopac/README.html ? biology/nab/README.html ? biology/ncbi-toolkit/README.html ? biology/nclever/README.html ? biology/ortep3/README.html ? biology/p5-AcePerl/README.html ? biology/p5-bioperl/README.html ? biology/paml/README.html ? biology/phylip/README.html ? biology/platon/README.html ? biology/povchem/README.html ? biology/primer3/README.html ? biology/psi88/README.html ? biology/py-biopython/README.html ? biology/pymol/README.html ? biology/rasmol/README.html ? biology/recombine/README.html ? biology/ruby-bio/README.html ? biology/seaview/README.html ? biology/seqio/README.html ? biology/sim4/README.html ? biology/spdbv/README.html ? biology/tRNAscan-SE/README.html ? biology/t_coffee/README.html ? biology/tinker/README.html ? biology/treepuzzle/README.html ? biology/treeviewx/README.html ? biology/wise/README.html ? biology/xdrawchem/README.html ? biology/xmolwt/README.html ? cad/README.html ? cad/admesh/README.html ? cad/astk-client/README.html ? cad/astk-serveur/README.html ? cad/atlc/README.html ? cad/calculix/README.html ? cad/cascade/README.html ? cad/chipmunk/README.html ? cad/chipvault/README.html ? cad/cider/README.html ? cad/electric/README.html ? cad/felt/README.html ? cad/geda/README.html ? cad/geda-symbols/README.html ? cad/geda-symcheck/README.html ? cad/geda-utils/README.html ? cad/gerbv/README.html ? cad/gmsh/README.html ? cad/gnetlist/README.html ? cad/gnucap/README.html ? cad/gschem/README.html ? cad/gtkwave/README.html ? cad/gwave/README.html ? cad/irsim/README.html ? cad/iverilog/README.html ? cad/kaskade/README.html ? cad/leocad/README.html ? cad/libgeda/README.html ? cad/linux-eagle/README.html ? cad/magic/README.html ? cad/mars/README.html ? cad/metis-edf/README.html ? cad/ngspice_rework/README.html ? cad/oregano/README.html ? cad/pcb/README.html ? cad/pdnmesh/README.html ? cad/qcad/README.html ? cad/qfsm/README.html ? cad/qmls/README.html ? cad/sceptre/README.html ? cad/slffea/README.html ? cad/spice/README.html ? cad/tkgate/README.html ? cad/tochnog/README.html ? cad/transcalc/README.html ? cad/varkon/README.html ? cad/vipec/README.html ? cad/xcircuit/README.html ? cad/ziarc/README.html ? chinese/README.html ? chinese/CJK/README.html ? chinese/FreeWnn-lib/README.html ? chinese/FreeWnn-server/README.html ? chinese/abiword/README.html ? chinese/acroread5-chsfont/README.html ? chinese/acroread5-chtfont/README.html ? chinese/arphicttf/README.html ? chinese/aterm/README.html ? chinese/auto-tw-l10n/README.html ? chinese/autoconvert/README.html ? chinese/bg5pdf/README.html ? chinese/bg5ps/README.html ? chinese/big5con/README.html ? chinese/big5fs/README.html ? chinese/bind8/README.html ? chinese/bitchx/README.html ? chinese/c2t/README.html ? chinese/cdict5/README.html ? chinese/celvis/README.html ? chinese/chinput/README.html ? chinese/chinput2/README.html ? chinese/chinput3/README.html ? chinese/chitex/README.html ? chinese/cle_base/README.html ? chinese/cless/README.html ? chinese/cmexfonts/README.html ? chinese/cnprint/README.html ? chinese/cwtex/README.html ? chinese/cwtexttf/README.html ? chinese/cxterm/README.html ? chinese/dictd/README.html ? chinese/dictd-database/README.html ? chinese/emacs20/README.html ? chinese/enscript/README.html ? chinese/eterm/README.html ? chinese/fcitx/README.html ? chinese/firebird/README.html ? chinese/fortunetw/README.html ? chinese/gb2jis/README.html ? chinese/gb2ps/README.html ? chinese/gbfs/README.html ? chinese/gbscript/README.html ? chinese/gnumeric/README.html ? chinese/gugod-clean/README.html ? chinese/hanzim/README.html ? chinese/hc/README.html ? chinese/hztty/README.html ? chinese/irssi/README.html ? chinese/jis2gb/README.html ? chinese/joe/README.html ? chinese/kcfonts/README.html ? chinese/kde3-i18n-zh_CN/README.html ? chinese/kde3-i18n-zh_TW/README.html ? chinese/koffice-i18n-zh_TW/README.html ? chinese/kon2/README.html ? chinese/libtabe/README.html ? chinese/links/README.html ? chinese/linux-gtk/README.html ? chinese/lunar/README.html ? chinese/metalist/README.html ? chinese/miniChinput/README.html ? chinese/mkisofs/README.html ? chinese/moefonts-cid/README.html ? chinese/moettf/README.html ? chinese/mplayer-fonts/README.html ? chinese/mule-freewnn/README.html ? chinese/muni/README.html ? chinese/mutt/README.html ? chinese/ntuttf/README.html ? chinese/nvi-big5/README.html ? chinese/nvi-euc-cn/README.html ? chinese/nvi-euc-tw/README.html ? chinese/openoffice-zh_CN/README.html ? chinese/openoffice-zh_TW/README.html ? chinese/oto/README.html ? chinese/oxford/README.html ? chinese/p5-Date-Chinese/README.html ? chinese/p5-Encode-HanConvert/README.html ? chinese/p5-Lingua-ZH-Keywords/README.html ? chinese/p5-Lingua-ZH-Numbers/README.html ? chinese/p5-Lingua-ZH-Summarize/README.html ? chinese/p5-Lingua-ZH-TaBE/README.html ? chinese/p5-Lingua-ZH-Toke/README.html ? chinese/p5-Lingua-ZH-Wrap/README.html ? chinese/pine4/README.html ? chinese/pyDict/README.html ? chinese/qe/README.html ? chinese/qterm/README.html ? chinese/stardict/README.html ? chinese/stardict2/README.html ? chinese/tcl83/README.html ? chinese/telnet/README.html ? chinese/tin/README.html ? chinese/tintin++/README.html ? chinese/tk83/README.html ? chinese/tocps/README.html ? chinese/ttf2pt1/README.html ? chinese/ttfm/README.html ? chinese/ve/README.html ? chinese/vflib/README.html ? chinese/wangttf/README.html ? chinese/xcin25/README.html ? chinese/xemacs/README.html ? chinese/xemacs21/README.html ? chinese/xmms/README.html ? chinese/xpdf/README.html ? chinese/xsim/README.html ? chinese/zhcon/README.html ? comms/README.html ? comms/acfax/README.html ? comms/asmodem/README.html ? comms/bayonne/README.html ? comms/bforce/README.html ? comms/bforce-kst/README.html ? comms/birda/README.html ? comms/bpl+/README.html ? comms/comserv/README.html ? comms/conserver/README.html ? comms/conserver-com/README.html ? comms/ecu/README.html ? comms/efax/README.html ? comms/garmin-utils/README.html ? comms/gfax/README.html ? comms/ghfaxviewer/README.html ? comms/gkermit/README.html ? comms/gmfsk/README.html ? comms/gnokii/README.html ? comms/gscmxx/README.html ? comms/gsmlib/README.html ? comms/hamlib/README.html ? comms/hylafax/README.html ? comms/ixj/README.html ? comms/java-commapi/README.html ? comms/java-commapi-freebsd/README.html ? comms/kallers/README.html ? comms/kermit/README.html ? comms/kpsk/README.html ? comms/libirman/README.html ? comms/libticables/README.html ? comms/lirc/README.html ? comms/lrzsz/README.html ? comms/ltmdm/README.html ? comms/mgetty+sendfax/README.html ? comms/minicom/README.html ? comms/mlan/README.html ? comms/mlan3/README.html ? comms/mserver/README.html ? comms/mwavem/README.html ? comms/p5-Device-Modem/README.html ? comms/p5-Device-SerialPort/README.html ? comms/plp/README.html ? comms/pr/README.html ? comms/py-serial/README.html ? comms/qico/README.html ? comms/qpage/README.html ? comms/ruby-serialport/README.html ? comms/ruby-termios/README.html ? comms/scmxx/README.html ? comms/scud/README.html ? comms/seyon/README.html ? comms/sms_client/README.html ? comms/snooper/README.html ? comms/sredird/README.html ? comms/tilp/README.html ? comms/tits/README.html ? comms/tkhylafax/README.html ? comms/tkscanfax/README.html ? comms/viewfax/README.html ? comms/vpb2/README.html ? comms/vrflash/README.html ? comms/wy60/README.html ? comms/xcept/README.html ? comms/xlog/README.html ? comms/yaps/README.html ? comms/yawmppp/README.html ? comms/zmtx-zmrx/README.html ? comms/zssh/README.html ? converters/README.html ? converters/aish/README.html ? converters/base64/README.html ? converters/btoa/README.html ? converters/chmview/README.html ? converters/cmios9/README.html ? converters/cn2jp/README.html ? converters/dosunix/README.html ? converters/dumpasn1/README.html ? converters/enca/README.html ? converters/fconv/README.html ? converters/fribidi/README.html ? converters/gbase/README.html ? converters/i18ntools/README.html ? converters/iconv/README.html ? converters/iconv-extra/README.html ? converters/iconv-rfc1345/README.html ? converters/ish/README.html ? converters/konwert/README.html ? converters/ktextdecode/README.html ? converters/ktnef/README.html ? converters/libiconv/README.html ? converters/libutf-8/README.html ? converters/mimelib/README.html ? converters/mmencode/README.html ? converters/mpack/README.html ? converters/mule-ucs/README.html ? converters/mule-ucs-emacs20/README.html ? converters/p5-Boulder/README.html ? converters/p5-Convert-ASCII-Armour/README.html ? converters/p5-Convert-ASN1/README.html ? converters/p5-Convert-BER/README.html ? converters/p5-Convert-Morse/README.html ? converters/p5-Convert-PEM/README.html ? converters/p5-Convert-Recode/README.html ? converters/p5-Convert-TNEF/README.html ? converters/p5-Convert-UU/README.html ? converters/p5-Convert-UUlib/README.html ? converters/p5-Cstools/README.html ? converters/p5-MIME-Base64/README.html ? converters/p5-String-Multibyte/README.html ? converters/p5-Text-Iconv/README.html ? converters/p5-Unicode-IMAPUtf7/README.html ? converters/p5-Unicode-Lite/README.html ? converters/p5-Unicode-Map/README.html ? converters/p5-Unicode-Map8/README.html ? converters/p5-Unicode-MapUTF8/README.html ? converters/p5-Unicode-String/README.html ? converters/psiconv/README.html ? converters/py-cjkcodecs/README.html ? converters/py-iconv/README.html ? converters/py-iconvcodec/README.html ? converters/recode/README.html ? converters/ruby-dump.rb/README.html ? converters/ruby-iconv/README.html ? converters/ruby-lv/README.html ? converters/siconv/README.html ? converters/tnef/README.html ? converters/trans/README.html ? converters/tuc/README.html ? converters/unix2dos/README.html ? converters/utf8conv/README.html ? converters/uudeview/README.html ? converters/uudx/README.html ? converters/uulib/README.html ? converters/vda2fbd/README.html ? converters/xdeview/README.html ? converters/xunicode/README.html ? databases/README.html ? databases/WWWdb/README.html ? databases/adodb/README.html ? databases/arcexplorer/README.html ? databases/bbdb/README.html ? databases/bbdb-emacs20/README.html ? databases/cdb/README.html ? databases/clip/README.html ? databases/cyrus-imspd/README.html ? databases/db2/README.html ? databases/db3/README.html ? databases/db4/README.html ? databases/db41/README.html ? databases/db41-nocrypto/README.html ? databases/dbXML/README.html ? databases/dbconnect/README.html ? databases/dbf/README.html ? databases/dbf2mysql/README.html ? databases/dbh/README.html ? databases/dbmetrix/README.html ? databases/dbtool/README.html ? databases/dbview/README.html ? databases/edb/README.html ? databases/erserver/README.html ? databases/fastdb/README.html ? databases/firebird/README.html ? databases/firebird-devel/README.html ? databases/fireprofile/README.html ? databases/freetds/README.html ? databases/gadfly/README.html ? databases/gauche-gdbm/README.html ? databases/gbib/README.html ? databases/gdbm/README.html ? databases/gigabase/README.html ? databases/gmysql/README.html ? databases/gnats/README.html ? databases/gnats4/README.html ? databases/gnomedb/README.html ? databases/gqlplus/README.html ? databases/grass/README.html ? databases/gtksql/README.html ? databases/java-sqlrelay/README.html ? databases/jdb/README.html ? databases/jdbc-oracle816/README.html ? databases/libdbi/README.html ? databases/libgda/README.html ? databases/libgda2/README.html ? databases/libgdamm/README.html ? databases/libgnomedb/README.html ? databases/libiodbc/README.html ? databases/libsdb/README.html ? databases/libudbc/README.html ? databases/lsdb/README.html ? databases/lsdb-emacs20/README.html ? databases/mdbtools/README.html ? databases/memcached/README.html ? databases/mergeant/README.html ? databases/metakit/README.html ? databases/mird/README.html ? databases/msql/README.html ? databases/myodbc/README.html ? databases/mysql++/README.html ? databases/mysql-editor/README.html ? databases/mysql-gui/README.html ? databases/mysql-jdbc-mm/README.html ? databases/mysql-navigator/README.html ? databases/mysql2pgsql/README.html ? databases/mysql323-client/README.html ? databases/mysql323-server/README.html ? databases/mysql40-client/README.html ? databases/mysql40-server/README.html ? databases/mysql41-client/README.html ? databases/mysql41-server/README.html ? databases/mysql_last_value/README.html ? databases/mysqlcc/README.html ? databases/mysqlman/README.html ? databases/mysqltcl/README.html ? databases/mytop/README.html ? databases/namazu2/README.html ? databases/oracle7-client/README.html ? databases/p5-ApacheDBILogConfig/README.html ? databases/p5-ApacheDBILogger/README.html ? databases/p5-AsciiDB-TagFile/README.html ? databases/p5-BerkeleyDB/README.html ? databases/p5-CDB_File/README.html ? databases/p5-CDB_File-Generator/README.html ? databases/p5-Class-DBI/README.html ? databases/p5-Class-DBI-AbstractSearch/README.html ? databases/p5-Class-DBI-BaseDSN/README.html ? databases/p5-Class-DBI-FromCGI/README.html ? databases/p5-Class-DBI-Loader/README.html ? databases/p5-Class-DBI-Oracle/README.html ? databases/p5-Class-DBI-Pager/README.html ? databases/p5-Class-DBI-Pg/README.html ? databases/p5-Class-DBI-Replication/README.html ? databases/p5-Class-DBI-SAK/README.html ? databases/p5-Class-DBI-SQLite/README.html ? databases/p5-Class-DBI-ToSax/README.html ? databases/p5-Class-DBI-mysql/README.html ? databases/p5-DBD-CSV/README.html ? databases/p5-DBD-Excel/README.html ? databases/p5-DBD-InterBase/README.html ? databases/p5-DBD-LDAP/README.html ? databases/p5-DBD-ODBC/README.html ? databases/p5-DBD-Oracle/README.html ? databases/p5-DBD-Pg/README.html ? databases/p5-DBD-PgSPI/README.html ? databases/p5-DBD-SQLite/README.html ? databases/p5-DBD-Sybase/README.html ? databases/p5-DBD-XBase/README.html ? databases/p5-DBD-mysql/README.html ? databases/p5-DBI/README.html ? databases/p5-DBI-137/README.html ? databases/p5-DBIWrapper/README.html ? databases/p5-DBIx-AnyDBD/README.html ? databases/p5-DBIx-Browse/README.html ? databases/p5-DBIx-DBSchema/README.html ? databases/p5-DBIx-DataSource/README.html ? databases/p5-DBIx-Ease/README.html ? databases/p5-DBIx-Password/README.html ? databases/p5-DBIx-Recordset/README.html ? databases/p5-DBIx-SQLEngine/README.html ? databases/p5-DBIx-SearchBuilder/README.html ? databases/p5-DBIx-Table/README.html ? databases/p5-DBIx-Tree/README.html ? databases/p5-DBIx-XHTML_Table/README.html ? databases/p5-DBIx-XML_RDB/README.html ? databases/p5-DBZ_File/README.html ? databases/p5-Data-Page/README.html ? databases/p5-GDBM/README.html ? databases/p5-GraphViz-DBI/README.html ? databases/p5-Ima-DBI/README.html ? databases/p5-MLDBM/README.html ? databases/p5-MLDBM-Sync/README.html ? databases/p5-Metadata/README.html ? databases/p5-Mysql/README.html ? databases/p5-Mysql-Diff/README.html ? databases/p5-Pg/README.html ? databases/p5-ResourcePool-Resource-DBI/README.html ? databases/p5-SQL-Abstract/README.html ? databases/p5-SQL-Statement/README.html ? databases/p5-Search-Namazu/README.html ? databases/p5-Tangram/README.html ? databases/p5-Text-Query-SQL/README.html ? databases/p5-Tie-DBI/README.html ? databases/p5-Time-Piece-MySQL/README.html ? databases/p5-hp200lx-db/README.html ? databases/p5-postgresql-plperl/README.html ? databases/p5-sqlrelay/README.html ? databases/pear-DB/README.html ? databases/pgaccess/README.html ? databases/php-sqlrelay/README.html ? databases/phpmyadmin/README.html ? databases/phppgadmin/README.html ? databases/postgresql-client/README.html ? databases/postgresql-contrib/README.html ? databases/postgresql-devel/README.html ? databases/postgresql-docs/README.html ? databases/postgresql-jdbc/README.html ? databases/postgresql-libpq++/README.html ? databases/postgresql-libpqxx/README.html ? databases/postgresql-odbc/README.html ? databases/postgresql-plruby/README.html ? databases/postgresql-pltcl/README.html ? databases/postgresql-tcltk/README.html ? databases/postgresql7/README.html ? databases/postgresql72/README.html ? databases/postgresql_autodoc/README.html ? databases/puredb/README.html ? databases/pxtools/README.html ? databases/py-MySQL/README.html ? databases/py-MySQLdb/README.html ? databases/py-PyGreSQL/README.html ? databases/py-PySQLite/README.html ? databases/py-SQLDict/README.html ? databases/py-bsddb/README.html ? databases/py-bsddb3/README.html ? databases/py-cdb/README.html ? databases/py-gdbm/README.html ? databases/py-oops/README.html ? databases/py-psycopg/README.html ? databases/py-pyPgSQL/README.html ? databases/py-sqlrelay/README.html ? databases/pydbdesigner/README.html ? databases/qt-mysql-plugin/README.html ? databases/qt-pgsql-plugin/README.html ? databases/rdb/README.html ? databases/rdfdb/README.html ? databases/ruby-bdb/README.html ? databases/ruby-bdb1/README.html ? databases/ruby-cdb/README.html ? databases/ruby-criteria/README.html ? databases/ruby-dbd_interbase/README.html ? databases/ruby-dbd_msql/README.html ? databases/ruby-dbd_mysql/README.html ? databases/ruby-dbd_odbc/README.html ? databases/ruby-dbd_pg/README.html ? databases/ruby-dbd_proxy/README.html ? databases/ruby-dbd_sqlite/README.html ? databases/ruby-dbd_sqlrelay/README.html ? databases/ruby-dbi/README.html ? databases/ruby-gdbm/README.html ? databases/ruby-interbase/README.html ? databases/ruby-msql/README.html ? databases/ruby-mysql/README.html ? databases/ruby-o_dbm/README.html ? databases/ruby-odbc/README.html ? databases/ruby-postgres/README.html ? databases/ruby-rdbc1/README.html ? databases/ruby-search-namazu/README.html ? databases/ruby-sqlite/README.html ? databases/ruby-sqlrelay/README.html ? databases/sqlite/README.html ? databases/sqlrelay/README.html ? databases/sqsh/README.html ? databases/sybase-ocsd/README.html ? databases/tcl-Mysql/README.html ? databases/tdb/README.html ? databases/tinycdb/README.html ? databases/tkgnats/README.html ? databases/tora/README.html ? databases/typhoon/README.html ? databases/unixODBC/README.html ? databases/useracc/README.html ? databases/usogres/README.html ? databases/wfb2sql/README.html ? databases/xmbase-grok/README.html ? databases/xmysql/README.html ? databases/xmysqladmin/README.html ? databases/zodb/README.html ? databases/zodb3/README.html ? databases/zpygresqlda/README.html ? deskutils/README.html ? deskutils/abacus/README.html ? deskutils/aspostit/README.html ? deskutils/babytrans/README.html ? deskutils/basket/README.html ? deskutils/bigyear/README.html ? deskutils/cal/README.html ? deskutils/cbb/README.html ? deskutils/checkrdf/README.html ? deskutils/dailystrips/README.html ? deskutils/gaddr/README.html ? deskutils/gcal/README.html ? deskutils/gdeskcal/README.html ? deskutils/gdeskcal-skins/README.html ? deskutils/gdesklets/README.html ? deskutils/gdesklets-recentlyused/README.html ? deskutils/gdesklets-starterbar/README.html ? deskutils/gemcal/README.html ? deskutils/genius/README.html ? deskutils/glabels/README.html ? deskutils/gmcal/README.html ? deskutils/gnofin/README.html ? deskutils/gnomeblog/README.html ? deskutils/gnomepim/README.html ? deskutils/gnomeutils2/README.html ? deskutils/gnotime/README.html ? deskutils/goats/README.html ? deskutils/gtimer/README.html ? deskutils/gtodo/README.html ? deskutils/gucharmap/README.html ? deskutils/gworkspace/README.html ? deskutils/ical/README.html ? deskutils/ithought/README.html ? deskutils/jlj/README.html ? deskutils/karamba/README.html ? deskutils/kbirthday/README.html ? deskutils/kdepim3/README.html ? deskutils/kluje/README.html ? deskutils/knowit/README.html ? deskutils/kronolith/README.html ? deskutils/krss/README.html ? deskutils/libmrproject/README.html ? deskutils/ljcharm/README.html ? deskutils/logjam/README.html ? deskutils/logjam2/README.html ? deskutils/loserjabber/README.html ? deskutils/mcal/README.html ? deskutils/mencal/README.html ? deskutils/mhc/README.html ? deskutils/mhc-emacs20/README.html ? deskutils/mhc-xemacs21-mule/README.html ? deskutils/mnemo/README.html ? deskutils/moneydance/README.html ? deskutils/mrproject/README.html ? deskutils/multi-backgrounds-daemon/README.html ? deskutils/nag/README.html ? deskutils/narval/README.html ? deskutils/notebook/README.html ? deskutils/offix-trash/README.html ? deskutils/phpgroupware/README.html ? deskutils/plan/README.html ? deskutils/preferences.app/README.html ? deskutils/rolo/README.html ? deskutils/rox-memo/README.html ? deskutils/rubrica/README.html ? deskutils/sliderule/README.html ? deskutils/teapot/README.html ? deskutils/tuxcards/README.html ? deskutils/wmpinboard/README.html ? deskutils/xcalendar/README.html ? deskutils/xchm/README.html ? deskutils/xfce4-notes/README.html ? deskutils/xinvest/README.html ? deskutils/xmaddressbook/README.html ? deskutils/xmdiary/README.html ? deskutils/xopps/README.html ? deskutils/xpad/README.html ? deskutils/xpostit/README.html ? deskutils/xpostitPlus/README.html ? deskutils/xrolo/README.html ? deskutils/xwrits/README.html ? deskutils/yank/README.html ? deskutils/zorro/README.html ? devel/README.html ? devel/ElectricFence/README.html ? devel/ORBacus/README.html ? devel/ORBit/README.html ? devel/ORBit2/README.html ? devel/SpecTcl/README.html ? devel/a2dev/README.html ? devel/aap/README.html ? devel/ac-archive/README.html ? devel/acpicatools/README.html ? devel/adabindx/README.html ? devel/adabooch/README.html ? devel/adabooch-doc-html/README.html ? devel/adacurses/README.html ? devel/adasdl/README.html ? devel/agenda-headers/README.html ? devel/agenda-libs/README.html ? devel/agenda-snow-libs/README.html ? devel/agenda-static-libs/README.html ? devel/ald/README.html ? devel/alf/README.html ? devel/allegro/README.html ? devel/amulet/README.html ? devel/anjuta/README.html ? devel/anjuta-devel/README.html ? devel/antlr/README.html ? devel/apache-ant/README.html ? devel/apr/README.html ? devel/arch/README.html ? devel/argouml/README.html ? devel/arm-aout-binutils/README.html ? devel/arm-elf-binutils/README.html ? devel/arm-elf-gcc295/README.html ? devel/arm-rtems-binutils/README.html ? devel/arm-rtems-g77/README.html ? devel/arm-rtems-gcc/README.html ? devel/arm-rtems-gcj/README.html ? devel/arm-rtems-gdb/README.html ? devel/arm-rtems-objc/README.html ? devel/as80/README.html ? devel/asis/README.html ? devel/asl/README.html ? devel/asmutils/README.html ? devel/astyle/README.html ? devel/atk/README.html ? devel/atlas/README.html ? devel/aunit/README.html ? devel/autobook/README.html ? devel/autoconf/README.html ? devel/autoconf213/README.html ? devel/autoconf257/README.html ? devel/autodia/README.html ? devel/autogen/README.html ? devel/automake/README.html ? devel/automake14/README.html ? devel/automake17/README.html ? devel/avarice/README.html ? devel/avltree/README.html ? devel/avr-binutils/README.html ? devel/avr-gcc/README.html ? devel/avr-gdb/README.html ? devel/avr-libc/README.html ? devel/avrdude/README.html ? devel/avrprog/README.html ? devel/bcc/README.html ? devel/bcpp/README.html ? devel/bglibs/README.html ? devel/bicyclerepair/README.html ? devel/bin86/README.html ? devel/bison/README.html ? devel/bison1875/README.html ? devel/bnf/README.html ? devel/boaconstructor/README.html ? devel/boehm-gc/README.html ? devel/bonobo/README.html ? devel/bonobo-conf/README.html ? devel/boost/README.html ? devel/bugbuddy2/README.html ? devel/bugzilla/README.html ? devel/buildtool/README.html ? devel/buildtool-doc/README.html ? devel/byaccj/README.html ? devel/c2lib/README.html ? devel/c2man/README.html ? devel/c4/README.html ? devel/c_c++_reference/README.html ? devel/c_parser/README.html ? devel/calibrator/README.html ? devel/camlp4/README.html ? devel/cbrowser/README.html ? devel/cc65/README.html ? devel/ccache/README.html ? devel/cccc/README.html ? devel/ccdoc/README.html ? devel/ccmalloc/README.html ? devel/cdecl/README.html ? devel/cdialog/README.html ? devel/cdk/README.html ? devel/cdoc/README.html ? devel/cflow/README.html ? devel/cflow2vcg/README.html ? devel/chora/README.html ? devel/cil/README.html ? devel/cl-asdf/README.html ? devel/cl-asdf-clisp/README.html ? devel/cl-asdf-cmucl/README.html ? devel/cl-asdf-sbcl/README.html ? devel/cl-port/README.html ? devel/cl-port-clisp/README.html ? devel/cl-port-cmucl/README.html ? devel/cl-port-sbcl/README.html ? devel/cl-split-sequence/README.html ? devel/cl-split-sequence-clisp/README.html ? devel/cl-split-sequence-cmucl/README.html ? devel/cl-split-sequence-sbcl/README.html ? devel/clanlib/README.html ? devel/clig/README.html ? devel/clint/README.html ? devel/clisp-hyperspec/README.html ? devel/clo++/README.html ? devel/cmake/README.html ? devel/codecrusader/README.html ? devel/commoncpp/README.html ? devel/cons/README.html ? devel/cons-test/README.html ? devel/cook/README.html ? devel/cppadvio/README.html ? devel/cppunit/README.html ? devel/cproto/README.html ? devel/crossgo32/README.html ? devel/crossgo32-djgpp2/README.html ? devel/crossgo32-djgpp2-pdcurses/README.html ? devel/cscope/README.html ? devel/cscout/README.html ? devel/cssc/README.html ? devel/ctags/README.html ? devel/cutils/README.html ? devel/cvs+ipv6/README.html ? devel/cvs2cl/README.html ? devel/cvs2html/README.html ? devel/cvs2p4/README.html ? devel/cvsadmin/README.html ? devel/cvsbook/README.html ? devel/cvsd/README.html ? devel/cvsdelta/README.html ? devel/cvsdiff2patch/README.html ? devel/cvsgraph/README.html ? devel/cvslines/README.html ? devel/cvsmapfs/README.html ? devel/cvsmonitor/README.html ? devel/cvspadm/README.html ? devel/cvsplot/README.html ? devel/cvsps/README.html ? devel/cvsstat/README.html ? devel/cvstrac/README.html ? devel/cvsutils/README.html ? devel/cvsweb/README.html ? devel/cvswrap/README.html ? devel/cweb/README.html ? devel/cxmon/README.html ? devel/cxref/README.html ? devel/darcs/README.html ? devel/darts/README.html ? devel/dcons/README.html ? devel/ddd/README.html ? devel/decompyle/README.html ? devel/devhelp/README.html ? devel/devtodo/README.html ? devel/dia2code/README.html ? devel/diffconvert/README.html ? devel/directfb/README.html ? devel/distcc/README.html ? devel/distel/README.html ? devel/dmake/README.html ? devel/dmalloc/README.html ? devel/doc++/README.html ? devel/doctorj/README.html ? devel/dotconf/README.html ? devel/doxygen/README.html ? devel/e4graph/README.html ? devel/ebnf2yacc/README.html ? devel/eboxy/README.html ? devel/ecb/README.html ? devel/ecb-emacs20/README.html ? devel/ecgi/README.html ? devel/eieio/README.html ? devel/eieio-emacs20/README.html ? devel/elf/README.html ? devel/elfio/README.html ? devel/elfsh/README.html ? devel/elftoaout/README.html ? devel/elib/README.html ? devel/elib-emacs19/README.html ? devel/elib-emacs20/README.html ? devel/entity/README.html ? devel/erlslang/README.html ? devel/error/README.html ? devel/esdl/README.html ? devel/f77flow/README.html ? devel/fam/README.html ? devel/fampp/README.html ? devel/fastcrc/README.html ? devel/fastdep/README.html ? devel/fc++/README.html ? devel/ffcall/README.html ? devel/fhist/README.html ? devel/fib/README.html ? devel/flick/README.html ? devel/florist/README.html ? devel/flyspray/README.html ? devel/fnccheck/README.html ? devel/fnorb/README.html ? devel/fortran-utils/README.html ? devel/fpp/README.html ? devel/freelibiberty/README.html ? devel/freescope/README.html ? devel/frink/README.html ? devel/ftnchek/README.html ? devel/funnelweb/README.html ? devel/g-wrap/README.html ? devel/g2c/README.html ? devel/gaa/README.html ? devel/gccxml/README.html ? devel/gconf/README.html ? devel/gconf2/README.html ? devel/gconfmm/README.html ? devel/gcvs/README.html ? devel/gdb52/README.html ? devel/gdb53/README.html ? devel/gdb53-act/README.html ? devel/gdbmods/README.html ? devel/gengameng/README.html ? devel/gengetopt/README.html ? devel/gettext/README.html ? devel/getxml/README.html ? devel/gindent/README.html ? devel/glade/README.html ? devel/glade2/README.html ? devel/glg/README.html ? devel/glib12/README.html ? devel/glib20/README.html ? devel/global/README.html ? devel/glui/README.html ? devel/gmake/README.html ? devel/gnome-vfsmm/README.html ? devel/gnomebuild/README.html ? devel/gnomecommon/README.html ? devel/gnomecrash/README.html ? devel/gnomevfs/README.html ? devel/gnomevfs-extras/README.html ? devel/gnomevfs2/README.html ? devel/gnustep/README.html ? devel/gnustep-make/README.html ? devel/gob2/README.html ? devel/gorm/README.html ? devel/gperf/README.html ? devel/gputils/README.html ? devel/gtgt/README.html ? devel/gtranslator/README.html ? devel/gvd/README.html ? devel/happydoc/README.html ? devel/hp48cc/README.html ? devel/hptools/README.html ? devel/hs-alex/README.html ? devel/hs-buddha/README.html ? devel/hs-c2hs/README.html ? devel/hs-crypto/README.html ? devel/hs-drift/README.html ? devel/hs-green-card/README.html ? devel/hs-haddock/README.html ? devel/hs-happy/README.html ? devel/hs-hat/README.html ? devel/hs-hdoc/README.html ? devel/hs-hmake/README.html ? devel/hs-hpl/README.html ? devel/hs-idoc/README.html ? devel/hs-popenhs/README.html ? devel/hs-tclhaskell-ghc/README.html ? devel/hs-uni/README.html ? devel/hypersrc/README.html ? devel/i386-rtems-binutils/README.html ? devel/i386-rtems-g77/README.html ? devel/i386-rtems-gcc/README.html ? devel/i386-rtems-gcj/README.html ? devel/i386-rtems-gdb/README.html ? devel/i386-rtems-objc/README.html ? devel/i960-rtems-binutils/README.html ? devel/i960-rtems-gcc/README.html ? devel/i960-rtems-gdb/README.html ? devel/icu/README.html ? devel/icu2/README.html ? devel/id-utils/README.html ? devel/idlefork/README.html ? devel/ifd-test/README.html ? devel/imake/README.html ? devel/imake-4/README.html ? devel/inilib/README.html ? devel/invitation_to_ruby/README.html ? devel/ixlib/README.html ? devel/jam/README.html ? devel/jrtplib/README.html ? devel/kaptain/README.html ? devel/kdbg/README.html ? devel/kdesdk3/README.html ? devel/kdevelop/README.html ? devel/kimwitu/README.html ? devel/kimwitu++/README.html ? devel/korelib/README.html ? devel/kprof/README.html ? devel/kyra/README.html ? devel/lbpp/README.html ? devel/lemon/README.html ? devel/leoarg/README.html ? devel/libIDL/README.html ? devel/libPropList/README.html ? devel/libU77/README.html ? devel/libafterbase/README.html ? devel/libargparse/README.html ? devel/libast/README.html ? devel/libavl/README.html ? devel/libbonobo/README.html ? devel/libbonobomm/README.html ? devel/libcache/README.html ? devel/libcapsinetwork/README.html ? devel/libchipcard/README.html ? devel/libchipcard-kde/README.html ? devel/libcii/README.html ? devel/libcoro/README.html ? devel/libdict/README.html ? devel/libdlmalloc/README.html ? devel/libds/README.html ? devel/libdsp/README.html ? devel/libedit/README.html ? devel/libelf/README.html ? devel/libevent/README.html ? devel/libexecinfo/README.html ? devel/libffi/README.html ? devel/libformat/README.html ? devel/libfs++/README.html ? devel/libg++/README.html ? devel/libgetline/README.html ? devel/libghthash/README.html ? devel/libgii/README.html ? devel/libglade/README.html ? devel/libglade2/README.html ? devel/libglademm/README.html ? devel/libgnugetopt/README.html ? devel/libgsf/README.html ? devel/libgtop/README.html ? devel/libgtop2/README.html ? devel/libhash/README.html ? devel/libhoard/README.html ? devel/libical/README.html ? devel/libidn/README.html ? devel/libltdl/README.html ? devel/libmba/README.html ? devel/libmcve/README.html ? devel/libmtrie/README.html ? devel/libol/README.html ? devel/libole2/README.html ? devel/liboop/README.html ? devel/libpci/README.html ? devel/libpdel/README.html ? devel/libredblack/README.html ? devel/libshbuf/README.html ? devel/libshhmsg/README.html ? devel/libshhopt/README.html ? devel/libsigc++/README.html ? devel/libsigc++12/README.html ? devel/libsigcx/README.html ? devel/libslang/README.html ? devel/libsoup/README.html ? devel/libstatgrab/README.html ? devel/libstocks/README.html ? devel/libstrfunc/README.html ? devel/libstroke/README.html ? devel/libtai/README.html ? devel/libtar/README.html ? devel/libtecla/README.html ? devel/libticalcs/README.html ? devel/libtifiles/README.html ? devel/libtool13/README.html ? devel/libtool14/README.html ? devel/libtool15/README.html ? devel/libukcprog/README.html ? devel/libunicode/README.html ? devel/libusb/README.html ? devel/libuta/README.html ? devel/libvanessa_adt/README.html ? devel/libvanessa_logger/README.html ? devel/libvanessa_socket/README.html ? devel/libvc/README.html ? devel/libxalloc/README.html ? devel/libzt/README.html ? devel/libzvbi/README.html ? devel/lightning/README.html ? devel/lincvs/README.html ? devel/linguist/README.html ? devel/linux-libglade/README.html ? devel/linux-p4v/README.html ? devel/linux-runrev/README.html ? devel/linux-sdl12/README.html ? devel/linux-understand_ada/README.html ? devel/linux-understand_c/README.html ? devel/linux-understand_java/README.html ? devel/linux_devtools/README.html ? devel/linux_devtools-6/README.html ? devel/linux_devtools-7/README.html ? devel/linux_kdump/README.html ? devel/linuxthreads/README.html ? devel/log4c/README.html ? devel/log4cpp/README.html ? devel/lwp/README.html ? devel/m4/README.html ? devel/m6811-binutils/README.html ? devel/m6811-gcc/README.html ? devel/m68k-rtems-binutils/README.html ? devel/m68k-rtems-g77/README.html ? devel/m68k-rtems-gcc/README.html ? devel/m68k-rtems-gcj/README.html ? devel/m68k-rtems-gdb/README.html ? devel/m68k-rtems-objc/README.html ? devel/make++/README.html ? devel/makedepend/README.html ? devel/makeplus/README.html ? devel/memcheck/README.html ? devel/meta-cvs/README.html ? devel/mico/README.html ? devel/mime/README.html ? devel/mingw/README.html ? devel/mingw-bin-msvcrt/README.html ? devel/mingw-binutils/README.html ? devel/mingw-gcc/README.html ? devel/mingw-opengl-headers/README.html ? devel/mingw32-bin-msvcrt/README.html ? devel/mingw32-binutils/README.html ? devel/mingw32-gcc/README.html ? devel/mips-rtems-binutils/README.html ? devel/mips-rtems-g77/README.html ? devel/mips-rtems-gcc/README.html ? devel/mips-rtems-gcj/README.html ? devel/mips-rtems-gdb/README.html ? devel/mips-rtems-objc/README.html ? devel/mipsel-linux-binutils/README.html ? devel/mipsel-linux-gcc/README.html ? devel/mipsel-linux-kernel-headers/README.html ? devel/mk/README.html ? devel/mkcmd/README.html ? devel/mkmf/README.html ? devel/mm/README.html ? devel/mob/README.html ? devel/moonshine/README.html ? devel/motor/README.html ? devel/mpatrol/README.html ? devel/mprof/README.html ? devel/msp430-binutils/README.html ? devel/msp430-gcc/README.html ? devel/msp430-gdb/README.html ? devel/msp430-libc/README.html ? devel/msrc0/README.html ? devel/nana/README.html ? devel/nasm/README.html ? devel/ncurses/README.html ? devel/newfile/README.html ? devel/newt/README.html ? devel/ngpt/README.html ? devel/noweb/README.html ? devel/nspr/README.html ? devel/oaf/README.html ? devel/ocaml-classes/README.html ? devel/ocaml-findlib/README.html ? devel/ocaml-pcre/README.html ? devel/ocamlweb/README.html ? devel/omniORB/README.html ? devel/oniguruma/README.html ? devel/openzz/README.html ? devel/orbitcpp/README.html ? devel/ossp-al/README.html ? devel/ossp-cfg/README.html ? devel/ossp-ex/README.html ? devel/ossp-l2/README.html ? devel/ossp-val/README.html ? devel/ossp-var/README.html ? devel/p4.el/README.html ? devel/p4api/README.html ? devel/p4db/README.html ? devel/p4delta/README.html ? devel/p5-Agent/README.html ? devel/p5-Algorithm-Diff/README.html ? devel/p5-Algorithm-MDiff/README.html ? devel/p5-Algorithm-MarkovChain/README.html ? devel/p5-Algorithm-Numerical-Shuffle/README.html ? devel/p5-Algorithm-Permute/README.html ? devel/p5-Alias/README.html ? devel/p5-App-Info/README.html ? devel/p5-AppConfig/README.html ? devel/p5-AppConfig-Std/README.html ? devel/p5-Array-Window/README.html ? devel/p5-AtExit/README.html ? devel/p5-Attribute-Handlers/README.html ? devel/p5-B-Deobfuscate/README.html ? devel/p5-B-Graph/README.html ? devel/p5-B-Keywords/README.html ? devel/p5-BSD-Resource/README.html ? devel/p5-BSD-stat/README.html ? devel/p5-C-Scan/README.html ? devel/p5-Cache-Cache/README.html ? devel/p5-Cache-Mmap/README.html ? devel/p5-Carp-Assert/README.html ? devel/p5-Carp-Datum/README.html ? devel/p5-Cdk/README.html ? devel/p5-Class-Accessor/README.html ? devel/p5-Class-ArrayObjects/README.html ? devel/p5-Class-Autouse/README.html ? devel/p5-Class-BlackHole/README.html ? devel/p5-Class-Container/README.html ? devel/p5-Class-Contract/README.html ? devel/p5-Class-Data-Inheritable/README.html ? devel/p5-Class-Date/README.html ? devel/p5-Class-Default/README.html ? devel/p5-Class-Delegation/README.html ? devel/p5-Class-Factory/README.html ? devel/p5-Class-Factory-Util/README.html ? devel/p5-Class-Fields/README.html ? devel/p5-Class-Generate/README.html ? devel/p5-Class-Hook/README.html ? devel/p5-Class-ISA/README.html ? devel/p5-Class-Inner/README.html ? devel/p5-Class-Inspector/README.html ? devel/p5-Class-Loader/README.html ? devel/p5-Class-MakeMethods/README.html ? devel/p5-Class-MethodMaker/README.html ? devel/p5-Class-ObjectTemplate/README.html ? devel/p5-Class-ObjectTemplate-DB/README.html ? devel/p5-Class-ReturnValue/README.html ? devel/p5-Class-Singleton/README.html ? devel/p5-Class-Tangram/README.html ? devel/p5-Class-Tom/README.html ? devel/p5-Class-Trigger/README.html ? devel/p5-Class-WhiteHole/README.html ? devel/p5-Clone/README.html ? devel/p5-Config-Auto/README.html ? devel/p5-Config-General/README.html ? devel/p5-Config-Ini/README.html ? devel/p5-Config-IniFiles/README.html ? devel/p5-Config-Setting/README.html ? devel/p5-Config-Simple/README.html ? devel/p5-Config-Tiny/README.html ? devel/p5-ConfigReader/README.html ? devel/p5-Coro/README.html ? devel/p5-Curses/README.html ? devel/p5-Curses-Application/README.html ? devel/p5-Curses-Forms/README.html ? devel/p5-Curses-Widgets/README.html ? devel/p5-DB_File-Lock/README.html ? devel/p5-Data-Compare/README.html ? devel/p5-Data-DumpXML/README.html ? devel/p5-Data-Flow/README.html ? devel/p5-Data-HexDump/README.html ? devel/p5-Data-Properties/README.html ? devel/p5-Data-Serializer/README.html ? devel/p5-Data-ShowTable/README.html ? devel/p5-Data-TemporaryBag/README.html ? devel/p5-Data-UUID/README.html ? devel/p5-Date-Calc/README.html ? devel/p5-Date-DayOfWeek/README.html ? devel/p5-Date-ICal/README.html ? devel/p5-Date-ISO/README.html ? devel/p5-Date-Leapyear/README.html ? devel/p5-Date-Manip/README.html ? devel/p5-Date-Pcalc/README.html ? devel/p5-Date-Roman/README.html ? devel/p5-Date-Simple/README.html ? devel/p5-DateConvert/README.html ? devel/p5-DateTime/README.html ? devel/p5-DateTime-Calendar-Christian/README.html ? devel/p5-DateTime-Calendar-FrenchRevolutionary/README.html ? devel/p5-DateTime-Calendar-Hebrew/README.html ? devel/p5-DateTime-Calendar-Julian/README.html ? devel/p5-DateTime-Calendar-Mayan/README.html ? devel/p5-DateTime-Calendar-Pataphysical/README.html ? devel/p5-DateTime-Event-Cron/README.html ? devel/p5-DateTime-Event-Easter/README.html ? devel/p5-DateTime-Event-ICal/README.html ? devel/p5-DateTime-Event-NameDay/README.html ? devel/p5-DateTime-Event-Recurrence/README.html ? devel/p5-DateTime-Event-Sunrise/README.html ? devel/p5-DateTime-Fiscal-Year/README.html ? devel/p5-DateTime-Format-Baby/README.html ? devel/p5-DateTime-Format-Bork/README.html ? devel/p5-DateTime-Format-Builder/README.html ? devel/p5-DateTime-Format-DBI/README.html ? devel/p5-DateTime-Format-DateManip/README.html ? devel/p5-DateTime-Format-Epoch/README.html ? devel/p5-DateTime-Format-Excel/README.html ? devel/p5-DateTime-Format-HTTP/README.html ? devel/p5-DateTime-Format-IBeat/README.html ? devel/p5-DateTime-Format-ICal/README.html ? devel/p5-DateTime-Format-ISO8601/README.html ? devel/p5-DateTime-Format-Mail/README.html ? devel/p5-DateTime-Format-MySQL/README.html ? devel/p5-DateTime-Format-Pg/README.html ? devel/p5-DateTime-Format-Roman/README.html ? devel/p5-DateTime-Format-Strptime/README.html ? devel/p5-DateTime-Format-W3CDTF/README.html ? devel/p5-DateTime-HiRes/README.html ? devel/p5-DateTime-Locale/README.html ? devel/p5-DateTime-Precise/README.html ? devel/p5-DateTime-Set/README.html ? devel/p5-DateTime-TimeZone/README.html ? devel/p5-DateTime-TimeZone-Alias/README.html ? devel/p5-Devel-Constants/README.html ? devel/p5-Devel-Cover/README.html ? devel/p5-Devel-DProf/README.html ? devel/p5-Devel-Leak/README.html ? devel/p5-Devel-Modlist/README.html ? devel/p5-Devel-ObjectTracker/README.html ? devel/p5-Devel-Peek/README.html ? devel/p5-Devel-Profile/README.html ? devel/p5-Devel-Profiler/README.html ? devel/p5-Devel-StackTrace/README.html ? devel/p5-Devel-Symdump/README.html ? devel/p5-Devel-ptkdb/README.html ? devel/p5-Dialog/README.html ? devel/p5-Encode-compat/README.html ? devel/p5-Errno/README.html ? devel/p5-Event/README.html ? devel/p5-Exception-Class/README.html ? devel/p5-Exporter-Lite/README.html ? devel/p5-ExtUtils-ParseXS/README.html ? devel/p5-ExtUtils-XSBuilder/README.html ? devel/p5-File-BasicFlock/README.html ? devel/p5-File-Binary/README.html ? devel/p5-File-Cache/README.html ? devel/p5-File-DirSync/README.html ? devel/p5-File-FTS/README.html ? devel/p5-File-Find-Rule/README.html ? devel/p5-File-Flat/README.html ? devel/p5-File-Flock/README.html ? devel/p5-File-Lock/README.html ? devel/p5-File-MMagic/README.html ? devel/p5-File-NCopy/README.html ? devel/p5-File-NFSLock/README.html ? devel/p5-File-ReadBackwards/README.html ? devel/p5-File-Remove/README.html ? devel/p5-File-Slurp/README.html ? devel/p5-File-Spec/README.html ? devel/p5-File-Sync/README.html ? devel/p5-File-Tail/README.html ? devel/p5-File-Temp/README.html ? devel/p5-Filter/README.html ? devel/p5-Filter-CBC/README.html ? devel/p5-FreezeThaw/README.html ? devel/p5-GTop/README.html ? devel/p5-Getargs-Long/README.html ? devel/p5-Getopt-ArgvFile/README.html ? devel/p5-Getopt-Declare/README.html ? devel/p5-Getopt-Long/README.html ? devel/p5-Getopt-Mixed/README.html ? devel/p5-Glade-Perl/README.html ? devel/p5-Heap/README.html ? devel/p5-IO/README.html ? devel/p5-IO-Multiplex/README.html ? devel/p5-IO-String/README.html ? devel/p5-IO-Stty/README.html ? devel/p5-IO-Tty/README.html ? devel/p5-IO-stringy/README.html ? devel/p5-IPC-Cache/README.html ? devel/p5-IPC-Locker/README.html ? devel/p5-IPC-MM/README.html ? devel/p5-IPC-Run/README.html ? devel/p5-IPC-ShareLite/README.html ? devel/p5-IPC-Shareable/README.html ? devel/p5-IPC-SharedCache/README.html ? devel/p5-Include/README.html ? devel/p5-Inline/README.html ? devel/p5-Inline-ASM/README.html ? devel/p5-Inline-CPP/README.html ? devel/p5-Inline-Filters/README.html ? devel/p5-Inline-Java/README.html ? devel/p5-Inline-Tcl/README.html ? devel/p5-Ioctl/README.html ? devel/p5-Locale-Maketext/README.html ? devel/p5-Locale-Maketext-Fuzzy/README.html ? devel/p5-Locale-Maketext-Gettext/README.html ? devel/p5-Locale-Maketext-Lexicon/README.html ? devel/p5-Locale-Maketext-Simple/README.html ? devel/p5-Locale-PGetText/README.html ? devel/p5-Locale-gettext/README.html ? devel/p5-LockFile-Simple/README.html ? devel/p5-Log-Agent/README.html ? devel/p5-Log-Agent-Logger/README.html ? devel/p5-Log-Dispatch/README.html ? devel/p5-Log-Dispatch-Config/README.html ? devel/p5-Log-Dispatch-FileRotate/README.html ? devel/p5-Log-Log4perl/README.html ? devel/p5-Log-TraceMessages/README.html ? devel/p5-Mac-FileSpec-Unixish/README.html ? devel/p5-Make/README.html ? devel/p5-Memoize/README.html ? devel/p5-Module-Build/README.html ? devel/p5-Module-CoreList/README.html ? devel/p5-Module-Info/README.html ? devel/p5-Module-Reload/README.html ? devel/p5-Module-ScanDeps/README.html ? devel/p5-NEXT/README.html ? devel/p5-OLE-Storage_Lite/README.html ? devel/p5-ORBit/README.html ? devel/p5-Object-MultiType/README.html ? devel/p5-Object-Realize-Later/README.html ? devel/p5-P4/README.html ? devel/p5-P4-Client/README.html ? devel/p5-PAR/README.html ? devel/p5-PAR-Dist/README.html ? devel/p5-PCSC-Card/README.html ? devel/p5-POE/README.html ? devel/p5-POE-Component-Client-HTTP/README.html ? devel/p5-POE-Component-Client-POP3/README.html ? devel/p5-POE-Component-Client-Ping/README.html ? devel/p5-POE-Component-Client-UserAgent/README.html ? devel/p5-POE-Component-DBIAgent/README.html ? devel/p5-POE-Component-DirWatch/README.html ? devel/p5-POE-Component-IKC/README.html ? devel/p5-POE-Component-IKC-ReallySimple/README.html ? devel/p5-POE-Component-JobQueue/README.html ? devel/p5-POE-Component-Logger/README.html ? devel/p5-POE-Component-Pcap/README.html ? devel/p5-POE-Component-RSS/README.html ? devel/p5-POE-Session-Cascading/README.html ? devel/p5-POE-Session-MultiDispatch/README.html ? devel/p5-PPerl/README.html ? devel/p5-PV/README.html ? devel/p5-Parallel-ForkManager/README.html ? devel/p5-Params-Validate/README.html ? devel/p5-Parse-PerlConfig/README.html ? devel/p5-Parse-RecDescent/README.html ? devel/p5-Parse-Yapp/README.html ? devel/p5-Penguin/README.html ? devel/p5-Penguin-Easy/README.html ? devel/p5-PerlMenu/README.html ? devel/p5-Pod-Coverage/README.html ? devel/p5-Proc-Background/README.html ? devel/p5-Proc-Daemon/README.html ? devel/p5-Proc-PIDFile/README.html ? devel/p5-Proc-ProcessTable/README.html ? devel/p5-Proc-Reliable/README.html ? devel/p5-Proc-Simple/README.html ? devel/p5-Rcs/README.html ? devel/p5-Rcs-Agent/README.html ? devel/p5-ReadLine-Gnu/README.html ? devel/p5-ReadLine-Perl/README.html ? devel/p5-Religion/README.html ? devel/p5-ResourcePool/README.html ? devel/p5-Resources/README.html ? devel/p5-SDL/README.html ? devel/p5-SPOPS/README.html ? devel/p5-Search-Binary/README.html ? devel/p5-Server-FastPL/README.html ? devel/p5-Set-Crontab/README.html ? devel/p5-Set-Infinite/README.html ? devel/p5-Set-NestedGroups/README.html ? devel/p5-Set-Object/README.html ? devel/p5-Set-Scalar/README.html ? devel/p5-Shape/README.html ? devel/p5-Sort-ArrayOfArrays/README.html ? devel/p5-Sort-Versions/README.html ? devel/p5-Storable/README.html ? devel/p5-String-Approx/README.html ? devel/p5-String-CRC32/README.html ? devel/p5-String-Checker/README.html ? devel/p5-String-LRC/README.html ? devel/p5-String-Parity/README.html ? devel/p5-String-Random/README.html ? devel/p5-String-RexxParse/README.html ? devel/p5-String-Similarity/README.html ? devel/p5-Sub-Uplevel/README.html ? devel/p5-Sys-Mmap/README.html ? devel/p5-System2/README.html ? devel/p5-Term-ANSIColor/README.html ? devel/p5-Term-ANSIScreen/README.html ? devel/p5-Term-ProgressBar/README.html ? devel/p5-Term-Prompt/README.html ? devel/p5-Term-Query/README.html ? devel/p5-Term-ReadKey/README.html ? devel/p5-Term-Screen/README.html ? devel/p5-Term-Size/README.html ? devel/p5-Test-Builder-Tester/README.html ? devel/p5-Test-Class/README.html ? devel/p5-Test-Differences/README.html ? devel/p5-Test-Exception/README.html ? devel/p5-Test-Harness/README.html ? devel/p5-Test-Inline/README.html ? devel/p5-Test-Manifest/README.html ? devel/p5-Test-MockObject/README.html ? devel/p5-Test-Pod/README.html ? devel/p5-Test-Simple/README.html ? devel/p5-Test-Unit/README.html ? devel/p5-Tie-Cache/README.html ? devel/p5-Tie-DB_FileLock/README.html ? devel/p5-Tie-File/README.html ? devel/p5-Tie-IxHash/README.html ? devel/p5-Time-Duration/README.html ? devel/p5-Time-HiRes/README.html ? devel/p5-Time-Local/README.html ? devel/p5-Time-Object/README.html ? devel/p5-Time-Period/README.html ? devel/p5-Time-Piece/README.html ? devel/p5-Time-modules/README.html ? devel/p5-TimeDate/README.html ? devel/p5-TraceFuncs/README.html ? devel/p5-Tree-DAG_Node/README.html ? devel/p5-UNIVERSAL-exports/README.html ? devel/p5-UNIVERSAL-moniker/README.html ? devel/p5-VCS/README.html ? devel/p5-VCS-CVS/README.html ? devel/p5-Want/README.html ? devel/p5-base/README.html ? devel/p5-enum/README.html ? devel/p5-mixin/README.html ? devel/p5-version/README.html ? devel/p65/README.html ? devel/parrot/README.html ? devel/patch/README.html ? devel/pccts/README.html ? devel/pcl-cvs-emacs/README.html ? devel/pcl-cvs-emacs20/README.html ? devel/pcre/README.html ? devel/pcre++/README.html ? devel/pcsc-lite/README.html ? devel/pear/README.html ? devel/pear-Config/README.html ? devel/pear-Console_Getopt/README.html ? devel/pear-Console_Table/README.html ? devel/pear-Date/README.html ? devel/pear-HTML_Common/README.html ? devel/pear-HTML_Select_Common/README.html ? devel/pear-HTML_Template_IT/README.html ? devel/pear-HTML_Template_PHPLIB/README.html ? devel/pear-I18N/README.html ? devel/pear-PEAR/README.html ? devel/pear-XML_Parser/README.html ? devel/pear-XML_RSS/README.html ? devel/pear-XML_Serializer/README.html ? devel/pear-XML_Tree/README.html ? devel/pear-XML_Util/README.html ? devel/pear-XML_XPath/README.html ? devel/pear-apd/README.html ? devel/pedisassem/README.html ? devel/perforce/README.html ? devel/perltidy/README.html ? devel/pharmacy/README.html ? devel/php-dbg/README.html ? devel/php-xdebug/README.html ? devel/physfs/README.html ? devel/picasm/README.html ? devel/picp/README.html ? devel/picprog/README.html ? devel/pinstall/README.html ? devel/pkgconfig/README.html ? devel/ply/README.html ? devel/pmake/README.html ? devel/pmk/README.html ? devel/popt/README.html ? devel/portcheckout/README.html ? devel/portlint/README.html ? devel/porttools/README.html ? devel/poslib/README.html ? devel/powerpc-rtems-binutils/README.html ? devel/powerpc-rtems-g77/README.html ? devel/powerpc-rtems-gcc/README.html ? devel/powerpc-rtems-gcj/README.html ? devel/powerpc-rtems-gdb/README.html ? devel/powerpc-rtems-objc/README.html ? devel/ppl/README.html ? devel/prcs/README.html ? devel/privman/README.html ? devel/projectcenter.app/README.html ? devel/prototype/README.html ? devel/pth/README.html ? devel/ptypes/README.html ? devel/publib/README.html ? devel/pwlib/README.html ? devel/py-ansistyle/README.html ? devel/py-ciphon/README.html ? devel/py-clientcookie/README.html ? devel/py-coro/README.html ? devel/py-ctypes/README.html ? devel/py-cxx/README.html ? devel/py-dialog/README.html ? devel/py-fam/README.html ? devel/py-fileutils/README.html ? devel/py-fortran/README.html ? devel/py-freebsd/README.html ? devel/py-game/README.html ? devel/py-grouch/README.html ? devel/py-istring/README.html ? devel/py-kjbuckets/README.html ? devel/py-kqueue/README.html ? devel/py-log4py/README.html ? devel/py-logging/README.html ? devel/py-mx-experimental/README.html ? devel/py-ncurses/README.html ? devel/py-omniorb/README.html ? devel/py-optik/README.html ? devel/py-orbit/README.html ? devel/py-orbit2/README.html ? devel/py-period/README.html ? devel/py-plex/README.html ? devel/py-pqueue/README.html ? devel/py-psyco/README.html ? devel/py-px/README.html ? devel/py-repl/README.html ? devel/py-reverse/README.html ? devel/py-ro/README.html ? devel/py-roxlib/README.html ? devel/py-sip/README.html ? devel/py-spark/README.html ? devel/py-twisted/README.html ? devel/py-ui/README.html ? devel/py-unit/README.html ? devel/py-vmaps/README.html ? devel/py-wsdllib/README.html ? devel/py-xoltar-toolkit/README.html ? devel/py-yaml/README.html ? devel/py_otp_interface/README.html ? devel/pychecker/README.html ? devel/pyrex/README.html ? devel/qextmdi/README.html ? devel/qmake/README.html ? devel/qssl/README.html ? devel/qt-designer/README.html ? devel/qtez/README.html ? devel/qtk/README.html ? devel/ragel/README.html ? devel/re2c/README.html ? devel/regexx/README.html ? devel/regexxer/README.html ? devel/replay/README.html ? devel/rhtvision/README.html ? devel/rinfo/README.html ? devel/rlwrap/README.html ? devel/robodoc/README.html ? devel/rpc2/README.html ? devel/rtplib/README.html ? devel/ruby-amstd/README.html ? devel/ruby-aspectr/README.html ? devel/ruby-avl/README.html ? devel/ruby-bsearch/README.html ? devel/ruby-byaccr/README.html ? devel/ruby-cache/README.html ? devel/ruby-calendar/README.html ? devel/ruby-cvs/README.html ? devel/ruby-date2/README.html ? devel/ruby-dialogs/README.html ? devel/ruby-fam/README.html ? devel/ruby-filelock/README.html ? devel/ruby-filemagic/README.html ? devel/ruby-flex_rb/README.html ? devel/ruby-gconf/README.html ? devel/ruby-gconf2/README.html ? devel/ruby-gemfinder/README.html ? devel/ruby-gettext/README.html ? devel/ruby-glib2/README.html ? devel/ruby-gnomevfs/README.html ? devel/ruby-gnustep/README.html ? devel/ruby-inline/README.html ? devel/ruby-intl/README.html ? devel/ruby-jttui/README.html ? devel/ruby-libglade/README.html ? devel/ruby-libglade2/README.html ? devel/ruby-libgtop/README.html ? devel/ruby-locale/README.html ? devel/ruby-metaruby/README.html ? devel/ruby-mmap/README.html ? devel/ruby-mock/README.html ? devel/ruby-ncurses/README.html ? devel/ruby-nodedump/README.html ? devel/ruby-p4/README.html ? devel/ruby-pcsc-lite/README.html ? devel/ruby-poll/README.html ? devel/ruby-property/README.html ? devel/ruby-racc/README.html ? devel/ruby-rbbr/README.html ? devel/ruby-rbison/README.html ? devel/ruby-rbprof/README.html ? devel/ruby-rbtree/README.html ? devel/ruby-robjectteam/README.html ? devel/ruby-rreadline/README.html ? devel/ruby-rudl/README.html ? devel/ruby-sdl/README.html ? devel/ruby-setup.rb/README.html ? devel/ruby-slang/README.html ? devel/ruby-strongtyping/README.html ? devel/ruby-sysvipc/README.html ? devel/ruby-textbuf/README.html ? devel/ruby-tzfile/README.html ? devel/ruby-yaml/README.html ? devel/rudiments/README.html ? devel/rvi/README.html ? devel/rvm/README.html ? devel/scandoc/README.html ? devel/scons/README.html ? devel/sdl12/README.html ? devel/sdl_ldbad/README.html ? devel/sdlmm/README.html ? devel/sdts++/README.html ? devel/sedsed/README.html ? devel/semantic/README.html ? devel/semantic-emacs20/README.html ? devel/sfio/README.html ? devel/sgb/README.html ? devel/sgl/README.html ? devel/sh-rtems-binutils/README.html ? devel/sh-rtems-g77/README.html ? devel/sh-rtems-gcc/README.html ? devel/sh-rtems-gcj/README.html ? devel/sh-rtems-gdb/README.html ? devel/sh-rtems-objc/README.html ? devel/shapelib/README.html ? devel/shmap/README.html ? devel/showgrammar/README.html ? devel/shtool/README.html ? devel/sigslot/README.html ? devel/simgear/README.html ? devel/simulavr/README.html ? devel/sip/README.html ? devel/skalibs/README.html ? devel/soup/README.html ? devel/sourcenav/README.html ? devel/sparc-rtems-binutils/README.html ? devel/sparc-rtems-g77/README.html ? devel/sparc-rtems-gcc/README.html ? devel/sparc-rtems-gcj/README.html ? devel/sparc-rtems-gdb/README.html ? devel/sparc-rtems-objc/README.html ? devel/spin/README.html ? devel/spirit/README.html ? devel/splint/README.html ? devel/st/README.html ? devel/stlport/README.html ? devel/stlport-icc/README.html ? devel/str/README.html ? devel/strace/README.html ? devel/styx/README.html ? devel/subversion/README.html ? devel/swarm/README.html ? devel/swig11/README.html ? devel/swig13/README.html ? devel/swig13-doc/README.html ? devel/swigruby/README.html ? devel/syntax_tools/README.html ? devel/sysconftool/README.html ? devel/t1lib/README.html ? devel/tcl-memchan/README.html ? devel/tcl-neo/README.html ? devel/tcl-trf/README.html ? devel/tclcheck/README.html ? devel/tclcl/README.html ? devel/tclgetopts/README.html ? devel/tcllib/README.html ? devel/tclreadline/README.html ? devel/tcltls/README.html ? devel/tclxml/README.html ? devel/tdl/README.html ? devel/templ/README.html ? devel/terminality/README.html ? devel/tide/README.html ? devel/tinyq/README.html ? devel/titano/README.html ? devel/tkcon/README.html ? devel/tkcvs/README.html ? devel/tkinspect/README.html ? devel/tkp4/README.html ? devel/tkref/README.html ? devel/tla/README.html ? devel/tmake/README.html ? devel/tnt/README.html ? devel/towitoko/README.html ? devel/tpasm/README.html ? devel/tpg/README.html ? devel/trio/README.html ? devel/tvision/README.html ? devel/uclmmbase/README.html ? devel/ucpp/README.html ? devel/uisp/README.html ? devel/umbrello/README.html ? devel/upnp/README.html ? devel/ups-debug/README.html ? devel/varconf/README.html ? devel/vb2c/README.html ? devel/veepee/README.html ? devel/viewcvs/README.html ? devel/vtcl/README.html ? devel/whups/README.html ? devel/wizard/README.html ? devel/wxGlade/README.html ? devel/xmake/README.html ? devel/xparam/README.html ? devel/xtl/README.html ? devel/xwpe/README.html ? devel/xxgdb/README.html ? devel/xxl/README.html ? devel/yacl/README.html ? devel/yasm/README.html ? devel/z80-asm/README.html ? devel/zthread/README.html ? devel/zziplib/README.html ? dns/README.html ? dns/adns/README.html ? dns/ares/README.html ? dns/bind8/README.html ? dns/bind84/README.html ? dns/bind9/README.html ? dns/bind9-dlz/Makefile.inc ? dns/bind9-dlz/README.html ? dns/bind9-sdb-mysql/README.html ? dns/ddclient/README.html ? dns/ddup/README.html ? dns/dhid/README.html ? dns/dhisd/README.html ? dns/djbdns/README.html ? dns/dlint/README.html ? dns/dnrd/README.html ? dns/dns_balance/README.html ? dns/dnsmasq/README.html ? dns/dnssecwalker/README.html ? dns/dnstop/README.html ? dns/dnstracer/README.html ? dns/dnsutl/README.html ? dns/dnswalk/README.html ? dns/domtools/README.html ? dns/ez-ipupdate/README.html ? dns/firedns/README.html ? dns/ghtool/README.html ? dns/h2n/README.html ? dns/hesiod/README.html ? dns/host/README.html ? dns/idnkit/README.html ? dns/ipcheck/README.html ? dns/libdjbdns/README.html ? dns/maradns/README.html ? dns/mdnsd/README.html ? dns/mydns/README.html ? dns/noip/README.html ? dns/nsd/README.html ? dns/nslint/README.html ? dns/nsping/README.html ? dns/odsclient/README.html ? dns/p5-BIND-Conf_Parser/README.html ? dns/p5-DNS-Config/README.html ? dns/p5-DNS-Zone/README.html ? dns/p5-Net-DNS/README.html ? dns/p5-Net-DNS-SEC/README.html ? dns/p5-Net-DNS-ZoneFile/README.html ? dns/p5-Net-Nslookup/README.html ? dns/p5-POE-Component-Client-DNS/README.html ? dns/p5-Tie-DNS/README.html ? dns/pdnsd/README.html ? dns/posadis/README.html ? dns/powerdns/Makefile.inc ? dns/powerdns/README.html ? dns/py-adns/README.html ? dns/py-dns/README.html ? dns/rbldnsd/README.html ? dns/sleuth/README.html ? dns/staticcharge/README.html ? dns/totd/README.html ? dns/walker/README.html ? dns/weedns_sc/README.html ? dns/zonecheck/README.html ? editors/README.html ? editors/AbiWord/README.html ? editors/AbiWord2/README.html ? editors/MathPlanner/README.html ? editors/aee/README.html ? editors/apel/README.html ? editors/apel-emacs19/README.html ? editors/apel-emacs20/README.html ? editors/apel-mule/README.html ? editors/apel-xemacs21-mule/README.html ? editors/asedit/README.html ? editors/axe/README.html ? editors/beav/README.html ? editors/beaver/README.html ? editors/bed/README.html ? editors/biew/README.html ? editors/bitedit/README.html ? editors/bitmap/README.html ? editors/bitmap-emacs20/README.html ? editors/bitmap-mule/README.html ? editors/boiling-egg/README.html ? editors/bpatch/README.html ? editors/bvi/README.html ? editors/chexedit/README.html ? editors/color-mate/README.html ? editors/conglomerate/README.html ? editors/cooledit/README.html ? editors/custom-emacs/README.html ? editors/custom-mule/README.html ? editors/dedit/README.html ? editors/dte/README.html ? editors/e3/README.html ? editors/e93/README.html ? editors/edith/README.html ? editors/elvis/README.html ? editors/em/README.html ? editors/emacs/README.html ? editors/emacs20/README.html ? editors/emacs20-dl/README.html ? editors/emacs20-mule-devel/README.html ? editors/emacs21/README.html ? editors/eshell-emacs20/README.html ? editors/fb/README.html ? editors/flim/README.html ? editors/flim-emacs20/README.html ? editors/flim-xemacs21-mule/README.html ? editors/flim113/README.html ? editors/flim113-emacs19/README.html ? editors/flim113-emacs20/README.html ? editors/flim113-mule/README.html ? editors/flim113-xemacs21-mule/README.html ? editors/fte/README.html ? editors/gate/README.html ? editors/gedit-plugins/README.html ? editors/gedit2/README.html ? editors/ghex/README.html ? editors/ghex2/README.html ? editors/glimmer/README.html ? editors/gmanedit/README.html ? editors/gnotepad+/README.html ? editors/gnuserv/README.html ? editors/gnuserv-emacs20/README.html ? editors/gxedit/README.html ? editors/hexcurse/README.html ? editors/hexedit/README.html ? editors/hexpert/README.html ? editors/hnb/README.html ? editors/hte/README.html ? editors/iiimecf/README.html ? editors/impress/README.html ? editors/jed/README.html ? editors/jedit/README.html ? editors/jext/README.html ? editors/joe/README.html ? editors/joe-devel/README.html ? editors/jove/README.html ? editors/kile/README.html ? editors/koffice-kde3/README.html ? editors/kxmleditor/README.html ? editors/le/README.html ? editors/led/README.html ? editors/leim20/README.html ? editors/leim21/README.html ? editors/leo/README.html ? editors/lfhex/README.html ? editors/lpe/README.html ? editors/manedit/README.html ? editors/mg/README.html ? editors/mode-info/README.html ? editors/moleskine/README.html ? editors/mp/README.html ? editors/muggy/README.html ? editors/mule/README.html ? editors/mule-common/README.html ? editors/nano/README.html ? editors/nedit/README.html ? editors/nvi-devel/README.html ? editors/nvi-m17n/README.html ? editors/nvi-perl/README.html ? editors/offix-editor/README.html ? editors/ooodict-all/README.html ? editors/ooodict-bg_BG/README.html ? editors/ooodict-ca_ES/README.html ? editors/ooodict-cs_CZ/README.html ? editors/ooodict-da_DK/README.html ? editors/ooodict-el_GR/README.html ? editors/ooodict-en_CA/README.html ? editors/ooodict-en_GB/README.html ? editors/ooodict-en_US/README.html ? editors/ooodict-es_ES/README.html ? editors/ooodict-hr_HR/README.html ? editors/ooodict-hu_HU/README.html ? editors/ooodict-it_IT/README.html ? editors/ooodict-nl_NL/README.html ? editors/ooodict-sk_SK/README.html ? editors/ooodict-sv_SE/README.html ? editors/openoffice/README.html ? editors/openoffice-ar/README.html ? editors/openoffice-devel/README.html ? editors/openoffice-dk/README.html ? editors/openoffice-es/README.html ? editors/openoffice-gr/README.html ? editors/openoffice-it/README.html ? editors/openoffice-nl/README.html ? editors/openoffice-se/README.html ? editors/openoffice-tr/README.html ? editors/pico/README.html ? editors/poedit/README.html ? editors/psgml/README.html ? editors/psgml-emacs19/README.html ? editors/psgml-emacs20/README.html ? editors/psgml-mule/README.html ? editors/psgml-xemacs21-mule/README.html ? editors/puff/README.html ? editors/qemacs/README.html ? editors/rox-edit/README.html ? editors/sam/README.html ? editors/scite/README.html ? editors/semi/README.html ? editors/semi-emacs20/README.html ? editors/semi-xemacs21-mule/README.html ? editors/semi113/README.html ? editors/semi113-emacs19/README.html ? editors/semi113-emacs20/README.html ? editors/semi113-mule/README.html ? editors/semi113-xemacs21-mule/README.html ? editors/speedbar/README.html ? editors/speedbar-emacs20/README.html ? editors/ssed/README.html ? editors/staroffice5/README.html ? editors/staroffice52/README.html ? editors/staroffice60/README.html ? editors/sted/README.html ? editors/tamago/README.html ? editors/tamago-emacs20/README.html ? editors/ted/README.html ? editors/tetradraw/README.html ? editors/texmacs/README.html ? editors/textedit/README.html ? editors/the/README.html ? editors/thoteditor/README.html ? editors/uemacs/README.html ? editors/uzap/README.html ? editors/ved/README.html ? editors/vigor/README.html ? editors/vile/README.html ? editors/vilearn/README.html ? editors/vim/README.html ? editors/vim-lite/README.html ? editors/vim5/README.html ? editors/vim6+ruby/README.html ? editors/wily/README.html ? editors/xcoral/README.html ? editors/xed/README.html ? editors/xemacs/README.html ? editors/xemacs-devel/README.html ? editors/xemacs-devel-mule/README.html ? editors/xemacs-mule-packages/README.html ? editors/xemacs-packages/README.html ? editors/xemacs21/README.html ? editors/xemacs21-mule/README.html ? editors/xenon/README.html ? editors/xmleditor/README.html ? editors/xvile/README.html ? editors/yudit/README.html ? editors/zed/README.html ? editors/zile/README.html ? editors/zoinks/README.html ? emulators/README.html ? emulators/adamem/README.html ? emulators/aftp/README.html ? emulators/atari800/README.html ? emulators/basiliskII/README.html ? emulators/bfe/README.html ? emulators/bochs/README.html ? emulators/bsvc/README.html ? emulators/cinc/README.html ? emulators/cingb/README.html ? emulators/cpmemu/README.html ? emulators/cpmtools/README.html ? emulators/darcnes/README.html ? emulators/dgen-sdl/README.html ? emulators/dlx/README.html ? emulators/dosbox/README.html ? emulators/extract-xiso/README.html ? emulators/fceu/README.html ? emulators/fmsx/README.html ? emulators/freesci/README.html ? emulators/frodo/README.html ? emulators/gbe/README.html ? emulators/generator/README.html ? emulators/gngb/README.html ? emulators/gnuboy/README.html ? emulators/grustibus/README.html ? emulators/gsnes9x/README.html ? emulators/gxmame/README.html ? emulators/hercules/README.html ? emulators/hfs/README.html ? emulators/hfsutils/README.html ? emulators/ia64sim/README.html ? emulators/ines/README.html ? emulators/its/README.html ? emulators/klh10/README.html ? emulators/kmamerun/README.html ? emulators/libvm68k/README.html ? emulators/linux-ePSXe/README.html ? emulators/linux-peops-softgpu/README.html ? emulators/linux-peops-spu/README.html ? emulators/linux-pete-mesagpu/README.html ? emulators/linux-vmware-toolbox2/README.html ? emulators/linux-vmware-toolbox4/README.html ? emulators/linux-winetools/README.html ? emulators/linux_base/README.html ? emulators/linux_base-6/README.html ? emulators/linux_base-8/README.html ? emulators/linux_base-debian/README.html ? emulators/linux_base-gentoo-stage1/README.html ? emulators/mastergear/README.html ? emulators/minivmac/README.html ? emulators/mtools/README.html ? emulators/osf1_base/README.html ? emulators/p-interp/README.html ? emulators/pcemu/README.html ? emulators/prodosemu/README.html ? emulators/psim-freebsd/README.html ? emulators/qcl/README.html ? emulators/quasi88/README.html ? emulators/rtc/README.html ? emulators/sim/README.html ? emulators/sim6811/README.html ? emulators/ski/README.html ? emulators/snes9x/README.html ? emulators/spim/README.html ? emulators/stella/README.html ? emulators/stonx/README.html ? emulators/svr4_base/README.html ? emulators/tkhfs/README.html ? emulators/tuxnes/README.html ? emulators/twin/README.html ? emulators/uae/README.html ? emulators/vMac/README.html ? emulators/vba/README.html ? emulators/vgb/README.html ? emulators/vgb-bin/README.html ? emulators/vgba-bin/README.html ? emulators/vice/README.html ? emulators/visualos/README.html ? emulators/vmsbackup/README.html ? emulators/vmware-guestd3/README.html ? emulators/vmware-guestd4/README.html ? emulators/vmware-tools2/README.html ? emulators/vmware-tools3/README.html ? emulators/vmware-tools4/README.html ? emulators/vmware2/README.html ? emulators/vmware3/README.html ? emulators/vmware_xf4mod/README.html ? emulators/vpce/README.html ? emulators/vx68k/README.html ? emulators/vxtools/README.html ? emulators/wine/README.html ? emulators/x48/README.html ? emulators/xgs/README.html ? emulators/xmame/README.html ? emulators/xmess/README.html ? emulators/xpinmame/README.html ? emulators/xsystem35/README.html ? emulators/xzx/README.html ? emulators/yape/README.html ? emulators/zsnes/README.html ? finance/README.html ? finance/aqmoney/README.html ? finance/gnucash/README.html ? finance/gnucash-docs/README.html ? finance/grisbi/README.html ? finance/khacc/README.html ? finance/libofx/README.html ? finance/myphpmoney/README.html ? finance/openhbci/README.html ? finance/p5-Business-CreditCard/README.html ? finance/p5-Business-OnlinePayment/README.html ? finance/p5-Business-OnlinePayment-2CheckOut/README.html ? finance/p5-Business-OnlinePayment-AuthorizeNet/README.html ? finance/p5-Business-OnlinePayment-BankOfAmerica/README.html ? finance/p5-Business-OnlinePayment-Beanstream/README.html ? finance/p5-Business-OnlinePayment-Cardstream/README.html ? finance/p5-Business-OnlinePayment-Jettis/README.html ? finance/p5-Business-OnlinePayment-LinkPoint/README.html ? finance/p5-Business-OnlinePayment-MerchantCommerce/README.html ? finance/p5-Business-OnlinePayment-Network1Financial/README.html ? finance/p5-Business-OnlinePayment-PayConnect/README.html ? finance/p5-Business-OnlinePayment-PaymentsGateway/README.html ? finance/p5-Business-OnlinePayment-SurePay/README.html ? finance/p5-Business-OnlinePayment-TCLink/README.html ? finance/p5-Business-OnlinePayment-VirtualNet/README.html ? finance/p5-Business-OnlinePayment-eSec/README.html ? finance/p5-Business-WorldPay-Junior/README.html ? finance/p5-Math-Financial/README.html ? finance/qhacc/README.html ? french/README.html ? french/abispell-fr-FR/README.html ? french/aspell/README.html ? french/aster/README.html ? french/daCode/README.html ? french/eficas/README.html ? french/facturier/README.html ? french/gfaim/README.html ? french/homard/README.html ? french/ispell/README.html ? french/jdictionary-fre-hun/README.html ? french/kde3-i18n/README.html ? french/koffice-i18n/README.html ? french/med/README.html ? french/netscape7/README.html ? french/ooodict-fr_FR/README.html ? french/openoffice/README.html ? french/php_doc/README.html ? french/plgrenouille/README.html ? french/spip/README.html ? french/staroffice52/README.html ? french/xtel/README.html ? ftp/README.html ? ftp/IglooFTP/README.html ? ftp/axel/README.html ? ftp/axelq/README.html ? ftp/axyftp/README.html ? ftp/bftpd/README.html ? ftp/bsdftpd-ssl/README.html ? ftp/cftp/README.html ? ftp/curl/README.html ? ftp/downloader/README.html ? ftp/emacs-wget/README.html ? ftp/emirror/README.html ? ftp/fget/README.html ? ftp/fmirror/README.html ? ftp/frox/README.html ? ftp/ftp-tls/README.html ? ftp/ftp4all/README.html ? ftp/ftpcopy/README.html ? ftp/ftpcube/README.html ? ftp/ftpd-tls/README.html ? ftp/ftpfind/README.html ? ftp/ftplocate/README.html ? ftp/ftpmirror/README.html ? ftp/ftpproxy/README.html ? ftp/ftpq/README.html ? ftp/ftpsearch/README.html ? ftp/ftptool/README.html ? ftp/gftp/README.html ? ftp/greed/README.html ? ftp/hsftp/README.html ? ftp/jftp/README.html ? ftp/jftpgw/README.html ? ftp/jigdo/README.html ? ftp/jmirror/README.html ? ftp/junglemonkey/README.html ? ftp/kbear/README.html ? ftp/kwebget/README.html ? ftp/lftp/README.html ? ftp/libfxp/README.html ? ftp/llnlxdir/README.html ? ftp/llnlxftp/README.html ? ftp/lukemftp/README.html ? ftp/lukemftpd/README.html ? ftp/mget/README.html ? ftp/mirror/README.html ? ftp/moxftp/README.html ? ftp/muddleftpd/README.html ? ftp/ncftp/README.html ? ftp/ncftp2/README.html ? ftp/ncftp3/README.html ? ftp/ncftpd/README.html ? ftp/oftpd/README.html ? ftp/omi/README.html ? ftp/p5-Net-FTP-Common/README.html ? ftp/p5-Net-FTPServer/README.html ? ftp/p5-POE-Component-Client-FTP/README.html ? ftp/paraget/README.html ? ftp/pavuk/README.html ? ftp/pftpd/README.html ? ftp/proftpd/README.html ? ftp/profxp/README.html ? ftp/prozilla/README.html ? ftp/puf/README.html ? ftp/pure-ftpd/README.html ? ftp/py-curl/README.html ? ftp/ruby-curl/README.html ? ftp/sftp/README.html ? ftp/spegla/README.html ? ftp/tftp-hpa/README.html ? ftp/twoftpd/README.html ? ftp/vcheck/README.html ? ftp/vsftpd/README.html ? ftp/wget/README.html ? ftp/wget+ipv6/README.html ? ftp/wu-ftpd/README.html ? ftp/wu-ftpd+ipv6/README.html ? ftp/xrmftp/README.html ? ftp/yafc/README.html ? ftp/yale-tftpd/README.html ? games/README.html ? games/0verkill/README.html ? games/3dc/README.html ? games/3dpong/README.html ? games/44bsd-hunt/README.html ? games/54321/README.html ? games/CaribbeanStud/README.html ? games/HeroesOfMightAndMagic/README.html ? games/KnightCap/README.html ? games/abridge/README.html ? games/abuse/README.html ? games/abuse_sdl/README.html ? games/acm/README.html ? games/actx/README.html ? games/adgali/README.html ? games/adom/README.html ? games/adonthell/README.html ? games/affenspiel/README.html ? games/afternoonstalker/README.html ? games/alephone/README.html ? games/alephone-data/README.html ? games/amphetamine/README.html ? games/amy/README.html ? games/an/README.html ? games/angband/README.html ? games/antipolix/README.html ? games/asc/README.html ? games/atitd/README.html ? games/atomix/README.html ? games/atr3d/README.html ? games/awele/README.html ? games/baduki/README.html ? games/barrage/README.html ? games/battalion/README.html ? games/battleball/README.html ? games/biorythm/README.html ? games/blackjack/README.html ? games/block/README.html ? games/blockade/README.html ? games/blue/README.html ? games/bogged/README.html ? games/bomb/README.html ? games/bomberclone/README.html ? games/bomberinstinct/README.html ? games/bombermaze/README.html ? games/braincurses/README.html ? games/bs/README.html ? games/bsdtris/README.html ? games/bsp/README.html ? games/bugsx/README.html ? games/burgerspace/README.html ? games/bzflag/README.html ? games/cgoban/README.html ? games/circuslinux/README.html ? games/civ2demo/README.html ? games/clanbomber/README.html ? games/columns/README.html ? games/connect4/README.html ? games/conquest/README.html ? games/corewars/README.html ? games/cosmo/README.html ? games/cowsay/README.html ? games/crafty/README.html ? games/crafty-open-large/README.html ? games/crafty-open-medium/README.html ? games/crafty-open-small/README.html ? games/crimson/README.html ? games/criticalmass/README.html ? games/crossfire-client/README.html ? games/crossfire-server/README.html ? games/crossword/README.html ? games/cryptoslam/README.html ? games/cube/README.html ? games/cursive/README.html ? games/deal/README.html ? games/defendguin/README.html ? games/digger-vgl/README.html ? games/dmjava/README.html ? games/dontspace/README.html ? games/doom/README.html ? games/doomlegacy/README.html ? games/dopewars/README.html ? games/drm/README.html ? games/dungeon/README.html ? games/dungeoncrawl/README.html ? games/easysok/README.html ? games/eboard/README.html ? games/editss/README.html ? games/egoboo/README.html ? games/eif/README.html ? games/eights/README.html ? games/emacs-chess/README.html ? games/empire/README.html ? games/enigma/README.html ? games/euchre/README.html ? games/evilfinder/README.html ? games/exult/README.html ? games/falconseye/README.html ? games/farblazer/README.html ? games/fkiss/README.html ? games/flightgear/README.html ? games/flying/README.html ? games/foobillard/README.html ? games/frabs/README.html ? games/freebsd-games/README.html ? games/freecell-solver/README.html ? games/freeciv/README.html ? games/freeciv-gtk/README.html ? games/freedroid/README.html ? games/freesweep/README.html ? games/frotz/README.html ? games/frozenbubble/README.html ? games/fsgs/README.html ? games/fuhquake/README.html ? games/galaxis/README.html ? games/garith/README.html ? games/gcompris/README.html ? games/gcompris2/README.html ? games/gemdropx/README.html ? games/ggz-client-libs/README.html ? games/ggz-txt-client/README.html ? games/gl-117/README.html ? games/glasteroids/README.html ? games/glchess/README.html ? games/gleyes/README.html ? games/glife/README.html ? games/glmaze/README.html ? games/gltron/README.html ? games/gma/README.html ? games/gnarr/README.html ? games/gniffel/README.html ? games/gnmm/README.html ? games/gno3dtet/README.html ? games/gnocatan/README.html ? games/gnomeattacks/README.html ? games/gnomebreakout/README.html ? games/gnomechess/README.html ? games/gnomegames2/README.html ? games/gnomekiss/README.html ? games/gnomememoryblocks/README.html ? games/gnomermind/README.html ? games/gnomoku/README.html ? games/gnubg/README.html ? games/gnuchess/README.html ? games/gnugo/README.html ? games/gnurobots/README.html ? games/gnushogi/README.html ? games/golddig/README.html ? games/gomoku.app/README.html ? games/gracer/README.html ? games/grande/README.html ? games/greed/README.html ? games/grhino/README.html ? games/groundhog/README.html ? games/gru/README.html ? games/grubinvaders/README.html ? games/gshisen/README.html ? games/gtetrinet/README.html ? games/gtkabale/README.html ? games/gtkballs/README.html ? games/gtktetcolor/README.html ? games/gturing/README.html ? games/gtypist/README.html ? games/halflifeserver/README.html ? games/heretic/README.html ? games/heroes/README.html ? games/hex/README.html ? games/hlserver-action/README.html ? games/hlserver-admin/README.html ? games/hlserver-cs/README.html ? games/hlserver-dod/README.html ? games/hlserver-esf/README.html ? games/hlserver-existence/README.html ? games/hlserver-fa/README.html ? games/hlserver-flf/README.html ? games/hlserver-glbwar/README.html ? games/hlserver-heroes/README.html ? games/hlserver-ns/README.html ? games/hlserver-opera/README.html ? games/hlserver-opfor/README.html ? games/hlserver-psychostats/README.html ? games/hlserver-pvk/README.html ? games/hlserver-si/README.html ? games/hlserver-snow/README.html ? games/hlserver-svencoop/README.html ? games/hlserver-trainhunters/README.html ? games/hlserver-ts/README.html ? games/hlserver-tsc/README.html ? games/hlserver-vs/README.html ? games/hlserver-wasteland/README.html ? games/hlserver-wizwars/README.html ? games/icbm3d/README.html ? games/icebreaker/README.html ? games/ifm/README.html ? games/imaze/README.html ? games/inform/README.html ? games/ishido/README.html ? games/jetpack/README.html ? games/jfk/README.html ? games/jools/README.html ? games/jtans/README.html ? games/jumpnbump/README.html ? games/jzip/README.html ? games/kbilliards/README.html ? games/kdegames3/README.html ? games/klondike/README.html ? games/knights/README.html ? games/kobodeluxe/README.html ? games/kpacman/README.html ? games/kpictorial/README.html ? games/ktritoc/README.html ? games/kwappen/README.html ? games/kxl/README.html ? games/ladder/README.html ? games/lbreakout/README.html ? games/lbreakout2/README.html ? games/ldmud/README.html ? games/lexter/README.html ? games/lgeneral/README.html ? games/lgeneral-data/README.html ? games/libggz/README.html ? games/libshhcards/README.html ? games/lincity/README.html ? games/linux-nwserver/README.html ? games/linux-q3ademo/README.html ? games/linux_nwnclient/README.html ? games/linux_nwndata/README.html ? games/lm-solve/README.html ? games/ltris/README.html ? games/macopix/README.html ? games/madbomber/README.html ? games/maelstrom/README.html ? games/magiccube4d/README.html ? games/mahjong/README.html ? games/mangband/README.html ? games/marathon-evil/README.html ? games/marbles/README.html ? games/merlin/README.html ? games/mindfocus/README.html ? games/mindguard/README.html ? games/mirrormagic/README.html ? games/miscom/README.html ? games/monkeybubble/README.html ? games/moon-buggy/README.html ? games/moonlander/README.html ? games/moria/README.html ? games/mvdsv/README.html ? games/myth2_demo/README.html ? games/mythserver/README.html ? games/nInvaders/README.html ? games/nadar/README.html ? games/nethack32/README.html ? games/nethack33/README.html ? games/nethack33-gnome/README.html ? games/nethack33-nox11/README.html ? games/nethack33-qt/README.html ? games/nethack34/README.html ? games/nethack34-gnome/README.html ? games/nethack34-nox11/README.html ? games/nethack34-qt/README.html ? games/netrek-BRMH-bin/README.html ? games/netrek-COW3-bin/README.html ? games/netris/README.html ? games/netspades/README.html ? games/nettoe/README.html ? games/newvox/README.html ? games/nibbles/README.html ? games/nighthawk/README.html ? games/nil/README.html ? games/nonsense/README.html ? games/nwnusers/README.html ? games/oilwar/README.html ? games/omega/README.html ? games/oneko/README.html ? games/oneko-sakura/README.html ? games/oonsoo/README.html ? games/openglad/README.html ? games/p5-Games-Bingo/README.html ? games/p5-Games-Bingo-Bot/README.html ? games/p5-Games-Bingo-Print/README.html ? games/pengpong/README.html ? games/penguin-command/README.html ? games/pentix/README.html ? games/phalanx/README.html ? games/pinball/README.html ? games/pipenightdreams/README.html ? games/pmars/README.html ? games/powerpak/README.html ? games/pp/README.html ? games/prboom/README.html ? games/ptkei/README.html ? games/pyching/README.html ? games/pysol/README.html ? games/pysol-cardsets/README.html ? games/pysol-music/README.html ? games/pythoong/README.html ? games/q3-paks/README.html ? games/q3server/README.html ? games/q3server-excessive/README.html ? games/q3server-freezetag/README.html ? games/q3server-osp/README.html ? games/q3server-ra3/README.html ? games/q3server-ut/README.html ? games/q3server-wfa/README.html ? games/qcc/README.html ? games/qgo/README.html ? games/qix/README.html ? games/qkmj/README.html ? games/qstat/README.html ? games/quake2forge/README.html ? games/quake2lnx/README.html ? games/quakeforge/README.html ? games/quakeserver/README.html ? games/quit/README.html ? games/qwdtools/README.html ? games/race/README.html ? games/rfksay/README.html ? games/robocode/README.html ? games/rockdodger/README.html ? games/rocksndiamonds/README.html ? games/rollemup/README.html ? games/rt2-demo/README.html ? games/rtb/README.html ? games/rtcw/README.html ? games/rtcw-paks/README.html ? games/rubix/README.html ? games/scid/README.html ? games/scorched3d-devel/README.html ? games/scummvm/README.html ? games/scummvm-tools/README.html ? games/sdlroids/README.html ? games/seabattle/README.html ? games/seahaven/README.html ? games/senso/README.html ? games/sex/README.html ? games/sl/README.html ? games/slashem-tty/README.html ? games/smacx/README.html ? games/smiley/README.html ? games/sokoban/README.html ? games/sol/README.html ? games/solarwolf/README.html ? games/sopwith/README.html ? games/spacearyarya/README.html ? games/spacehulk/README.html ? games/speak/README.html ? games/spellcast/README.html ? games/speyes/README.html ? games/spider/README.html ? games/starlanes/README.html ? games/stvef-paks/README.html ? games/stvef-server/README.html ? games/sxsame/README.html ? games/tads/README.html ? games/taipan/README.html ? games/tank/README.html ? games/taxipilot/README.html ? games/teg/README.html ? games/tetrinet/README.html ? games/tetrinet-x/README.html ? games/textmaze/README.html ? games/tictactoe3d/README.html ? games/tileworld/README.html ? games/tinymux/README.html ? games/tkmoo/README.html ? games/tksol/README.html ? games/tome/README.html ? games/toppler/README.html ? games/torcs/README.html ? games/tornado/README.html ? games/tractorgen/README.html ? games/traindirector/README.html ? games/trojka/README.html ? games/tt/README.html ? games/ttraffic/README.html ? games/tux-aqfh/README.html ? games/tuxkart/README.html ? games/tuxpuck/README.html ? games/tuxracer/README.html ? games/tuxracer_golf/README.html ? games/tuxtype/README.html ? games/tvp/README.html ? games/twitch/README.html ? games/typespeed/README.html ? games/uhexen/README.html ? games/uox3/README.html ? games/uqm/README.html ? games/utserver/README.html ? games/utserver-asu/README.html ? games/utserver-to/README.html ? games/vamos/README.html ? games/vectoroids/README.html ? games/virt/README.html ? games/wmeyes/README.html ? games/wmfortune/README.html ? games/wmminichess/README.html ? games/wmpuzzle/README.html ? games/wmqstat/README.html ? games/wmshuffle/README.html ? games/wmtictactoe/README.html ? games/wmtimebomb/README.html ? games/wolfpack/README.html ? games/wordplay/README.html ? games/wtf/README.html ? games/x3eyes/README.html ? games/xabacus/README.html ? games/xarchon/README.html ? games/xasteroids/README.html ? games/xataxx/README.html ? games/xbaby/README.html ? games/xbat/README.html ? games/xbattle/README.html ? games/xbill/README.html ? games/xbl/README.html ? games/xblackjack/README.html ? games/xblast/README.html ? games/xblast-beta/README.html ? games/xblood/README.html ? games/xbloody/README.html ? games/xboard/README.html ? games/xboing/README.html ? games/xbomb/README.html ? games/xbomber/README.html ? games/xbubble/README.html ? games/xchadance/README.html ? games/xchain/README.html ? games/xcheckers/README.html ? games/xchomp/README.html ? games/xcogitate/README.html ? games/xconq/README.html ? games/xcubes/README.html ? games/xdeblock/README.html ? games/xdemineur/README.html ? games/xdigger/README.html ? games/xdino/README.html ? games/xeji/README.html ? games/xemeraldia/README.html ? games/xevil/README.html ? games/xeyesplus/README.html ? games/xfce4-toys/README.html ? games/xfireworks/README.html ? games/xflame/README.html ? games/xfrisk/README.html ? games/xgalaga/README.html ? games/xgammon/README.html ? games/xgolgo/README.html ? games/xgospel/README.html ? games/xhexagons/README.html ? games/xhime/README.html ? games/xinfocom/README.html ? games/xinvaders/README.html ? games/xinvaders3d/README.html ? games/xisola/README.html ? games/xjewel/README.html ? games/xjig/README.html ? games/xjump/README.html ? games/xjumpjump/README.html ? games/xjumpx/README.html ? games/xkobo/README.html ? games/xkoules/README.html ? games/xlaby/README.html ? games/xlife/README.html ? games/xlifegame/README.html ? games/xlines/README.html ? games/xmahjongg/README.html ? games/xmastermind/README.html ? games/xmball/README.html ? games/xmemory/README.html ? games/xmille/README.html ? games/xmine/README.html ? games/xminehunter/README.html ? games/xmines/README.html ? games/xminesweep/README.html ? games/xmj/README.html ? games/xmlink/README.html ? games/xmris/README.html ? games/xmulti/README.html ? games/xneko/README.html ? games/xnibbles/README.html ? games/xoct/README.html ? games/xoids/README.html ? games/xoj/README.html ? games/xonix/README.html ? games/xosmulti/README.html ? games/xothello/README.html ? games/xpacman/README.html ? games/xpanex/README.html ? games/xpat2/README.html ? games/xpenguins/README.html ? games/xphotohunter/README.html ? games/xpilot/README.html ? games/xpilot-ng/README.html ? games/xpilotmon/README.html ? games/xpipeman/README.html ? games/xpired/README.html ? games/xpuyo/README.html ? games/xpuyopuyo/README.html ? games/xpuzzletama/README.html ? games/xpyraminx/README.html ? games/xqf/README.html ? games/xquarto/README.html ? games/xracer/README.html ? games/xrick/README.html ? games/xripple/README.html ? games/xrisk/README.html ? games/xroach/README.html ? games/xroads/README.html ? games/xrobots/README.html ? games/xrot/README.html ? games/xrubik/README.html ? games/xsc/README.html ? games/xscavenger/README.html ? games/xscorch/README.html ? games/xscrabble/README.html ? games/xshipwars-client/README.html ? games/xshisen/README.html ? games/xshogi/README.html ? games/xskat/README.html ? games/xskewb/README.html ? games/xsok/README.html ? games/xsokoban/README.html ? games/xsol/README.html ? games/xsoldier/README.html ? games/xspacewarp/README.html ? games/xspringies/README.html ? games/xteddy/README.html ? games/xtet42/README.html ? games/xtic/README.html ? games/xtriangles/README.html ? games/xtris/README.html ? games/xtrojka/README.html ? games/xtron/README.html ? games/xtruco/README.html ? games/xtux/README.html ? games/xvier/README.html ? games/xvmahjongg/README.html ? games/xvmines/README.html ? games/xword/README.html ? games/xworm/README.html ? games/xzip/README.html ? games/yadex/README.html ? games/yahtzee/README.html ? games/yamsweeper/README.html ? games/zangband/README.html ? games/znibbles/README.html ? games/zoom/README.html ? games/ztrack/README.html ? german/README.html ? german/BBBike/README.html ? german/aspell/README.html ? german/cheapcall/README.html ? german/citrix_ica/README.html ? german/dict/README.html ? german/ding/README.html ? german/ispell/README.html ? german/ispell-alt/README.html ? german/ispell-neu/README.html ? german/kde3-i18n/README.html ? german/koffice-i18n/README.html ? german/ksteak/README.html ? german/linux-eagle/README.html ? german/manpages/README.html ? german/netscape7/README.html ? german/ooodict-de_CH/README.html ? german/ooodict-de_DE/README.html ? german/openoffice/README.html ? german/phone/README.html ? german/php_doc/README.html ? german/staroffice5/README.html ? german/staroffice52/README.html ? german/steak/README.html ? german/unix-connect/README.html ? german/webalizer2/README.html ? graphics/README.html ? graphics/4va/README.html ? graphics/Cgraph/README.html ? graphics/Coin/README.html ? graphics/EZWGL/README.html ? graphics/GIFgraph/README.html ? graphics/Hermes/README.html ? graphics/IPA/README.html ? graphics/ImageMagick/README.html ? graphics/Mesa3/README.html ? graphics/OpenEXR/README.html ? graphics/aalib/README.html ? graphics/acidwarp/README.html ? graphics/animabob/README.html ? graphics/aoi/README.html ? graphics/aqsis/README.html ? graphics/autotrace/README.html ? graphics/aview/README.html ? graphics/backfract/README.html ? graphics/barcode/README.html ? graphics/bbrb/README.html ? graphics/blender/README.html ? graphics/blender-devel/README.html ? graphics/cadubi/README.html ? graphics/camediaplay/README.html ? graphics/chbg/README.html ? graphics/claraocr/README.html ? graphics/compupic/README.html ? graphics/cqcam/README.html ? graphics/crw/README.html ? graphics/cthumb/README.html ? graphics/cybervrml97/README.html ? graphics/dataplot/README.html ? graphics/dc20ctrl/README.html ? graphics/dc20pack/README.html ? graphics/dc3play/README.html ? graphics/deep_zoom/README.html ? graphics/dia/README.html ? graphics/diacanvas/README.html ? graphics/digikam/README.html ? graphics/divxcalc/README.html ? graphics/djvulibre/README.html ? graphics/dore/README.html ? graphics/dri-devel/README.html ? graphics/drm-kmod/README.html ? graphics/duhdraw/README.html ? graphics/dynamechs/README.html ? graphics/ecg2png/README.html ? graphics/electriceyes/README.html ? graphics/enfle/README.html ? graphics/entice/README.html ? graphics/eog2/README.html ? graphics/epix/README.html ? graphics/eps2png/README.html ? graphics/epstool/README.html ? graphics/eterm-bg/README.html ? graphics/evas/README.html ? graphics/evolvotron/README.html ? graphics/exiftags/README.html ? graphics/fbm/README.html ? graphics/feh/README.html ? graphics/figurine/README.html ? graphics/filmgimp/README.html ? graphics/flashplayer/README.html ? graphics/flasm/README.html ? graphics/fli2gif/README.html ? graphics/flip/README.html ? graphics/fly/README.html ? graphics/fnlib/README.html ? graphics/fractorama/README.html ? graphics/frontline/README.html ? graphics/fujiplay/README.html ? graphics/g2/README.html ? graphics/g3dviewer/README.html ? graphics/gauche-gl/README.html ? graphics/gcolor/README.html ? graphics/gd/README.html ? graphics/gd1/README.html ? graphics/gdal/README.html ? graphics/gdchart/README.html ? graphics/gdk-pixbuf/README.html ? graphics/gdtclft/README.html ? graphics/geist/README.html ? graphics/geomview/README.html ? graphics/gfont/README.html ? graphics/giblib/README.html ? graphics/gif2png/README.html ? graphics/gifmerge/README.html ? graphics/gifsicle/README.html ? graphics/giftool/README.html ? graphics/giftrans/README.html ? graphics/gimageview/README.html ? graphics/gimp-devel/README.html ? graphics/gimp-manual-html/README.html ? graphics/gimp-manual-pdf/README.html ? graphics/gimp1/README.html ? graphics/giram/README.html ? graphics/gkrellkam/README.html ? graphics/gkrellkam2/README.html ? graphics/gle/README.html ? graphics/glide3/README.html ? graphics/gliv/README.html ? graphics/gltk/README.html ? graphics/gltt/README.html ? graphics/gmt/README.html ? graphics/gnofract4d/README.html ? graphics/gnomecanvas/README.html ? graphics/gnomeiconedit/README.html ? graphics/gocr/README.html ? graphics/gozer/README.html ? graphics/gpaint/README.html ? graphics/gpdf/README.html ? graphics/gphoto2/README.html ? graphics/gplot/README.html ? graphics/gqview/README.html ? graphics/gqview-devel/README.html ? graphics/gracula/README.html ? graphics/graphviz/README.html ? graphics/gridpix/README.html ? graphics/gsculpt/README.html ? graphics/gthumb/README.html ? graphics/gthumb2/README.html ? graphics/gtkam/README.html ? graphics/gtkdps/README.html ? graphics/gtkfig/README.html ? graphics/gtkgraph/README.html ? graphics/gtksee/README.html ? graphics/gts/README.html ? graphics/guilib/README.html ? graphics/gview/README.html ? graphics/gwenview/README.html ? graphics/hdf/README.html ? graphics/hdf5/README.html ? graphics/hobbes-icons-xpm/README.html ? graphics/hpoj/README.html ? graphics/hppsmtools/README.html ? graphics/hs-HOpenGL/README.html ? graphics/hs-hgl/README.html ? graphics/icod/README.html ? graphics/icontact/README.html ? graphics/imageindex/README.html ? graphics/imagesort/README.html ? graphics/imageviewer/README.html ? graphics/imc/README.html ? graphics/imlib/README.html ? graphics/imlib2/README.html ? graphics/imlib2_loaders/README.html ? graphics/imlib3d/README.html ? graphics/inventor/README.html ? graphics/ipe/README.html ? graphics/irit/README.html ? graphics/isreal/README.html ? graphics/ivtools/README.html ? graphics/jasper/README.html ? graphics/jbigkit/README.html ? graphics/jgraph/README.html ? graphics/jgv/README.html ? graphics/jhead/README.html ? graphics/jpeg/README.html ? graphics/jpeg2ps-a4/README.html ? graphics/jpeg2ps-letter/README.html ? graphics/jpeginfo/README.html ? graphics/jpegoptim/README.html ? graphics/jpegpixi/README.html ? graphics/jpgraph/README.html ? graphics/jpgtn/README.html ? graphics/jslice/README.html ? graphics/juno-2/README.html ? graphics/kalbum/README.html ? graphics/kallery/README.html ? graphics/kbarcode/README.html ? graphics/kdc2tiff/README.html ? graphics/kdegraphics3/README.html ? graphics/kimagemapeditor/README.html ? graphics/kisomandel/README.html ? graphics/kix-kmod/README.html ? graphics/kludge3d/README.html ? graphics/landscape/README.html ? graphics/lcms/README.html ? graphics/leafpak/README.html ? graphics/lfview/README.html ? graphics/lib3ds/README.html ? graphics/libafterimage/README.html ? graphics/libart/README.html ? graphics/libart_lgpl2/README.html ? graphics/libaux/README.html ? graphics/libdjvu++/README.html ? graphics/libemf/README.html ? graphics/libexif/README.html ? graphics/libexif-gtk/README.html ? graphics/libflash/README.html ? graphics/libfpx/README.html ? graphics/libgdgeda/README.html ? graphics/libggi/README.html ? graphics/libgnomecanvas/README.html ? graphics/libgnomecanvasmm/README.html ? graphics/libgphoto2/README.html ? graphics/libgrass5/README.html ? graphics/libimg/README.html ? graphics/liblug/README.html ? graphics/libmng/README.html ? graphics/libmorph/README.html ? graphics/librsvg/README.html ? graphics/librsvg2/README.html ? graphics/libungif/README.html ? graphics/libv3d/README.html ? graphics/libwmf/README.html ? graphics/libwpcg/README.html ? graphics/linplasma/README.html ? graphics/linux-ac3d/README.html ? graphics/linux-bmrt/README.html ? graphics/linux-imlib/README.html ? graphics/linux-jpeg/README.html ? graphics/linux-png/README.html ? graphics/linux-tiff/README.html ? graphics/linux-ungif/README.html ? graphics/linux_dri/README.html ? graphics/linux_glide/README.html ? graphics/linux_glx/README.html ? graphics/linux_mesa3/README.html ? graphics/lodju/README.html ? graphics/maverik/README.html ? graphics/megapov/README.html ? graphics/mesagl/README.html ? graphics/meshviewer/README.html ? graphics/metapixel/README.html ? graphics/mgp-gallery/README.html ? graphics/ming/README.html ? graphics/morpheus/README.html ? graphics/mrsidviewer/README.html ? graphics/multivideo/README.html ? graphics/netpbm/README.html ? graphics/nurbs++/README.html ? graphics/ocaml-images/README.html ? graphics/ocaml-lablgl/README.html ? graphics/opendis/README.html ? graphics/opendx/README.html ? graphics/opendx-samples/README.html ? graphics/opengl-man/README.html ? graphics/openproducer/README.html ? graphics/openrm/README.html ? graphics/ophoto/README.html ? graphics/optipng/README.html ? graphics/orca/README.html ? graphics/osg/README.html ? graphics/osgedit/README.html ? graphics/p5-Chart-PNGgraph/README.html ? graphics/p5-GD/README.html ? graphics/p5-GD-Barcode/README.html ? graphics/p5-GD-Graph/README.html ? graphics/p5-GD-Graph3d/README.html ? graphics/p5-GD-TextUtil/README.html ? graphics/p5-GD1/README.html ? graphics/p5-GraphViz/README.html ? graphics/p5-GraphViz-Data-Structure/README.html ? graphics/p5-Graphics-ColorNames/README.html ? graphics/p5-Image-Grab/README.html ? graphics/p5-Image-Imlib2/README.html ? graphics/p5-Image-Info/README.html ? graphics/p5-Image-Size/README.html ? graphics/p5-Imager/README.html ? graphics/p5-Imlib2/README.html ? graphics/p5-OpenGL/README.html ? graphics/p5-SWF-File/README.html ? graphics/p5-VCG/README.html ? graphics/p5-chart/README.html ? graphics/p5-ming/README.html ? graphics/panorama/README.html ? graphics/passepartout/README.html ? graphics/peps/README.html ? graphics/pgperl/README.html ? graphics/pgplot/README.html ? graphics/pho/README.html ? graphics/photopc/README.html ? graphics/phplot/README.html ? graphics/picturebook/README.html ? graphics/piddle/README.html ? graphics/pixelize/README.html ? graphics/pixieplus/README.html ? graphics/pixmap/README.html ? graphics/plasma-kmod/README.html ? graphics/plotmtv/README.html ? graphics/plotutils/README.html ? graphics/png/README.html ? graphics/png2html/README.html ? graphics/png2ico/README.html ? graphics/pngcheck/README.html ? graphics/pngcrush/README.html ? graphics/pngquant/README.html ? graphics/pornview/README.html ? graphics/povray/README.html ? graphics/povray31/README.html ? graphics/ppmcaption/README.html ? graphics/proj/README.html ? graphics/pstoedit/README.html ? graphics/pstoepsi/README.html ? graphics/pvmpov/README.html ? graphics/py-chart/README.html ? graphics/py-exif/README.html ? graphics/py-gd/README.html ? graphics/py-gdchart/README.html ? graphics/py-graphviz/README.html ? graphics/py-imaging/README.html ? graphics/py-imaging-handbook/README.html ? graphics/py-ming/README.html ? graphics/py-opengl/README.html ? graphics/py-paint/README.html ? graphics/qcread/README.html ? graphics/qglviewer/README.html ? graphics/qiv/README.html ? graphics/qslim/README.html ? graphics/qtutils/README.html ? graphics/quat/README.html ? graphics/quat-gui/README.html ? graphics/quickpics/README.html ? graphics/qvplay/README.html ? graphics/ray++/README.html ? graphics/rayshade/README.html ? graphics/reallyslick/README.html ? graphics/renderpark/README.html ? graphics/ruby-evas/README.html ? graphics/ruby-gd/README.html ? graphics/ruby-gdchart/README.html ? graphics/ruby-gdk_imlib/README.html ? graphics/ruby-gdk_pixbuf/README.html ? graphics/ruby-gdk_pixbuf2/README.html ? graphics/ruby-gnomecanvas2/README.html ? graphics/ruby-graph/README.html ? graphics/ruby-image_size/README.html ? graphics/ruby-imlib2/README.html ? graphics/ruby-libart/README.html ? graphics/ruby-libart2/README.html ? graphics/ruby-libexif/README.html ? graphics/ruby-libpng/README.html ? graphics/ruby-ming/README.html ? graphics/ruby-opengl/README.html ? graphics/ruby-pgplot/README.html ? graphics/ruby-rmagick/README.html ? graphics/ruby-svg/README.html ? graphics/ruby-tgif/README.html ? graphics/rubyphoto/README.html ? graphics/s10sh/README.html ? graphics/s3switch/README.html ? graphics/sam2p/README.html ? graphics/sane-backends/README.html ? graphics/sane-frontends/README.html ? graphics/sced/README.html ? graphics/scr2png/README.html ? graphics/scrot/README.html ? graphics/scwm-icons/README.html ? graphics/sdl_gfx/README.html ? graphics/sdl_image/README.html ? graphics/sdl_ttf/README.html ? graphics/seejpeg/README.html ? graphics/show/README.html ? graphics/showimg/README.html ? graphics/simage/README.html ? graphics/sketch/README.html ? graphics/sng/README.html ? graphics/sodipodi/README.html ? graphics/springgraph/README.html ? graphics/stamp/README.html ? graphics/svg2swf/README.html ? graphics/svgalib/README.html ? graphics/swfdec/README.html ? graphics/swftools/README.html ? graphics/synaesthesia/README.html ? graphics/tcm/README.html ? graphics/tgif/README.html ? graphics/tgif-nls/README.html ? graphics/threeDS/README.html ? graphics/tif22pnm/README.html ? graphics/tiff/README.html ? graphics/tiff2png/README.html ? graphics/tifmerge/README.html ? graphics/togl/README.html ? graphics/truevision/README.html ? graphics/tulip/README.html ? graphics/txtmerge/README.html ? graphics/urt/README.html ? graphics/utah-glx/README.html ? graphics/vcg/README.html ? graphics/vertex/README.html ? graphics/vid/README.html ? graphics/view3ds/README.html ? graphics/visionegg/README.html ? graphics/vp/README.html ? graphics/vterrain-apps/README.html ? graphics/vterrain-sdk/README.html ? graphics/whirlgif/README.html ? graphics/white_dune/README.html ? graphics/wings/README.html ? graphics/wmgrabimage/README.html ? graphics/wmicons/README.html ? graphics/xaos/README.html ? graphics/xbarcode/README.html ? graphics/xbmbrowser/README.html ? graphics/xd3d/README.html ? graphics/xdgagrab/README.html ? graphics/xdl/README.html ? graphics/xenomorph/README.html ? graphics/xface.el/README.html ? graphics/xfig/README.html ? graphics/xfpovray/README.html ? graphics/xfractint/README.html ? graphics/xglurbules/README.html ? graphics/xgrasp/README.html ? graphics/xli/README.html ? graphics/xmagv/README.html ? graphics/xmandel/README.html ? graphics/xmedcon/README.html ? graphics/xmfract/README.html ? graphics/xmms-blursk/README.html ? graphics/xmms-finespectrum/README.html ? graphics/xmms-fishmatic/README.html ? graphics/xmms-gdancer/README.html ? graphics/xmms-gforce/README.html ? graphics/xmms-goom/README.html ? graphics/xmms-infinity/README.html ? graphics/xmms-iris/README.html ? graphics/xmms-jess/README.html ? graphics/xmms-nebulus/README.html ? graphics/xmms-paranormal/README.html ? graphics/xmms-xvs/README.html ? graphics/xmorph/README.html ? graphics/xmountains/README.html ? graphics/xmrm/README.html ? graphics/xnview/README.html ? graphics/xpaint/README.html ? graphics/xpcd/README.html ? graphics/xpdf/README.html ? graphics/xpm/README.html ? graphics/xpx/README.html ? graphics/xrml/README.html ? graphics/xsane/README.html ? graphics/xtexcad/README.html ? graphics/xv/README.html ? graphics/xv-m17n/README.html ? graphics/xwpick/README.html ? graphics/xzgv/README.html ? graphics/yafray/README.html ? graphics/zimg/README.html ? graphics/zphoto/README.html ? hebrew/README.html ? hebrew/culmus/README.html ? hebrew/elmar-fonts/README.html ? hebrew/he2/README.html ? hebrew/hspell/README.html ? hebrew/kde3-i18n/README.html ? hebrew/koffice-i18n/README.html ? hebrew/pine/README.html ? hungarian/README.html ? hungarian/hu-phone/README.html ? hungarian/hu-zipcodes/README.html ? hungarian/ispell/README.html ? hungarian/jdictionary-eng-hun/README.html ? hungarian/jdictionary-eng-hun-expr/README.html ? hungarian/kde3-i18n/README.html ? hungarian/koffice-i18n/README.html ? irc/README.html ? irc/bitchx/README.html ? irc/bitlbee/README.html ? irc/blackened/README.html ? irc/bnc/README.html ? irc/bobot++/README.html ? irc/dancer/README.html ? irc/dancer-ircd/README.html ? irc/dancer-services/README.html ? irc/darkbot/README.html ? irc/dcc/README.html ? irc/dircproxy/README.html ? irc/eggdrop/README.html ? irc/epic4/README.html ? irc/ezbounce/README.html ? irc/gruftistats/README.html ? irc/iip/README.html ? irc/infobot/README.html ? irc/irc/README.html ? irc/ircII/README.html ? irc/ircatlite/README.html ? irc/ircd-hybrid/README.html ? irc/ircd-ru/README.html ? irc/irchat-pj-emacs20/README.html ? irc/irchat-pj-emacs21/README.html ? irc/irchat-pj-xemacs-devel-mule/README.html ? irc/irchat-pj-xemacs21-mule/README.html ? irc/ircproxy/README.html ? irc/ircservices/README.html ? irc/iroffer/README.html ? irc/irssi/README.html ? irc/kmyirc/README.html ? irc/konversation/README.html ? irc/liece/README.html ? irc/liece-dcc/README.html ? irc/liece-emacs20/README.html ? irc/lostirc/README.html ? irc/muh/README.html ? irc/nethirc/README.html ? irc/ngircd/README.html ? irc/ninja/README.html ? irc/olirc/README.html ? irc/onis/README.html ? irc/p5-IRC/README.html ? irc/p5-POE-Component-IRC/README.html ? irc/p5-POE-Component-IRC-Object/README.html ? irc/party/README.html ? irc/pircbot/README.html ? irc/pisg/README.html ? irc/psybnc/README.html ? irc/pure-emacs20/README.html ? irc/pure-emacs21/README.html ? irc/pure-xemacs-devel-mule/README.html ? irc/pure-xemacs21-mule/README.html ? irc/py-irclib/README.html ? irc/quirc/README.html ? irc/rbot/README.html ? irc/roxirc/README.html ? irc/ruby-irc/README.html ? irc/ruby-rica/README.html ? irc/ruby-rice/README.html ? irc/scrollz/README.html ? irc/scrollz-doc/README.html ? irc/sic/README.html ? irc/sirc/README.html ? irc/sircd/README.html ? irc/slirc/README.html ? irc/tirc/README.html ? irc/tircproxy/README.html ? irc/tkirc/README.html ? irc/tr-ircd/README.html ? irc/trickyirc/README.html ? irc/xaric/README.html ? irc/xchat/README.html ? irc/xchat2/README.html ? irc/zircon/README.html ? japanese/README.html ? japanese/ASCIIdates98-fpw/README.html ? japanese/CGdic-fpw/README.html ? japanese/Canna/README.html ? japanese/FreeWnn-lib/README.html ? japanese/FreeWnn-server/README.html ? japanese/VTPSfont/README.html ? japanese/Wnn6/README.html ? japanese/Wnn6-lib/README.html ? japanese/Wnn7-lib/README.html ? japanese/a2ps/README.html ? japanese/ack/README.html ? japanese/acroread5-jpnfont/README.html ? japanese/addttfont/README.html ? japanese/alias-fonts/README.html ? japanese/another-htmllint/README.html ? japanese/anthy/README.html ? japanese/aterm/README.html ? japanese/balsa/README.html ? japanese/bible_names-fpw/README.html ? japanese/binder/README.html ? japanese/bookview/README.html ? japanese/cal.rb/README.html ? japanese/cannadic/README.html ? japanese/cdrom2/README.html ? japanese/celrw/README.html ? japanese/chasen/README.html ? japanese/chasen-base/README.html ? japanese/chimera/README.html ? japanese/csrd/README.html ? japanese/dbskkd-cdb/README.html ? japanese/ddskk/README.html ? japanese/ddskk-emacs20/README.html ? japanese/deepforest/README.html ? japanese/devil-fpw/README.html ? japanese/diclookup-emacs20/README.html ? japanese/diclookup-mule/README.html ? japanese/drpl/README.html ? japanese/dserver/README.html ? japanese/dvi2dvi/README.html ? japanese/dvi2ps/README.html ? japanese/dvi2tty/README.html ? japanese/dvipdfm/README.html ? japanese/dvipsk/README.html ? japanese/dvipsk-vflib/README.html ? japanese/e2ps/README.html ? japanese/easypr/README.html ? japanese/eb/README.html ? japanese/ebd-fpw/README.html ? japanese/eblook/README.html ? japanese/ebview/README.html ? japanese/ebw3/README.html ? japanese/edict/README.html ? japanese/edict-fpw/README.html ? japanese/edict-sdic/README.html ? japanese/eijiro-fpw/README.html ? japanese/elisa10x8/README.html ? japanese/elisa8x8/README.html ? japanese/elisp-manual/README.html ? japanese/elvis/README.html ? japanese/emacs-manual/README.html ? japanese/emacs20-dl-canna/README.html ? japanese/emacs20-dl-wnn6/README.html ? japanese/emacs20-emcws/README.html ? japanese/emacs21-emcws/README.html ? japanese/epic4/README.html ? japanese/epwutil/README.html ? japanese/escpf/README.html ? japanese/esecanna/README.html ? japanese/esecanna-module-vje25/README.html ? japanese/esecanna-module-vje30/README.html ? japanese/esecanna-module-wnn6/README.html ? japanese/eterm/README.html ? japanese/ewipe/README.html ? japanese/exmh2/README.html ? japanese/expect/README.html ? japanese/flower-fpw/README.html ? japanese/foldoc-fpw/README.html ? japanese/freepwing/README.html ? japanese/fumeikai-fpw/README.html ? japanese/gaim/README.html ? japanese/gal/README.html ? japanese/gauche-kakasi/README.html ? japanese/gawk/README.html ? japanese/gd/README.html ? japanese/gd1/README.html ? japanese/ghostscript-gnu-jpnfont/README.html ? japanese/gicq/README.html ? japanese/gn-gnspool/README.html ? japanese/gnome/README.html ? japanese/gnomelibs/README.html ? japanese/gnumeric/README.html ? japanese/gorua/README.html ? japanese/gqmpeg/README.html ? japanese/grep/README.html ? japanese/groff/README.html ? japanese/gtkicq/README.html ? japanese/gxditview/README.html ? japanese/hex/README.html ? japanese/hns/README.html ? japanese/ical/README.html ? japanese/im-ja/README.html ? japanese/ipadic/README.html ? japanese/ircII/README.html ? japanese/iv/README.html ? japanese/jadetex-ptex/README.html ? japanese/japaneseAFM/README.html ? japanese/jargon-fpw/README.html ? japanese/jcode.pl/README.html ? japanese/jed/README.html ? japanese/jgv/README.html ? japanese/jhd/README.html ? japanese/jisx0213-fonts/README.html ? japanese/jls/README.html ? japanese/jmode/README.html ? japanese/jmode-skk/README.html ? japanese/jpilot/README.html ? japanese/jvim/README.html ? japanese/jvim-canna/README.html ? japanese/jvim-canna+freewnn/README.html ? japanese/jvim-canna+wnn6/README.html ? japanese/jvim-canna+wnn7/README.html ? japanese/jvim-freewnn/README.html ? japanese/jvim-wnn6/README.html ? japanese/jvim-wnn7/README.html ? japanese/jvim3/README.html ? japanese/jvim3-canna/README.html ? japanese/jvim3-canna+freewnn/README.html ? japanese/jvim3-canna+wnn6/README.html ? japanese/jvim3-canna+wnn7/README.html ? japanese/jvim3-direct_canna/README.html ? japanese/jvim3-freewnn/README.html ? japanese/jvim3-wnn6/README.html ? japanese/jvim3-wnn7/README.html ? japanese/jyuroku/README.html ? japanese/k10/README.html ? japanese/k12/README.html ? japanese/kakasi/README.html ? japanese/kanji18/README.html ? japanese/kanji26/README.html ? japanese/kanjipad/README.html ? japanese/kappa20/README.html ? japanese/kbanner/README.html ? japanese/kcc/README.html ? japanese/kde3-i18n/README.html ? japanese/kdrill/README.html ? japanese/kinput2-canna/README.html ? japanese/kinput2-canna+freewnn/README.html ? japanese/kinput2-canna+freewnn+sj3/README.html ? japanese/kinput2-canna+sj3/README.html ? japanese/kinput2-canna+sj3+wnn6/README.html ? japanese/kinput2-canna+sj3+wnn7/README.html ? japanese/kinput2-canna+wnn6/README.html ? japanese/kinput2-canna+wnn7/README.html ? japanese/kinput2-freewnn/README.html ? japanese/kinput2-freewnn+sj3/README.html ? japanese/kinput2-sj3/README.html ? japanese/kinput2-sj3+wnn6/README.html ? japanese/kinput2-sj3+wnn7/README.html ? japanese/kinput2-wnn6/README.html ? japanese/kinput2-wnn7/README.html ? japanese/kochi-cidfonts/README.html ? japanese/kochi-ttfonts/README.html ? japanese/koffice-i18n/README.html ? japanese/kon2-14dot/README.html ? japanese/kon2-16dot/README.html ? japanese/kpcal/README.html ? japanese/kterm/README.html ? japanese/kterm16c/README.html ? japanese/lambdamoo/README.html ? japanese/latex2html/README.html ? japanese/leafrogue/README.html ? japanese/less/README.html ? japanese/libicq/README.html ? japanese/libimg/README.html ? japanese/libjcode/README.html ? japanese/libjconv/README.html ? japanese/libslang/README.html ? japanese/linux-JM/README.html ? japanese/linux_locale/README.html ? japanese/lipsf/README.html ? japanese/lookup/README.html ? japanese/lookup-emacs20/README.html ? japanese/lookup-mule/README.html ? japanese/lookup-xemacs/README.html ? japanese/lsd-fpw/README.html ? japanese/lynx/README.html ? japanese/lynx-current/README.html ? japanese/lyx/README.html ? japanese/lyx-doc/README.html ? japanese/magicpoint/README.html ? japanese/makejvf/README.html ? japanese/man/README.html ? japanese/man-doc/README.html ? japanese/marumoji-fonts/README.html ? japanese/mecab/README.html ? japanese/mendexk-euc/README.html ? japanese/mendexk-sjis/README.html ? japanese/mh/README.html ? japanese/migemo/README.html ? japanese/migemo-emacs20/README.html ? japanese/migemo-emacs21/README.html ? japanese/migemo-xemacs-devel-mule/README.html ? japanese/migemo-xemacs21-mule/README.html ? japanese/mikachan-ttfonts/README.html ? japanese/mimekit/README.html ? japanese/ming/README.html ? japanese/monafonts/README.html ? japanese/monafonts-ttf/README.html ? japanese/mozilla-jlp/README.html ? japanese/mozilla-jlp-devel/README.html ? japanese/mplusfonts/README.html ? japanese/msdosfs/README.html ? japanese/mtools/README.html ? japanese/muggy/README.html ? japanese/mule-canna/README.html ? japanese/mule-canna+freewnn/README.html ? japanese/mule-canna+freewnn+sj3/README.html ? japanese/mule-canna+sj3/README.html ? japanese/mule-canna+sj3+wnn6/README.html ? japanese/mule-canna+sj3+wnn7/README.html ? japanese/mule-canna+wnn6/README.html ? japanese/mule-canna+wnn7/README.html ? japanese/mule-freewnn/README.html ? japanese/mule-freewnn+sj3/README.html ? japanese/mule-sj3/README.html ? japanese/mule-sj3+wnn6/README.html ? japanese/mule-sj3+wnn7/README.html ? japanese/mule-wnn6/README.html ? japanese/mule-wnn7/README.html ? japanese/mutt/README.html ? japanese/mutt-devel/README.html ? japanese/mypaedia-fpw/README.html ? japanese/mypaedia-fpw-package/README.html ? japanese/namazu/README.html ? japanese/namazu2/README.html ? japanese/navi2ch-emacs20/README.html ? japanese/navi2ch-emacs21/README.html ? japanese/navi2ch-xemacs21-mule/README.html ? japanese/ndtpd/README.html ? japanese/ne/README.html ? japanese/nethack32/README.html ? japanese/nethack34/README.html ? japanese/netscape48-communicator/README.html ? japanese/netscape48-navigator/README.html ? japanese/netscape7/README.html ? japanese/netype/README.html ? japanese/netypesv/README.html ? japanese/newosaka/README.html ? japanese/ng/README.html ? japanese/ng-canna/README.html ? japanese/ng-devel/README.html ? japanese/ngraph-fonts/README.html ? japanese/nkf/README.html ? japanese/nvi-euc-jp/README.html ? japanese/nvi-iso-2022-jp/README.html ? japanese/nvi-sjis/README.html ? japanese/okphone/README.html ? japanese/oleo/README.html ? japanese/onew-canna/README.html ? japanese/onew-canna+freewnn/README.html ? japanese/onew-canna+wnn6/README.html ? japanese/onew-canna+wnn7/README.html ? japanese/onew-freewnn/README.html ? japanese/onew-wnn6/README.html ? japanese/onew-wnn7/README.html ? japanese/openoffice/README.html ? japanese/openoffice-devel/README.html ? japanese/openoffice-templates/README.html ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 02:03:48 2003 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 956F016A4B3 for ; Fri, 17 Oct 2003 02:03:48 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC0A643F75 for ; Fri, 17 Oct 2003 02:03:47 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h9H93lGZ093940 for ; Fri, 17 Oct 2003 05:03:47 -0400 (EDT) (envelope-from kris@9ball.rtp.freebsd.org) Received: (from kris@localhost) by 9ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id h9H93leJ086314 for ports@FreeBSD.org; Fri, 17 Oct 2003 05:03:47 -0400 (EDT) (envelope-from kris) Date: Fri, 17 Oct 2003 05:03:47 -0400 (EDT) From: Kris Kennaway Message-Id: <200310170903.h9H93leJ086314@9ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed 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: Fri, 17 Oct 2003 09:03:48 -0000 INDEX build failed with errors: p5-Net-QMTP-0.05: "/vol/vol0/users/kris/ports.clean/textproc/p5-Text-Netstring" non-existent -- dependency list incomplete Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U audio/yammi/Makefile U audio/yammi/files/patch-configure U databases/mysql++/Makefile U databases/p5-DBD-mysql/Makefile U databases/p5-DBD-mysql/distinfo U deskutils/gtodo/Makefile U devel/Makefile ? devel/glade2/make.core U devel/gnomebuild/Makefile ? devel/gnomedebug/make.core U devel/kdevelop/Makefile U devel/kdevelop/pkg-plist U devel/p5-Sort-Tree/Makefile U devel/p5-Sort-Tree/distinfo U devel/p5-Sort-Tree/pkg-descr U devel/p5-Sort-Tree/pkg-plist U devel/qt-designer/Makefile From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 02:07:34 2003 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 84E5D16A4B3 for ; Fri, 17 Oct 2003 02:07:34 -0700 (PDT) Received: from rusty.kulnet.kuleuven.ac.be (rusty.kulnet.kuleuven.ac.be [134.58.240.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C6F143FCB for ; Fri, 17 Oct 2003 02:07:29 -0700 (PDT) (envelope-from tijl@ulyssis.org) Received: from localhost (localhost [127.0.0.1]) by rusty.kulnet.kuleuven.ac.be (Postfix) with ESMTP id 1BF3D1D7274 for ; Fri, 17 Oct 2003 11:07:28 +0200 (CEST) Received: from octavianus.kulnet.kuleuven.ac.be (octavianus.kulnet.kuleuven.ac.be [134.58.240.71]) by rusty.kulnet.kuleuven.ac.be (Postfix) with ESMTP id AA3651D71A8 for ; Fri, 17 Oct 2003 11:07:27 +0200 (CEST) Received: from localhost (10-4-5-217.kotnet.org [10.4.5.217]) by octavianus.kulnet.kuleuven.ac.be (Postfix) with SMTP id 5DC69AEA24 for ; Fri, 17 Oct 2003 11:07:27 +0200 (CEST) Date: Fri, 17 Oct 2003 11:07:27 +0200 From: Tijl Coosemans To: freebsd-ports@freebsd.org Message-Id: <20031017110727.7811355a.tijl@ulyssis.org> In-Reply-To: <200310171001.03637.avleeuwen@piwebs.com> References: <3F8F5105.5040308@earthlink.net> <200310171001.03637.avleeuwen@piwebs.com> X-Mailer: Sylpheed version 0.9.7 (GTK+ 1.2.10; i386-portbld-freebsd4.9) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by KULeuven Antivirus Cluster Subject: Re: Kopete 7.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: Fri, 17 Oct 2003 09:07:34 -0000 On Fri, 17 Oct 2003 10:01:03 +0200, Arjan van Leeuwen wrote: > On Friday 17 October 2003 04:16, Michael Dunham wrote: > > I've been looking for the most recent version of the KDE Kopete IM > > client (0.7.3) to appear in the ports collection but as yet I > > haven't seen anything newer than 0.7 appear. I sent an email to the > > ports maintainer but I wondered if anyone has been successful > > installing from the Sourceforce binary? I'm running 5.1 Current. > > The sources of 0.7.2 compile & install fine without any patches on my > -CURRENT machine. Maintainer, can you update the port? the current > version doesn't work with the new MSN protocol. There's a PR from about a month ago for version 0.7.2, but it hasn't made it into the ports tree yet. (http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/56709) From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 04:38:39 2003 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 AF0D616A4BF for ; Fri, 17 Oct 2003 04:38:39 -0700 (PDT) Received: from ptb-mailc05.plus.net (ptb-mailc05.plus.net [212.159.14.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD31343FBF for ; Fri, 17 Oct 2003 04:38:38 -0700 (PDT) (envelope-from simong@desktop-guardian.com) Received: from [81.174.227.186] (helo=desktop-guardian.com) by ptb-mailc05.plus.net with smtp (Exim 4.12) id 1AASwH-0004Oe-00 for ports@freebsd.org; Fri, 17 Oct 2003 11:38:37 +0000 Received: (qmail 36460 invoked by uid 1006); 17 Oct 2003 11:40:24 -0000 Received: from simong@desktop-guardian.com by dtg25 by uid 82 with qmail-scanner-1.16 (clamscan: 0.54. spamassassin: 2.55. Clear:. Processed in 8.641512 secs); 17 Oct 2003 11:40:24 -0000 Received: from unknown (HELO dtg17) (192.168.0.17) by 192.168.0.25 with SMTP; 17 Oct 2003 11:40:11 -0000 Message-ID: <029201c394a2$fddc1e60$1100a8c0@dtg17> From: "Simon Gray" To: "David Hill" , References: <000e01c3944c$5f511300$02ff000a@rain> Date: Fri, 17 Oct 2003 12:37:05 +0100 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.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Subject: Re: graphics/gd issues X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Simon Gray List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Oct 2003 11:38:39 -0000 > ===> Registering installation for gd-1.8.4_7,1 > ===> Returning to build of netsaint-0.0.7_4,1 > Error: shared library "gd.4" does not exist > *** Error code 1 > > Stop in /usr/ports/net/netsaint. tried installing gd 2.x separately? From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 04:57:15 2003 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 18B4716A4C0 for ; Fri, 17 Oct 2003 04:57:15 -0700 (PDT) Received: from istanbul.enderunix.org (freefall.marmara.edu.tr [193.140.143.23]) by mx1.FreeBSD.org (Postfix) with SMTP id 3E5AF43F85 for ; Fri, 17 Oct 2003 04:57:12 -0700 (PDT) (envelope-from murat@enderunix.org) Received: (qmail 1782 invoked from network); 17 Oct 2003 11:56:59 -0000 Received: from localhost (HELO istanbul.enderunix.org) (127.0.0.1) by localhost with SMTP; 17 Oct 2003 11:56:59 -0000 Received: (from murat@localhost) by istanbul.enderunix.org (8.12.8p1/8.12.8/Submit) id h9HBuwv4001778 for ports@FreeBSD.org; Fri, 17 Oct 2003 14:56:58 +0300 (EEST) X-Authentication-Warning: istanbul.enderunix.org: murat set sender to murat@enderunix.org using -f Date: Fri, 17 Oct 2003 14:56:57 +0300 From: Murat Balaban To: ports@FreeBSD.org Message-ID: <20031017115657.GA1762@enderunix.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: trafd 3.0.1 checksum failure 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: Fri, 17 Oct 2003 11:57:15 -0000 I've cvsup'ed my ports tree as of Fri Oct 17 14:56:28 EEST 2003. The checksums did not match. -- "When all else fails, read the instructions -- Murphy's Technology Laws" Murat Balaban http://www.enderunix.org From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 05:02:21 2003 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 CB39816A4B3 for ; Fri, 17 Oct 2003 05:02:21 -0700 (PDT) Received: from office.LF.net (office.LF.net [212.9.190.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 116A443FB1 for ; Fri, 17 Oct 2003 05:02:21 -0700 (PDT) (envelope-from krion@voodoo.oberon.net) Received: from voodoo.oberon.net ([212.118.165.100]) by office.LF.net with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.22) id 1AATJJ-000H4R-CL for ports@FreeBSD.org; Fri, 17 Oct 2003 14:02:25 +0200 Received: from krion by voodoo.oberon.net with local (Exim 4.22) id 1AATJD-00028o-NZ; Fri, 17 Oct 2003 14:02:19 +0200 Date: Fri, 17 Oct 2003 14:02:19 +0200 From: Kirill Ponomarew To: Murat Balaban Message-ID: <20031017120219.GC6641@voodoo.oberon.net> References: <20031017115657.GA1762@enderunix.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="m51xatjYGsM+13rf" Content-Disposition: inline In-Reply-To: <20031017115657.GA1762@enderunix.org> Sender: Kirill Ponomarew cc: ports@FreeBSD.org Subject: Re: trafd 3.0.1 checksum failure 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: Fri, 17 Oct 2003 12:02:21 -0000 --m51xatjYGsM+13rf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Fri, Oct 17, 2003 at 02:56:57PM +0300, Murat Balaban wrote: >=20 > I've cvsup'ed my ports tree as of Fri Oct 17 14:56:28 EEST 2003. The chec= ksums did not match. Show your distinfo. I have no problem with it. -Kirill --m51xatjYGsM+13rf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/j9pLQC1G6a60JuURAr66AJ9ugWykwQsJvZLj+djlFCBJpnD0rwCg5tQT JTKzTd5YiQ4QUR5aFNx27bo= =0BIh -----END PGP SIGNATURE----- --m51xatjYGsM+13rf-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 05:38:29 2003 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 103A416A4C1; Fri, 17 Oct 2003 05:38:29 -0700 (PDT) Received: from mail.ncsa.uiuc.edu (mail.ncsa.uiuc.edu [141.142.2.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 022E543FDD; Fri, 17 Oct 2003 05:38:25 -0700 (PDT) (envelope-from koziol@ncsa.uiuc.edu) X-Envelope-From: koziol@ncsa.uiuc.edu X-Envelope-To: gerald@freebsd.org Received: from sleipnir.ncsa.uiuc.edu (sleipnir.ncsa.uiuc.edu [141.142.96.70]) by mail.ncsa.uiuc.edu (8.11.6p2/8.11.6) with ESMTP id h9HCcP628572; Fri, 17 Oct 2003 07:38:25 -0500 Received: from sleipnir.ncsa.uiuc.edu (localhost [127.0.0.1]) h9HCcOlT099558; Fri, 17 Oct 2003 07:38:24 -0500 (CDT) (envelope-from koziol@sleipnir.ncsa.uiuc.edu) Received: (from koziol@localhost) by sleipnir.ncsa.uiuc.edu (8.12.9/8.12.9/Submit) id h9HCcOfM099556; Fri, 17 Oct 2003 07:38:24 -0500 (CDT) From: Quincey Koziol Message-Id: <200310171238.h9HCcOfM099556@sleipnir.ncsa.uiuc.edu> To: ports@freebsd.org, gerald@freebsd.org Date: Fri, 17 Oct 2003 07:38:24 -0500 (CDT) X-Mailer: ELM [version 2.4ME+ PL99f (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Subject: gcc33 build failing 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: Fri, 17 Oct 2003 12:38:29 -0000 Hi all, Hopefully this has been reported already, but the recent upgrade of the gcc 3.3 snapshot is now causing failures during an install. Quincey Koziol koziol@ncsa.uiuc.edu From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 05:48:59 2003 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 1B32F16A4B3 for ; Fri, 17 Oct 2003 05:48:59 -0700 (PDT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26E5E43FBD for ; Fri, 17 Oct 2003 05:48:49 -0700 (PDT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.60] (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 32A5C13789; Fri, 17 Oct 2003 14:48:47 +0200 (CEST) Date: Fri, 17 Oct 2003 14:48:50 +0200 (CEST) From: Gerald Pfeifer To: Quincey Koziol In-Reply-To: <200310171238.h9HCcOfM099556@sleipnir.ncsa.uiuc.edu> Message-ID: References: <200310171238.h9HCcOfM099556@sleipnir.ncsa.uiuc.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@freebsd.org Subject: Re: gcc33 build failing 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: Fri, 17 Oct 2003 12:48:59 -0000 On Fri, 17 Oct 2003, Quincey Koziol wrote: > Hopefully this has been reported already, but the recent upgrade of the > gcc 3.3 snapshot is now causing failures during an install. Working on it as we speak. I expect to fix and update the port to the 3.3.2 release within an hour. I'm very embarassed and don't know how this escaped my testing or how an older version of my patch got committed. :-( Gerald -- Gerald Pfeifer (Jerry) gerald@pfeifer.com http://www.pfeifer.com/gerald/ From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 05:52:05 2003 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 6707B16A4B3 for ; Fri, 17 Oct 2003 05:52:05 -0700 (PDT) Received: from mail.ncsa.uiuc.edu (mail.ncsa.uiuc.edu [141.142.2.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 674DE43F93 for ; Fri, 17 Oct 2003 05:52:04 -0700 (PDT) (envelope-from koziol@ncsa.uiuc.edu) X-Envelope-From: koziol@ncsa.uiuc.edu X-Envelope-To: ports@freebsd.org Received: from sleipnir.ncsa.uiuc.edu (sleipnir.ncsa.uiuc.edu [141.142.96.70]) by mail.ncsa.uiuc.edu (8.11.6p2/8.11.6) with ESMTP id h9HCq4602516; Fri, 17 Oct 2003 07:52:04 -0500 Received: from sleipnir.ncsa.uiuc.edu (localhost [127.0.0.1]) h9HCq3lT009478; Fri, 17 Oct 2003 07:52:03 -0500 (CDT) (envelope-from koziol@sleipnir.ncsa.uiuc.edu) Received: (from koziol@localhost) by sleipnir.ncsa.uiuc.edu (8.12.9/8.12.9/Submit) id h9HCq3gh009477; Fri, 17 Oct 2003 07:52:03 -0500 (CDT) From: Quincey Koziol Message-Id: <200310171252.h9HCq3gh009477@sleipnir.ncsa.uiuc.edu> In-Reply-To: To: Gerald Pfeifer Date: Fri, 17 Oct 2003 07:52:03 -0500 (CDT) X-Mailer: ELM [version 2.4ME+ PL99f (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII cc: ports@freebsd.org Subject: Re: gcc33 build failing 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: Fri, 17 Oct 2003 12:52:05 -0000 > On Fri, 17 Oct 2003, Quincey Koziol wrote: > > Hopefully this has been reported already, but the recent upgrade of the > > gcc 3.3 snapshot is now causing failures during an install. > > Working on it as we speak. I expect to fix and update the port to > the 3.3.2 release within an hour. Awesome! Thanks, Quincey From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 07:20:42 2003 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 D03FF16A4B3 for ; Fri, 17 Oct 2003 07:20:42 -0700 (PDT) Received: from dsl-mail.kamp.net (mail.kamp-dsl.de [195.62.99.42]) by mx1.FreeBSD.org (Postfix) with SMTP id D47F743FE5 for ; Fri, 17 Oct 2003 07:20:38 -0700 (PDT) (envelope-from root@pukruppa.de) Received: (qmail 19256 invoked by uid 505); 17 Oct 2003 14:20:42 -0000 Received: from root@pukruppa.de by dsl-mail by uid 502 with qmail-scanner-1.14 (spamassassin: 2.43. Clear:SA:0(0.0/5.0):. Processed in 0.253293 secs); 17 Oct 2003 14:20:42 -0000 X-Spam-Status: No, hits=0.0 required=5.0 Received: from unknown (HELO reverse-213-146-114-24.dialin.kamp-dsl.de) (213.146.114.24) by dsl-mail.kamp.net with SMTP; 17 Oct 2003 14:20:41 -0000 Date: Fri, 17 Oct 2003 16:23:06 +0200 (CEST) From: Peter Ulrich Kruppa X-X-Sender: root@pukruppa.net To: Joe Marcus Clarke In-Reply-To: <1066245462.721.42.camel@gyros> Message-ID: <20031017161749.L1600@pukruppa.net> References: <1066241563.721.27.camel@gyros> <20031015191321.GA72308@o503.hadiko.de> <1066245462.721.42.camel@gyros> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: FreeBSD GNOME Users cc: "Thomas E. Zander" cc: ports@freebsd.org Subject: Re: RFC: What to do with Mozilla 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: Fri, 17 Oct 2003 14:20:42 -0000 On Wed, 15 Oct 2003, Joe Marcus Clarke wrote: > Yep. It's just last time I removed mozilla-vendor, I broke OOo. I want > to make sure there are no ports/projects that depend on 1.4.x. I remember one problem with Mozilla1.4.x and the java-plugin. >From one subversion to the next one needed a gcc3.2 compiled jre. I don't know, if this might be a problem for anyone. Regards, Uli. > > Joe > > > > > Riggs > -- > Joe Marcus Clarke > FreeBSD GNOME Team :: marcus@FreeBSD.org > gnome@FreeBSD.org > FreeNode / #freebsd-gnome > http://www.FreeBSD.org/gnome > > +---------------------------+ | Peter Ulrich Kruppa | | Wuppertal | | Germany | +---------------------------+ From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 07:24:56 2003 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 995C016A4B3; Fri, 17 Oct 2003 07:24:56 -0700 (PDT) Received: from creme-brulee.marcuscom.com (rdu74-159-108.nc.rr.com [24.74.159.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34D0A43FE5; Fri, 17 Oct 2003 07:24:55 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h9HEOFMN058675; Fri, 17 Oct 2003 10:24:15 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Peter Ulrich Kruppa In-Reply-To: <20031017161749.L1600@pukruppa.net> References: <1066241563.721.27.camel@gyros> <1066245462.721.42.camel@gyros> <20031017161749.L1600@pukruppa.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-pzM83quAs50zqfEDRf9Q" Organization: FreeBSD, Inc. Message-Id: <1066400691.3272.6.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Fri, 17 Oct 2003 10:24:51 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on creme-brulee.marcuscom.com cc: FreeBSD GNOME Users cc: "Thomas E. Zander" cc: ports@FreeBSD.org Subject: Re: RFC: What to do with Mozilla 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: Fri, 17 Oct 2003 14:24:56 -0000 --=-pzM83quAs50zqfEDRf9Q Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2003-10-17 at 10:23, Peter Ulrich Kruppa wrote: > On Wed, 15 Oct 2003, Joe Marcus Clarke wrote: >=20 > > Yep. It's just last time I removed mozilla-vendor, I broke OOo. I wan= t > > to make sure there are no ports/projects that depend on 1.4.x. > I remember one problem with Mozilla1.4.x and the java-plugin. > >From one subversion to the next one needed a gcc3.2 compiled jre. Not true. This was only for binary versions of Mozilla. I have the JPI working in Mozilla 1.4.1 on my stable machine. Joe >=20 > I don't know, if this might be a problem for anyone. >=20 >=20 > Regards, >=20 > Uli. >=20 >=20 > > > > Joe > > > > > > > > Riggs > > -- > > Joe Marcus Clarke > > FreeBSD GNOME Team :: marcus@FreeBSD.org > > gnome@FreeBSD.org > > FreeNode / #freebsd-gnome > > http://www.FreeBSD.org/gnome > > > > >=20 > +---------------------------+ > | Peter Ulrich Kruppa | > | Wuppertal | > | Germany | > +---------------------------+ > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-pzM83quAs50zqfEDRf9Q Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/j/uzb2iPiv4Uz4cRAuUeAJ9zO4xpB/qFCEWL3QvxcFElh7cO9gCffj8s hQf6IuOojmfkzLIy9LldUWQ= =4/EJ -----END PGP SIGNATURE----- --=-pzM83quAs50zqfEDRf9Q-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 10:55:23 2003 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 981AF16A4B3 for ; Fri, 17 Oct 2003 10:55:23 -0700 (PDT) Received: from perrin.nxad.com (internal.nxad.com [69.1.70.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7BD543F93 for ; Fri, 17 Oct 2003 10:55:22 -0700 (PDT) (envelope-from sean@nxad.com) Received: by perrin.nxad.com (Postfix, from userid 1001) id 5118621062; Fri, 17 Oct 2003 10:55:22 -0700 (PDT) Date: Fri, 17 Oct 2003 10:55:22 -0700 From: Sean Chittenden To: Tijl Coosemans Message-ID: <20031017175522.GB62218@perrin.nxad.com> References: <3F8F5105.5040308@earthlink.net> <200310171001.03637.avleeuwen@piwebs.com> <20031017110727.7811355a.tijl@ulyssis.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031017110727.7811355a.tijl@ulyssis.org> X-PGP-Key: finger seanc@FreeBSD.org X-PGP-Fingerprint: 3849 3760 1AFE 7B17 11A0 83A6 DD99 E31F BC84 B341 X-Web-Homepage: http://sean.chittenden.org/ User-Agent: Mutt/1.5.4i cc: freebsd-ports@freebsd.org Subject: Re: Kopete 7.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: Fri, 17 Oct 2003 17:55:23 -0000 > > > I've been looking for the most recent version of the KDE Kopete > > > IM client (0.7.3) to appear in the ports collection but as yet I > > > haven't seen anything newer than 0.7 appear. I sent an email to > > > the ports maintainer but I wondered if anyone has been > > > successful installing from the Sourceforce binary? I'm running > > > 5.1 Current. > > > > The sources of 0.7.2 compile & install fine without any patches on > > my -CURRENT machine. Maintainer, can you update the port? the > > current version doesn't work with the new MSN protocol. > > There's a PR from about a month ago for version 0.7.2, but it hasn't > made it into the ports tree yet. > (http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/56709) I may update kopete twice today, once to 0.7.2 and once to 0.7.3, depending on how successful I am (last time I tried updating it to 0.7.1, it bombed miserably requiring a few bits from the to-be released 3.1, at the time). -sc -- Sean Chittenden From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 13:52:51 2003 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 A6C1416A4B3 for ; Fri, 17 Oct 2003 13:52:51 -0700 (PDT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06EF543F85 for ; Fri, 17 Oct 2003 13:52:49 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from lonesome.lonesome.com (cs242746-11.austin.rr.com [24.27.46.11]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by mail.soaustin.net (Postfix) with ESMTP id 4C53714657 for ; Fri, 17 Oct 2003 15:52:48 -0500 (CDT) From: Mark Linimon Organization: FreeBSD To: ports@FreeBSD.org Date: Fri, 17 Oct 2003 15:52:48 -0500 User-Agent: KMail/1.5.4 References: <200310170057.h9H0vgEF043018@repoman.freebsd.org> <20031017034244.GA861@rot13.obsecurity.org> In-Reply-To: <20031017034244.GA861@rot13.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310171552.48469.linimon@FreeBSD.org> Subject: Re: cvs commit: ports/games/mahjong Makefile distinfo 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: Fri, 17 Oct 2003 20:52:51 -0000 My commit read: > Modified files: > games/mahjong Makefile distinfo > Log: > Fix checksum error, bump PORTREVISION. According to the author: > > 2003-10-12: The source distribution for 1.6 was shipped with a broken > Makefile. This has been fixed (without incrementing the version number). Kris reminded: > Just checking: did you verify this yourself? And, of course, I hadn't (still learning the ropes the hard way). So does anyone have a copy of mj-1.6-src.tar.gz that matches the old, bogus md5 (2ccf362e4c24e6b52bf1c74af8dea78c) and not the new, correct md5 (7fdce8dd6ec30de8f997da8f67942532) so that I can confirm this? The original PR submitter no longer has it, nor is it available on the author's web site. mcl From owner-freebsd-ports@FreeBSD.ORG Fri Oct 17 20:27:31 2003 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 B570916A4B3 for ; Fri, 17 Oct 2003 20:27:31 -0700 (PDT) Received: from firecrest.mail.pas.earthlink.net (firecrest.mail.pas.earthlink.net [207.217.121.247]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB39443F75 for ; Fri, 17 Oct 2003 20:27:30 -0700 (PDT) (envelope-from michaeldunham@earthlink.net) Received: from 64-30-114-84.ftth.sac.winfirst.net ([64.30.114.84] helo=earthlink.net) by firecrest.mail.pas.earthlink.net with asmtp (Exim 3.33 #1) id 1AAhkY-0003pC-00 for freebsd-ports@freebsd.org; Fri, 17 Oct 2003 20:27:30 -0700 Message-ID: <3F90B368.2030702@earthlink.net> Date: Fri, 17 Oct 2003 20:28:40 -0700 From: Michael Dunham Organization: Kestel Works User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.5) Gecko/20031007 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <3F8F5105.5040308@earthlink.net> <200310171001.03637.avleeuwen@piwebs.com> In-Reply-To: <200310171001.03637.avleeuwen@piwebs.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-ELNK-Trace: 54c801475b82b152c94e5354dc58875674bf435c0eb9d478bf18917b9c0b244403ea08f2e43b4e8ae1cc9d4422f6e04f350badd9bab72f9c350badd9bab72f9c Subject: Re: Kopete 7.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: mdunham@kestrelworks.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Oct 2003 03:27:31 -0000 Thanks to everyone, 0.7.2 is in ports, it installs and runs fine with the MSN protocol - which was my problem. However, the port is still marked 0.7 so it doesn't show up in a portversion call if you already have 0.7 installed. So, unless someone happens across this conversation, they are unlikely to know there is an update. Regards Mike Arjan van Leeuwen wrote: >On Friday 17 October 2003 04:16, Michael Dunham wrote: > > >>I've been looking for the most recent version of the KDE Kopete IM >>client (0.7.3) to appear in the ports collection but as yet I haven't >>seen anything newer than 0.7 appear. I sent an email to the ports >>maintainer but I wondered if anyone has been successful installing from >>the Sourceforce binary? I'm running 5.1 Current. >> >> > >The sources of 0.7.2 compile & install fine without any patches on my -CURRENT >machine. Maintainer, can you update the port? the current version doesn't >work with the new MSN protocol. > >Arjan > > > >>Thanks >> >>Mike Dunham >> >> >>_______________________________________________ >>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 Sat Oct 18 03:19:35 2003 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 4662816A4B3 for ; Sat, 18 Oct 2003 03:19:35 -0700 (PDT) Received: from cicero0.cybercity.dk (cicero0.cybercity.dk [212.242.40.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 560A843F75 for ; Sat, 18 Oct 2003 03:19:34 -0700 (PDT) (envelope-from db@traceroute.dk) Received: from user4.cybercity.dk (fxp0.user4.ip.cybercity.dk [212.242.41.50]) by cicero0.cybercity.dk (Postfix) with ESMTP id B36B428C97 for ; Sat, 18 Oct 2003 12:19:32 +0200 (CEST) Received: from main (port132.ds1-arsy.adsl.cybercity.dk [212.242.239.73]) by user4.cybercity.dk (Postfix) with SMTP id 431291278D9 for ; Sat, 18 Oct 2003 12:19:32 +0200 (CEST) Date: Sat, 18 Oct 2003 12:19:09 +0200 From: Socketd To: ports@freebsd.org Message-Id: <20031018121909.2886f9b4.db@traceroute.dk> X-Mailer: Sylpheed version 0.9.3claws (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Courier broken? 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: Sat, 18 Oct 2003 10:19:35 -0000 Hi When trying to compile Courier 0.42.2 (plus GnuPG and Postgresql support) on my 4.8-Release computer I get: Compiling checkpasswordmd5.c Compiling checkpasswordsha1.c Compiling authpgsql.c In file included from authpgsql.c:19: authpgsql.h:8: libpq-fe.h: No such file or directory gmake[2]: *** [authpgsql.o] Error 1 gmake[2]: Leaving directory `/usr/ports/mail/courier/work/courier-0.42.2/authlib' gmake[1]: *** [all] Error 2 gmake[1]: Leaving directory `/usr/ports/mail/courier/work/courier-0.42.2/authlib' gmake: *** [all-recursive] Error 1 *** Error code 2 Stop in /usr/ports/mail/courier. *** Error code 1 Stop in /usr/ports/mail/courier. Any ideas what's wrong? And any plans regarding updating Courier to 0.43? br socketd ps: Please cc to me as I am not on this list. From owner-freebsd-ports@FreeBSD.ORG Sat Oct 18 08:48:17 2003 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 AAE1316A4B3 for ; Sat, 18 Oct 2003 08:48:17 -0700 (PDT) Received: from tx2.oucs.ox.ac.uk (tx2.oucs.ox.ac.uk [163.1.2.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D55743F93 for ; Sat, 18 Oct 2003 08:48:16 -0700 (PDT) (envelope-from colin.percival@wadham.ox.ac.uk) Received: from scan2.oucs.ox.ac.uk ([163.1.2.162] helo=localhost) by tx2.oucs.ox.ac.uk with esmtp (Exim 4.20) id 1AAtJP-0001rX-Jz for freebsd-ports@freebsd.org; Sat, 18 Oct 2003 16:48:15 +0100 Received: from rx2.oucs.ox.ac.uk ([163.1.2.161]) by localhost (scan2.oucs.ox.ac.uk [163.1.2.162]) (amavisd-new, port 25) with ESMTP id 06677-10 for ; Sat, 18 Oct 2003 16:48:15 +0100 (BST) Received: from gateway.wadham.ox.ac.uk ([163.1.161.253]) by rx2.oucs.ox.ac.uk with smtp (Exim 4.20) id 1AAtJP-0001rN-6d for freebsd-ports@freebsd.org; Sat, 18 Oct 2003 16:48:15 +0100 Received: (qmail 22842 invoked by uid 0); 18 Oct 2003 15:48:15 -0000 Received: from colin.percival@wadham.ox.ac.uk by gateway by uid 71 with qmail-scanner-1.16 (sweep: 2.14/3.71. spamassassin: 2.53. Clear:. Processed in 0.999512 secs); 18 Oct 2003 15:48:15 -0000 X-Qmail-Scanner-Mail-From: colin.percival@wadham.ox.ac.uk via gateway X-Qmail-Scanner: 1.16 (Clear:. Processed in 0.999512 secs) Received: from dhcp1131.wadham.ox.ac.uk (HELO piii600.wadham.ox.ac.uk) (163.1.161.131) by gateway.wadham.ox.ac.uk with SMTP; 18 Oct 2003 15:48:13 -0000 Message-Id: <5.0.2.1.1.20031018163211.031c1430@popserver.sfu.ca> X-Sender: cperciva@popserver.sfu.ca X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Sat, 18 Oct 2003 16:48:10 +0100 To: freebsd-ports@freebsd.org From: Colin Percival Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: Missing +DISPLAY 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: Sat, 18 Oct 2003 15:48:17 -0000 I've got a port (security/freebsd-update) which seems to be missing its +DISPLAY file from the packages built on the FreeBSD cluster. When I build the package myself, the file is there. Could someone tell me what I'm doing wrong here? I'm sure it's something obvious -- to everyone except me. Colin Percival From owner-freebsd-ports@FreeBSD.ORG Sat Oct 18 11:32:19 2003 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 A44F616A4B3 for ; Sat, 18 Oct 2003 11:32:19 -0700 (PDT) Received: from wind.mindcry.org (12-241-170-123.client.attbi.com [12.241.170.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C67B43F85 for ; Sat, 18 Oct 2003 11:32:04 -0700 (PDT) (envelope-from david@wind.mindcry.org) Received: from wind.mindcry.org (wind.mindcry.org [127.0.0.1]) by wind.mindcry.org (8.12.10/8.12.10) with ESMTP id h9IIVsmk004608; Sat, 18 Oct 2003 14:31:55 -0400 (EDT) (envelope-from david@wind.mindcry.org) Received: (from david@localhost) by wind.mindcry.org (8.12.10/8.12.10/Submit) id h9IIVjXQ004607; Sat, 18 Oct 2003 14:31:45 -0400 (EDT) (envelope-from david) Date: Sat, 18 Oct 2003 14:31:45 -0400 From: David Hill To: ports@freebsd.org Message-ID: <20031018183145.GA644@phobia.ms> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i cc: llwang@infor.org Subject: www/flashplugin-mozilla(-devel) broken 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: Sat, 18 Oct 2003 18:32:19 -0000 seems broken... (wind david:/usr/ports/www/flashplugin-mozilla)# make ===> Extracting for flashplugin-mozilla-0.4.10_3 >> Checksum OK for flash-0.4.10.tgz. ===> Patching for flashplugin-mozilla-0.4.10_3 ===> Applying FreeBSD patches for flashplugin-mozilla-0.4.10_3 ===> flashplugin-mozilla-0.4.10_3 depends on shared library: flash.0 - found ===> flashplugin-mozilla-0.4.10_3 depends on shared library: X11.6 - found ===> Configuring for flashplugin-mozilla-0.4.10_3 ===> Building for flashplugin-mozilla-0.4.10_3 cc -O -pipe -mcpu=pentiumpro -mcpu=pentiumpro -DXP_UNIX -I../Lib -I/usr/X11R6/i nclude -c plugin.c cc -O -pipe -mcpu=pentiumpro -mcpu=pentiumpro -DXP_UNIX -I../Lib -I/usr/X11R6/i nclude -c npunix.c make: don't know how to make ../Lib/libflash.a. Stop *** Error code 2 Stop in /usr/ports/www/flashplugin-mozilla. From owner-freebsd-ports@FreeBSD.ORG Sat Oct 18 12:06:01 2003 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 1428516A4BF for ; Sat, 18 Oct 2003 12:06:01 -0700 (PDT) Received: from fed1mtao06.cox.net (fed1mtao06.cox.net [68.6.19.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id 076E943FB1 for ; Sat, 18 Oct 2003 12:06:00 -0700 (PDT) (envelope-from s.wingate@pobox.com) Received: from daemon.g-e-e-k.net ([68.105.195.160]) by fed1mtao06.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20031018190558.USBT8365.fed1mtao06.cox.net@daemon.g-e-e-k.net> for ; Sat, 18 Oct 2003 15:05:58 -0400 Date: Sat, 18 Oct 2003 12:04:26 -0700 (PDT) From: Steve Wingate X-X-Sender: steve@daemon.g-e-e-k.net To: FreeBSD Ports Mail list Message-ID: <20031018120311.G979@daemon.g-e-e-k.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Mozilla 1.5 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: Sat, 18 Oct 2003 19:06:01 -0000 I want to upgrade mozilla to 1.5. Should I install mozilla-devel or will the mozilla port be upgraded to 1.5 soon? TIA +---------------------------------------------------------------------+ |Steve Wingate |MCSE, CCNA Sat Oct 18 12:00:00 PDT 2003 +---------------------------------------------------------------------+ |FreeBSD 4.9-PRERELEASE |12:00PM up 39 days, 4:32, 2 users, load averages: 0.00, 0.00, 0.00 +---------------------------------------------------------------------+ From owner-freebsd-ports@FreeBSD.ORG Sat Oct 18 12:19:27 2003 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 B0F4416A4B3 for ; Sat, 18 Oct 2003 12:19:27 -0700 (PDT) Received: from creme-brulee.marcuscom.com (rdu74-159-108.nc.rr.com [24.74.159.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 673DE43F75 for ; Sat, 18 Oct 2003 12:19:26 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h9IJIcMN073571; Sat, 18 Oct 2003 15:18:39 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Steve Wingate In-Reply-To: <20031018120311.G979@daemon.g-e-e-k.net> References: <20031018120311.G979@daemon.g-e-e-k.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-PziIoafD5H+QTCG25mIR" Organization: MarcusCom, Inc. Message-Id: <1066504762.15631.8.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Sat, 18 Oct 2003 15:19:22 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on creme-brulee.marcuscom.com cc: FreeBSD Ports Mail list Subject: Re: Mozilla 1.5 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: Sat, 18 Oct 2003 19:19:27 -0000 --=-PziIoafD5H+QTCG25mIR Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2003-10-18 at 15:04, Steve Wingate wrote: > I want to upgrade mozilla to 1.5. Should I install mozilla-devel or will > the mozilla port be upgraded to 1.5 soon? TIA I'm doing the Mozilla port today. I'm also going to update mozilla-devel to 1.5 as well. This way, people wanting to continue to track mozilla-devel will not have to switch to mozilla while they wait for 1.6a to come out. However, if the 5.2 freeze comes before 1.6a, mozilla-devel will be marked IGNORE until 1.6a comes out. Joe >=20 >=20 >=20 > +---------------------------------------------------------------------+ > |Steve Wingate > |MCSE, CCNA Sat Oct 18 12:00:00 PDT 2003 > +---------------------------------------------------------------------+ > |FreeBSD 4.9-PRERELEASE > |12:00PM up 39 days, 4:32, 2 users, load averages: 0.00, 0.00, 0.00 > +---------------------------------------------------------------------+ > _______________________________________________ > 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 --=-PziIoafD5H+QTCG25mIR Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/kZI6b2iPiv4Uz4cRAhQoAJ0UA2rv6TBZYZhDDRVHfyHeKghZWwCfdrBu z3UEPF7Bc7nuMB4OJf77NT8= =3oP+ -----END PGP SIGNATURE----- --=-PziIoafD5H+QTCG25mIR-- From owner-freebsd-ports@FreeBSD.ORG Sat Oct 18 20:14:18 2003 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 3D82716A4B3 for ; Sat, 18 Oct 2003 20:14:18 -0700 (PDT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66A4143FA3 for ; Sat, 18 Oct 2003 20:14:17 -0700 (PDT) (envelope-from shadowcrest@comcast.net) Received: from comcast.net (c-24-126-185-44.we.client2.attbi.com[24.126.185.44]) by comcast.net (sccrmhc13) with SMTP id <20031019031416016000ihtie> (Authid: shadowcrest); Sun, 19 Oct 2003 03:14:16 +0000 Message-ID: <3F920188.5090109@comcast.net> Date: Sat, 18 Oct 2003 20:14:16 -0700 From: Keith Davis User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20030225 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: plotutils-2.4.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, 19 Oct 2003 03:14:18 -0000 I am working on getting plotutils-2.4.1 to compile. As many of you have probably already discovered, plotutils-2.4.1 does not compile -- I will hopefully have a working plotutils by the end of the week. Keith From owner-freebsd-ports@FreeBSD.ORG Sat Oct 18 23:42:28 2003 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 390F116A4B3 for ; Sat, 18 Oct 2003 23:42:28 -0700 (PDT) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [204.127.202.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7621243FAF for ; Sat, 18 Oct 2003 23:42:27 -0700 (PDT) (envelope-from daviskacer@comcast.net) Received: from comcast.net (c-24-126-185-44.we.client2.attbi.com[24.126.185.44]) by comcast.net (sccrmhc12) with SMTP id <2003101906422601200hom92e> (Authid: daviskacer); Sun, 19 Oct 2003 06:42:26 +0000 Message-ID: <3F923251.1000309@comcast.net> Date: Sat, 18 Oct 2003 23:42:25 -0700 From: Keith Davis User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20030225 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: plotutils-2.4.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, 19 Oct 2003 06:42:28 -0000 Honestly, who wrote plotutils-2.4.1. I don't mean to be rude, but the person or persons did a really crappy job. I haven't seen code this badly mangled since I took a look at the Windows XP bootsector -= Ha Ha =- I think the tool pretty much needs to be completely redone, but in the meantime I am going to see if I can at least get it to compile -- It won't be pretty, but it will at least work. BTW, what reliance does lilypond ( music typeset app ) have on this anyway. The reason I am doing this is so that I can get lilypond to work, but I can honestly say that this is going to take some work. -KD From owner-freebsd-ports@FreeBSD.ORG Sat Oct 18 23:43:17 2003 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 2461E16A4BF for ; Sat, 18 Oct 2003 23:43:17 -0700 (PDT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0029043F93 for ; Sat, 18 Oct 2003 23:43:15 -0700 (PDT) (envelope-from shadowcrest@comcast.net) Received: from comcast.net (c-24-126-185-44.we.client2.attbi.com[24.126.185.44]) by comcast.net (sccrmhc13) with SMTP id <20031019064315016000j6bne> (Authid: shadowcrest); Sun, 19 Oct 2003 06:43:15 +0000 Message-ID: <3F923282.9010600@comcast.net> Date: Sat, 18 Oct 2003 23:43:14 -0700 From: Keith Davis User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.2.1) Gecko/20030225 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: plotutils-2.4.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, 19 Oct 2003 06:43:17 -0000 Honestly, who wrote plotutils-2.4.1. I don't mean to be rude, but the person or persons did a really crappy job. I haven't seen code this badly mangled since I took a look at the Windows XP bootsector -= Ha Ha =- I think the tool pretty much needs to be completely redone, but in the meantime I am going to see if I can at least get it to compile -- It won't be pretty, but it will at least work. BTW, what reliance does lilypond ( music typeset app ) have on this anyway. The reason I am doing this is so that I can get lilypond to work, but I can honestly say that this is going to take some work. -KD